diff --git a/.gitignore b/.gitignore index c6cc658..0d2f1c6 100755 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,7 @@ results/all_protein_variant_sequences.fasta data/sgd/genome_embl_files data/sgd/genome.pickle +data/sgd/current_protein_seqs.fasta +data/sgd/features.gtf.* +data/sgd/genome_sequence.fsa.fai +data/sgd/protein_coding_sgd.txt diff --git a/allele_auto_fix.py b/allele_auto_fix.py index 2df0309..4eb0909 100644 --- a/allele_auto_fix.py +++ b/allele_auto_fix.py @@ -6,189 +6,214 @@ import json import re from common_autofix_functions import apply_multi_shift_fix, apply_old_coords_fix, apply_histone_fix, get_preferred_fix, apply_name_fix -import os +import argparse -with open('data/genome.pickle', 'rb') as ins: - genome = pickle.load(ins) +def main(genome_file, coordinate_changes_file, allele_results_file, output_dir): + with open(genome_file, 'rb') as ins: + genome = pickle.load(ins) -with open('data/coordinate_changes_dict.json') as ins: - coordinate_changes_dict = json.load(ins) + with open(coordinate_changes_file) as ins: + coordinate_changes_dict = json.load(ins) -syntax_rules = [SyntaxRule.parse_obj(r) for r in aminoacid_grammar] -syntax_rules_dict = {f'{r.type}:{r.rule_name}': r for r in syntax_rules} + syntax_rules = [SyntaxRule.parse_obj(r) for r in aminoacid_grammar] + syntax_rules_dict = {f'{r.type}:{r.rule_name}': r for r in syntax_rules} -data = pandas.read_csv('results/allele_results_errors.tsv', sep='\t', na_filter=False) + data = pandas.read_csv(allele_results_file, sep='\t', na_filter=False) -# We only want alleles with sequence errors, with mutations described at the aminoacid level -aminoacid_alleles_with_sequence_errors = (data['sequence_error'] != '') & (data['rules_applied'].str.contains('amino_acid') | data['rules_applied'].str.contains('nonsense')) -data_subset = data.loc[aminoacid_alleles_with_sequence_errors, ['systematic_id', 'allele_description', 'allele_name', 'reference', 'change_description_to', 'rules_applied', 'sequence_error']] + # We only want aminoacid alleles. We don't remove the ones without errors yet, because if there are errors in a session + # for a given allele, other positions may be silent errors (residue matches by chance). We therefore aggregate both with and without errors + # We exclude CTDs from the fixing, because they would be too complicated to include (they may contain commas, for instance) + # Same (for now) for alleles that have + + aminoacid_alleles = (data['rules_applied'].str.contains('amino_acid') | data['rules_applied'].str.contains('nonsense')) & ~data['rules_applied'].str.contains('CTD') + + # Extra filter for multi_aa until a cleaner solution is found (see https://github.com/pombase/allele_qc/issues/102) + for exclude in ['amino_acid_deletion_and_mutation:multiple_aa', 'amino_acid_insertion_and_mutation:multiple_aa']: + exclude_rows = data['rules_applied'].str.contains(exclude) + if any(exclude_rows): + print(f'Excluding {sum(exclude_rows)} rows with {exclude}, see https://github.com/pombase/allele_qc/issues/102') + print('\n'.join(data.loc[exclude_rows, 'allele_description'])) + aminoacid_alleles = aminoacid_alleles & ~exclude_rows + aminoacid_alleles = aminoacid_alleles & ~data['rules_applied'].str.contains('multi_aa') + + data_subset = data.loc[aminoacid_alleles, ['systematic_id', 'allele_description', 'allele_name', 'reference', 'change_description_to', 'rules_applied', 'sequence_error']] + + # Explode the references + data_subset.loc[:, 'reference'] = data_subset['reference'].apply(str.split, args=[',']) + data_subset = data_subset.explode('reference') + + # Keep correct description only + data_subset.loc[data_subset['change_description_to'] != '', 'allele_description'] = data_subset.loc[data_subset['change_description_to'] != '', 'change_description_to'] + data_subset.drop(columns='change_description_to', inplace=True) + + # Copy allele_description to explode it + data_subset['allele_description_exploded'] = data_subset['allele_description'].copy() + + # Explode + data_subset.loc[:, 'allele_description_exploded'] = data_subset['allele_description_exploded'].apply(str.split, args=[',']) + data_subset.loc[:, 'rules_applied'] = data_subset['rules_applied'].apply(str.split, args=['|']) + + # Hack to be able to explode sequence error when it's empty + data_subset.loc[:, 'sequence_error'] = data_subset.apply(lambda x: ['' for i in x['rules_applied']] if x['sequence_error'] == '' else x['sequence_error'].split('|'), axis=1) + data_subset = data_subset.explode(['allele_description_exploded', 'rules_applied', 'sequence_error']) + + # Explode again the multiple_aa + multi_aa = data_subset['rules_applied'] == 'amino_acid_mutation:multiple_aa' + data_subset['allele_description_exploded2'] = data_subset['allele_description_exploded'].copy() + data_subset.loc[multi_aa, 'allele_description_exploded2'] = data_subset.loc[multi_aa, 'allele_description_exploded2'].apply(split_multiple_aa, args=[syntax_rules_dict['amino_acid_mutation:multiple_aa'].regex]) + data_subset = data_subset.explode('allele_description_exploded2') + + # Sort the mutations by the first number in them (there might be two numbers in the deletions) + data_subset.loc[:, 'sorting_col'] = data_subset['allele_description_exploded2'].apply(lambda x: int(re.search(r'\d+', x).group())) + data_subset.sort_values('sorting_col', inplace=True) + data_subset.drop(columns='sorting_col', inplace=True) + + data_subset.drop_duplicates(inplace=True) + + # Make a copy for matching the proposed fixes later + data_for_fixing = data_subset.copy() + + # Drop duplicates that may have arised when splitting allele description at either step + data_subset.drop(columns=['rules_applied', 'allele_description', 'allele_description_exploded'], inplace=True) + data_subset.drop_duplicates(inplace=True) + + # Aggregate by publication and systematic id + aggregated_data = data_subset.groupby(['systematic_id', 'reference'], as_index=False).agg({'allele_description_exploded2': ','.join, 'sequence_error': any}) + + # Here is where we filter for those that have sequence errors + aggregated_data = aggregated_data.loc[aggregated_data['sequence_error'], :] + print('applying fixes...') + extra_cols = aggregated_data.apply(apply_old_coords_fix, axis=1, result_type='expand', args=[coordinate_changes_dict, 'allele_description_exploded2']) + aggregated_data.loc[:, 'old_coords_fix'] = extra_cols.iloc[:, 0] + aggregated_data.loc[:, 'old_coords_revision'] = extra_cols.iloc[:, 1] + aggregated_data.loc[:, 'old_coords_location'] = extra_cols.iloc[:, 2] + aggregated_data['multi_shift_fix'] = aggregated_data.apply(apply_multi_shift_fix, axis=1, args=[genome, 'allele_description_exploded2']) + aggregated_data['histone_fix'] = aggregated_data.apply(apply_histone_fix, axis=1, args=[genome, 'allele_description_exploded2']) + extra_cols = aggregated_data.apply(get_preferred_fix, axis=1, result_type='expand') + aggregated_data.loc[:, 'auto_fix_to'] = extra_cols.iloc[:, 0] + aggregated_data.loc[:, 'auto_fix_comment'] = extra_cols.iloc[:, 1] + # Old intermediary file for checks + # aggregated_data.to_csv(f'{output_dir}/allele_auto_fix_info.tsv', sep='\t', index=False) + + # Re-explode the columns that have multiple solutions (now they are aggregated as '|'-separated strings) + aggregated_data_with_fixes = aggregated_data.loc[aggregated_data['auto_fix_to'] != '', :].copy() + + # Deaggregate multiple solutions + aggregated_data_with_fixes.loc[:, 'auto_fix_to'] = aggregated_data_with_fixes['auto_fix_to'].apply(str.split, args=['|']) + + # We add an extra column with the index of the solution if there is more than one + # We convert to strings because the missing values may give unexpected behaviour in .groupby or .agg + aggregated_data_with_fixes.loc[:, 'solution_index'] = aggregated_data_with_fixes['auto_fix_to'].apply(lambda x: list(range(len(x))) if len(x) > 1 else ['']) + aggregated_data_with_fixes.loc[:, 'solution_index'] = aggregated_data_with_fixes.loc[:, 'solution_index'] + aggregated_data_with_fixes = aggregated_data_with_fixes.explode(['auto_fix_to', 'solution_index']) -# Explode the references -data_subset.loc[:, 'reference'] = data_subset['reference'].apply(str.split, args=[',']) -data_subset = data_subset.explode('reference') + # Deaggregate the parts of each solution + aggregated_data_with_fixes.loc[:, 'allele_description_exploded2'] = aggregated_data_with_fixes['allele_description_exploded2'].apply(str.split, args=[',']) + aggregated_data_with_fixes.loc[:, 'auto_fix_to'] = aggregated_data_with_fixes['auto_fix_to'].apply(str.split, args=[',']) + + for i, row in aggregated_data_with_fixes.iterrows(): + if len(row['allele_description_exploded2']) != len(row['auto_fix_to']): + print(row['allele_description_exploded2'], row['auto_fix_to']) -# Keep correct description only -data_subset.loc[data_subset['change_description_to'] != '', 'allele_description'] = data_subset.loc[data_subset['change_description_to'] != '', 'change_description_to'] -data_subset.drop(columns='change_description_to', inplace=True) + data2merge = aggregated_data_with_fixes.explode(['allele_description_exploded2', 'auto_fix_to']) + data_for_fixing = data_for_fixing.merge(data2merge[['systematic_id', 'reference', 'allele_description_exploded2', 'auto_fix_to', 'auto_fix_comment', 'solution_index']], on=['systematic_id', 'reference', 'allele_description_exploded2']) -# Copy allele_description to explode it -data_subset['allele_description_exploded'] = data_subset['allele_description'].copy() + # Here we filter again for those that have sequence errors + data_for_fixing = data_for_fixing.loc[data_for_fixing['sequence_error'] != '', :] + + # Aggregate the multiple_aa, they only differ on the columns allele_description_exploded2 and auto_fix_to, so we aggregate on everything else + # We also drop allele_description_exploded and allele_description_exploded2 and rules_applied after the aggregation, no longer needed + multi_aa = data_for_fixing['rules_applied'] == 'amino_acid_mutation:multiple_aa' + groupby_columns = list(data_for_fixing.columns) + groupby_columns.remove('allele_description_exploded2') + groupby_columns.remove('auto_fix_to') + new_rows = data_for_fixing[multi_aa].groupby(groupby_columns, as_index=False).agg({'auto_fix_to': lambda x: join_multiple_aa(x.values)}) + data_for_fixing = data_for_fixing[~multi_aa] + data_for_fixing = pandas.concat([data_for_fixing, new_rows]) + data_for_fixing.drop(columns=['allele_description_exploded', 'allele_description_exploded2', 'sequence_error', 'rules_applied'], inplace=True) + data_for_fixing.drop_duplicates(inplace=True) + + # Sort again by first number in the string (concat step may mess up the order, + # which is important for the next aggregation) + data_for_fixing.loc[:, 'sorting_col'] = data_for_fixing['auto_fix_to'].apply(lambda x: int(re.search(r'\d+', x).group()) if x != '?' else 0) + data_for_fixing.sort_values('sorting_col', inplace=True) + data_for_fixing.drop(columns='sorting_col', inplace=True) + + # Apply the fix by merging the auto_fix_to individual columns + groupby_columns = list(data_for_fixing.columns) + groupby_columns.remove('auto_fix_to') + + data_for_fixing = data_for_fixing.groupby(groupby_columns, as_index=False).agg({'auto_fix_to': ','.join}) + + # Merge solutions from different PMIDs that are the same + groupby_columns = list(data_for_fixing.columns) + groupby_columns.remove('reference') + data_for_fixing = data_for_fixing.groupby(groupby_columns, as_index=False).agg({'reference': ','.join}) + + # Here we check if multiple solutions were found from different references, if so give a warning + groupby_columns.remove('auto_fix_to') + different_solutions = data_for_fixing[data_for_fixing[groupby_columns].duplicated(keep=False)] + if not different_solutions.empty: + print('Different solutions have been found in different papers') + print(different_solutions) + + # Finally, we merge with the original data + data = data.merge(data_for_fixing[['systematic_id', 'allele_name', 'auto_fix_comment', 'solution_index', 'auto_fix_to']], on=['systematic_id', 'allele_name'], how='outer') + data.fillna('', inplace=True) + + # Set auto_fix_to value in change_description_to, and drop the column + fixed_sequence_errors = data['auto_fix_to'] != '' + data.loc[fixed_sequence_errors, 'change_description_to'] = data.loc[fixed_sequence_errors, 'auto_fix_to'] + data.drop(columns='auto_fix_to', inplace=True) -# Explode -cols2explode = ['allele_description_exploded', 'rules_applied', 'sequence_error'] -for explode_column, sep in zip(cols2explode, [',', '|', '|']): - data_subset.loc[:, explode_column] = data_subset[explode_column].apply(str.split, args=[sep]) -data_subset = data_subset.explode(cols2explode) + columns_auto_fixed = fixed_sequence_errors | \ + ((data['sequence_error'] == '') & ((data['change_type_to'] != '') | (data['change_description_to'] != ''))) + + autofixed_data = data[columns_auto_fixed].copy() + + # Fill comments for the rest of error types + syntax_error = (autofixed_data.auto_fix_comment == '') & (autofixed_data.change_description_to != '') + type_error = (autofixed_data.auto_fix_comment == '') & (autofixed_data.change_type_to != '') + + autofixed_data.loc[syntax_error, 'auto_fix_comment'] = 'syntax_error' + autofixed_data.loc[type_error, 'auto_fix_comment'] = 'type_error' + autofixed_data.loc[syntax_error & type_error, 'auto_fix_comment'] = 'syntax_and_type_error' + + autofixed_data['change_name_to'] = autofixed_data.apply(apply_name_fix, axis=1) + autofixed_data = autofixed_data[['systematic_id', 'allele_id', 'allele_name', 'allele_description', 'allele_type', 'change_description_to', 'change_name_to', 'change_type_to', 'auto_fix_comment', 'sequence_error', 'solution_index', 'allele_parts', 'rules_applied', 'reference']].copy() + autofixed_data.sort_values(['systematic_id', 'allele_name'], inplace=True) + + autofixed_data.to_csv(f'{output_dir}/allele_auto_fix.tsv', sep='\t', index=False) + + errors_cannot_fix = data[~columns_auto_fixed].drop(columns=['auto_fix_comment', 'solution_index']) + # Separate into error types + error_cols = {'pattern_error', 'invalid_error', 'sequence_error'} + id_cols = set(errors_cannot_fix.columns) - error_cols -# Explode again the multiple_aa -multi_aa = data_subset['rules_applied'] == 'amino_acid_mutation:multiple_aa' -data_subset['allele_description_exploded2'] = data_subset['allele_description_exploded'].copy() -data_subset.loc[multi_aa, 'allele_description_exploded2'] = data_subset.loc[multi_aa, 'allele_description_exploded2'].apply(split_multiple_aa, args=[syntax_rules_dict['amino_acid_mutation:multiple_aa'].regex]) -data_subset = data_subset.explode('allele_description_exploded2') + errors_cannot_fix = errors_cannot_fix.melt(id_vars=id_cols, value_vars=error_cols, var_name='error_type', value_name='error_info') + errors_cannot_fix = errors_cannot_fix[errors_cannot_fix['error_info'] != ''] + errors_cannot_fix = errors_cannot_fix[['systematic_id', 'allele_id', 'allele_name', 'allele_description', 'error_type', 'error_info']].copy() -# Sort the mutations by the first number in them (there might be two numbers in the deletions) -data_subset.loc[:, 'sorting_col'] = data_subset['allele_description_exploded2'].apply(lambda x: int(re.search(r'\d+', x).group())) -data_subset.sort_values('sorting_col', inplace=True) -data_subset.drop(columns='sorting_col', inplace=True) + errors_cannot_fix.sort_values(['systematic_id', 'allele_name'], inplace=True) -data_subset.drop_duplicates(inplace=True) + sequence_errors = errors_cannot_fix[errors_cannot_fix.error_type == 'sequence_error'].drop(columns=['error_type']).rename(columns={'error_info': 'sequence_error'}) + sequence_errors.to_csv(f'{output_dir}/allele_cannot_fix_sequence_errors.tsv', sep='\t', index=False) + errors_cannot_fix[errors_cannot_fix.error_type != 'sequence_error'].to_csv(f'{output_dir}/allele_cannot_fix_other_errors.tsv', sep='\t', index=False) -# Make a copy for matching the proposed fixes later -data_for_fixing = data_subset.copy() -# Drop duplicates that may have arised when splitting allele description at either step -data_subset.drop(columns=['rules_applied', 'allele_description', 'allele_description_exploded'], inplace=True) -data_subset.drop_duplicates(inplace=True) +if __name__ == '__main__': + class Formatter(argparse.ArgumentDefaultsHelpFormatter, argparse.RawDescriptionHelpFormatter): + pass + parser = argparse.ArgumentParser(description=__doc__, formatter_class=Formatter) + parser.add_argument('--genome', default='data/genome.pickle', help='genome dictionary built from contig files.') + parser.add_argument('--coordinate_changes_dict', default='data/coordinate_changes_dict.json') + parser.add_argument('--allele_results', default='results/allele_results.tsv') + parser.add_argument('--output_dir', default='results/', help='output directory, will create files allele_auto_fix.tsv, allele_cannot_fix_sequence_errors.tsv, allele_cannot_fix_other_errors.tsv') -# Aggregate by publication and systematic id -aggregated_data = data_subset.groupby(['systematic_id', 'reference'], as_index=False).agg({'allele_description_exploded2': ','.join}) + args = parser.parse_args() - -print('applying fixes...') -extra_cols = aggregated_data.apply(apply_old_coords_fix, axis=1, result_type='expand', args=[coordinate_changes_dict, 'allele_description_exploded2']) -aggregated_data.loc[:, 'old_coords_fix'] = extra_cols.iloc[:, 0] -aggregated_data.loc[:, 'old_coords_revision'] = extra_cols.iloc[:, 1] -aggregated_data.loc[:, 'old_coords_location'] = extra_cols.iloc[:, 2] -aggregated_data['multi_shift_fix'] = aggregated_data.apply(apply_multi_shift_fix, axis=1, args=[genome, 'allele_description_exploded2']) -aggregated_data['histone_fix'] = aggregated_data.apply(apply_histone_fix, axis=1, args=[genome, 'allele_description_exploded2']) -extra_cols = aggregated_data.apply(get_preferred_fix, axis=1, result_type='expand') -aggregated_data.loc[:, 'auto_fix_to'] = extra_cols.iloc[:, 0] -aggregated_data.loc[:, 'auto_fix_comment'] = extra_cols.iloc[:, 1] -aggregated_data.to_csv('results/allele_auto_fix_info.tsv', sep='\t', index=False) - -# Re-explode the columns that have multiple solutions (now they are aggregated as '|'-separated strings) -aggregated_data_with_fixes = aggregated_data.loc[aggregated_data['auto_fix_to'] != '', :].copy() - -# Deaggregate multiple solutions -aggregated_data_with_fixes.loc[:, 'auto_fix_to'] = aggregated_data_with_fixes['auto_fix_to'].apply(str.split, args=['|']) - -# We add an extra column with the index of the solution if there is more than one -# We convert to strings because the missing values may give unexpected behaviour in .groupby or .agg -aggregated_data_with_fixes.loc[:, 'solution_index'] = aggregated_data_with_fixes['auto_fix_to'].apply(lambda x: list(range(len(x))) if len(x) > 1 else ['']) -aggregated_data_with_fixes.loc[:, 'solution_index'] = aggregated_data_with_fixes.loc[:, 'solution_index'] -aggregated_data_with_fixes = aggregated_data_with_fixes.explode(['auto_fix_to', 'solution_index']) - -# Deaggregate the parts of each solution -aggregated_data_with_fixes.loc[:, 'allele_description_exploded2'] = aggregated_data_with_fixes['allele_description_exploded2'].apply(str.split, args=[',']) -aggregated_data_with_fixes.loc[:, 'auto_fix_to'] = aggregated_data_with_fixes['auto_fix_to'].apply(str.split, args=[',']) - -for i, row in aggregated_data_with_fixes.iterrows(): - if len(row['allele_description_exploded2']) != len(row['auto_fix_to']): - print(row['allele_description_exploded2'], row['auto_fix_to']) - -data2merge = aggregated_data_with_fixes.explode(['allele_description_exploded2', 'auto_fix_to']) -data_for_fixing = data_for_fixing.merge(data2merge[['systematic_id', 'reference', 'allele_description_exploded2', 'auto_fix_to', 'auto_fix_comment', 'solution_index']], on=['systematic_id', 'reference', 'allele_description_exploded2']) - -# Aggregate the multiple_aa, they only differ on the columns allele_description_exploded2 and auto_fix_to, so we aggregate on everything else -# We also drop allele_description_exploded and allele_description_exploded2 and rules_applied after the aggregation, no longer needed -multi_aa = data_for_fixing['rules_applied'] == 'amino_acid_mutation:multiple_aa' -groupby_columns = list(data_for_fixing.columns) -groupby_columns.remove('allele_description_exploded2') -groupby_columns.remove('auto_fix_to') -new_rows = data_for_fixing[multi_aa].groupby(groupby_columns, as_index=False).agg({'auto_fix_to': lambda x: join_multiple_aa(x.values)}) -data_for_fixing = data_for_fixing[~multi_aa] -data_for_fixing = pandas.concat([data_for_fixing, new_rows]) -data_for_fixing.drop(columns=['allele_description_exploded', 'allele_description_exploded2', 'sequence_error', 'rules_applied'], inplace=True) -data_for_fixing.drop_duplicates(inplace=True) - -# Sort again by first number in the string (concat step may mess up the order, -# which is important for the next aggregation) -data_for_fixing.loc[:, 'sorting_col'] = data_for_fixing['auto_fix_to'].apply(lambda x: int(re.search(r'\d+', x).group()) if x != '?' else 0) -data_for_fixing.sort_values('sorting_col', inplace=True) -data_for_fixing.drop(columns='sorting_col', inplace=True) - -# Apply the fix by merging the auto_fix_to individual columns -groupby_columns = list(data_for_fixing.columns) -groupby_columns.remove('auto_fix_to') - -data_for_fixing = data_for_fixing.groupby(groupby_columns, as_index=False).agg({'auto_fix_to': ','.join}) - -# Merge solutions from different PMIDs that are the same -groupby_columns = list(data_for_fixing.columns) -groupby_columns.remove('reference') -data_for_fixing = data_for_fixing.groupby(groupby_columns, as_index=False).agg({'reference': ','.join}) - -# Here we check if multiple solutions were found from different references, if so give a warning -groupby_columns.remove('auto_fix_to') -different_solutions = data_for_fixing[data_for_fixing[groupby_columns].duplicated(keep=False)] -if not different_solutions.empty: - print('Different solutions have been found in different papers') - print(different_solutions) - -# Finally, we merge with the original data -data = data.merge(data_for_fixing[['systematic_id', 'allele_name', 'auto_fix_comment', 'solution_index', 'auto_fix_to']], on=['systematic_id', 'allele_name'], how='outer') -data.fillna('', inplace=True) - -# Set auto_fix_to value in change_description_to, and drop the column -fixed_sequence_errors = data['auto_fix_to'] != '' -data.loc[fixed_sequence_errors, 'change_description_to'] = data.loc[fixed_sequence_errors, 'auto_fix_to'] -data.drop(columns='auto_fix_to', inplace=True) - -columns_auto_fixed = fixed_sequence_errors | \ - ((data['sequence_error'] == '') & ((data['change_type_to'] != '') | (data['change_description_to'] != ''))) - -autofixed_data = data[columns_auto_fixed].copy() - -# Fill comments for the rest of error types -syntax_error = (autofixed_data.auto_fix_comment == '') & (autofixed_data.change_description_to != '') -type_error = (autofixed_data.auto_fix_comment == '') & (autofixed_data.change_type_to != '') - -autofixed_data.loc[syntax_error, 'auto_fix_comment'] = 'syntax_error' -autofixed_data.loc[type_error, 'auto_fix_comment'] = 'type_error' -autofixed_data.loc[syntax_error & type_error, 'auto_fix_comment'] = 'syntax_and_type_error' - -autofixed_data['change_name_to'] = autofixed_data.apply(apply_name_fix, axis=1) -autofixed_data = autofixed_data[['systematic_id', 'allele_id', 'allele_name', 'allele_description', 'allele_type', 'change_description_to', 'change_name_to', 'change_type_to', 'auto_fix_comment', 'sequence_error', 'solution_index', 'allele_parts', 'rules_applied', 'reference']].copy() -autofixed_data.sort_values(['systematic_id', 'allele_name'], inplace=True) - -autofixed_data.to_csv('results/allele_auto_fix.tsv', sep='\t', index=False) - -errors_cannot_fix = data[~columns_auto_fixed].drop(columns=['auto_fix_comment', 'solution_index']) - -# If there is a file with manual fixes, do not include in cannot_fix -if os.path.isfile('manual_fixes_pombase/manual_changes_formatted.tsv'): - manual_changes = pandas.read_csv('manual_fixes_pombase/manual_changes_formatted.tsv', sep='\t', na_filter=False) - manual_changes['combined_column'] = manual_changes.apply(lambda r: [r['systematic_id'], r['allele_name']], axis=1) - errors_cannot_fix['combined_column'] = errors_cannot_fix.apply(lambda r: [r['systematic_id'], r['allele_name']], axis=1) - errors_cannot_fix = errors_cannot_fix[~errors_cannot_fix['combined_column'].isin(manual_changes['combined_column'])].copy() - errors_cannot_fix.drop(columns='combined_column', inplace=True) - - -# Separate into error types -error_cols = {'pattern_error', 'invalid_error', 'sequence_error'} -id_cols = set(errors_cannot_fix.columns) - error_cols - -errors_cannot_fix = errors_cannot_fix.melt(id_vars=id_cols, value_vars=error_cols, var_name='error_type', value_name='error_info') -errors_cannot_fix = errors_cannot_fix[errors_cannot_fix['error_info'] != ''] -errors_cannot_fix = errors_cannot_fix[['systematic_id', 'allele_id', 'allele_name', 'allele_description', 'error_type', 'error_info']].copy() - -errors_cannot_fix.sort_values(['systematic_id', 'allele_name'], inplace=True) - -sequence_errors = errors_cannot_fix[errors_cannot_fix.error_type == 'sequence_error'].drop(columns=['error_type']).rename(columns={'error_info': 'sequence_error'}) -sequence_errors.to_csv('results/allele_cannot_fix_sequence_errors.tsv', sep='\t', index=False) - -errors_cannot_fix[errors_cannot_fix.error_type != 'sequence_error'].to_csv('results/allele_cannot_fix_other_errors.tsv', sep='\t', index=False) + main(args.genome, args.coordinate_changes_dict, args.allele_results, args.output_dir) diff --git a/allele_fixes.py b/allele_fixes.py index 2370192..4c85463 100644 --- a/allele_fixes.py +++ b/allele_fixes.py @@ -70,7 +70,7 @@ def old_coords_fix(coordinate_changes, targets): new_sequence = new_alignment.replace('-', '') old_sequence = old_alignment.replace('-', '') - this_revision = {'revision': prev_coord['revision'], 'location': prev_coord['old_coord'], 'values': list()} + this_revision = {'revision': prev_coord['revision'], 'location': prev_coord['old_coord'] if 'old_coord' in prev_coord else '', 'values': list()} # remap the coordinates for t in targets: # The position must exist in the old sequence @@ -129,7 +129,8 @@ def multi_shift_fix(seq, targets): targets = ['A3', 'V4', '8'] returns ['A1,V2'] # Because position 10 does not exist """ - + if 'G71V' in targets: + print(targets) all_indexes = list() for target in targets: all_indexes.extend([(int(i) - 1) for i in re.findall(r'\d+', target)]) diff --git a/allele_transvar.py b/allele_transvar.py index e72427f..701e4a8 100644 --- a/allele_transvar.py +++ b/allele_transvar.py @@ -45,8 +45,8 @@ def get_transvar_annotation_coordinates(annotations: list[TransvarAnnotation], g return '{}/./.'.format(annotations[0].coordinates.split('/')[0]) -def get_transvar_coordinates(row, db, genome, exclude_transcripts): - # print(row['systematic_id'], '<<<>>>', row['transvar_input_list']) +def get_transvar_coordinates(row, db, genome, exclude_transcripts, sgd_mode=False): + allele_qc_id = handle_systematic_id_for_allele_qc(row['systematic_id'], row['allele_name'], genome) transcript_id = None if (allele_qc_id == row['systematic_id']) else allele_qc_id try: @@ -56,13 +56,17 @@ def get_transvar_coordinates(row, db, genome, exclude_transcripts): transvar_output.append(get_transvar_annotation_coordinates(transvar_annotation_list, row['systematic_id'], transcript_id)) return transvar_output except ValueError as e: - if e.args[0] == 'no_valid_transcript_found' and row['systematic_id'] in exclude_transcripts: + # For now we skip the transcripts that don't work, but we should address this + if sgd_mode: + print('skipping transcript {} for {}'.format(row['systematic_id'], row['allele_name'])) + return [] + elif e.args[0] == 'no_valid_transcript_found' and row['systematic_id'] in exclude_transcripts: return [] else: raise e -def main(genome_file, allele_results_file, exclude_transcripts_file, output_file): +def main(genome_file, allele_results_file, exclude_transcripts_file, output_file, sgd_mode, transvardb, genome_fasta): with open(genome_file, 'rb') as ins: genome = pickle.load(ins) @@ -75,6 +79,15 @@ def main(genome_file, allele_results_file, exclude_transcripts_file, output_file data = pandas.read_csv(allele_results_file, sep='\t', na_filter=False) + if sgd_mode: + # Ammend wrong type: + wrong_type = (data['change_type_to'] != '') & \ + (data['pattern_error'] == '') & \ + (data['invalid_error'] == '') & \ + (data['sequence_error'] == '') + data.loc[wrong_type, 'allele_type'] = data.loc[wrong_type, 'change_type_to'] + data.loc[wrong_type, 'needs_fixing'] = False + # Remove all errors data = data[~data['needs_fixing']].copy() @@ -90,7 +103,7 @@ def main(genome_file, allele_results_file, exclude_transcripts_file, output_file # Apply transvar to each allele_parts data_exploded['transvar_input_list'] = data_exploded.apply(format_transvar_input_list, axis=1, args=(genome, syntax_rules_aminoacids, syntax_rules_nucleotides)) - anno_db = get_anno_db() + anno_db = get_anno_db(transvardb, genome_fasta) print('Running transvar on variants... (will take a while)') data_exploded['transvar_coordinates'] = data_exploded.progress_apply(get_transvar_coordinates, args=(anno_db, genome, exclude_transcripts), axis=1) @@ -107,8 +120,12 @@ class Formatter(argparse.ArgumentDefaultsHelpFormatter, argparse.RawDescriptionH parser.add_argument('--genome', default='data/genome.pickle', help='genome dictionary built from contig files.') parser.add_argument('--allele_results', default='results/allele_results.tsv') parser.add_argument('--exclude_transcripts', default='data/frame_shifted_transcripts.tsv') + parser.add_argument('--genome_fasta', default='data/pombe_genome.fa') + parser.add_argument('--transvardb', default='data/pombe_genome.gtf.transvardb') parser.add_argument('--output', default='results/allele_results_transvar.tsv') + parser.add_argument('--sgd_mode', type=bool, default=False, help='Skip transcripts that don\'t work and fix allele types, this arg should be removed in the future.') + args = parser.parse_args() - main(args.genome, args.allele_results, args.exclude_transcripts, args.output) + main(args.genome, args.allele_results, args.exclude_transcripts, args.output, args.sgd_mode, args.transvardb, args.genome_fasta) diff --git a/api.py b/api.py index cf65009..c13aefb 100644 --- a/api.py +++ b/api.py @@ -378,6 +378,7 @@ async def get_residue_at_position(systematic_id: str = Query(example='SPAPB1A10. @ app.get("/ganno", summary='Variant described at the genome level (gDNA)', response_model=list[TransvarAnnotation]) async def ganno(variant_description: str = Query(example="II:g.178497T>A", description='Variant described at the genome level (gDNA)')) -> list[TransvarAnnotation]: try: + db = get_anno_db('data/pombe_genome.gtf.transvardb', 'data/pombe_genome.fa') return parse_transvar_string(get_transvar_str_annotation('ganno', variant_description)) except Exception as e: raise HTTPException(400, str(e)) @@ -386,6 +387,7 @@ async def ganno(variant_description: str = Query(example="II:g.178497T>A", descr @ app.get("/canno", summary='Variant described at the coding DNA level (cDNA)', response_model=list[TransvarAnnotation]) async def canno(variant_description: str = Query(example="SPAC3F10.09:c.5A>T", description='Variant described at the coding DNA level (cDNA)')) -> list[TransvarAnnotation]: try: + db = get_anno_db('data/pombe_genome.gtf.transvardb', 'data/pombe_genome.fa') return parse_transvar_string(get_transvar_str_annotation('canno', variant_description)) except Exception as e: raise HTTPException(400, str(e)) @@ -394,6 +396,7 @@ async def canno(variant_description: str = Query(example="SPAC3F10.09:c.5A>T", d @ app.get("/panno", summary='Variant described at the protein level', response_model=list[TransvarAnnotation]) async def panno(variant_description: str = Query(example="SPBC1198.04c:p.N3A", description='Variant described at the protein level')) -> list[TransvarAnnotation]: try: + db = get_anno_db('data/pombe_genome.gtf.transvardb', 'data/pombe_genome.fa') return parse_transvar_string(get_transvar_str_annotation('panno', variant_description)) except Exception as e: raise HTTPException(400, str(e)) @@ -413,7 +416,7 @@ async def allele_transvar_coordinates(systematic_id: str = Query(example="SPBC35 with open('data/genome.pickle', 'rb') as ins: genome = pickle.load(ins) - db = get_anno_db() + db = get_anno_db('data/pombe_genome.gtf.transvardb', 'data/pombe_genome.fa') out_list = list() for allele_part, rule_applied in zip(check_allele_resp.allele_parts.split('|'), check_allele_resp.rules_applied.split('|')): @@ -440,7 +443,7 @@ async def protein_modification_coordinates(systematic_id: str = Query(example="S with open('data/genome.pickle', 'rb') as ins: genome = pickle.load(ins) - db = get_anno_db() + db = get_anno_db('data/pombe_genome.gtf.transvardb', 'data/pombe_genome.fa') out_list = list() for sequence_position_i in sequence_position.split(','): diff --git a/build_alignment_dict.py b/build_alignment_dict_from_genome.py similarity index 95% rename from build_alignment_dict.py rename to build_alignment_dict_from_genome.py index 6f986c6..a20fd40 100644 --- a/build_alignment_dict.py +++ b/build_alignment_dict_from_genome.py @@ -6,8 +6,7 @@ The dictionary structure, where keys are the systematic_id of genes: "SPAC23E2.02": [{ - "new_revision": "new_revision", - "old_revision": "old_revision", + "revision": "revision", "new_coord": "join(446770..449241,449295..450530)", "old_coord": "join(446491..446513,446679..449241,449295..450530)", "new_alignment": "--------------------------------------MNTSENDP ... GYNGTRY*", @@ -48,6 +47,9 @@ class Formatter(argparse.ArgumentDefaultsHelpFormatter, argparse.RawDescriptionH parser.add_argument('--genome', default='data/genome.pickle') parser.add_argument('--coords', default='data/only_modified_coordinates.tsv') parser.add_argument('--output', default='data/coordinate_changes_dict.json') +parser.add_argument('--old_genomes', default='data/old_genome_versions/*/*.contig') +parser.add_argument('--genome_sequence_changes', default='data/genome_sequence_changes.tsv') + args = parser.parse_args() @@ -109,12 +111,12 @@ def choose_old_genome(previous_coordinate, latest_genome_seq, old_genomes_dict, # Load info about changes in genome sequence -genome_seq_changes = pandas.read_csv('data/genome_sequence_changes.tsv', sep='\t', na_filter=False, dtype=str) +genome_seq_changes = pandas.read_csv(args.genome_sequence_changes, sep='\t', na_filter=False, dtype=str) # We skip current versions genome_seq_changes = genome_seq_changes[genome_seq_changes['chromosome'].duplicated()].copy() print('\033[0;32mreading old genomes...\033[0m') -old_genomes_dict = read_old_genomes(glob.glob('data/old_genome_versions/*/*.contig'), 'embl') +old_genomes_dict = read_old_genomes(glob.glob(args.old_genomes), 'embl') print('\033[0;32mold genomes read\033[0m') with open(args.genome, 'rb') as ins: diff --git a/build_alignment_dict_from_peptides.py b/build_alignment_dict_from_peptides.py new file mode 100644 index 0000000..ed2e6e6 --- /dev/null +++ b/build_alignment_dict_from_peptides.py @@ -0,0 +1,80 @@ +""" +Build a dictionary of alignments based on current and all previous peptide coordinates. + +The input is the all_previous_seqs.tsv file generated in https://github.com/pombase/all_previous_sgd_peptide_sequences + +The dictionary structure, where keys are the systematic_id of genes: + +"SPAC23E2.02": [{ + "new_alignment": "--------------------------------------MNTSENDP ... GYNGTRY*", + "old_alignment": "MPLGRSSWICCAKYFVNTKSRFNEILPPRFTLIVSFYSMNTSENDP ... SGYNGTRY*" +}], + +In the alignment gaps have the maximum penalty, to avoid scattered matches. + +-----CAV +MAACATAV + +And not + +---C--AV +MAACATAV + +The reason for this is that the alignment is based on changing / removing introns or changing the start of ending +coordinate of the start or end of the CDS, so you want maximal identity with minimum number of gaps. +""" + +import argparse +from Bio import pairwise2, SeqIO +from Bio.Seq import Seq +from Bio.SeqRecord import SeqRecord +import json + + +def main(previous_seqs_file, current_seqs_file, output_file): + old_seq_dict = dict() + # This one is a tsv file + with open(previous_seqs_file) as ins: + for line in map(str.rstrip, ins): + ls = line.split('\t') + gene_id = ls[0] + if gene_id in old_seq_dict: + old_seq_dict[ls[0]].append((Seq(ls[1]), ls[2])) + else: + old_seq_dict[ls[0]] = [(Seq(ls[1]), ls[2])] + + changes_dict = dict() + record: SeqRecord + for record in SeqIO.parse(current_seqs_file, 'fasta'): + + if record.id not in old_seq_dict: + continue + + changes_dict[record.id] = list() + for old_seq, revision in old_seq_dict[record.id]: + + alignments = pairwise2.align.globalms(record.seq, old_seq, match=1, mismatch=-2, open=-2, extend=0, penalize_end_gaps=False) + if len(alignments) == 0: + print('> No alignment found for {}, skipping'.format(record.id)) + continue + changes_dict[record.id].append({ + 'revision': revision, + 'new_alignment': alignments[0].seqA, + 'old_alignment': alignments[0].seqB + }) + + with open(output_file, 'w') as out: + json.dump(changes_dict, out, indent=4) + + +if __name__ == '__main__': + class Formatter(argparse.ArgumentDefaultsHelpFormatter, argparse.RawDescriptionHelpFormatter): + pass + + parser = argparse.ArgumentParser(description=__doc__, formatter_class=Formatter) + parser.add_argument('--previous_seqs', default='data/sgd/all_previous_seqs.tsv') + parser.add_argument('--current_seqs', default='data/sgd/current_protein_seqs.fasta') + parser.add_argument('--output', default='data/sgd/coordinate_changes_dict.json') + args = parser.parse_args() + + main(args.previous_seqs, args.current_seqs, args.output) diff --git a/common_autofix_functions.py b/common_autofix_functions.py index 591eb19..1a66481 100644 --- a/common_autofix_functions.py +++ b/common_autofix_functions.py @@ -37,6 +37,7 @@ def apply_old_coords_fix(row, coordinate_changes_dict, target_column): # These are histone proteins that typically did not count the methionine histones = ['SPBC1105.11c', 'SPBC1105.12', 'SPAC1834.03c', 'SPAC1834.04', 'SPAC19G12.06c', 'SPBC8D2.03c', 'SPBC8D2.04', 'SPCC622.08c', 'SPCC622.09', 'SPBC11B10.10c', 'SPBC1105.17'] +histones += ['YBL002W', 'YBL003C', 'YBR009C', 'YBR010W', 'YDR224C', 'YDR225W', 'YKL049C', 'YNL030W', 'YNL031C', 'YOL012C'] def apply_histone_fix(row, genome, target_column): diff --git a/data/sgd/all_previous_seqs.tsv b/data/sgd/all_previous_seqs.tsv new file mode 100644 index 0000000..7fab2f9 --- /dev/null +++ b/data/sgd/all_previous_seqs.tsv @@ -0,0 +1,409 @@ +Q0060 MVQRWLYSTNAKDIAVLYFMLAIFSGMAGTAMSLIIRLELAAPGSQYLHGNSQLFNVLVMPALIGGFGNQKRYESNNNNNQVMENKEYNLKLNYDKLGPYLAGLIEGDGTITVQNSSSMKKSKYRPLIVVVFKLEDLELANYLCNLTKCGKVYKKINRNYVLWTIHDLKGVYTLLNIINGYMRTPKYEAFVRGAEFMNNYINSTTITHNKLKNMDNIKIKPLDTSDIGSNAWLAGMTDADGNFSINLMNGKNRSSRAMPYYCLELRQNYQKNSNNNNINFSYFYIMSAIATYFNVNLYSRERNLNLLVSTNNTYKTYYSYKVMVANTYKNIKVMEYFNKYSLLSSKHLDFLDWSKLVILINNEGQSMKTNGSWELGMNLRKDYNKTRTTFTWSHLKNTYLENK* 060113 +Q0065 MVQRWLYSTNAKDIAVLYFMLAIFSGMAGTAMSLIIRLELAAPGSQYLHGNSQLFNVLVMPALIGGFGNYLLPLMIGATDTAFPRINNIAFWVLPMGLVCLVTSTLVESGAGTGWTVYPPLSSIQAHSGPSVDLAIFALHLTSISSLLGAINFIVTTLNMRTNGMTMHKLPLFVWSIFITAFLLLLSLPVLSAGITMLLLDRNFNTSFFEVSGGGDPILYEHLFWFFGQTVATIIMLMMYNDMHFSKCWKLLKKWITNIMSTLFKALFVKMFMSYNNQQDKMMNNTMLKKDNIKRSSETTRKMLNNSMNKKFNQWLAGLIDGDGYFGIVSKKYVSLEITVALEDEMALKEIQNKFGGSIKLRSGVKAIRYRLTNKTGMIKLINAVNGNIRNTKRLVQFNKVCILLGIDFIYPIKLTKDNSWFVGFFDADGTINYSFKNNHPQLTISVTNKYLQDVQEYKNILGGNIYFDKSQNGYYKWSIQSKDMVLNFINDYIKMNPSRTTKMNKLYLSKEFYNLKELKAYNKSSDSMQYKAWLNFENKWKNK* 060113 +R0010W MPQFGILCKTPPKVLVRQFVERFERPSGEKIALCAAELTYLCWMITHNGTAIKRATFMSYNTIISNSLSFDIVNKSLQFKYKTQKATILEASLKKLIPAWEFTIIPYYGQKHQSDITDIVSSLQLQFESSEEADKGNSHSKKMLKALLSEGESIWEITEKILNSFEYTSRFTKTKTLYQFLFLATFINCGRFSDIKNVDPKSFKLVQNKYLGVIIQCLVTETKTSVSRHIYFFSARGRIDPLVYLDEFLRNSEPVLKRVNRTGNSSSNKQEYQLLKDNLVRSYNKALKKNAPYSIFAIKNGPKSHIGRHLMTSFLSMKGLTELTNVVGNWSDKRASAVARTTYTHQITAIPDHYFALVSRYYAYDPISKEMIALKDETNPIEEWQHIEQLKGSAEGSIRYPAWNGIISQEVLDYLSSYINRRI* 210421 +R0020C MNGERLLACIKQCIMQHFQPMVYDESRCVIETTRGTFPVPDNYKKYKTLAFAFVGHVLNTDDTPVIEKELDWPDPALVYNTIVDRIINHPELSQFISVAFISQLKATIGEGLDINVKGTLNRRGKGIRRPKGVFFRYMESPFVNTKVTAFFSYLRDYNKIASEYHNNTKFILTFSCQAYWASGPNFSALKNVIRCSIIHEYISKFVEREQDKGHIGDQELPPEEDPSRELNNVQHEVNSLTEQDAEADEGLWGEIDSLCEKWQSEAEDQTEAEIIADRIIGNSQRMANLKIRRTKFKSVLYHILKELIQSQGTVKVYRGSSFSHDSIKISLHYEEQHITAVWVYLTVKFEEHWKPVDVEVEFRCKFKERKVDG* 210421 +R0030W MPYKTAIDCIEELATQCFLSKLTDDDVSTFRRVCSKENDIIKLALRIPRTIDYTSILRLLYDTLPLRSLSFNEALPLFCYSIDPAQQRQCDLRFYLRDVVKLARPRKRLEMQKALLQWLPSLLSDVTLQLLNDIRIRFEEIQPNIRQTVLQIYDRTCYPSLNFEHPNLGVFPETDSIFEPV* 210421 +R0040C MDDIETAKNLTVKARTAYSVWDVCRLFIEMIAPDVDIDIESKRKSDELLFPGYVIRPMESLTTGRPYGLDSSAEDSSVSSDSSAEVILPAAKMVKERFDSIGNGMLSSQEASQAAIDLMLQNNKLLDNRKQLYKSIAIIIGRLPEKDKKRATEMLMRKMDCTQLLVPPAPTEEDVMKLVSVVTQLLTLVPPDRQAALIGDLFIPESLKDIFNSFNELAAENRLQQKKSELEGRTEVNHANTNEEVPSRRTRSRDTNARGAYKLQNTITEGPKAVPTKKRRVATRVRGRKSRNTSRV* 210421 +YAL002W MGTSKGCVLIFNYNEHLQTILVPTLSEDPSIHSIRSPVKSIVICSDGTHVAASYETGNICIWNLNVGYRVKPTSEPTNGMTPTPALPAVLHIDDHVNKEITGLDFFGARHTALIVSDRTGKVSLYNGYRRGFWQLVYNSKKILDVNSSKEKLIRSKLSPLISREKISTNLLSVLTTTHFALILLSPHVSLMFQETVEPSVQNSLVVNSSISWTQNCSRVAYSVNNKISVISISSSDFNVQSASHSPEFAESILSIQWIDQLLLGVLTISHQFLVLHPQHDFKILLRLDFLIHDLMIPPNKYFVISRRSFYLLTNYSFKIGKFVSWSDITLRHILKGDYLGALEFIESLLQPYCPLANLLKLDNNTEERTKQLMEPFYNLSLAALRFLIKKDNADYNRVYQLLMVVVRVLQQSSKKLDSIPSLDVFLEQGLEFFELKDNAVYFEVVANIVAQGSVTSISPVLFRSIIDYYAKEENLKVIEDLIIMLNPTTLDVDLAVKLCQKYNLFDLLIYIWNKIFDDYQTPVVDLIYRISNQSEKCVIFNGPQVPPETTIFDYVTYILTGRQYPQNLSISPSDKCSKIQRELSAFIFSGFSIKWPSNSNHKLYICENPEEEPAFPYFHLLLKSNPSRFLAMLNEVFEASLFNDDNDMVASVGEAELVSRQYVIDLLLDAMKDTGNSDNIRVLVAIFIATSISKYPQFIKVSNQALDCVVNTICSSRVQGIYEISQIALESLLPYYHSRTTENFILELKEKNFNKVLFHIYKSENKYASALSLILETKDIEKEYNTDIVSITDYILKKCPPGSLECGKVTEVIETNFDLLLSRIGIEKCVTIFSDFDYNLHQEILEVKNEETQQKYLDKLFSTPNINNKVDKRLRNLHIELNCKYKSKREMILWLNGTVLSNAESLQILDLLNQDSNFEAAAIIHERLESFNLAVRDLLSFIEQCLNEGKTNISTLLESLRRAFDDCNSAGTEKKSCWILLITFLITLYGKYPSHDERKDLCNKLLQEAFLGLVRSKSSSQKDSGGEFWEIMSSVLEHQDVILMKVQDLKQLLLNVFNTYKLERSLSELIQKIIEDSSQDLVQQYRKFLSEGWSIHTDDCEICGKKIWGAGLDPLLFLAWENVQRHQDMISVDLKTPLVIFKCHHGFHQTCLENLAQKPDEYSCLICQTESNPKIV* 040206 +YAL004W MGVTSGGLNFKDTVFNEQQRDIESTTTQVENQDVFFLTLLVQTVSNGSGGRFVNNTQDIQTSNGTSILGSLSLRIVEVSWDSDDSVIDLGSQVRFGSFLHLTQDHGGDLFWGKVLGFTLKFNLNLRLTVNIDQLEWEVLHVSLHFWVVEVSTDQTLSVENGIRRIHSSLILSSITNQSFSVSESDKRWSGSVTLIVGNNVHTIISKVSNTRVCCT* 070406 +YAL005C MSKAVGIDLGTTYSCVAHFANDRVDIIANDQGNRTTPSFVAFTDTERLIGDAAKNQAAMNPSNTVFDAKRLIGRNFNDPEVQADMKHFPFKLIDVDGKPQIQVEFKGETKNFTPEQISSMVLGKMKETAESYLGAKVNDAVVTVPAYFNDSQRQATKDAGTIAGLNVLRIINEPTAAAIAYGLDKKGKEEHVLIFDLGGGTFDVSLLFIEDGIFEVKATAGDTHLGGEDFDNRLVNHFIQEFKRKNKKDLSTNQRALRRLRTACERAKRTLSSSAQTSVEIDSLFEGIDFYTSITRARFEELCADLFRSTLDPVEKVLRDAKLDKSQVDEIVLVGGSTRIPKVQKLVTDYFNGKEPNRSINPDEAVAYGAAVQAAILTGDESSKTQDLLLLDVAPLSLGIETAGGVMTKLIPRNSTISTKKFEIFSTYADNQPGVLIQVFEGERAKTKDNNLLGKFELSGIPPAPRGVPQIEVTFDVDSNGILNVSAVEKGTGKSNKITITNDKGRLSKEDIEKMVAEAEKFKEEDEKESQRIASKNQLESIAYSLKNTISEAGDKLEQADKDTVTKKAEETISWLDSNTTASKEEFDDKLKELQDIANPIMSKLYQAGGAPGGAAGGAPGGFPGGAPPAPEAEGPTVEEVD* 070406 +YAL010C MLPYMDQVLRAFYQSTHWSTQNSYEDITATSRTLLDFRIPSAIHLQISNKSTPNTFNSLDFSTRSRINGSLSYLYSDAQQLEKFMRNSTDIPLQDATETYRQLQPNLNFSVSSANTLSSDNTTVDNDKKLLHDSKFVKKSLYYGRMYYPSSDLEAMIIKRLSPQTQFMLKGVSSFKESLNVLTCYFQRDSHRNLQEWIFSTSDLLCGYRVLHNFLTTPSKFNTSLYNNSSLSLGAEFWLGLVSLSPGCSTTLRYYTHSTNTGRPLTLTLSWQPLFGHISSTYSAKTGTNSTFCAKYDFNLYSIESNLSFGCEFWQKKHHLLETNKNNNDKLEPISDELVDINPNSRATKLLHENVPDLNSAVNDIPSTLDIPVHKQKLLNDLTYAFSSSLRKIDEERSTIEKFDNKINSSIFTSVWKLSTSLRDKTLKLLWEGKWRGFLISAGTELVFTRGFQESLSDDEKNDNAISISATDTENGNIPVFPAKFGIQFQYST* 110203 +YAL013W MSQQTPQESEQTTAKEQDLDQESVLSNIDFNTDLNHNLNLSEYCISSDAGTEKMDSDEEKSLANLPELKYAPKLSSLVKQETLTESLKRPHEDEKEAIDEAKKMKVPGENEDESKEEEKSQELEEAIDSKEKSTDARDEQGDEGDNEEENNEEDNENENEHTAPPALVMPSPIEMEEQRMTALKEITDIEYKFAQLRQKLYDNQLVRLQTELQMCLEGSHPELQVYYSKIAAIRDYKLHRAYQRQKYELSCINTETIATRTFIHQDFHKKVTDLRARLLNRTTQTWYDINKERRDMDIVIPDVNYHVPIKLDNKTLSCITGYAAHDSCAIPASPWQRTSLAKASSTATEPTRWTNSKSLWTE* 040112 +YAL013W MSQQTPQESEQTTAKEQDLDQESVLSNIDFNTDLNHNLNLSEYCISSDAGTEKMDSDEEKSLANLPELKYAPKLSSLVKQETLTESLKRPHEDEKEAIDEAKKMKVPGENEDESKEEEKSQELEEAIDSKEKSTDARDEQGDEGDNEEENNEEDNENENEHTAPPALVMPSPIEMEEQRMTALKEITDIEYKFAQLRQKLYDNQLVRLQTELQMCLEGSHPELQVYYSKIAAIRDYKLHRAYQRQKYELSCINTETIATRTFIHQDFHKKVTDLRARLLNRTTQTWYDINKERRDMDIVIPDVNYHVPIKLDNKTLSCITGYASAAQLCYPGEPVAEDLACESIEYRYRANPVDKLEVIVDRMRLNNEISDLEGLRKYFHSFPGAPELNPLRDSEINDDFHQWAQCDRHTGPHTTSFCYS* 110203 +YAL017W MPYIGASNLSEHSFVNLKEKHAITHKGTSSSVASLQTPPSPDQENHIDNELENYDTSLSDVSTPNKKEGDEFQQSLRDTFASFRKTKPPPPLDFEQPRLPSTASSSVDSTVSSPLTDEDIKELEFLPNESTHSYSYNPLSPNSLAVRLRILKRSLEIIIQNPSMLLEPTPDDLPPLKEFAGRRSSLPRTSASANHLMNRNKSQIWNTTSATLNAFVNNTSSSSAASSALSNKKPGTPVFPNLDPTHSQTFHRANSLAYLPSILPEQDPLLKHNNSLFRGDYGNNISPERPSFRQPFKDQTSNLRNSSLLNERAYQEDETFLPHHGPSMDLLNEQRANLKSLLNLLNETLEKNTSERASDLHMISLFNLNKLMLGDPKKNNSERDKRTEKLKKILLDSLAEPFFEHYNFIGDNPIADTDELKEEIDEFTGSGDTTAITDIRPQQDYGRILRTFTSTKNSAPQAIFTCSQEDPWQFRAANDLACLVFGISQNAIRALTLMDLIHTDSRNFVLHKLLSTEGQEMVFTGEIIGIVQPETLSSSKVVWASFWAKRKNGLLVCVFEKVPCDYVDVLLNLDDFGAENIVDKCELLSDGPTLSSSSTLSLPKMASSPTGSKLEYSLERKILEKSYTKPTSTENRNGDENQLDGDSHSEPSLSSSPVRSKKSVKFANDIKDVKSISQSLAKLMDDVRNGVVFDPDDDLLPMPIKVCNHINETRYFTLNHLSYNIPCAVSSTVLEDELKLKIHSLPYQAGLFIVDSHTLDIVSSNKSILKNMFGYHFAELVGKSITEIIPSFPKFLQFINDKYPALDITLHKNKGLVLTEHFFRKIQAEIMGDRKSFYTSVGIDGLHRDGCEIKIDFQLRVMNSKVILLWVTHSRDVVFEEYNTNPSQLKMLKESELSLMSSASSSASSSKKSSSRISTGTLKDMSNLSTYEDLAHRTNKLKYEIGDDSRAHSQSTLSEQEQVPLENDKDSGEMMLADPEMKHKLELARIYSRDKSQFVKEGNFKVDENLIISKISLSPSTESLADSKSSGKGLSPLEEEKLIDENATENGLAGSPKDEDGIIMTNKRGNQPVSTFLRTPEKNIGAQKHVKKFSDFVSLQKMGEGAYGKVNLCIHKKNRYIVVIKMIFKERILVDTWVRDRKLGTIPSEIQIMATLNKKPHENILRLLDFFEDDDYYYIETPVHGETGCIDLFDLIEFKTNMTEFEAKLIFKQVVAGIKHLHDQGIVHRDIKDENVIVDSKGFVKIIDFGSAAYVKSGPFDVFVGTIDYAAPEVLGGNPYEGQPQDIWAIGILLYTVVFKENPFYNIDEILEGDLKFNNAEEVSEDCIELIKSILNRCVPKRPTIDDINNDKWLVI* 110203 +YAL020C MSCVYAFGSNGQRQLGLGHDEDMDTPQRSVPGDDGAIVRKIACGGNHSVMLTNDGNLVGCGDNRRGELDSAQALRQVHDWRPVEVPAPVVDVACGWDTTVIVDADGRVWQRGGGCYEFTQQHVPLNSNDERIAVYGCFQNFVVVQGTRVYGWGSNTKCQLQEPKSRSLKEPVLVYDTGSVAVDYVAMGKDFMVIVDEGGRIVHASGRLPTGFELKQQQKRHNLVVLCMWTSIHLWNARLNTVESFGRGTHSQLFPQERLDFPIVGVATGSEHGILTTANQEGKSHCYNVYCWGWGEHGNCGPQKASQPGLQLVGQYSGKPRVFGGCATTWIVL* 110203 +YAL025C MSDEIVWQVINQSFCSHRIKAPNGQNFCRNEYNVTGLCTRQSCPLANSKYATVKCDNGKLYLYMKTPERAHTPAKLWERIKLSKNYTKALQQIDEHLLHWSKFFRHKCKQRFTKLTQVMITERRLALREEERHYVGVAPKVKRREQNRERKALVAAKIEKAIEKELMDRLKSGAYGDKPLNVDEKVWKKIMGQMEEENSQDEEEDWDEEEESDDGEVEYVADDGEGEYVDVDDLEKWLADSDREASSASQSESDSESESDSDSDEENKNSAKRRKKGTSAKTKRPKVEIEYEEEHEVQNAEQEVAQ* 110203 +YAL026C MNDDRETPPKRKPGEDDTLFDIDFLDDTTSHSGSRSKVTNSHANGYYIPPSHVLPEETIDLDADDDNIENDVHENLFMSNNHDDQTSWNANRFDSDAYQPQSLRAVKPPGLFARFGNGLKNAFTFKRKKGPESFEMNHYNAVTNNELDDNYLDSRNKFNIKILFNRYILRKNVGDAEGNGEPRVIHINDSLANSSFGYSDNHISTTKYNFATFLPKFLFQEFSKYANLFFLCTSAIQQVPHVSPTNRYTTIGTLLVVLIVSAMKECIEDIKRANSDKELNNSTAEIFSEAHDDFVEKRWIDIRVGDIIRVKSEEPIPADTIILSSSEPEGLCYIETANLDGETNLKIKQSRVETAKFIDVKTLKNMNGKVVSEQPNSSLYTYEGTMTLNDRQIPLSPDQMILRGATLRNTAWIFGLVIFTGHETKLLRNATATPIKRTAVEKIINRQIIRLFTVLIVLILISSIGNVIMSTADAKHLSYLYLEGTNKAGLFFKDFLTFWILFSNLVPISLFVTVELIKYYQAFMIGSDLDLYYEKTDTPTVVRTSSLVEELGQIEYIFSDKTGTLTRNIMEFKSCSIAGHCYIDKIPEDKTATVEDGIEVGYRKFDDLKKKLNDPSDEDSPIINDFLTLLATCHTVIPEFQSDGSIKYQAASPDEGALVQGGADLGYKFIIRKGNSVTVLLEETGEEKEYQLLNICEFNSTRKRMSAIFRFPDGSIKLFCKGADTVILERLDDEANQYVEATMRHLEDYASEGLRTLCLAMRDISEGEYEEWNSIYNEAATTLDNRAEKLDEAANLIEKNLILIGATAIEDKLQDGVPETIHTLQEAGIKIWVLTGDRQETAINIGMSCRLLSEDMNLLIINEETRDDTERNLLEKINALNEHQLSTHDMKSLALVIDGKSLGFALEPELEDYLLTVAKLCKAVICCRVSPLQKALVVKMVKRKSSSLLLAIASGANDVSMIQAAHVGVGISGMEGMQAARSADIALGQFKFLKKLLLVHGSWSYQRISVAILYSFYKNTALYMTQFWYVFANAFSGQSIMESWTMSFYNLFFTVWPPFVIGVFDQFVSSRLLERYPQLYKLGQKGQFFSVYIFWGWIINGFFHSAIVFIGTILIYRYGFALNMHGELADHWSWGVTVYTTSVIIVLGKAALVTNQWTKFTLIAIPGSLLFWLIFFPIYASIFPHANISREYYGVVKHTYGSGVFWLTLIVLPIFALVRDFLWKYYKRMYEPETYHVIQEMQKYNISDSRPHVQQFQNAIRKVRQVQRMKKQRGFAFSQAEEGGQEKIVRMYDTTQKRGKYGELQDASANPFNDNNGLGSNDFESAEPFIENPFADGNQNSNRFSSSRDDISFDI* 110203 +YAL044C MLRTTRLWTTRMPAVSKLFLRNSSGNALNKNKLPFLYSSQGPQAVRYTSQHEWIAVHQDKTAFVGITKYATDSLGDATYVELPEVGTEISQGESLGSIESVKSASEIYQPADGTVEEINTNLEENPGVVNEDPMGDGWLVKMKLGEGVNVEQVEGLMSLEQYEKTLVHDD* 080306 +YAL047C MVRRWIPSGRHLRNNDNTGDDDDSEFTNSMDSGMSIPSLRDSMTTRSSHNDPIKPALMNDSNKVKNLEKELTNAKIKIQVLYEYIRRIPNKDGNAPSLGNDTDFRNSIIEGLNLEINKLKQDLKAKEVEYQDTLQFVQENLENSESIVNTINHLLSFILTHFNEQDENAHLLDKEERETLEETLELSSDYVLEKMDTLSKFIIQFLQDFLHSKSRAESKQDKEEFLSLAQSSPAGSQLESRDSPSSKEENTDGGYQNDEIHDSNNHIDTENVMANSTSLPISAVESRFEKTLDTQLEIVIEILHKEYDQFINSIRLKFEKSQKLEKIIASKLNEQSHLLDSLELEENSSSVIEKQDHLISQLKEKIESQSVLINNLEKLKEDIIKMKQNEKVLTKELETQTKINKLKENNWDSYINDLEKQINDLQIDKSEEFHVIQNQLDKLDLENYQLKNQLNTLDNQKLILSQYESNFIKFNQNLLLHLDSIFNILQKILQESSIAQFDRKMKSIKSVPNALKNLNLIQPKLESLYTFIETALESIINSYISSLISMETPEQPHQQGNELTATPNKELTLRIEELQRRWISERERRKLDANASEARIKALEQENESLRSKLFNLSINNP* 110203 +YAL051W MVENSTQKAPHAGNDDNSSTKPYSEAFFLGFNNPTPGLEAEHSSTSPAPENSETHNRKRNRILFVCQACWKSKTKCDREKPECGRCVKHGLKCVYDVSKQPAPRIPSKDAIISRLEKDMFYWKDKAMKLLTEREVNESGKRSASPINTNNASGDSPDTKKQHKMEPIYEQSGNGDINNGTRNDIEINLYRSHPTMIMSKVMKREVKPLSENYIIIQDCFLKILVTSVFLDTSKNTMIPALTANANITRAQPSVANNLLKLKEMLIRQCQTEDEKNRVNEFTDRILQNTNSNRNLKIGMLLSMLYNSVGYQYLEDHCPQGGEYSDLLRNLINECEAILPSYEIIERYKNHFYEYVYPSLPFIELEIFEESLSQTIFPDPNNPSKVQIRMGSTHLRAKVENLSLLLVILKLSYMSIRFLDHSTADSSFYLSKEIIDKYPIPNDFILLSPRCLASENWCACANENIISCLLYIWSFFAFSPEEGDFFLEHPTDVISSLIMMLSTSIGLHRDPSDFPQLISPSTSDKRTLNHRRILWLSIVTVCSFEASLKGRHSVSPISLMALFLNIKDPDSLTVYMNRVRGDLSDINNHTLLRIHKFTFKRAQLALLLSDLDNLTMTYYGSFHLHSIEFIREKIEIFVEENFPIVPLKSVAQDKSDLDDMNVISEMNILSSENSSSFHNRIMNKLLMLRTSMAVFLHFETLITKDKSIFPFYKKYFMVSCMDALSLINYFNKFFNGEYRHAISSLTSFNVTKFIQLALSSTIFSLLGIILRIGLAIHMLSSEVQKLSGTTDPRIKELNTKVEKFSTLQRDLESALEGIYCSASEHLRFTYFPVFKMLALFDVIVQRMRKGELWHGIFTMIQMEQMHSRIIKTLSITLGVKLDKKDRLLEELMACNHVANFSVEDIDELNRNIKKEIQISSGLKPPVNTIDLTNGEPFGNAVPTFTKTWSSSLDNLEKLSSAAAVGQSLDYNSGLRQGPLAGGGSKEQTPIAGMNNLNNSINATPIVDNSSGSQLPNGFDRGQANNTPFPGYFGGLDLFDYDFLFGNDFA* 110203 +YAL051W MVENSTQKAPHAGNDDNSSTKPYSEAFFLGFNNPTPGLEAEHSSTSPAPENSETHNRKRNRILFVCQACWKSKTKCDREKPECGRCVKHGLKCVYDVSKQPAPRIPSKDAIISRLEKDMFYWKDKAMKLLTEREVNESGKRSASPINTNNASGDSPDTKKQHKMEPIYEQSGNGDINNGTRNDIEINLYRSHPTMIMSKVMKREVKPLSENYIIIQDCFLKILVTSVFLDTSKNTMIPALTANANITRAQPSVANNLLKLKEMLIRQCQTEDEKNRVNEFTDRILQNTNSNRNLKIGMLLSMLYNSVGYQYLEDHCPQGGEYSDLLRNLINECEAILPSYEIIERYKNHFYEYVYPSLPFIELEIFEESLSQTIFPDPNNPSKVQIRMGSTHLRAKVENLSLLLVILKLSYMSIRFLDHSTADSSFYLSKEIIDKYPIPNDFILLSPRCLASENWCACANENIISCLLYIWSFFAFSPEEGDFFLEHPTDVISSLIMMLSTSIGLHRDPSDFPQLISPSTSDKRTLNHRRILWLSIVTVCSFEASLKGRHSVSPISLMALFLNIKDPDSLTVYMNRVRGDLSDINNHTLLRIHKFTFKRAQLALLLSDLDNLTMTYYGSFHLHSIEFIREKIEIFVEENFPIVPLKSVAQDKSDLDDMNVISEMNILSSENSSSFHNRIMNKLLMLRTSMAVFLHFETLITKDKSIFPFYKKYFMVSCMDALSLINYFNKFFNGEYRHAISSLTSFNVTKFIQLALSSTIFSLLGIILRIGLAIHMLSSEVQKLSGTTDPRIKELNTKVEKFSTLQRDLESALEGIYCSASEHLRFTYFPVFKMLALFDVIVQRMRKGELWHGIFTMIQMEQMHSRIIKTLSITLGVKLDKKDRLLEELMACNHVANFSVEDIDELNRNIKKEIQISSGLKPPVNTIDLTNGEPFGNAVPTFTKTWSSSLDNLEKLSSAAAVGQSLDYNSGLRQGPLAGGGSKEQTPIAGMNNLNNSINATPIVDNSSGSQLPNGFDRGQANNTPFPGYFGGLDLFDYDFLVWAMTLLKNFLSKLLPIHFIN* 040723 +YAL053W MIFLNTFARCLLTCFVLCSGTARSSDTNDTTPASAKHLQTTSLLTCMDNSQLTASFFDVKFYPDNNTVIFDIDATTTLNGNVTVKAELLTYGLKVLDKTFDLCSLGQVSLSPLSAGRIDVMSTQVIESSITKQFPGIAYTIPDLDAQVRVVAYAQNDTEFETPLACVQAILSNGKTVQTKYAAWPIAAISGVGVLTSGFVSVIGYSATAAHIASNSISLFIYFQNLAITAMMGVSRVPPIAAAWTQNFQWSMGIINTNFMQKIFDWYVQATNGVSNVVVANKDVLSISVQKRAISMASSSDYNFDTILDDSDLYTTSEKDPSNYSAKILVLRGIERVAYLANIELSNFFLTGIVFFLFFLFVVVVSLIFFKALLEVLTRARILKETSNFFQYRKNWGSIIKGTLFRLSIIAFPQVSLLAIWEFTQVNSPAIVVDAVVILLIITGLLVYGTIRVFIKGRESLRLYKNPAYLLYSDTYFLNKFGFLYVQFKADKFWWLLPLLSYAFLRSLFVAVLQNQGKAQAMIIFVIELAYFVCLCWIRPYLDKRTNVFNIAIHLVNLINAFFFLFFSNLFKQPAVVSSVMAVILFVLNAVFALFLLLFTIVTCTLALLHRNPDVRYQPMKDDRVSFIPKIQNDFDGKNKIDPELFELRKAVMDTNENEEEKMFRDDTFGKNLNANTNTARLFDDETSSSSFKQNSSPFDASEVTEQPVQPTSAVMGTGGSFLSPQYQRASSASRTNLAPNNTSTSSLMKPESSLYLGNSNKSYSHFNNNGSNENARNNNPYL* 110203 +YAL056W MEISSSPWNDGGYSPYERNRVAVSPFSSALEGEERIETSRSLGDHCFEPLPYVTNYLSIFALFGKEIFGDKGNVSSRNEYLLKKYYSLKKPFVLRHNGHALKNPDMPLQRNDILQTNFMVDKFLNRTVRSVNFNNFKIISDMQSKSGRGTKSGTNQNQSADAIQNICLPSIPSALPYFQYYRKLLTVNTKEWDILKLHSLWVPKLRKDFKDFSLYGDKNSLKPIDSHYDEDNTMKKNLFFERSPSRQTLDGKGCASKGYDISSGNMIIPSLFSEDKLPALTYHCSVELNGNIYIFGGLMPCYSYEEDAPMLNDFFVDGIKNLPPPLLPQVINNPSMVNNPHLYVASIPSCRFSKPKMGGYIPPPLLCVQGSKLTDRHIFFYGGFEIRTETRGDENGKYHLKKRLYVNNTGYILDIMSFKFTKIDIIVQPSKYNAYPTMSSRFGHLQISIDNPNRRASVHSSSMNEIHKMGSASMKQGSSITSGRLEKAAVLSSLPHNTVHTVIIFGGYRQTGDDRYEAMNDLWKIEIPVIRRGKKGYCKFSETANAILLTPSEKDKSDWPEERAFSAFSVHGTSLMDRSSLDMRLLNNLKNHFVLKPSYISQDRVVSPKPVFPMMVHGTHQDLFNSGSAAQESPKAGASASSASAASFDPDMDDNLENYIINPGRKSSSIPMTAIGRQRLILSQEKPVGKTVVLHGGSNGLNVLDDMWLMDLECETWTPIETFAKADSSEDGDEKLDSVNVGLVGHRMESIGRICVCIGGMVQEDVDQFYSENDDEPPRKRKVDTLPLGGNFLNTIDLSTQFWEEHKITLSKKAADEDRQDSENEDTNSNIVVGVGGTSFNVTKVLF* 040206 +YAL056W MEISSSPWNDGGYSPYERNRVAVSPFSSALEGEERIETSRSLGDHCFEPLPYVTNYLSIFALFGKEIFGDKGNVSSRNEYLLKKYYSLKKPFVLRHNGHALKNPDMPLQRNDILQTNFMVDKFLNRTVRSVNFNNFKIISDMQSKSGRGTKSGTNQNQSADAIQNICLPSIPSALPYFQYYRKLLTVNTKEWDILKLHSLWVPKLRKDFKDFSLYGDKNSLKPIDSHYDEDNTMKKNLFFERSPSRQTLDGKGCASKGYDISSGNMIIPSLFSEDKLPALTYHCSVELNGNIYIFGGLMPCYSYEEDAPMLNDFFVDGIKNLPPPLLPQVINNPSMVNNPHLYVASIPSCRFSKPKMGGYIPPPLLCVQGSKLTDRHIFFYGGFEIRTETRGDENGKYHLKKRLYVNNTGYILDIMSFKFTKIDIIVQPSKYNAYPTMSSRFGHLQISIDNPNRRASVHSSSMNEIHKMGSASMKQGSSITSGRLEKAAVLSSLPHNTVHTVIIFGGYRQTGDDRYEAMNDLWKIEIPVIRRGKKGYCKFSETANAILLTPSEKDKSDWPEERAFSAFSVHGTSLMDRSSLDMRLLNNLKNHFVLKPSYISQDRVVSPKPVFPMMVHGTHQDLFNSGSAAQESPKAGASASSASAASFDPDMDDNLENYIINPGRKSSSIPMTAIGRQRLILSQEKPVGKTVVLHGGSNGLNVLDDMWLMDLECETWTPIETFAKADSSEDGDEKLDSVNVGLVGHRMESIGRICVCIGGMVQEDVDQFYSENDDEPPRKRKVDTLPLGGNFLNTIDLSTQFWEEHKITLSKKAADEDRQDSENEDTNSNIVVGVGGTSLQCDKSIILIGGLISRRSNVKEIYLHGTITKSIFPSVNPSA* 110203 +YAL059C-A MYLAREMDLAILPSRRLVKFKAFTKRSLSMDEIELSSLSSRAFLFNFLPLLLLLAFLDIFASSNASFLAAVLIKILVKSVFSALGSSLKSFTSGSRASDCLAALEFFDIFLAMLCFRRYLTSIVKEKTTFCRLCSHIQYF* 110203 +YAL059W MWEQRRQKVVFSLTILVRYRLKQSMAKKISKNSRAARQSDALEPEVKDLSELPRAEKTDLTNILIRTAAKNEALLEAKISKKANKSKRGKKLNKKALEDKLDNSISSMDRDRLVKALNFTNRLDGKIAKSISRAKYIQNTRKAGWDSTNETIKKELAFLNGGLSVQAKSASEGNAEKEDEEIPEVFDSLAEDNTVQKTPTNRFGVLPDDVEE* 110203 +YAL060W MRALAYFKKGDIHFTNDIPRPEIQTDDEVIIDVSWCGICGSDLHEYLDGPIFMPKDGECHKLSNAALPLAMGHEMSGIVSKVGPKVTKVKVGDHVVVDAASSCADLHCWPHSKFYNSKPCDACQRGSENLCTHAGFVGLGVISGGFAEQVVVSQHHIIPVPKEIPLDVAALVEPLSVTWHAVKISGFKKGSSALVLGAGPIGLCTILVLKGMGASKIVVSEIAERRIEMAKKLGVEVFNPSKHGHKSIEILRGLTKSHDGFDYSYDCSGIQVTFETSLKALTFKGTATNIAVWGPKPVPFQPMDVTLQEKVMTGSIGYVVEAFEEVVRAIHNGDIAMEDCKQLITGKQRIEDGWEKGFQELMDHKESNVKILLTPNNHGEMK* 110203 +YAL064W MRYTATFRPLQRFVMNPFASLEGQDNISSVFFLHMQQFESQVKDRFRFPIFRLERKTFGNSCYQVETLKVKCRPRHAKSCNLLTLLFKSRTQSVLVPNFGFLILNSEP* 110203 +YAR014C MSNKEEHVDETSASGVKEVSSIAARHDNGYAPSLITSTSGMDSFQSHALLNDPTLIEDYSDIINNRPTSGSKLTLGNEDSESMGGSVVVTPTSNKSSPFNSKLNILSNAAEKGHDVLRNRDDDKELEEENVEKHMHSNSKRDQRHYKENSSELPDSYDYSDSEFEDNLERRLQEIETDSVDSADKDEVHFSVNNTMNPDVDDFSDGLKYAISEDEDEEENYSDDDDFDRKFQDSGFQGEKDDLEEENDDYQPLSPPRELDPDKLYALYAFNGHDSSHCQLGQDEPCILLNDQDAYWWLVKRITDGKIGFAPAEILETFPERLARLNCWKNENMSSQSVASSDSKDDSISSGNKNQSDAESIIPTPALNGYGKGNKSVSFNDVVGYADRFIDDAIEDTSLDSNDDGGEGNGQSYDDDVDNDKETKVTHRDEYTEAKLNFAKFQDDDTSDVVSDVSFSTSLNTPLNVKKVRRQDNKNESEPKTSSSKDREDDYNANRYVGQEKSEPVDSDYDTDLKKVFEAPRMPFANGMAKSDSQNSLSTIGEFSPSSSEWTNESPSTPIVEESSSIPSSRAIRTFTYIMQNRKLRDNKRGKHRGQIQASLGSSGGMPNQTDAEQPKEELEKHHSTPEEEKQSTLSLHSSSEEDFYMDEQRAVSSASINSSLSGSRALSNTNMSDPASKPNSLVQHLYAPVFDRMDVLMKPIG* 040206 +YAR014C MSNKEEHVDETSASGVKEVSSIAARHDNGYAPSLITSTSGMDSFQSHALLNDPTLIEDYSDIINNRPTSGSKLTLGNEDSESMGGSVVVTPTSNKSSPFNSKLNILSNAAEKGHDVLRNRDDDKELEEENVEKHMHSNSKRDQRHYKENSSELPDSYDYSDSEFEDNLERRLQEIETDSVDSADKDEVHFSVNNTMNPDVDDFSDGLKYAISEDEDEEENYSDDDDFDRKFQDSGFQGEKDDLEEENDDYQPLSPPRELDPDKLYALYAFNGHDSSHCQLGQDEPCILLNDQDAYWWLVKRITDGKIGFAPAEILETFPERLARLNCWKNENMSSQSVASSDSKDDSISSGNKNQSDAESIIPTPALNGYGKGNKSVSFNDVVGYADRFIDDAIEDTSLDSNDDGGEGNGQSYDDDVDNDKETKVTHRDEYTEAKLNFAKFQDDDTSDVVSDVSFSTSLNTPLNVKKVRRQDNKNESEPKTSSSKDREDDYNANRYVGQEKSEPVDSDYDTDLKKVFEAPRMPFANGMAKSDSQNSLSTIGEFSPSSSEWTNESPSTPIVEESSSIPSSRAIRTFTYIMQNRKLRDNKRGKHRGQIQASLGSSGGMPNQTDAEQPKEELEKHHSTPEEEKQSTLSLHSSSEEDFYMDEQRAVSSASINSSLSGSRALSNTNMSDPASKPNSLVQHLYAPVFDRMDVLMKQLDEIIRK* 110203 +YAR019C MNSMADTDRVNLTPIQRASEKSVQYHLKQVIGRGSYGVVYKAINKHTDQVVAIKEVVYENDEELNDIMAEISLLKNLNHNNIVKYHGFIRKSYELYILLEYCANGSLRRLISRSSTGLSENESKTYVTQTLLGLKYLHGEGVIHRDIKAANILLSADNTVKLADFGVSTIVNSSALTLAGTLNWMAPEILGNRGASTLSDIWSLGATVVEMLTKNPPYHNLTDANIYYAVENDTYYPPSSFSEPLKDFLSKCFVKNMYKRPTADQLLKHVWINSTENVKVDKLNKFKEDFTDADYHWDADFQEEKLNISPSKFSLRAAPAPWAENNQELDLMPPTESQLLSQLKSSSKPLTDLHVLFSVCSLENIADTIIECLSRTTVDKRLITAFGSIFVYDTQHNHSRLRLKFIAMGGIPLIIKFEHLAKEFVIDYPQTLIECGIMYPPNFASLKTPKYILELVYRFYDLTSTAFWCRWCFKHLDISLLLNNIHERRAQSILLKLSSYAPWSFEKILPSLIDSKLKKKILISPQITYVVFKSINYMITTNDDKIHKSAIPSSSSLPLSSSPTRNSPVNSVQSPSRSPVHSLMATRPSSPMRHKSISNFPHLTISSKSRLLIELPEGFFTWLTSFFVDMAQIKDLSVLKYFTKLCYLTVHINSTFLNDLLDNDAFFAFIRNIDTIIPFIDDAKTAAFIWKQITAICVEMSLDMDQMSASLFSTAMNFIRKKNNTSISGLEIILNCLHFTLRNVNDDVAPTVGSSESHSVFLIKVNNDAAIELPIDQLVDLFYALNDDDVNLSKLISIFTKICSLPGFENLTINIIFHPNFYEKIVSFFDTYFNSLLIQIDLLKFIKLIFSKSLLKLYDYTGQPDPIKQTEPNRRNKATVFKLRAILVQITEFLNNNWNNGCPKRNSNQVGGDSVLICQLCEDIRSLSKKGSLQKVSSVTAAIGSSPTKDERSNLRSSKDKSDGFSVPITTFQT* 110203 +YAR019W-A MFINGFVNYPVRTPPNDLLQVVLHGFLRCPLDGSQVDSIGIGHTVHGIVLPGKWVVLMCVLSFLEPPSRRYTFCEADLPYTKITARKAERPSQGGKDYNGTAKSHRALQYSIEC* 110203 +YAR023C MINFLLFVLTILATLTNIWVSGVLSPAMVIRICLGGSMVVLQIWSISRPISNETFRTKLLLEVITHRPSIAGKEWKTITYNMNQYLFKAGLWKTPYHFFCEHQCYEFFKDLIKGKYPDVQWDTANTQPFISVPENQAATQNSDVEPTVKWCLFKAAEIQAHAVREYWQSQYPDVGIPAI* 110203 +YAR042W MEQPDLSSVAISKPLLKLKLLDALRQGSFPNLQDLLKKQFQPLDDPNVQQVLHLMLHYAVQVAPMAVIKEIVHHWVSTTNTTFLNIHLDLNERDSNGNTPLHIAAYQSRGDIVAFLLDQPTINDCVLNNSHLQAIEMCKNLNIAQMMQVKRSTYVAETAQEFRTAFNNRDFGHLESILSSPRNAELLDINGMDPETGDTVLHEFVKKRDVIMCRWLLEHGADPFKRDRKGKLPIELVRKVNENDTATSTKIAIDIELKKLLERATREQSVIDVTNNNLHEAPTYKGYLKKWTNFAQGYKLRWFILSSDGKLSYYIDQADTKNACRGSLNMSSCSLHLDSSEKLKFEIIGGNNGVIRWHLKGNHPIETNRWVWAIQGAIRYAKDREILLHNGPYSPSLALSHGLSSKVSNKENLHATSKRLTKSPHLSKSTLTQNDHDNDDDSTNNNNNKSNNDYDDNNNNNNNDDDDYDDDDESRPLIEPLPLISSRSQSLSEITPGPHSRKSTVSSTRAADIPSDDEGYSEDDSDDDGNSSYTMENGGENDGDEDLNAIYGPYIQKLHMLQRSISIELASLNELLQDKQQHDEYWNTVNTSIETVSEFFDKLNRLTSQREKRMIAQMTKQRDVNNVWIQSVKDLEMELVDKDEKLVALDKERKNLKKMLQKKLNNQPQVETEANEESDDANSMIKGSQESTNTLEEIVKFIEATKESDEDSDADEFFDAEEAASDKKANDSEDLTTNKETPANAKPQEEAPEDESLIVISSPQVEKKNQLLKEGSFVGYEDPVRTKLALDEDNRPKIGLWSVLKSMVGQDLTKLTLPVSFNEPTSLLQRVSEDIEYSHILDQAATFEDSSLRMLYVAAFTASMYASTTNRVSKPFNPLLGETFEYARTDGQYRFFTEQVSHHPPISATWTESPKWDFYGECNVDSSFNGRTFAVQHLGLWYITIRPDHNISVPEETYSWKKPNNTVIGILMGKPQVDNSGDVKVTNHTTGDYCMLHYKAHGWTSAGAYEVRGEVFNKDDKKLWVLGGHWNDSIYGKKVTARGGELTLDRIKTANSATGGPKLDGSKFLIWKANERPSVPFNLTSFALTLNALPPHLIPYLAPTDSRLRPDQRAMENGEYDKAAAEKHRVEVKQRAAKKEREQKGEEYRPKWFVQEEHPVTKSLYWKFNGEYWNKRKNHDFKDCADIF* 060120 +YAR061W MPYHYLFLALFTYLATSNVVSGSTQACLPVGPRKNGMNVNFYKYSLLDSTTYSYPQYMTSGYASNWN* 141118 +YAR062W MTGYFLPPQTSSYTFRFAKVDDSAILSVGGNVAFECCAQEQPPITSTDFTINGIKPWQGSLPDNIGGTVYMYAGYYYPLKVVYSNAVSWGTLPISVELPDGTTVSDDFEGYVYSFDDDLSQSNCTIPDPSKHTTSIVTTTTELWTGTFTSTSTEMTTVTGTNGQPTDETVIVAKAPTTATSSSLSSSSSEQITSSITS* 141118 +YBL006C MSGSNMGYYDVLAGLSALEKSSQVVFSATELQQLTQQSHATDKGIEGSENSKAKVSKPKRVAVHGYLGGKVSLADAAQVEYEVGHSLLGSYVPRQQLEALSSVDLFAPFPPHIRMQSCSRDTRCFSCRRRTIVSTLPITHREPQE* 040206 +YBL006W-A MCDWKGRDNCPAPARKTSCVSRAALHSNVRWKWCEKVDT* 040206 +YBL008W MKVVKFPWLAHREESRKYEIYTVDVSHDGKRLATGGLDGKIRIWSIDSILRCMELESLTPEIPLPQDLQMPLCSMSRHTGSITCVKFSPDGKYLASGSDDRILLIWALDEEQSSQPAFGSEHEREHWTVRKRLVAHDNDIQDICWAPDSSILVTVGLDRSVIVWNGSTFEKLKRFDVHQSLVKGVVFDPANKYFATTSDDRTMKIFRYHKTGDISFTIEHIITEPFKESPLTTYFRRPSWSPDGQHIAVPNATNGPVSSMAIVNRGTWDTNVSLIGHDAPTEVARFNPRLFERNAGVKQKKDDDPENALVGQNDDKVHHFDKNIDSVVATAGQDKSLAVWSTSRPRPILVAFDIANKSITDMSWNPDGSLLFVASLDSSITLFKFENNELGKPIPLEKNMEQLYRYGVDKDSLDFPESINQLLLEDQTKSFKHTKISTSKLGENHPTLATNSASNQKDNNDASVSRSEHINILIPKRKKDAILNKAVTLKSGKKRVAPTLISTSSSSPFSNGIKKPTLDSKRIENNVKSSTKTINSKNTLLNVPEGVEKKISISSFPLPRLGIHSLIMGTKERSAWKISNSELENDDADNAGGKGSDGTSNSIDDIAVLSEEENDFHRMTLNAKLTQEKIWSEEPTTRCLLQSDVIPDTDVVVLEGGSLDDIAVLEIRNGVERSIQFDSEALLDNPTRILGYQGGKRTIETFIPEVIICAIGSKDCKCWCLASANGSIYILSYNGQQRIPKICLGHKVIKMVTSSKYLLVLTERGLFFAWDLLDLKLVLRNVPILPILNGQPIHGNKVRINKVIKCFRLDGSSCDLLLEVGDPKNVYKWTKDLGCWSLYK* 110203 +YBL013W MVKMRRITPTRLLFTCRYISNNASPPVQPLNVLFFGSDTFSNFSLQALNELRQNNGSCGIVDNIQVVTRSPKWCGRQKSILKYPPIFDMAEKLQLPRPITCDTKQEMLALSKLTPSRQGNPENDGSGAPFNAIIAVSFGKLIPGDLIRAVPLALNVHPSLLPRHKGSAPIQRALLEGDTYTGVTIQTLHPDRFDHGAIVAQTEPLAIATMLSKGRVNDSTADFNSEGLPRRTAILMDQLGALGAQLLGQTLRERLYLPQNRVQAPTAYKPSYAHRITTEDKRIHWARDSAAELLNKLETLGPLHAFKEATAARKDAQNSVLKRILFHECKVMRDARLDNGSKPGMFKYDDIKDCILVTCRGNLLLCVSRLQFEGFAVERAGQFMARCGKDAAP* 040206 +YBL014C MSEGQIPSSDVLGSQLGVGVQGASLYCPQENYTTKKQENPQWLRPVDDTLAEDALDLHIVVKSLLCDTAIRYISDDKVLQESDADDDLITSDIDEDTDNQGDTSIVVNPVIPVVPKDVHFFKKVDVGNDSMFGVNCDTPVSFQDYIPSDLLRNLDDTLQESTNSSRPMQDAFFWDPTVANRLDSQYIQTASDLRNYRDGTEIIAYASGKTGSVLNIAVLTRQNTLHLNRHNNVTSIELHSPIKSIKIPGASESIGRRSNLVGIITENSFQIFRIESVHSRSCDVMVSSSEPLYFVEIDDLQVVDFAFNPWDLQQFAIIDIKGNWSIGRIPKNFNNNNKRKLQLIDNLHGTIFDPEELSSWKRIEWFSHFQKILVFDRSKMIEIDFMNNWQTEVVQAKAWSNIRDYKRIDDKNGILLTSREIIIVGASESNDPVRRISWKHDLDPDDTTLRITVQKVKKPDHILLVAFVYSMRHKRIYMHVFSHRKANLFQSLGCSTVLEIPGGTPTGIETILTLDHIDDESRREEDADENFELVVDFLVKLRNSSEVYYYALSNTQNSEPNKQETPIIVDHPEWASLFNNADEREKESIGALVSQIKLKERERISRVQNLIEHENSHDEDKYLQDLGYRLSIATNELLESWQKTKDESILSGSLSHSKLKNLLENSDSFASIPEFSSLLDQFFQYYQDQDVTFIGFEKLLHLFLHEDVPGLDIFYNKLLQCWVLVSPQAELLTKEIVKDIIWSLARLEKPSLFEPIQNEISRSLSGPYQDIISSWDMDDINEEDESNEFNFDSQFSAPFNGRPPFNLNSQSQIPTIKSSQSSGLARRKRILKTQSQKATPLSQSTQNLSVLPDSMTPAFTLMQPPSSQISFVNDSQPRNSQKAKKKKKRIRGFG* 110203 +YBL039W-A MGFFNNNPVIEFFHRITRKPSTIAMWVFAGLICSSTFYLMFMSSPTIDFNSKSKKKNDK* 051103 +YBL056W MGQILSNPIIDKEHHSGTDCLTAFGLCAMQGWRMSMEDAHIVEPNLLAESDEEHLAFYGIFDGHGGSSVAEFCGSKMISILKKQESFKSGMLEQCLIDTFLATDVELLKDEKLKDDHSGCTATVILVSQLKKLLICANSGDSRTVLSTGGNSKAMSFDHKPTLLSEKSRIVAADGFVEMDRVNGNLALSRAIGDFEFKSNTKLGPHEQVVTCVPDIICHNLNYDEDEFVILACDGIWDCLTSQECVDLVHYGISQGNMTLSDISSRIVDVCCSPTTEGSGIGCDNMSISIVALLKENESESQWFERMRSKNYNIQTSFVQRRKSIFDFHDFSDDDNEVFAITTKKLQDRLNRSKDNDDMEIDDLDTELDSSATPSKLSGEDRTGPIDLFSLEALLEAGIQIRQRPSSDSDGNTSYFHGASLSDMLASLSNAAAGETEPNDADDNDDNDGEENGKNENAKKGSKIEEIE* 110203 +YBL057C MITSFLMEKMTVSSNYTIALWATFTAISFAVGYQLGTSNASSTKKSSATLLRSKEMKEGKLHNDTDEEESESEDESDEDEDIESTSLNDIPGEVRMALVIRQDLGMTKGKIAAQCCHAALSCFRHIATNPARASYNPIMTQRWLNAGQAKITLKCPDKFTMDELYAKAISLGVNAAVIHDAGRTQIAAGSATVLGLGPAPKAVLDQITGDLKLY* 110203 +YBL066C MVKDNRDSDQDQDFSSAHMKRQPEQQQLQQHQFPSKKQRISHHDDSHQINHRPVTSCTHCRQHKIKCDASQNFPHPCSRCEKIGLHCEINPQFRPKKGSQLQLLRQDVDEIKSKLDTLLANDSVFVHLLQQIPMGNSLLNKLNLHPTPTPGTIIPNPDSSPSSGSPTSSAAQRDSKVSVQTYLSREPQLLQANQGSNTNKFKANNEASSHMTLRASSLAQDSKGLVATEPNKLPPLLNDSALPNNSKESLPPALQMAFYKNNSAGNTPNGPFSPIQKTYSPHTTSTTVTTTTNQPPFAATSHVATNNNADRTKTPVVATTTTMPLLPSPHANVDEFVLGDISISIEKANRLHHIFVTRYLPYFPIMYSNNATELYSQSQLLFWTVMLTACLSDPEPTMYCKLSSLIKQLAIETCWIRTPRSTHISQALLILCIWPLPNQKVLDDCSYRFVGLAKSLSYQLGLHRGEFISEFTRTQTSMPNAEKWRTRTWLGIFFAELCWASILGLPPTSQTDYLLEKALSCGDEESEEDNNDSIDNNNNDKRNKKDEPHVESKYKLPGSFRRLLSLANFQAKLSHIIGSSTSSPDGLLEPKYRAETLSILGKELDLLAKTLNFQSDDTVNIYFLYVKLTVCCFAFLPETPPTDQIPYVTEAYLTATKIVTLLNNLLETHQLIELPIYIRQAATFSALILFKLQLTPLLPDKYFDSARQSVVTIHRLYRNQLTAWATSVENDISRTASMLEKLNFVLIMHPEVFVEEDGIISRMRSHLTGSLFYDLVWCVHEARRREMDPEYNKQALEKAAKKRKFSSNGIYNGTSSTGGITDRKLYPLPLYNHISRDDFETVTKTTPSGTTVTTLVPTKNALKQAEKLAKTNNGDSDGSIMEINGIPLSMLGETGSVKFQSLFANTSNSNDYNNNRTLLDASNDISIPSNSIYPVASVPASNNNPQSTKVDYYSNGPSVIPDLSMKRSVSTPVNHFPASVPGLRNHPVGNLSNNVTLGIDHPIPREHSNLQNVTMNYNNQFSNANAIGRSQSSMSHSRTPLFRSIYDSWIPRPTPVL* 040716 +YBL067C MIRRWLTISKSGKKKKAVNDTITEEVEKVDFKPVNHDINDELCYSESSDNPSSSLFVSNLDTKETFLNEDNNLQISSGLDYSSETCNQGSNYSQDGIFYISNAKAINAYGGIITQGPEAPILAMKVSDSMPYGDGSNKVFGYENFGNTCYCNSVLQCLYNLSSLRENILQFPKKSRESDHPRKKEMRGKKPRIFTEASFEKSIAGTNGHLPNPKPQSVDDGKPTPVNSVNSNTAGPSEKKSKFFKSFSAKHVQDNNKKEGSPAILTTGKPSSRPQDAPPLIVETPNEPGAPSRLSFENVTDRPPDVPRKIIVGRVLNYENPSRGSSNSNNLDLKGESNSSLSTPLDKKDTRRSSSSSQISPEHRKKSALIRGPVLNIDHSLNGSDKATLYSSLRDIFECITENTYLTGVVSPSSFVDVLKRENVLFNTTMHQDAHEFFNFLLNELSEYIERENKKIAASDINSDSEPSKSKNFISDLFQGTLTNQIKCLTCDNITSRDEPFLDFPIEVQGDEETDIQEILKSYHQREMLNGSNKFYCDECCGLQEAERLVGLKQLPDTLTLHLKRFKYSEKQNCNIKLFNNIHYPLTLNVCSSINSKVCQKYELAGIVVHMGGGPQHGHYVSLCKHEKFGWLLFDDETVEAVKEETVLEFTGESPNMATAYVCFIKRCIQTLLKRMIVKIWQKNKMII* 040716 +YBL067C MIRRWLTISKSGKKKKAVNDTITEEVEKVDFKPVNHDINDELCYSESSDNPSSSLFVSNLDTKETFLNEDNNLQISSGLDYSSETCNQGSNYSQDGIFYISNAKAINAYGGIITQGPEAPILAMKVSDSMPYGDGSNKVFGYENFGNTCYCNSVLQCLYNLSSLRENILQFPKKSRESDHPRKKEMRGKKPRIFTEASFEKSIAGTNGHLPNPKPQSVDDGKPTPVNSVNSNTAGPSEKKSKFFKSFSAKHVQDNNKKEGSPAILTTGKPSSRPQDAPPLIVETPNEPGAPSRLSFENVTDRPPDVPRKIIVGRVLNYENPSRGSSNSNNLDLKGESNSSLSTPLDKKDTRRSSSSSQISPEHRKKSALIRGPVLNIDHSLNGSDKATLYSSLRDIFECITENTYLTGVVSPSSFVDVLKRENVLFNTTMHQDAHEFFNFLLNELSEYIERENKKIAASDINSDSEPSKSKNFISDLFQGTLTNQIKCLTCDNITSRDEPFLDFPIEVQGDEETDIQEILKSYHQREMLNGSNKFYCDECCGLQEAERLVGLKQLPDTLTLHLKRFKYSEKQNCNIKLFNNIHYPLTLNVCSSINSKVCQKYELAGIVVHMGGGPQHGHYVSLCKHEKFGWLLFDDETVEAVKEETVLEFTGESPNMATAYVLFYKAMYSNAVEKNDRENMAKEQDDNIDNLIKYDDWLRTCNSGQKKKEELPIADDLDTAIDDSFVSNTPIKSSKKKSRMFSFRKS* 110203 +YBL068W MNSESREDMAINSIKLLAGNSHPDLAEQISKKLGIPLSKVGVYQYSNKETSVTIGESLRDEDVYIIQTGIGEQEINDFLMELLILIHACQIASARKITTVIPNFPYARQDKKDKSRAPITAKLVANLLQTAGADHVITMDLHASQIQGFFHIPVDNLYAEPSVLNYIRARKTDFDNAILVSPDAGGAKRVAALADKLDLNFALIHKERQKANEVSKMVLVGDVTNKSCLLVDDMADTCGTLVKACDTLMEHGAKEVIAIVTHGIFSGSAREKLRNSRLSRIVCTNTVPVDLDLPIADQIDISPTFAEAIRRLHNGESVSYLFTHAPV* 110203 +YBL080C MLRLARFYSLARTKAIHSHGAPFRPEYALKCGLEIHTQLNTKNKLFSQSTNSATSLVDAPNHHTSYYDIALPGTQPVLNLEAILFAMKLSLALGSQVNSISQFDRKHYFYGDQPQGYQLTQHYRPFARGGKINLSKELDDIDESAKEIGILQLQIEQDTGKSHYTETDKDVITLVDLNRSNVPLIELVTKPDFSDIKQVRAFIKKYQNLVRHLHISSGDLETGAMRVDVNLSINEYARVELKNLPNTSSIINAIKYEYQRQVELISVGDTSSLMEPETRGWTGSSTVKLRSKETTIDYRYMPDPELPYINLAPDVISGVRGLMPQLPDDIMRILMKKPYQLSLKDAKILTYNSNQNDMYNHEALRSYYLDTFREFSKLAGERSNAKLPTNWIIHEFLGDLNKLQIPLAKAKEILAPPVFAQFLKLLHEEVISATSGKMLLFHILENFEQSNCQDLSIPDFSKLIEKFELHAINQVDPQELMDLCNDVIAQHTDDTFIRNLVTGKKKSSLKFLIGQGMRRSQGRIKANEFEKKFKEILNIQW* 110203 +YBL084C MAVNPELAPFTLSRGIPSFDDQALSTIIQLQDCIQQAIQQLNYSTAEFLAELLYAECSILDKSSVYWSDAVYLYALSLFLNKSYHTAFQISKEFKEYHLGIAYIFGRCALQLSQGVNEAILTLLSIINVFSSNSSNTRINMVLNSNLVHIPDLATLNCLLGNLYMKLDHSKEGAFYHSEALAINPYLWESYEAICKMRATVDLKRVFFDIAGKKSNSHNNNAASSFPSTSLSHFEPRSQPSLYSKTNKNGNNNINNNVNTLFQSSNSPPSTSASSFSSIQHFSRSQQQQANTSIRTCQNKNTQTPKNPAINSKTSSALPNNISMNLVSPSSKQPTISSLAKVYNRNKLLTTPPSKLLNNDRNHQNNNNNNNNNNNNNNNNNNNNNNNNIINKTTFKTPRNLYSSTGRLTTSKKNPRSLIISNSILTSDYQITLPEIMYNFALILRSSSQYNSFKAIRLFESQIPSHIKDTMPWCLVQLGKLHFEIINYDMSLKYFNRLKDLQPARVKDMEIFSTLLWHLHDKVKSSNLANGLMDTMPNKPETWCCIGNLLSLQKDHDAAIKAFEKATQLDPNFAYAYTLQGHEHSSNDSSDSAKTCYRKALACDPQHYNAYYGLGTSAMKLGQYEEALLYFEKARSINPVNVVLICCCGGSLEKLGYKEKALQYYELACHLQPTSSLSKYKMGQLLYSMTRYNVALQTFEELVKLVPDDATAHYLLGQTYRIVGRKKDAIKELTVAMNLDPKGNQVIIDELQKCHMQE* 110203 +YBL088C MEDHGIVETLNFLSSTKIKERNNALDELTTILKEDPERIPTKALSTTAEALVELLASEHTKYCDLLRNLTVSTTNKLSLSENRLSTISYVLRLFVEKSCERFKVKTLKLLLAVVPELMVKDGSKSLLDAVSVHLSFALDALIKSDPFKLKFMIHQWISLVDKICEYFQSQMKLSMVDKTLTNFISILLNLLALDTVGIFQVTRTITWTVIDFLRLSKKENGNTRLIMSLINQLILKCHCFSVIDTLMLIKEAWSYNLTIGCTSNELVQDQLSLFDVMSSELMNHKLPYMIGQENYVEELRSESLVSLYREYILLRLSNYKPQLFTVNHVEFSYIRGSRDKNSWFALPDFRLRDRGGRSVWLKILGITKSLLTYFALNRKNENYSLLFKRRKCDSDIPSILRISDDMDTFLIHLLEENSSHEFEVLGLQLCSFYGTLQDFTKSFAEQLKELLFSKFEKIQCFNWVCFSFIPLLSQKECELSNGDMARLFKVCLPLVKSNESCQLSCLLLANSIKFSKQLLSDEKTINQIYDLYELSDILGPILVTNESFMLWGYLQYVGKDFQSMNGISSADRIFEWLKSKWNQLRGTDAKQDQFCNFISWLGNKYDPENPFNDKKGEGANPVSLCWDESHKIWQHFQEQREFLLGVKPEEKSECFNTPFFNLPKVSLDLTRYNEILYRLLENIESDAFSSPLQKFTWVAKLIQIVDNLCGDSTFSEFIAAYKRTTLITIPQLSFDSQNSYQSFFEEVLSIRTINVDHLVLDKINMKEIVNDFIRMQKNKSQTGTSAINYFEASSEDTTQNNSPYTIGGRFQKPLHSTIDKAVRAYLWSSRNKSISERLVAILEFSDCVSTDVFISYLGTVCQWLKQAIGEKSSYNKILEEFTEVLGEKLLCNHYSSSNQAMLLLTSYIEAIRPQWLSYPEQPLNSDCNDILDWIISRFEDNSFTGVAPTVNLSMLLLSLLQNHDLSHGSIRGGKQRVFATFIKCLQKLDSSNIINIMNSISSYMAQVSYKNQSIIFYEIKSLFGPPQQSIEKSAFYSLAMSMLSLVSYPSLVFSLEDMMTYSGFNHTRAFIQQALNKITVAFRYQNLTELFEYCKFDLIMYWFNRTKVPTSKLEKEWDISLFGFADIHEFLGRYFVEISAIYFSQGFNQKWILDMLHAITGNGDAYLVDNSYYLCIPLAFISGGVNELIFDILPQISGKTTVKYHKKYRLLMLKWIIRFTDLGSLTELRSTVEKLFPTSYLSPYLFENSSVSMRYQYPLHIPLALGATLVQTQFAHEKNNTHEFKLLFLSVITDLEKTSTYIGKLRCARELKYLFVLYENVLVKSSTLNFIIIRLSKFLIDTQIHDEVITIFSSLLNLADKNTFEIEPSLPNLFCKIFIYLRENKQLSPSFQQAIKLLEHRDLIKIKTWKYFLDAIFGNIVQDDIYENTELLDASDCGVDDVVLVSLLFSYARRPVASKIGCSLSKAAAINILKHHVPKEYLSKNFKLWFAALSRRILQQEVQRERSTNFNNEVHLKNFEMVFRHPEQPHMIYQRISTFNKEAELYDSTEVFFISECILTYLVGYSIGNSESEFCFRDNIMNENKDKVAPLDKDVLNAIYPLANNFGMESFICDTYLSVNEPYNCWLSKFARSLIHQISFNIPPIVCLYPLCKGSTAFCELVLTDLFFLSTTYDPKSCLNWSNRIFTQIAMLLHVKDSEIKLKMLFNVIKMIRMGSRCKERNCLRIYSSLDLQEICQISLKIKEFKFGYLLFEEMNMPNIREMNINTLQKIYECINDGDFLAGLPVPHSIEGVLNSINRIDSDTWKRFLFNNADFDANYTTSLEEEKESLIKATEDSGFYGLTSLLESRLSGSSDVYKWNLELGDWKLLTPKVVDSKAKGLYYAIKNLPQDVGFAEKSLEKSLLTIFDSRQHFISQTEWMDTLNAIIEFIKIAAIPQDVTSFPQTLMSIMKADKERLNTIDFYDHKTTLKSRHTLMNVLSRNSLDENVKCSKYLRLGSIIQLANYVQLAIANGAPQDALRNATLMSKTVKNIAKLYDDPSVVSQIEKLASFTSANALWESREYKAPVMIMRDLLAQNEKNISESILYDDFKLLINVPMDQIKARLVKWSSESRLEPAAAIYEKIIVNWDINVEDHESCSDVFYTLGSFLDEQAQKLRSNGEIEDREHRSYTGKSTLKALELIYKNTKLPENERKDAKRHYNRVLLQYNRDSEVLKALLLQKEKFLWHALHFYLNTLVFSNRYDNDIIDKFCGLWFENDDNSKINQLLYKEIGTIPSWKFLPWVNQIASKISMEENEFQKPLQLTMKRLLYKLPYDSLYSVMSILLYEKQSNKDTNISQKIQAVKKILLELQGYDRGAFAKKYLLPVQEFCEMSVELANLKFVQNTKTLRLANLKIGQYWLKQLNMEKLPLPTSNFTVKSSADGRKARPYIVSVNETVGITTTGLSLPKIVTFNISDGTTQKALMKGSNDDLRQDAIMEQVFQQVNKVLQNDKVLRNLDLGIRTYKVVPLGPKAGIIEFVANSTSLHQILSKLHTNDKITFDQARKGMKAVQTKSNEERLKAYLKITNEIKPQLRNFFFDSFPDPLDWFEAKKTYTKGVAASSIVGYILGLGDRHLNNILLDCSTGEPIHIDLGIAFDQGKLLPIPELVPFRLTRDIVDGFGVTGVDGLFRRSCERVYAVLRKDYVKVMCVLNILKWDPLYSWVMSPVKKYEHLFEEEHEITNFDNVSKFISNNDRNENQESYRALKGVEEKLMGNGLSVESSVQDLIQQATDPSNLSVIYMGWSPFY* 110203 +YBL091C MTDAEIENSPASDLKELNLENEGVEQQDQAKADESDPVESKKKKNKKKKKKKSNVKKIELLFPDGKYPEGAWMDYHQDFNLQRTTVEESRYLKRDLERAEHWNDVRKGAEIHRRVRRAIKDRIVPGMKLMDIADMIENTTRKYTGAENLLAMEDPKSQGIGFPTGLSLNHCAAHFTPNAGDKTVLKYEDVMKVDYGVQVNGNIIDSAFTVSFDPQYDNLLAAVKDATYTGIKEAGIDVRLTDIGEAIQEVMESYEVEINGETYQVKPCRNLCGHSIAPYRIHGGKSVPIVKNGDTTKMEEGEHFAIETFGSTGRGYVTAGGEVSHYARSAEDHQVMPTLDSAKNLLKTIDRNFGTLPFCRRYLDRLGQEKYLFALNNLVRHGLVQDYPPLNDIPGSYTAQFEHTILLHAHKKEVVSKGDDY* 110203 +YBL091C-A MDQKRDKFLIVTLPIPAAYQNVEDGELLSDWPNLEEQYKDDIVFKKIKIFHSVLPKRKPSGNHDAESARAPSAGNGQSLSSRALLIITVIALLVGWIYY* 040112 +YBL097W MMANFEEWIKMATDNKINSRNSWNFALIDYFYDLDVLKDGENNINFQKASATLDGCIKIYSSRVDSVTTETGKLLSGLAQRKTNGASNGDDSNGGNGEGLGGDSDEANIEIDPLTGMPISNDPDVNNTRRRVYNRVLETTLVEFETIKMKELDQELIIDPLFKKALVDFDEGGAKSLLLNTLNIDNTARVIFDASIKDTQNVGQGKLQRKEEELIERDSLVDDENEPSQSLISTRNDSTVNDSVISAPSMEDEILSLGMDFIKFDQIAVCEISGSIEQLRNVVEDINQAKDFIENVNNRFDNFLTEEELQAAVPDNAEDDSDGFDMGMQQELCYPDENHDNTSHDEQDDDNVNSTTGSIFEKDLMAYFDENLNRNWRGREHWKVRNFKKANLVNKESDLLEETRTTIGDTTDKNTTDDKSMDTKKKHKQKKVLEIDFFKTDDSFEDKVFASKGRTKIDMPIKNRKNDTHYLLPDDFHFSTDRITRLFIKPAQKMSLFSHRKHTRGDVSSGLFEKSTVSANHSNNDIPTIADEHFWADNYERKEQEEKEKEQSKEVGDVVGGALDNPFEDDMDGVDFNQAFEGTDDNEEASVKLDLQDDEDHKFPIRENKVTYSRVSKKVDVRRLKKNVWRSINNLIQEHDSRKNREQSSNDSETHTEDESTKELKFSDIIQGISKMYSDDTLKDISTSFCFICLLHLANEHGLQITHTENYNDLIVNYEDLATTQAAS* 040206 +YBL097W MTTQLRYENNDDDERVEYNLFTNRSTMMANFEEWIKMATDNKINSRNSWNFALIDYFYDLDVLKDGENNINFQKASATLDGCIKIYSSRVDSVTTETGKLLSGLAQRKTNGASNGDDSNGGNGEGLGGDSDEANIEIDPLTGMPISNDPDVNNTRRRVYNRVLETTLVEFETIKMKELDQELIIDPLFKKALVDFDEGGAKSLLLNTLNIDNTARVIFDASIKDTQNVGQGKLQRKEEELIERDSLVDDENEPSQSLISTRNDSTVNDSVISAPSMEDEILSLGMDFIKFDQIAVCEISGSIEQLRNVVEDINQAKDFIENVNNRFDNFLTEEELQAAVPDNAEDDSDGFDMGMQQELCYPDENHDNTSHDEQDDDNVNSTTGSIFEKDLMAYFDENLNRNWRGREHWKVRNFKKANLVNKESDLLEETRTTIGDTTDKNTTDDKSMDTKKKHKQKKVLEIDFFKTDDSFEDKVFASKGRTKIDMPIKNRKNDTHYLLPDDFHFSTDRITRLFIKPAQKMSLFSHRKHTRGDVSSGLFEKSTVSANHSNNDIPTIADEHFWADNYERKEQEEKEKEQSKEVGDVVGGALDNPFEDDMDGVDFNQAFEGTDDNEEASVKLDLQDDEDHKFPIRENKVTYSRVSKKVDVRRLKKNVWRSINNLIQEHDSRKNREQSSNDSETHTEDESTKELKFSDIIQGISKMYSDDTLKDISTSFCFICLLHLANEHGLQITHTENYNDLIVNYEDLATTQAAS* 110203 +YBL099W MLARTAAIRSLSRTLINSTKAARPAAAALASTRRLASTKAQPTEVSSILEERIKGVSDEANLNETGRVLAVGDGIARVFGLNNIQAEELVEFSSGVKGMALNLEPGQVGIVLFGSDRLVKEGELVKRTGNIVDVPVGPGLLGRVVDALGNPIDGKGPIDAAGRSRAQVKAPGILPRRSVHEPVQTGLKAVDALVPIGRGQRELIIGDRQTGKTAVALDTILNQKRWNNGSDESKKLYCVYVAVGQKRSTVAQLVQTLEQHDAMKYSIIVAATASEAAPLQYLAPFTAASIGEWFRDNGKHALIVYDDLSKQAVAYRQLSLLLRRPPGREAYPGDVFYLHPRLLERAAKLSEKEGSGSLTALPVIETQGGDVSAYIPTNVISITDGQIFLEAELFYKGIRPAINVGLSVSRVGSAAQVKALKQVAGSLKLFLAQYREVAAFAQFGSDLDASTKQTLVRGERLTQLLKQNQYSPLATEEQVPLIYAGVNGHLDGIELSRIGEFESSFLSYLKSNHNELLTEIREKGELSKELLASLKSATESFVATF* 110203 +YBL101W-A MESQQLHQNPHSLHGSAYASVTSKEVSSNQDPLAVSASNLPEFDRDSTKVNSQQETTPGTSAVPENHHHVSPQPASVPPPQNGQYQQHGMMTPNKAMASNWAHYQQPSMMTCSHYQTSPAYYQPDPHYPLPQYIPPLSTSSPDPIDSQDQHSEVPQAKTKVRNNVLPPHTLTSEENFYTWVKFYIRFLKNSNLGDIIPNDQGEIKRQMTYEEHAYIYNTFQAFAPFHLLPTWVKQILEINYADILTVLCKSVSKMQTNNQELKDWIALANLEYDGSTSADTFEITVSTIIQRLKENNINVSDRLACQLILKGLSGDFKYLRNQYRTKTNMKLSQLFAEIQLIYDENKIMNLNKPSQYKQHSEYKNVSRTSPNTTNTKVTTRNYHRTNSSKPRAAKAHNIATSSKFSRVNNDHINESTVSSQYLSDDNELSLRPATERI* 051103 +YBL101W-B MESQQLHQNPHSLHGSAYASVTSKEVSSNQDPLAVSASNLPEFDRDSTKVNSQQETTPGTSAVPENHHHVSPQPASVPPPQNGQYQQHGMMTPNKAMASNWAHYQQPSMMTCSHYQTSPAYYQPDPHYPLPQYIPPLSTSSPDPIDSQDQHSEVPQAKTKVRNNVLPPHTLTSEENFYTWVKFYIRFLKNSNLGDIIPNDQGEIKRQMTYEEHAYIYNTFQAFAPFHLLPTWVKQILEINYADILTVLCKSVSKMQTNNQELKDWIALANLEYDGSTSADTFEITVSTIIQRLKENNINVSDRLACQLILKGLSGDFKYLRNQYRTKTNMKLSQLFAEIQLIYDENKIMNLNKPSQYKQHSEYKNVSRTSPNTTNTKVTTRNYHRTNSSKPRAAKAHNIATSSKFSRVNNDHINESTVSSQYLSDDNELSLGQQQKESKPTHTIDSNDELPDHLLIDSGASQTLVRSAHYLHHATPNSEINIVDAQKQDIPINAIGNLHFNFQNGTKTSIKALHTPNIAYDLLSLSELANQNITACFTRNTLERSDGTVLAPIVKHGDFYWLSKKYLIPSHISKLTINNVNKSKSVNKYPYPLIHRMLGHANFRSIQKSLKKNAVTYLKESDIEWSNASTYQCPDCLIGKSTKHRHVKGSRLKYQESYEPFQYLHTDIFGPVHHLPKSAPSYFISFTDEKTRFQWVYPLHDRREESILNVFTSILAFIKNQFNARVLVIQMDRGSEYTNKTLHKFFTNRGITACYTTTADSRAHGVAERLNRTLLNDCRTLLHCSGLPNHLWFSAVEFSTIIRNSLVSPKNDKSARQHAGLAGLDITTILPFGQPVIVNNHNPDSKIHPRGIPGYALHPSRNSYGYIIYLPSLKKTVDTTNYVILQDNQSKLDQFNYDTLTFDDDLNRLTAHNQSFIEQNETEQSYDQNTESDHDYQSEIEINSDPLVNDFSSQSMNPLQLDHEPVQKVRALKEVDADISEYNILPSPVRSRTPHIINKESTEMGGTIESDTTSPRHSSTFTARNQKRPGSPNDMIDLTSQDRVNYELENIKTTRLGGTEEPYIQRNSDTNIKYRTTNSTPSIDDRSPDSDSTTPIISIETKAACDNTPSIDTDPPEYRSSDHATPNIMPDKSSKNVTADSILDDLPLPDLTNKSPTDTSDVSKDIPHIHSRQTNSSLGGMDDSNVLTTTKSKKRSLEDNETEIEVSRDTWNNKNMRSLEPPRSKKRINLIAAIKGVKSIKPVRTTLRYDEAITYNEDNKEKDRYIEAYHKEINQLLRMNTWDTNKYYDRNDIDPKKVINSMFIFNKKRDGTHKARFVARGDIQHPDTYDSDMQSNTVHHYALMTSLSIALDNDYYITQLDISSAYLYADIKEELYIRPPPHLGLNDKLLRLRKSLYGLKQSGANWYETIKSYLINCCDMQEVRGWSCVFKNSQVTICLFVDDMILFSKDLNANEKIITTLKKQYDTKIINLGESDNEIQYDILGLEIKYQRSKYMKLGMEKSLTEKLPKLNVPLNPKGKKLSAPGQPGHYIDQDELEIDEDEYKEKVHEMQKLIGLASYVGYKFRFDLLYYINTLAQHILFPSRQVLDMTYELIQFMWDTRDKQLIWHKNKPTKPDNKLVAISDASYGNQPYYKSQIGNIFLLNGKVIGGKSTKASLTCTSTTEAEIHAVSEAIPLLNNLSHLVQELNKKPIIKGLLTDSRSTISIIKSTNEEKFRNRFFGTKAMRLRDEVSGNNLYVYYIETKKNIADVMTKPLPIKTFKLLTNKWIH* 051103 +YBL101W-C MSRSIFFFSSLFLSPLNKIRNIGGKVENPWKSQIRDWKN* 051103 +YBL103C-A MCHMSHASRNVKLTFCNKWDAITRSMQTEDSQDGANRELVSRKLKLNEWFSFCLSCNHGMHAGHAEEWFDRHNVCPTPGCTCQCNK* 040206 +YBL104C MIGVGEKNGYLRIFNISGQNSSSPASHAPVGLNANNETSMTNASGGKAAQAENIVGSVSNLKDTQGYPVSETNYDIRVRAKKQRCINSLGINTNGLIAMGLDRNKHDSSLQIWDMNYHDDSHETINPMFSYCTNESIVSLKFLNDTSVLAASTKFLKEIDVRSPNPIYQHPTRLTYDIKLNPFNDWQFSTYGDDGTLAIWDRRKLSDQASLGDLNVASPLLTFEKLVGSGAASRKYMNSCFRWSCVRNNEFATLHRGDTIKRWRLGYYCDSNRDIAADDDNEMNIENLFVSSVHDTNTMYDRVATFDYIPRSNNGTSLICMRQSGTIYRMPISEVCSKAILNNRNSLLLSNFENTEIDEIRVNNEHEKSNLENVKTILKNLSFEDLDVSEDYFPSGHDEPNNEIEYSELSEEENEGSNDVLDSKRGFELFWKPEKLLEKDISVIMRTRASLGYGLDPMNTVEMIDSSKNLQNNAYIRNTWRWIAIAKASVDDGTMVSGDLDLGYEGVIGIWNGINGISNQDRYRQETILSDKQLNKEMEKIIKLRRKNRDRNSPIANAAGSPKYVQRRLCLIISGWDLSRSDYEDKYNIIMKNGHYEKAAAWAVFFGDIPKAVEILGSAKKERLRLIATAIAGYLAYKDLPGNNAWRQQCRKMSSELDDPYLRVIFAFIADNDWWDILYEPAISLRERLGVALRFLNDTDLTTFLDRTSSTVIENGELEGLILTGITPNGIDLLQSYVNKTSDVQSAALISIFGSPRYFRDQRVDEWIQTYRDMLKSWELFSMRARFDVLRSKLSRTKTGVLTADIKPRQIYIQCQNCKQNINTPRTSSPSSAVSTSAGNYKNGEAYRRNNADYKKFNTGSSEAQAADEKPRHKYCCPHCGSSFPRCAICLMPLGTSNLPFVINGTQSRDQCRQKTLKMVQIANS* 040206 +YBL105C MSFSQLEQNIKKKIAVEENIIRGASALKKKTSNVMVIQKCNTNIREARQNLEYLEDSLKKLRLKTAQQSQGENGSEDNERFNSKEYGFLSTKSPNEHIFSRLDLVKYDCPSLAQRIQYMLQQLEFKLQVEKQYQEANTKLTKLYQIDGDQRSSSAAEGGAMESKYRIQMLNKALKKYQAINVDFDQFKHQPNDIMDNQQPKFRRKQLTGVLTIGITAARDVDHIQSPMFARKPESYVTIKIDDTIKARTKPSRNDRWSEDFQIPVEKGNEIEITVYDKVNDSLIPVAIMWLLLSDIAEEIRKKKAGQTNEQQGWVNASNINGGSSLASEEGSTLTSTYSNSAIQSTSAKNVQGENTSTSQISTNSWFVLEPSGQILLTLGFHKSSQIERKQLMGGLHRHGAIINRKEEIFEQHGHHFVQKSFYNIMCCAYCGDFLRYTGFQCQDCKFLCHKKCYTNVVTKCIAKTSTDTDPDEAKLNHRIPHRFLPTSNRGTKWCCHCGYILPWGRHKVRKCSECGIMCHAQCAHLVPDFCGMSMEMANKILKTIQDTKRNQEKKKRTVPSAQLGSSIGTANGSDLSPSKLAERANAPLPPQPRKHDKTPSPQKVGRDSPTKQHDPIIDKKISLQTHGREKLNKFIDENEAYLNFTEGAQQTAEFSSPEKTLDPTSNRRSLGLTDLSIEHSQTWESKDDLMRDELELWKAQREEMELEIKQDSGEIQEDLEVDHIDLETKQKLDWENKNDFREADLTIDSTHTNPFRDMNSETFQIEQDHASKEVLQETVSLAPTSTHPSRTTDQQSPQKSQTSTSAKHKKRAAKRRKVSLDNFVLLKVLGKGNFGKVILSKSKNTDRLCAIKVLKKDNIIQNHDIESARAEKKVFLLATKTKHPFLTNLYCSFQTENRIYFAMEFIGGGDLMWHVQNQRLSVRRAKFYAAEVLLALKYFHDNGVIYRDLKLENILLTPEGHIKIADYGLCKDEMWYGNRTSTFCGTPEFMAPEILKEQEYTKAVDWWAFGVLLYQMLLCQSPFSGDDEDEVFNAILTDEPLYPIDMAGEIVQIFQGLLTKDPEKRLGAGPRDADEVMEEPFFRNINFDDILNLRVKPPYIPEIKSPEDTSYFEQEFTSAPPTLTPLPSVLTTSQQEEFRGFSFMPDDLDL* 110203 +YBL106C MFKKSRHLKNVSNAIKSARVHDVSNGINSKFFDTKKICTYGINGRITVTTFDYTQSLLAVATTAGEIHVYGQKQIEVVFTLKNRPQIKHMRFIKGIYLIAVDEKSNIIVLSVHSKQILTTVFCPNSITCFETDPPLDWMLIGLESGSILIYDVDRNQMSKLKIENFQKSVFLPKERLSPVISIQWNPRDIGTILISYEHITVIYSFIDYKVKQHFFYQLEPYAPGGDLSTNIEKKRTPKVIQSLYHPNSLHILTVHEDNALVFWDVNSGKLIHARSIFETHVNFPNPALKDCSFTETPAIFKVSWLCQRNPEYTSLLIATKATENPCLPQEITMIDLGGTPMYSVTSFDAMSKYYAKPVQQKLFSLIGKAPLINFLPLPKASPYFGGCHDTNLILLLLEDGELETLIYPAGSFSSKASIFPRSLAWVRPTVTTCIAQSVQKNLWLGMMTIAQSESFLKGGIPATRNIRRHETRSALLTGHSNGSVRIWDASHSEVTDNAVFEVNTAKVLNRATNLAIKNISFASETLELAVSSEVGDVILFKFETNKFYGQLPKSDALQLKFSRFSLDDSKTILVDVSDRGPTNVKQGFIPSTVIHAKKGAVSAIMNSNIGFVAVGFIEGTLIILDRRGPAIIFNENIRVISKAGSSYVSTVHFCVMEYGDDGFSSILMLCGTDIGELMTFKILPATNGRFEVKFTDATKTNNQGKILGINSFAKDTGYSCSATISKMQGLSKGIAIPGFVTISGANDIRLVSPGKSKDTHALFKYPIATSGLSFIPIIDGKGERKLSTIMIVLLINGDIKVLTVPELKEVKNLRCPVPLSAQYVENSSILENVDIVIRTGKFQASLISVLNESATGSNHTADISQHTPIDTLYNPDLKIGYRPQVNSLQWARGTIYCTPYQLDELLGGIERPESKYEESAIARGCISSSSSNAARKLPPGTKDHRYARPVRSSGRSNGYGVLKSVSRAIETRLDTVETTINDYATTMGQTMNDAMEETGRDMMKSAVGF* 110203 +YBR004C MIVGLTLYFVLFRSIQYLLVFLTPIRQFDTSTSLLLNELCSSPSEINSYWNKYFWNKLLSWDSVFFIKNITSKNGKPQFEHEYAFSQLWTFFVRLFIKSNNDSIYHALRVGVAIENVLFYLSGIVLYFLTKKIFSQNIRQSQFARTIAKKTSLLFFLTSAAGFLTSIYSEPLSFFFAFVGIWSRECTISVPVLGQFDISWRYWFPYSFISMACFTLASLNRSNCVLLGIYFIFDLIELTKNRKFVKAICFPLLSGSLMFSALLYQQYYLPYKTFCPQRGEWCKSQLFSSIFITKTSLYSYIQSHYWGVGLLKYWTPNNIPNFLFAVPNIIILIYSSIYFSKIYPSYNLKALVWITRALVVIVCFFAHVQILNRIASFLPLHLWYLADRLVKTSDPKKMENPKGDDKIVKFYIYWLAFWIPLQTILFAAFLPPA* 110203 +YBR007C MNQNLKNTSWADRIGSDDQERKANSSEVSQSPPPNNSFESSMDSQFSYAHSNKSSISFESIQTTERLLDKLDLSLEDELILQEALLEEENASRNSQLSQTSGPTLCMPASEFPSLRYRTNPSPTYIQARDRSLIIDNLKEKDSTLRGKYSSGKVERHLPVKSRYSYIVEEDYDSETFSGMKPQMNRNEKDYKYPNLENGNRSTNRPNPFNFEKYRIENTRLHHLYPTLISDNNTSVDNNANSKNNRTTSNNINTSTKTDRISEKQSCPNEFTTTQKSNCLYRNGSSTSTNTSFSEVGQLSKPKTQSSFESESSSFSKLKLTKSDTTTIKPSPKRSNSSTSTITKTNTMTNDISLPPTPPYKAHKKKTSLNSLKKLFKSPRTRAKNKKDLESEGSSPIRSATNSLDFSGENIQLPSTSSTINNSSPHLARYIFPPNPVFHFKTASTPQSSTDKKKNSKARPNRTHLRTFSDFHTTEKDSKIGELSALTEQSNKPYHPKVRRRTLSLDGMLPNNSTQCMDSFSHKKEGSNATSKCGKLKFHPEPYDNDESSHIGQAITMRHQGKLEESAQRLKKACACGNKTAFLLYGLALRHGCGVDKNLKLSLGYLMAATDIKSFAAEVLDLDINPLNFASMDDIPDIAPEPTAPALYECGMAYLKGLGMDHPDERKGLKFLEKAALLGHVDSMCLSGTIWSKTSNVKKRDLARAAAWFRIADKKGANLLGSDWIYKEKYMKQGPK* 110203 +YBR041W MSPIQVVVFALSRIFLLLFRLIKLIITPIQKSLGYLFGNYFDELDRKYRYKEDWYIIPYFLKSVFCYIIDVRRHRFQNWYLFIKQVQQNGDHLAISYTRPMAEKGEFQLETFTYIETYNIVLRLSHILHFDYNVQAGDYVAIDCTNKPLFVFLWLSLWNIGAIPAFLNYNTKGTPLVHSLKISNITQVFIDPDASNPIRESEEEIKNALPDVKLNYLEEQDLMHELLNSQSPEFLQQDNVRTPLGLTDFKPSMLIYTSGTTGLPKSAIMSWRKSSVGCQVFGHVLHMTNESTVFTAMPLFHSTAALLGACAILSHGGCLALSHKFSASTFWKQVYLTGATHIQYVGEVCRYLLHTPISKYEKMHKVKVAYGNGLRPDIWQDFRKRFNIEVIGEFYAATEAPFATTTFQKGDFGIGACRNYGTIIQWFLSFQQTLVRMDPNDDSVIYRNSKGFCEVAPVGEPGEMLMRIFFPKKPETSFQGYLGNAKETKSKVVRDVFRRGDAWYRCGDLLKADEYGLWYFLDRMGDTFRWKSENVSTTEVEDQLTASNKEQYAQVLVVGIKVPKYEGRAGFAVIKLTDNSLDITAKTKLLNDSLSRLNLPSYAMPLFVKFVDEIKMTDNLIKF* 040206 +YBR043C MQAQGSQSNVGSLRSNCSDNSLPNNHVMMHCDESSGTPHSEHNDYSYEKTNLESTASNSREHRDNQLSRLKSEEYVVPKNQRRGLLPQLAIIPEFKDARDYPPMMKKMIVFLIAFSSMMGPMGTSIIFPAINSITTEFKTSVIMVNVSIGVYLLSLGVFPLWWSSLSELEGRRTTYITSFALLFAFNIGSALAPDINSFIALRMLCGAASASVQSVGAGTVADLYISEDRGKNLSYYYLGPLLAPLLSPIFGSLLVNRWPWRSTQWFMVILSGCNVILLTVLLPETLRKQDSKGAIAQILAERRIQVDNNERGEIQEDYQRGEDETDRIENQVATLSTEKHNYVGEVRDQDSLDLESHSSPNTYDGRAGETQLQRIYTEASRSLYEYQLDDSGIDATTAQVTRIRSTDPKLARSIRENSLRKLQTNLEEQVKKVLSSNGGEIAPKQVSAVRKVWDTFFVYFIKPLKSLHFLEYPPVALAITFSAISFSTVYFVNMTVEYKYSRPPYNFKPLYIGLLYIPNSVTYFFASIYGGRWVDMLLKRYKEKYGILAPEARISWNVVTSVISFPIALLIFGWCLDKKCHWVTPLIGTALFGYAAMMTIGATLSYLVDSLPGKGATGVALNNLIRQILAATAVFVTTPMLNGMGTGWAFTMLAFIVLGASSVLIILKKHGDYWRENYDLQKLYDKID* 110203 +YBR044C MLRNCLRKLGNHQTKCSVKTLHTPIYRTKNLQVLRDTLSGIKLLEKIITSSSYNKTLIYEPKYKSKPQVVSSHDTMRLHNVMRELLDSLQVDEATNTRLQSNRPRKLGRVGLQLFMDCIQDNLTATSTSLTCSLLEHYFKYPEKEVTNGIKAGLRYIRDFLAKNKIIVKSQNDVDALVEQLTMSSSDSQSIKRVLKAINYELFSDDIVRVINGNKTYDEVDVSKGWKYPAGILDSNEAYLRSLELPTKKLVSIDKDMLVLMYDGTLRDANKILPTITYARKLRKSVLLIVNGDCTGDALTSVTINNNRNKRENNESRIVVLKYSKKANNDLAPQENLDFIKFLRLPCGYDSIYSPEYSPLVPSKMCADKYYGSIESIKATTGEAFLYNSIDAEAIPNKVPKSFLQNTVTLSIGGHNEIEIDRRRNAIDNCLNNVLCHGLAKGFIPGYGISLLKAIPGLNELKANEPNFMTKVGINAVLSAVILPSEVAFKNAYGYNYYEINSLIAGAINEKSFPMAKFSPNSEPVNTVKDGNLEPWSKMDSCLAGVETFIELLTSCNTIITCVYKSLNGTKPR* 110203 +YBR045C METILQPKARPFESLKRKRFREWLRPSTAHGSLLHSDTLDLRDFAKPNPADTFSNLDSGHCPLVTTPIKYECPDGKSSFFRGDTKFETLFSNRKFYEFKDNLKRGLKKIRHGRNGHQSEKRCPVVEETKKSVSDNLDKPDNNTPCFDRFHTNSKEFETQFDHSNRSQNSEKAYLDNESCWNLSEKFIPFNNLKYEDLKHFEENLQSLAPATFTPIESNESLDRSDSTRGTKRSIRNDSSDTTSEKRLCLKQYSDEPESDHSMESTPSIYITKEVQERIEALSSTDSFLIEKVDFPSNKIGSSASDYESDNEYRNMDEDSINDVTTEKEGNVVIPDSNTSTVDAMEKPIEVSSALKDDTLDKDIDDASSSYSDDVETTFEPVESEELSDLSDTSSSGSSKIYTIPTFRGLTNRTNISQILSKVGKADLSQDNLTHLIKSHQKKKRCVNFRNKRFYDAFNPYVDNEEDAELSDSENISEMDTDLCIKDRSTSSVRFDENSRLLIYKKSKKLNKDETQSGYSTTEMRSILKTKMNSQHDEESQRASKCDTVGVAQFLHYFQYTEYKRQRNEAEIID* 110203 +YBR062C MLPESLQEEWLQEMDKGKSAGCPDTFAASLPRINKKKLKATDNCSICYTNYLEDEYPLVVELPHCHHKFDLECLSVWLSRSTTCPLCRDNVMGHRIINEIDTTEAELEEDWGMYG* 040716 +YBR068C MLSSEDFGSSGKKETSPDSISIRSFSAGNNFQSSSSEKTYSKQKSGSDKLIHRFADSFKRAEGSTTRTKQINENTSDLEDGVESITSDSKLKKSMKSRHVVMMSLGTGIGTGLLVANAKGLHYGGPAALIIGYILVSFETYFMIQAAGEMAVTYPTLPANFNAYSSIFISKSFGFATVWLYCFQWLTVLPLELITASMTIQFGNDKINPDIYILIFYVFLVFIHFFGVKAYGETEFIFNCCKILMIAGFIILSIVINCGGAGNDGYIGATYWHNPGAFAGDTSIGRFKNVCYILVTAYFSFGGMELFALSVQEQSNPRKSTPVAAKRSIYRIVVIYLLTMILIGFNVPYNDDQLMGAGGSATHASPYVLAASIHGVKIVPHIINAVILISVVSVANSSLYAGPRLICSLAQQGYAPKFLDYVDREGRPLRALIVCCVFGVIAFVAASSKEEIVFTWLAAIAGLSELFTWTSIMLSHLRFRQAMKVQGRSLDELGYKATTGIWGSIYGVFFNILVFVAQFWVALAPLGNGGKCDAESFFQNYLAFPIWLAFYFGYMVYNRDFTLLNPLDKIDLDFHRRIYDPELMRQEDEENKEKLRNMSLMRKAYHFWC* 110203 +YBR073W MAVISVKPRRREKILQEVKNSSVYQTVFDSGTTQMQIPKYENKPFKPPRRVGSNKYTQLKPTATAVTTAPISKAKVTVNLKRSISAGPTLNLAKKPNNLSSNENTRYFTIMYRKPTTKKHKTWSGDGYATLKASSDKLCFYNEAGKFLGSSMLPSDSDSLFETLFKAGSNEVQLDYELKENAEIRSAKEALSQNMGNPSPPTTSTTETVPSTKNDGGKYQMPLSQLFSLNTVKRFKSVTKQTNEHMTTVPKTSQNSKAKKYYPVFDVNKIDNPIVMNKNAAAEVDVIVDPLLGKFLRPHQREGVKFMYDCLMGLARPTIENPDIDCTTKSLVLENDSDISGCLLADDMGLGKTLMSITLIWTLIRQTPFASKVSCSQSGIPLTGLCKKILVVCPVTLIGNWKREFGKWLNLSRIGVLTLSSRNSPDMDKMAVRNFLKVQRTYQVLIIGYEKLLSVSEELEKNKHLIDMLVCDEGHRLKNGASKILNTLKSLDIRRKLLLTGTPIQNDLNEFFTIIDFINPGILGSFASFKRRFIIPITRARDTANRYNEELLEKGEERSKEMIEITKRFILRRTNAILEKYLPPKTDIILFCKPYSQQILAFKDILQGARLDFGQLTFSSSLGLITLLKKVCNSPGLVGSDPYYKSHIKDTQSQDSYSRSLNSGKLKVLMTLLEGIRKGTKEKVVVVSNYTQTLDIIENLMNMAGMSHCRLDGSIPAKQRDSIVTSFNRNPAIFGFLLSAKSGGVGLNLVGRSRLILFDNDWNPSVDLQAMSRIHRDGQKKPCFIYRLVTTGCIDEKILQRQLMKNSLSQKFLGDSEMRNKESSNDDLFNKEDLKDLFSVHTDTKSNTHDLICSCDGLGEEIEYPETNQQQNTVELRKRSTTTWTSALDLQKKMNEAATNDDAKKSQYIRQCLVHYKHIDPARQDELFDEVITDSFTELKDSITFAFVKPGEICLREQ* 110203 +YBR073W MQIPKYENKPFKPPRRVGSNKYTQLKPTATAVTTAPISKAKVTVNLKRSISAGPTLNLAKKPNNLSSNENTRYFTIMYRKPTTKKHKTWSGDGYATLKASSDKLCFYNEAGKFLGSSMLPSDSDSLFETLFKAGSNEVQLDYELKENAEIRSAKEALSQNMGNPSPPTTSTTETVPSTKNDGGKYQMPLSQLFSLNTVKRFKSVTKQTNEHMTTVPKTSQNSKAKKYYPVFDVNKIDNPIVMNKNAAAEVDVIVDPLLGKFLRPHQREGVKFMYDCLMGLARPTIENPDIDCTTKSLVLENDSDISGCLLADDMGLGKTLMSITLIWTLIRQTPFASKVSCSQSGIPLTGLCKKILVVCPVTLIGNWKREFGKWLNLSRIGVLTLSSRNSPDMDKMAVRNFLKVQRTYQVLIIGYEKLLSVSEELEKNKHLIDMLVCDEGHRLKNGASKILNTLKSLDIRRKLLLTGTPIQNDLNEFFTIIDFINPGILGSFASFKRRFIIPITRARDTANRYNEELLEKGEERSKEMIEITKRFILRRTNAILEKYLPPKTDIILFCKPYSQQILAFKDILQGARLDFGQLTFSSSLGLITLLKKVCNSPGLVGSDPYYKSHIKDTQSQDSYSRSLNSGKLKVLMTLLEGIRKGTKEKVVVVSNYTQTLDIIENLMNMAGMSHCRLDGSIPAKQRDSIVTSFNRNPAIFGFLLSAKSGGVGLNLVGRSRLILFDNDWNPSVDLQAMSRIHRDGQKKPCFIYRLVTTGCIDEKILQRQLMKNSLSQKFLGDSEMRNKESSNDDLFNKEDLKDLFSVHTDTKSNTHDLICSCDGLGEEIEYPETNQQQNTVELRKRSTTTWTSALDLQKKMNEAATNDDAKKSQYIRQCLVHYKHIDPARQDELFDEVITDSFTELKDSITFAFVKPGEICLREQ* 090508 +YBR074W MKLKSVFRSVLKYRKTNLSLLLLITYSIITLLYIFDHERYKLNLPKEDEHPEFNDLLETAWGDLQIITASFHPYTSKENDKVHDYLLKRVLEITGNSSFASVSDDKESERSILFQQQDPFNESSRFSRVTYFESSNILVKLEGKNPEEEGLLLSAHFDSVPTGYGATDDGMGVVSLLANLKYHIKHRPNRTLIFNFNNNEEFGLLGASTYFDHSWSNLTKYVINLEGTGAGGKAVLFRTSDTSTARIYQQSVKENPFGNSIYQQGFYSRYVRSETDYKIYEENGMRGWDVAFYKPRNLYHTIKDSIQYTSKASLWHMLHTSLQLSAYVASNSLDTADQTPACYFDFIGLKFFVISAKTLFYWNCIFLLVSPVVAIGLYLISRDRMTWKSYSWLSWTRFPLSLAAGIIVQKLFSNDIIRSNPLTFSRNYFWPISAFFTQVIFTSYVLINCSNFFFPCADMKSLSIIELFIILWTILLFTSKLLYSSDYRYTGLYPLSIFFLLSTIAAILRLLALALGMRTRKRLGRECRDHHSNYSSHSQIDMERDGQENLEQPQDQLTSSQDDQASIQDDNVSTTSAGPSHNVDEDHGMDSSSQQHDERVPLLKGSNSMEEGLSTRENSLKLEYTDYAWIIQFLLIVPIPSFILFNSVDVIMDALNHTVQEGSKATFDVLRFGMVGSILIALPILPFFYKVNYITISLTALLFLISASKTLLVHPFTNSNPLKVRFSQNIDLSQGNAASVHVLGREGNFLKPMLQDLPSIKYSSTHINCTSVTNGMELCMYDGMQPNLLSTNGNTNISSMVKVHVLHNNRNSTERSPYEPIVAELLLEVKEFRACTLTFESRHQAKSPVREITVYQKKNSAPQKANITKTIKSASGINELQLHKLDFDQETYHIGVQWFPKLLTDGNVEDDKLGTKDELSVSISCYWGEYDSESVVNGTAVRKIPAFDELINYAPLSFSFTNEQKGLVIVKDAIIL* 110203 +YBR076W MYPIIVDHSKEKPSRTKYSHKGKYCNDSENFDFGKANTDCKHVFKSISKQLIFLPRCFQHHSIRGWMKDRYSEFGYKIKRNQNCPPSACVQALYNTSRSNTEESNPNSLDSLIMYKYMRYSEKKKELMCRFCQGNNWILAENYLKHLFFAHGILSEFKPHTLYHFESKLLKIQGKLNFKIQVLKEPEFSKKILNSLTVSIIPSPLAYYTQTLNGGFRRIHVKCPHCENWIRLGWCEYDEIIRDSFQDFESLRNLNADYNGMSYIQTRNREDIEGIYENYFTHYIQCDLATFRTKCLYVQVITKAIDCVRKILKINDHITNQTKFAASNELNDYETADKY* 110203 +YBR078W MQFKNALTATAILSASALAANSTTSIPSSCSIGTSATATAQADLDKISGCSTIVGNLTITGDLGSAALASIQEIDGSLTIFNSSSLSSFSADSIKKITGDLNMQELIILTSASFGSLQEVDSINMVTLPAISTFSTDLQNANNIIVSDTTLESVEGFSTLKKVNVFNINNNRYLNSFQSSLESVSDSLQFSSNGDNTTLAFDNLVWANNITLRDVNSISFGSLQTVNASLGFINNTLPSLNLTQLSKVGQSLSIVSNDELSKAAFSNLTTVGGGFIIANNTQLKVIDGFNKVQTVGGAIEVTGNFSTLDLSSLKSVRGGANFDSSSSNFSCNALKKLQSNGAIQGDSFVCKNGATSTSVKLSSTSTESSKSSATSSASSSGDASNAQANVSASASSSSSSSKKSKGAAPELVPATSFMGVVAAVGVAYYKIKATICVSIITLISSLMISLPFLFYYETVGSSLNFICR* 110203 +YBR089C-A MAATKEAKQPKEPKKRTTRRKKDPNAPKRRLSAYMFFANENRDIVRSENPDVTFGQVGRILGERWKALTAEEKQPYESKAQADKKRYESEKELYNATRA* 110203 +YBR090C MVPAPGSRAFPSPVFLGGVFFVFFFRWRGNYKVQQVRLRQYWEFTLWETAPNTKQKNDFFAKTLTYIKLALWPQLKKQSNQRNQRRGPPGERRILTPLRGGCQLICSLLMKTETLSVPRILT* 110203 +YBR094W MRVLITNDDGPLSDQFSPYIRPFIQHIKRNYPEWKITVCVPHVQKSWVGKAHLAGKNLTAQFIYSKVDAEDNTFWGPFIQPQIRSENSKLPYVLNAEIPKDTIEWILIDGTPASCANIGLHLLSNEPFDLVLSGPNVGRNTSAAYITSSGTVGGAMESVITGNTKAIAISWAYFNGLKNVSPLLMEKASKRSLDVIKHLVKNWDPKTDLYSINIPLVESLSDDTKVYYAPIWENRWIPIFNGPHINLENSFAEIEDGNESSSISFNWAPKFGAHKDSIHYMDEYKDRTVLTDAEVIESEMISVTPMKATFKGVNHLLGELKLTEEENNLSKTNNLIVVSIDPMEYIYKPLTHALKKYLPQVEIVSNLPEFDNGGCEKEMKVFHYGDYEQLDMDKLMELPNNYFTNSYIYRKALIRKHFLSHTIQTYTAKNPESILKKAYLESFTIDLDYREFLDDALDENWELRQELENESQDKWWIVKPSMSDKGQGIRVFKTIEDLQAIFDSFDDEDSEAEESGNDDDADDVNGEFMDNNKVNISQLRHFIIQEYLTNPLLLASMDNRKFHIRCYVVCRGDLQVFVYDRMLALFAAKPFVPLDPYAYSVTDLKDLECHLTNTCLQSKKKDKDSSVLEFDSIEEIPNERKSNIKEQIHSITNDVFLAAVNVNRLNFQPLPNAFETYGVDFLIDSNYEVKLLEINAFPDFKQTGKDLKNLIDELFDDTVKYCVTPIFNENRNKTDDETDPNFVKVIDYTSNGW* 110203 +YBR097W MGAQLSLVVQASPSIAIFSYIDVLEEVHYVSQLNSSRFLKTCKALDPNGEIVIKVFIKPKDQYSLRPFLQRIRAQSFKLGQLPHVLNYSKLIETNRAGYMIRQHLKNNLYDRLSLRPYLQDIELKFIAFQLLNTLKDIHNLNIVHGDIKTENILVTSWNWCILTDFAAFIKPVYLPEDNPGEFLFYFDTSKRRTCYLAPERFNSKLYQDGKSNNGRLTKEMDIFSLGCVIAEIFAEGRPIFNLSQLFKYKSNSYDVNREFLMEEMNSTDLRNLVLDMIQLDPSKRLSCDELLNKYRGIFFPDYFYTFIYDYFRNLVTMTTSTPISDNTCTNSTLEDNVKLLDETTEKIYRDFSQICHCLDFPLIKDGGEIGSDPPILESYKIEIEISRFLNTNLYFPQNYHLVLQQFTKVSEKIKSVKEECALLFISYLSHSIRSIVSTATKLKNLELLAVFAQFVSDENKIDRVVPYFVCCFEDSDQDVQALSLLTLIQVLTSVRKLNQLNENIFVDYLLPRLKRLLISNRQNTNYLRIVFANCLSDLAIIINRFQEFTFAQHCNDNSMDNNTEIMESSTKYSAKLIQSVEDLTVSFLTDNDTYVKMALLQNILPLCKFFGRERTNDIILSHLITYLNDKDPALRVSLIQTISGISILLGTVTLEQYILPLLIQTITDSEELVVISVLQSLKSLFKTGLIRKKYYIDISKTTSPLLLHPNNWIRQFTLMIIIEIINKLSKAEVYCILYPIIRPFFEFDVEFNFKSMISCCKQPVSRSVYNLLCSWSVRASKSLFWKKIITNHVDSFGNNRIEFITKNYSSKNYGFNKRDTKSSSSLKGIKTSSTVYSHDNKEIPLTAEDINWIDKFHIIGLTEKDIWKIVALRGYVIRTARVMAANPDFPYNNSNYRPLVQNSPPNLNLTNIMPRNIFFDVEFAEESTSEGQDSNLENQQIYKYDESEKDSNKLNINGSKQLSTVMDINGSLIFKNKSIATTTSNLKNVFVQLEPTSYHMHSPNHGLKDNANVKPERKVVVSNSYEGDVESIEKFLSTFKILPPLRDYKEFGPIQEIVRSPNMGNLRGKLIATLMENEPNSITSSAVSPGETPYLITGSDQGVIKIWNLKEIIVGEVYSSSLTYDCSSTVTQITMIPNFDAFAVSSKDGQIIVLKVNHYQQESEVKFLNCECIRKINLKNFGKNEYAVRMRAFVNEEKSLLVALTNLSRVIIFDIRTLERLQIIENSPRHGAVSSICIDEECCVLILGTTRGIIDIWDIRFNVLIRSWSFGDHAPITHVEVCQFYGKNSVIVVGGSSKTFLTIWNFVKGHCQYAFINSDEQPSMEHFLPIEKGLEELNFCGIRSLNALSTISVSNDKILLTDEATSSIVMFSLNELSSSKAVISPSRFSDVFIPTQVTANLTMLLRKMKRTSTHSVDDSLYHHDIINSISTCEVDETPLLVACDNSGLIGIFQ* 110203 +YBR108W MGFWENNKDSITSGLKSAGKYGYQGTKYVAKTGYKASKKHYNNSKARRERKSGKKNSSDEEYDSEDEMEYERKPTDIRSLKDPKSFPPPPLKPGQKTYTGQQQQQMPNGQASYAFQGAYQGQPGAGSTEQSQYAQPQYNQYPQQQLQQGVMPQQQQLQQGVVPQQPPIYGEQVPPYGSNSNATSYQSLPQQNQPQNAIPSQVSLNSASQQSTGFVSQNLQYGTQSSNPAPSPSFQNGLQCHQQPQYVSHGSTNLGQSQFPSGQQQQPTTQFGQQVLPSPAQPQQQQQGQPLPPPRGQVILPAPGEPLSNGFGQQQQQQQQQQQPLNQNNALLPQMNVEGVSGMAAVQPVYGQAMSSTTNMQDSNPSYGASPMQGQPPVGGQPPVPVRMQPQPPQPMQQGNIYPIEPSLDSTGSTPHFEVTPFDPDAPAPKPKIDIPTVDVSSLPPPPTHRDRGAVVHQEPAPSGKIQPNTTSSAASLPAKHSRTTTADNERNSGNKENDESTSKSSILGHYDVDANIMPPPKPFRHGLDSVPSEHTTKNAPERAVPILPPRNNVEPPPPPSRGNFERTESVLSTNAANVQEDPISNFLPPPKPFRHTETKQNQNSKASPVEMKGEVLPGHPSEEDRNVEPSLVPQSKPQSQSQFRRAHMETQPIQNFQPPPKPFRRSQSSNSSDSSYTIDGPEANHGRGRGRIAKHHDGDEYNPKSENSTENGRLGDAPNSFIRKRAPTPPAPSRSEKLHEGTITSEVDSSKDANKYEKSIPPVTSSIQAQQSTKKAPPPVVKPKPRNFSLKANEYPKELTREATGQDEVLNSITNELSHIKLRKTNVNLEKLGGSKKVKDSSPVPSDLDEKYVSASGSITPPRPPPSRSSPKKVPPVVPKKNDNLKKKPPVVPKKKPLLKSLEPRPIEMERAYSGDISAADDNLNPFERYKRNVVPQEDDRLHKLK* 110203 +YBR108W MGFWENNKDSITSGLKSAGKYGYQGTKYVAKTGYKASKKHYNNSKARRERKSGKKNSSDEEYDSEDEMEYERKPTDIRSLKDPKSFPPPPLKPGQKTYTGQQQQQMPNGQASYAFQGAYQGQPGAGSTEQSQYAQPQYNQYPQQQLQQGVMPQQQQLQQGVVPQQPPIYGEQVPPYGSNSNATSYQSLPQQNQPQNAIPSQVSLNSASQQSTGFVSQNLQYGTQSSNPAPSPSFQNGLQCHQQPQYVSHGSTNLGQSQFPSGQQQQPTTQFGQQVLPSPAQPQQQQQGQPLPPPRGQVILPAPGEPLSNGFGQQQQQQQQQQQPLNQNNALLPQMNVEGVSGMAAVQPVYGQAMSSTTNMQDSNPSYGASPMQGQPPVGGQPPVPVRMQPQPPQPMQQGNIYPIEPSLDSTGSTPHFEVTPFDPDAPAPKPKIDIPTVDVSSLPPPPTHRDRGAVVHQEPAPSGKIQPNTTSSAASLPAKHSRTTTADNERNSGNKENDESTSKSSILGHYDVDANIMPPPKPFRHGLDSVPSEHTTKNAPERAVPILPPRNNVEPPPPPSRGNFERTESVLSTNAANVQEDPISNFLPPPKPFRHTETKQNQNSKASPVEMKGEVLPGHPSEEDRNVEPSLVPQSKPQSQSQFRRAHMETQPIQNFQPPPKPFRRSQSSNSSDSSYTIDGPEANHGRGRGRIAKHHDGDEYNPKSENSTENGRLGDAPNSFIRKRAPTPPAPSRSEKLHEGTITSEVDSSKDANKYEKSIPPVTSSIQAQQSTKKAPPPVVKPKPRNFSLKANEYPKELTREATGQDEVLNSITNELSHIKLRKTNVNLEKLGGSKKVKTLALFPQI* 040709 +YBR111W-A MTMDTAQLKSQIQQYLVESGNYELYDNIIGVVFFKKSTLLTIQITVTFIRISNELKARLLQEGWVDKVKDLTKSEMNINESTNFTQILSTVEPKALGM* 040112 +YBR121C MSVEDIKKARAAVPFNREQLESVLRGRFFYAPAFDLYGGVSGLYDYGPPGCAFQNNIIDAWRKHFILEEDMLEVDCTMLTPYEVLKTSGHVDKFSDWMCRDLKTGEIFRADHLVEEVLEARLKGDQEARGLVEDANAAAKDDAEKKKRKKKVKQIKAVKLDDDVVKEYEEILAKIDGYSGPELGELMEKYDIGNPVTGETLESPRAFNLMFETAIGPSGQLKGYLRPETAQGQFLNFNKLLEFNNSKTPFASASIGKSFRNEISPRAGLLRVREFLMAEIEHFVDPLDKSHPKFNEIKDIKLSFLPRDVQEAGSTEPIVKTVGEAVASRMVDNETLGYFIARIYQFLMKIGVDESKLRFRQHMANEMAHYAADCWDGELKTSYGWIECVGCADRSAYDLTVHSKKTKEKLVVRQKLDNPIEVTKWEIDLTKKLFGPKFRKDAPKVESHLLNMSQDDLASKAELLKANGKFTIKVDGVDGEVELDDKLVKIEQRTKVEHVREYVPSVIEPSFGIGRIIYSVFEHSFWNRPEDNARSVLSFPPLVAPTKVLLVPLSNHKDLVPVHHEVAKILRKSQIPFKIDDSGVSIGKRYARNDELGTPFGVTIDFESAKDHSVTLRERDSTKQVRGSVENVIKAIRDITYNGASWEEGTKDLTPFIAQAEAEAETD* 110203 +YBR137W MVVLDKKLLERLTSRKVPLEELEDMEKRCFLSTFTYQDAFDLGTYIRNAVKENFPEKPVAIDISLPNGHCLFRTVTYGGSALDNDFWIQRKKKTALRFGHSSFYMGCKKSDKTPEEKFFVDSKEYAFHGGAVLIQSERSDYPYACLTISGLKQEEDHLMAVSSLIAFANESLEEDLNLD* 110203 +YBR138C MEKDQIQPRVLESVDTNSLSLLSSNTSSNMNSNTNNKLSIIASDISTGSVLSRPLTPPVVQDIENNSMLQWQFEKKEFIFDSNSTPSKQAKPLQRNSPYQGNSQSENQNQQLLNVRKRRSQCIGAKPKIPSKLYQSVSKLDLIDDKSFTSLPIAPPCNIETNEDDSGNNEYNNNKKRPRLNPVNELRVHNNKRNRYVSYGPSLDTKNYELTENTSQDIPPLVLVEDYIPYTQSKSTKKMVSISDLKSKLSKRRDNHIPLRVKNSYSEINKETNRNSFEPNSLTLIPHILRNTEENRDESNNPLDFIKEEIEISDISIPNSIENMVVNLVNIPSSNKSYDDLYLSELNVHSQLRKCVICEKALYEISSRLLNSGYYKEIVCEQCTVRYEEAAKIFENCEFESSMDESNLSSGTFSDLENSAEPFHLSTDVPKKINRHIEDNKIDLKKEISKKKDSFSKELIERLQLQLLENDKSIKHHFNKDAMGSKSMNWFLEARRKLKWKWRINGLLPHFLRNQNSDRLNFQP* 110203 +YBR141C MHSRKSKSITGKRKQVGSNVTRVIKPQKTRRIIRRFHHLINKRQSICKFLCLKENLDDSNEEKNDKIIRLSIKGNVRLGKYYEDGKSQSFNDAMESQLLRLHSLIKNESKSKDTSDLAVMYTLLGYIMNQINKLGGLETYQIASQNGQLKERGGDTSKLLEKWIRSSFENCPGAVALEIGSLSSGNRISRCALFRNVVRIDLEEHEGVIKQDFMERPLPRNENDKFDLISCSLVLNFVKNHRDRGAMCHRMVKFLKPQGYIFIVLPQACVTHSRYCDKTLLQNLLGSIGLIMLNSHQSNKLYYCLYQLQVVSPQPSSFSKRIKVNDGPGLNNFGITL* 110203 +YBR157C MGKFEQKERERISTFSFPTTGSQSSTSIKSLGSPLYGRFSSLSSTESQFDSSKQPHEYEKSFYFEESQGEALFNKLKTYSFPGDKDGVKRGEIPPYVQESLMRYHL* 040206 +YBR202W MSAALPSIQLPVDYNNLFNEITDFLVTFKQDTLSSDATRNENEDENLDAENIEQHLLEKGPKYMAMLQKVANRELNSVIIDLDDILQYQNEKFLQGTQADDLVSAIQQNANHFTELFCRAIDNNMPLPTKEIDYKDDVLDVILNQRRLRNERMLSDRTNEIRSENLMDTTMDPPSSMNDALREVVEDETELFPPNLTRRYFLYFKPLSQNCARRYRKKAISSKPLSVRQIKGDFLGQLITVRGIITRVSDVKPAVEVIAYTCDQCGYEVFQEVNSRTFTPLSECTSEECSQNQTKGQLFMSTRASKFSAFQECKIQELSQQVPVGHIPRSLNIHVNGTLVRSLSPGDIVDVTGIFLPAPYTGFKALKAGLLTETYLEAQFVRQHKKKFASFSLTSDVEERVMELITSGDVYNRLAKSIAPEIYGNLDVKKALLLLLVGGVDKRVGDGMKIRGDINVCLMGDPGVAKSQLLKAICKISPRGVYTTGKGSSGVGLTAAVMKDPVTDEMILEGGALVLADNGICCIDEFDKMDESDRTAIHEVMEQQTISISKAVINTNPGARTSILAAANPLYGRINPRLSPLDNINLPAALLSRFDILFLMLDIPSRDDDEKLAEHVTYVHMHNKQPDLDFTPVEPSKMREYIAYAKTKRPVMSEAVNDYVVQAYIRLRQDSKREMDSKFSFGQATPRTLLGIIRLSQALAKLRLADMVDIDDVEEALRLVRVSKESLYQETNKSKEDESPTTKIFTIIKKMLQETGKNTLSYENIVKTVRLRGFTMLQLSNCIQEYSYLNVWHLINEGNTLKFVDDGTMDTDQEDSLVSTPKLAPQTTASANVSAQDSDIDLQDA* 110203 +YBR203W MSSASRLQNVNIVSNNYSRYGTSVYDKLYHSNGSGSNNAGKNSTTVGKLSSISQKSRSKQRHGSNCSRSMSQSPLSTFKSPLSNQNQSSAPDDLASIGQRRSDDVTSLDNETIITMNSRKSRIKKKYKSLISTSSKKFMNKLYDHGASSDSFSIFSLKTSHSGKHENSRFEKLRKRKYHAWGKFADINDLPVEIIAKILSEFELGRDQKTLVRCLYVSKKFYKATKIVLYRLPYFTSTYRVAQFVTSLRLHPDNGAYVKVLDLSHLKPGIIGQDSKDSQGLDDDGHSRRHRRRRRRSTNTSLNLPPATPTSTISNEDDANSGLIKDDASNGSEVEDLALAGWRDWRYRNEPLYSSPLLNSFKLKKVVSRSSSITSTSSGNSTGVHSTRRQRSNSSVASITTSIMSSIYNTSHVSLSSTTSNTSNGNISSGSNLSRVSTAGSLKKASAKSTRSSPQKAKPISDITSSSWFRMRLSSRNRKARTANTINLKNSKDKSDDDFKVLKHDSGHPSNYRSSTLKFSIEQPFSTHHPYANKFLLKYAPYKDLPLGYILHMLNLCPNLVELNLSNLVICTDFKLINQRSERRRMTSSLLPAVQESSVSAGPEKDLEIVYMTDSGKGYEYYEGLSKKHSRSSSLGTNPSSWIGGQANWTDYPPPIDAQTKTREEHRRNNTLNNKNVVLKKLNPFEIFEMICNRNEEKGGYCSLTKVKMNDIVWCRQYMVKYFVMRSWRNDLDYKSMENNSYERHLFSFRDSGLDRNFSWACNAKLHEFVALMVMDHLSNLDDLGLEELFNIKSEKLYIKNYCCRDPDILEISNLFDIRYGAGSEADATSDSNLEAESLQFRLTILKTEKPTSFWLTKVSKDYVSLVVKLCVDDDIDMDKMKVGKPTLRIDSITHNLISRLKELRRVDLRRNVGENSYYAGSII* 110203 +YBR204C MNMAERAEATKSWSCEPLSGKTLEEIVQNAENAADLVAYIRKPEVDLDFRLKFIAEHEEFFNEQLSDRNSRIRTCHNLSDKGIRGDTVFVFVPGLAGNLEQFEPLLELVDSDQKAFLTLDLPGFGHSSEWSDYPMLKVVELIFVLVCDVLRKWSTAVPNNDNVNPFNGHKIVLVGHSMGCFLACHLYEQHMADTKAVQTLVLLTPPKAHIEQLSKDKHIIQWALYGVFKLPWLFDVYRNKFDQVKGLQSSGIKQYFYQQGDDVKLKYRKFWQFKNNISNKSRTIIGYLLGWETVDWVKFNGVLTQTDMKQKIIIFGAEKDPIAPIENLEFYKQTINKECLRKVIILPDCSHNLCFDRPELVCENFQREVIDNSKL* 110203 +YBR207W MAFEDYFSFQIFFIFLRKSLEIVVIVSILLTIVKQDLSVEDDSPFEGSSSSAGLPSPNTNTNADSTTAFLQAGPSDGNAIGTSATAANNKSRPLNVEEEEEIYEYSNELRDQDRESDEHTADNVKLYQKLKIQILAGGAFGLLLCMLIGGAFVSIFYHIGTDLWTLSEHYYEGVLSLVASVIISVMGLFFLRMGKLREKFRVKLASIIYSKDNNLLGNKTQKGVKFSQKYSFFILPFITTLREGLEAVYSIGGIGIDQPLSSIPLSMVLATAISTVFGIFFFRYSSSLSLKICLVVATCFLYLIAAGLFSKGVWQLELQDYVNKCNGQDMSEVENGPGSYDISRSVWHVNCCNGEKDGGWMIFTAIFGWTNSATVGSVISYNAYWLVLKYALKLLMIEGKCGYIPYLPISWQKKRIMKRLSIAKASLDLKHHTSELNSSTSEPDSQRRSKDSSVPLIIDSSGSAN* 110203 +YBR215W MIAIVLDNSKSGSKQTKSSGKMQTQTDTNAEVLNTDNSIKKETGSDSEDLFNKFSNKKTNRKIPNIAEELAKNRNYVKGASPSPIIISGSSSTSPSGPSSSSTNPMGIPTNRFNKNTVELYQHSPSPVMTTNKTDTEEKRQNNRNMDNKNTPERGSSSFAAKQLKISSLLTISSNEDSKTLHINDTNGNKNSNAASNNIPSAYAELHTEGNSIESLIKPPSSPRNKSLTPKVILPTQNMDGTIAKDPHLGDNTPGILIAKTSSPVNLDVESTAQSLGKFNKSTNSLKAALTKAPAEKVSLKRSISSVTNSDSNISSSKKPTSEKAKKSSSASAILPKPTTTKTSKKAASNSSDSTRKKNASNKTTSAIKKESNAGSKLNTVKKENSSLSSIKATEKEKDKGGNSTEAKNSTSNVRKEPTAKSPKRLVAAPTVSPPKILQTAETKAKEPSILIDVPLYQADTNDYLDENGQVIFNLSTLIKEKYHPKSKELAQLKDSKRNLLMQLSDHSNGSLEKEKDEEGDVIELDDDEDMEEDEGEIDTETNTVTTTISPKKKSHPMKGKNLIGKYDVEDPFIDDSELLWEEQRAATKDGFFVYFGPLIEKGHYASLERANGTMKRGGVKNK* 070713 +YBR255C-A MGGNVLPIHYDPKTVKQLTKEEITVASCIGAAQGALFSIASALLLRRFSSVYRNVRTQVRVFYHCSWISMGAVFRADKQLLKFQTNYYREEQKRREKIMDEAAERGLFLEDESLNSSRSTT* 040112 +YBR265W MKFTLEDQVVLITGGSQGLGKEFAKKYYNEAENTKIIIVSRSEARLLDTCNEIRIEAHLRRETTDEGQVQHKLAAPLDLEQRLFYYPCDLSCYESVECLFNALRDLDLLPTQTLCCAGGAVPKLFRGLSGHELNLGMDINYKTTLNVAHQIALAEQTKEHHLIIFSSATALYPFVGYSQYAPAKAAIKSLVAILRQELTNFRISCVYPGNFESEGFTVEQLTKPEITKLIEGPSDAIPCKQACDIIAKSLARGDEDVFTDFVGWMIMGMDLGLTAKKSRFVPLQWIFGVLSNILVVPFYMVGCSWYIRKWFRENDGKKAN* 110203 +YBR266C MCSRFSSTSLKCLLCSQNRHCSSGISTLLRTFSCITLSAISSSVNCSGSSFLGSSFSLFSSFSCKESLLRSGVFPSWLFCMFSSILALAISNSFFFFSSNACFSLLFNSFLVTGFSFSADLLVLAAAADTLESNVSNDIGGNCATRLFKL* 110203 +YBR267W MSSSGVYTCNSCVLTFDSSDEQRAHMKSDWHRYNLKRRVAQLPPISFETFDSKVSAAAASTSKSAEKEKPVTKKELKRREKQALLEKKKKLLEIARANMLENMQKSQEGNTPDLSKLSLQENEENKEKEEPKKEEPEQLTEEEMAERVMQENVRNRVDIPLEQCLFCEHNKHFKDVEENLEHMFRTHGFYIPEQKYLVDKIGLVKYMSEKIGLGNICIVCNYQGRTLTAVRQHMLAKRHCKIPYESEDERLEISEFYDFTSSYANFNSNTTPDNEDDWEDVGSDEAGSDDEDLPQEYLYNDGIELHLPTGIKVGHRSLQRYYKQDLKPEVILTEGQGTLVAAETRSFLPAFDKKGVQTQQRVWQTERFDKKRLDKRSAKFVNNQPHYRDQLLQ* 110203 +YBR269C MLCAIKSTGYRYPRTGALNLLRGRPFNMATRKITTERIPGPPKLPREEQEEFERLQRIATSQEAIDQYNAQATGDRTKESLNSPLLTKNDIGSFSPEFSKTIPEFEGDVNPKTGEVGGPSRTVETRRLFV* 040112 +YBR270C MATDLNRKRSATSGSLSVTNPNIKATNRKPARVYSVSSDIVPQALTHPDEDVHLKTSKSPHDAAPRWSQVGFQSIFHDGSNARRSTDSIEEEYSQGTENNDGHSEIGSSSSNRMEGNTTSNDSLFSSNSRGNKRRLSIFTNSKDNMRNRSRRASKNYGTVITGTSSNNISRSGSKLFHTKSNMSVNSLQSSLSTGHSHSNKGSNVFSKMAKKLLPYKPHNSIGKDDVEPVVPSPFSKFLHSSYGKHRSPVQFIHTSTGGLIDSGKSVYSFNPSINNNPNDTALSLIQDDAFDATNVSLLHDLLKNLPSLIANYKSFTVQELFVLEGNIWGIYCSIVVELFKNKRVWQLPAKIEDIDRLLEFYITLKTQTKAAVTHSRFLAEIEEFITTSLYILENQIVFNYANEDTVNTALKRVGIIWKVFYQQVYYDMMAVLLPFEKSFQKNSNYWLDGYLSEPSRYAPSIDVLLLKCFRDSIILPYYESFLHTNDGASKSFQRYIFSEEEQNGVTEEDKLTLLQCFGILNTIKGNSRNQRIIGELLEGIRMSI* 110203 +YBR275C MSKDFSDKKKHTIDRIDQHILRRSQHDNYSNGSSPWMKTNLPPPSPQAHMHIQSDLSPTPKRRKLASSSDCENKQFDLSAINKNLYPEDTGSRLMQSLPELSASNSDNVSPVTKSVAFSDRIESSPIYRIPGSSPKPSPSSKPGKSILRNRLPSVRTVSDLSYNKLQYTQHKLHNGNIFTSPYKETRVNPRALEYWVSGEIHGLVDNESVSEFKEIIEGGLGILRQESEDYVARRFEVYATFNNIIPILTTKNVNEVDQKFNILIVNIESIIEICIPHLQIAQDTLLSSSEKKNPFVIRLYVQIVRFFSAIMSNFKIVKWLTKRPDLVNKLKVIYRWTTGALRNENSNKIIITAQVSFLRDEKFGTFFLSNEEIKPIISTFTEIMEINSHNLIYEKLLLIRGFLSKYPKLMIETVTSWLPGEVLPRIIIGDEIYSMKILITSIVVLLELLKKCLDFVDEHERIYQCIMLSPVCETIPEKFLSKLPLNSYDSANLDKVTIGHLLTQQIKNYIVVKNDNKIAMDLWLSMTGLLYDSGKRVYDLTSESNKVWFDLNNLCFINNHPKTRLMSIKVWRIITYCICTKISQKNQEGNKSLLSLLRTPFQMTLPYVNDPSAREGIIYHLLGVVYTAFTSNKNLSTDMFELFWDHLITPIYEDYVFKYDSIHLQNVLFTVLHLLIGGKNADVALERKYKKHIHPMSVIASEGVKLKDISSLPPQIIKREYDKIMKVVFQTVEVAISNVNLAHDLILTSLKHLPEDRKDQTHLESFSSLILKVTQNNKDTPIFRDFFGAVTSSFVYTFLDLFLRKNDSSLVNFNIQISKVGISQGNMTLDLLKDVIRKARNETSEFLIIEKFLELDDKKTEVYAQNWVGSTLLPPNISFREFQSLANIVNKVPNENSIENFLDLCLKLSFPVNLFTLLHVSMWSNNNFIYFIQSYVSKNENKLNVDLITLLKTSLPGNPELFSGLLPFLRRNKFMDILEYCIHSNPNLLNSIPDLNSDLLLKLLPRSRASYFAANIKLFKCSEQLTLVRWLLKGQQLEQLNQNFSEIENVLQNASDSELEKSEIIRELLHLAMANPIEPLFSGLLNFCIKNNMADHLDEFCGNMTSEVLFKISPELLLKLLTYKEKPNGKLLAAVIEKIENGDDDYILELLEKIIIQKEIQILEKLKEPLLVFFLNPVSSNMQKHKKSTNMLRELVLLYLTKPLSRSAAKKFFSMLISILPPNPNYQTIDMVNLLIDLIKSHNRKFKDKRTYNATLKTIGKWIQESGVVHQGDSSKEIEAIPDTKSMYIPCEGSENKLSNLQRKVDSQDIQVPATQGMKEPPSSIQISSQISAKDSDSISLKNTAIMNSSQQESHANRSRSIDDETLEEVDNESIREIDQQMKSTQLDKNVANHSNICSTKSDEVDVTELHESIDTQSSEVNAYQPIEVLTSELKAVTNRSIKTNPDHNVVNSDNPLKRPSKETPTSENKRSKGHETMVDVLVSEEQAVSPSSDVICTNIKSIANEESSLALRNSIKVETNCNENSLNVTLDLDQQTITKEDGKGQVEHVQRQENQESMNKINSKSFTQDNIAQYKSVKKARPNNEGENNDYACNVEQASPVRNEVPGDGIQIPSGTILLNSSKQTEKSKVDDLRSDEDEHGTVAQEKHQVGAINSRNKNNDRMDSTPIQGTEEESREVVMTEEGINVRLEDSGTCELNKNLKGPLKGDKDANINDDFVPVEENVRDEGFLKSMEHAVSKETGLEEQPEVADISVLPEIRIPIFNSLKMQGSKSQIKEKLKKRLQRNELMPPDSPPRMTENTNINAQNGLDTVPKTIGGKEKHHEIQLGQAHTEADGEPLLGGDGNEDATSREATPSLKVHFFSKKSRRLVARLRGFTPGDLNGISVEERRNLRIELLDFMMRLEYYSNRDNDMN* 110203 +YBR285W MTIFSRFSYFDSLFSFKKQEPSPIEIIYCNENNGFINIKSLESPTDDSMEADISHREMATILTRNRNNLGKVAIDKKGVNNHCIDLNELKKGLVANEHKLDNDNSTRHQNTYSPEDSVEFDRFDDKQSRILKCSTRRSYLRYKK* 110203 +YBR286W MGTKPCSAFQQLVEEAKKKKKTETPTMHFSLKQLAVAAFYATNLGSAYVIPQFFQEAFQQEEPIENYLPQLNDDDSSAVAANIPKPHIPYFMKPHVESEKLQDKIKVDDLNATAWDLYRLANYSTPDYGHPTRVIGSKGHNKTMEYILNVFDDMQDYYDVSLQEFEALSGKIISFNLSDAETGKSFANTTAFALSPPVDGFVGKLVEIPNLGCEEKDYASVVPPRHNEKQIALIERGKCPFGDKSNLAGKFGFTAVVIYDNEPKSKEGLHGTLGEPTKHTVATVGVPYKVGKKLIANIALNIDYSLYFAMDSYVEFIKTQNIIADTKHGDPDNIVALGAHSDSVEEGPGINDDGSGTISLLNVAKQLTHFKINNKVRFAWWAAEEEGLLGSNFYAYNLTKEENSKIRVFMDYDMMASPNYEYEIYDANNKENPKGSEELKNLYVDYYKAHHLNYTLVPFDGRSDYVGFINNGIPAGGIATGAEKNNVNNGKVLDRCYHQLCDDVSNLSWDAFITNTKLIAHSVATYADSFEGFPKRETQKHKEVDILNAQQPQFKYRADFLII* 051111 +YBR288C MYLSFYITDTKNKLIFQYLLGATAPSFKHLWTRVRTTCPQLLEDSSSDDYLDHSMVGRDLEVYKYFSVINKLNYWCLASTSKSKGPLDCFTFLETIDRILLEYFDKDKLSIKKIVNNYDRISLIFNCCVEAGEPNVSDMLYVNKIKEAVPERSDLSKFISSTAHNLQQAVQLPQQRQQQLQQNQISRGSNSLIENEEIVPWRTSRASKHENNELYVDLLETFHVVFEKKKSHLRLLTGSIHGIVDVRSYLNDNPLVAVKLNTMGNDIGIPSLHDCVEINDGVFSPSNITFIPPDGKFRLLEYSVDLSSQVKQSGVRMNSIGLMSLHFQNGLGKDSDEFELSLNIENFKKVSQVDDLKIDLQFNVENADPNEIAYKIKILRNTHGRFENSIIMGQGQWIFDKSTATGTVPVLRGCIEYENTGPNFTKKVDLQTVSLEYSYIGQSASGIYVEAIDIVSGLTIGKNTKLYKGAKYKTQTGNFQVRL* 110203 +YBR289W MNNQPQGTNSVPNSIGNIFSNIGTPSFNMAQIPQQLYQSLTPQQLQMIQQRHQQLLRSRLQQQQQQQQQTSPPPQTHQSPPPPPQQSQPIANQSATSTPPPPPAPHNLHPQIGQVPLAPAPINLPPQIAQLPLATQQQVLNKLRQQAIAKNNPQVVNAITVAQQQVQRQIEQQKGQQTAQTQLEQQRQLLVQQQQQQQLRNQIQRQQQQQFRHHVQIQQQQQKQQQQQQQHQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQGQIPQSQQVPQVRSMSGQPPTNVQPTIGQLPQLPKLNLPKYQTIQYDPPETKLPYPTYWSDKKADTDTLLYEQIIQRDKINKYSLIRETNGYDPFSIYGFSNKEYISRLWHTLKYYQDLKNTRMKSITSTSQKIPSASIWGNGYSGYGNGITNTTTRVIPQVEVGNRKHYLEDKLKVYKQAMNETSEQLVPIRLEFDQDRDRFFLRDTLLWNKNDKLIKIEDFVDDMLRDYRFEDATREQHIDTICQSIQEQIQEFQGNPYIELNQDRLGGDDLRIRIKLDIVVGQNQLIDQFEWEISNSDNCPEEFAESMCQELELPGEFVTAIAHSIREQVHMYHKSLALLGYNFDGSAIEDDDIRSRMLPTITLDDVYRPAAESKIFTPNLLQISAAELERLDKDKDRDTRRKRRQGRSNRRGMLALSGTSASNTSMNGVHNTVAAGNASSLPPGEILLPDIADIPRTFRTPVPSTLMPGGVDVGPSVESYELRNTTTYKSRPDRPKPVSPPCYIIDHIPGHSLLLSIKLPGKVNTKEEFAAAPNDTSSGTNAMLPSPESLKTKLNSNIRAGVTIPSIPNPIANHTVTNSPNPTLQPVIPGGAASKSVPTPSLPIAPPVAPHDSEATLLTNSNNGSSNNNTQNT* 110203 +YBR295W MKPEKLFSGLGTSDGEYGVVNSENISIDAMQDNRGECHRRSIEMHANDNLGLVSQRDCTNRPKITPQECLSETEQICHHGENRTKAGLDVDDAETGGDHTNESRVDECCAEKVNDTETGLDVDSCCGDAQTGGDHTNESCVDGCCVRDSSVMVEEVTGSCEAVSSKEQLLTSFEVVPSKSEGLQSIHDIRETTRCNTNSNQHTGKGRLCIESSDSTLKKRSCKVSRQKIEVSSKPECCNISCVERIASRSCEKRTFKGSTNVGISGSSSTDSLSEKFFSEQYSRMYNRYSSILKNLGCICNYLRTLGKESCCLPKVRFCSGEGASKKTKYSYRNSSGCLTKKKTHGDKERLSNDNGHADFVCSKSCCTKMKDCAVTSTISGTSSSEISRIVSMEPIENHLNLEAGSTGTEHIVLSVSGMSCTGCESKLKKSFGALKCVHGLKTSLILSQAEFNLDLAQGSVKDVIKHLSKTTEFKYEQISNHGSTIDVVVPYAAKDFINEEWPQGVTELKIVERNIIRIYFDPKVIGARDLVNEGWSVPVSIAPFSCHPTIEVGRKHLVRVGCTTALSIILTIPILVMAWAPQLREKISTISASMVLATIIQFVIAGPFYLNALKSLIFSRLIEMDLLIVLSTSAAYIFSIVSFGYFVVGRPLSTEQFFETSSLLVTLIMVGRFVSELARHRAVKSISVRSLQASSAILVDKTGKETEINIRLLQYGDIFKVLPDSRIPTDGTVISGSSEVDEALITGESMPVPKKCQSIVVAGSVNGTGTLFVKLSKLPGNNTISTIATMVDEAKLTKPKIQNIADKIASYFVPTIIGITVVTFCVWIAVGIRVEKQSRSDAVIQAIIYAITVLIVSCPCVIGLAVPIVFVIASGVAAKRGVIFKSAESIEVAHNTSHVVFDKTGTLTEGKLTVVHETVRGDRHNSQSLLLGLTEGIKHPVSMAIASYLKEKGVSAQNVSNTKAVTGKRVEGTSYSGLKLQGGNCRWLGHNNDPDVRKALEQGYSVFCFSVNGSVTAVYALEDSLRADAVSTINLLRQRGISLHILSGDDDGAVRSMAARLGIESSNIRSHATPAEKSEYIKDIVEGRNCDSSSQSKRPVVVFCGDGTNDAIGLTQATIGVHINEGSEVAKLAADVVMLKPKLNNILTMITVSQKAMFRVKLNFLWSFTYNLFAILLAAGAFVDFHIPPEYAGLGELVSILPVIFVAILLRYAKI* 110203 +YCL002C MLVIVLQGLAGFLSIIAILCQKRYNKLHRSIYGLSYDLFLLDFVGNGLYLYCALHYCYSSLVREQLSQRFPLFYPLNDARSIPISSFLILKDFCVSCCCMMVLRQLYYYRSTKHIYQGISITSIIIISVFLVLGIFTYGCSISNLPLKNSGKFGVFYLEHINYLWVMANLLKCFKYVPQMSINWMGCSTVGLSSKFALISFLAESIDLLGRLVIPTNALFYEIPFNSTPFWVKLIQFVTYWSYFVKFSMFT* 110203 +YCL008C MSANGKISVPEAVVNWLFKVIQPIYNDGRTTFHDSLALLDNFHSLRPRTRVFTHSDGTPQLLLSIYGTISTGEDGSSPHSIPVIMWVPSMYPVKPPFISINLENFDMNTISSSLPIQEYIDSNGWIALPILHCWDPAAMNLIMVVQELMSLLHEPPQDQAPSLPPKPNTQLQQEQNTPPLPPKPKSPHLKPPLPPPPPPQPASNALDLMDMDNTDISPTNHHEMLQNLQTVVNELYREDVDYVADKILTRQTVMQESIARFHEIIAIDKNHLRAVEQAIEQTMHSLNAQIDVLNRK* 040305 +YCL025C MSSSKSLYELKDLKNSSTEIHATGQDNEIEYFETGSNDRPSSQPHLGYEQHNTSAVRRFFDSFKRADQGPQDEVEATQMNDLTSAISPSSRQAQELEKNESSDNIGANTGHKSDSLKKTIQPRHVLMIALGTGIGTGLLVGNGTALVHAGPAGLLIGYAIMGSILYCIIQACGEMALVYSNLTGGYNAYPSFLVDDGFGFAVAWVYCLQWLCVCPLELVTASMTIKYWTTSVNPDVFVIIFYVLVITINIFGARGYAEAEFFFNCCKILMMTGFFILGIIIDVGGAGNDGFIGGKYWHDPGAFNGKHAIDRFKGVAATLVTAAFAFGGSEFIAITTAEQSNPRKAIPGAAKQMIYRILFLFLATIILLGFLVPYNSDQLLGSTGGGTKASPYVIAVASHGVRVVPHFINAVILLSVLSMANSSFYSSARLFLTLSEQGYAPKVFSYIDRAGRPLIAMGVSALFAVIAFCAASPKEEQVFTWLLAISGLSQLFTWTAICLSHLRFRRAMKVQGRSLGELGFKSQTGVWGSAYACIMMILILIAQFWVAIAPIGEGKLDAQAFFENYLAMPILIALYVGYKVWHKDWKLFIRETRST* 060113 +YCL058W-A MCKPAIIRYNNSRAFSKEKMGKCSMKKKGVGKNVGVGKKVQKKRSISTAERKRTKLQVEKLNKSSETMIPTLLREASTQEPAKLKAETTLKAEELIKDQEKDSKVREQIRTEKSKTNDSMLKQIEMISGFSL* 060113 +YCR077C MSFFGLENSGNARDGPLDFEESYKGYGEHELEENDYLNDETFGDNVQVGTDFDFGNPHSSGSSGNAIGGNGVGATARSYVAATAEGISGPRTDGTAAAGPLDLKPMESLWSTAPPPAMAPSPQSTMAPAPAPQQMAPLQPILSMQDLERQQRQMQQQFMNFHAMGHPQGLPQGPPQQQFPMQPASGQPGPSQFAPPPPPPGVNVNMNQMPMGPVQVPVQASPSPIGMSNTPSPGPVVGATKMPLQSGRRSKRDLSPEEQRRLQIRHAKVEKILKYSGLMTPRDKDFITRYQLSQIVTEDPYNEDFYFQVYKIIQRGGITSESNKGLIARAYLEHSGHRLGGRYKRTDIALQRMQSQVEKAVTVAKERPSKLKDQQAAAGNSSQDNKQANTVLGKISSTLNSKNPRRQLQIPRQQPSDPDALKDVTDSLTNVDLASSGSSSTGSSAAAVASKQRRRSSYAFNNGNGATNLNKSGGKKFILELIETVYEEILDLEANLRNGQQTDSTAMWEALHIDDSSYDVNPFISMLSFDKGIKIMPRIFNFLDKQQKLKILQKIFNELSHLQIIILSSYKTTPKPTLTQLKKVDLFQMIILKIIVSFLSNNSNFIEIMGLLLQLIRNNNVSFLTTSKIGLNLITILISRAALIKQDSSRSNILSSPEISTWNEIYDKLFTSLESKIQLIFPPREYNVHIMRLQNDKFMDEAYIWQFLASLALSGKLNHQRIIIDEVRDEIFATINEAETLQKKEKELSVLPQRSQELDTELKSIIYNKEKLYQDLNLFLNVMGLVYRDGEISELK* 110203 +YCR091W MTQQEYRSPSQRLSKGRSMSLPKIFARNLRSLQNNAPPGKNINVNCLNVNSCSLSASPSSQINMACNGNKQDLPIPFPLHVECNDSWSSSKLNKFKSMFNHNRSKSSGTTDASTSEKGTHKREPRSTIHTELLQSSIIGEPNVHSTTSSTLIPNEAICSTPNEISGSSSPDAELFTFDMPTDPSSFHTPSSPSYIAKDSRNLSNGSLNDINENEELQNFHRKISENGSASPLANLSLSNSPIDSPRKNSETRKDQIPMNITPRLRRAASEPFNTAKDGLMREDYIALKQPPSLGDIVEPRRSRRLRTKSFGNKFQDITVEPQSFEKIRLLGQGDVGKVYLMRERDTNQIFALKVLNKHEMIKRKKIKRVLTEQEILATSDHPFIVTLYHSFQTKDYLYLCMEYCMGGEFFRALQTRKSKCIAEEDAKFYASEVVAALEYLHLLGFIYRDLKPENILLHQSGHVMLSDFDLSIQATGSKKPTMKDSTYLDTKICSDGFRTNSFVGTEEYLAPEVIRGNGHTAAVDWWTLGILIYEMLFGCTPFKGDNSNETFSNILTKDVKFPHDKEVSKNCKDLIKKLLNKNEAKRLGSKSGAADIKRHPFFKKVQWSFLRNQDPPLIPALNDNGCELPFILSCNKHPKRNSVSEQETKMFCEKVANDDEIDEADPFHDFNSMSLTKKDHNILTYSENYTYGKILYKATCTRPRHNSSHRSFFKDIIPEL* 110203 +YCR092C MVIGNEPKLVLLRAKSSANRFILLNLLTIMAGQPTISRFFKKAVKSELTHKQEQEVAVGNGAGSESICLDTDEEDNLSSVASTTVTNDSFPLKGSVSSKNSKNSEKTSGTSTTFNDIDFAKKLDRIMKRRSDENVEAEDDEEEGEEDFVKKKARKSPTAKLTPLDKQVKDLKMHHRDKVLVIRVGYKYKCFAEDAVTVSRILHIKLVPGKLTIDESNPQDCNHRQFAYCSFPDVRLNVHLERLVHHNLKVAVVEQAETSAIKKHDPGASKSSVFERKISNVFTKATFGVNSTFVLRGKRILGDTNSIWALSRDVHQGKVAKYSLISVNLNNGEVVYDEFEEPNLADEKLQIRIKYLQPIEVLVNTDDLPLHVAKFFKDISCPLIHKQEYDLEDHVVQAIKVMNEKIQLSPSLIRLVSKLYSHMVEYNNEQVMLIPSIYSPFASKIHMLLDPNSLQSLDIFTHDGGKGSLFWLLDHTRTSFGLRMLREWILKPLVDVHQIEERLDAIECITSEINNSIFFESLNQMLNHTPDLLRTLNRIMYGTTSRKEVYFYLKQITSFVDHFKMHQSYLSEHFKSSDGRIGKQSPLLFRLFSELNELLSTTQLPHFLTMINVSAVMEKNSDKQVMDFFNLNNYDCSEGIIKIQRESESVRSQLKEELAEIRKYLKRPYLNFRDEVDYLIEVKNSQIKDLPDDWIKVNNTKMVSRFTTPRTQKLTQKLEYYKDLLIRESELQYKEFLNKITAEYTELRKITLNLAQYDCILSLAATSCNVNYVRPTFVNGQQAIIAKNARNPIIESLDVHYVPNDIMMSPENGKINIITGPNMGGKSSYIRQVALLTIMAQIGSFVPAEEIRLSIFENVLTRIGAHDDIINGDSTFKVEMLDILHILKNCNKRSLLLLDEVGRGTGTHDGIAISYALIKYFSELSDCPLILFTTHFPMLGEIKSPLIRNYHMDYVEEQKTGEDWMSVIFLYKLKKGLTYNSYGMNVAKLARLDKDIINRAFSISEELRKESINEDALKLFSSLKRILKSDNITATDKLAKLLSLDIH* 070906 +YDL028C MSTNSFHDYVDLKSRTNTRQFSDDEEFTTPPKLSNFGSALLSHTEKTSASEILSSHNNDKIANRLEEMDRSSSRSHPPPSMGNLTSGHTSTSSHSTLFGRYLRNNHQTSMTTMNTSDIEINVGNSLDKSFERIRNLRQNMKEDITAKYAERRSKRFLISNRTTKLGPAKRAMTLTNIFDEDVPNSPNQPINARETVELPLEDSHQTNFKERRENTDYDSIDFGDLNPIQYIKKHNLPTSDLPLISQIYFDKQREENRQAALRKHSSRELLYKSRSSSSSLSSNNLLANKDNSITSNNGSQPRRKVSTGSSSSKSSIEIRRALKENIDTSNNSNFNSPIHKIYKGISRNKDSDSEKREVLRNISINANHADNLLQQENKRLKRSLDDAITNENINSKNLEVFYHRPAPKPPVTKKVEIVEPAKSASLSNNRNIITVNDSQYEKIELLGRGGSSRVYKVKGSGNRVYALKRVSFDAFDDSSIDGFKGEIELLEKLKDQKRVIQLLDYEMGDGLLYLIMECGDHDLSQILNQRSGMPLDFNFVRFYTKEMLLCIKVVHDAGIVHSDLKPANFVLVKGILKIIDFGIANAVPEHTVNIYRETQIGTPNYMAPEALVAMNYTQNSENQHEGNKWKVGRPSDMWSCGCIIYQMIYGKPPYGSFQGQNRLLAIMNPDVKIPFPEHTSNNEKIPKSAIELMKACLYRNPDKRWTVDKVLSSTFLQPFMISGSIMEDLIRNAVRYGSEKPHISQDDLNDVVDTVLRKFADYKI* 110203 +YDL031W MAGVQKRKRDLEDQDDNGSEEDDIAFDIANEIALNDSESDANDSDSEVEADYGPNDVQDVIEYSSDEEEGVNNKKKAENKDIKKKKNSKKEIAAFPMLEMSDDENNASGKTQTGDDEDDVNEYFSTNNLEKTKHKKGSFPSFGLSKIVLNNIKRKGFRQPTPIQRKTIPLILQSRDIVGMARTGSGKTAAFILPMVEKLKSHSGKIGARAVILSPSRELAMQTFNVFKDFARGTELRSVLLTGGDSLEEQFGMMMTNPDVIIATPGRFLHLKVEMNLDLKSVEYVVFDEADRLFEMGFQEQLNELLASLPTTRQTLLFSATLPNSLVDFVKAGLVNPVLVRLDAETKVSENLEMLFLSSKNADREANLLYILQEIIKIPLATSEQLQKLQNSNNEADSDSDDENDRQKKRRNFKKEKFRKQKMPAANELPSEKATILFVPTRHHVEYISQLLRDCGYLISYIYGTLDQHARKRQLYNFRAGLTSILVVTDVAARGVDIPMLANVINYTLPGSSKIFVHRVGRTARAGNKGWAYSIVAENELPYLLDLELFLGKKILLTPMYDSLVDVMKKRWIDEGKPEYQFQPPKLSYTKRLVLGSCPRLDVEGLGDLYKNLMSSNFDLQLAKKTAMKAEKLYYRTRTSASPESLKRSKEIISSGWDAQNAFFGKNEEKEKLDFLAKLQNRRNKETVFEFTRNPDDEMAVFMKRRRKQLAPIQRKATERRELLEKERMAGLHILSKMKFWKGDDVETGYTVSEDALKEFEDAHQLLEAQENENKKKKKPKSFKDPTFFLSHYAPAGDIQDKQLQITNGFANDAAQAAYDLNSDDKVQVHKQTATVKWDKKRKKYVNTQGIDNKKYIIGESGQKIAASFRSGRFDDWSKARNLKPLKVGSRETSIPSNLLEDPSQGPAANGRTVRGKFKHKQMKAPKMPDKHRDNYYSQKKKVEKALQSGISVKGYNNAPGLRSELKSTEQIRKDRIIAEKKRAKNARPSKKRKF* 110203 +YDL038C MYRTRSSDEVTTSTDLTSSSDVATSVDPTTSVISSTSADPTTSADSTTSTVQTTSAGPSNNIGNSTLANSTTFAVSSTSIDPTSSSDVITSTVQTTSIEPTTSLVSSNDITTSTSLNISVVISTSTDSTSLIESTTTVGPHASSSVAGMYRTRSSDEVTTSTDPTSSSDVATSADPTSSSAVTTLVDPTTSVVISTSVDQTSSSDVATSVDPTTSVISSTSADPTTSADSTTSTVQTTSVDPTSSVVSSAPVDPASSVVSLTSSYPTSSSTVTISANSNGSATLAAQTTSIDPVSSIVSSSGATTIISSASIDPASSVVSSTSSEPTSFIVSSTSVYSTRPSGPTTSTDLATFSDTIILRVSTTSTSQDTQTVSSSLTDMVSSTGSADLSVSSIQRSQVDPSTFAVSNSPVYPTASTGSTSTGIPIASESLSLSRQQGISATSSSSIVTLTPVDSASSSRSSATSIIKPNMPVSSNDSKTQSSVSVVDAFQSTKSSYPSITSADPTTLASENGLVGSSSSAHPITLDRTYASAHASVTDIVSRVTDSTRHTTLVTSNINIQSEVGNQITRVPKTLPSPNNLHL* 080606 +YDL039C MTSPASTSTISNVQSTASVMNHSIEDNISAAASLESVSGTSTKDYSSQSSAIHYTNSFTTTTTNAFITSKHSIAAVSTGAITSSASISLIMEGSANIEAVGKLVWLAAALPLAFI* 080606 +YDL065C MPNIQHEVMNENEYDNFDDLDDLLDEDPTKLDEAEPDDVQAKGSVYNDSENKEKNAESKDSDGVQVANESEEDPELKEMMVDLQNEFANLMKNNGNENNVKTEDFNKLISALEEAAKVPHQQMEQGCSSLKSNSTDKGTVNGSNPGFKNIVSNTLDRLKENGNKVDTSLAEETKESQRSGQNNNIDDILSQLLDQMVASGGKESAENQFDLKDGEMDDAITKILDQMTSKEVLYEPMKEMRSEFGVWFQENGENEEHKEKIGTYKRQFNIVDEIVNIYELKDYDELKHKDRVTELLDELEQLGDSPIRSANSPLKHGNEEEELMKMLEIDGNDPNLGNLDKELTDGCKQQ* 060414 +YDL102W MSEKRSLPMVDVKIDDEDTPQLEKKIKRQSIDHGVGSEPVSTIEIIPSDSFRKYNSQGFKAKDTDLMGTQLESTFEQDVSQMEHDMADQEEHDLSSFERKKLPTDFDPSLYDISFQQIDAEQSVLNGIKDENTSTVVRFFGVTSEGHSVLCNVTGFKNYLYVPAPNSSDANDQEQINKFVHYLNETFDHAIDSIEVVSKQSIWGYSGDTKLPFWKIYVTYPHMVNKLRTAFERGHLSFNSWFSNGTTTYDNIAYTLRLMVDCGIVGMSWITLPKGKYSMIEPNNRVSSCQLEVSINYRNLIAHPAEGDWSHTAPLRIMSFDIECAGRIGVFPEPEYDPVIQIANVVSIAGAKKPFIRNVFTLNTCSPITGSMIFSHATEEEMLSNWRNFIIKVDPDVIIGYNTTNFDIPYLLNRAKALKVNDFPYFGRLKTVKQEIKESVFSSKAYGTRETKNVNIDGRLQLDLLQFIQREYKLRSYTLNAVSAHFLGEQKEDVHYSIISDLQNGDSETRRRLAVYCLKDAYLPLRLMEKLMALVNYTEMARVTGVPFSYLLARGQQIKVVSQLFRKCLEIDTVIPNMQSQASDDQYEGATVIEPIRGYYDVPIATLDFNSLYPSIMMAHNLCYTTLCNKATVERLNLKIDEDYVITPNGDYFVTTKRRRGILPIILDELISARKRAKKDLRDEKDPFKRDVLNGRQLALKISANSVYGFTGATVGKLPCLAISSSVTAYGRTMILKTKTAVQEKYCIKNGYKHDAVVVYGDTDSVMVKFGTTDLKEAMDLGTEAAKYVSTLFKHPINLEFEKAYFPYLLINKKRYAGLFWTNPDKFDKLDQKGLASVRRDSCSLVSIVMNKVLKKILIERNVDGALAFVRETINDILHNRVDISKLIISKTLAPNYTNPQPHAVLAERMKRREGVGPNVGDRVDYVIIGGNDKLYNRAEDPLFVLENNIQVDSRYYLTNQLQNPIISIVAPIIGDKQANGMFVVKSIKINTGSQKGGLMSFIKKVEACKSCKGPLRKGEGPLCSNCLARSGELYIKALYDVRDLEEKYSRLWTQCQRCAGNLHSEVLCSNKNCDIFYMRVKVKKELQEKVEQLSKW* 110203 +YDL115C MSTISTTTAPEFIRVKRRRDEDSVQALLIDEGKRVKKQKFIFKLSKTVSSESYQSEQESSTPLLKLAHEDHRHFVLEQRKKSRRDSDDEKSQQRLAAEGSTVDDDGLPPEINQMVNDYLKLNKGVEKTERKKPSRKYFTGDSAKIASLPSLDYVFDIYHLEKIHDDEVARYNNEKNIGFVKIIEHIDLALDEESDPNEARSDDEDSNDENYYQNDYPEDEDDDRSILFGSEGEDIAALGEEIVIGVNKSRFSSWNDDKIQGSNGYHDVEEEYGDLFNRLGGKSDVLKSINSSNFIDLDGQEGEIEISDNEDDSDEGDDIEYPRNEFFPTDVDDPLAHHRDRIFHQLQKKINRS* 040305 +YDL115C MVNDYLKLNKGVEKTERKKPSRKYFTGDSAKIASLPSLDYVFDIYHLEKIHDDEVARYNNEKNIGFVKIIEHIDLALDEESDPNEARSDDEDSNDENYYQNDYPEDEDDDRSILFGSEGEDIAALGEEIVIGVNKSRFSSWNDDKIQGSNGYHDVEEEYGDLFNRLGGKSDVLKSINSSNFIDLDGQEGEIEISDNEDDSDEGDDIEYPRNEFFPTDVDDPLAHHRDRIFHQLQKKINRS* 040206 +YDL115C MVNDYLKLNKGVEKTERKKPSRKYFTGDSAKIASLPSLDYVFDIYHLEKIHDDEVARYNNEKNIGFVKIIEHIDLALDEESDPNEARSDDEDSNDENYYQNDYPEDEDDDRSILFGSEGEDIAALGEEIVIGVNKSRFSSWNDDKIQGSNGYHDVEEEYGDLFNRLGGKSDVLKSINSSNFIDLDGQEGEIEISDNEDDSDEGDDIEYPRNEFFPTDVDDPLAHHRDRIFHQLQKKINRS* 070713 +YDL115C MVNDYLKLNKGVEKTERKKPSRKYFTGVTMRLLDITTRKI*GL*KLLSI*IWLLMKKVIPMKPVQTMRILMTKTITKMIIRRMKMMIDLFYLVAKERI*LHWVKRLL*GLIRAGFPLGMTIKFRDLMGTTMWRKSTGIFLTGLEEKVMS*NP*IPRISLTWMAKKVK*R*VITKMILMKEMILNTLEMNFFRRMLMTHWRIIGTEFFISYRKKLIEA 040402 +YDL127W MSNYEALLKFNRKAVSKEMVQYLASTTASIIKIKKTNSMIDIALPAPPLTKFINRLIKHSNVQTPTLMATSVYLAKLRSIIPSNVYGIETTRHRIFLGCLILAAKTLNDSSPLNKHWAEYTDGLLILREVNTIERELLEYFDWDVTISTDDLITCLSPFLKPIKEEQLYKSQRDCRTLKNFSAQEKDIVNKTSISHSRSSSNMSIPSLASTSTLSTLESRRSNLSNYSNRIRTLPELHESNNISDKFSPRTYNIDSKHDNKEIGQYRQLSLLILVKRAL* 040305 +YDL190C MTAIEDILQITTDPSDTRGYSLLKSEEVPQGSTLGVDFIDTLLLYQLTENEKLDKPFEYLNDCFRRNQQQKRITKNKPNAESLHSTFQEIDRLVIGYGVVASQIENFCMNGAFINYITGIVSNVNSYTDFLSQIIQRAILEGTALDLLNAVFPTLLEYCNKHVSHFDLNESVIYNNVLTIFELFVTFKPIAEIFTKIDGFFADYSCKPQDFERKTILGPILSLSPIEAAVAIRNYGDNLLRSKQQTAMIHESLQAEHKVVIDRLFFIVDKLVRGSLNSRTDMISYFAHIANKNHLRRADHPPFKELSSNGFMSNITLLLVRFSQPFLDISYKKIDKIDANYFNNPSLFIDLSGETRLNSDFKEADAFYDKNRKTADSKPNFISDCFFLTLTYLHYGLGGTLSFEEKMGSEIKALKEEIEKVKKIAANHDVFARFITAQLSKMEKALKTTESLRFALQGFFAHRSLQLEVFDFICGASTFLIRVVDPEHEFPFKQIKLPLIPDQIGVENVDNADFLRAHAPVPFKYYPEFVVEGPVNYSLYISKYQTSPIFRNPRLGSFVEFTTMVLRCPELVSNPHLKGKLVQLLSVGAMPLTDNSPGFMMDIFEHDELVNKNLLYALLDFYVIVEKTGSSSQFYDKFNSRYSISIILEELYYKIPSYKNQLIWQSQNNADFFVRFDARMLNDLTFLLDEGLSNLAEVHNIQNELDNRARGAPPTREEEDKELQTRLASASRQAKSSCGLADKSMKLFEIYSKDIPAAFVTPEIVYRLASMLNYNLESLVGPKCGELKVKDPQSYSFNPKDLLKALTTVYINLSEQSEFISAVAKDERSFNRNLFVRAVDILGRKTGLASPEFIEKLLNFANKAEEQRKADEEEDLEYGDVPDEFLDPLMYTIMKDPVILPASKMNIDRSTIKAHLLSDSTDPFNRMPLKLEDVTPNEELRQKILCFKKQKKEEAKHKASE* 110203 +YDL195W MVKLAEFSRTATFAWSHDKIPLLVSGTVSGTVDANFSTDSSLELWSLLAADSEKPIASLQVDSKFNDLDWSHNNKIIAGALDNGSLELYSTNEANNAINSMARFSNHSSSVKTVKFNAKQDNVLASGGNNGEIFIWDMNKCTESPSNYTPLTPGQSMSSVDEVISLAWNQSLAHVFASAGSSNFASIWDLKAKKEVIHLSYTSPNSGIKQQLSVVEWHPKNSTRVATATGSDNDPSILIWDLRNANTPLQTLNQGHQKGILSLDWCHQDEHLLLSSGRDNTVLLWNPESAEQLSQFPARGNWCFKTKFAPEAPDLFACASFDNKIEVQTLQNLTNTLDEQETETKQQESETDFWNNVSREESKEKPSVFHLQAPTWYGEPSPAAHWAFGGKLVQITPDGKGVSITNPKISGLESNTTLSEALKTKDFKPLINQRLVKVIDDVNEEDWNLLEKLSMDGTEEFLKEALAFDNDESDAQDDANNEKEDDGEEFFQQIETNFQPEGDFSLSGNIEQTISKNLVSGNIKSAVKNSLENDLLMEAMVIALDSNNERLKESVKNAYFAKYGSKSSLSRILYSISKREVDDLVENLDVSQWKFISKAIQNLYPNDIAQRNEMLIKLGDRLKENGHRQDSLTLYLAAGSLDKVASIWLSEFPDLEDKLKKDNKTIYEAHSECLTEFIERFTVFSNFINGSSTINNEQLIAKFLEFINLTTSTGNFELATEFLNSLPSDNEEVKTEKARVLIASGKSLPAQNPATATTSKAKYTNAKTNKNVPVLPTPGMPSTTSIPSMQAPFYGMTPGASANALPPKPYVPATTTSAPVHTEGKYAPPSQPSMASPFVNKTNSSTRLNSFAPPPNPYATATVPATNVSTTSIPQNTFAPIQPGMPIMGDYNAQSSSIPSQPPINAVSGQTPHLNRKANDGWNDLPLKVKEKPSRAKAVSVAPPNILSTPTPLNGIPANAASTMPPPPLSRAPSSVSMVSPPPLHKNSRVPSLVATSESPRASISNPYAPPQSSQQFPIGTISTANQTSNTAQVASSNPYAPPPQQRVATPLSGGVPPAPLPKASNPYAPTATTQPNGSSYPPTGPYTNNHTMTSPPPVFNKPPTGPPPISMKKRSNKLASIEQNPSQGATYPPTLSSSASPLQPSQPPTLASQVNTSAENVSHEIPADQQPIVDFLKEELARVTPLTPKEYSKQLKDCDKRLKILFYHLEKQDLLTQPTIDCLHDLVALMKEKKYKEAMVIHANIATNHAQEGGNWLTGVKRLIGIAEATLN* 110203 +YDL200C MHKKKIENGRIFDLNGPTMKELLYYTFIETEVTGAFLVFREKTQNLVFASLGNDKLFLLGKVEGFLKKHEKQDTMYDLQELKEAETYKKSIENYTICLENKMPLPSGAIPFEFLFGTDFQRKVWNELLNVEHGHVVTYGDIAKRIGKPTAARSVGRACGSNNLALLVPCHRIVGSNRKLTGYKWSCKLKEQLLNNEKENSLSLSRL* 060414 +YDL208W MVNGSLGSRETETSAVKMGKDNKEHKESKESKTVDNYEARMPAVLPFAKPLASKKLNKKVLKTVKKASKAKNVKRGVKEVVKALRKGEKGLVVIAGDISPADVISHIPVLCEDHSVPYIFIPSKQDLGAAGATKRPTSVVFIVPGSNKKKDGKNKEEEYKESFNEVVKEVQAL* 051123 +YDL216C MNNNDRKSIKTAGGSMSLSNKTVKELRQLLKERYTVEDELTESIALSSMRFKPSQEPEFHALSQSSLLKTKLKQQSSTDIPSYTHVLISKLSCEKITHYAVRGGNIEIMGILMGFTLKDNIVVMDCFNLPVVGTETRVNAQLESYEYMVQYIDEMYNHNDGGDGRDYKGAKLNVVGWFHSHPGYDCWLSNIDIQTQDLNQRFQDPYVAIVVDPLKSLEDKILRMGAFRTIESKSDDNSATSYYELETIIFDSELNRALFETKLNLHCVIEDDESEQISLNRLIDSMKQYSYLMDSKNVRTRIKLATTSERVSNENKKNIDYQNRSTRSQFCLNTQRGDSTETSSFGSMFSGDNTSDVDMEDRNLTEFDSTDTSLCINGEPSIHVNRVERSSRSTDNFHNSKKRMNSNQERCHDEGNDMLQRNVLETDYARAKNRILASKIKQYERLRFYKDTFTL* 060414 +YDL237W MLGLKGCLTILIGYVIAVCALFSSRGRNPSLTDWEKLKDQKISDIDNFGLTGQHLLEFFQENLPFLSFSEEKYRHKHVSLYYDVFKEYILRRASSKKCLPVDSAIAKLNKDVNPMPVHSHNDYWRKLPLFEGLAYGASSTEADVWNIDEKILAVGHNEAYLDPVELTLDKLYTGPLLEILDEVNCQDSDADRKNGVFFNSPETSLFFYIDFKSDDNELTYKLLMEQYFKSLIDSGYLTYYDMKKDEIIWRPVTVILTGNYPTSLDILDNGNDNGYFESSQRFAFLDAPLLSLEPKYSKLSVAATVSFSQLMKHCGSDHWKVSLRGRMDSNEISCAKSIIDGAHALKLKTRIWGAPTWPANLVETISRQIIHDLGSDLLNLDNLFMASSLI* 110203 +YDL239C MNHWLAFLNKPESLKEQNSDCDQQGEMRHVTDGTLTKSPESKPFRERRSQTWIDSEVPTSTEKSNVQESISSDIISKLSNRRSRRNRSESWAGSEASSPSGNISTLENATEKNTLKSPNKFLQRGGLPTVGIGSQALSPAGKPSTLGNVSPGKFTTYKVHNSIEVNRFSSTPTKLLTNPHKVAAISNDEHYVVSNESLEENIEVAHLENVFRSSKTPDEEQSEYMKLGEIRLSSSSYGGSISKENSLPKVLDELQSQNEEIKALRQKLEEKDDRIQELEELNSMNDAKLQRIEDLQKEFHNERKAASKRLNIVQDRFRKEIKKIREEKITDFQNKNASKKEKNEVTSAKTKCKAFSQRNILVSELYRKQKQILNLQQENDKFLKDINESNNSIVKLRSEVEILKSNLQLSQDENKKLHDNGSFYEKRLNDVYSYMQNLSLFEKDLGKFILEEMKCGHSPSMFQNGFAKLYPDFQDIKNLENMEQYKQLKGKIELLEKNDRIRLEKIISVFKLINERLHFMQQQHSHKIKYLQKEALTKEQQFRLEKRRWHDILNLKEENFQKLKSELKGKLILSEKIQKNAEDKLNDYMNEHQEIVEKLQNQALIASRWSTQIQESENTHKKITDELAGKQSEILKLEETILSLKEDVFQEKLNLKKLYGDPSTELNFETVGKSFPHITKEKYDSLGLDILTDLTYVQSQNLIKNLLIVLDIPLKTFLKIVPTIVIQLRCELTLLTKFANDLNLKVFGKQLDFKSRRKVAMNEFLNNHDIAEVKHPLEYDLQALFKYFFS* 110203 +YDL240W MIQNSAGYRSLNTASPMTVQVKNQKKICARCNKLVIPDSQRTKTTLKALGKYYHESCFTCQDCQKPLKPKYFPYQVDKTSESILLCQYDYFRRHNLLCHVCDTPLRGLYYTAFGYRYDEEHFSCTICATPCGVKKCFMYGNQLYCKYHFLKYFSKRCKGCEFPISDQYIEFPKGEEIHCWHPECYGIHKYWHVNLAAETVGLQYLPKLEYNPNSGDKDINPTAYELDKQMQAFNFILSKTWSVLYRFEEEAASCISDMFQYLTSNDQLKGIESTGLLVLKIDCLFRGLDTLNLSTNKSMPVNSDQECIENNAMAASKYSKFPKNLSTKIMIYLQLLRKLGTENKNETITISSFMSVITGLAHFLKLLTRFGLYTALENNKLTHSVNPLLRFLREVEKNELFENNPFQYIKTPVNATDSCAGCNKYIQEECIQFYEHRWHIACFTCSSCHKNINPRSLTDPTFNKEKKKILCSHCSIDDPASVPGFKFVTKLAQLIFLLKIALVKSRTVMLKSKASNKVGRNSLQSTMLKEHTYIRTLNDIKRLRSRRESVRVTHNKQQARKSVILETAETDLNDPTKQGDSKNLVIQTDDPSSSQQVSTRENVFSNTKTLTLDDISRIVAAEQARELRPNAFAHFKKLKETDDETSNVVPKKSGVYYSELSTMELSMIRAISLSLLAGKQLISKTDPNYTSLVSMVFSNEKQVTGSFWNRMKIMMSMEPKKPITKTVFGAPLDVLCEKWGVDSDLGVGPVKIRIPIIIDELISSLRQMDMSVEGIFRKNGNIRRLRELTANIDSNPTEAPDFSKENAIQLSALLKKFIRELPQPILSTDLYELWIKAAKIDLEDEKQRVILLIYSLLPTYNRNLLEALLSFLHWTSSFSYIENEMGSKMDIHNLSTVITPNILYLRHKEISNDNVPDEPESGLVDSFAQNKGENYFLAIEIVDYLITHNEEMAMVPKFLMNLLKDVQLQKLDNYESINHFISTVMQSKTIDYSECDIKTPVTVKDSTTTVIQGEINK* 110203 +YDR007W MSVINFTGSSGPLVKVCGLQSTEAAECALDSDADLLGIICVPNRKRTIDPVIARKISSLVKAYKNS*GTPKYLVGVFRNQPKEDVLALVNDYGIDIVQLHGDESWQEYQEFLGLPVIKRLVFPKDCNILLSAASQKPHSFIPLFDSEAGGTGELLDWNSISDWVGRQESPESLHFMLAGGLTPENVGDALRLNGVIGVDVSGGVETNGVKDSNKIANFVKNAKK* 040305 +YDR015C MSCSFHISSPLGSSSSLEGFSSLKVVVVACQALSRDLLGIDLVLLLLFWRPDKHPHWASATCVLRQIFGTKLLFFQFQIKQSSFYNVDVDYGRSRNRPFVLSCWSNFGAQALFGIIMYPEWYIGAASPI* 060414 +YDR031W MSDILDEIVIEDVVANCPQEFLQYHKCIRDNEENPGKCKDGRMILSTCIREKVPSVKSIMSECSEPMKKYDQCIRDNMGTRTINENCLGFLQDLRKCAELQVKNKNIKPSINGVNLN* 040723 +YDR083W MALFNVEGWSIKTKTVAFDNKTNKSSKDKKKNNRKNGKLTREQKLKEETEAELKEQVEDIPSEGSVAKDIPKKNQEKSDQNETSKKRKHDEEAPLMQVKENIEKPTKKQLTPLQQKMMAKLTGSRFRWINEQLYTISSDEALKLIKEQPQLFDEYHDGFRSQVQAWPENPVDVFVDQIRYRCMKPVNAPGGLPGLKDSKEIVIADMGCGEAQLALEINNFFKNYNKKAKKYLKRRHKVHSFDLKKANERITVADIRNVPLPDESCTIVVFCLALMGTNFLDFIKEAYRILAPRGELWIAEIKSRFSDGKGNEFVDALKLMGFFHKKTFDENKMFTRFEFFKPPAEIIEERRQKLERRQKFIEVETEKEELEKKRRKIAEENGS* 060120 +YDR098C MCSFQVPSAFSFNYTSYCYKRHQARYYTAAKLFQEMPVIEINDQEQFTYLTTTAAGDKLIVLYFHTSWAEPCKALKQVFEAISNEPSNSNVSFLSIDADENSEISELFEISAVPYFIIIHKGTILKELSGADPKEYVSLLEDCKNSVNSGSSQTHTMENANVNEGSHNDEDDDDEEEEEETEEQINARLTKLVNAAPVMLFMKGSPSEPKCGFSRQLVGILREHQVRFGFFDILRDESVRQNLKKFSEWPTFPQLYINGEFQGGLDIIKESLEEDPDFLQHALQS* 141118 +YDR179W-A MLFTEIIQSKMSTKSLLQRSFLDSFLNELVFGHIFNSIAEPYYLLEGLNKICIRIKLNSAGNTRNEVTHGKPKCDPWLFVSNVKHKILQMTRLLAYSTSTEAANMNTAEIQETAFLQRYIFTFFTDDFFKLSMRKPFLFSICRTLQHWISKLNALNRVMYRTFDNIVQTKITSPVTIGNLFSLLRHSLFPNDNMMGPPRVLPVGDAFLEFREECISNLWDVCMTYKLDHILAIKRSDIADLIICISKNRDCNKLLIYRIIDCVIAQLP* 040723 +YDR215C MKTPPNQEKNNEKISLLFSSQRLTIDVHPSSVYHIVLSSNNADRHQVTLSFTARSRMMPLTRARLSAIILACSACSLTPWSSLPSPPAFPFPLSCQGAVHTTQAHPAPKNRGKTTALWFRSFPPMAL* 110203 +YDR350C MLKCICRVYSQPLAQMVTSPLFKHMGSAGTYTILPITNLRHLSTKNCPLKIKSNRSEPLQFGDFERQVPCSRKSGSSKNVQKRLYELRQLKTVLSETFGVTEYASFFESLRNALHINNCSENEKKKLLYDIILHQHELYPEVARKIGFYLPGEVHRWFWYHIPKSESFNHYLFLLKSDVLLFTSNYCTRFTNRLIKGTEMERQLATFQIFLHDETNIKFIMEKVLKLHTFDSLIALVNGLVKAKNFRFIKVFIQALLQKLEQHCYSGKDGAKQKNLRYVKFNNTLLYYLLKSGNVELFIKTFQEELKFIVSSGLLNHIDGNEHILNFPIHHYLNLLRISNRQEELFNVISCLQSSPLMKYKLFKEFLMGELIASFQAFRDPKLVCKYLLSSYSSKASANILNALGIWGWLYHSKSTTLTAPTLARELKNKNNILPNTMRIGSPVTVPILTELYRSLLSSSSVSLESGQFKNCLLDLYYKYKSFLSEEAHKYRYWRNDTGILNVFLNYIRFQAREPRLAYNVLLDFYSQPFAKKVVLTTTLCPFSIVAYKNHTLTQAELSELLQVMHKNGVPLTFKFCSAMVMHYVKMRDEKEHAPGTIRYSSGALKSGIWL* 110203 +YDR359C MSSRPSSAVPNSASLSEDQSSDRSKFPKADDLIDERDRKLTELYCVSRLNQLLELTDENKLRKEIDAFLKKNDIRRGIRFDEASLPKLLHTAATPITKKKLKDVNLINVPNQRLSDSKMSRELPENSENVSVKSESHFVPSHDNSIRENMMDSLRPAEKTGGMWNKRPLESTMGGEEERHEKRQKMQSQSLESSNNSEMASLPISPRPPVPNALAHYTYYENIEYPPADPTEVQPAVKFKDPLIKNIMAKEIDTSDHYNENNVDALETVFLLMNDYIPSKIPQALPLAELKYMSQTLPLINLIPRAHKALTTNIINNALNEARITVVGSRIEELRRLGLWSLRQPKRFIDPWKQHNTHQNILLEEAKWMQADFKEGHKYKVAICTAMAQAIKDYWTYGEICCVKRKTLLPGKENKLSDDGRISEKSGRPSDTSRNDSDISIAGKDDIGIIANVDDITEKESAAANDNDENGKNEAGAKSDFDFADGLLSQEGAHDQIISSIDTKLLLKKPSSSSEVVLIQHEVAASSALIETEESKKELAPPFKLSIFVDELNTFEKTLIQDLPLYNGINEERPKKDDSLPFIPISKSVVSLDDNGFYKLLERQLIDEEPSISQLSKRRGMFYGNRRNHYLRPPAVPSLRYLQNRTPTIWLSEDDQELVKNINTYGYNWELISAHMTHRLTYSYLSNIERRTPWQCFERFVQLNERFNFSDLKGPRAHSAQQWLIEAHKFQQRQNRRISPLGVNTESIQRGHRRLRWASMFEAIRKCMKKRENTPRPNPTQPRKPLDCKNMKVPTPAEMSLLKAQRDEALRRDIQLRRTVKNRLQQRQQQSQQAHSSRAQSPIPSNGKSSSNLARNGQASAPRPNQKQYTEQDIIESYSRKLLEQKPDIGPEMALKAAKNYYRTLREQQQQLKQHQIQQQRQQLQEESSHVQQLQQLQPGSSSSATEIISISIFSFQYF* 040206 +YDR360W MGVAAVCRSFGSDASSNLIPLRISFFFKNASISFRSLFSSVNSSSWFKRDTQYSSVSFLSLSSIKSSALGNLLLSLLWSSLSDAELGTAELGREDIFEAETVLLIMMSLNNLYILSVRRLTLRVIAGL* 110203 +YDR378C MPNKQRRSNPFNNAQDAILTRKYGIAQYKQNKQRLLVMSGKASTEGSVTTEFLSDIIGKTVNVKLASGLLYSGRLESIDGFMNVALSSATEHYESNNNKLLNKFNSDVFLRGTQVMYISEQKI* 051123 +YDR381C-A MSNPFQNIGSKNLLYISAAGIASIYVVKTIVKARRDAKFIPKARGNNGEVNEKNYYDNLAQVKPGFPIPKDGGDNIDCSEDHQLVRKSKYEGSGLSAVTRKRGDKLGFLDRRRNE* 040206 +YDR414C MEKSESNSEGLYLQNILNVPPPQRFIVLIILALWIWTWILKFFLHSNLDVSQVILTRVPHDIRPGYTLQQLHRTARNFALKITRIIIPFHFATVFLFEFMNIIEGPLKNIILIVYFLPLIQCVTIFWFLLKECQIIKYCTRRCLLIESSPRSLRNTYILISDTLTSFGKPLIDFTLFTSLIFREPFTHFDLSVALLPVLVRLLQCLREYRLLHEATLLFNALKYSCNLPILFCTWRSRVYEGSINEERLHHVQRWFMLINSSYTLFWDVRMDWSLDSLTSLRSRSKSAVTLKKKMYHSAILVDFLLRFWWLWVYLSQNLKLVAADSDYIFFQGEMQYFEVIRRGIWVVFKLDAEYYIKFASK* 110203 +YDR422C MVDISDTSGYLHKQGVLPSVSFICTSFFACGLTSWKVELSYYIVVAAAMGNSPSTQDPSHSTKKEHGHHFHDAFNKDRQGSITSQLFNNRKSTHKRRASHTSEHNGAIPPRMQLLASHDPSTDCDGRMSSDTTIDKGPSHLFKKDYSLSSAADVNDTTLANLTLSDDHDVGAPEEQVKSPSFLSPGPSMATVKRTKSDLDDLSTLNYTMVDETTENERNDKPHHERHRSSIIALKKNLLESSATASPSPTRSSSVHSASLPALTKTDSIDIPVRQPYSKKPSIHAYQYQYLNNDETFSENSQMDKEGNSDSVDAEAGVLQSEDMVLNQSLLQNALKKDMQRLSRVNSSNSMYTAERISHANNNGNIENNTRNKGNAGGSNDDFTAPISATAKMMMKLYGDKTLMERDLNKHHNKTKKAQNKKIRSVSNSRRSSFASLHSLQSRKSILTNGLNLQPLHPLHPIINDNESQYSAPQHREISHHSNSMSSMSSISSTNSTENTLVVLKWKDDGTVAATTEVFIVSTDIASALKEQRELTLDENASLDSEKQLNPRIRMVYDDVHKEWFVPDLFLPAGIYRLQFSINGILTHSNFLPTATDSEGNFVNWFEVLPGYHTIEPFRNEADIDSQVEPTLDEELPKRPELKRFPSSSRKSSYYSAKGVERPSTPFSDYRGLSRSSSINMRDSFVRLKASSLDLMAEVKPERLVYSNEIPNLFNIGDGSTISVKGDSDDVHPQEPPSFTHRVVDCNQDDLFATLQQGGNIDAETAEAVFLSRYPVPDLPIYLNSSYLNRILNQSNQNSESHERDEGAINHIIPHVNLNHLLTSSIRDEIISVACTTRYEGKFITQVVYAPCYYKTQKSQISN* 060414 +YDR470C MNNNNVTEATSRAQIRPYYDPDSFNAGYSAVFKPDEGVVDPHGYTIASKLNVINSSPTTKRMANALFKSSPMKKLSNSVNDGLSLEGSNGEITGLNNFEWAELVNIQKWRKIFGQLLDMFFRKYFQLLIQQPFDVARLLIQVGEFKIFKTTVDTNKPQAPIILRDEEGDGAAREGEEDAYDEEEIDFFPIERKIAEANSTAPIMAEETDHSHHEPTDISLTIAPQSLHTIDVINALFDQEGIRGLWKANNTTFIYNFLSLSIDTWFTGLLSSFLGVPDPYFMEVINSPDISKSFILALGAGVFTSIILLPVDLIRTRLIVTSFKKKKNVKTDGKNMVTNTRSLRQLIRCWSWRKNGVSIPLDMWSLTILQSINNSFFNKLFDLVIYNQFHIEKYSQTVMYNTMKFFSKSLELFIKLPLENLLRRCQLNYLLNDQRLSFKVDSTELIVKPKKYNGIWDVIRNNSNTNRGQLWNGWKVGVISLICGYGLQMMNKVDINMEQEKF* 110203 +YDR505C MDLPTVNSTTSISDNVDLKNYYEDLLFKNNSGKSLSDLPRKLNDNSNNSGSDTVDPLAGLNNLRNSIKSAGNGMENRRTFDDIDFMGRFPYLPPVPNQQQQPFSHQNGFIQEHPSSNLTSFQMSSSNSEPMSAPPISSNNNNLNSTQMGNYQAQQRSFPQFNGNSFHSNGNDLMGNRMDSDYMRLMNKTNIGFTSNSGSNFAAPSHSAGNPSSMNNQQVPSFNWQQPSHPESTIRRSSYISDTLINHQMPDARQKQTSQVQQQHAQGFNLFNSRFNYDNLNSTHLTAKGVPEFGNGVQPPYPYDNEPNNASISNSNNNNNSHNMVPMQQFRRNTQPVASFNPSLPTFQQQQQQPQQPQQPRNVNVPTSFNGERVDDVQLVQLQRSSSVPSSTNSHNLQNENSNEGNVSLDNGLVLIQGKHLTSSKTLHDLYSDCGSGYFASSAVFEFTDNIKKMLKLHDSNESYDAKNMGLIDEEGNTYQSLLNFLDILRSCNMNYVNDPESNNGIVSNNGGNKNRRKGSFTTELSCRNANNSFLPYTPLVLVALKNGKLELLSTPQATNLLLKRGDLVIIDGDRGRDLVLVVEPSVDLNLALFINFLKKKIHFDSLITSESQHYRNDEFIQMLIDSKNGQKKKLNPKLYDVVELTELIIPSKQVLRFATPWEVTTNLHNKFEDELKALHIAQSKLQALNDNSKSQNTNDSSSNNFTNAATYSKPKLNIKILNAEFQFDRKELTFYYVCEERNDFRDLIKELFKYYKTRIWLCAIPNNLSIDSKYYDKQQKELKLYQNIVKNYNAEDLMNVNEFSQNRGNNRVNFAPPLNEIELDNFQIAVYEELVHELFH* 110203 +YDR524W-A MKRSYKTLPTYFFSFFGPFKERAVFLLVL* 051103 +YDR527W MDLLGDIVEKDTSDSVESNDNGTLSTNNCGTGFPELYKPKKISSWKERLREKRAQKKKTSGKDAEKQQTSTDAPLSEAKSIHNENIKVLQGMSDEQIVQEREDLYNSLDPKLIAKLLKNINKRAKDENNTPLFAEIEGASGTWVGGNKQGIYDLPPLDDEDVDVALEIRPMLGKDAKHVQFEEAGKEKDVEGEGKTNDDVDDIAPLDFQMAQCIDHMKNEELFKDVHFIKEESQNEINLEKLDINDPNFNDKLHEKYFPDLPKEVDKLKWMQPVQQKTDKNYIIEDVSECRFDFNGDLVPPTRQIDSTIHSGLHHHSDSPELAGYTIVELEHLARSTFPSQRCIAIQTLGRILYKLGQKSYYQLVPEIDADTYKEDGSISNVMDKIYSMFWDLIKDGKVIESLEISSDEKFTRNLSVRNYAIDALWLWKQGGGDFRTKK* 110203 +YDR541C MSNTVLVSGASGFIALHILSQLLKQDYKVIGTVRSHEKEAKLLRQFQHNPNLTLEIVPDISHPNAFDKVLQKRGREIRYVLHTASPFHYDTTEYEKDLLIPALEGTKNILNSIKKYAADTVERVVVTSSCTAIITLAKMDDPSVVFTEESWNEATWESCQIDGINAYFASKKFAEKAAWEFTKENEDHIKFKLTTVNPSLLFGPQLFDEDVHGHLNTSCEMINGLIHTPVNASVPDFHSIFIDVRDVALAHLYAFQKENTAGKRLVVTNGKFGNQDILDILNEDFPQLRGLIPLGKPGTGDQVIDRGSTTDNSATRKILGFEFRSLHESVHDTAAQILKKENRL* 110203 +YEL003W MHVANFILLTIFVFSLCIVFQAKYNEYKQILEELQTKIIELGHDKDEHTIVIKTLKDAEPTRKCYRMIGGALVESDVQTSLPILETKKENIEGTISKMKETLIQTAKEFEKWKKDNKIQVVKN* 070713 +YEL038W MVIGQKVLLARIPKMGDNYSTYLLDIEGTVCPISFVKETLFPYFTNKVPQLVQQDTRDSPVSNILSQFHIDNKEQLQAHILELVAKDVKDPILKQLQGYVWAHGYESGQIKAPVYADAIDFIKRKKRVFIYSSGSVKAQKLLFGYVQDPNAPAHDSLDLNSYIDGYFDINTSGKKTETQSYANILRDIGAKASEVLFLSDNPLELDAAAGVGIATGLASRPGNAPVPDGQKYQVYKNFETL* 060512 +YEL066W MKKTPDPSPPFASTKNVGMSNEEPEKMVNDRIVVKAIEPKDEEAWNKLWKEYQGFQKTVMPPEVATTTFARFIDPTVKLWGALAFDTETGDAIGFAHYLNHLTSWHVEEVVYMNDLYVTERARVKGVGRKLIEFVYSRADELGTPAVYWVTDHYNHRAQLLYTKVAYKTDKVLYKRNGY* 210421 +YER030W MEGKREIMSDEAKEKRELESQKESSHNKSEKSVEPKPKRRRRRNYDDYDAEVAKEETKAKNGLTKSENNGTVEDSESDMDDAKLDALMGNEGEEEEDDLAEIDTSNIITSGRRTRGKVIDYKKTAEELDKKEPSTGSKDDVGYGEKEEDDEDEEDDDFKE* 051202 +YER041W MGVSQIWEFLKPYLQDSRIPLRKFVIDFNKSQKRAPRIAIDAYGWLFECGFIQNIDISPRSRSRSRSPTRSPRDSDIDSSQEYYGSRSYTTTGKAVINFISRLKELLSLNVEFLLVFDGVMKPSFKRKFNHEQNATTCDDEKEYYSSWEQHVKNHEVYGNCKGLLAPSDPEFISLVRKLLDLMNISYVIACGEGEAQCVWLQVSGAVDFILSNDSDTLVFGGEKILKNYSKFYDDFGPSSITSHSPSRHHDSKESFVTVIDLPKINKVAGKKFDRLSLLFFSVLLGADYNRGVKGLGKNKSLQLAQCEDPNFSMEFYDIFKDFNLEDLTSESLRKSRYRLFQKRLYLYCKDHSVELFGRNYPVLLNQGSFEGWPSTVAIMHYFHPIVQPYFDEEVLSDKYINMAGNGHYRNLNFNELKYFLQSLNLPQISSFDKWFHDSMHEMFLLREFLSIDESDNIGKGNMRITEEKIMNIDGGKFQIPCFKIRYTTFLPNIPISSQSPLKRSNSPSRSKSPTRRQMDIMEHPNSLWLPKYLIPQSHPLVIQYYETQQLIQKEKEKKGKKSNKSRLPQKNNLDEFLRKHTSPIKSIGKVGESRKEILEPVRKRLFVDTDEDTSLEEIPAPTRLTTVDEHSDNDDDSLIFVDEITNSQSVLDSSPGKRIRDLTQDEQVDVWKDVIEISPIKKSRTTNAEKNPPESGLKSRSSITINARLQGTKMLPPNLTAPRLEREHSSVLDQLVTDAQDTVDRFVACDSDSSSTIE* 110203 +YER050C MFYYAFKLHCRVTCWGKKYLGLLYILKYESIINSVTVLTKKARFYTKLRMFKMNATTGIKIQNGMQPIIKGAVSSTFKRALYNFGIKEKKSVNIEMGRTQQTKKIDQSLSKKLPKGTIYDPFDFSMGRIHLDRKYQANKNSNRNDIMKSGANPLEFYARPRILSRYVTSTGRIQHRDITGLSAKNQRRLSKAIRRCQAIGLM* 051202 +YER061C MSRRVVITGLGCVTPLGRSLSESWGNLLSSKNGLTPITSLPNYNEDYKLREKSIPSTITVGKIPENFQNENSAINKLLFTSQDERRTSSFIKLALRTTYEALHNAGLLNPNDITINTSLCNLDHFGCLIGSGIGSIQDIYQTSLQFHNDNKRINPYFVPKILTNMAAGNVSIKFNLRGLSHSVSTACATGNNSIGDAFNFIRLGMQDICVAGASETSLHPLSLAGFIRAKSITTNGISRPFDTQRSGFVLGEGCGMIVMESLEHAQKRNANIISELVGYGLSSDACHITSPPADGNGAKRAIEMALKMARLEPTDVDYVNAHATSTLLGDKAECLAVASALLPGRSKSKPLYISSNKGAIGHLLGARGAVESIFTICSLKDDKMPHTLNLDNVLTLENNEADKLHFIRDKPIVGANPKYALCNSFGFGGVNTSLLFKKWEGS* 110203 +YER073W MLSRTRAAAPNSRIFTRSLLRLYSQAPLRVPITLPNGFTYEQPTGLFINGEFVASKQKKTFDVINPSNEEKITTVYKAMEDDVDEAVAAAKKAFETKWSIVEPEVRAKALFNLADLVEKHQETLAAIESMDNGKSLFCARGDVALVSKYLRSCGGWADKIYGNVIDTGKNHFTYSIKEPLGVCGQIIPWNFPLLMWSWKIGPALATGNTVVLKPAETTPLSALFASQLCQEAGIPAGVVNILPGSGRVVGERLSAHPDVKKIAFTGSTATGRHIMKVAADTVKKVTLELGGKSPNIVFADADLDKAVKNIAFGIFYNSGEVCCAGSRIYIQDTVYEEVLQKLKDYTESLKVGDPFDEEVFQGAQTSDKQLHKILDYVDVAKSEGARLVTGGARHGSKGYFVKPTVFADVKGDMRIVKEEVFGPIVTVSKFSTVDEVIAMANDSQYGLAAGIHTNDINKAVDVSKRVKAGTVWINTYNNFHQNVPFGGFGQSGIGREMGEAALSNYTQTKSVRIAIDKPIR* 110203 +YER074W-A MVLFGLGRLFYVILLLINAVAVLSEERFLRRRVGLGRSNDETPVFGQDQNTTKSKVVQLIGAVQTLLRRVPLIGINILVIVYELLLG* 040112 +YER075C MKDSVDCPSILPTDRTSVLSETSTLVGSSSHVYSRHAPMNSYHNSMNSNIYHSPKASSPLVSYKTSSPVLLKRATAPVLPSFKPKEQRYNKPQGCSLITAVELGKIIETLPDEKVLLLDVRPFTEHAKSIITNSIHVCLPSTLLRRKNFTFSKLLDNLTPSEQSVLKSKLAIDNLRIIIYDSTANQTESSVSLPCYGIASKLIEFDTNVKKTVSILMCGFPQFKILFPDHINTNTFNSDCISSAEPKSPKTNLMNSLHNTAPHMTATTPLSSPQMNLKLKVPDDSRSDHSNFSSSPSPRNVLSDSPMSSSSPISALFKFQLPAPQTNINQMFKFSQNEEIMGLETYLSAVNIKEEHERWYNNDSAKKSLQNFQFPKNQNSLEKDTNKDKLGFQIRYENLSKNYEKEVIDSVIPEWFQHLMSIPKIELVSQFQKLDFLEKRRLNHSVSFRKKENSFILEKPSSYPEQLTSTSSSTIMPPKFPDVNKVQKRSHSQPIFTQYSKYKSMLSLESDSDSESDDVIISSGVELGAKNRYKDIFPYEHSRVILKKGLQSSKGIKHSHSTSDGGILDNYINANYLSLPRFSVEQNSSFQTTTTTTRRVRYIATQAPMPSTVHDFYTCILNNGVPLVLSLTNDFENGIEKCYRYWQEGNYNGIHVKLLEKKILKMPSTTSMRKNTMGTQNSSLYSAGVQGNSSNYSTDNDNDNDNNNNNNNNSNIPVTAAACDDDDDDDDDAILIRQILLTYHDQEKPYELLQIQVKNWPDLGTLLNPISILQAINVKNHIIDTLFARNYYQNDQLPTILVHCSAGCGRTGTLCTIDSILSNFEMFEMLQKEFVKLKYPAKLFDPISWTINIFRKERISMVQNINQFIFIYDCLLFYFRLRLDDITERTDGDGSNKDNISLSALIEQIEKLEILQTFVDDKLKELPQ* 110203 +YER162C MNEDLPKEYFELIRKALNEKEAEKAPLSRRRRVRRKNQPLPDAKKKFKTGLNELPRESVVTVNLDSSDDGVVTVPTDDSVEEIQSSEEDYDSEEFEDVTDGNEVAGVEDISVEIKPSSKRNSDARRTSRNVCSNEERKRRKYFHMLYLVCLMVHGFIRNEWINSKRLSRKLSNLVPEKVFELLHPQKDEELPLRSTRKLLDGLKKCMELWQKHWKITKKYDNEGLYMRTWKEIEMSANNKRKFKTLKRSDFLRAVSKGHGDPDISVQGFVAMLRACNVNARLIMSCQPPDFTNMKIDTSLNGNNAYKDMVKYPIFWCEVWDKFSKKWITVDPVNLKTIEQVRLHSKLAPKGVACCERNMLRYVIAYDRKYGCRDVTRRYAQWMNSKVRKRRITKDDFGEKWFRKVITALHHRKRTKIDDYEDQYFFQRDESEGIPDSVQDLKNHPYYVLEQDIKQTQIVKPGCKECGYLKVHGKVGKVLKVYAKRDIADLKSARQWYMNGRILKTGSRCKKVIKRTVGRPKGEAEEEDERLYSFEDTELYIPPLASASGEITKNTFGNIEVFAPTMIPGNCCLVENPVAIKAARFLGVEFAPAVTSFKFERGSTVKPVLSGIVVAKWLREAIETAIDGIEFIQEDDNRKEHLLGALESWNTLLLKLRIRSKLNSTYGKIAEEEPNVTKEQNIADNHDNTETFMGGGFLPGIANHEARPYSEPSEPEDSLDYVSVDKAEESATDDDVGEDYSDFMKELEMSEESD* 110203 +YER186W-A IVRLFAIIFALLLVAYSLFLSTLRTGAIPDRANTAALVRRAR*SFATGLGLGGFLIAAAAYATPYWVAATCIASTSGICSPIAGAVLATSAVIVAAVLVGKSSGSATKRGLSETINVLNHTITLTDHVLNGQTLSNGTGSNFVTIEFSGYAVHDTIKRDGAAEINFVGYTTEHGTHISTSSVHNVSMLIDQIVAAVPG 051103 +YFL026W MSDAAPSLSNLFYDPTYNPGQSTINYTSIYGNGSTITFDELQGLVNSTVTQAIMFGVRCGAAALTLIVMWMTSRSRKTPIFIINQVSLFLIILHSALYFKYLLSNYSSVTYALTGFPQFISRGDVHVYGATNIIQVLLVASIETSLVFQIKVIFTGDNFKRIGLMLTSISFTLGIATVTMYFVSAVKGMIVTYNDVSATQDKYFNASTILLASSINFMSFVLVVKLILAIRSRRFLGLKQFDSFHILLIMSCQSLLVPSIIFILAYSLEPNQGTDVLTTVATLLAVLSLPLSSMWATAANNASKTNTITSDFTTSTDRFYPGTLSSFQTDSINNDAKSSLRSRLYDLYPRRKETTSDKHSERTFVSETADDIEKNQFYQLPTPTSSKNTRIGPFADASYKEGEVEPVDMYTPDTAADEEARKFWTEDNNNL* 110203 +YFL034W MSDSEEDLGVQLKGLKIARHLKESGEHTDEESNSSPEHDCGLSNQDDLTVMHTQAKEEVFKRREEDGTRTEDALHEGEAGKEGTGFPSSQSVCSPNEADSGIDRADKPILLDPFKSVHDTDPVPGTKSRSNSDSDSDSDDGGWQEMPAVSSFNIYNHRGELELTSKVRNSEQASETSPTVPPGKNCKSVNDSRFDYTKMAAEQQAQRSYRTNKKTDFLFDHKVLKKKINSSQTSVNLTSSPSTTSLNNEKNNDDDDDDSYDEYEDDVEPVNDLNRDSQLNITKNLLSDMEKFAYVGAINILANQMCTNLATLCLCIDIKSHKNLAHRLQFTQKDMAAWKTVVLSRLYDHLGISQEEIVMIEKLSLHKIQLEDLCKCLKTTQSIDNPWENDRDHEEDGIEETTERMSPNEQNGSVQASTPDPEQSATPETPKAKQSPLSSDVPGKVLDPENVKSQDKLNIDVAWTIICDLFLICLQSSTYDSRSRTLLINFAKVLNMTSLEICEFERRVTDSLDMEQSTEDQVWDEQDHMRNRRRSKRRKKMAYVALAMVGGSLVLGLSGGLLAPVIGGGIAAGLSTIGITGATSFLTGVGGTTVVAVSSTAIGANIGARGMSKRMGSVRTFEFRPLHNNRRVNLILTVSGWMVGNEDDVRLPFSTVDPVEGDLYSLYWEPEMLKSIGQTVSIVATEIFTTSLQQILGATVLTALISSIQWPMALSKLGYILDNPWNVSLDRAWSAGKILADTLIARNLGARPITLVGFSIGARVIFSCLIELCKKKALGLIENVYLFGTPAVMKKEQLVMARSVVSGRFVNGYSDKDWFLAYLFRAAAGGFSAVMGISTIENVEGIENINCTEFVDGHLNYRKSMPKLLKRIGIAVLSEEFVEIEEMMNPEEVKRKRKLINDVDAAQKKLSERKKHNSWVPKWLKPKKSKWKVMVEEAVEEGRDMQDLPENDVNNNENENPDEHEGIARQKRRDAALVDHGALMHELQLIKQAMHEDEIKNKACLPGEDKEVESSNDFLGESHYKPPSTPKINPPQSPNNFQLLSAGRTILPEDDDFDPRGKKKVEFSFPDDI* 110203 +YFL056C MADLFAPAPEPSTELGRLRVLSKSAGIRVSPLILGGMSIGDAWSEILGSMSKERAFELLDAFYEAGGNFIDTANNYQNEQSEAWIGEWMVSRKLRDQIVIATKFTTDYKKYDVGGGKSANYCGNHKRSLHVSVRDSLRKLQTDWIDILYVHWWDYMSSIEEVMDSLHILVQQARSSIWVCLIRLPGLFLRQITTLNLMVKPLLASIKVNGTC* 141118 +YFL057C MARHFGMALAPWDVMGGGRFQSKKAMEERRKNGEGIRSFVGASEQTDAEIKISEALAKVAEEHGTESVTAIAIAYVRSKAKNVFPLVGGRKIEHLKQNIEALSIKLTPEQIKYLESIIPFDVGFPTNFIGDDPAVTKKASLLTAMSAQISFD* 141118 +YFR019W MSSEEPHASISFPDGSHVRSSSTGTSSVNTIDATLSRPNYIKKPSLHIMSTSTTSTTTDLVTNPILSNISVPKISPPTSSSIATATSTSHVTGTASHSNIKANANTSTSVNKKNLPPTTSGRIPSSTIKRYPSRYKPSHSLQLPIKNDSNFKRSSIYASKSTVTAIPIRNNRPISMQNSYARTPDSDHDDVGDEVSSIKSASSSLTASLSKSFLFAFYNNRKKDKTSNNGVLSKEYWMKDESSKECFSCGKTFNTFRRKHHCRICGQIFCSSCTLLIDGDRFGCHAKMRVCYNCYEHADTYEDSSDEENDSTMQLNEPRSRSRSRSSNTNPYSHSHSHLHLISQDNHNGTDLHDPVAATDNPQQQNEVYLLNDDDVQSIMTSGEDSKLFISTPPPPPKMAIPATKQGGSLEISFDSENDRALHYQDDNPGRHHHLDSVPTRYTIRDMDNISHYDTNSNSTLRPHYNTNNSTITINNLNNTTSNNSNYNNTNSNSNINNPAHSLRRSIFHYVSSNSVNKDSNNSSATPASSAQSSSILDPANRIIGNYAHRNYKFKFNYNSKGPSQQNDTANGNNDNNNNNNNNNNNNNNNSASGIADNNNIPSNDNGTTFTLDKKKRNPLTKSKSTSAYLEYPLNEEDSSEDEGSMSIYSVLNDDHKTDNPIRSMRNSTKSFQRAQASLQRMRFRRKSKSKHFPNNSKSSIYRDLNFLTNSTPNLLSVVSDDNLYDDSSPLQDKASSSAASRLTDRKFSNSSGSNNNSNSNSNINTDPWKRIASISGFKLKKEKKRELNEVSLLHMHALLKQLLNDQEISNLQEWITLLDGALRKVLRTILNARDLNTLDFRQTYVKIKRISGGSPQNSEYIDGVVFSKALPSKTMPRHLKNPRILLIMFPLEYQKNNNHFLSIESVFRQEREYLDKLVSRLKSLHPDIIYVGANVSGYALELLNDSGIVVQFNMKPQVIERIAKLTEADIAISVDKLATNIKMGECETFEVKSYIYGNISKTYTFLRGCNPELGGTILLRGDSLENLRKIKQVSEFMVYAIFSLKLESSFFNDNFIQLSTDVYLKRAESKKLQVFEGYFADFLIKFNNRILTVSPTVDFPIPFLLEKARGLEKKLIERINQYESESDLDRQTQLNMLQGLESTITKKHLGNLIKFLHEMEIENLELEFQKRSRQWEVSYSSSQNLLGTGSHQSITVLYSMVSTKTATPCVGPQIVTIDYFWDSDISIGQFIENVVGTARYPCQQGCNGLYLDHYRSYVHGSGKVDVLIEKFQTRLPKLKDIILTWSYCKKCGTSTPILQISEKTWNHSFGKYLEVMFWSYKDSVTGIGKCPHDFTKDHVKYFGYNDLVVRLEYSDLEVHELITPPRKIKWKPHIDIKLKVELYYKILEKINNFYGSVLSRLERIKLDSMTKDKVLSGQAKIIELKSNATEEQKLMLQDLDTFYADSPCDQHLPLNLVIKSLYDKAVNWNSTFAIFAKSYLPSETDISRITAKQLKKLFYDSSRKDSEDKKSLHDEKAKTRKPEKNELPLEGLKDVEKPKIDSKNTTENRDRTNEPQNAVTITTFKDDTPIIPTSGTSHLTVTPSASSVSSSLTPQTEERPPISRSGTGISMTHDKSTRPNIRKMSSDSSLCGLASLANEYSKNNKVSKLATFFDQMHFDALSKEFELERERERLQLNKDKYQAIRLQTSTPIVEIYKNVKDAVDEPLHSRSSGNNLSSANVKTLEAPVGEHSRANNCNPPNLDQNLETELENSISQWGENILNPSGKTTASTHLNSKPVVKETSENPKSIVRESDNSKSEPLPPVITTTTVNKVESTPQPEKSLLMKTLSNFWADRSAYLWKPLVYPTCPSEHIFTDSDVIIREDEPSSLIAFCLSTSDYRNKMMNLNVQQQQQQQTAEAAPAKTGGNSGGTTQTGDPSVNISPSVSTTSHNKGRDSEISSLVTTKEGLLNTPPIEGARDRTPQESQTHSQANLDTLQELEKIMTKKTATHLRYQFEEGLTVMSCKIFFTEHFDVFRKICDCQENFIQSLSRCVKWDSNGGKSGSGFLKTLDDRFIIKELSHAELEAFIKFAPSYFEYMAQAMFHDLPTTLAKVFGFYQIQVKSSISSSKSYKMDVIIMENLFYEKKTTRIFDLKGSMRNRHVEQTGKANEVLLDENMVEYIYESPIHVREYDKKLLRASVWNDTLFLAKMNVMDYSLVIGIDNEGYTLTVGIIDFIRTFTWDKKLESWVKEKGLVGGASVIKQPTVVTPRQYKKRFREAMERYILMVPDPWYWEGN* 110203 +YFR024C-A MGINNPIPRSLKSETNFVKPNQVFGADQVIPPDVLKRAKGLAIITILKAGFLFSGRAGSGVIVARLKDGTWSAPSAIAMAGAGAGGMVGIELTDFVFILNTQDAVKSFSEFGTITLGGNVSVSAGPLGRSAEAAASASAGGVAAVFAYSKSKGLFAGVSVEGSAIIERREANRKFYGDNCTAKMILSGRIRPPPAVDPLFRVLESRAFNYRPSNGGRGSFDDDEDDYYDDDDYYNDIPSSFSSTDASSTRPNTRSTRRRAQSGSRYTFDDDDDDDDYGTGYSRNSRLAPTNSGGSGGKLDDPSGASSYYASHRRSGTAQSRARSSRNRWADDEYDDYDDDYESGYRRGNGRDRTKDREVDDLSNRFSKSRISSASTPQTSQGRFTAPTSPSTSSPKAVALYSFAGEESGDLPFRKGDVITILKKSDSQNDWWTGRVNGREGIFPANYVELV* 080606 +YFR038W MSRCSNAALMTVVEDAVGARVAARTRNMSNGVNYREKEVNDLTADISDSDSDLDSEDNKHGKGDNDTAPIWLQDDVHSDEDIQLDSEDDSDTEAVQAQVVDKLAKDTKSEQKSLDDELSEMDTKTVSLKLKKLNEFVRQSQVYSSIIADTLLHRSNEVANANTKDNSNSDDEEHSSKKRKTKKKSITDFFKKQKKNEDTTTQNGAPDDAAIKQPRLLKNCILKPYQLEGLNWLITLYENGLNGILADEMGLGKTVQSIALLAFIYEMDTKGPFLVTAPLSTLDNWMNEFAKFAPDLPVLKYYGTNGYKERSAKLKNFFKQHGGTGIVITSYEIILRDTDLIMSQNWKFLIVDEGHRLKNINCRLIKELKKINTSNRLLLTGTPLQNNLAELWSLLNFIMPDIFADFEIFNKWFDFDSLNLGSGSNSEALNKLINDELQKNLISNLHTILKPFLLRRLKKVVLANILPPKREYIINCPMTSAQEKFYKAGLNGKLKKTMFKELIKDFFTLNDEYIGHVSNRSIRDFINYKLSGNETSNTDNKINPTLLQMDKLYKKNLQMEISNKKLQNMMMQLRQIIDSTFLFYFPYLHPEDLTLETLLKTSGKLQILQKLIPPLISEGHKVLIYSQFVNMLDLIEDWCDLNSFATFRIDGSVNNETRKDQLEKFNSSKDKHNIFLLSTRAAGLGINLVGADTVVLFDSDWNPQVDLQAMDRCHRIGQESPVIVYRLCCDNTIEHVILTRAANKRNLERMVIQMGKFNNLKKLALNEGFFFEGKQSGC* 040206 +YFR040W MSFWPFGQNLNHSNINKILDEYFHVLHELERINPSVGKAIPAIFNNVQERGTSDSLDSIPEEYSHGDEVKTARGDQKSRFEKDDQQERYEKEEEERSMNSSESSTTSFSSGSTSKTDLDEEDISNATAPMMVTTKNLDNSFIERMLVETELLNELSRQNKTLLDFICFGFFFDKKTNKKVNNMEYLVDQLMECISKIKTATTVDLNNLIDYQEQQQLDDSSQEDVYVESDTEQEEEKEDDNNSNNKKRRKRGSSSFGNDDINNNDDDDDANEDDESAYLTKATIISEIFSLDIWLISESLVKNQSYLNKIWSIINQPNFNSENSPLVPIFLKINQNLLLTRQDQYLNFIRTERSFVDDMLKHVDISLLMDFFLKIISTDKIESPTGIIELVYDQNLISKCLSFLNNKESPADIQACVGDFLKALIAISANAPLDDISIGPNSLTRQLASPESIAKLVDIMINQRGAALNTTVSIVIELIRKNNSDYDQVNLLTTTIKTHPPSNRDPIYLGYLLRKFSNHLSDFFQIILDIENDANIPLHENQLHEKFKPLGFERFKVVELIAELLHCSNMGLMNSKRAERIARRRDKVRSQLSHHLQDALNDLSIEEKEQLKTKHSPTRDTDHDLKNNNGKIDNDNNDNDDESDYGDEIDESFEIPYINMKQTIKLRTDPTVGDLFKIKLYDTRIVSKIMELFLTHPWNNFWHNVIFDIIQQIFNGRMDFSYNSFLVLSLFNLKSSYQFMTDIVISDEKGTDVSRFSPVIRDPNFDFKITTDFILRGYQDSYKFYELRKMNLGYMGHIVLIAEEVVKFSKLYKVELISPDIQVILQTEEWQYYSEEVLNETRMMYSKILGGGSYIDDGNGNIIPQLPDNTTVLTPNGDASNNNEILDSDTGSSNGTSGGGQLINVESLEEQLSLSTESDLHNKLREMLINRAQEDVDNKNTENGVFILGPPEDKNSNSNINNTNHNSNNSNNNDNNDNNDNDNDNTRNYNEDADNDNDYDHE* 110203 +YFR045W MIDHKKLEKNQPVVNAKATFHKVATKSTPVARIEKLLPAVKHMYQTRGPAAFVQGTTATIFRQIANTSIQFTAYTAFKRLLQARNDKASSVITGLATSFTLVAMTQPIDVVKTRMMSQNAKTEYKNTLNCMYRIFVQEGMATFWKGSIFRFMKVGISGGLTFTVYEQVSLLLGFSSRS* 040206 +YFR045W MTYPFEYLKTGLQLQPKGTAFEIILPQIKSYFVGCSALNVAAFGKTILRFVTFDKLCHSLNNNIDNNDNFQRLTGYNLLIAGTLTGIVESLFIIPFENIKTTLIQSAMIDHKKLEKNQPVVNAKATFHKVATKSTPVARIEKLLPAVKHMYQTRGPAAFVQGTTATIFRQIANTSIQFTAYTAFKRLLQARNDKASSVITGLATSFTLVAMTQPIDVVKTRMMSQNAKTEYKNTLNCMYRIFVQEGMATFWKGSIFRFMKVGISGGLTFTVYEQVSLLLGFSSRS* 070406 +YGL033W MAPKKKSNDRAIQAKGSEAEQLIEDYLVSQYKPFSVNDIVQNLHNKVTKTTATKALENLVNEKRIVSKTFGKIIIYSCNEQDTALPSNIDPSQFDFETVLQLRNDLIELERDKSTAKDALDSVTKEPENEDLLTIIENEENELKKIESKLQSLQDDWDPANDEIVKRIMSEDTLLQKEITKRSKICKNLIATIKDSVCPKNMNEFLVCILNIFRDLFF* 141118 +YGL041C MPDFSNSNLNSFIACLRSLSIKILIICHGFIVFSSLAEVPSRLTNFFSIMILLTFSNFSQNIRPRIYLIHEFLHLYVCIYFVIRLSVVPRLSVKSSRRNPGKPP* 110203 +YGL041W-A MFWEKLEKVSNIMIEKKLVNLDGTSANEENTMKPWQMIKILMDRDLRHAMKEFKLELEKSGIQLGPEQLAPLMTVLGLEKKK* 110203 +YGL056C MPQNTRHTSIVEMLSTPPQLPNSTDLNSLSEQTDKNTEANKSDTESLHKSISKSSSSSSLSTLDNTEYSNNNGNSLSTLNSQNLLSVHRQEWQHTPLSNLVEQNKLIFIRGSISVEEAFNTLVKHQLTSLPVENFPGDMNCLTFDYNDLNAYLLLVLNRIKVSNDKITSDCQNGKSVPVAEIVKLTPKNPFYKLPETENLSTVIGILGSGVHRVAITNVEMTQIKGILSQRRLIKYLWENARSFPNLKPLLDSSLEELNIGVLNAARDKPTFKQSRVISIQGDEHLIMALHKMYVERISSIAVVDPQGNLIGNISVTDVKHVTRTSQYPLLHNTCRHFVSVILNLRGLETGKDSFPIFHVYPTSSLARTFAKLVATKSHRLWIVQPNDNQPTASSEKSSSPSPSTPPVTTLPSLASSYHSNTQSSRMANSPVLKSSDTSNNKINVNINLSGPSPSQPQSPSATMPPPQSPSNCPASPTPAHFEKEYRTGKLIGVVSLTDILSVLARKQTHHKEIDPQMARKQRGHIG* 110203 +YGL059W MSKYQINCIRYRHFLRTSNISQIPDFTKYCIGPVNEELAPYIMETMKAYPSNSEYINPQHYYHNRTVLVENYLKRSPNPVSLTQLAQYYDDSTKLTRTKIINSGKFVKEELVIRIAHKLNQLQQLPFNVVNNFHFVQVYESYYNIFESFRKYPTIRTLEDASQFADFIKNMLEGFNTLNLPHLIMGALECTILDLYPREKMDQLLSDLLRARISRRLIVEEHVVYTANYTSGKEENTLVLGDIFQECSAKKYLLEASEESQKFIQDMYFKDIPMPEFIIEGDTQLSFYFLPTHLKYLLGEILRNTYEATMKHYIRKGLEKPEPIIVTVVSNDESYLFRISDKAGGVLHDDENLWSFGKSKERAQESLNNFHKLPGLQTVSIYDEVHSHTKYNSKLKSLQSITLKPYMHTSLEPMSYPSIINGHIKYETPLIELLKRSFRYKLGIGLAMCKVYAEYWNGDLSLHSMPGYGTDVVLKLGNLMKHTKKLQLDKV* 110203 +YGL063W MLLGYCGSGYYGMQYNPPHKTIEGEILTKLFDVGAISEENSLAPKKNSFMAAARTDKGVHAMLNLLSLKITLREDTVAKLNAALPPEIRVWGIQPVNKKFNARSACDSRWYQYLIPEFILIGPPRSSLLHRNVGGSYREDGSQEVWDTFLEQTRGRFSGDELCRLQDTAQKLSESDPLVQDYVGLLSGTLSGYCLSPSKLDAFEAAMQEYVGTHNFHNFTTGKLWGDPSAQRHIKKVVVSQASPGWICVRIHGQSFMLHQIRRMVALAVLAARCQLPPNIVRNYFNAGPRKYIPRAPAQGLLLEGPVFDGYNTKLRNLLYCEIRPDDITLERMCRFRERQICTAIAHEETQRHVFCHFVRQMNRLATPLI* 110203 +YGL109W MAAQNPLADIQVYKRYKAKRRMEGQKKNSCTIAYIDSLQYYCRRSLSHKSCFPFPSQHAFSRPLPLSESYETWHALELAFCLTRPYCTFHSSLEISSQQLTLRPPLG* 110203 +YGL124C MNLNESYLDAEIPKGQLKHSKSGNFEGIPIVATTSEPTTSVNLDETFFKKAPIAMPICDDHSVSKSTSVNSLNTTSLASRRSPLQTKKLQAKNNLLSADLAKSNDDTTRALNCPKKDFGPYLDSENDIRSRLAESIYSMETSIRGSELQRRPYVSNEIPNVFKFSKFNSNCKLNESQTLCDKNFFIFTSAGKPIYCMHGKDEQIMSYTGLVNTVISYFQVNGPSELKTISTLTSGKRLTFLDKSPILLMAQSERGESSNELLNQLDFLYSYILSSLSERQLLRLFSKRENFDLRNYLESTDFENLDEICSLICNRMFPDLLLNSLQCLPFNHSSRLKLQNVVLQQLEKRQDIPRGTLLYGLIIAPQNKLCCVLRPRGHTLHTTDLHLLFCLISHQFQNLDETQELWVPICFPKFNSSGFLYCYIKFLPNDTHSNEKSALVLISAQKDAFFSLKSFSDELIIKLEEEKLLKKINTSKGFKLSDIPAPMVHHFIYKSKQNVQYVMPHFEVNSNIALDSSQGLEYELKLKTYYQQLHGTVVRDNGNLLSRSMLNFVRWSSKDNEDLAMDETQMDFSELDEYIIGNSSFKQESVNMVGMAWVTPTFELYLIGNNGIVDKRVLFKSARKVANWCQKHESRLFISDGAVF* 110203 +YGL129C MYKNIYICILYIYINFYTSRENINKRTSTSHVVIRIRIMLRMSTSRFIGQRLFTTARSLQAAKPAPKGKTQGFSKKSSSVSSYSSAKRVTPGSLYKNWTNTTHTAQLQQTAVPLALPIFNFDDISKTLNKVVSYSNKQYKSLHHLGSFKKSQFNELFQKPVCLVREDATNSFLKKLVSHPVKKFIITGEPGVGKTVLLSQAHAYAVDSKQIIINISYPELFLNGRNDFSYDDDLKLFIQPMYLKKLIRKILKANDPALLKSIELSKDYKFSNANPKNASVKPFVTLNKTKNTVLDLLSVMTHPHNRGKLMKAIIDELSVQSKVPIMFTVDNFSKVLTTAYSAYRNTENKQIYSLDLQMGKLMMDIISGETKFANGESSTILAISGVDRTNKTLPVALGKIPVDPYVTRYHYEPKFVELLQKGNVTEFEVPKLNKQEVNELIDYYKQSNVLLDKDITGKKWENLIDEKYFLSGNGNPRELLKSLVLSHR* 110203 +YGL196W MEEVKAVNSAAKVLCSVDPQFDPSKLTLSVGATPTSNSLKLDNKSTLVKFITTQLVSTLEIHCGNYCMYDLQQVATGCVQDHELSGFVLGTVLSSYPSRGELLSNTGVMCLTREASSIKGFGICADLEHVLKSESFSREWYVARVSQEHGILRPIRNWNETTPLN* 040723 +YGL197W MPLLQPSTCFCYPLKLPPLPLTSDSNEFDECARKRLTLDYRTGSAVTLTRSNIFVHGGLTIPLNLPVVNSMQLQKELILFFAKEKNNGSSFRNLNEWISKETFFLDLMSRTWYRVKTSFDQRTEELLKAESSSAKADNDTNEIRTDIKKGKSLESPLKERLFHSLCYLDGCLYIFGGLTVSPQSGYELIATNELWKLDLNTKKWSLLSDDPQIARRFNHTMHVKNENNDNRDTKLIIVGGLNNMDQPVKKIDIYNISQNCWHPKTIPKQPMEITTNVNGIPLALSKDQNFSILVENNEANVPALAFYMRSDQIDEYLGKDSSKIKENSPIVALPLLSESQGIRMPSNPALPKKLLNVPYELLAPTGDYFGFNIIIGGFHPNYQSSNFHCFIYDINSGKWSRVRTACPDCDINKHRFWRVFVWKSHHQTILLGTKTDDYYSPSVQRFDHLSTFGLPLVNIFNKTIQLPHHKISASSLPIPIENFAKHKDTPLKKVSFTSSATSQFENYIRYIAPPLEMSSIQSVFPPYAMVLGKDALEIYGKPLSDFEFITSEGDSIGIPCYLLRKRWGRYFDMLLSQSYTKVCADYETTDTQSTLIKFSPHSSRNSSKAVRQEGRLSSSGSLDNYFEKNFPIFARTSVSEAQNTQPQVANADAKAPNTPSTSDEPSSSSSSDLYSTPHYQRNNDEEDDEDPVSPKPVSKSNSIYRPIRKTESSSTTSSSNGMIFRVPFKEKAAVTSNTEALLESNLSLQELSRRRSSLMSIPSGELLRSSISEAEHQRRASHPLTSSPLFEDSGTPCGKQLQQLQQHTIQNPHNHLSPRRFSRSARSSISYVSSSSDRRGNSISSRSTSDSFGTPPVLGVLNVPLPPQTREPNEPPPPCPAMSTGSNTRRSNTLTDYMHSNKASPFSSRRSSHIGRRSSTPETENAFSATPRASLDGQMLGKSLKEGSTSQYTQPRMNSFPKANETIQTPTSSNNEWSRQSVTSNTDSFDSLQSNFALELEPLLTPRSLYMPWPTSTVRAFAEFFYTGQVNSKWLLAPVALDLLVMAKIYEIPLLYKLILEVLYSILAKKEESLSLICTSLMETFRTKTLNSYKGDEEKTNTYLTSNDNYQELLKLKVSLENIDNGYYDPDLLRKQSRAQSSSTQESSGSANGEKTATGAGSLETSSTNVPTVFAGGPRDSHNSVGSIGFPNSMNIQGSRRSTSGFSPRVKMKSSLSKEIDPKTFYEEYEPKEGKSFDDNDDQQTNIGSFNLHLFDMNYGSISSSSTNSISSSDLEEKEEQEQLQDLLEIEREDSAEILDARFRNKEDDKVTKDISNDKKRNYLPHEKNNLKAKEGKETRDVREEEEEFDFGLGMLSLNKIKREAKHVDKVDDSVDPLFKSSAFPQSPIRAYGSTTRTSSASGKPFRDNRSFNAFSVLTLENMASANALPPVDYVIKSIYRTTVLVNDIRLMVRCMDCIELSKNLRALKKKTMEDISKLKGISKPSP* 110203 +YGL198W MSYGREDTTIEPDFIEPDAPLAASGGVADNIGGTMQNSGSRGTLDETVLQTLKRDVVEINSRLKQVVYPHFPSFFSPSDDGIGAADNDISANCDLWAPLAFIILYSLFVSHARSLFSSLFVSSWFILLVMALHLRLTKPHQRVSLISYISISGYCLFPQVLNALVSQILLPLAYHIGKQNRWIVRVLSLVKLVVMALCLMWSVAAVSWVTKSKTIIEIYLWHSVFFGMAGCQLFYNTSYICIKPNIHGHRIAYLASHGRKF* 040206 +YGL201C MSSPFPADTPSSNRPSNSSPPPSSIGAGFGSSSGLDSQIGSRLHFPSSSQPHVSNSQTGPFVNDSTQFSSQRLQTDGSATNDMEGNEPARSFKSRALNHVKKVDDVTGEKVREAFEQFLEDFSVQSTDTGEVEKVYRAQIEFMKIYDLNTIYIDYQHLSMRENGALAMAISEQYYRFLAFLQKGLRRVVRKYAPELLNTSDSLKRSEGDEGQADEDEQQDDDMNGSSLPRDSGSSAAPGNGTSAMATRSITTSTSPEQTERVFQISFFNLPTVHRIRDIRSEKIGSLLSISGTVTRTSEVRPELYKASFTCDMCRAIVDNVEQSFKYTEPTFCPNPSCENRAFWTLNVTRSRFLDWQKVRIQENANEIPTGSMPRTLDVILRGDSVERAKPGDRCKFTGVEIVVPDVTQLGLPGVKPSSTLDTRGISKTTEGLNSGVTGLRSLGVRDLTYKISFLACHVISIGSNIGASSPDANSNNRETELQMAANLQANNVYQDNERDQEVFLNSLSSDEINELKEMVKDEHIYDKLVRSIAPAVFGHEAVKKGILLQMLGGVHKSTVEGIKLRGDINICVVGDPSTSKSQFLKYVVGFAPRSVYTSGKASSAAGLTAAVVRDEEGGDYTIEAGALMLADNGICCIDEFDKMDISDQVAIHEAMEQQTISIAKAGIHATLNARTSILAAANPVGGRYNRKLSLRGNLNMTAPIMSRFDLFFVILDDCNEKIDTELASHIVDLHMKRDEAIEPPFSAEQLRRYIKYARTFKPILTKEARSYLVEKYKELRKDDAQGFSRSSYRITVRQLESMIRLSEAIARANCVDEITPSFIAEAYDLLRQSIIRVDVDDVEMDEEFDNIESQSHAASGNNDDNDDGTGSGVITSEPPADIEEGQSEATARPGTSEKKKTTVTYDKYVSMMNMIVRKIAEVDREGAEELTAVDIVDWYLLQKENDLGSLAEYWEERRLAFKVIKRLVKDRILMEIHGTRHNLRDLENEENENNKTVYVIHPNCEVLDQLEPQDSS* 040206 +YGL210W-A MAETVLMNILRGDVARLEKSTAIITQSSGSPIKRSKPFKYSYQKEIVLYAHYMKLDYFSLSVPMPQKRLGALRENT* 040723 +YGL211W MSFTAPSDPVNKPTKVKVSQLCELCHSRKALIRRPKNLSKLCKQCFCLVFETEIHNTIVANNLFQRGEKVAVGASGGKDSTVLAHMLKLLNDRYDYGIEIVLLSIDEGIIGYRDDSLATVKRNQQQYGLPLEIFSFKDLYDWTMDEIVSVAGIRNSCTYCGVFRRQSLDRGAAKWAYLTLSPATMQTIWQRQY* 040723 +YGL214W MDDVRLHAIYQDITRDYLPPASLNHLMLLSKQTQHKLSFKSAPIPDLQPFFKNFTSKTPGSAKESPCSSTAKISSSISISSQCIFNVVILSFVFTSQNLNLPSHPALHNVSPESLNDRLMTQLECANSPRLACELWVGTDKEPILSPNSVSYRVMQPNEFES* 110203 +YGL236C MLRVTTLASSCTSFPLQVLRRRLTISSLTSFQPTTKTQVVVIGAGHAGCEAAAASSRTGAHTTLITPSLTDIGKCSCNPSIGGVGKGILVKEIDALDGLMGKVTDLAGVQFKMLNRSKGPAVWGPRAQIDRELYKKYMQRELSDKKAHPNLSLLQNKVADLILYDPGCGHKVIKGVVLDDGTQVGADQVIITTGTFLSAEIHIGDKRIAAGRIGEQPTYGISNTLQNEVGFQLGRLKTGTPARLAKESIDFSALEVQKGDALPVPMSFLNETVSVEPTKQLDCFGTHTTPQMHDFLRNNLHQSIHIQDTTIKGPRYCPSIEAKILRFPDRSSHKIWLEPEGFNSDVIYPNGISNSMPEDVQLQMMRLIPGMANVEILQPAYGVEYDYVDPRQLKPSLETKLVDGLFLAGQINGTTGYEEAAAQGIIAGINAGLLSRQEREQLVLKRSEAYIGVLIDDLINNGVIEPYRMFTSRSEFRISVRADNADFRLTPIGAQLGIISPVRLSQYSRDKHLYDETIRALQNFKLSSQKWSSLLQANIAPQAENRSAWEIFRFKDMDLHKLYECIPDLPINLLDIPMHVVTKINIQGKYEPYIVKQNQFVKAFQADENMLLPQDYDYRQLPTLSTECKLLLNRVQPLTIGQARRIQGITAAALFELYRVARSQANQSCKYPLIVSLYM* 040716 +YGL256W MLGITYAVNSTKQLIFCCLKYLTLLGYILLSNRKKGQRTNMYKRVISISGLLKTGVKRFSSVYCKTTINNKFTFATTNSQIRKMSSVTGFYIPPISFFGEGALEETADYIKNKDYKKALIVTDPGIAAIGLSGRVQKMLEERDLNVAIYDKTQPNPNIANVTAGLKVLKEQNSEIVVSIGGGSAHDNAKAIALLATNGGEIGDYEGVNQSKKAALPLFAINTTAGTASEMTRFTIISNEEKKIKMAIIDNNVTPAVAVNDPSTMFGLPPALTAATGLDALTHCIEAYVSTASNPITDACALKGIDLINESLVAAYKDGKDKKARTDMCYAEYLAGMAFNNASLGYVHALAHQLGGFYHLPHGVCNAVLLPHVQEANMQCPKAKKRLGEIALHFGASQEDPEETIKALHVLNRTMNIPRNLKELGVKTEDFEILAEHAMHDACHLTNPVQFTKEQVVAIIKKAYEY* 080606 +YGR006W MDLDLASILKGEISKKKKELANSKGVQPPCTEKFQPHESANIDETPRQVEQESTDEENLSDNQSDDIRTTISKLENRPERIQEAIAQDKTISVIIDPSQIGSTEGKPLLSMKCNLYIHEILSRWKASLEAYHPELFLDTKKALFPLLLQLRRNQLAPDLLISLATVLYHLQQPKEINLAVQSYMKLSIGNVAWPIGVTSVAFMLVVHIRKFKEAGMLLT* 040206 +YGR034W MLNYCKTMYVSSDRRKARKAYFTAPSSERRVLLSAPLSKELRAQYGIKALPIRRDDEVLVVRGSKKGQEGKISSVYRLKFAVQVDKVTKEKVNGASVPINLHPSKLVITKLHLDKDRKALIQRKGGKLE* 061006 +YGR058W MCAKKLKYAAGDDFVRYATPKEAMEETRREFEKEKQRQQQIKVTQAQTPNTRVHSAPIPLQTQYNKNRAENGHHSYGSPQSYSPRHTKTPVDPRYNVIAQKPAGRPIPPAPTHYNNLNTSAQRIASSPPPLIHNQAVPAQLLKKVAPASFDSREDVRDMQVATQLFHNHDVKGKNRLTAEELQNLLQNDDNSHFCISSVDALINLFGASRFGTVNQAEFIALYKRVKSWRKVYVDNDINGSLTISVSEFHNSLQELGYLIPFEVSEKTFDQYAEFINRNGTGKELKFDKFVEALVWLMRLTKLFRKFDTNQEGIATIQYKDFIYATLYLGRFLPH* 110203 +YGR067C MAAGQKKYICSFCLKPFSRSEHKIRHERSHAGVKPFQCQVCKHSFVRRDLLQRHIRTVHRTFLLSSYASMTGDKADIPVSLGVGDVDSTSPRDIKMETLVNSMIKVNSGLINIHYHSSNVEKMDKQQRCVIGKESSSLKKGKSRFKQVKSRLESSISVKILQEYSLDFISSRDILTFFRMGVSHLVENKIFQNFFPDLFSSLQNDELVESFWINKPFGLIIACLGMSISLNQDSQKLWFICCTNLYASSSKHDNDFDTEDILSQTEQHDVFALILFYSLLVMLENNIPVSNSIKKFDVFSMLQDILKPFTVASSSYHYLNSKENAWFIFDLWVNILRDSNNFNNDSLLIFGWFVNQEFISSNPLKDFIYKGPSMSTTDLTLKHINILADSAYVYFIIKKTYPQELPSDFRVHDLLVYLNECFVMQQPIKPETSANPSLFANVMNARITDCKSKSNWLLWETIWFEFINNLTLRNGTTRNIWFIDNFPQVSTSCLLHHSSSFVDETLITTNLSIISMLLNLKSFTLASLNPRNIQLITDIVSFQLKLFSSELIASSDVSPSQVSQLLVNPNVHLMLYFWFDTIYVQRQSYLSSTEKEEFEKVEVFVNDYIITHQKNLVTDLHSILFDFWSDSFIAYHILLHAIVSSLRDNILYPYLIYSPHLNDQTKALLTDISNWSCFALQQPFRKTSRGSLSGASDMKSFSVASCLPLSPNFLKRDSNCNKILLPPLDIKAIEPISTSNYTYVNSAPKQQEKEQPLLRATGNNINLVQTIVVPPQVNMESQEFSASSTDNKQS* 110203 +YGR070W MNSNELDLRNKYFYEIFGKKRKSDTSTPTQLFSGSKVQTNINEISITNDEDEDSTEDENKASLKDYTLGHDTGARYRIAPDCSSHQLKASPVLHISTNLNSSPQSFTGDQISPTNKKISINDSTRQDKGNSCTTTSSPSQKRSNVLLPHVRKHSSPSLLSFSKNSGSHMGDPNQLSTPPTPKSAGHTMELHSSFNGKHSSSSTSSLFALESLKTQNRRSSNSSNHSSQYRRHTNQHQRHHSRSKSSPVSLTEISMIKGTPLVYPALLSLIAIKFKQTIKLSTHKKMGLLYRDSFTGKQAIDTLCLIIGSLDRNLGMLIGKSLEAQKLFHDVLYDHGVRDSVLEIYELSSESIFMAHQSQSSTSIANTFSSSSSSVNSLRTKTEIYGVFVPLTHCYSSTCSLEKLCYSISCPNRLQQQANLHLKLGGGLKRNISLALDKEDDERISWTNSVPKSVWESLSKQQIKRQEAIYELFTTEKKFVKSLEIIRDTFMKKLLETNIIPSDVRINFVKHVFAHINEIYSVNREFLKALAQRQSLSPICPGIADIFLQYLPFFDPFLSYIASRPYAKYLIETQRSVNPNFARFDDEVSNSSLRHGIDSFLSQGVSRPGRYSLLVREIIHFSDPVTDKDDLQMLMKVQDLLKDLMKRIDRASGAAQDRYDVKVLKQKILFKNEYVNLGLNNEKRKIKHEGLLSRKDVNKTDASFSGDIQFYLLDNMLLFLKSKAVNKWHQHTVFQRPIPLPLLFICPAEDMPPIKRYVTENPNCSAGVLLPQYQTSNPKNAIVFAYYGTKQQYQVTLYAPQPAGLQTLIEKVKQEQKRLLDETKHITFKQMVGQFFHSYINTNRVNDVLICHAGKILLVATNMGLFVLNYATSINQKPVHLLHKISISQISVLEEYKVMILLIDKKLYGCPLDVIDDAENADFLFRKNSKVLFKYVAMFKDGFCNGKRIIMIAHHFLHAAQLLIVNPLIFDFNSGNFKKNLKAGLVDFSVDSEPLSFSFLENKICIGCKKNIKILNVPEVCDKNGFKMRELLNLHDNKVLANMYKETFKVVSMFPIKNSTFACFPELCFFLNKQGKREETKGCFHWEGEPEQFACSYPYIVAINSNFIEIRHIENGELVRCVLGNKIRMLKSYAKKILYCYEDPQGFEIIELLNF* 110203 +YGR088W MPIRSISSASQMNVFGKKEEKQEKVYSLQNGFPYSHHPYASQYSRPDGPILLQDFHLLENIASFDRERVPERVVHAKGGGCRLEFELTDSLSDITYAAPYQNVGYKCPGLVRFSTVGGESGTPDTARDPRGVSFKFYTEWGNHDWVFNNTPVFFLRDAIKFPVFIHSQKRDPQSHLNQFQDTTIYWDYLTLNPESIHQITYMFGDRGTPASWASMNAYSGHSFIMVNKEGKDTYVQFHVLSDTGFETLTGDKAAELSGSHPDYNQAKLFTQLQNGEKPKFNCYVQTMTPEQATKFRYSVNDLTKIWPHKEFPLRKFGTITLTENVDNYFQEIEQVAFSPTNTCIPGIKPSNDSVLQARLFSYPDTQRHRLGANYQQLPVNRPRNLGCPYSKGDSQYTAEQCPFKAVNFQRDGPMSYYNFGPEPNYISSLPNQTLKFKNEDNDEVSDKFKGIVLDEVTEVSVRKQEQDQIRNEHIVDAKINQYYYVYGISPLDFEQPRALYEKVYNDEQKKLFVHNVVCHACKIKDPKVKKRVTQYFGLLNEDLGKVIAECLGVPWEPVDLEGYAKTWSIASAN* 060126 +YGR145W MVLKSTSANDVSVYQVSGTNVSRSLPDWIAKKRKRQLKNDLEYQNRVELIQDFEFSEASNKIKVSRDGQYCMATGTYKPQIHVYDFANLSLKFDRHTDAENVDFTILSDDWTKSVHLQNDRSIQFQNKGGLHYTTRIPKFGRSLVYNKVNCDLYVGASGNELYRLNLEKGRFLNPFKLDTEGVNHVSINEVNGLLAAGTETNVVEFWDPRSRSRVSKLYLENNIDNRPFQVTTTSFRNDGLTFACGTSNGYSYIYDLRTSEPSIIKDQGYGFDIKKIIWLDNVGTENKIVTCDKRIAKIWDRLDGKAYASMEPSVDINDIEHVPGTGMFFTANESIPMHTYYIPSLGPSPRWCSFLDSITEELEEKPSDTVYSNYRFITRDDVKKLNLTHLVGSRVLRAYMHGFFINTELYDKVSLIANPDAYKDEREREIRRRIEKERESRIRSSGAVQKPKIKVNKTLVDKLSQKRGDKVAGKVLTDDRFKEMFEDEEFQVDEDDYDFKQLNPVKSIKETEEGAAKRIRALTAAEESDEERIAMKDGRGHYDYEDEESDEEESDDETNQKSNKEELSEKDLRKMEKQKALIERRKKEKEQSERFMNEMKAGTSTSTQRDESAHVTFGEQVGELLEVENGKKSNESILRRNQRGEAELTFIPQRKSKKDGNYKSRRHDNSSDEEGIEENGNKKDNGRSKPRFENRRRASKNAFRGM* 110203 +YGR153W MGKACLNKEVGTYECEGERDTYSFFTSLSDIQDSSSNEEQCGVGSILSEDSFTFEGSNVSIRLFSLDLNALNENENGSKNPVKFTIPPKIEQRKEARQREKRLRRVAVLPENSRNYLVESSMDSSREYSQPFFDWRHEMVEHGEESVKPCGCHKSRKDKCFKELEMENIEKGDIKKSLFYRDIIEWCRDYEVNKTREVCVPSIHEFYLHGNGSDNLF* 110203 +YGR221C MFSHYRYKENSCQKREAIPDKSRVSLTFLQKRTDSSNVTVAVAVAVPIGAIIIVLSVVLIVVYRRCKKNLLCRILTQILRAIYTIYRRWITSMNSANSDSNATEKRFIYGGYDDFLQPSIENSQSFKDYVRRINEHAPSAYNIASLASQNNSKLSVPSKHIDLSNKISFESLENSELIVSPQHSNTGQDCDQRCDSTSNPDVNEKSSHNNDNRLKSNYTSRSGLEPQCSREEEENIDRIRSIYNIYFEKSNSTIRSSVTSSIRRDSKLNIATRKSVNMSSQDNPNDTTLIEQSHFGSTTVQEIDSSSSANEEYEDATDYLQVPAPQENKNIASSVYSEVATREKVIPESSLSLTFPPPNGLSTRITSSIYSDTVAKDHIHSAKAPVRALSEGSGQSNLTSAQQYSTYFIDHCNQSNDDNYYYNYPLPLEHPQNYENIGDLPTPTQFIYSTSSHSLTSFKGRPKPPKTLKHVPTARLNGTALNPMDHPEMFYSSPTKIPSTSLTKQFCTPLPYQLRQSVVMTNPSELSMKPRYKPAGSLRNLIKAQYLPGNSSTTTSSSLSQPPSTLSNAINFRVSGLLDDTDILQPPSVGEILPFKASTEDLRKQLGTSHNYEITPYENVHV* 110203 +YGR225W MATPHLYHRYNSKSSNKNINSSGNSTEVDRFIPKSVSRNAYKSIPMLNGFDISYSELCEKSPSPERLSSPEFFNELRNTGHYESISTTNEFSMSSISSSSESQVTRSGSARASRNDYSKLTKEQKDHRKNIAHSLGFQLPDRVFTFETTSAEILEKNKAIKNCFGPGSCAEIRSTFDFSTLSPDVARYYIANSNARSASPQRQIQRPAKRVKSHIPYRVLDAPCLRNDFYSNLISWSRTTNNVLVGLGCSVYIWSEKEGAVSILDHQYLSEKRDLVTCVSFCPYNTYFIVGTKFGRILLYDQKEFFHSSNTNEKEPVFVFQTESFKGICCLEWFKPGEICKFYVGEENGNVSLFEIKSLHFPIKNWSKRQKLEDENLIGLKLHSTYQAQAQQVCGISLNEHANLLAVGGNDNSCSLWDISDLDKPIKKFVLPHKAAVKAIAFCPWSKSLLATGGGSKDRCIKFWHTSTGTLLDEICTSGQVTSLIWSLRHKQIVATFGFGDTKNPVLITLYSYPKLSKLLEVRSPNPLRVLSAVISPSSMAICVATNDETIRFMNCGTIRRK* 051202 +YGR226C MCCFDTLHIFYNIRSINPTLLNFINYFLLIVPQFINLIVSSLVATQIAMELGEITALSTRKGLGDLTSSSFDNFGYEYSVINTGFLVSPNPKVATICLCLNDHIKDVTCPEVQISSNNVPVDVCQNLIHLSLLPPPVANKDFDQGQKAMAFTAALCGRTNFLIGLSKSEISHKLQELSLPPTASRFACSFREIPVENIC* 051202 +YGR227W MDAKKNTGEANNDVLEEEAAIQLIAPGIARNLTQEVITGIFCNVVIYPLLLIYFVLTFRYMTTNIVPYEFIDEKFHVGQTLTYLKGKWTQWDPKITTPPGIYILGLINYYCIKPIFKSWSTLTILRLVNLLGGIIVFPILVLRPIFLFNALGFWPVSLMSFPLMTTYYYLFYTDVWSTILILQSLSCVLTLPFGPVKSIWLSAFFAGVSCLFRQTNIIWTGFIMILAVERPAILQKQFNTHTFNNYLKLFIHAIDDFSNLVLPYMKNFVLFFIYLIWNRSITLGDKSSHSAGLHIVQIFYCFTFITVFSLPIWISRNFMKLYKLRIKRKPVQTFFEFIGIMLIIRYFTKVHPFLLADNRHYTFYLFRRLIGNKSRLIKYFFMTPIYHFSTFAYLEVMRPNQLTFHPITPLPIKEPVHLPIQLTHVSWTALITCTMVTIVPSPLFEPRYYILPYFFWRIFITCSCEPLIKDLKPAKEGENPITISSTKRLFMEFLWFMLFNVVTLVIFSKVSFPWTTEPYLQRIIW* 110203 +YGR231C MNRSPGEFQRYAKAFQKQLSKVQQTGGRGQVPSPRGAFAGLGGLLLLGGGALFINNALFNVDGGHRAIVYSRIHGVSSRIFNEGTHFIFPWLDTPIIYDVRAKPRNVASLTGTKDLQMVNITCRVLSRPDVVQLPTIYRTLGQDYDERVLPSIVNEVLKAVVAQFNASQLITQREKVSRLIRENLVRRASKFNILLDDVSITYMTFSPEFTNAVEAKQIAQQDAQRAAFVVDKARQEKQGMVVRAQGEAKSAELIGEAIKKSRDYVELKRLDTARDIAKILASSPNRVILDNEALLLNTVVDARIDGRGQINSEG* 040716 +YGR236C MKLDSGIYSEAQRVVRTPKFRYIMLGLVGAAVVPTAYMRRGYTVPAHSLDNINGVDTTKASVMGTEQRAAMTKGKSLQEMMDDDEVTYLMFLFNHVREFVLGSLHLCSLHFVFAFNHSTTNGEGDCDFT* 051123 +YGR271C-A MDANTLNVSFEEILKGKKLDEDSIGLTLSPDKDHEDGSQVSPTQDRKELDQVVGEDEKDDFFE* 071212 +YGR271W MSTEYSADSSKSFMIAMQSMIDTSQTFNLDRSKISLPDFDDELKKVQKDEPNQRTELTVLSQDRNDWDDIFEEFKDISFAQLQSIIDSYKTKNAVAVYKKIGKLINEAETTLSSNVLLETVLQMVYKHQKQELEKELLDFLGTGNIDLVSLLLQHRRMIVATPIETTILLIKNAVNSTPEFLTQQDIRNQVLESAEDAKNRKLNPATKIIKYPHVFRKYEAGSTTAMAFAGQKFTLPVGTTRMSYNTHEEIIIPAADQASNKNYLYTKLLKISDLDHFCKTVFPYETLNQIQSLVYPVAYKTNENMLICAPTGAGKTDIALLTIINTIKQFSVVNGENEIDIQYDDFKVIYVAPLKALAAEIVDKFSKKLAPFNIQVRELTGDMQLTKAEILATQVIVTTPEKWDVVTRKANGDNDLVSKVKLLIIDEVHLLHEDRGPVIETLVARTLRQVESSQSMIRIIGLSATLPNFMDVADFLGVNRQIGMFYFDQSFRPKPLEQQLLGCRGKAGSRQSKENIDKVAYDKLSEMIQRGYQVMVFVHSRKETVKSARNFIKLAESNHEVDLFAPDPIEKDKYSRSLVKNRDKDMKEIFQFGFGIHHAGMARSDRNLTEKMFKDGAIKVLCCTATLAWGVNLPADCVIIKGTQVYDSKKGGFIDLGISDVIQIFGRGGRPGFGSANGTGILCTSNDRLDHYVSLITQQHPIESRFGSKLVDNLNAEISLGSVTNVDEAIEWLGYTYMFVRMRKNPFTYGIDWEEIANDPQLYERRRKMIVVAARRLHALQMIVFDEVSMHFIAKDLGRVSSDFYLLNESVEIFNQMCDPRATEADVLSMISMSSEFDGIKFREEESKELKRLSDESVECQIGSQLDTPQGKANVLLQAYISQTRIFDSALSSDSNYVAQNSVRICRALFLIGVNRRWGKFSNVMLNICKSIEKRLWAFDHPLCQFDLPENIIRRIRDTKPSMEHLLELEADELGELVHNKKAGSRLYKILSRFPKINIEAEIFPITTNVMRIHIALGPDFVWDSRIHGDAQFFWVFVEESDKSQILHFEKFILNRRQLNNQHEMDFMIPLSDPLPPQVVVKVVSDTWIGCESTHAISFQHLIRPFNETLQTKLLKLRPLPTSALQNPLIESIYPFKYFNPMQTMTFYTLYNTNENAFVGSPTGSGKTIVAELAIWHAFKTFPGKKIVYIAPMKALVRERVDDWRKKITPVTGDKVVELTGDSLPDPKDVHDATIVITTPEKFDGISRNWQTRKFVQDVSLIIMDEIHLLASDRGPILEMIVSRMNYISSQTKQPVRLLGMSTAVSNAYDMAGWLGVKDHGLYNFPSSVRPVPLKMYIDGFPDNLAFCPLMKTMNKPVFMAIKQHSPDKPALIFVASRRQTRLTALDLIHLCGMEDNPRRFLNIDDEEELQYYLSQVTDDTLKLSLQFGIGLHHAGLVQKDRSISHQLFQKNKIQILIATSTLAWGVNLPAHLVIIKGTQFFDAKIEGYRDMDLTDILQMMGRAGRPAYDTTGTAIVYTKESKKMFYKHFLNVGFPVESSLHKVLDDHLGAEITSGSITNKQEALDFLSWTFLFRRAHHNPTYYGIEDDTSTAGVSEHLSSLIDSTLENLRESQCVLLHGDDIVATPFLSISSYYYISHLTIRQLLKQIHDHATFQEVLRWLSLAVEYNELPVRGGEIIMNEEMSQQSRYSVESTFTDEFELPMWDPHVKTFLLLQAHLSRVDLPIADYIQDTVSVLDQSLRILQAYIDVASELGYFHTVLTMIKMMQCIKQGYWYEDDPVSVLPGLQLRRIKDYTFSEQGFIEMTPQQKKKKLLTLEEIGRFGYKKLLNVFDQLTFGMTESEDTKKRFVSVCQRLPVLEGMKFEEQENNEVLTFYSKHLSSKHNNGFEVYCDKFPKIQKELWFLIGHKGDELLMIKRCQPKQMNKEVIIHCDLFIPEEIRGEELQFSLINDALGLRYDMVHKLIS* 110203 +YGR272C MAKLQRKRSKALGSSLEMSQIMDAGTNKIKRRIRDLERLLKKKKDILPSTVIIEKERNLQALRLELQNNELKNKIKANAKKYHMVRFFEKKKALRKYNRLLKKIKESGADDKDLQQKLRATKIELCYVINFPKTEKYIALYPNDTPSTDPKA* 071212 +YHL006C MQFEERLQQLVESDWSLDQSSPNVLVIVLGDTARKYVELGGLKEHVTTNTVAGHVASRERVSVVFLGRVKYLYMYLTRMQAQANGPQYSNVLVYGLWDLTATQDGPQQLRYLALCYGSASVCHLKLNSIQNRLLVACLPGYCDSGTILSDSCIVLHAIS* 040206 +YHL026C MYHSRVDLITLWAFPHTISGDCALSLFIQVGLTWASEEILVGFDDYKRPVFRLNKWITKPSPLKTESNEEIPPPKKRFIVDYFESKDNVVAKQNTLYHKHNWLFGYLEVNRGIIPKGKEATLKGFLTSQFIHDSTQSKFMNFIEWFVQKFIRSMILAIAMFIVIWPVTMGILAGIGHKVGSHDYYFNDYPLPQVMKLIYAVVIAFVCTPVAIIVIVLRNQFHEELYYEGLANGTLQQDQEVCSTGNRSSGSTDQDISTTKQQSQEAVA* 051111 +YHL037C MYRSSISIQVFICVLFLPLDSGRPLIYMIDLSYICSDATVFSGKSRVIFFSNPICEHTRGNFYLFYLNYIINTFAPKNRGTRRCKPFGLHINCRKKIDCLHVQLSYILCKNKSRKRHMDAHAHNPCMVSTRPHVSEFAKMIVKCVDSSIRGEVGELKVE* 110203 +YHL047C MIEVPEDNRSSQTKRKNTEKNCNELMVDEKMDDDSSPRDEMKDKLKGTKSLIIRKSELMAKKYDTWQLKAIFLFSAFICTFAYGLDSSIRGTYMTYAMNSYSAHSLISTVSVIVLMISAVSQVIFGGLSDIFGRLTLFLVSIVLYIVGTIIQSQAYDVQRYAAGAVFYYVGLVGVMLQVVLMLSDNSSLKWRLFYTLIPSWPSIITTWVSGSVVEAANPLENWSWNIAMWAFIFPLCCIPLILCMLHMRWKVRNDVEWKELQDEKSYYQTHGLVQMLVQLFWKLDVVGVLLFTAGVGCILVPLTLAGGVSTNWRNSKIIGPFVLGFVLVPGFIYWESRLALVPFAPFKLLKDRGVWAPLGIMFFICFVYQMAAGYLYTILVVAVDESASSATRIINLYSFVTAVVAPFLGLIVTRSSRLKSYIIFGGSLYFITMGLFYRYRSGQDADGGIIAGMVIWGLSSCLFDYPTIVSIQSVTSHENMATVTALNYTVFRIGGAVAAAISGAIWTQSLYPKLLHYMGDADLATAAYGSPLTFILSNPWGTPVRSAMVEAYRHVQKYEVIVALVFSAPMFLLTFCVRDPRLTEDFAQKLPDREYVQTKEDDPINDWIAKRFAKALGGHKKDLQNPNRICVRKNDL* 110203 +YHR049C-A MTRSKRRLILKFNMISFFSAVSLLHYFLPSRKSISMFKKVFVSHAKAPRVDFSRRAGFSSTQDGREEKGCYKLVVHSIQSTYMYIYILDQHFTPHTLRVIVKS* 110203 +YHR056C MVAVPSASGMSTHGNGQGSNHFSQGNGVNQKNVMIQTQYPIMQTSIEAFNFSFNPSVDTAMQWTKAASYQNNNTNNNTAPRQNSSTVSSNVHGNTIVRSDSPDVPSMDQIREYNTRLQLVNAQSFDYTDNPYSFNVGINQDSAVFDLMTSPFTQEEVLIKEIDFLKNKLLDLQSLQLKSLKEKSNLNADNTTANKINKTGENSKKGKVDGKRAGFDHQTSRTSQSSQKYFTALTITDVQSLVQVKPLKDTPNYLFTKNFIIFRDHYLFKFYNILHDICHINQFKVSPPNNKNHQQYMEVCKVNFPPKAIIIETLNSESLNNLNIEEFLPIFDKTLLLEFVHNSFPNGDTCPSFSTVDLPLSQLTKLGELTVLLLLLNDSMTLFNKQAINNHVSALMNNLRLIRSQITLINLEYYDQETIKFIAITKFYESLYMHDDHKSSLDEDLSCLLSFQIKDFKLFHFLKKMYYSRHSLLGQSSFMVPAAENLSPIPASIDTNDIPLIANDLKLLETQAKLINILQGVPFYLPVNLTKIESLLETLTMGVSNTVDLYFHDNEVRKEWKDTLNFINTIVYTNFFLFVQNESSLSMAVQHSSNNNKTSNSERCAKDLMKIISNMHIFYSITFNFIFPIKSIKSFSSGNNRFHSNGKEFLFANHFIEILQNFIAITFAIFQRCEVILYDEFYKNLSNEEINVQLLLIHDKILEILKKIEIIVSFLRDEMNSNGSFKSIKGFNKVLNLIKYMLRFSKKKQNFARNSDNNNVTDYSQSAKNKNVLLKFPVSELNRIYLKFKEISDFLMEREVVQRSIIIDKDLESDNLGITTANFNDFYDAFYN* 040206 +YHR056W-A MNITTNGTTILTRSSIIIGVIILVASGLGPLHRSIHRGVEREVECLYRRLHNRILRLNHYVFLIYTVSLTKMVGTLAIAVRGHPGRRGHSDHLTRSIWIKTVRLVILDAIPTYRFGPVAPDLSLPALGASRRLPHFSHLHVHHD* 110203 +YHR056W-A MNITTNGTTILTRSSIIIGVIILVASGLGPLHRSIHRGVEREVECLYRRLHNRILRLNHYVFLIYTVSLTKMVGTLAIAVRGHPGRRGHSDHLTRSIWIKTVRLVILDAIPTYRFWPCRTRSFSSCIGCKQAASSLFSLACPS* 040206 +YHR072W MTEFYSDTIGLPKTDPRLWRLRTDELGRESWEYLTPQQAANDPPSTFTQWLLQDPKFPQPHPERNKHSPDFSAFDACHNGASFFKLLQEPDSGIFPCQYKGPMFMTIGYVAVNYIAGIEIPEHERIELIRYIVNTAHPVDGGWGLHSVDKSTVFGTVLNYVILRLLGLPKDHPVCAKARSTLLRLGGAIGSPHWGKIWLSALNLYKWEGVNPAPPETWLLPYSLPMHPGRWWVHTRGVYIPVSYLSLVKFSCPMTPLLEELRNEIYTKPFDKINFSKNRNTVCGVDLYYPHSTTLNIANSLVVFYEKYLRNRFIYSLSKKKVYDLIKTELQNTDSLCIAPVNQAFCALVTLIEEGVDSEAFQRLQYRFKDALFHGPQGMTIMGTNGVQTWDCAFAIQYFFVAGLAERPEFYNTIVSAYKFLCHAQFDTECVPGSYRDKRKGAWGFSTKTQGYTVADCTAEAIKAIIMVKNSPVFSEVHHMISSERLFEGIDVLLNLQNIGSFEYGSFATYEKIKAPLAMETLNPAEVFGDIMVEYPYVECTDSSVLGLTYFHKYFDYRKEEIRTRIRIAIEFIKKSQLPDGSWYGSWGICFTYAGMFALEALHTVGETYENSSTVRKGCDFLVSKQMKDGGWGESMKSSELHSYVDSEKSLVVQTAWALIALLFAEYPNKEVIDRGIDLLKNRQEESGEWKFESVEGVFNHSCAIEYPSYRFLFPIKALGMYSRAYETHTL* 110203 +YHR076W MFANVGFRTLRVSRGPLYGMFIVLFIGVLIAKFAGQMLIDSETNFSHIIGSCSQIISFSKRTFYSSAKSGYQSNNSHGDAYSSGSQSGPFTYKTAVAFQPKDRDDLIYQKLKDSIRSPTGEDNYFVTSNNVHDIFAGVADGVGGWAEHGYDSSAISRELCKKMDEISTALAENSSKETLLTPKKIIGAAYAKIRDEKVVKVGGTTAIVAHFPSNGKLEVANLGDSWCGVFRDSKLVFQTKFQTVGFNAPYQLSIIPEEMLKEAERRGSKYILNTPRDADEYSFQLKKKDIIILATDGVTDNIATDDIELFLKDNAARTNDELQLLSQKFVDNVVSLSKDPNYPSVFAQEISKLTGKNYSGGKEDDITVVVVRVD* 070713 +YHR079C-A MNYLETQLNKKQKQIQEYESMNGNLIKMFEQLSKEKKKYVAIFSSRQKSV* 051103 +YHR092C MSEEAAYQEDTAVQNTPADALSPVESDSNSALSTPSNKAERDDMKDFDENHEESNNYVEIPKKPASAYVTVSICCLMVAFGGFVFGWDTGTISGFVAQTDFIRRFGMKHHDGTYYLSKVRTGLIVSIFNIGCAIGGIILAKLGDMYGRKMGLIVVVVIYIIGIIIQIASINKWYQYFIGRIISGLGVGGIAVLSPMLISEVSPKHIRGTLVSCYQLMITLGIFLGYCTNYGTKTYTNSVQWRVPLGLGFAWALFMIGGMTFVPESPRYLVEVGKIEEAKRSIALSNKVSADDPAVMAEVEVVQATVEAEKLAGNASWGEIFSTKTKVFQRLIMGAMIQSLQQLTGDNYFFYYGTTVFTAVGLEDSFETSIVLGIVNFASTFVGIFLVERYGRRRCLLWGAASMTACMVVFASVGVTRLWPNGKKNGSSKGAGNCMIVFTCFYLFCFATTWAPIPFVVNSETFPLRVKSKCMAIAQACNWIWGFLIGFFTPFISGAIDFYYGYVFMGCLVFSYFYVFFFVPETKGLTLEEVNTLWEEGVLPWKSPSWFHQTREVLTTTLMI* 110203 +YHR095W MNILFLIYLKDKRSARQCPAAFLPSFSEFPLRIGSCAHICQSFTEKKKEHWVTSEKLLTQCNSVIILCAVSLKKNQECKISINSLEVMMVSLSLTLLKKGFFSWSTLFRGKKKKKKKKKRILHVIYHDSTFLQAKMKIIRAHAK* 110203 +YHR131C MANNRIERLKSPSSSSTCSMDEVLITSSNNSSSICLETMRQLPREGVSGQINIIKETAASSSSHAALFIKQDLYEHIDPLPAYPPSYDLVNPNKEVRFPIFGDTAPCPKSSLPPLYAPAVYELTLISLKLERLSPYEISSNRSWRNFIIEINSTQLNFYHIDESLTKHIRNYSSGETKSEKEDRIHSDLVHRSDQSQHLHHRLFTLPTRSASEFKKADQERISYRVKRDRSRYLTDEALYKSFTLQNARFGIPTDYTKKSFVLRMSCESEQFLLRFSHIDDMIDWSMYLSIGISVSLDLEVREYPDYRIVPRRRRRRRRRRRRRRHTHRSESSMGSFSQRFIRSNSRPDLIQRYSTGSSTNNNTTIRERSNTFTAGLLDHYCTGLSKTPTEALISSAASGESSDNSTLGSTRSLSGCSASRSIASRSLKFKIKNFFRPKNSSRTEKLHRLRSNSSNLNSVIETEEDDEHHESSGGDHPEPGVPVNTTIKVERPMHRNRAISMPQRQSLRRAISEEVVPIKFPNSTVGESVHSPSPIEHLSVDGCEIMLQSQNAVMKEELRSVASNLVANERDEASIRPKPQSSSIYLSGLAPNGESATDLSQSSRSLCLTNRDAEINDDESATETDEDENDGETDEYAGDDTNDDTDDSNIGYAYGSESDYSCLIEERIRNRRRASSTLSCFSNIPYGTDDIKWKPAIKEISRRRYLRDSLKCIKPFLDSNDCLGKVIYIPVSGPTFETSNKIHFSNRQSLQKQKNHFLKGFIVGPTALIELNCKNKNAIVGTTKDAEDHGEDDGDGDDGEDDDDDDDDDDDDDDDEDDDDDDDDDDDDDDDDDDGQITA* 040726 +YHR131W-A MVSKHIELLLLLEVMRTSSIEHVDEDEGDFNLSILLFAMDNLPSIGRASLTNEQLVCTMSDQKYTVAPRNNDFFCAGQQNCNLFGGPYYETFLFFFFLTVRQLDAPTSLKLDDYD* 040726 +YHR163W MVIVVYYIKRKGLEDNRRQCTINCFTPGPRQMVTVGVFSERASLTHQLGEFIVKKQDEALQKKSDFKVSVSGGSLIDALYESLVADESLSSRVQWSKWQIYFSDERIVPLTDADSNYGAFKRAVLDKLPSTSQPNVYPMDESLIGSDAESNNKIAAEYERIVPQVLDLVLLGCGPDGHTCSLFPGETHRYLLNETTKRVAWCHDSPKPPSDRITFTLPVLKDAKALCFVAEGSSKQNIMHEIFDLKNDQLPTALVNKLFGEKTSWFVNEEAFGKVQTKTF* 051111 +YHR168W MSIAWSSVFKRELRLERFLPRVYSTKVPDNAPRAADNEQWLETLRPITHPEQKKSDHDVSYTRHINVPLGEVTSVNYLQRYNKHKHSQGNFVDVRIVKCKSGAGGSGAVSFFRDAGRSIGPPDGGDGGAGGSVYIQAVAGLGSLAKMKTTYTAEDGEAGAARQLDGMRGRDVLIQVPVGTVVKWCLPPQKVRELVEREMRKDNNATLRSILGSTAVNLSVSSGSHRKKIQLYRHEMAESWLFKDKAKEYHENKDWFKDLHKKMEAYDHSLEQSELFNDQFPLAGLDLNQPMTKPVCLLKGGQGGLGNMHFLTNLIRNPRFSKPGRNGLEQHFLFELKSIADLGLIGLPNAGKSTILNKISNAKPKIGHWQFTTLSPTIGTVSLGFGQDVFTVADIPGIIQGASLDKGMGLEFLRHIERSNGWVFVLDLSNKNPLNDLQLLIEEVGTLEKVKTKNILIVCNKVDIDAEKSESFAKYLQVEKFSKSQEWDCVPISALREKT* 110203 +YHR176W MTVNDKKRLAIIGGGPGGLAAARVFSQSLPNFEIEIFVKDYDIGGVWHYPEQKSDGRVMYDHLETNISKKLMQFSGFPFEENVPLYPSRRNIWEYLKAYYKTFIANKDAISIHFSTEVTYLKKKNSQWEITSKDELRTTKSDFDFVIVASGHYSVPKLPTNIAGLDLWFDNKGAFHSKDFKNCEFAREKVVIVVGNGSSGQDIANQLTTVAKKVYNSIKEPASNQLKAKLIETVQTIDSADWKNRSVTLSDGRVLQNIDYIIFATGYYYSFPFIEPSVRLEVLGEGVTGDKHSSVNLHNLWEHMIYVKDPTLSFILTPQLVIPFPLSELQAAIMVEVFCKSLPITTTFDSNACGTHNFPKERTWNTMQNYRNY* 040206 +YHR197W MSEEFIAVSTLARNLEIAKGNEFHTILATLRSPVYINEQLLKSELSFLVTKILKLIRSGNDFDLWKGCHTSVVTCAYNPLVLSTHGGQLLAAIYSRLEQKTGFYSSVISSSHGKQLFNTLISSVAIIIDLMKNKPTLSREALVPKLKAIIPTLITLSQYEPELVLPVLQRILKRNTTTFKPFTNKFRTVLINLIISDYASLGTKTQRLVCENFAYLHLLKIQVSDTSDDETQAHHKIYADSNWRTGLMSILSQFKPIIQLCGEILDFEQDNELYKLIKSLPVIDESNNKEEFLPSLKLDFNAPLTLWEIPQRLSLLADMLVAFISLPTPFPIRVPLGGINSLCEVLLGVSNKYLPLKKELRHDNELNGVINTILPQIQFQGIRLWEIMVSKYGKCGLSFFEGILSSIELFIPLKKKSNNEIDFNVVGSLKFEFATVFRLVNMILSHLGHQLNIISVISQLIEVALFLSHDKTLIDSLFKNRKSIMKQQTKTKQSKRSKSAEGAFSDIYTHPELFVCKNSMNWFNEINDFFITALNNWILPSTPHIQILKYSITQSLRLKERFGYIPESFVNLLRCEVLHPGSERVSILPIAISLLKNINDDMFELLCHPKVPVGMVYQLHKPLDLGEDGEVRDDINKKEVETNESSSNANTGLETLKALENLENVTIPEPKHEVPKVVDDTAIFKKRSVEEVIERESTSSHKKVKFVEETTVDNGEELIVKKAVSQTKEEEKPMEDSEDEEQEEFEIPAIELSDDEEEEEEGE* 110203 +YIL012W MCLGKLYFEQLILVRCIKGRQSGNITTGESRCVSWNVYCTTSMIGLFSWRKMLLFQHFSYTQRENRQIGGKTWSLISSLFHLNETLASALHHPYETLALYEAYFACGKKNFFCKRGYSETVTEGRGWKRV* 110203 +YIL043C MYKYSYYIRRKNEREKKVLKVCIQLALQQETQSIKQSKMAIDAQKLVVVIVIVVVPLLFKFIIGPKTKPVLDPKRNDFQSFPLVEKTILTHNTSMYKFGLPHADDVLGLPIGQHIVIKANINGKDITRSYTPTSLDGDTKGNFELLVKSYPTGNVSKMIGELKIGDSIQIKGPRGNYHYERNCRSHLGMIAGGTGIAPMYQIMKAIAMDPHDTTKVSLVFGNVHEEDILLKKELEALVAMKPSQFKIVYYLDSPDREDWTGGVGYITKDVIKEHLPAATMDNVQILICGPPAMVASVRRSTVDLGFRRSKPLSKMEDQVFVF* 060126 +YIL053W MKRFNVLKYIRTTKANIQTIAMPLTTKPLSLKINAALFDVDGTIIISQPAIAAFWRDFGKDKPYFDAEHVIHISHGWRTYDAIAKFAPDFADEEYVNKLEGEIPEKYGEHSIEVPGAVKLCNALNALPKEKWAVATSGTRDMAKKWFDILKIKRPEYFITANDVKQGKPHPEPYLKGRNGLGFPINEQDPSKSKVVVFEDAPAGIAAGKAAGCKIVGIATTFDLDFLKEKGCDIIVKNHESIRVGEYNAETDEVELIFDDYLYAKDDLLKW* 060126 +YIL076W MQRLQWDKDILFLIFKVILIFCWFFFSFLSSEKLQFLQKNTSSYSIRTDCEELGGEHRNRQKIMDYFNIKQNYYTGNFVQCLQEIEKFSKVTDNTLLFYKAKTLLALGQYQSQDPTSKLGKVLDLYVQFLDTKNIEELENLLKDKQNSPYELYLLATAQAILGDLDKSLETCVEGIDNDEAEGTTELLLLAIEVALLNNNVSTASTIFDNYTNAIEDTVSGDNEMILNLAESYIKFATNKETATSNFYYYEELSQTFPTWKTQLGLLNLHLQQRNIAEAQGIVELLLSDYYSVEQKENAVLYKPTFLANQITLALMQGLDTEDLTNQLVKLDHEHAFIKHHQEIDAKFDELVRKYDTSN* 051123 +YIL080W MSFMDQIPGGGNYPKLPVECLPNFPIQPSLTFRGRNDSHKLKNFISEIMLNMSMISWPNDASRIVYCRRHLLNPAAQWANDFVQEQGILEITFDTFIQGLYQHFYKPPDINKIFNAITQLSEAKLGIERLNQRFRKIWDRMPPDFMTEKAAIMTYTRLLTKETYNIVRMHKPETLKDAMEEAYQTTALTERFFPGFELDADGDTIIGATTHLQEEYDSDYDSEDNLTQNRYVHTVRTRRSYNKPMSNHRNRRNNNASREECIKNRLCFYCKKEGHRLNECRARRRVLTDLELESKDQQTLFIKTLPIVHYIAIPEMDNTAEKTIKIQNTKVKTLFDSGSPTSFIRRDIVELLKYEIYETPPLRFRGFVATKSAVTSEAVTIDLKINDLQITLAAYILDNMDYQLLIGNPILRRYPKILHTVLNTRESPDSLKPKTYRSETVNNVRTYSAGNRGNPRNIKLSFAPTILEATDPKSAGNRGNPRNTKLSLAPTILEATDPKSAGNRGDSRTKTLSLATTTPAAIDPLTTLDNPGSTQSTFAQFPIPEEASILEEDGKYSNVVSTIQSVEPNATDHSNKDTFCTLPVWLQQKYREIIRNDLPPRPADINNIPVKHDIEIKPGARLPRLQPYHVTEKNEQEINKIVQKLLDNKFIVPSKSPCSSPVVLVPKKDGTFRLCVDYRTLNKATISDPFPLPRIDNLLSRIGNAQIFTTLDLHSGYHQIPMEPKDRYKTAFVTPSGKYEYTVMPFGLVNAPSTFARYMADTFRDLRFVNVYLDDILIFSESPEEHWKHLDTVLERLKNENLIVKKKKCKFASEETEFLGYSIGIQKIAPLQHKCAAIRDFPTPKTVKQAQRFLGMINYYRRFIPNCSKIAQPIQLFICDKSQWTEKQDKAIEKLKAALCNSPVLVPFNNKANYRLTTDASKDGIGAVLEEVDNKNKLVGVVGYFSKSLESAQKNYPAGELELLGIIKALHHFRYMLHGKHFTLRTDHISLLSLQNKNEPARRVQRWLDDLATYDFTLEYLAGPKNVVADAISRAIYTITPETSRPIDTESWKSYYKSDPLCSAVLIHMKELTQHNVTPEDMSAFRSYQKKLELSETFRKNYSLEDEMIYYQDRLVVPIKQQNAVMRLYHDHTLFGGHFGVTVTLAKISPIYYWPKLQHSIIQYIRTCVQCQLIKSHRPRLHGLLQPLPIAEGRWLDISMDFVTGLPPTSNNLNMILVVVDRFSKRAHFIATRKTLDATQLIDLLFRYIFSYHGFPRTITSDRDVRMTADKYQELTKRLGIKSTMSSANHPQTDGQSERTIQTLNRLLRAYVSTNIQNWHVYLPQIEFVYNSTPTRTLGKSPFEIDLGYLPNTPAIKSDDEVNARSFTAVELAKHLKALTIQTKEQLEHAQIEMETNNNQRRKPLLLNIGDHVLVHRDAYFKKGAYMKVQQIYVGPFRVVKKINDNAYELDLNSHKKKHRVINVQFLKSLYTVQTRTQRINQSAPLRELREHTKLLHS*E*ILHTKLTYVTCKT*TQHFQ*NTQKLNFAKFPKEHEDQY*PTLDNSTKHKTTLRERKMLYLKMRYVSMTIRHPE 141118 +YIL083C MPPLPVLNRPQIHTSVTEISHAIDRTIKEELFPVAYTTEEEQYFKTNPKPAYIDELIKDAKEFIDLQYSLKRNKIVLITSGGTTVPLENNTVRFIDNFSAGTRGASSAEQFLANGYSVIFLHREFSLTPYNRSFSHSINTLFLDYIDSEGKIKPEFAENVLKNKKLYDKYMEKEEKLLLLPFTTVNQYLWSLKSIAKLLNNSGCLFYLAAAVSDFFVPYSRLPQHKIQSGDNGKMGANNDTEGTTRTTPDGKLIVNLDPVPKFLRRLVESWATQAMIVSFKLETDESMLLYKCTQALDRYNHQLVIGNLLQTRNKQVIFVSPENRKGDWVRLDEKHHIIEEMIIPEVIARHDKWVAHSKTKLATK* 110203 +YIL123W MKFSTAVTTLISSGAIVSALPHVDVHQEDAHQHKRAVAYKYVYETVVVDSDGHTVTPAASEVATAATSAIITTSVLAPTSSAAAGIAASIAVSSAALAKNEKISDAAASATASTSQGASSSSSSSSATSTLESSSVSSSSEEAAPTSTVVSTSSATQSSASSATKSSTSSTSPSTSTSTSTSSTSSSSSSSSSSSSSSSGSGSIYGDLADFSGPSEKFQDGTIPCDKFPSGQGVISIDWIGEGGWSGVENTDTSTGGSCKEGSYCSYSCQPGMSKTQWPSDQPSDGRSVGGLLCKNGYLYRSNTDADYLCEWGVEAAYVVSKLSKGVAICRTDYPGTENMVIPTYVEGGSSLPLTVVDQDTYFTWEGKKTSAQYYVNNAGVSVEDGCIWGTSGSGIGNWAPLNFGAGSTGGVTYLSLIPNPNNSDALNYNVKIVAADDSSNVIGECVYENGEFSGGADGCTVSVTSGKAHFVLYN* 110203 +YIL167W MAQESQHGSKTLYVHPFDNETIWEGHSTIVDEIIEQLKENDISLPRVKALVCSVGGGGLFSGIIKGLDRNQLAEKIPVVAVETAGCDVLNKSLKKGSPVTLEKLTSVATSLASPYIASFAFESFNKYGCKSVVLSDQDVLATCLRYADDYNFIVEPACGASLHLCYHPEILEDILEQKIYEDDIVIIIACGGSCMTYEDLVKASSTLNVS* 141118 +YIL168W MEMTYYEKTPLIRQFLNNGKTNSWFYVKHEMLQPGGSFKSRGIGHLIRKSNEEALSEGSGKLAVFSSSGGNAGLAAATACRSMALNCSVVVPKTTKPRMVKKIQSAGAKVIIHGDHWGEADEYLRHE* 141118 +YIR043C MGCQEAFRTTLLEPFSLKKDEAAKVKSFKDSVSYIEEALGVYFTEVEKQWKLFNTEKSWSPVGLEDAKLPKEAYRFKLTWILKRIFKLRCLQVFLYYFLIVYTSGNVDLISRFLFPVVMFFIMTRDFQNMGMIVLSVKMEHKMQFLSTIINEQESGANGWDEIAKKMNRYLFEKKVWNNEEFFYDGLDCEWFFSCFFYRLLSLKKTMWFASLNVELWPYVKEAQSVVTSL* 141118 +YIR044C MKENEVKDEKSVDVLSFKQLESQKTVLPQDVFRNELTWFCYEIYKSLAFRIWMLLWLPLSI* 141118 +YJL011C MKVLEERNAFLSDYEVLKFLTDLEKKHLWDQKSLAALKKSRSKGKQNRPYNHPELQGITRNVVNYLSINKNFINQEDEGEERESSGAKDAEKSGISKMSDESFAELMTKLNSFKLFKAEKLQIVNQLPANMVHLYSIVEECDARFDEKTIEEMLEIISAYA* 110203 +YJL012C MKFGEHLSKSLIRQYSYYYISYDDLKTELEDNLSKNNGQWTQELETDFLESLEIELDKVYTFCKVKHSEVFRRVKEVQEQVQHTVRLLDSNNPPTQLDFEILEEELSDIIADVHDLAKFSRLNYTGFQKIIKKHDKKTGFILKPVFQVRLDSKPFFKENYDELVVKISQLYDIARTSGRPIKGDSSAGGKQQNFVRQTTKYWVHPDNITELKLIILKHLPVLVFNTNKEFEREDSAITSIYFDNENLDLYYGRLRKDEGAEAHRLRWYGGMSTDTIFVERKTHREDWTGEKSVKARFALKERHVNDFLKGKYTVDQVFAKMRKEGKKPMNEIENLEALASEIQYVMLKKKLRPVVRSFYNRTAFQLPGDARVRISLDTELTMVREDNFDGVDRTHKNWRRTDIGVDWPFKQLDDKDICRFPYAVLEVKLQTQLGQEPPEWVRELVGSHLVEPVPKFSKFIHGVATLLNDKVDSIPFWLPQMDVDIRKPPLPTNIEITRPGRSDNEDNDFDEDDEDDAALVAAMTNAPGNSLDIEESVGYGATSAPTSNTNHVVESANAAYYQRKIRNAENPISKKYYEIVAFFDHYFNGDQISKIPKGTTFDTQIRAPPERRYVCQFVWNQKFTLPLKEPTCLGCPSRYCWAVSPLLY* 040305 +YJL012C-A MIGSIGFFITSLAVLIRTVMVYAKRVVNIRLKRAVDYEDKIGPGMVSVFLILSILFSFFCNLVAK* 040709 +YJL015C MITRYYRCFFDIMLSTHFIEWRFAIFFLRTMRHVKRKSLVLGWKYIISHKIISGYIWLYRNCTTNIYTVCKFLRCGYICEELCNGRSTCDDRTFAHRTFVFMGVYLQLIHHISRFRTNIAFITQ* 110203 +YJL031C MRDEKIYSIEALKKTSELLEKNPEFNAIWNYRRDIIASLASELEIPFWDKELVFVMMLLKDYPKVYWIWNHRLWVLKHYPTSSPKVWQTELAVVNKLLEQDARNYHGWHYRRIVVGNIESITNKSLDKEEFEYTTIKINNNISNYSAWHQRVQIISRMFQKGEVGNQKEYIRTEISYIINAMFTDAEDQSVWFYIKWFIKNDIVCKTLDEQEYLKMLKDLRENILLINNDEIEFSGKQNIWCLKILLVLEDILEEKEALTERSSEQYLVQLIDADPLRKNRYLHLLEQHK* 040206 +YJL046W MRSASSYLIRNIEHPKISELTYVEFLMNTKEENTRLFFDVYIMSMMLSNWALSPRYVGQRNLIHCTTLFHTLTRWAKDADDKYHDINSMYENMFTPSNDNVSILQDEGKSDYDTTKASSMEEDISAFNKDLYNFYNIGYAKQIMSASQLENIVKAKGRFVIQSLSTSPYYNLALENYVFKNTPRAKRGPDNCRLLFYINDRCAVIGKNQNLWQEVDLAKLKSKNFELLRRFSGGGTVLHDLGNVNYSYLTSREKFETKFFNKMIIKWLNSLNPELRLDLNERGDIIQDGFKISGSAYKIAGGKAYHHATMLLNADLEQFSGLLEPSLPNNMEWESSGVHSVKSKIKNVGIITPNQFIAVVSERFQKTFKVDGEIPIYYCDEFKSINDEIKDAMNTLQSEQWKYFSGPKFSVKIKDKGLTIKVEKGMIYDCDRNDLIGLEFKGFLENIDSYT* 051202 +YJL113W MATPVRGETRNVIDDNISARIQSKVKTNDTVRQTPSSLRKVSIKDEQVRQYQRNLNRFKTILNGLKAEEEKLSEADDIQMLAEKLLKLGETIDKVENRIVDLVEKIQLLETNENNNILHEHIDATGTYYLFDTLTSTNKRFYPKDCVFDYRTNNVENIPILLNNFKKFIKKYQFDDVFENDIIEIDPRENEILCKIIKEGLGESLDIMNTNTTDIFRIIDGLKKQNIEVCMVEMSELEPGEKVLVDTTCRNSALLMNKLQKLVLMEKWIFSKCCQDCPNLKDYLQEAIMGTLHESLRNSVKQRLYNIPHDVGIDHEEFLINTVIETVIDLSPIADDQIENSCMYCKSVFHCSINCKKKPNRELGLTRPISQKPIIYKVHRDNNHLSPVQNEQKSWNKTQKRSNKVYNSKKLVIIDTGSGVNITNDKTLLHNYEDSNRSTRFFGIGKNSSVSVKGYGYIKIKNGHNNTDNKCLLTYYVPEEESTIISCYDLAKKTKMVLSRKYTRLGNKIIKIKTKIVNGVIHVKMNELIERPSDDSKINAIKPTSSPGFKLNKRSITLEDAHKRMGHTGIQQIENSIKHNHYEESLDLIKEPNEFWCQTCKISKATKRNHYTGSMNNHSTDHEPGSSWCMDIFGPVSSSNADTKRYMLIMVDNNTRYCMTSTHFNKNAETILAQVRKNIQYVETQFDRKVREINSDRGTEFTNDQIEEYFISKGIHHILTSTQDHAANGRAERYIRTIITDATTLLRQSNLRVKFWEYAVTSATNIRNYLEHKSTGKLPLKAISRQPVTVRLMSFLPFGEKGIIWNHNHKKLKPSGLPSIILCKDPNSYGYKFFIPSKNKIVTSDNYTIPNYTMDGRVRNTQNINKSHQFSSDNDDEEDQIETVTNLCEALENYEDDNKPITRLEDLFTEEELSQIDSNAKYPSPSNNLEGDLDYVFSDVEESGDYDVESELSTTNNSISTDKNKILSNKDFNSELASTEISISGIDKKGLINTSHIDEDKYDEKVHRIPSIIQEKLVGSKNTIKINDENKISDRIRSKNIGSILNTGLSRCVDITDESITNKDESMHNAKPELIQEQLKKTNHETSFPKEGSIGTNVKFRNTNNEISLKTGDTSLPIKTLESINNHHSNDYSTNKVEKFEKENHHPPPIEDIVDMSDQTDMESNCQDGNNLKELKVTDKNVPTDNGTNVSPRLEQNIEASGSPVQTVNKSAFLNKEFSSLNMKRKRKRHDKNNSLTSYELERDKKRSKKNRVKLIPDNMETVSAPKIRAIYYNEAISKNPDLKEKHEYKQAYHKELQNLKDMKVFDVDVKYSRSEIPDNLIVPTNTIFTKKRNGIYKARIVCRGDTQSPDTYSVITTESLNHNHIKIFLMIANNRNMFMKTLDINHAFLYAKLEEEIYIPHPHDRRCVVKLNKALYGLKQSPKEWNDHLRQYLNGIGLKDNSYTPGLYQTEDKNLMIAVYVDDCVIAASNEQRLDEFINKLKSNFELKITGTLIDDVLDTDILGMDLVYNKRLGTIDLTLKSFINRMDKKYNEELKKIRKSSIPHMSTYKIDPKKDVLQMSEEEFRQGVLKLQQLLGELNYVRHKCRYDIEFAVKKVARLVNYPHERVFYMIYKIIQYLVRYKDIGIHYDRDCNKDKKVIAITDASVGSEYDAQSRIGVILWYGMNIFNVYSNKSTNRCVSSTEAELHAIYEGYADSETLKVTLKELGEGDNNDIVMITDSKPAIQGLNRSYQQPKEKFTWIKTEIIKEKIKEKSIKLLKITGKGNIADLLTKPVSASDFKRFIQVLKNKITSQDILASTDY* 110203 +YJL114W MATPVRGETRNVIDDNISARIQSKVKTNDTVRQTPSSLRKVSIKDEQVRQYQRNLNRFKTILNGLKAEEEKLSEADDIQMLAEKLLKLGETIDKVENRIVDLVEKIQLLETNENNNILHEHIDATGTYYLFDTLTSTNKRFYPKDCVFDYRTNNVENIPILLNNFKKFIKKYQFDDVFENDIIEIDPRENEILCKIIKEGLGESLDIMNTNTTDIFRIIDGLKKQNIEVCMVEMSELEPGEKVLVDTTCRNSALLMNKLQKLVLMEKWIFSKCCQDCPNLKDYLQEAIMGTLHESLRNSVKQRLYNIPHDVGIDHEEFLINTVIETVIDLSPIADDQIENSCMYCKSVFHCSINCKKKPNRELRPDSTNFSKTYYLQGAQRQQPLKSSAKRTKVLEQDTKKVEQSVQQQKTGNY* 110203 +YJL128C MEDKFANLSLHEKTGKSSIQLNEQTGSDNGSAVKRTSSTSSHYNNINADLHARVKAFQEQRALKRSASVGSNQSEQDKGSSQSPKHIQQIVNKPLPPLPVAGSSKVSQRMSSQVVQASSKSTLKNVLDNQETQNITDVNINIDTTKITATTIGVNTGLPATDITPSVSNTASATHKAQLLNPNRRAPRRPLSTQHPTRPNVAPHKAPAIINTPKQSLSARRAVKLPPGGMSLKMPTKTAQQPQQFAPSPSNKKHIETLSNSKVVEGKRSNPGSLINGVQSTSTSSSTEGPHDTVGTTPRTGNSNNSSNSGSSGGGGLFANFSKYVDIKSGSLNFAGKLSLSSKGIDFSNGSSSRITLDELEFLDELGHGNYGNVSKVLHKPTNVIMATKEVRLELDEAKFRQILMELEVLHKCNSPYIVDFYGAFFIEGAVYMCMEYMDGGSLDKIYDESSEIGGIDEPQLAFIANAVIHGLKELKEQHNIIHRDVKPTNILCSANQGTVKLCDFGVSGNLVASLAKTNIGCQSYMAPERIKSLNPDRATYTVQSDIWSLGLSILEMALGRYPYPPETYDNIFSQLSAIVDGPPPRLPSDKFSSDAQDFVSLCLQKIPERRPTYAALTEHPWLVKYRNQDVHMSEYITERLERRNKILRERGENGLSKNVPALHMGGL* 110203 +YJL130C MATIAPTAPITPPMESTGDRLVTLELKDGTVLQGYSFGAEKSVAGELVFQTGMVGYPESVTDPSYEGQILVITYPLVGNYGVPDMHLRDELVEELPRYFESNRIHIAGLVISHYTDEYSHYLRKSSLGKWLQNEGIPAVYGVDTRSLTKHLRDAGSMLGRLSLEKSGSDRTISRSSSWRSAFDVPEWVDPNVQNLVSKVSINEPKLYVPPADNKHIELQTGPDGKVLRILAIDVGMKYNQIRCFIKRGVELKVVPWNYDFTKEDYDGLFISNGPGDPSVLDDLSQRLSNVLEAKKTPVFGICLGHQLIARAAGASTLKLKFGNRGHNIPCTSTISGRCYITSQNHGFAVDVDTLTSGWKPLFVNANDDSNEGIYHSELPYFSVQFHPESTPGPRDTEFLFDVFIQAVKEFKYTQVLKPIAFPGGLLEDNVKAHPRIEAKKVLVLGSGGLSIGQAGEFDYSGSQAIKALKEEGIYTILINPNIATIQTSKGLADKVYFVPVTAEFVRKVILHERPDAIYVTFGGQTALSVGIAMKDEFEALGVKVLGTPIDTIITTEDRELFSNAIDEINEKCAKSQAANSVDEALAAVKEIGFPVIVRAAYALGGLGSGFANNEKELVDLCNVAFSSSPQVLVEKSMKGWKEVEYEVVRDAFDNCITVCNMENFDPLGIHTGDSIVVAPSQTLSDEDYNMLRTTAVNVIRHLGVVGECNIQYALNPVSKDYCIIEVNARLSRSSALASKATGYPLAYTAAKLGLNIPLNEVKNSVTKSTCACFEPSLDYCVVKMPRWDLKKFTRVSTELSSSMKSVGEVMSIGRTFEEAIQKAIRSTEYANLGFNETDLDIDIDYELNNPTDMRVFAIANAFAKKGYSVDKVWEMTRIDKWFLNKLHDLVQFAEKISSFGTKEELPSLVLRQAKQLGFDDRQIARFLDSNEVAIRRLRKEYGITPFVKQIDTVAAEFPAYTNYLYMTYNADSHDLSFDDHGVMVLGSGVYRIGSSVEFDWCAVTAVRTLRANNIKTIMVNYNPETVSTDYDEADRLYFETINLERVLDIYEIENSSGVVVSMGGQTSNNIAMTLHRENVKILGTSPDMIDSAENRYKFSRMLDQIGVDQPAWKELTSMDEAESFAEKVGYPVLVRPSYVLSGAAMNTVYSKNDLESYLNQAVEVSRDYPVVITKYIENAKEIEMDAVARNGELVMHVVSEHVENAGVHSGDATLIVPPQDLAPETVDRIVVATAKIGKALKITGPYNIQFIAKDNEIKVIECNVRASRSFPFISKVVGVNLIELATKAIMGLPLTPYPVEKLPDDYVAVKVPQFSFPRLAGADPVLGVEMASTGEVATFGHSKYEAYLKSLLATGFKLPKKNILLSIGSYKEKQELLSSVQKLYNMGYKLFATSGTADFLSEHGIAVQYLEVLNKDDDDQKSEYSLTQHLANNEIDLYINLPSANRFRRPASYVSKGYKTRRLAVDYSVPLVTNVKCAKLLIEAISRNITLDVSERDAQTSHRTITLPGLINIATYVPNASHVIKGPAELKETTRLFLESGFTYCQLMPRSISGPVITDVASLKAANSVSQDSSYTDFSFTIAGTAHNAHSVTQSASKVTALFLPLRELKNKITAVAELLNQWPTEKQVIAEAKTADLASVLLLTSLQNRSIHITGVSNKEDLALIMTVKAKDPRVTCDVNIYSLFIAQDDYPEAVFLPTKEDQEFFWNNLDSIDAFSVGALPVALANVTGNKVDVGMGIKDSLPLLLAAVEEGKLTIDDIVLRLHDNPAKIFNIPTQDSVVEIDLDYSFRRNKRWSPFNKDMNGGIERVVYNGETLVLSGELVSPGAKGKCIVNPSPASITASAELQSTSAKRRFSITEEAIADNLDAAEDAIPEQPLEQKLMSSRPPRELVAPGAIQNLIRSNNPFRGRHILSIKQFKRSDFHVLFAVAQELRAAVAREGVLDLMKGHVITTIFFEPSTRTCSSFIAAMERLGGRIVNVNPLVSSVKKGETLQDTIRTLACYSDAIVMRHSEEMSVHIAAKYSPVPIINGGNGSREHPTQAFLDLFTIREEIGTVNGITVTFMGDLKHGRTVHSLCRLLMHYQVRINLVSPPELRLPEGLREELRKAGLLGVESIELTPHIISKTDVLYCTRVQEERFNSPEEYARLKDTYIVDNKILAHAKENMAIMHPLPRVNEIKEEVDYDHRAAYFRQMKYGLFVRMALLAMVMGVDM* 110203 +YJL156C MVRFFGLNKKKNEEKENTDLPADNEQNAAETSSSNVSGNEERIDPNSHDTNPENANNDDASTTFGSSIQSSSIFSRGRMTYGTGASSSMATSEMRSHSSGHSGSKNSKNLQGFKDVGKPLRAVSFLSPVKEEESQDTQNTLDVSSSTSSTLATSENARENSFTSRRSITLEYIHKSLSELEENLVDIMDDIHQDVISISKAVIEAIEYFKEFLPTTRDRIPYRISLEKSSSLRKINKIVLHFLDNLLVSDAFSNSRSILLRRFYFFLKKLNLITDDDLISESGVLPCLSVFCIGSHCNLPSMDKLGMILDELTKMDSSIISDQEGAFIAPILRGITPKSSILTIMFGLPNLQHEHYEMIKVLYSLFPDVHMYCVKDYIKKAASAVGSIPSHTAATIDTIAPTKFQFSPPYAVSENPLELPISMSLSTETSAKITGTLGGYLFPQTGSDKKFSQFASCSFAITCAHVVLSEKQDYPNVMVPSNVLQTSYKKVLTKESDRYPDGSVEKTAFLEEVQRIDQNLNWQKSNKFGQVVWGERAIVDHRLSDFAIIKVNSSFKCQNTLGNGLKSFPDPTLRFQNLHVKRKIFKMKPGMKVFKIGASTGYTSGELNSTKLVYWADGKLQSSEFVVASPTPLFASAGDSGAWILTKLEDRLGLGLVGMLHSYDGEQRQFGLFTPIGDILERLHDCN* 090220 +YJL159W MQYKKTLVASALAATTLAAYAPSEPWSTLTPTATYSGGVTDYASTFGIAVQPISTTSSASSAATTASSKAKRAASQIGDGQVQAATTTASVSTKSTAAAVSQIGDGQIQATTKTTAAAVSRDGQIQATTKTTSAKTTAAAVSQISDGQIQATTTTLAPKSTAAAVSQIGDGQVQATTKTTAAAVSQIGDGQVQATTKTTAAAVSQIGDGQVQATTKTTAAAVSQIGDGQVQATTKTTAAAVSQITDGQVQATTKTTQAASQVSDGQVQATTATSASAAATSTDPVDAVSCKTSGTLEMNLKGGILTDGKGRIGSIVANRQFQFDGPPPQAGAIYAAGWSITPDGNLAIGDNDVFYQCLSGTFYNLYDEHIGSQCTPVHLEAIDLIDC* 061006 +YJL159W MQYKKTLVASALAATTLAAYAPSEPWSTLTPTATYSGGVTDYASTFGIAVQPISTTSSASSAATTASSKAKRAASQIGDGQVQAATTTASVSTKSTAAAVSQIGDGQIQATTKTTAAAVSRDGQIQATTKTTSAKTTAAAVSQISDGQIQATTTTLAPKSTAAAVSQIGDGQVQATTKTTAAAVSQIGDGQVQATTKTTAAAVSQIGDGQVQATTKTTAAAVSQIGDGQVQATTKTTAAAVSQITDGQVQATTKTTQAASQVSDGQVQATTAWLLVTMMSSTNVCPVLSTTCTTNTLVVNVLQSTWKLSI* 040305 +YJL160C MHYKKAFLASLLSSIALTAYAPPEPWATLTPSSKMDGGTTEYRTSFGLAVIPFTVTESKVKRNVISQINDGQVQVTTQKLPHPVSQIGDGQIQVTTQKVPPVVSHIVSQIGDGQLQITTAKNVVTKSTIAVPSKTVTATATSTATAVSQIHDGQVQVTISSASSSSVLSKSKLRANKETK* 040305 +YJL162C MSQVIEPQLDRTTYYSILGLTSNATSSEVHKSYLKLARLLHPDKTKSDKSEELFKAVVHAHSILTDEDQKLRYDRDLKIKGLHTYQPKKNCHIFKTKAKESQGASPTLGQSEAYHRQNKPYEQQPYGFGVGKKMTSSSKSKVPIFKSFNLKSYQRNHYYSSKKERKHGSPDIDSLFHETNGASKVRMTDAGKMDTNSQFQEIWEILGKNAYTHKSYSEDPNSCLGSALSDHEEEEEAGKQQQQQQQQQQQQQHYGMTSKSSSPDEEKKNNKEPKRESRVSPEENGEEETGHKQFKLPKTSTFSSGSHDSNLQSPFYNHEYRHYARSKFECKNQFRKSVSPIKEIPATTSANEGWNILRDIIEKLNISNVDDRNKDLLFRRDEIGDKNHSDSIDIENLSIKEPKGMKRRKKDDISLEELFQSLPREKDYFMMDPINDSLESINLFKKPKTTQSHEQGGTFAQAESNRAKFKPLLEQCGITPEI* 060120 +YJL164C MSTEEQNGGGQKSLDDRQGEESQKGETSERETTATESGNESKSVEKEGGETQEKPKQPHVTYYNEEQYKQFIAQARVTVGSIVYKNFQILRTLGTGSFGRVHLIRSRHNGRYYAMKVLKKEIVVRLKQVEHTNDERLMLSIVTHPFIIRMWGTFQDAQQIFMIMDYIEGGELFSLLRKSQRFPNPVAKFYAAEVCLALEYLHSKDIIYRDLKPENILLDKNGHIKITDFGFAKYVPDVTYTLCGTPDYIAPEVVSTKPYNKSIDWWSFGILIYEMLAGYTPFYDSNTMKTYEKILNAELRFPPFFNEDVKDLLSRLITRDLSQRLGNLQNGTEDVKNHPWFKEVVWEKLLSRNIETPYEPPIQQGQGDTSQFDKYPEEDINYGVQGEDPYADLFRDF* 110203 +YJL168C MSKNQSVSASEDEKEILNNNAEGHKPQRLFDQEPDLTEEALTKFENLDDCIYANKRIGTFKNNDFMECDCYEEFSDGVNHACDEDSDCINRLTLIECVNDLCSSCGNDCQNQRFQKKQYAPIAIFKTKHKGYGVRAEQDIEANQFIYEYKGEVIEEMEFRDRLIDYDQRHFKHFYFMMLQNGEFIDATIKGSLARFCNHSCSPNAYVNKWVVKDKLRMGIFAQRKILKGEEITFDYNVDRYGAQAQKCYCEEPNCIGFLGGKTQTDAASLLPQNIADALGVTVSMEKKWLKLKKLSGEPIIKNENENINIEFLQSLEVQPIDSPVDVTKIMSVLLQQDNKIIASKLLKRLFTIDDDSLRHQAIKLHGYTCFSKMLKLFITEQPQVDGKGNETEEDDIKFIKGILDFLLELPKTTRNGIESSQIDNVVKTLPAKFPFLKPNCDELLEKWSKFETYKRITKKDINVAASKMIDLRRVRLPPGWEIIHENGRPLYYNAEQKTKLHYPPSGSSKVFSSRSNTQVNSPSSSGIPKTPGALDSKKHKLSDEEYERKKQKRLEYERIALERAKQEELESLKQKLKLENERKSVLEDIIAEFNKQKELQKEESKKLVEAKEAKRLKRKTVSQSQRLEHNWNKFFASFVPNLIKKNPQSKQFDHENIKQCAKDIVKILTTKELKKDSSRAPPDDLTKGKRHKVKEFINSYMDKIILKKKQKKALGLSSASTRMSSPPPSTSS* 110203 +YJL169W MYKEINGKDKKNYLLQIAITIKVQDFLWDRKRETSPKYACLVNYDDVEGGGEDILVDADDNPNAFFCFFLRIILSMYEFMNSLTLCLFPLVKSSGGALEESFLSSFVVRIFTMSLAHCLMFS* 110203 +YJL170C MKKYCCQCKSCKMSVPVQPWLPRFFVFGILCPVFWLVNLLAWWFLQYWQPHELEFHDLQEDEYPGFYEYEAITKRTVIPIKEEVLQEIRVMQNFSDSNSEEYYESKDGMPSSFLNVNTEQVEDENDTLKKYRYAFLKKVAHDVLESHDLLRKTFRDWNLRSLLGLLIDSILIIFVVLLCKKSR* 060120 +YJL171C MLQSIVLSVCMFMLHTVAASGPQSYQKLDFTNVGFTGSYVDVNKFKDITNNESCTCEVGDRVWFSGKNAPLADYLSVHFRGPLKLKQFAFYTSPGFTVNNSRSSSDWNRLAYYESSSKTADNVTFLNHGGEASPCLGNALSYASSNGTGSASEATVLADGTLISSDQEYIIYSNVSCPKSGYDKGCGVYRSGIPAYYGYGGTTKMFLFEFEMPTETEKNSSSIGYYDLPAIWLLNDHIARTSQYPTNANCSCWASGCGEYDIFEAMNGTEKNHLYSTFHTFQGIEDLGTGIQSYGYITRNTTGTMKGGVVFDSSGNVVSFISDATPFNGTVSADTVNDLLAAIPENETYSSQLMSISATAPSTTSLSNGVRLTNMQNGVWYYILAIFTAFTQVVLI* 110203 +YJL178C MLCGLTDVILPGKDAITTQIIDFDKNIGFNVEETESALTLTLKGATWGANSFDAKLEFQCNDNMKQDELTSHTWADKSIQLTLKGPSGCLKSKDDDKKNGDGDNGKDGDSEGKKPAKKAGGTSWFTWLFLYALLFTLIYLMVVSFLNTRGGSFQDFRAEFIQRSTQFLTSLPEFCKEVVSRILGRSTAQRGGYSAV* 040305 +YJL179W MSQIAQEMTVSLRNARTQLDMVNQQLAYLDRQEKLAELTKKELESYPTDKVWRSCGKSFILQDKSKYVNDLSHAETVLLDQRKTLKIKKNYLETTVEKTIDNLKALMKN* 110203 +YJL183W MAIKPRTKGKTYSSRSVGSQWFNRLGFKQNKYGTCKFLSIITAFVFILYFFSNRFYPISRSAGASYSPSHGLYINEIPASSRLIYPHVEHVPVLKQMTVRGLYITRLEVDGSKRLILKPEENALTDEEKKKTTDQILLVKHSFLDHGKLVYRKSNDAPEVVVVTLIDFENYELETIIQIVQNRVDYAQKHQYGVYIRWIQEFLPVLENQNLAESYEFIKPLVIRAAMHAFPTAKYIHFVDQDALLMNLDLSLQKYLLDPKIMDLALLKNVPVVANSNIKTYNHFEYSSAKIIIPHDAGGNIDASSFVIANDFYGKALIDYLNDPLLRNFPWDNTGDKLSAAIGHILQWHPTLLGKTAIVIPKVLASQYDASLDQEGESGNGASNGDVYHYNEGDLAASFKGCRSRGTCASEIGHMYQKIKKS* 110203 +YJL186W MLIRLKKRKILQVIVSAVVLILFFCSVHNDVSSSWLYGKKLRLPVLTRSNLKNNFYTTLVQAIVENKPADSSPDLSKLHGAEGCSFANNVAAHDSGHDSDLSYESLSKCYNLNKTVQESLREVHSKFTDTLSGKLNFSIPQREALFSGSEGIVTIGGGKYSVLAYTMIKKLRDTGTTLPIEVIIPPQDEGEDDFCKNWLPKFNGKCIYFSDIVPSKPLSDLKLTHFQLKVFGLIISSFKRIIFLDADNYAVKNLDLAFNTTSFNDTGLILWPDFWRRVTPPAFYNIIGSSINIGKRVRFVSDDISPVSRYDPFVSNSNDYTPKERQEHFLKHVPLHDLDGTMPDLSSESGQMVIDKIRHFNTLLLALYYNVYGPTWYYKMISQGTAGEGDKDTFFAAAHALNMPYYQVRTNFEFDGFFYQKDDYKGLALLQHDFEQDYKQYQKAQQKVKANIEEFSKLDPDYTLDNGFLKTLMVNDDGSDLDIMFIHASFYKADPWTLYHENRFIGPNGEQVRGFRKPHRYGMDFELFLFNDMRGSFCTTPKSQVIKFKYFTDKVNTPEWDAMCEYLTNHVNYLESTHKEAMGEKN* 110203 +YJL188C MTKSLKHKYVLRLDVHLGSSPVSSLSVVTDSVVGSQSDPLWQWSVLLLSLSHFLLDSERLLSLIKRETYRAHTKCTIVKNVSNNVQTHQYDAFTDPRQYHLT* 110203 +YJR003C MKEFDESYFFKCLTANRHSIMLRSLHSAATLSNKRFYSLISHSNRKNIIKKLLRHPSFDPIRHHLPEDITTIDPYSLSQNVIESLNKLEVPKKDAAMVHNMMIENLSDLDYGVATIHSNNLRDLDLKPSLPAIKQIIRNNPGRVQSSWELFTQYKASMENVPDELMEVVLEKIIKFDKAEKVDGKKSLTYQDLVRCLYLINHFSSNYNLPSELVEPILIYIVDNGIPNVLGSVLKYKIPLSFFDKYVSEMTQYQICELYDFYSLDNIVADPLVLHKCLTVLGENEKIQQTEEEKEIISKLEEEIDIVKSQCHDNWSLEFPNWSVRKTATSFEELFLEIQKRNIDKKDFELAHKLLRLIGAFKGKVSLFFKLYDEYLLKFKNNEDDLMFEAFLTLCCQGYKSSNEKMLQYAEAFIKEDFDSKLESKIQSVLIVANAKANIDLSLKIYNSNISTAKREKDKYTDLAESDVLTESLILAFLSRDDADFARVIFDGALGEKLISGPTAAKKIKNLLAQYGEALETKTSKQVMQTKIEHYMESI* 060512 +YJR012C MTVQSSPILRQSSFNFITFYLACQLLTFLCIYIVFFFVKFLPTIKVSFIIIGACKRAPHVSVYLLKIDCEHNESSMAAGGELSYEELLDHILNNKPIPNIVEVPNVTLDEGLASTPSLRPRPRPWEGQLQHQSHQGSLDKPNISLDIDQESLEGMTSLTRLSECYDIQSKLQINDSDNDNDDNNNDNNKGDGNDDDNNTVTANPTAR* 210421 +YJR013W MKLLNQAISRKRALILESIWLLNPMVITISTRGNAESVLCCLIMFTLFFLQKSRYTLAGILYGLSIHFKIYPIIYCIPIAIFIYYNKRNQGPRTQLTSLLNIGLSTLTTLLGCGWAMYKIYGYEFLDQAYLYHLYRTDHRHNFSVWNMLLYLDSANKENGESNLSRYAFVPQLLLVLVTGCLEWWNPTFDNLLRVLFVQTFAFVTYNKVCTSQYFVWYLIFLPFYLSRTHIGWKKGLLMATLWVGTQGIWLSQGYYLEFEGKNVFYPGLFIASVLFFVTNVWLLGQFITDIKIPTQPTVSNKKNN* 040305 +YJR092W MAQDIDKLARDEEKPVKLSSSPLKFTLKSTQPLLSYPESPIHRSSIEIETNYDDEDEEEEDAYTCLTQSPQILHSPSRIPITNAVSINKLNLDFTLNPNESDKSLVSDTSVDSTGRELDTKTIPELPFCMSSTPEMTPVDEKCNLPSKLLNTSNNSHSDSRSANSLCGGFKHFNESSRVLIPAKIIQSLLMRMRLLKTMLCRDLQQNMEHIDEAFDEKKVLDEGCSNEPVTFLGENDTRSIVYSNKGTNANVQEFSQEDSLAHSEPKFKDLNATSDDVWNEDKETDANISTSTKSEESYIADYKVTRQEDWDTKKLHQESEHANEQPAIIPQKDSSEETFTELNNESEFQRNFKDGEEYRIVQHEESLYGQRTKSPEENIINGSEIGVDHGEAAEVNEPLAKTSAEEHDLSSSCEDQSVSEARNKDRIEEKEVETKDENIETEKDESEYHKVEENEEPEHVPLLPPLPRWEEIQFNEPFIDENDTSNDSIDLTRSMKPSDYISIWHIQEEEIKSNSPESIANSQFSQQSSITTASTVDSKKDNGSTSFKFKPRIVSRSRIYNPKSRVSSLNYYDNEDYILSNSEWNALDPMRRNTLISKRIQDNIRTQKGHAPLIRPSIMKLNGEDSGFQNHFLEVEQPQEHENIPLSTHLSEQDITTNVGLDEQKLPTNTQDEAEISIREIESAGDITFNRGDLLSLSFDEELGQDFANFLDALDHDSTSFNHGPDDSSSFQRDSSKKSFNSLWESSYELKPPPSIRKQPIAPDVLQKLLESDTKDDADLEKIREERITEPRTGLGIGMLKTPVKDVSIALAASIKGYEASFSDTDSRPEGMNNSDAITLNMFDDFEEDKMTPSTPVRSISPIKRHVSSPFKVVKAGNKQENNEINIKAEEEIEPMTQQETDGLKQDIPPLLAQTKDNVEAKEETITQLEEPQDVEQEFPDMGTLYLSIKAISTLALYGTKSHRATYAIVFDNGENVVQTPWESLPYDGNIRINKEFELPIDFKGKAETSSASSERDSYKKCVITLKCKYEKPRHELVEIVDKVPVGKSFFGKTKYKFEKKYVQKKPKQDEWDYLFAQDGSFARCEIEINEEFLKNVAFNTSHMHYNMINKWSRIADKIHGSKRLYELPRKAPHKVASLDVEACFLERTSAFEQFPKQFSLVNKIVSKYKLQQNIYKEGYLLQDGGDLKGKIENRFFKLHGSQLSGYHEISRKAKIDINLLKVTKVLRNEDIQADNGGQRNFTDWVLFNECFQLVFDDGERITFNAECSNEEKSDWYNKLQEVVELNVFHQPWVKKYCEKLAEEEKTRTTGHNLKQDFN* 040709 +YJR092W MHDAESTVDSLLKEIDNEMEQTKSNITQNGSEDTPHNWKLPLQEIGDDTMEMLVKHNTRSNATENSRGRSPSKMSTISNESLNLGLLRVNSELEESPAAVHQERIKNSVANGALGHANSPKVLNNLKNMAQDIDKLARDEEKPVKLSSSPLKFTLKSTQPLLSYPESPIHRSSIEIETNYDDEDEEEEDAYTCLTQSPQILHSPSRIPITNAVSINKLNLDFTLNPNESDKSLVSDTSVDSTGRELDTKTIPELPFCMSSTPEMTPVDEKCNLPSKLLNTSNNSHSDSRSANSLCGGFKHFNESSRVLIPAKIIQSLLMRMRLLKTMLCRDLQQNMEHIDEAFDEKKVLDEGCSNEPVTFLGENDTRSIVYSNKGTNANVQEFSQEDSLAHSEPKFKDLNATSDDVWNEDKETDANISTSTKSEESYIADYKVTRQEDWDTKKLHQESEHANEQPAIIPQKDSSEETFTELNNESEFQRNFKDGEEYRIVQHEESLYGQRTKSPEENIINGSEIGVDHGEAAEVNEPLAKTSAEEHDLSSSCEDQSVSEARNKDRIEEKEVETKDENIETEKDESEYHKVEENEEPEHVPLLPPLPRWEEIQFNEPFIDENDTSNDSIDLTRSMKPSDYISIWHIQEEEIKSNSPESIANSQFSQQSSITTASTVDSKKDNGSTSFKFKPRIVSRSRIYNPKSRVSSLNYYDNEDYILSNSEWNALDPMRRNTLISKRIQDNIRTQKGHAPLIRPSIMKLNGEDSGFQNHFLEVEQPQEHENIPLSTHLSEQDITTNVGLDEQKLPTNTQDEAEISIREIESAGDITFNRGDLLSLSFDEELGQDFANFLDALDHDSTSFNHGPDDSSSFQRDSSKKSFNSLWESSYELKPPPSIRKQPIAPDVLQKLLESDTKDDADLEKIREERITEPRTGLGIGMLKTPVKDVSIALAASIKGYEASFSDTDSRPEGMNNSDAITLNMFDDFEEDKMTPSTPVRSISPIKRHVSSPFKVVKAGNKQENNEINIKAEEEIEPMTQQETDGLKQDIPPLLAQTKDNVEAKEETITQLEEPQDVEQEFPDMGTLYLSIKAISTLALYGTKSHRATYAIVFDNGENVVQTPWESLPYDGNIRINKEFELPIDFKGKAETSSASSERDSYKKCVITLKCKYEKPRHELVEIVDKVPVGKSFFGKTKYKFEKKYVQKKPKQDEWDYLFAQDGSFARCEIEINEEFLKNVAFNTSHMHYNMINKWSRIADKIHGSKRLYELPRKAPHKVASLDVEACFLERTSAFEQFPKQFSLVNKIVSKYKLQQNIYKEGYLLQDGGDLKGKIENRFFKLHGSQLSGYHEISRKAKIDINLLKVTKVLRNEDIQADNGGQRNFTDWVLFNECFQLVFDDGERITFNAECSNEEKSDWYNKLQEVVELNVFHQPWVKKYCEKLAEEEKTRTTGHNLKQDFN* 080606 +YJR098C MMATPATDLISDNDKYNKQCLSDSSDSGSDVSFFSVNESEGELDTMEKVDTLIGGARVISNKVEKDSDSEQRGRKKETTGPNNYHNLEEKQASAISLDADDEDLDEIISYSHDGNYDSSHKTFSFSLPFGNTNFRSSSPLAIIKTVLPKTPDEFIKKNLRKNEIKQKLKKSTSISSLEEIELFKYERGIDNSRLRAVKESLEMDALKNSIKQITADPFDKTHDGYYRSRLESIWNELEGDVVIMGGYRGSVLRDATTHKRIWIPLKAGLNMTKVDLLIGPNDEDELKTQKEIVPDGMLTHIGPVDISKRLIKRLDANPNLNVQQFGYDWRLSLDISAKHLTTKLEEIYNKQKNKKGIYIIAHSMGGLVAHKVLQDCTHLIRGIIYVGSPSQCPNILGPIRFGDDVMWNKLFSLRTNFFMRSSFYFLPLDGRCFVDKITLERYDFDFFDTDVWKTLGLSPLVNEKREESAHEKSKLLPRKTKSALSLKATLNATTKFVLNAPVVRNVAGNNKQVPRDVPFDEVFHTSYEDSCEYLARTLKRTKNYLDSLDYDPNKEYPPLAMVYGNKVPTVRGAKVNGIQDIKDGNYEDFYYGPGDGVVHHKWLLPEQRGFPVVCKIASSSGHVSLMTDLKSMAKAFISIVDSEKEGRRSRTRTSS* 110203 +YJR103W MKYVVVSGGVISGIGKGVLASSTGMLLKTLGLKVTSIKIDPYMNIDAGTMSPLEHGECFVLDDGGETDLDLGNYERYLGITLSRDHNITTGKIYSHVISRERRGDYLGKTVQIVPHLTNAIQDWIQRVSKIPVDDTGLEPDVCIIELGGTVGDIESAPFVEALRQFQFEVGRENFALIHVSLVPVIHGEQKTKPTQAAIKDLRSLGLIPDMIACRCSEELNRSTIDKIAMFCHVGPEQVVNVHDVNSTYHVPLLLLKQHMIDYLHSRLKLGEVPLTLEDKERGSQLLTNWENMTKNLDDSDDVVKIALVGKYTNLKDSYLSVTKSLEHASMKCRRQLEILWVEASNLEPETQEVDKNKFHDSWNKLSSADGILVPGGFGTRGIEGMILAAKWARESGVPFLGVCLGLQVAAIEFARNVIGRPNSSSTEFLDETLLAPEDQVVIYMPEIDKEHMGGTMRLGLRPTIFQPNSEWSNIRKLYGEVNEVHERHRHRYEINPKIVNDMESRGFIFVGKDETGQRCEIFELKGHPYYVGTQYHPEYTSKVLEPSRPFWGLVAAAPAHLVK* 110203 +YJR106W MDWAINVAHPRLLYKDPKLSVTFIVPSLFHIIIAFVLLGICASDFLCPNVAHISDPNSLRSNGSLVSKTASHASHTGALMAVLLSWCNSSPDLFSNLMSWATSTRETRSTSVSLSIGEVLGACGIILCIVEGSIFIIMSRTHIEISQIQKLSIMRDLLFSLAAMCVMSYVSLMNQVTVLNCLLMAFLYAFYLVVKLTFKLNHSAETPDETAADTSLREDSVSPFLDDSLMASGLLPPIQPGFDISNSITHGIKPSLLSAMDFNSFLSMLENSSLEEDDSRNEMAELNTLRSMTPGQHWSASATVAGEATSAGRPFSEPTNAFTEYRDSERAINSSPAVFAPYRDNPDDEESQEQVLLETTTHGHFGAQEMRRFSKRSLGWIIKIFIPHLSNFSQKSISDAIFSIITVPFFIIFKLSCPQPPSDILSYDPTLNRYSLTTLPIILLFIQSITAPFLLCSILSVLLTYHLGYLVYLFPLILAMALILLLTAFITKVNLHNKFTLSLDSSNILQEKLQKRKLLERLNTSIQIIFLAIGIINIIIWISLLANSLIEMMEIYQKILGLSKAILGLTIFAWGNSVGDLISNISMCRLYKTQTHYQDRVRLATKFFMISCASCLGGVMLNSMGGIGFSGLVSMLFIGAFNDNEWWFLRKVKLQETSQLDNTLNYKFIVSCVFIILQIILLLLFFGGPNNIKRRLTKEMKLVGISMCGLWALATLINILLELFS* 110203 +YJR107W MPVVHCSSNLPITLYIYERLVYFIKASSISSCISDNLLLVNKTFNDGGCPPHINFCNDEIINPTAPQTVVELVLNAKKGELGSGYLAVDHGKKVVILAFRGSTTRQDWFSDFEIYPVNYSPLCVKEYRKLIEEGKIRECEGCKMHRGFLRFTETLGMDVFKKMESILESFPEYRIVVTGHSLGAALASLAGIELKIRGFDPLVLTFATPKIFNSEMKQWVDELFETDAIEKESILKDEIQFRKGYFRVVHTGDYIPMVPPFYHPAGLEMFINKVGLPQNAEDIEYRGKNNRLTLKDGFREGMSGLVEDWLHVYEHRAYFIDVVGCSGL* 110203 +YJR129C MNEDLFYDRLHQRCPGKYLLEELETSKSNDVLHASRFVCEMELVQKTNAYYCKTIVKMLLDHEWIFAKAFTIVNDGEDEIEIYDYLYEKYIKLLSTGKPDPMMKDVVRYRFDEDVKITIEETPNLISAASTTGFRTWEAALYMGDFLIHKPLQELAPVQGQDDGKKKLNVLEVGAGTGIVSLVILQKYHEFVNKMYVTDGDSNLVETQLKRNFELNNEVRENEPDIKLQRLWWGSDRVPEDIDLVVGADVTYDPTILPDLCECLAECLALDRCKLCLLSATIRSESTVQLFSQECNKLGLKCTIVTSTEYDANNEIRAMKALQFKPLIAPIRIYKITKQ* 110203 +YJR132W MDITELLQCFACTLDHNAAVRTNAETHLKNASKVPGFLGACLDIIAADEVPENIKLSASLYFKNKITYGWSAGARQGSNELLDSHVDPDEKPVVKDMLIKTMVSVSKTSPRCIRVLKSALTVIISEDYPSKKWGNLLPNSLELLANEDITVTYVGLLCLAEIFRTYRWKNNDERQDLEELILNYFPALLNYGANVLFQDGKYMNNEQIGELVKLIIKIYKFVSYHDLPFTLQRSESFTPWACFFVSIIQQPLPQEVLSISDIEVRSKNPWVKCKKWALANLYRLFQRYASTSLTRKFQYDEFKQMYCEEFLTQFLQVVFDQIEKWGTGQLWLSDECLYYILNFVEQCVVQKTTWKLVGPHYNVILQHVIFPLLKPTAETLEAFDNDPQEYINRNMDFWDVGYSPDLAALALLTTCVTKRGKTTLQPTLEFMVSTLQSAVGDYNNIMLDNALQIESCLRIFSSIIDRLITKDSPFASEMEKFILTYVLPFFKSQYGFLQSRVCDICSKLGSMDFKDPVITSTIYEGVMNCLNNSSNSLPVELTAALALQTFISDDQFNMKLSEHVVPTMQKLLSLSNDFESDVISGVMQDFVEQFAEQLQPFGVELMNTLVQQFLKLAIDLHETSNLDPDSFTNVDSIPDESDKQMAALGILSTTISILLSFENSPEILKNLEQSFYPAAEFILKNDIEDFYRECCEFVENSTFLLRDITPISWKILELIGECNRKPDSMVSYYLSDFMLALNNILIYGRNELKKNEFYTKIIFEIYQKAVTAEDNSLDDLRVVFDLSQELVLALDDSLPQQYRERLLADVVGSILTQKNELKTNVVFSVTAFNVVISNMITEPLITLQYLKQQGCLEIFFQTWITDYIPNYKRCYDIKLSVLALLKIILKLESNDYSVLNLENLVPQLGSIVTQLASRLPTALRQLANQRKEFSSSGFEEDTKWDENFLDVGDDDENDDEGDLTEKYLELIKNRADSLDFVDGYDAKETFDDLEEDPLTGSILDTVDVYKVFKESIANLQHVDSNRYQGILRHLTPADQELFMGIMNA* 110203 +YJR149W MYFLNQLIFQDVSVMSVDKREDMSRSFQKCLNLRYPIIQAPMAGVTTIEMAAKACIAGAIASLPLSHLDFRKVNDIEKLKLMVSQFRDQVADESLEGNLNLNFFCHDIVDKPTDLQTANWAKLYRKSMNVPIDMNEIKFDNGNVSFKAFEKENALQDFFQYLSDGFRPKIISFHFGHPSKSTIEYLQKIGILIFVTATSVREVRLLARLGINGIVCQGYEAGGHRGNFLVNDPKDDENLSTVQLVKRTVDELAEMKNKGLIHATPFVIAAGGIMDSKDISYMLSQQADAVQVGTAFLGCSESNASKNFSSPFTRETTTKMVNIISGKPARTISTPFIEKVIANFQGEELPPYGYMYSAFKQVRKKYPELANFILAGQGFQNVQSGITTDKKIETMGARLKIVGK* 110203 +YJR150C MSRISILAVAAALVASATAASVTTTLSPYDERVNLIELAVYVSDIGAHLSEYYAFQALHKTETYPPEIAKAVFAGGDFTTMLTGISGDEVTRMITGVPWYSTRLMGAISEALANGGIATAVPASTTEASSTSTSEASSAATESSSSSESSAETSSNAASTQATVSSESSSAASTIASSAESSVASSVASSVASSASFANTTAPVSSTSSISVTPVVQNGTDSTVTKTQASTVETTITSCSNNVCSTVTKPVSSKAQSTATSVTSSASRVIDVTTNGANKFNNGVFGAAAIAGAAALLL* 110203 +YKL023W MNKEELLGFLLDDSIDSQKRCVTDHEAYSNWLKNDNDERTAHEESSSQSTIAALNKKKQTEAAQEDIEELLNGLEGIIGGADPRNLKSKSKRKTKKGGSKPREENVNTEKHIVMLEVEDFSDMSTHEDVNGASPSPNLDRSKKNEKRRKNAKELSYDELKDKLEVTTRKSRLECKDLKKKVHGLERRNLELEQRLEELKIENQTLIEINNKLLKNTNEDEINKSQRNKEKDRKRRERRTARRKDERKQEKKQEKKQDNKTSQSFPSSTDMNGQPIEF* 110203 +YKL033W-A MTHPVAVKACLFDMDGLLINTEDIYTETLNETLAEFGKGPLTWDVKIKLQGLPGPKQEKG* 040305 +YKL039W MRVYQFCRPFQLFTCFLCYLLVFVKANKEKISQKNYQVCAGMYSKEDWKGKIDPFISFNLKKISGLSDESDPGLVVAIYDFQDFEHLGVQLPDEEMYYICDDYAIDIGICEEENRDEFIVQDVVYDPYTSTNRSLANPIMTFSQNEVGLHDTRYPIKETGFYCVTAFRSSTSTKFNAVVNFRNAYGQLAGTEINKLPLYGLLAVAYVVAMALYSFAFWKHKHELLPLQKYLLAFFVFLTAETIFVWAYYDLKNEKGDTAGIKVYMVFLSILTAGKVTFSFFLLLIIALGYGIVYPKLNKTLMRRCQMYGALTYAICIGFLIQSYLTDMEAPSPLILITLIPMALALIIFYYMIIRSMTKTVIYLKEQRQIVKLNMYKKLLYIIYASFLSVLAGSIVSSFIYVGMNTIDMIEKNWRSRFFVTDFWPTLVYFIVFVTIAFLWRPTDTSYMLAASQQLPTDPENVADFDLGDLQSFDDQDDASIITGERGIDEDDLNLNFTDDEEGHDNVNNHSQATGQCLPLQQNNATSSRFD* 051216 +YKL052C MDSASKEETLEKLVQEITVNLQKIDSNLSFCFHKITQDIIPHVATYSEICERIMDSTEWLGTMFQETGLVNLQANAAAPVGNAPVKSLVSNNVGIFPTSAEEASRQSQTDNGPNEADSAVHVNRDVHSMFNNDSIDDFHTANITSTGQILKLPDSSDEDTGSEAVPSREQTDLTGEGHGGADDEQDESTIQRQSRKRKISLLLQQQYGSSSSMVPSPIVPNKMRKQLAHEEHINNDGDNDDENSNNIESSPLKQGHHHPKGQADDNNEGPDEEESTKEVPKPGTIIHFSTNR* 080606 +YKL065C MSLYFTTLFLLLTVEVVMLFIFVLPLPFRIRRGIFSTYNQLTAKQQIKTIIFITGCLVGLLFIDSWKRSQIRVSLYHNDNSGSIGSSAVTPIQALASRAYNQRNMYISGFILYFSICIPTVMSIVKRLVKYQGLINEQEKQKLNKPSSNSKKDSNEADSTKLQEELRKKQISLEGLQKQVKNLEKYFDEKNQPGNVAAAEASKKGN* 110203 +YKL099C MAKLVHDVQKKQHRERSQLTSRSRYGFLEKHKDYVKRAQDFHRKQSTLKVLREKAKERNPDEYYHAMHSRKTDAKGLLISSRHGDEEDESLSMDQVKLLKTQDSNYVRTLRQIELKKLEKGAKQLMFKSSGNHTIFVDSREKMNEFTPEKFFNTTSEMVNRSENRLTKDQLAQDISNNRNASSIMPKESLDKKKLKKFKQVKQHLQRETQLKQVQQRMDAQRELLKKGSKKKIVDSQEKFHLNGRNNGNVRFLPSI* 051216 +YKL101W MTGHVSKTSHVPKGRPSSLAKKAAKRAMAKVNSNPKRASGHLERVVQSVNDATKRLSQPDSTVSVATKSSKRKSRDTVGPWKLGKTLGKGSSGRVRLAKNMETGQLAAIKIVPKKKAFVHCSNNGTVPNSYSSSMVTSNVSSPSIASREHSNHSQTNPYGIEREIVIMKLISHTNVMALFEVWENKSELYLVLEYVDGGELFDYLVSKGKLPEREAIHYFKQIVEGVSYCHSFNICHRDLKPENLLLDKKNRRIKIADFGMAALELPNKLLKTSCGSPHYASPEIVMGRPYHGGPSDVWSCGIVLFALLTGHLPFNDDNIKKLLLKVQSGKYQMPSNLSSEARDLISKILVIDPEKRITTQEILKHPLIKKYDDLPVNKVLRKMRKDNMARGKSNSDLHLLNNVSPSIVTLHSKGEIDESILRSLQILWHGVSRELITAKLLQKPMSEEKLFYSLLLQYKQRHSISLSSSSENKKSATESSVNEPRIEYASKTANNTGLRSENNDVKTLHSLEIHSEDTSTVNQNNAITGVNTEINAPVLAQKSQFSINTLSQPESDKAEAEAVTLPPAIPIFNASSSRIFRNSYTSISSRSRRSLRLSNSRLSLSASTSRETVHDNEMPLPQLPKSPSRYSLSRRAIHASPSTKSIHKSLSRKNIAATVAARRTLQNSASKRSLYSLQSISKRSLNLNDLLVFDDPLPSKKPASENVNKSEPHSLESDSDFEILCDQILFGNALDRILEEEEDNEKERDTQRQRQNDTKSSADTFTISGVSTNKENEGPEYPTKIEKNQFNMSYKPSENMSGLSSFPIFEKENTLSSSYLEEQKPKRAALSDITNSFNKMNKQEGMRIEKKIQREQLQKKNDRPSPLKPIQHQELRVNSLPNDQGKPSLSLDPRRNISQPVNSKVESLLQGLKFKKEPASHWTHERGSLFMSEHVEDEKPVKASDVSIESSYVPLTTVATSSRDPSVLAESSTIQKPMLSLPSSFLNTSMTFKNLSQILADDGDDKHLSVPQNQSRSVAMSHPLRKQSAKISLTPRSNLNANLSVKRNQGSPGSYLSNDLDGISDMTFAMEIPTNTFTAQAIQLMNNDTDNNKINTSPKASSFTKEKVIKSAAYISKEKEPDNSDTNYIPDYTIPNTYDEKAINIFEDAPSDEGSLNTSSSESDSRASVHRKAVSIDTMATTNVLTPATNVRVSLYWNNNSSGIPRETTEEILSKLRLSPENPSNTHMQKRFSSTRGSRDSNALGISQSLQSMFKDLEEDQDGHTSQADILESSMSYSKRRPSEESVNPKQRVTMLFDEEEEESKKVGGGKIKEEHTKLDNKISEESSQLVLPVVEKKENANNTENNYSKIPKPSTIKVTKDTAMESNTQTHTKKPILKSVQNVEVEEAPSSDKKNWFVKLFQNFSSHNNATKASKNHVTNISFDDAHMLTLNEFNKNSIDYQLKNLDHKFGRKVVEYDCKFVKGNFKFKIKITSTPNASSVITVKKRSKHSNTSSNKAFEKFNDDVERVIRNAGRS* 110203 +YKL129C MAVIKKGARRKDVKEPKKRSAKIKKATFDANKKKEVGISDLTLLSKISDESINENLKKRFKNGIIYTYIGHVLISVNPFRDLGIYTNAVLESYKGKNRLEVPPHVFAIAESMYYNLKSYNENQCVIISGESGAGKTEAAKRIMQYIAAASNSHSESIGKIKDMVLATNPLLESFGCAKTLRNNNSSRHGKYLEIKFNSQFEPCAGNITNYLLEKQRVVGQIKNERNFHIFYQFTKGASDTYKQMFGVQMPEQYIYTAAAGCTSADQLMRKDYEGTLEAMRTIGLVQEEQDQIFRMLAAILWIGNISFIENEEGNAQVGDTSVTDFVAYLLQVDASLLVKCLVERIMQTSHGMKRGSVYHVPLNPVQATAVRDALAKAIYNNLFDWIVDRVNVSLQAFPGADKSIGILDIYGFEIFEHNSFEQICINYVNEKLQQIFIQLTLKAEQETYEREKIKWTPIKYFDNKVVCDLIEAKNPPGILAAMNDSIATAHADSNAADQAFAQRLNLFNSNPYFELRANKFVIKHYAGDVTYDINGITDKNKDQLQKDLIELIGTTTNTFLSTIFPDDVDKDSKRRPPTAGDKIIKSANELVETLSKAEPSYIRTIKPNQTKSPNDYDDHQVLHQVKYLGLQENVRIRRAGFAYRQTFEKFVERFYLLSPDCSYAGDYTWDGDTLEAVKLILRDAMIPEKEFQLGVTSVFIKTPESLFALEDMRDKYWYNMAARIQRAWRRFLQRRIDAAIKIQRTIREKKGGNKYVKLRDYGTKLLAGKKERRSMSLLGYRAFMGDYLSCNESKTKGSYIRRQVGIKDKVVFSIKGECLHSKFGRSAQRLKKVFILTKKTFYIIGQTREQNAMKYTQDYKIDVGKIKQVSLTNLQDDWMGVILVNSTQSDPLINTPFKTELMTRLKKLNEKIMIKVGPTIEYHKQPNKLHTVRSKISDSAPKYGDIYKSSTIYVRRGHPANSKSNKKPKNPGGLSGKPIKSKKSKHKSTHKHTHSHRSHRDAAKKQPLPSQKPVNPLSLRATAAQAAYNPKPDKTVPIKSSAIPAAKVSSKHSSKPSSKEKVAVKKASSSHKSSSAKQNQVSMPPSKGVEKNKEPLKETTATATANIPIPPPPPPMGQPKDPKFEAAYDFPGSGSSSELPLKKGDIVFISRDEPSGWSLAKLLDGSKEGWVPTAYMTPYKDTRNTVPVAATGAVNDVTNQKSSQIDNTISSAQEGVQFGSATVGPTSDNQSNPVGTFSDGLASALAARANKMRAESADDDDNDDGDDDDDW* 110203 +YKL133C MWKYLHRSVKNEGTVERLTNLNLFTNHRFKFYSTLKEQSFWRIPFKRRSKLQKWVLSTGIVSFIAFNIWWVYWPHHTFPKPVAKILRKGLHSEIKKEGANYQKSLEYYLEALEECKAENVDLLSDEYTGIEIKIGEMYEKLHMYNDATALYGDMLKKFYNELSKTTDKSTKRKFFLLKRDLQILVRFNEINKDSETNATLLIMHLLLAQREFLENSPEFKNVLSKSELLNNQQLDWKNFKGLPFIGKSKPDIQMHLNSKRKQELKIKEPESEQCVFMKELLTARDLYTRYCLNRSNLSGALNSKITTLEWMLLADSPLDDILLAQAELGSIFYLNSEKFEGSLYAIDNEPYKKSEPLELIRSRLQENQNSCLQYSADCYKSIISFANENQYPKVAMESEMDQRILKALSLAHYGIGVINLHKGRLRASKKELKKAIRISEMIRFNELIEEAQRELKKVDGTPI* 110203 +YKL134C MLRTIILKAGSNASIPSPSRQNKLLRFFATAGAVSRTSPGSIKKIFDDNSYWRNINGQDANNSKISQYLFKKNKTGLFKNPYLTSPDGLRKFSQVSLQQAQELLDKMRNDFSESGKLTYIMNLDRLSDTLCRVIDLCEFIRSTHPDDAFVRAAQDCHEQMFEFMNVLNTDVSLCNILKSVLNNPEVSSKLSAEELKVGKILLDDFEKSGIYMNPDVREKFIQLSQEISLVGQEFINHTDYPGSNSVKIPCKDLDNSKVSTFLLKQLNKDVKGQNYKVPTFGYAAYALLKSCENEMVRKKLWTALHSCSDKQVKRLSHLIKLRAILANLMHKTSYAEYQLEGKWQDRRCQDFILTLMNNTIEKTANELKFIAELKAKDLKKPLTTNTDEILKLVRPWDRDYYTGKYFQLNPSNSPNAKEISYYFTLGNVIQGLSDLFQQIYGIRLEPAITDEGETWSPDVRRLNVISEEEGIIGIIYCDLFERNGKTSNPAHFTVCCSRQIYPSETDFSTIQVGENPDGTYFQLPVISLVCNFSPILIASKKSLCFLQLSEVETLFHEMGHAMHSMLGRTHMQNISGTRCATDFVELPSILMEHFAKDIRILTKIGKHYGTGETIQADMLQRFMKSTNFLQNCETYSQAKMAMLDQSFHDEKIISDIDNFDVVENYQALERRLKVLVDDQSNWCGRFGHLFGSGQLITATYFDRTIASKIWYALFEDDPYSRKNGDKFKKHLLKWGGLKDPWKCIADVLECPMLEKGGSDAMEFIAQSHKS* 110203 +YKL137W MISKHSSRLPIWVLSPREEQQARKNLKTETYKKCANFVQAMADCAKANGMKVFPTCDKQRDEMKSCLLFYQTDEKYLDGERDKIVLEKINKLEKLCQKQSSTK* 051216 +YKL157W MPIVRWLLLKSAVRGSSLIGKAHPCLRSIAAHPRYLSNVYSPPAGVSRSLRINVMWKQSKLTPPRFVKIMNRRPLFTETSHACAKCQKTSQLLNKTPNREILPDNVVPLHYDLTVEPDFKTFKFEGSVKIELKINNPAIDTVTLNTVDTDIHSAKIGDVTSSEIISEEEQQVTTFAFPKGTMSSFKGNAFLDIKFTGILNDNMAGFYRAKYEDKLTGETKYMATTQMEPTDARRAFPCFDEPNLKASFAITLVSDPSLTHLSNMDVKNEYVKDGKKVTLFNTTPKMSTYLVAFIVAELKYVESKNFRIPVRVYATPGNEKHGQFAADLTAKTLAFFEKTFGIQYPLPKMDNVAVHEFSAGAMENWGLVTYRVVDLLLDKDNSTLDRIQRVAEVVQHELAHQWFGNLVTMDWWEGLWLNEGFATWMSWYSCNEFQPEWKVWEQYVTDTLQHALSLDSLRSSHPIEVPVKKADEINQIFDAISYSKGASLLRMISKWLGEETFIKGVSQYLNKFKYGNAKTEDLWDALADASGKDVRSVMNIWTKKVGFPVISVSEDGNGKITFRQNRYLSTADVKPDEDKTIYPVFLALKTKNGVDSSVVLSERSKTIELEDPTFFKVNSEQSGIYITSYTDERWAKLGQQADLLSVEDRVGLVADVKTLSASGYTSTTNFLNLVSKWNNEKSFVVWDQIINSISSMKSTWLFEPKETQDALDNFTKQLISGMTHHLGWEFKSSDSFSTQRLKVTMFGAACAARDADVEKAALKMFTDYCSGNKEAIPALIKPIVFNTVARVGGAENYEKVYKIYLDPISNDEKLAALRSLGRFKEPKLLERTLGYLFDGTVLNQDIYIPMQGMRAHQEGVEALWNWVKKNWDELVKRLPPGLSMLGSVVTLGTSGFTSMQKIDEIKKFFATKSTKGFDQSLAQSLDTITSKAQWG* 110203 +YKL158W MPIVRWLLLKSAVRGSSLIGKAHPCLRSIAAHPRYLSNVYSPPAGVSRSLRINVMWKQSKLTPPRFVKIMNRRPLFTETSHACAKCQKTSQLLKYVYTKA* 040305 +YKL168C MMDSKTLTASMVMQEEKKRQQPVTRRVRSFSESFKNLFRPPRSRDSSPINVTRIPYRSSSTSPKRSSEPPRRSTVSAQILDPKNSPIRQRSYTLKCCTPGLSHPFRQTGSGASNSPTRHRSISGEEQEIVNSLPEYKRSASHTFHGIRRPRSRSSSVSSCDSSNGTTSSSDSQWAMDSLLDDSDNDLTPYRGSNKDILKSKDRAPYNYIDDYNKKALRRATSYPNPLPSKQFYNERLYTRRSHPDEESLESLPRFAGADVQCIIEQNGFKVYEDGSHEHNIKLSGVIAKLEKGNSLPAHRQGSLSRPRLGITLSGLFKHHKNECDIENALSLLPNVEKSQTNHEKRTGQSPNDSNRSSPTQGREDYLKIVNPDASLGSDELKLINSLSSRIHKSLQNYLQEKNLKPAECIGEQAPTFQDNYGHPVGLVGAGAYGEVKLCARLRNEKDSPPFETYHDSKYIYYAVKELKPKPDSDLEKFCTKITSEFIIGHSLSHYHKNGKKPAPNILNVFDILEDSSSFIEVMEFCPAGDLYGMLVGKSKLKGRLHPLEADCFMKQLLHGVKFMHDHGIAHCDLKPENILFYPHGLLKICDFGTSSVFQTAWERRVHAQKGIIGSEPYVAPEEFVDGEYYDPRLIDCWSCGVVYITMILGHYLWKVASREKDMSYDEFYKEMQRKNQFRVFEELKHVNSELATNRKIALYRIFQWEPRKRISVGKLLDMQWMKSTNCCLIYDST* 060512 +YKL198C MTVSHNHSTKISQQPISSVSAFKFFGKKLLSSSHGNKLKKKASLPPDFHSTSTNDSESSSPKLPNSLKTSRRANSFAHTTNSKRSLSSASTKILPPAGSSTSISRGNRHSSTSRNLSNSKFSSERLVYNPYGVSTPSTSLSSVSTSMKKDPDLGFYLHDGDSKIRMLPIPIVDPNEYLPDEMKEASIQLSDNFVFDDENKTIGWGGSCEVRKIRSKYRKKDVFALKKLNMIYNETPEKFYNAAPKEFIIAKQLSHHVHITNTFLLVKVPTTVYTTRGWGFVMELGLRDLFAMIQKSGWRHVALAEKFCIFKQVACGVKFCHDQGIAHRDLKPENVLLSPDGVCKLTDFGISDWYHTDPHDLSSPVKKCAGMIGSPPYAPPEVMFYDSKKHYDTELQQPYDPRALDCYGLGIILMTLVNNVIPFLESCSFDTGFRDYCDAYENFIRLHDRAFRNRGNYRPGPGMEYHLARNFKNGHASRVAWRLADPEAATRYTIDDLFEDPWFQGIETCVDANDKYVCKKPIIKTTTYENPRGFHIATDVAATTPTSNPFLKNRVPIRSMVDIAAHPSPTATVLASSPPPPPPATHVPAEALFTLRETPPPQLATLTLSEEPPATPAPSAPSAPSARVRGHSPHRVGASPSEHCQQLGP* 110203 +YKL203C MNKYINKYTTPPNLLSLRQRAEGKHRTRKKLTHKSHSHDDEMSTTSNTDSNHNGPNDSGRVITGSAGHIGKISFVDSELDTTFSTLNLIFDKLKSDVPQERASGANELSTTLTSLAREVSAEQFQRFSNSLNNKIFELIHGFTSSEKIGGILAVDTLISFYLSTEELPNQTSRLANYLRVLIPSSDIEVMRLAANTLGRLTVPGGTLTSDFVEFEVRTCIDWLTLTADNNSSSSKLEYRRHAALLIIKALADNSPYLLYPYVNSILDNIWVPLRDAKLIIRLDAAVALGKCLTIIQDRDPALGKQWFQRLFQGCTHGLSLNTNDSVHATLLVFRELLSLKAPYLRDKYDDIYKSTMKYKEYKFDVIRREVYAILPLLAAFDPAIFTKKYLDRIMVHYLRYLKNIDMNAANNSDKPFILVSIGDIAFEVGSSISPYMTLILDNIREGLRTKFKVRKQFEKDLFYCIGKLACALGPAFAKHLNKDLLNLMLNCPMSDHMQETLMILNEKIPSLESTVNSRILNLLSISLSGEKFIQSNQYDFNNQFSIEKARKSRNQSFMKKTGESNDDITDAQILIQCFKMLQLIHHQYSLTEFVRLITISYIEHEDSSVRKLAALTSCDLFIKDDICKQTSVHALHSVSEVLSKLLMIAITDPVAEIRLEILQHLGSNFDPQLAQPDNLRLLFMALNDEIFGIQLEAIKIIGRLSSVNPAYVVPSLRKTLLELLTQLKFSNMPKKKEESATLLCTLINSSDEVAKPYIDPILDVILPKCQDASSAVASTALKVLGELSVVGGKEMTRYLKELMPLIINTFQDQSNSFKRDAALTTLGQLAASSGYVVGPLLDYPELLGILINILKTENNPHIRRGTVRLIGILGALDPYKHREIEVTSNSKSSVEQNAPSIDIALLMQGVSPSNDEYYPTVVIHNLMKILNDPSLSIHHTAAIQAIMHIFQNLGLRCVSFLDQIIPGIILVMRSCPPSQLDFYFQQLGSLISIVKQHIRPHVEKIYGVIREFFPIIKLQITIISVIESISKALEGEFKRFVPETLTFFLDILENDQSNKRIVPIRILKSLVTFGPNLEDYSHLIMPIVVRMTEYSAGSLKKISIITLGRLAKNINLSEMSSRIVQALVRILNNGDRELTKATMNTLSLLLLQLGTDFVVFVPVINKALLRNRIQHSVYDQLVNKLLNNECLPTNIIFDKENEVPERKNYEDEMQVTKLPVNQNILKNAWYCSQQKTKEDWQEWIRRLSIQLLKESPSACLRSCSSLVSVYYPLARELFNASFSSCWVELQTSYQEDLIQALCKALSSSENPPEIYQMLLNLVEFMEHDDKPLPIPIHTLGKYAQKCHAFAKALHYKEVEFLEEPKNSTIEALISINNQLHQTDSAIGILKHAQQHNELQLKETWYEKLQRWEDALAAYNEKEAAGEDSVEVMMGKLRSLYALGEWEELSKLASEKWGTAKPEVKKAMAPLAAAAWGLEQWDEIAQYTSVMKSQSPDKEFYDAILCLHRNNFKKAEVHIFNARDLLVTELSALVNESYNRAYNVVVRAQIIAELEEIIKYKKLPQNSDKRLTMRETWNTRLLGCQKNIDVWQRILRVRSLVIKPKEDAQVRIKFANLCRKSGRMALAKKVLNTLLEETDDPDHPNTAKASPPVVYAQLKYLWATGLQDEALKQLINFTSRMAHDLGLDPNNMIAQSVPQQSKRVPRHVEDYTKLLARCFLKQGEWRVCLQPKWRLSNPDSILGSYLLATHFDNTWYKAWHNWALANFEVISMLTSVSKKKQEGSDASSVTDINEFDNGMIGVNTFDAKEVHYSSNLIHRHVIPAIKGFFHSISLSESSSLQDALRLLTLWFTFGGIPEATQAMHEGFNLIQIGTWLEVLPQLISRIHQPNQIVSRSLLSLLSDLGKAHPQALVYPLMVAIKSESLSRQKAALSIIEKMRIHSPVLVDQAELVSHELIRMAVLWHEQWYEGLDDASRQFFGEHNTEKMFAALEPLYEMLKRGPETLREISFQNSFGRDLNDAYEWLMNYKKSKDVSNLNQAWDIYYNVFRKIGKQLPQLQTLELQHVSPKLLSAHDLELAVPGTRASGGKPIVKISKFEPVFSVISSKQRPRKFCIKGSDGKDYKYVLKGHEDIRQDSLVMQLFGLVNTLLQNDAECFRRHLDIQQYPAIPLSPKSGLLGWVPNSDTFHVLIREHREAKKIPLNIEHWVMLQMAPDYDNLTLLQKVEVFTYALNNTEGQDLYKVLWLKSRSSETWLERRTTYTRSLAVMSMTGYILGLGDRHPSNLMLDRITGKVIHIDFGDCFEAAILREKFPEKVPFRLTRMLTYAMEVSGIEGSFRITCENVMKVLRDNKGSLMAILEAFAFDPLINWGFDLPTKKIEEETGIQLPVMNANELLSNGAITEEEVQRVENEHKNAIRNARAMLVLKRITDKLTGNDIRRFNDLDVPEQVDKLIQQATSVENLCQHYIGWCPFW* 040305 +YKL207W MTINQHLQQLLFNRIDKTTSSIQQARAPQMLLDDQLKYWVLLPISIVMVLTGVLKQYIMTLITGSSANEAQPRVKLTEWQYLQWAQLLIGNGGNLSSDAFAAKKEFLVKDLTEERHLAKAKQQDGSQAGEVPNPFNDPSMSNAMMNMAKGNMASFIPQTIIMWWVNHFFAGFILMQLPFPLTAKFKEMLQTGIICQDLDVRWVSSISWYFISVLGLNPVYNLIGLNDQDMGIQAGIGGPQAPKALHNHRLTKQCMRWLTI* 040305 +YKL207W MTINQHLQQLLFNRIDKTTSSIQQARAPQMLLDDQLKYWVLLPISIVMVLTGVLKQYIMTLITGSSANEAQPRVKLTEWQYLQWAQLLIGNGGNLSSDAFAAKKEFLVKDLTEERHLAKAKQQDGSQAGEVPNPFNDPSMSNAMMNMAKGNMASFIPQTIIMWWVNHFFAGFILMQLPFPLTAKFKEMLQTGIICQDLDVRWVSSISWYFISVLGLNPVYNLIGLNDQDMGIQAGIGGPQGPQGPPQSQVDKAMHAMANDLTIIQHETCLDNVEQRVLKQYM* 060512 +YKL221W MSEERHEDHHRDVENKLNLNGKDDINGNTSISIEVPDGGYGWFILLAFILYNFSTWGANSGYAIYLAHYLENNTFAGGSKLDYASIGGLAFSCGLFFAPVITWLYHIFSIQFIIGLGILFQGAALLLAAFSVTLWEIYLTQGVLIGFGLAFIFIPSVTLIPLWFRNKRSLASGIGTAGSGLGGIVFNLGMQSILQKRGVKWALIAQCIICTSLSTIALMLTRTTHQGLRQHKRSYKFELLDYDVLSNFAVWLLFGFVSFAMLGYVVLLYSLSDFTVSLGYTSKQGSYVSCMVSVGSLLGRPIVGHIADKYGSLTVGMILHLVMAILCWAMWIPCKNLATAIRFGLLVGSIMGTIWPTIASIVTRIVGLQKLPGTFGSTWIFMAAFALVAPIIGLELRSTDTNGNDYYRTAIFVGFAYFGVSLCQWLLRGFIIARDEIAVREAYSADQNELHLNVKLSHMSKCLFRYKQLPRRV* 110203 +YKR004C-A MQSSLPLCREFFEKITAYLDYHDFRLTITANQPSITLPYYVDEKAHSIELIIFKTTFLSLFQEAHTYFNKTFSDQSMSQR* 040402 +YKR005C MEDLDNCKCLQCALSSLNNSCFHDYCTSKDEYDKLQIVVEQFQLTNGVLDDGEILKPRGNKFSSRKLSYFVGQNNTLFRNPLQFEKNQLISALLTSLTNNQKTISSVDMFEVVDANNEVQYLRERTISGKTLSPATGYEEENDGDCSVKDKKWEGKIEYHENKKVSSENCSKDTDDKSGSKKERNTKAPLFHTATEIHMTRWSSWRPKKIFTRYLVNEYQSPKIITTVNRFYRTKTDTETGTTLITSTKAKRRWFPRTKIVTSTATSTFLSITTTTTTNAIATKSLVAVLNPDGLNKKAGINFGLFSANGELASPDEGGTPTVVRRDKISDPGAANEQATLFSTTFSQVPHLPELDSGEFISAASQLDKRIFIFTAITVSITTLMMLGFSYRSRVSFRDHSIDDSDDDNDWSDDEVEFDEEYFYSLPVSIPEKGISLDKMAQQLGVE* 070906 +YKR008W MVVKKRKLATEAGGSDERPKYLPGKHPKNQEKTPHVDYNAPLNPKSELFLDDWHIPKFNRFISFTLDVLIDKYKDIFKDFIKLPSRKFHPQYYYKIQQPMSINEIKSRDYEYEDGPSNFLLDVELLTKNCQAYNEYDSLIVKNSMQVVMLIEFEVLKAKNLKRNYLINSEVKAKLLHYLNKLVDATEKKINQALLGASSPKNLDDKVKLSEPFMELVDKDELPEYYEIVHSPMALSIVKQNLEIGQYSKIYDFIIDMLLVFQNAHIFNDPSALIYKDATTLTNYFNYLIQKEFFPELQDLNERGEINLEFDKFEFENYLAIGGGGPAAAGALAISALDNDIEPESNREDLIDQADYDFNHFEGLGNGYNRSLLTEDYLLNPNNFKKLIAIPETVQSEVKNERSTTSDIEKTNSLESEHLKIPKYNVIKSMQKEMQSLSEQHTMEYKPYKLIQQIYIFSSKNLYSQATKPLLGSRPSCNQNWVEYIFNGNELSQNENAFSFMLQPMQTFLTLQSHLTSSLKDTETLLTINKEPVKSRTSNVNSNLSQPQQQENDVIGNDTKQDIENLTIGGGNNNDIVGNDNDKRNNITEIFDIRLSEGLNHLMFRCEDKISHETEFMNFWINVLP* 110203 +YKR012C MNVVRVWPFSTRTIPCTTTVAAWWTCCVTVTATGADKATDADAASSETLENFIFVSFIKGMVLFYDGLFRGTMIPRANRSITAICNTLRQAYIYTKIQSIAFERRLCFQNITYREVREIHEMYCK* 110203 +YKR028W MSGSFWKFGQDYSIESPVSKILNSAFIKINKDQDDDVPTGTCEENIADDEDNSSHDYAASEDNVVNENEEKEEENTLPTTESEYENYRPNLDVLDDLLDDDELYTELMCSNFKLLIFLKYPDVLSKLIEYVTNEKILDEETDSAKKPEIIEGVNDHPILIERDRKDKKEDAEEGGDSEETTNDSDHDSGDERSVDSEETSITLPPESEEQVETRRARIAAEILSADVWPISAAIMQNKDLLGRLWSILDHPAPLPIPASTYFMKINERLLDMDITGMLEFILSRDSLVARFLTHVDNPSLMDFLLKVISTDKPDSPTGVIKILKSQELIPKLLDHLNPEYGISTQSAAGDFIKAFVTLSTNSSNELASGIGPNELTRQLVSEEMIEKLIKIMLKGGTSLSNGVGIIIELIRKNNSDYDFIQLVYTTLESHPPTDRDPIHLIHLVKLFAKHMPDFADMLDKTKLPLMEMPFGNIEPLGFERFKICELIAELLHCSNMTLLNEPNGEMIAQERDIERAKELETSTEKENITAIVDNKSSYYDKDCVEKDITENLGALQINNQGSEEDELNDTGVSSVKLDVKSDAKVVEGLENDASGVELYDETLSDTESVRECLREKPLVGDRLKIALEDTKILISILDMFTEFPWNNFLHNVIFDIAQQIFNGPLKTGYNRFLLKDYLVDAYLTKKIVDADKACQDYEKKTGLRYGYMGHLTLVAEEISKFKEYIDEMKLTFCNTAVSDRLEEPFWKEYSETILADTREKYNTVLGDFGNDQESDDDVIRNSDSEDIIGDTEGNENYGNGENDELLSNGHDSGNMDLYYNFNNNENEENEEDYAEYSDVDNKNYYNNVETNDDDYDSDDGKSKSAESEFTDKISEHRDGNSLYNEDNDENGSDKWTSGTSLFPPDHFPSRSQPSDPKLQDQNIFHHQFDFEGVGDDDDYMDPNDDGQSYARPGNPLYTTPKTPPRPKTILFNSLSALDNNGEDEEVALGTSVDDRMDNEISSDEEDSEMKMKRMIWAMRRATHYIGQEVKKLSELKHSHCHIFTLYSSIFYCSTFFAYRSFIIHQIYTFLIEACNLILTEYNLIKNNEYSLLNILKFI* 110203 +YKR036C MGSGDTRGESSLVAKPIEIILNKLPHAILAQQQFQKYITSPIYRYLSKLLLFREVAWPESTKDTQKGQVGIFSFQNNYADSATTFRILAHLDEHGYPLPNGAAEKNLPSLFEGFKATVSIIQQRLLLDNVDGATNSDKEKYVQLPDINTGFVNKTYSRIDLTHLLEDVETNVENLSINKTLEMDELTRLDSMINELESRKLKILERVKHIDSKSTNLENDVTLIKDRINFIEEYNLEADREQSLRKQMEEERSSEASSFTQNEEAISSLCDVESKDTRLKDFYKMPHEKSHDKNRQIISETYSRNTTAFRMTIPHGEHGNSITALDFDTPWGTLCSSSYQDRIVKVWDLNHGIQVGELPGHLATVNCMQIDKKNYNMLITGSKDATLKLWDLNLSREIYLDHSPLKEKTEEIVTPCIHNFELHKDEITALSFDSEALVSGSRDKKIFHWDLTTGKCIQQLDLIFTPTHSDIKMPARSLNNGACLLGTEAPMIGALQCYNSALATGTKDGIVRLWDLRVGKPVRLLEGHTDGITSLKFDSEKLVTGSMDNSVRIWDLRTSSILDVIAYDLPVSSLDFDGKLITVGANEGGVNVFNMERDEHWMTPEPPHSLDGDELSRRIAIVKYKDGFLINGHNDGDINVWTL* 110203 +YKR036C MTYKITTSESKKEYLYMGSGDTRGESSLVAKPIEIILNKLPHAILAQQQFQKYITSPIYRYLSKLLLFREVAWPESTKDTQKGQVGIFSFQNNYADSATTFRILAHLDEHGYPLPNGAAEKNLPSLFEGFKATVSIIQQRLLLDNVDGATNSDKEKYVQLPDINTGFVNKTYSRIDLTHLLEDVETNVENLSINKTLEMDELTRLDSMINELESRKLKILERVKHIDSKSTNLENDVTLIKDRINFIEEYNLEADREQSLRKQMEEERSSEASSFTQNEEAISSLCDVESKDTRLKDFYKMPHEKSHDKNRQIISETYSRNTTAFRMTIPHGEHGNSITALDFDTPWGTLCSSSYQDRIVKVWDLNHGIQVGELPGHLATVNCMQIDKKNYNMLITGSKDATLKLWDLNLSREIYLDHSPLKEKTEEIVTPCIHNFELHKDEITALSFDSEALVSGSRDKKIFHWDLTTGKCIQQLDLIFTPTHSDIKMPARSLNNGACLLGTEAPMIGALQCYNSALATGTKDGIVRLWDLRVGKPVRLLEGHTDGITSLKFDSEKLVTGSMDNSVRIWDLRTSSILDVIAYDLPVSSLDFDGKLITVGANEGGVNVFNMERDEHWMTPEPPHSLDGDELSRRIAIVKYKDGFLINGHNDGDINVWTL* 060512 +YKR042W MCFLLETSASPRSKLSKDFKPQFTLLSSVTKKKKKKVRPHNFQCIHSLNFVYFLFIHSFLFEYNQLLVLPLNKNLPSLNFSRNSSMKLSALLALSASTAVLAAPAVHHSDNHHHNDKRAVVTVTQYVNADGAVVIPAATTATSAAADGKVESVAAATTTLSSTAAAATTSAAASSSSSSSSSSSSSSSVGSGDFEDGTISCSDFPSGQGAVSLDWLGLGGWASIMDMNGNTATSCQDGYYCSYACSPGYAKTQWPSEQPSDGRSVGGLYCKNGKLYRSNTDTNSLCVEGQGSAQAVNKVSGSIAICGTDYPGSENMVVPTVVGAGSSQPINVIKEDSYYQWQGKKTSAQYYVNNAGVSVEDGCIWGTEGSGVGNWAPVVLGAGYTDGITYLSIIPNPNNKEAPNFNIKIVATDGSTVNGACSYENGVYSGSGSDGCTVSVTSGSANFVFY* 051103 +YKR056W MYEQFEFSFFFFENSDNKVKYKAHLISSIKRWSIITCMRCFWTVQKSIFKARFFACRNFVKKHNYKLISTMTGSTEMVPPTMKHTVDNKRLSSPLTDSGNRRTKKPKLRKYKAKKVETTSPMGVLEFEVNDLLKSQNLSREQVLNDVTSILNDKSSTDGPIVLQYHREVKNVKVLEITSNGNGLALIDNPVETEKKQVVIIPFGLPGDVVNIKVFKTHPYYVESDLLDVVEKSPMRRDDLIRDKYFGKSSGSQLEFLTYDDQLELKRKTIMNAYKFFAPRLVAEKLLPPFDTTVASPLQFGYRTKITPHFDMPKRKQKELSVRPPLGFGQKGRPQWRKDTLDIGGHGSILDIDECVLATEVLNKGLTNERRKFEQEFKNYKKGATILLRENTTILDPSKPTLEQLTEEASRDENGDISYVEVEDKKNNVRLAKTCVTNPRQIVTEYVDGYTFNFSAGEFFQNNNSILPIVTKYVRDNLQAPAKGDDNKTKFLVDAYCGSGLFSICSSKGVDKVIGVEISADSVSFAEKNAKANGVENCRFIVGKAEKLFESIDTPSENTSVILDPPRKGCDELFLKQLAAYIQPRLFTYRVMSIPRHVMSSTSSKKQKTVPPTRLKA* 040305 +YKR058W MSKQTTSQVGAIADIGWPDMFNSGVMMLIPDADTASVLQNYIFENTSIDGSDQGILNQFFNQNCCTDELVKDSFSREWVQLSFTYNVTIPNLGYQSSPAMNYFKPSIKLIHFIGKHKPWSLWSQKNFIKNEYHDQWNEVYEEFKEEHQLNNEVSKPKISDSDKTETPETITPVDAPPSNEPTTNQEIDTISTVEENVDNQNAEPVPNSDHSPAPNPVPLDFTKWLTTFINKDHLTNQPVNESREYSKENDNNIINSSSNRDQESPPNSTQELNSSYSVVSTQADSDEHQNAEEEDSTTDNASNSGEESHLDDISTAASSNNNVSNQPDGKNFSNSKENNISVESSPSNPEQKRSTDNIQKPSVSTNDLPDDVEPHTSVDDNIQYLEKDKEGYEEFLPDVYESNAIDNEEEFFDDDARDATEGETKTSAVADKQEDMKLTAEETNQPQQEMPNFKFDWEDSDYLSKVERCFPDDIFEYAVE* 051202 +YKR087C MFRYDNGPSYRRFNNGEYSQKSSFKSILLDKSSRKYLALLFGGCSLFYYTHLDKAPVSDRSRFIWVSRPLELTIGNYTYKSIWRQTQQEILPPQHPLSIKIENIFMKIVEAAYKDPSVDNSLLDGIKWEIHVVNDPTASPNAFVLPGGKVFIFSSILPICANDDGIATVLAHEFAHQLARHTAENLSKAPIYSLLGLVLYTVTGAHAINNILLDGFLRMPASRQMETEADYIGLMIMSRACFQPQESIKVWERMANFEKQMNRGGVVNMEFLSTHPASTRRIENMSKWLPKANEIYEQSDCSSMGNYYKSFFSM* 040723 +YKR090W MYNSIYGSPFPKINPKVRYKTALERAGFDTKPRNPFSSQRNASTGSLQASVKSPPITRQRNVSAAPSVPVTMKSAYTASSKSAYSSVKGESDIYPPPVLENSERRSVTPPKNSNFTSSRPSDISRSISRPSERASQEDPFRFERDLDRQAEQYAASRHTCKSPANKEFQAADNFPFNFEQEDAGNTEREQDLSPIERSFMMLTQNDTASVVNSMNQTDNRGVLDQKLGKEQQKEESSIEYESEGQQEDENDIESLNFEPDPKLQMNLENEPLQDDFPEAKQEEKNTEPKIPEINVTRESNTPSLTMNALDSKIYPDDNFSGLESSKEQKSPGVSSSSTKVEDLSLDGLNEKRLSITSSENVETPYTATNLQVEQLIAQLDDVSLSRNAKLDMNGNCLNAVDRKASRFKKSSAYLSGYPSMDIPVTQQTSIVQNSNTNLSRQTILVDKGDVDEDAPSESTTNGGTPIFYKFKQSNVEYSNNEGMGSQETFRTKLPTIEALQLQHKRNITDLREEIDNSKSNDSHVLPNGGTTRYSSDADYKETEPIEFKYPPGEGPCRACGLEVTGKRMFSKKENELSGQWHRECFKCIECGIKFNKHVPCYILGDEPYCQKHYHEENHSICKVCSNFIEGECLENDKVERFHVDCLNCFLCKTAITNDYYIFNGEIPLCGNHDMEALLKEGIDNATSTNDKNNTLSKRRTRLINFN* 110203 +YKR091W MFPSPTPPLVSPTAVIEEENDDSVREFSRTLKSRLNCAMVKLSKEHEQVALIPPPPTEKIRKGSYSNKFAAKHRRCHSLDESKKFLSSLEDSSAHAAFLKAISSKHAKSNRVDNVNVSPLRWSSHRRTQSTQENSLQEVVAIDTLLKMSSSD* 040723 +YKR095W-A MNLTVCVLELKIPFETERQATIATKVLSPDPILKPQDFQVDYSSEKNVMLVQFRSIDDRVLRVGVSSIIDSIKTIVEAMDVLS* 040206 +YKR095W-A MTSKREKSELKIPFETERQATIATKVLSPDPILKPQDFQVDYSSEKNVMLVQFRSIDDRVLRVGVSSIIDSIKTIVEAMDVLS* 040402 +YKR099C-A MDADHSVKDSRSAITDKDKDLYKLQNNYDVGNIGEIAEEDQYENEFTNYSQSKREFIESLRPK* 040305 +YKR100C MTASTSVAVGCAVGIPVGVGIIIAVCFWFNLQKRYKREEQDDRELERAIYDESGFVSFDNFGPLRDSKDEAALASSELKNPDHTSGSSEGSAHPEEKDGKSRDQEKPLGKKNSKYYVPAYRRKINLLQVRNNNYGNNARQKSVVDLPSINNSSNVSLSSSQRHITKRQISVYDQMVPVISDEGPNFFADPSSDTNTSNDQNKASMIELKHNTRQSSNENLIRNLQNQDFGSYYQGELHPRF* 040305 +YKR101W MRTIMSIITRRYKQLKNYKIISKKMLQINSRLAVIDGWLVDTVKRKPINFRSPEVRLLLPNDDDYKKLSQQNLVDWTRLKKDSNSVLVGVKSMELFKHIKLVLREFFLLEDGRIILKRIRSKLRYKVVKKLTCKCCRLYLPKWGTVYIHPMLKDKEKPLAGVCEFSLDVNPDREYPLIEINVSHQYIIIEGFLLYLNERRLYRWNDNNLRSQVGLTKWAHLRKTYNPVSLDILYSLNSNFYFVKDDLLFQLLGKRVFVKFCKVMENGKCGKAPLWYRVKRTTTAKATHIAYAISNSTAPDSFKSKNNDYRFIVREKPIVENTISNLDYSDIKKQQFTEAEVVKRKISADISQIENVHTQFNSQKEKNNIRVNKVSSEVLDQISKFPVSRVTLLLMSAGQDKNYIELVEELARRLEKICIEKTTQSLEEIRDTFQANPEMQASFDKEYYQSIEEYKITLELIKEDLLITLIKQMENMWAAEKKFSTEEEYVSPRFLVADGFLIDLAEEKPINPKDPRLLTLLKDHQRAMIDQMNLVKWNDFKKYQDPIPLKAKTLFKFCKQIKKKFLRGADFKLHTLPTEANLKYEPERMTVLCSCVPILLDDQTVQYLYDDSIIPEFEATSSYATKQSKCGRKMSLQMEPDLLFQEAIRRMRHLTAYDVLRRNYIAAFEELYMGNCND* 090220 +YLL054C MSIASQKKVKPSFVCLRCKQRKIKCDKLWPTCSKCKASSSICSYEVEPGRINKSPTIENAPHRDIRNITPASMSASGSFTSILNPSTKDWEMKNFAMNLSNAHDKLVVMNNTTIVDSPFAFHSILQHDLYAKALTTCIHERILIDVERHRENVSANNKKRELNLTIGDIGPLFFIDKAALKFIENTSKTSKLYPPIDFLYNTYDYEQAHPEENNDKISINILLEELSKYFLNKNEVDGLIVDFYKTIYPVYPLLEISLFEDNIRELLQLNEFNGYNIVFAGKDSRRKLETITLLTIILAFSYRRLSLSTSHSFKESFGVKSNNLTLLAHKLLALMNVFQYVNEHTLCCLLYFFILRYLNPDQADMYPTHSDILNLKFLENVAIKLGLNEEPFQYTRYVSESDDYPRLFNLRRKLWLGVQFLKFGILIPEGDSDILSLEYLRSFMKTDESLPELFERNYASTNNLDLSLMATAENIYHLHLSLQVLLTSCFPINGPSYLKEVLDNIDKTKDFLNQKFPLILSSLGEPRMKSLHINVPSSLANEESFDFSTFEENETFIANVISYTCTMNIYDSLSLHFENQCFKNALEYKTYYHRFTFTAIQDYLTLLKLISEYFNGSLLHLREPFGFATQKVVRFSIHRLLIFQATLLVRLFYKKDTCDRSSAAMGMLNDRNGRLSRVIEKMIKLMSYHMKLLVEIVISKLEKSYLGSFISVSIFRYIIYLVDTDALSAFISDYWKSDAVMDERYSRIHRIVGLKWGMGRDKSFSFTQN* 110203 +YLR154W-A MRDSPTHKEQRAQNTMSDQMPFPFNNFTYFFTLFSKFFSSFHHCTCSLSVSRQYLALDGIYHPLRAAFPNNSTLRRHFTKNRTPRHTGFSPSMTSCSKEHRQGTAPKLPSPNYNSGTEGTRFQI* 051103 +YLR154W-C MVCIHTENQNQGGFYPFVLLEISVLHEPPLGHLRYRLTDVPPQPNSPPDNVFNPDQPRMGP* 051103 +YLR157W-A MKFQYALAKEQLGSNSRSGVKKLISKHHWLPEYYFSDLSFSVVQQWDSRAIEKTTIISCMRPANQEIYPL* 051103 +YLR157W-C MIVDFYSNTLRHCETLRSQPCSLFSSLYARSFQSSCTLHVAEPSPGFHMYGCHT* 051103 +YLR205C MRHGFIYRQGILAYYYVFDAIEQEIDRLLNDPVTEEELQTSTILKQFWLEDFRRSTQIYKDLKLLYSNTFKSTESLNEFLATFQKPPLLQQFINNIHENIHKEPCTILSYCHVLYLALFAGGKLIRSNLYRRLGLFPNFEKLSQKELVKKGTNFFTFSDLGPTEETRLKWEYKKNYELATRTELTEAQKLQIISVAEGIFDWNFNIVAEIGELNRRELMGKFSFKCITYLYEEWMFNKDSATRRALHTVMLLVLSIIAIWVLYFLVKSFLSIV* 040206 +YLR312C-B MTTKAMVQKSFKLDLGEHCKEIIERLTDCSQKLSELCTYGCDSTKLGKKRFYQKLADILMEVTKRTRELVECVKMANRQTLSQDLSSFFNYRSVQ* 060303 +YLR312W-A MGSVGKLAYIIYLHKGPRINGLRRDPESYLRNPSGVLFTEVNAKECQDKVRSILQLPKYGINLSNELILQCLTHKSFAHGSKPYNEKLNLLGAQFLKLQTCIHSLKNGSPAESCENGQLSLQFSNLGTKFAKELTSKNTACTFVKLHNLDPFIFWKMRDPIKDGHINGETTIFASVLNAFIGAILSTNGSEKAAKFIQGSLLDKEDLHSLVNIANENVASAKAKISDKENKAFL* 061006 +YLR313C MISSELTNDQIIDLISDYKNFKRIIEASVPEDDRRRNQNRQNRNKDLTKLSNVQFWQLTTDVNDELMKRLTDSGADASLNDLDLKRGKAQSKLSRLKDAKFHKLILDIFTEIERRNLHHLDMGTHNNGLDEGDLNFYLNDTLFESFKINDDFMSVNGIISIEVFRELKTQFTLYFQNTLHRIDPVDTTTTRLPILLETIIKIAKLIGDLLPVLSSVSLQSSLENEIVYLKSALSHAITSTRYFLTYGDLIPRIVAQSSISEVIFAFCNIAQIVKIKSTSRDDISRNEGELSDIEAGMKPLKIIEKVKNEKNGKDISSLGDSGSTAVSFPSSGKPITKKSDMPVVVASPSISIIEKSESSIRESGKVRNNTSGETNLASVSPLKNTKNSSRITSEPSPREGLPLKVVSNSRSPSPQGNTLPLIGKFRQDYQASPPKKVITKPVAETAKPYANIPPAADVLYSPTVTKMRKFREKVQKFAPNSGLGLRISTSEENLNNSDVNSTTHNANINNLVEFVESKSMVVLPMAGRAF* 040206 +YLR313C MISSELTNDQIIDLISDYKNFKRIIEASVPEDDRRRNQNRQNRNKDLTKLSNVQFWQLTTDVNDELMKRLTDSGADASLNDLDLKRGKAQSKLSRLKDAKFHKLILDIFTEIERRNLHHLDMGTHNNGLDEGDLNFYLNDTLFESFKINDDFMSVNGIISIEVFRELKTQFTLYFQNTLHRIDPVDTTTTRLPILLETIIKIAKLIGDLLPVLSSVSLQSSLENEIVYLKSALSHAITSTRYFLTYGDLIPRIVAQSSISEVIFAFCNIAQIVKIKSTSRDDISRNEGELSDIEAGMKPLKIIEKVKNEKNGKDISSLGDSGSTAVSFPSSGKPITKKSDMPVVVASPSISIIEKSESSIRESGKVRNNTSGETNLASVSPLKNTKNSSRITSEPSPREGLPLKVVSNSRSPSPQGNTLPLIGKFRQDYQASPPKKVITKPVAETAKPYANIPPAADVLYSPTVTKMRKFREKVQKFAPNSGLGLRISTSEENLNNSDVNSTTHNANINNLVEFVESKSMVVLPMAQGILNDVQASKSKLFKSARSVSRLCQNSIEIIPILESVIDMTTKAMVQKSFKLDLGEHCKEIIERLTDCSQKLSELCTYGCDSTKLGKKRFYQKLADILMEVTKRTRELVECVKMANRQTLSQDLSSFFNYRSVQ* 110203 +YLR314C MSLKEEQVSIKQDPEQEERQHDQFNDVQIKQESQDHDGVDSQYTNGTQNDDSERFEAAESDVKVEPGLGMGITSSQSEKGQVLPDQPEIKFIRRQINGYVGFANLPKQWHRRSIKNGFSFNLLCVGPDGIGKTTLMKTLFNNDDIEANLVKDYEEELANDQEEEEGQGEGHENQSQEQRHKVKIKSYESVIEENGVKLNLNVIDTEGFGDFLNNDQKSWDPIIKEIDSRFDQYLDAENKINRHSINDKRIHACLYFIEPTGHYLKPLDLKFMQSVYEKCNLIPVIAKSDILTDEEILSFKKTIMNQLIQSNIELFKPPIYSNDDAENSHLSERLFSSLPYAVIGSNDIVENYSGNQVRGRSYPWGVIEVDNDNHSDFNLLKNLLIKQFMEELKERTSKILYENYRSSKLAKLGIKQDNSVFKEFDPISKQLEEKTLHEAKLAKLEIEMKTVFQQKVSEKEKKLQKSETELFARHKEMKEKLTKQLKALEDKKKQLELSINSASPNVNHSPVPTKKKGFLR* 110203 +YLR318W MKILFEFIQDKLDIDLQTNSTYKENLKCGHFNGLDEILTTCFALPNSRKIALPCLPGDLSHKAVIDHCIIYLLTGELYNNVLTFGYKIARNEDVNNSLFCHSANVNVTLLKGAAWKMFHSLVGTYAFVDLLINYTVIQFNGQFFTQIVGNRCNEPHLPPKWVQRSSSSSATAAQIKQLTEPVTNKQFLHKLNINSSSFFPYSKILPSSSSIKKLTDLREAIFPTNLVKIPQRLKVRINLTLQKLLKRHKRLNYVSILNSICPPLEGTVLDLSHLSRQSPKERVLKFIIVILQKLLPQEMFGSKKNKGKIIKNLNLLLSLPLNGYLPFDSLLKKLRLKDFRWLFISDIWFTKHNFENLNQLAICFISWLFRQLIPKIIQTFFYCTEISSTVTIVYFRHDTWNKLITPFIVEYFKTYLVENNVCRNHNSYTLSNFNHSKMRIIPKKSNNEFRIIAIPCRGADEEEFTIYKENHKNAIQPTQKILEYLRNKRPTSFTKIYSPTQIADRIKEFKQRLLKKFNNVLPELYFMKFDVKSCYDSIPRMECMRILKDALKNENGFFVRSQYFFNTNTGVLKLFNVVNASRVPKPYELYIDNVRTVHLSNQDVINVVEMEIFKTALWVEDKCYIREDGLFQGSSLSAPIVDLVYDDLLEFYSEFKASPSQDTLILKLADDFLIISTDQQQVINIKKLAMGGFQKYNAKANRDKILAVSSQSDDDTVIQFCAMHIFVKELEVWKHSSTMNNFHIRSKSSKGIFRSLIALFNTRISYKTIDTNLNSTNTVLMQIDHVVKNISECYKSAFKDLSINVTQNMQFHSFLQRIIEMTVSGCPITKCDPLIEYEVRFTILNGFLESLSSNTSKFKDNIILLRKEIQHLQAYIYIYIHIVN* 110203 +YLR329W MNDRLVTEEQELFTKLREIVGSSIRFWEEQLFYQVQDVSTIENHVILSLKCTILTDAQISTFISKPRELHTHAKGYPEIYYLSELSTTVNFFSKEGNYVEISQVIPHFNEYFSSLIVSQLEFEYPMVFSMISRLRLKWQQSSLAPISYALTSNSVLLPIMLNMIAQDKSSTTAYQILCRRRGPPIQNFQIFSLPAVTYNK* 060113 +YLR389C MGVSLLASSSAFVTKPLLTQLVHLSPISLNFTVRRFKPFTCLSRYYTTNPYNMTSNFKTFNLDFLKPDLDERSYRFIELPNKLKALLIQDPKADKAAASLDVNIGAFEDPKNLPGLAHFCEHLLFMGSEKFPDENEYSSYLSKHGGSSNAYTASQNTNYFFEVNHQHLFGALDRFSGFFSCPLFNKDSTDKEINAVNSENKKNLQNDIWRIYQLDKSLTNTKHPYHKFSTGNIETLGTLPKENGLNVRDELLKFHKNFYSANLMKLCILGREDLDTLSDWTYDLFKDVANNGREVPLYAEPIMQPEHLQKIIQVRPVKDLKKLEISFTVPDMEEHWESKPPRILSHLIGHEGSGSLLAHLKKLGWANELSAGGHTVSKGNAFFAVDIDLTDNGLTHYRDVIVLIFQYIEMLKNSLPQKWIFNELQDISNATFKFKQAGSPSSTVSSLAKCLEKDYIPVSRILAMGLLTKYEPDLLTQYTDALVPENSRVTLISRSLETDSAEKWYGTAYKVVDYPADLIKNMKSPGLNPALTLPRPNEFVSTNFKVDKIDGIKPLDEPVLLLSDDVSKLWYKKDDRFWQPRGYIYLSFKLPHTHASIINSMLSTLYTQLANDALKDVQYDAACADLRISFNKTNQGLAITASGFNEKLIILLTRFLQGVNSFEPKKDRFEILKDKTIRHLKNLLYEVPYSQMSNYYNAIINERSWSTAEKLQVFEKLTFEQLINFIPTIYEGVYFETLIHGNIKHEEALEVDSLIKSLIPNNIHNLQVSNNRLRSYLLPKGKTFRYETALKDSQNVNSCIQHVTQLDVYSEDLSALSGLFAQLIHEPCFDTLRTKEQLGYVVFSSSLNNHGTANIRILIQSEHTTPYLEWRINNFYETFGQVLRDMPEEDFEKHKEALCNSLLQKFKNMAEESARYTAAIYLGDYNFTHRQKKAKLVANITKQQMIDFYENYIMSENASKLILHLKSQVETKSSMKMNWTPLSIQLAS* 040206 +YLR401C MEQNAEKRSIVGDDNSTVKRQDTSPSKGIAHIKPEYIVPLKQNENQKVAIYDEEMSSDRMTNEFAGGTNKKNKNGRGKKRGQNKNRDNRQVKEQNVLCPRLIHGDISKCSFGDNCRFVHDINLYLSTKKPEVESNIFPSCPVFNSLGFCPMGFKCRFLSSHLNKEDNILISKKEIDPDAQTIWSVKGEVNHISPERKLDLIKRRFPFTKSNEILEIIDSFQQECRDSMKPEEEVESTPQLKKQDPDVEQPVAPQVEQRNKELSEHRMKQREVYLKYKDTRYFAQEKKPLDLYHKKIVSPLTTVGNLPYRRLMRKLGADVTYSEMALAVPLIQGTNSEWALPKAHTSEFPGFGVQVACSKAWQAAKAAEALANSVSEISEINLNSGCPIDLLYRQGSGSALLDNPARMIRCLNAMNYVSKDIPITVKIRTGTKEGHPIAEGLVKRLVNETDVAAITLHGRSRQQRYTKSADWDYVSQVADTLRSAEADFIETEQGKEGRDSKNRIQFVGNGDVNNFEDWYRYLNGNENIDSVMVARGALIKPWIFEEVESQQYLDKTSTERLDILRDYAQFSMEHWGTDEYGISQCRRFFCEFMSFFHRYVPWVFVKDTL* 060113 +YLR402W MKLFKNGARAFCILNFPSLFGATIPLPGLSALSLFIPCTITRQFLRHVLWNDGTGGDWVPNSAAFPCARWSAVGKRNKTRLRRARGQDFVSYIIRSNFESIEIWNKWAMHSLKGDFVSNNVTISHCHLPLSPATAIAIIICFRIVTDLKLSRLTYAFYLPGPISFLPVIPI* 110203 +YLR407W MTVSTSKTPKKNIKYTLTHTLQKWKETLKKITHETLSSIDDSSGSDEKIEALFTVSQPAVVASKGIDRDSGASMSQVGGGVNSTLEMKLTDESEESSSANNTTTTASHTLSNSKKSTQNFENYNVVEERIKLAQKSKAPFCNAEKIWKRRRQLWTQPTEQSESANNDGVTRREIFQAIPQEYYARVYKKLVVDDKPLREPLNLEDALQVINAGWTETRKWANAAKACHD* 110203 +YLR445W MSDTTEVPRQSSENDQDNNLERTNSLKSPDVTNNIPSLFKLAAEWQINNPQETFQNHILENDVLKKINEITHLIRESYKDLSSQDGMMSKQQQEKMDWDLFCTVPVNIIEQYTKDMDEIYEKMERLAKVSIGRN* 040206 +YML017W MSLEEFLGNDTLGESVWDEEDINLDAISNTTNIDILKQTKAGEHQRDGHQQHPHGGHGPMNRSRFSNAGPFGGGSMGDFANHHHPLQHQQGPPYIVKFSDLPPRFSNFDIEDLFQAKFTKFIKFKLFWEINKNPSISTLKSGSIFDQNFKRDSKVAFVELYTSRDMDKILNYWTTPLKEIYHITTAPAEFEDFKDYSTKVKLLTDPKDDAGKPFITKTQRSKSNPFGSAKPVDTQSKILDIEEKMENLHVEDTTTLRASLIPSSDSMATTATGSKITILKKQTPTEEESHSATPTPKPLSYSEVVERSVVNETSKKGTPLSKLDSPALELQSKPDKSDEFKGGDEQGFEKGGDDKAQLDVSNDKDKGSETDVDKQFTFKNVEREHSMSRTKYNGNHNNNNGNFRGSNRYRGGPNGSSYKGGHNNRGNRGGYRGGSSYNNNNNNTNDNNNNNNNSSSNNNNGSRYHDRQNNEEGLTSDSSLDASGNKKNDFTNSTSNTQQYSIFKPASGFLGQGNNDSIRNNGRGNYNSSGMNGGSRGRGFGRGRGFGRGAYNNRGSRGGRGSSGNYSNYNNRTTDMPL* 040206 +YML036W MVVSIIPQFPDIKVSLALFEQVKNAKEIRSKMSELSTSFAFIDPRLVCSGEQMYSAIYKTLIEVKYNKMRTRNLNSECVLCLSPTSNISDAFLKFGIKDDSSQLICLKFHTNTDDVDKEQLRTIMTSIVKGQEIEFNDDNLSRFYDEALIRKVCFNNKFEVKTSTASPETHCTNFTFVFLLFCFYLLDL* 070713 +YMR059W MKDIINCRREITSRRLRKIRMATTDIISLVKNNLLYFQMWTEVEILQDDLSWKGNSLRLLRGRPPHKLSNDVDTEHENSLSSPRPLEFILPINMSQYKENFLTLECLSQTFTHLCSPSTERILLAIINDDGTIVYYFVYKGVRKPKRN* 060512 +YMR147W MAARNRRKNNKKKSLLVTSAAQEKNATYVLVAEELHKKTIDLNMGTETPLTENHENPIPAKEFKHQQKLEPIDEHDDGEDELSIKFKSMTKSSGPITEAEVQKLLLSYAFTSAAIQEDENEKESRHYPIKPPSPSASSLSAYFQSFVEKCKQVFYNFSLQTVEKLNALQNSLYEVFWIIFIYLNYWFPNVGDYVRYVCRSFSRHNEIAQLLTRIFTYNINHLH* 210421 +YMR242C MPQKWKMAHFKEYQVIGRRLPTESVPEPKLFRMRIFASNEVIAKSRYWYFLQKLHKVKKASGEIVSINQINEAHPTKVKNFGVWVRYDSRSGTHNMYKEIRDVSRVAAVETLYQDMAARHRARFRSIHILKVAEIEKTADVKRQYVKQFLTKDLKFPLPHRVQKSTKTFSYKRPSTFY* 070713 +YMR262W MNKLVDAHCHVITDPDNTFCGDDGGSQGTLRCVMSSNPYDWNNLKKLAGRSTSKNDICVGFGVHPWYSHLFYVGSRRDKVSHYQDVLEYKNEEQFDSLVQVLPEPLDLEEYIKREFNDTLVSVIGEIGLDKLFRLPANGFYMQNEKARLTTVKVKLSHQETVFRRFWRLARHTSKPISIHDVKCHGKLNDICNEELLTYHSVKICLHSYTGSKETLLGQWLKKFPPDRIFVSLSKWINFKDPEEGDALVRSLPSTCILTETDYPIDNPDPSYQKALTEQLQYLNAQIARAWDETLDASQAALRVYENFQKFIK* 110203 +YMR268W-A MDSKEYLISYGWKEGEAFREGGLKRPILVKHKRDKKGLGNAPGGNDGEAWWERLFDGHLKNLDVSTDSNNGSIKFTPK* 040305 +YMR269W MAVLNLLQNEAVATAVSKSSSPLYRWFVKGEGLKGTITNLGKKEEASFVVSSASSSKGKKRRRRDEDDNKVKRKKLKKDKKTSNDSESKKKKKKKSKKESKKGKKSKHSSDEGDKSKHKKSKKSKKHKKEESSARRDRKEHI* 040305 +YMR290W-A MAFKVGCDNFSSSNFSTQVVCSPSGAALFCFEVLFSSTTGSSVDSESLERLFDGVAILLLLILLSLSNYYSIQLSNSYVLKYRVYTIKSHLIAKANIEKKKKKKRKRQIKNFQFG* 110203 +YMR299C MDNCNAWDKLLSQNESTINSTETATITAIIYSPSSKTLHQFINICFPEGSNSILDTTLINYATIGWTNDLKENYSVDVYTLIRNTDDALDLLKPFLQEHSSKVRWLILLDWTLNDQKLWLNELSYAFNKIKQLNDDNEFSVWCLNSGEILNLQRHTTVWQSVHIDFILQTLRSFCYFNDSSLFYICEDHTEEKREEAQRLKYQELLKHFCEDRDMKDHIEMVTRSEILIPKGCDSIGLIKTVDERFEPTEVKEQHFLARYMDFIPTIDKIREDRKTTSGIDLDKLYPLEVFKVNIQEELGKMFAKYRENSRI* 110203 +YMR317W MGSSGSKSTTATTTSHSSTTTTSSTTSTTTPTTTSTTSTTSTKVTTSPEIIVSSSSTLVSSVVPEFTSSSSLSSDTIASILSSESLVSIFSSLSYTSSDISSTSVNDVESSTSGPSNSYSALSSTNAQLSSSTTETDSISSSAIQTSSPQTSSSNGGGSSSEPLGKSSVLETTASSSDTTAVTSSTFTTLTDVSSSPKISSSGSAVTSVGTTSDASKEVFSSSTSDVSSLLSSTSSPASSTISETLPFSSTILSITSSPVSSEAPSATSSSVSSEASSSTSSSVSSEAPLATSSVVSSEAPSSTSSVVSSEAPSSTSSSVSSEISSTTSSSVSSEAPLATSSVVSSEAPSSTSSSVSSEISSTTSSSVSSEAPLATSSVVSSEAPSSTSSSVSSEAPSSTSSSVSSEAPSSTSSSVSSEISSTKSSVMSSEVSSATSSLVSSEAPSAISSLASSRLFSSKNTSVTSTLVATEASSVTSSLRPSSETLASNSIIESSLSTGYNSTVSTTTSAASSTLGSKVSSSNSRMATSKTSSTSSDLSKSSVIFGNSSTVTTSPSASISLTASPLPSVWSDITSSEASSISSNLASSSAPSDNNSTIASASLIVTKTKNSVVSSIVSSITSSETTNESNLATSSTSLLSNKATARSLSTSNATSASNVPTGTFSSMSSHTSVITPGFSTSSASLAINSTVVSSSLAGYSFSTPESSPTTSTLVTSEAPSTVSSMTTSAPFINNSTSARPSPSTASFITESTSSISSVPLASGDVTSSLAAHNLTTFSAPSTSSAQLVSKSTTSSSILVTPRIDRSGNSSTASRIATSLPNKTTFVSSLSSTSAHARNIFNSTVLATAKQIETLTSTVNCSNPTPNYNITKTVIVSRETTAIGTVTSCSGGCTKNRKSTTLITITDIDASTVTTCPEKEVTSTTSGDEAEHTTSTKISNFETSTFSESFKDMKTSQETKKAKPGSETVRSSSSFVEKTSPTTKASPSTSPSESKAAGNTSVATNASPSTSPSESQGTGSTSVEGAKSKSTKNSEGVSTTKAKNTSTVAKSSTESPIGRGETTLETIIVSSQKSLLTSQLSSSTEKVNRSTTKPTAAIHGTSSSAKQSTTYTVSTAKENTGASLNINMKAFVIGAIALVA* 110203 +YNL004W MSDDHGYERDNHLSRRSGNYNGRRKFADTYRGSRDRGEYRGGRERSDYRERERFNNRDNPRSRDRYDDRRRGRDVTGRYGNRRDDYPRSFRSRHNTRDDSRRGGFGSSGARGDYGPLLARELDSTYEEKVNRNYSNSIFVGNLTYDSTPEDLTEFFSQIGKVVRADIITSRGHHRGMGTVEFTNSDDVDRAIRQYDGAFFMDRKIFVRQDNPPPSNNIKERKALDRGELRHNRKTHEVIVKNLPASVNWQALKDIFKECGNVAHADVELDGDGVSTGSGTVSFYDIKDLHRAIEKYNGYSIEGNVLDVKSKESVHNHSDGDDVDIPMDDSPVNEEARKFTENVVGGGERNRLIYCSNLPFSTAKSDLYDLFETIGKVNNAELRYDSKGAPTGIAVVEYDNVDDADVCIERLNNYNYGGCDLDISYAKRL* 070713 +YNL008C MLSNCSITRDVFSFFHNKTGNLNYLDNTTQKPEVFVSPNSTIVSAPTLDSFQALMEKGNFTTLQLAKVGIRMFFSYSVSKYAVLCFSTAIILNRLTVMSSLRSNSTNIRLPLWSKTLLHLVATLSLVKALLQILSQFGLMHELHVSDTDFYALSVYLFVALSDCIEIFISSTTNVPSLICSDFSIWGLSLNLYIISKMPAGQQHIGDNVELLGAVFHRLVIHLVELFHIRAYRLCGEVILNAGFFTAFVTRTYLNGLDFINICLIHNYFPGFFYISTILLASIGIFLKALFTSNPFRSLYSRYKNLEKWWRSNNYNGEEEFNEIALSLCLLLTSNDYKIFKKSDNVKSVDEVAAFSNSYVVSGHLNQLQSTPEDLLSRKEMTTDSQLPGFARTYLGLFELVRTIILTYSRLLKNLLWSKNFESSIDKKPRVGKRKKRDLNKYVTEKNYKKFLYKPDVKELNIESDLRSLELLLPEDDSSKDYFPPRKIDESVSDEEFDSDMESQLIIDEEKELTHLSSNAVDSDDLEEIAWNISMWSILNYEMDVHNKVNGPLTRSQYGKRNPQGVLVDVVIERLLHHTNSRYMYKRLNMKDDDKLEFKFDFAFDSCDEVEEMDLSCLICKVNKRNIVTWPCRCLALCDDCRISLGYKGFATCVSCDSEVKGYSKLNIV* 110203 +YNL082W MFHHIENLLIETEKRCKQKEQRYIPVKYLFSMTQIHQINDIDVHRITSGQVITDLTTAVKELVDNSIDANANQIEIIFKDYGLESIECSDNGDGIDPSNYEFLALKHYTSKIAKFQDVAKVQTLGFRGEALSSLCGIAKLSVITTTSPPKADKLEYDMVGHITSKTTTSRNKGTTVLVSQLFHNLPVRQKEFSKTFKRQFTKCLTVIQGYAIINAAIKFSVWNITPKGKKNLILSTMRNSSMRKNISSVFGAGGMRGLEEVDLVLDLNPFKNRMLGKYTDDPDFLDLDYKIRVKGYISQNSFGCGRNSKDRQFIYVNKRPVEYSTLLKCCNEVYKTFNNVQFPAVFLNLELPMSLIDVNVTPDKRVILLHNERAVIDIFKTTLSDYYNRQELALPKRMCSQSEQQAQKRLKTEVFDDRSTTHESDNENYHTARSESNQSNHAHFNSTTGVIDKSNGTELTSVMDGNYTNVTDVIGSECEVSVDSSVVLDEGNSSTPTKKLPSIKTDSQNLSDLNLNNFSNPEFQNITSPDKARSLEKVVEEPVYFDIDGEKFQEKAVLSQADGLVFVDNECHEHTNDCCHQERRGSTDTEQDDEADSIYAEIEPVEINVRTPLKNSRKSISKDNYRSLSDGLTHRKFEDEILEYNLSTKNFKEISKNGKQMSSIISKRKSEAQENIIKNKDELEDFEQGEKYLTLTVSKNDFKKMEVVGQFNLGFIIVTRKVDNKYDLFIVDQHASDEKYNFETLQAVTVFKSQKLIIPQPVELSVIDELVVLDNLPVFEKNGFKLKIDEEEEFGSRVKLLSLPTSKQTLFDLGDFNELIHLIKEDGGLRRDNIRCSKIRSMFAMRACRSSIMIGKPLNKKTMTRVVHNLSELDKPWNCPHGRPTMRHLMELRDWSSFSKDYEI* 040709 +YNL083W MLLKNCETDKQRDIRYACLFKELDVKGNGQVTLDNLISAFEKNDHPLKGNDEAIKMLFTAMDVNKDSVVDLSDFKKYASNAESQIWNGFQRIDLDHDGKIGINEINRYLSDLDNQSICNNELNHELSNEKMNKFSRFFEWAFPKRKANIALRGQASHKKNTDNDRSKKTTDSDLYVTYDQWRDFLLLVPRKQGSRLHTAYSYFYLFNEDVDLSSEGDVTLINDFIRGFGFFIAGGISGVISRTCTAPFDRLKVFLIARTDLSSILLNSKTDLLAKNPNADINKISSPLAKAVKSLYRQGGIKAFYVGNGLNVIKVFPESSIKFGSFEVTKKIMTKLEGCRDTKDLSKFSTYIAGGLAGMAAQFSVYPIDTLKFRVQCAPLDTKLKGNNLLFQTAKDMFREGGLRLFYRGVTVGIVGIFPYAALDLGTFSALKKWYIAKQAKTLNLPQDQVTLSNLVVLPMGAFSGTVGASVVYPINLLRTRLQAQGTYAHPYVYNGFKDVLLKTLEREGYQGLFKGLVPTLAKVCPAVSISYLCYENLKKFMNLE* 100105 +YNL083W MLLKNCETDKQRDIRYACLFKELDVKGNGQVTLDNLISAFEKNDHPLKGNDEAIKMLFTAMDVNKDSVVDLSDFKKYASNAESQIWNGFQRIDLDHDGKIGINEINRYLSDLDNQSICNNELNHELSNEKVNKFSRFFEWAFPKRKANIALRGQASHKKNTDNDRSKKTTDSDLYVTYDQWRDFLLLVPRKQGSRLHTAYSYFYLFNEDVDLSSEGDVTLINDFIRGFGFFIAGGISGVISRTCTAPFDRLKVFLIARTDLSSILLNSKTDLLAKNPNADINKISSPLAKAVKSLYRQGGIKAFYVGNGLNVIKVFPESSIKFGSFEVTKKIMTKLEGCRDTKDLSKFSTYIAGGLAGMAAQFSVYPIDTLKFRVQCAPLDTKLKGNNLLFQTAKDMFREGGGQIILQRCHSRYSGHISLCCIRFGDFFCLKKMVYCQTGKDPEPTTRSGHSKQPGCTSNGCIQWNCRSFCCLSNQSFKNKTTSPRNICTSLCV* 040305 +YNL097C-A MTAKTKQSWNKGIWENGKQGSHQQTFLPKIWVNIYSTPTS* 051103 +YNL103W MKQEQSHEGDSYSTEFINLFGKDTATHPSSNNGANNNGMGSTNSLDQFVATASSSSSLVTSSENRRPLIGDVTNRGNTNLYDHAVTPEILLEQLAYVDNFIPSLDNEFSNVDWNVNTTHNNANNNGADTFSSINANPFDLDEQLAIELSAFADDSFIFPDEDKPSNNNNNSNNGNDDHSNHDVLHEDPSTNNRQRNPHFLTQRRNTFLTSQYDQSKSRFSSKNKRNGNNGETNNFGDNMQNNHPFEPNFMGSPSQFPADATNMTSIDHGGFTNVDITSTENNTTGDNGVDALSNLLHRTTHTPNRSSPLSNVTSAQNSSSQQRKHSESKVDSNSDNNSSNKAPNITVPDYSIIPTSVLVTLLPRVNVPNGAYNSLISAGFDNDQIDAIAAIMAYHHQKKIRENNSNNNKNINTNDSQEAPILKNINELLSVLIPPSPAETRGPTTLSTSPSFNEHGVVAEASFLSSILELGIKHPKSNNIHNQRQPSRNDHKISRESDGNNGNDNVHHNNAVIKSSTTRGDEIAKIRSEPTLNASSSDHKENSLKRSHSGDLKNKKVPVDRKYSDNEDDEYDDADLHGFEKKQLIKKELGDDDEDLLIQSKKSHQKKKLKEKELESSIHELTEIAASLQKRIHTLETENKLLKNLVLSSGETEGIKKAESLKKQIFEKVQKE* 061110 +YNL130C MGFFIPQSSFCQ*FLSVP*QVWVTHI*PFFHNLRYCAAFT*AHGKSITPTNFI*LNSAVLLKVLLFCVFLSLQSEFTDLKPSGTLK*RNSPGKILCLMLKPFI*CMHFAQEH*YLILSQLIQTS*GITNPNRPNLQLQYQSDDRSFLSNHVLRPFWRKFATIFPLWMAPNLVTLLGFCFIIFNVLTTLYYDPYFDQESPRWTYFSYAIGLFLYQTFDACDGMHARRTGQQGPLGELFDHCIDSINTTLSMIPVCSMTGMGYTYMTIFSQFAILCSFYLSTWEEYHTHKLYLAEFCGPVEGIIVLCISFIAVGIYGPQTIWHTKVAQFSWQDFVFDVETVHLMYAFCTGALIFNIVTAHTNVVRYYESQSTKSATPSKTAENISKAVNGLLPFFAYFSSIFTLVLIQPSFISLALILSIGFSVAFVVGRMIIAHLTMQPFPMVNFPFLIPTIQLVLYAFMVYVLDYQKGSIVSALVWMGLGLTLAIHGMFINDIIYDITTFLDIYALSIKHPKEI* 040402 +YNL130C MRIARIVKHLYQSDDRSFLSNHVLRPFWRKFATIFPLWMAPNLVTLLGFCFIIFNVLTTLYYDPYFDQESPRWTYFSYAIGLFLYQTFDACDGMHARRTGQQGPLGELFDHCIDSINTTLSMIPVCSMTGMGYTYMTIFSQFAILCSFYLSTWEEYHTHKLYLAEFCGPVEGIIVLCISFIAVGIYGPQTIWHTKVAQFSWQDFVFDVETVHLMYAFCTGALIFNIVTAHTNVVRYYESQSTKSATPSKTAENISKAVNGLLPFFAYFSSIFTLVLIQPSFISLALILSIGFSVAFVVGRMIIAHLTMQPFPMVNFPFLIPTIQLVLYAFMVYVLDYQKGSIVSALVWMGLGLTLAIHGMFINDIIYDITTFLDIYALSIKHPKEI* 040206 +YNL147W MHQQHSQRKKFEGPKREAILDLAKYKDSKIRVKLMGGKLVIGVLKGYDQLMNLVLDDTVEYMSNPDDENNTELISKNARKLGLTVIRGTILVSLSSAEGSDVLYMQK* 070906 +YNL172W MTSKPSTRNDYLPRETHNGEYTGDSPEWQLQINITNKIGGINGDIWLSRDGRSVKWCIEDQCLRQFTYNQKIIKAGYIDFEKTPDCFVVVLSDIAHVYMLKNGGSTTVCFPFQIGNAFWYANGVILERETSASFMDGGYDLKPIEFDLKHKYITLTDPMAPFGLISITNTFKGGINSASGNKTDILQDFQLVLFPSDKDKCIAVFLDRNSKVLRFYYSRILSSDQSRKGELTISSTKKTGLDAAGNSQKSGGISKDLRKFSHLTRRSTSINSNSHDFNAAERVLSGNVGNASGRTDIFALPSSCSRRSLSATLDRMGNNIAPTNRAAPSGFFDSSSANTATHSNITPVSQPMQQQQQEYLNQTATSSKDIVLTEISSLKLPDDIIFTSRRLSSILSKLKFLSLRFERREGLLIFHEPTHFCKIWLIDLLPDVLDSIPFKIYGNSPQNMIRLENLKLKEPSRIQAMYIHELLESCLILVSEGQNKEEYKACLYDPFVKITSPSKNISEELTKQNSLPSLQKLFPYPETSFTKLCFEAVKYITSPAFNISFIFLWQSAYSILLSRANDDVVGGLKMEHDAFSLVLSLLILPIPSSSAQEYQEYKEIYERDLFQHLKQDSEITSSVLPRIVIGLHLIREEYSLNVLCRNEHALLGQFLRFATAAMGWPDLWQSYYVPKMDSESKTFLHPREQNSTFFHPLDEPPSITKSLYSITENSSIPLCPFISFSRLVATDTQVELRITPRSFKILGLYELVHSPNFLPDYVLGILSSFKVDKDELQTYPLGILVPLQNILKILEDKLSEVRDNLELLDRADLQRCSAIINSIRSDSKEVLKRGQRDSYMLCKVPLAKNRSSLSKKPSDIYSILSEIVKSASQVPLDGSAMRMSNIQDDEDIDEGRSLKLNAGLIFSEDKRFTHVVSLLAYYRPTKTQFFTTKTEYAQILAQKKYFAKIMALRTCTNGVGWGAVAYATEKPISTQKWVIQPLNLISVFPDDTKITVKAPEDIAHDIVEWGQFHAGVSSGLRISKKATGITGSWIAFNKPKELDAYHGGFLLGLGLNGHLKNLEEWHIYNYLSPRNTHISIGLLLGMSSSMKGSMDSKLIKVISVHLVAFLPSGSSDLNIDLKLQTAGIIGMGMLYLNSRHKRMSDSIFAQLVSLLNVNDEMVADEEYRLAAGISLGLINLGAGQTKLRKWDSSLLGLGDDLPEDVYDSSDVEQNVMYEDLTTKLLEIVTSTYDVENDWIPENSQIGAVIAIMFLFLKSNNFGISNMLKVDLKEILKANINTRPELLMYREWASNMILWEFIGDDLSFIMKDVDIGVKFSELNTDLLPIYYTMAGRILAMGIRFASTGNLKIRNILLSLVDKFLPLYQYPGKQNLDFRLTISVINVLTNVIVVSLSMVMCASGDLEVLRRVKYLHEVASGPYSDLFQEIPSSKSDVSGVTQVTSNTNTPGNSDRERVDETAASLDDERSSNGSDISDPTAYLEDKKDIDDHYGKFISTNLALGFLFLGSGQYALNTSTLESIAFLSMSVLPTYTTPHPLQELKHFWSIAVEPRCLVIKDISTGDAVNNVPIELVVEEDVEKEEVIREISTPCLLPDFSKIKSIRVKMHGYFPLEVNFTKDYSASDFFSGGTIIYIQRKSESVFENKASFRNVEDIHVALKRKAAESKNYSRLNLKNEQGNTTSSQLVESLGIQDLTMVELDTLLSAGNNTALTDSESYNLGLLCSDKNSGDILDCQLELWYKSFGPHDE* 110203 +YNL175C MSETELSKEDAVTKKDNEEQVKKALLDPTKKRKAEDEIEIDLKSSIPLSKKQKRLLRRGKVTLEELNAKYNIDPKSIEEYKEDAEKKKSGASEKDAQGEESTINTPTGDESGEVVKKKKKDENKYGVWIGNLSFDTTKDDLVRFFIAKTKDNEDEKSRVTEQDITRLSMPRVAAKNSNAMKNKGFCYMFFKNVEQMKAVLELSESHLNGRNMLIKDSENYSGRPDKDDLVAMSKNPPSRILFVGNLSFDVTDDLLRKHFQHCGDIVKIRMATFEDSGKCKGFAFIDFKNEEGSTNELKDKSCRKIAGRPLRMEYGEDRSKRQVRKKVENVSRNNSSSFDISNNKGYDRAGQDNGSKPEYKRSNANRRPPVDSNNRTKSSVALATAQRGSAAIVPSQGKKVKFD* 110203 +YNL176C MNSNSTIGRTTLGESDTISLSFSEPSSSLNSRSTDVVFASTSTLVPQQGSLTSLPPVSSTATPTYYSTSLTYDETLHTSIDVSSTSTLVSSTDSSSSSEQDTYSSQYDPATSSYSIITPSMSIFSSTSPMSSSSSITSEWSSLTSTTPTLSSSATSLSSSWSSLSSPSSLLVSSSLSLSLSSSYSDTKLFSFDSRSSIFSPSTPTVISPSYTYLSSISATSFQISTTSELSSSWFSTISSPSTISNKDTTCPSSSRNTSTSFYSSSLSSTNDFSTISKSSKLSPSASSSTVSISTISVPTSSSVSSSSSKVPSNRPSSSSSSDDTTSAYSSTYTFQSLQSTTSSSIPPTTQTPSTSTISTSPIPTSSQVFNTVAISSSEDSKTIYYFYTQTYDITDSSTTFVTGLPTTIAVAKSEVTSFSAPSSTITADMSFYQHWLDGSLDNNKNQGTSKTNTGTIVGSVVGSVGGILICVLVVWFMLVRKRKAKRHFKENDSFCHEIGRRTGFPTTAQAKEASLQAQDSGSQQRNTETASANNPFSNEFNFKARGNPPPVPPPRNVTAMNGSFQNMRSNFMDQENRFSYGSSFTYSSLGSSTQGGFSTLSSNSIRLGRGLDNDISHDERNTVQNNSQGFLREII* 110203 +YNL177C MNFHTARISQVGVISRALLSSVSRRWIHVTPISLNNSGGSLFGSITENKPKEGKNRGDEDAGSFSNRLAIASDSSGEAPEVNRDSITIENDKLLQQHIISLQQPEQLASQSLLSPLKREIYEANCKINGGFYKKDTIVKLPNSSERYKLKFTKREIEVLEPSVYAQSYRIKSSMKKATLLLRLLGGLDVMKAISQCHFSNKKIAREVAELLQKGVKDGQKLGLKPEDLYISQIWTGSDGFWRKRVEFKARTRIGIISHPYIHVRCILRTKSVTKRRLAYEAHLKEQKRAPWVQLGDKPIRGVTGGVYKW* 110203 +YNL181W MPLNIIGTALLDGTDKIPYYQTIKKVAPYVLATGAIKYWSRGPSNTWERKLHGKVYLVTGATSQGMGTSVAYKMAELGAQLIILTREVDEWVTEWCEELREKTKNELIFVEKCDLSNLWEIRKFATSWLDNSPPRRLDGVIVMSGDMEPWGIPKISLPQRRSSKDGLELQIATNYVAIFHLLNLLQPSFKAQPPDRDVRIILATCWLQVVGDINIEDPLWQNAKYKSALKFFASSKLQLGLSMMELQRRLTEDIKNQKTNGPERTGKNVTITMVQPGTMRSNSLRRVISNGSVVLLIILYCILLYPILWLFTKSGRRGDQSFLYALMTPELEEVNLKDTKVKYISDCSIVKFARKEFDDEELQKKLFDNTERDILQLEKKVAAKRNANKTGNQNSKKKSQNKSRKDD* 110203 +YNL186W MTTQESIKPLVDRILSNPLQFNAAMISNKSNNNDTSAAPENSSYIVIGKQHNNNSNSTAIAATAESKQIKENNLIDRPNGKKTNTVPKSMAEALLLYTSKNDKDAADATGAKKSAELSTELSTEPPSSSSEDDKVGKEEEEEGEIFHEARDYVEPRKASLKERDNADKGDGEDIGEDIGEDIGEDIGEDIGEDIGENLGSPLATIDDSSNENEKEKRKELSTSISSDDEIEDDEDEDDMDYDSSAMEKELPEEEENDSSSKISEGEKKSLYQDLMENSTVEVNRYEPVNNTKENGNRNPKGEEEEEEEEDLKHKSRSITPPVTISNLSNFYQFNENINDRGSLNSTRIVKNWGDKFTNLKPRGLLNHGVTCYTNAAVQAMLHIPSIQHYLFDILMGKYDSTISKNSVSYTLAETSKKMWLPVSKNPRKNVSASYINPKHLISRLDDINCMMSEWQQEDSHEYFMSLMSRLQEDSVPKGHKLIESIIYDIFGGLLKQIVTCKSCGSISKTEQPFYDLSLHLKGKKKLDPNSDLSSDSINGTSATTSTTTSNAATKPSLSSSSSVNLNNGSPFAAASDLSSANRRFSIEKSIKDFFNPELIKVDKEQKGYVCEKCHKTTNAVKHSSILRAPETLLVHLKKFRFNGTSSSKMKQAVSYPMFLDLTEYCESKELPVKYQLLSVVVHEGRSLSSGHYIAHCKQPDGSWATYDDEYINIISERDVLKEPNAYYLLYTRLTPKSVPLPLAKSAMATGNVTSKSKQEQAVNEPNNRPLKINSKKNNRKKWKKNKKRKFTK* 110203 +YNL192W MSDQNNRSRNEYHSNRKNEPSYELQNAHSGLFHSSNEELTNRNQRYTNQNASMGSFTPVQSLQFPEQSQQTNMLYNGDDGNNNTINDNERDIYGGFVNHHRQRPPPATAEYNDVFNTNSQQLPSEHQYNNVPSYPLPSINVIQTTPELIHNGSQTMATPIERPFFNENDYYYNNRNSRTSPSIASSSDGYADQEARPILEQPNNNMNSGNIPQYHDQPFGYNNGYHGLQAKDYYDDPEGGYIDQRGDDYQINSYLGRNGEMVDPYDYENSLRHMTPMERREYLHDDSRPVNDGKEELDSVKSGYSHRDLGEYDKDDFSRDDEYDDLNTIDKLQFQANGVPASSSVSSIGSKESDIIVSNDNLTANRALKRSGTEIRKFKLWNGNFVFDSPISKTLLDQYATTTENANTLPNEFKFMRYQAVTCEPNQLAEKNFTVRQLKYLTPRETELMLVVTMYNEDHILLGRTLKGIMDNVKYMVKKKNSSTWGPDAWKKIVVCIISDGRSKINERSLALLSSLGCYQDGFAKDEINEKKVAMHVYEHTTMINITNISESEVSLECNQGTVPIQLLFCLKEQNQKKINSHRWAFEGFAELLRPNIVTLLDAGTMPGKDSIYQLWREFRNPNVGGACGEIRTDLGKRFVKLLNPLVASQNFEYKMSNILDKTTESNFGFITVLPGAFSAYRFEAVRGQPLQKYFYGEIMENEGFHFFSSNMYLAEDRILCFEVVTKKNCNWILKYCRSSYASTDVPERVPEFILQRRRWLNGSFFASVYSFCHFYRVWSSGHNIGRKLLLTVEFFYLFFNTLISWFSLSSFFLFFRILTVSIALAYHSAFNVLSVIFLWLYGICTLSTFILSLGNKPKSTEKFYVLTCVIFAVMMIYMIFCSIFMSVKSFQNILKNDTISFEGLITTEAFRDIVISLGSTYCLYLISSIIYLQPWHMLTSFIQYILLSPSYINVLNIYAFCNVHDLSWGTKGAMANPLGKINTTEDGTFKMEVLVSSSEIQANYDKYLKVLNDFDPKSESRPTEPSYDEKKTGYYANVRSLVIIFWVITNFIIVAVVLETGGIADYIAMKSISTDDTLETAKKAEIPLMTSKASIYFNVILWLVALSALIRFIGCSIYMIVRFFKKVTFR* 110203 +YNL193W MGPPKNFKHFSKSNKHKKEQKALITQEDFYLAAIDCEEQADRWLLSDIKKCLRFYLKALEHYENGLTALDSTQEGKYNIYYNETRLFLQIYTDYLANNGYINILQYVKMDDMPDLSNLVLSVPQIIQRFEIVYETFPEQRTWDLQFNLLTCYLTLIESLDDTVSPTVAMEGADILTLTNKYIEIFQHLVNYLLQELQNWSENAEQDSDDTDTELQRDTLDEDAMQVTRDGSGIRTNGPVQPPAEVMDVSEQVTPSSLTEVLANSLKFNHALMELVIESKISIEKNVETKILNPIQINFLEDTTNKFYLQLRDIIDSISAAIPLDLKEIGLAKTLIEGLNIISSGTFESLQDFVLQTVSFTDLLDEKDVQGKIDLSLIRVDIVEFAILCLNDYSSDASWKLSGLLTKVLTEARTLLTDYRNQILFLKNQTLNEQLSHVVFQLCDVLVNSSDNELRRYAIKESTEKSQKTPGGAHTLNILMKNANVFLNNAVAISSKQCGLQETIIDKLKRNYIHNQAKERLLFLQRLEQKSNEDDGTSASPTAMTFDMPPEHPFYSHYR* 110203 +YNL195C MLGLGQSAQAYASDDALNMNQAKDKTYSVPGCGRASDLKYPHRDGHSSSHEQRSGILPTECPGPTLNTGAGSIGIPGCGKVTNRVVSDYNKNARSTLANFDSSKMTEARMNSKNVPIGCQDTSDPHFNGPIDQHVPGAGSPQSQPHHIDAWNSVSSRRADNNNQDMMDPQTASSDRYNEKMMREENSGVSASSYTTKVQGYPASIPSFNQETEEKETYATVWVIGTMSQETKLWMRLILRLTF* 040305 +YNL202W MDTMNTANTLDGKFVTEGSWRPDLFKGKVAFVTGGAGTICRVQTEALVLLGCKAAIVGRDQERTEQAAKGISQLAKDKDAVLAIANVDVRNFEQVENAVKKTVEKFGKIDFVIAGAAGNFVCDFANLSPNAFKSVVDIDLLGSFNTAKACLKELKKSKGSILFVSATFHYYGVPFQGHVGAAKAGIDALAKNLAVELGPLGIRSNCIAPGAIDNTEGLKRLAGKKYKEKALAKIPLQRLGSTRDIAESTVYIFSPAASYVTGTVLVVDGGMWHLGTYFGHELYPEALIKSMTSKL* 060512 +YNL208W MSANEFYSSGQQGQYNQQNNQERTGAPNNGQYGADNGNPNGERGLFSTIVGGSAGAYAGSKVSNNHSKLSGVLGAIGGAFLANKISDERKEHKQQEQYGNSNFGGAPQGGHNNHHRQTITTITVDLAVQAALAVKVSEDKAHKDLEVLVHKSLVVQVAKDSVVQILKNSAARWPRIRWSKPSGIRGPRSSRIQWRFTLVNGSTE* 040305 +YNL243W MSRIDSDLQKALKKACSVEETAPKRKHVRACIVYTWDHQSSKAVFTTLKTLPLANDEVQLFKMLIVLHKIIQEGHPSALAEAIRDRDWIRSLGRVHSGGSSYSKLIREYVRYLVLKLDFHAHHRGFNNGTFEYEEYVSLVSVSDPDEGYETILDLMSLQDSLDEFSQIIFASIQSERRNTECKISALIPLIAESYGIYKFITSMLRAMHRQLNDAEGDAALQPLKERYELQHARLFEFYADCSSVKYLTTLVTIPKLPVDAPDVFLINDVDESKEIKFKKREPSVTPARTPARTPTPTPPVVAEPAISPRPVSQRTTSTPTGYLQTMPTGATTGMMIPTATGARNAIFPQATAQMQPDFWANQQAQFANEQNRLEQERVQQLQQQQAQQELFQQQLQKAQQDMMNMQLQQQNQHQNDLIALTNQYEKDQALLQQYDQRVQQLESEITTMDSTASKQLANKDEQLTALQDQLDVWERKYESLAKLYSQLRQEHLNLLPRFKKLQLKVNSAQESIQKKEQLEHKLKQKDLQMAELVKDRDRARLELERSINNAEADSAAATAAAETMTQDKMNPILDAILESGINTIQESVYNLDSPLSWSGPLTPPTFLLSLLESTSENATEFATSFNNLIVDGLAHGDQTEVIHCVSDFSTSMATLVTNSKAYAVTTLPQEQSDQILTLVKRCAREAQYFFEDLMSENLNQVGDEEKTDIVINANVDMQEKLQELSLAIEPLLNIQSVKSNKETNPHSELVATADKIVKSSEHLRVDVPKPLLSLALMIIDAVVALVKAAIQCQNEIATTTSIPLNQFYLKNSRWTEGLISAAKAVAGATNVLITTASKLITSEDNENTSPEQFIVASKEVAASTIQLVAASRVKTSIHSKAQDKLEHCSKDVTDACRSLGNHVMGMIEDDHSTSQQQQPLDFTSEHTLKTAEMEQQVEILKLEQSLSNARKRLGEIRRHAYYNQDDD* 110203 +YNL260C MVRNRFIRKMKKNLFKSNHLSYLKSKWKVKITGQIKMDFDNLLNLEEQYYQEGFLEGQNENIKQSFLEGKQYGLQVGFQRFTLLGQMEGLCDVIESYGLHSPTLEKNIHTIRTLMKGLKMNNDDESVMEFERVLIKLKNKFRTILITLHRLVKDKRTPTVTFEVFEDVSRAIAGEIRGFVENEDIAKNKTKQNQAQSW* 210421 +YNL271C MLKNSGSKHSNSKESHSNSSSGIFQNLKRLANSNATNSNTGSPTYASQQQHSPVGNEVSTSPASSSSFRKLNAPSRSTSTEARPLNKKSTLNTQNLSQYMNGKLSGDVPVSSQHARSHSMQSKYSYSKRNSSQASNKLTRQHTGQSHSASSLLSQGSLTNLSKFTTPDGKIYLEMPSDPYEVEVLFEDIMYKRNIFQSLSEDKQEALMGYSIEKKWLIVKQDLQNELKKMRANTTSSSTASRTSMASDHHPILTANSSLSSPKSVLMTSASSPTSTVYSNSLNHSTTLSSVGTSTSKGKKLVSGSLKKQPSLNNIYRGGAENNTSASTLPGDRTNRPPIHYVQRILADKLTSDEMKDLWVTLRTEQLDWVDAFIDHQGHIAMANVLMNSIYKTAPRENLTKELLEKENSFFKCFRVLSMLSQGLYEFSTHRLMTDTVAEGLFSTKLATRKMATEIFVCMLEKKNKSRFEAVLTSLDKKFRIGQNLHMIQNFKKMPQYFSHLTLESHLKIIQAWLFAVEQTLDGRGKMGSLVGASDEFKNGGGENAILEYCQWTMVFINHLCSCSDNINQRMLLRTKLENCGILRIMNKIKLLDYDKVIDQIELYDNNKLDDFNVKLEANNKAFNVDLHDPLSLLKNLWDICKGTENEKLLVSLVQHLFLSSSKLIEENQNSSKLTKQLKLMDSLVTNVSVASTSDEETNMNMAIQRLYDAMQTDEVARRAILESRALTKKLEEIQAERDSLSEKLSKAEHGLVGQLEDELHERDRILAKNQRVMQQLEAELEELKKKHLLEKHQQEVELRKMLTILNSRPEESFNKNEGTRGMNSSLNSSEKANIQKVLQDGLSRAKKDYKDDSKKFGMTLQPNKRLKMLRMQMENIENEARQLEMTNFAEFEKDRLEPPIHIKKPKVKKMKNKDRKPLVKPQEADVNKLNDLRRALTEIQMESNDISKFNVEERVNELFNEKKSLALKRLKELETKYKGFGIDFNVDEIMDSPKKNTGDVETEEDANYASLDPKTYQKKLDEINRITDQLLDIQTQTEHEIQVEEDGESDLSSSSSDDESEEIYQDASPTQELRSEHSELSSGSGPGSFLDALSQKYGTGQNVTASAAFGENNNGSGIGPLHSKVEKTFMNRLRKSTVSSAPYLEELTQKVNKVEPYEQNEDEGLDKKSLPENSTASAASAFDKAEKDMRQHVENGKQGRVVNHEEDKTADFSAVSKLNNTDGAEDLSTQSSVLSSQPPPPPPPPPPVPAKLFGESLEKEKKSEDDTVKQETTGDSPAPPPPPPPPPPPPMALFGKPKGETPPPPPLPSVLSSSTDGVIPPAPPMMPASQIKSAVTSPLLPQSPSLFEKYPRPHKKLKQLHWEKLDCTDNSIWGTGKAEKFADDLYEKGVLADLEKAFAAREIKSLASKRKEDLQKITFLSRDISQQFGINLHMYSSLSVADLVKKILNCDRDFLQTPSVVEFLSKSEIIEVSVNLARNYAPYSTDWEGVRNLEDAKPPEKDPNDLQRADQIYLQLMVNLESYWGSRMRALTVVTSYEREYNELLAKLRKVDKAVSALQESDNLRNVFNVILAVGNFMNDTSKQAQGFKLSTLQRLTFIKDTTNSMTFLNYVEKIVRLNYPSFNDFLSELEPVLDVVKVSIEQLVNDCKDFSQSIVNVERSVEIGNLSDSSKFHPLDKVLIKTLPVLPEARKKGDLLEDEVKLTIMEFESLMHTYGEDSGDKFAKISFFKKFADFINEYKKAQAQNLAAEEEERLYIKHKKIVEEQQKRAQEKEKQKENSNSPSSEGNEEDEAEDRRAVMDKLLEQLKNAGPAKSDPSSARKRALVRKKYLSEKDNAPQLLNDLDTEEGSILYSPEAMDPTADTVIHAESPTPLATRGVMNTSEDLPSPSKTSALEDQEEISDRARMLLKELRGSDTPVKQNSILDEHLEKLRARKERSIGEASTGNRLSFK* 110203 +YNL299W MTRLKAKYSPTKGKRKEDKHTKRMRKSSFTRTQKMLEVFNDNRSHFNKYESLAIDVEDDDTFGNLVLMENDKSDVDIPVIEEVTSSEDEQRAESSKRNNSLEDNQDFIAFSDSSEDETEQIKEDDDERSSFLLTDEHEVSKLTSQQSLNTESACNVEYPWIRNHCHSKQRRIADWLTSEIKDFVHYISPSKNEIKCRNRTIDKLRRAVKELWSDADLHVFGSFATDLYLPGSDIDCVVNSRNRDKEDRNYIYELARHLKNKGLAIRMEVIVKTRVPIIKFIEPQSQLHIDVSFERTNGLEAAKLIREWLRDSPGLRELVLIIKQFLHSRRLNNVHTGGLGGFTVICLVYSFLNMHPRIKSNDIDVLDNLGVLLIDFFELYGKNFGYDDVAISISDGYASYIPKSCWRTLEPSRSKFSLAIQDPGDPNNNISRGSFNMKDIKKAFAGAFELLVNKCWELNSATFKDRVGKSILGNVIKYRGQKRDFNDERDLVQNKAIIENERYHKRRTRIVQEDLFINDTEDLPVEEIYKLDEPAKKKQKAKKDKREGEIKKSAIPSPPPDFGVSRSKLKRKVKKTDQGSLLHQNNLSIDDLMGLSENDQESDQDQKGRDTLRDKMRNHHWKLRQ* 051103 +YNL304W MRSPSLNKSGAFGRSGSSGSSTVIEPSNIKLLLIGDANVGKTAMILSYCRELLTRAEMSRSARLRHQQQQQHKDLGLKKTVVNHRLSMKEKRKRYSSNDFEKEFKDINHFADETSDFGNPNIGDDNNHEMADPNEIVIETRSTIGIDIKTNLVNIDNRFFNVILWDTAGQERYQNAIIPSLYKKTNAVILTYDITNAKSFQSCMERWIVQALENFSSQDLLKARFFLVGNKIDLYKERQVTHYDVVQMVQEMQLKHGIKISGNFEVSCKWVNVVERTMNMIILDLVENGCFENNDPCVSITTSDDVQGHEQEFHDTVEEPFNFTRQRQHQLEKNNTVDITKPNDDIANNQSICCV* 051111 +YNL310C MRGKVKERHVGFKGSAILKQHRCNWNIKRLNMIPRTRTLLQSKIPITRYFARCWAPRVRYNVCRTLPAAALHTNIIAHNEVKKDDKKVHLGSFKVDKPKMMIAFTCKKCNTRSSHTMSKQAYEKGTVLISCPHCKVRHLIADHLKIFHDHHVTVEQLMKANGEQVSQDVGDLEFEDIPDSLKDVLGKYAKNNSENASQLPHPSQK* 060512 +YNL327W MNKLLLHLVRVISILGLANALTQTQPILKDIQITDSYTKTKECTDPDHWFIIEGQLSIPKGSQQNITFQVPDAFSSFPQEPFSIKHNSNSVATISRPDKSTNNFTISIPEKSSEDITTTFNFLAQLTSDAKSKVTEPKSIVYSFYSENTMFNDVIDYVAKNTSAITTDGGIYKTNNTAWFTVDLPMRTFRNPVYLTSQTSSSSDYVFDTSLTKFEVVTAVDSFNEPINAIPYTTVHDYSTEDEIRCLFNSTISGGLYFRVTYFTKKLSTSSISNTVELTYPDEGTSVRLLGKRDTSTTLASELYSESAANIDSTTSDDTTSSDAAITPTYSNSTLSSYTSQSSAIPEVAVTASLSSGILSSTVDGASTSADASMSAVSTVSSSSEQASSSSISLSAPSSSNSTFTTPSSSLSATETYSIISSASISVTQASYIDNSTTTAVTQSTSTIAVSSAEKLSSTLSYTSNVTISVSSATQHTTTPSYVSNSTTLSSSSVLESVISSPYLANTTVSGASSASQSTNPPYVSNSTTSSATQLATIAPFAINITGTSISSSITNTSSVSSTTSSLSSGPFVSNTAVASGSYILTTTTESAQLTEIGSLIPISTITTSTTTSGTDKTGSNKVASSTEIAQSIVNNSSLSVSTINTNAATAAANARNATFTHATHSGSLQPSYHSSSLLSSTIDTKVTTATTSTSRDGSSSLAFTTGLNQSVVTGTDKSDTYSVISSTESAQVTEYDSLLPISTLKPTVVTGTSRNSTFSMVSSTKLTEATATDKGDAYSVISSTQSAQVTEYGSMLPISTLETPTVIMSTDESGYFTLTTCTESGQATEYGSLIPISTLDGSVIYTFTGESVVVGYSTTVGAAQYAQHTSLVPVSTIKGSKTSLSTEESVVAGYSTTVGAAQYAQHTSLVPVSTIKGSKTSLSTEESVVAGYSTTVDSAQYAEHTNLVAIDTLKTSTFQKATATEVCVTCTALSSPHSATLDAGTTISLPTSSSTSLSTIITWYSSSTIKPPSISTYSGAAGQLTIRIGSLLLGLISFLL* 110203 +YOL013W-A MSDFEIIVGISSLLQVIILNIQNMLEVLLEYIGIHKRRVDISTYYDNVYFFFHFICYHLLSYCIINLRISASFICDSCSLIIMSPSYAVCDNILVT* 051103 +YOL013W-B MMCIINSESFHGSQKRSGVWSSGMILALGDFLINRGTKHARGPGFNSQLAPFFTIEKYSVRRS* 051103 +YOL058W MSKGKVCLAYSGGLDTSVILAWLLDQGYEVVAFMANVGQEEDFDAAKEKALKIGACKFVCVDCREDFVKDILFPAVQVNAVYEDVYLLGTSLARPVIAKAQIDVAKQEGCFAVSHGCTGKGNDQIRFELSFYALKPDVKCITPWRMPEFFERFAGRKDLLDYAAQKGIPVAQTKAKPWSTDENQAHISYEAGILEDPDTTPPKDMWKLIVDPMDAPDQPQDLTIDFERGLPVKLTYTDNKTSKEVSVTKPLDVFLAASNLARANGVGRIDIVEDRYINLKSRGCYEQAPLTVLRKAHVDLEGLTLDKEVRQLRDSFVTPNYSRLIYNGFLLHPECEYIRSMIQPSQNSVNGTVRVRLYKGNVIILGRSTKTEKLYDPTESSMDELTGFLPTDTTGFIAIQAIRIKKYGESKKTKGEELTL* 110203 +YOL075C MSQQENGDVATELIENRLSFSRIPRISLHVRDLSIVASKTNTTLVNTFSMDLPSGSVMAVMGGSGSGKTTLLNVLASKISGGLTHNGSIRYVLEDTGSEPNETEPKRAHLDGQDHPIQKHVIMAYLPQQDVLSPRLTCRETLKFAADLKLNSSERTKKLMVEQLIEELGLKDCADTLVGDNSHRGLSGGEKRRLSIGTQMISNPSIMFLDEPTTGLDAYSAFLVIKTLKKLAKEDGRTFIMSIHQPRSDILFLLDQVCILSKGNVVYCDKMDNTIPYFESIGYHVPQLVNPADYFIDLSSVDSRSDKEEAATQSRLNSLIDHWHDYERTHLQLQAESYISNATEIQIQNMTTRLPFWKQVTVLTRRNFKLNFSDYVTLISTFAEPLIIGTVCGWIYYKPDKSSIGGLRTTTACLYASTILQCYLYLLFDTYRLCEQDIALYDRERAEGSVTPLAFIVARKISLFLSDDFAMTMIFVSITYFMFGLEADARKFFYQFAVVFLCQLSCSGLSMLSVAVSRDFSKASLVGNMTFTVLSMGCGFFVNAKVMPVYVRWIKYIAFTWYSFGTLMSSTFTNSYCTTDNLDECLGNQILEVYGFPRNWITVPAVVLLCWSVGYFVVGAIILYLHKIDITLQNEVKSKQKKIKKKSPTGMKPEIQLLDDVYHQKDLEAEKGKNIHITIKLEDIDLRVIFSAPFSNWKEGNFHHETKEILQSVNAIFKPGMINAIMGPSGSGKSSLLNLISGRLKSSVFAKFDTSGSIMFNDIQVSELMFKNVCSYVSQDDDHLLAALTVKETLKYAAALRLHHLTEAERMERTDNLIRSLGLKHCENNIIGNEFVKGISGGEKRRVTMGVQLLNDPPILLLDEPTSGLDSFTSATILEILEKLCREQGKTIIITIHQPRSELFKRFGNVLLLAKSGRTAFNGSPDEMIAYFTELGYNCPSFTNVADFFLDLISVNTQNEQNEISSRARVEKILSAWKANMDNESLSPTPISEKQQYSQESFFTEYSEFVRKPANLVLAYIVNVKRQFTTTRRSFDSLMARIAQIPGLGVIFALFFAPVKHNYTSISNRLGLAQESTALYFVGMLGNLACYPTERDYFYEEYNDNVYGIAPFFLAYMTLELPLSALASVLYAVFTVLACGLPRTAGNFFATVYCSFIVTCCGERLGIMTNTFFERPGFVVNCISIILSIGTQMSGLMSLGMSRVLKGFNYLNPVGYTSMIIINFAFPGNLKLTCEDGGKNSDGTCEFANGHDVLVSYGLVRNTQKYLGIIVCVAIIYRLIAFFILKAKLEWIKW* 110203 +YOL077C MSSIYKALAGKSKDNKSEKKQGNVKQFMNKQRTLLISSRGVNYRHRHLIQDLSGLLPHSRKEPKLDTKKDLQQLNEIAELYNCNNVLFFEARKHQDLYLWLSKPPNGPTIKFYIQNLHTMDELNFTGNCLKGSRPVLSFDQRFESSPHYQLIKELLVHNFCVPPNARKSKPFIDHVMSFSIVDDKIWVRTYEISHSTKNKEEYEDGEEDISLVEIGPRFVMTVILILEGSFGGPKIYENKQYVSPNVVRAQIKQQAAEEAKSRAEAAVERKIKRRENVLAADPLSNDALFK* 110203 +YOL126C MILLLILFPCIYFLPFCINRTVRSSPEYSAADYYKSSIQYHKSYSNMPHSVTPSIEQDSLKIAILGAAGGIGQSLSLLLKAQLQYQLKESNRSVTHIHLALYDVNQEAINGVTADLSHIDTPISVSSHSPAGGIENCLHNASIVVIPAGVPRKPGMTRDDLFNVNAGIISQLGDSIAECCDLSKVFVLVISNPVNSLVPVMVSNILKNHPQSRNSGIERRIMGVTKLDIVRASTFLREINIESGLTPRVNSMPDVPVIGGHSGETIIPLFSQSNFLSRLNEDQLKYLIHRVQYGGDEVVKAKNGKGSATLSMAHAGYKCVVQFVSLLLGNIEQIHGTYYVPLKDANNFPIAPGADQLLPLVDGADYFAIPLTITTKGVSYVDYDIVNRMNDMERNQMLPICVSQLKKNIDKGLEFVASRSASS* 061006 +YOL138C MSLSPHVENASIPKGSTPIPKNRNVSSIGKGEFLGSSSSNNSSFRMNHYSNSGQPSVLDSIRRPNLTPTFSYSNGVYMPESHRTSSFNDSYLPYDKNPYAKTTGSMSNKSNMKIKTKKNAINTNTRKSSGLIYTTKVDKELSSIDKVNDPNINGLVCAGKTHLGLYKFSPSDRSIKCVHDFITPNSNTSTRGTTSLLPKLSKRTRQNKFSTIADVKTGFNNYKNCIAVCNNSTAISIYDLNKSSSIDNPLITSLCEHTRSINSFDFNMVESNLIISGGQDSCVKIWDLRSNKSKSSNRSDISINTASDSIRDVKWMPGYNFASKNDQGSSTYGNLKSGYKFASIHDSGYLLKFDLRQPAQYEKKLNAHTGPGLCLNWHPNQEYIATGGRDGKSCLWFVGDNANAAENTVLNYGNSPSLHAPNTSLNNSGSLAFPKLTINTGYPVTKLKFKPAYSSNIYNSLLGISSMGDEAEVRIYSLARKYIPKHVLLSETPSLGLVWWDENLIFNIDKGTRINGWDINKEPTVLENLSKNTTTWRDLDGNGLLSVGQEIGSYEVVEPELQPTSSTTCKKHPGTIKNPKNGNPENQGIIGGIKKGFSHTGLTSFTPERPPTLKAGPTFSTKSLTLASGASSFNSSSASLTSLTPQTENREEIAIEPPCIITLDIPQIFNNIRLTKIAHSRKKNVISESSSMKNSPVEKFKYLARQLKFSYIREHNVSDSADTAYKNDIENIDVVKNATETHGDNTTTTNNNDDGDDDDDDDDDDKIIESHLLKKYNFPENNTWATLMNEKVNNKKSKRNSSSSREFDEKDVRSSISSISASRQSHDRARKIDKNVEAELQEKIQTLVDLISIATHNASVYLSIDDLTNFKIWILIRDSLLWDLKWMTSSQISSDNASNMDANESSDFEAGENLKTGKEFPEEDGAGTSGAESLVEERPQAFRANSDEPSDAEKKPVSKLKEQLKNTEIIPYAQPNEDSDEVLTKLKELQNQRLESRTKMGETVSDDVIIEEDEHEHQEEEQPHDSPTKSAQFHASPIAKSIPILQKREHRKSFIDTFMLHSPNGYNGDTDIGNEDDNISPRFTYNSVSPRSKVSSLQSYATTTSQLETFKKLSSHTAPIIGSPRHAPSRPDSIGREQLSSSLTKKLAKCKKIIADPPWDTKKLIKQLYNQATETGNVVLTVNILFLFQTIYQITEIDIAKDAIAHFLLLLHRYELFGIAADVLKYCPFEDIMGSEGDQSSIRLFCERCGELITNESSKEKLRAEAQQTGNKKIMDKFGYWYCDSCKKKNTSCVLCERPLKKLTMVILPCGHEGHFQCIQEWFLDENEQECPGGCPGVAFI* 110203 +YOL141W MKNLTTIKQTNKNVKQERRKKYADLAIQGTNNSSIASKRSVELLYLPKLSSANNFQMDKNNKLLEYFKFFVPKKIKRSPCINRGYWLRLFAIRSRLNSIIEQTPQDKKIVVVNLGCGYDPLPFQLLDTNNIQSQQYHDRVSFIDIDYSDLLKIKIELIKTIPELSKIIGLSEDKDYVDDSNVDFLTTPKYLARPCDLNDSKMFSTLLNECQLYDPNVVKVFVAEVSLAYMKPERSDSIIEATSKMENSHFIILEQLIPKGPFEPFSKQMLAHFKRNDSPLQSVLKYNTIESQVQRFNKLGFAYVNVGDMFQLWESADEATKKELLKVEPFDELEEFHLFCHHYVLCHATNYKEFAFTQGFLFDRSISEINLTVDEDYQLLECECPINRKFGDVDVAGNDVFYMGGSNPYRVNEILQMSIHYDKIDMKNIEVSSSEVPVARMCHTFTTISRNNQLLLIGGRKAPHQGLSDNWIFDMKTREWSMIKSLSHTRFRHSACSLPDGNVLILGGVTEGPAMLLYNVTEEIFKDVTPKDEFFQNSLVSAGLEFDPVSKQGIILGGGFMDQTTVSDKAIIFKYDAENATEPITVIKKLQHPLFQRYGSQIKYITPRKLLIVGGTSPSGLFDRTNSIISLDPLSETLTSIPISRRIWEDHSLMLAGFSLVSTSMGTIHIIGGGATCYGFGSVTNVGLKLIAIAK* 110203 +YOL142W MSTFIFPGDSFPVDPTTPVKLGPGIYCDPNTQEIRPVNTGVLHVSAKGKSGVQTAYIDYSSKRYIPSVNDFVIGVIIGTFSDSYKVSLQNFSSSVSLSYMAFPNASKKNRPTLQVGDLVYARVCTAEKELEAEIECFDSTTGRDAGFGILEDGMIIDVNFNFARQLLFNNDFPLLKVLAAHTKFEVAIGLNGKIWVKCEELSNTLACYRTIMECCQKNDTAAFKDIAKRQFKEILTVKEE* 110203 +YOL145C MTNAMKVEGYPSMEWPTSLDIPLKASEELVGIDLETDLPDDPTDLKTLLVEENSEKEHWLTIALAYCNHGKTNEGIKLIEMALDVFQNSERASLHTFLTWAHLNLAKGQSLSVETKEHELTQAELNLKDAIGFDPTWIGNMLATVELYYQRGHYDKALETSDLFVKSIHAEDHRSGRQSKPNCLFLLLRAKLLYQKENYMASLKIFQELLVINPVLQPDPRIGIGLCFWQLKDSKMAIKSWQRALQLNPKNTSASILVLLGEFRESFTNSTNDKTFKEAFTKALSDLNNIFSENQHNPVLLTLLQTYYYFKGDYQTVLDIYHHRILKMSPMIAKIVLSESSFWCGRAHYALGDYRKSFIMFQESLKKNEDNLLAKLGLGQTQIKNNLLEESIITFENLYKTNESLQELNYILGMLYAGKAFDAKTAKNTSAKEQSNLNEKALKYLERYLKLTLATKNQLVISRAYLVISQLYELQNQYKTSLDYLSKALEEMEFIKKEIPLEVLNNLACYHFINGDFIKADDLFKQAKAKVSDKDESVNITLEYNIARTNEKNDCEKSESIYSQVTSLHPAYIAARIRNLYLKFAQSKIEDSDMSTEMNKLLDLNKSDLEIRSFYGWYLKNSKERKNNEKSTTHNKETLVKYNSHDAYALISLANLYVTIARDGKKSRNPKEQGKSKHSYLKAIQLYQKVLQVDPFNIFAAQGLAIIFAESKRLGPALEILRKVRDSLDNEDVQLNLAHCYLEMREYGKAIENYELVLKKFDNEKTRPHILNLLGRAWYARAIKETSVNFYQKALENAKTALDLFVKESSKSKFIHSVKFNIALLHFQIAETLRRSNPKFRTVQQIKDSLEGLKEGLELFRELNDLKEFNMIPKEELEQRIQLGETTMKSALERSLNEQEEFKKEQRAKIDEARKILEENELKEQGWMKQEEEARRLKLEKQAEEYRKLQDEAQKIFQVREAMAISEHNVKDDSDLSDKDNEYDEEQPRQKRKRSTKTKNSGESKRRKAAKKTLSDSDEDDDDVVKKPSHNKGKKSQLSNEFIEDSDEEEAQMSGSEQNKNDDNDENNDNDDNDGLF* 110203 +YOL152W MIEERDLVLSNGIHCIADIHSELYARLKKESQAATPWVYQKQYGKFVTYFVAVIIFLSLIKKLAFMYYDSSEEFLPEKKNSPTTPSVFLARIMTKLVAFNRYICYRKFPTLIFSYLGIPTSVGTFLVVMATTLYTLLYCFVPHPFYRPCAGFGSPPLSVRAGIMAISLVPFVFSLSGKINVIGWLVGLSYEKINIYHQWASILCLFFSWVHVIPFLRQARHEGGYERMHQRWKASDMWRSGVPPILFLNLLWLSSLPIARRHFYEIFLQLHWILAVGFYISLFYHVYPELNSHMYLVATIVVWFAQLFYRLAVKGYLRPGRSFMASTIANVSIVGEGCVELIVKDVEMAYSPGQHIFVRTIDKGIISNHPFSIFPSAKYPGGIKMLIRAQKGFSKRLYESNDDMKKILIDGPYGGIERDIRSFTNVYLICSGSGISTCLPFLQKYGPILHKTNLEVITLDWVVRHREDISWIRDEMCTLSNNLRQLFLDGKIVVRIYVCSDSTVPGIIKTFPQTIDTASDQSDLAKREKDTEFGQDDTESNSTFDKSNNEYKGLITIIPSKPDLNQVINDYQIGFRNCFICSGSDSLRYTVGNSVAVYRPRFFLTKMSKSAIYTARVLATSRKQMASTM* 060106 +YOR069W MESMLKKICQDPVLQKDKDFLLFLTSDDFSSESKKRAFLTGSGAINDSNDLSEVRISEIQLLGAEDAAEVLKNGGIDAESHKGFMSISFSSLPKYNEADEFFIEKKQKIDELEDNLKKLSKSLEMVDTSRNTLAASTEEFSSMVETLASLNVSEPNSELLNNFADVHKSIKSSLERSSLQETLTMGVMLDDYIRSLASVKAIFNQRSKLGYFLVVIENDMNKKHSQLGKLGQNIHSEKFREMRKEFQTLERRYNLTKKQWQAVGDKIKDEFQGFSTDKIREFRNGMEISLEAAIESQKECIELWETFYQTNL* 040709 +YOR074C MTMDGKNKEEEQYLDLCKRIIDEGEFRPDRTGTDANLLSEQGVKIWDGNGSREYLDKMGFKDRKVGDLGPVYGFQWRHFGAKYKTCDDDYTGQGIDQLKQVIHKLKTNPYDRRIIMSAWNPADFDKMALPPCHIFSQFYVSFPKEGEGSGKPRLSCLLYQRSCDMGLGVPFNIASYALLTRMIAKVVDMEPGEFIHTLGDAHVYKDHIDALKEQITRNPRPFPKLKIKRDVKDIDDFKLTDFEIEDYNPHPRIQMKMSV* 051202 +YOR080W MSYKFITKNKKYTPMSSPGNSGVAIDSTVLKAIELGTRLFKSGEYLQAKRIFTNALRVCDSYSQEQIMRIRNAYQLDTARPDNKRLYHPRYIKILDNICACYEKLNDLKSCLDVSQRLLKLEPGNIKCYIRCTRTLIKLKDWKRAYKTCSRGLQLCNNDSNHLRQQKQFIKNNMVQKQDGKRSYIDPLEETKIAKKKKNNNVLESLPKKKIKGSTKKTDLVGNLPIEILPIIFQRFTTKELVTLSLVCNKWRDKILYHLDCFQEFNLAPINFKNFVKFMDFLQQNFTRTYRKYILSQVKVSSRITSEELRITQLLFSKMPKCINIERLILSMPTLTTTQIFKLMVRGGTDFFTRLLELSLMITYRPDKQHELEILQTCPLLKKIELIFVNSLVPIFDGNNSVGRDGSFNVMARHTNMQISTADNDEQGIVEEKVIYSELEKITLICDKKKIKNFPLCRALLRGQFPLLQKLTITGVTFPMNNQDIMNFQWLLNFPDLKELWIEDNDNCELSKFLQLLKFSNVWKNLEKLTFRENKLYPIVNLDEDQPVTNDDEVPSMLFYKENLQNLEKLDLMGTSISGSALTRLCEQEYLDGRKLRSLNIGNCPNIQFPNNHAHTARMILDVNAVLKRLSKLEEINLSHLSSLNDSTMKSFIINVPFLENLKRLDISHNFEITGISIYEFLKKFQMDHDNEAGGQPLAYLNIDGCSQVSHITVNMIRAQNLVTQVDCVYERDVWRKFGINSYSYS* 100105 +YOR091W MIMKKFLFPSDELVKIDNISFFNQCVLLFLESKGSHSISKPLGFTHIKSQESYISKMPPKKGKQAQAAGKKKDNVDKTFGMKNKNRSTKVQKYIKQVQSQSDPKKEEMRLKKLEEKKRREAEEAERRALFNPVADQRVRAGVDPKSMVCALFKLGNCNKGAKCKFSHDLNVGRRMEKKDLYQDTRSEKENDTMDNWDEEKLRKVILSKHGNPKTTTDKVCKYFIEAVENGKYGWFWICPNGGDKCMYRHSLPEGFVLKTNEQKRLERESLEKQPKITLEEFIETERGKLDKSKLTPITIANFAQWKKDHVIAKINAEKKLSSKRKPTGREIILKMSAENKSFETDNADMPDDVTQGSAWDLTEFTDALKKADHQDDGGIKDYGDGSNPTFDIKKANSATLA* 051202 +YOR130C MEDSKKKGLIEGAILDIINGSIAGACGKVIEFPFDTVKVRLQTQASNVFPTTWSCIKFTYQNEGIARGFFQGIASPLVGACLENATLFVSYNQCSKFLEKHTNVFPLGQILISGGVAGSCASLVLTPVELVKCKLQVANLQVASAKTKHTKVLPTIKAIITERGLAGLWQGQSGTFIRESFGGVAWFATYEIVKKSLKDRHSLDDPKRDESKIWELLISGGSAGLAFNASIFPADTVKSVMQTEHISLTNAVKKIFGKFGLKGFYRGLGITLFRAVPANAAVFYIFETLSAL* 110203 +YOR140W MSEEETVSAPAPASTPAPAGTDVGSGGAAAGIANAGAEGGDGAEDVKKHGSKMLVGPRPPQNAIFIHKLYQILEDESLHDLIWWTPSGLSFMIKPVERFSKALATYFKHTNITSFVRQLNIYGFHKVSHDHSSNDANSGDDANTNDDSNTHDDNSGNKNSSGDENTGGGVQEKEKSNPTKIWEFKHSSGIFKKGDIEGLKHIKRRASSRNNSSINSRKNSSNQNYDIDSGARVRPSSIQDPSTSSNSFGNFVPQIPGANNSIPEYFNNSHVTYENANHAPLESNNPEMQEQNRPPNFQDETLKHLKEINFDMVKIIESMQHFISLQHSFCSQSFTFKNVSKKKSENIVKDHQKQLQAFESDMLTFKQHVMSRAHRTIDSLCAVNAAATAASVAPAPAPTSTSAYAPKSQYEMMVPPGNQYVPQKSSSTTNIPSRFNTASVPPSQLLYNTNRSRNQHVTYASEPAHVPNFINQPIPIQQLPPQYADTFSTPQMMHNPFASKNNNKPGNTKRTNSVLMDPLTPAASVGVQGPLNYPIMNINPSVRDYNKPVPQNMAPSPIYPINEPTTRLYSQPKMRSLGSTSSLPNDRRNSPLKLTPRSSLNEDSLYPKPRNSLKSSISGTSLSSSFTLVANNPAPIRYSQQGLLRSLNKAANCAPDSVTPLDSSVLTGPPPKNMDNLPAVSSNLINSPMNVEHSSSLSQAEPAPQIELPQPSLPTTSTTKNTGEADNSKRKGSGVYSLLNQEDSSTSSADPKTEDKAAPALKKVKM* 110203 +YOR147W MHIKVDSRFASRSIKTKGTYRLSGGGRFIKFMLITRLRVPTIKRPLLPITSHLVRHCIRTYVATNHGNVRPFITPYKSSLPVRCLIAQRHIRTFPSNDKFTTKASNIETILLRKNNEREFKQSLLADAKNFQERFKINLKWILIKNNRPFSLNEISIIASWLILSQILWLILSTTTFISFYLFVINSVFSQEYIHEKKIYERLLKWLLKDHKCSNQDLEITFSPEDKASMLVLSPDWESNSILIKRLNVRDEILDLDLKFHHINLNVSLKNWLLGRGLITNVSIYGIRGCLNLSNFINLVNSFQGDQKTENFLKTLNNVEITDSEILLKQSLSAQETPSLKFSIYNLSLPRLRLNHFISDILSAKTFSGSINNSLFNLFKRQQKLTAVIENNNKNRMASSKFDFTDNNQENYRTVTHQDDPNYVTTLRLNFININDLKFNGDGKFNWLKDGQVEILADIMLTNSTSHLSSESKYAVVDLKVTCRDLKTTFPQEPPVLSTGDSIVSLDELKPIITFINSYEGMANPILKDFSENERLTNSIIWNSPNVSINRQRKSYPLTTKVTSNSTKEIIKFHNQPNTNANEIVLRCKMVKNLSDLQLININQILDQITMELYVDLTKIVEDWEFKNKNDWMKQWGTTFASQLLLFGFGAMV* 051202 +YOR149C MMRYQWWLYLVYAIGLMLCLGPSYIHPDEHFQCIEILAMQFMKVKGTIPWEFKSKFAARSYGPLLLVYGPLFTILESFPEIQDNPALILYSMRLQNYVMYLLCYHFLIPKLIRDERKAVQFMQKSLLLTSYVTWTYQTHTFSNSIETLALISTLTVMEDMVNEKNIQRSNFKNSVILGLIFSFGVFNRVTFPAFIFLPCLILFWKFYRVHWKSFSLLLLSFSFSSCLFVLIDTNIYNNGKGFVITPLNNLKYNLNVQNLQVHGLHPRYTHLLVNLPQIVGPVLLLAIFSGYKLDKLSTYAIISGLLFLSFFQHQELRFLVPLVPLLVTNLNWTPLSSTLVNKKIFKGTWLLFNIIMAFIMGISHQAGIIQFLGDYFHFRTEQMGVHIWWKTYSPPTWMYMSNNLTVSSLINTQDGIESIDEVAFSVGNHHVIDLKGCDLPLLTETIRRLRLNGSITPLTLVTPNSMTSELKKLKRDGTINLIPKRNYLFHLDLDHLDFNDFTTFKPGLTVYSIELL* 110203 +YOR173W MSIKAERRETEARGFRLVFKYMLGRYLFIAKLKRFERVKVKKYMMGSQDLASLIGRFKYVRVLDSNPHTKVISLLGSIDGKDAVLTAEKTHFIFDETVRRPSQSGRSTPIFFHREIDEYSFLNGITDLKELTSNDIYYWGLSVLKQHILHNPTAKVNLIWPASQFHIKGYDQQDLHVVRETPDMYRNIVVPFIQEMCTSERMKWVNNILYEGAEDDRVVYKEYSSRNKEDGFVILPDMKWDGINIDSLYLVAIVYRDDIKSLRDLNPNHRDWLIRLNKKIKTIIPQHYDYNVNPDELRVFIHYQPSYYHFHVHIVNIRHPGVGEERGSGMTILLEDVIEALGFLGPEGYMKKTLTYVIGENHDLWKKGFKEEVEKQLKHDGIATSPEKGSGFNTNLG* 061006 +YOR197W MKMSLEVYLNYHQRRPTRFTIMYPGSGRYTYNNAGGNNGYQRPMAPPPNQQYGQQYGQQYEQQYGQQYGQQNDQQFSQQYAPPPGPPPMAYNRPVYPPPQFQQEQAKAQLSNGYNNPNVNASNMYGPPQNMSLPPPQTQTIQGTDQPYQYSQCTGRRKALIIGINYIGSKNQLRGCINDAHNIFNFLTNGYGYSSDDIVILTDDQNDLVRVPTRANMIRAMQWLVKDAQPNDSLFLHYSGHGGQTEDLDGDEEDGMDDVIYPVDFETQGPIIDDEMHDIMVKPLQQGVRLTALFDSCHSGTVLDLPYTYSTKGIIKEPNIWKDVGQDGLQAAISYATGNRAALIGSLGSIFKTVKGGMGNNVDRERVRQIKFSAADVVMLSGSKDNQTSADAVEDGQNTGAMSHAFIKVMTLQPQQSYLSLLQNMRKELAGKYSQKPQLSSSHPIDVNLQFIM* 060512 +YOR211C MSNSTSLRAIPRVANYNTLVRMNASPVRLLILRRQLATHPAILYSSPYIKSPLVHLHSRMSNVHRSAHANALSFVITRRSISHFPKIISKIIRLPIYVGGGMAAAGSYIAYKMEEASSFTKDKLDRIKDLGESMKEKFNKMFSGDKSQDGGHGNDGTVPTATLIAATSLDDDESKRQGDPKDDDDEDDDDEDDENDSVDTTQDEMLNLTKQMIEIRTILNKVDSSSAHLTLPSIVVIGSQSSGKSSVLESIVGREFLPKGSNMVTRRPIELTLVNTPNSNNVTADFPSMRLYNIKDFKEVKRMLMELNMAVPTSEAVSEEPIQLTIKSSRVPDLSLVDLPGYIQVEAADQPIELKTKIRDLCEKYLTAPNIILAISAADVDLANSSALKASKAADPKGLRTIGVITKLDLVDPEKARSILNNKKYPLSMGYVGVITKTPSSINRKHLGLFGEAPSSSLSGIFSKGQHGQSSGEENTNGLKQIVSHQFEKAYFKENKKYFTNCQVSTKKLREKLIKILEISMSNALEPTSTLIQQELDDTSYLFKVEFNDRHLTPKSYLLNNIDVLKLGIKEFQEKFHRNELKSILRAELDQKVLDVLATRYWKDDNLQDLSSSKLESDTDMLYWHKKLELASSGLTKMGIGRLSTMLTTNAILKELDNILESTQLKNHELIKDLVSNTAINVLNSKYYSTADQVENCIKPFKYEIDLEERDWSLARQHSINLIKEELRQCNSRYQAIKNAVGSKKLANVMGYLENESNLQKETLGMSKLLLERGSEAIFLDKRCKVLSFRLKMLKNKCHSTIEKDRCPEVFLSAVSDKLTSTAVLFLNVELLSDFFYNFPIELDRRLTLLGDEQVEMFAKEDPKISRHIELQKRKELLELALEKIDSILVFKKSYKGVSKNL* 061006 +YOR221C MLVLRKLEENYRPLNILKMQKVSSSYMAFFGRQGTSISISILKAIIRNKSREFQTILSQNGKESNDLLQYIFQNPSSPGSIAVCSNLFYQLYQILSNPSDPQDQAPKNMTKIDSPDKKDNEQCYLLGHSLGELTCLSVNSLFSLKDLFDIANFRNKLMVTSTEKYLVAHNINRSNKFEMWALSSPRATDLPQEVQKLLNSPNLLSSSQNTISVANANSVKQCVVTGLVDDLESLRTELNLRFPRLRITELTNPYNIPFHNSTVLRPVQEPLYDYIWDILKKNGTHTLMELNHPIIANLDGNISYYIHHALDRFVKCSSRTVQFTMCYDTINSGTPVEIDKSICFGPGNVIYNLIRRNCPQVDTIEYTSLATIDAYHKAAEENKD* 051202 +YOR252W MREDKIAAKKKLHQDKRVHELARVKFMQDVVNSDTFKGQPIFDHAHTREFIQSFIERDDTELDELKKKRRSNRPPSNRQVLLQQRRDQELKEFKAGFLCPDLSDAKNMEFLRNWNGTFGLLNTLRLIRINDKGEQVVGGNE* 060106 +YOR297C MLLFPGLKPVLNASTVIVNPVRAVFPGLVLSTKRSFYSINRLNAENKINDIANTSKEASSSVQMFKPPEFSQFKDSYQKDYERIAKYTLIPLTMVPFYASFTGGVINPLLDASLSSIFLIYLQYGFTSCIIDYIPKGKYPRWHKLALYCLYGGSMLSLYGIYELETKNNGFVDLVKKLWNENDDHLYIFGRN* 110203 +YOR298C-A MSQKDLATKINEKPTVVNDYEAARAIPNQQVLSKLERALGVKLRGNNIGSPLGAPKKK* 040305 +YOR306C MSSDSLTPKDTIVPEEQTNQLRQPDLDEDSIHYDPEADDLESLETTASYASTSVSAKVYTKKEVNKGTDIESQPHWGENTSSTHDSDKEEDSNEEIESFPEGGFKAWVVTFGCFLGLIACFGLLNSTGVIESHLQDNQLSSESVSTIGWLFSLFLFVCSASCIISGTYFDRNGFRTIMIVGTVFHVAGLFATANSTKYWHFILSFAIVCGFGNGIVLSPLVSVPAHYFFKRRGTALAMATIGGSVGGVVFPIMLRSFFSMKSDTDPTYGFVWGIRTLGFLDLALLTLSIILVKERLPHVIENSKDGESRWRYILRVYILQCFDAKAFLDMKYLFCVLGTVFSELSINSALTYYGSYATSHGISANDAYTLIMIINVCGIPGRWVPGYLSDKFGRFNVAIATLLTLFIVMFVGWLPFGTNLTNMYVISALYGFCSGSVFSLLPVCCGQISKTEEFGKRYSTMYFVVGFGTLVGIPITGAIISIKTTADYQHYIIFSGLATFVSAVCYIISRAYCVGFKWVRF* 110203 +YOR312C MYLAHFKEYQVIGRRLPTESVPEPKLFRMRIFASNEVIAKSRYWYFLQKLHKVKKASGEIVSINQINEAHPTKVKNFGVWVRYDSRSGTHNMYKEIRDVSRVAAVETLYQDMAARHRARFRSIHILKVAEIEKTADVKRQYVKQFLTKDLKFPLPHRVQKSTKTFSYKRPSTFY* 070713 +YOR330C MDYERTVLKKRSRWGLYVVVEQRGTSMTKLMVRSECMLRMVRRRPLRVQFCARWFSTKKNTAEAPRINPVGIQYLGESLQRQVFGSCGGKDEVEQSDKLMELSKKSLKDHGLWGKKTLITDPISFPLPPLQGRSLDEHFQKIGRFNSEPYKSFCEDKFTEMVARPAEWLRKPGWVKYVPGMAPVEVAYPDEELVVFDVETLYNVSDYPTLATALSSTAWYLWCSPFICGGDDPAALIPLNTLNKEQVIIGHNVAYDRARVLEEYNFRDSKAFFLDTQSLHIASFGLCSRQRPMFMKNNKKKEAEVESEVHPEISIEDYDDPWLNVSALNSLKDVAKFHCKIDLDKTDRDFFASTDKSTIIENFQKLVNYCATDVTATSQVFDEIFPVFLKKCPHPVSFAGLKSLSKCILPTKLNDWNDYLNSSESLYQQSKVQIESKIVQIIKDIVLLKDKPDFYLKDPWLSQLDWTTKPLRLTKKGVPAKCQKLPGFPEWYRQLFPSKDTVEPKITIKSRIIPILFKLSWENSPVIWSKESGWCFNVPHEQVETYKAKNYVLADSVSQEEEEIRTHNLGLQCTGVLFKVPHPNGPTFNCTNLLTKSYNHFFEKGVLKSESELAHQALQINSSGSYWMSARERIQSQFVVPSCKFPNEFQSLSAKSSLNNEKTNDLAIIIPKIVPMGTITRRAVENAWLTASNAKANRIGSELKTQVKAPPGYCFVGADVDSEELWIASLVGDSIFNVHGGTAIGWMCLEGTKNEGTDLHTKTAQILGCSRNEAKIFNYGRIYGAGAKFASQLLKRFNPSLTDEETKKIANKLYENTKGKTKRSKLFKKFWYGGSESILFNKLESIAEQETPKTPVLGCGITYSLMKKNLRANSFLPSRINWAIQSSGVDYLHLLCCSMEYIIKKYNLEARLCISIHDEIRFLVSEKDKYRAAMALQISNIWTRAMFCQQMGINELPQNCAFFSQVDIDSVIRKEVNMDCITPSNKTAIPHGEALDINQLLDKSNSKLGKPNLDIDSKVSQYAYNYREPVFEEYNKSYTPEFLKYFLAMQVQSDKRDVNRLEDEYLRECTSKEYARDGNTAEYSLLDYIKDVEKGKRTKVRIMGSNFLDGTKNAKADQRIRLPVNMPDYPTLHKIANDSAIPEKQLLENRRKKENRIDDENKKKLTRKKNTTPMERKYKRVYGGRKAFEAFYECANKPLDYTLETEKQFFNIPIDGVIDDVLNDKSNYKKKPSQARTASSSPIRKTAKAVHSKKLPARKSSTTNRNLVELERDITISREY* 051202 +YOR396W MQICALGNSYDAFNHDPWMDVVGFEDPDQVTNRDISRIVLYSYMFLNTAKGCLVEYATFRQYMRELPKNAPQKLNFREMRQGLIALGRHCVGSRFETDLYESATSELMANHSVQTGRNIYGVDSFSLTSVSGTTATLLQERASERWIQWLGLESDYHCSFSSTRNAEDVVAGEAASSDHDQKISRVTRKRPREPKSTNDILVAGQKLFGSSFEFRDLHQLRLCHEIYMADTPSVAVQAPPGYGKTELFHLPLIALASKGDVKYVSFLFVPYTVLLANCMIRLSRCGCLNVAPVRNFIEEGCDGVTDLYVGIYDDLASTNFTDRIAAWENIVECTFRTNNVKLGYLIVDEFHNFETEVYRQSQFGGITNLDFDAFEKAIFLSGTAPEAVADAALQRIGLTGLAKKSMDINELKRSEDLSRGLSSYPTRMFNLIKEKSEVPLGHVHKIWKKVESQPEEALKLLLALFEIEPESKAIVVASTTNEVEELACSWRKYFRVVWIHGKLGAAEKVSRTKEFVTDGSMRVLIGTKLVTEGIDIKQLMMVIMLDNRLNIIELIQGVGRLRDGGLCYLLSRKNSWAARNRKGELPPIKEGCITEQVREFYGLESKKGKKGQHVGCCGSRTDLSADTVELIERMDRLAEKQATASMSIIALPSSFQESNSSDRCRKYCSSDEDSDTCIHGSANASTNATTNSSTNATTTASTNVRTSATTTASINVRTSAITTESTNSSTNATTTASTNVRTSATTTASINVRTSATTTESTNSNTSATTTESTDSNTSATTTESTDSNTSATTTASTNSSTNATTTASTNSSTNATTTESTNASAKEDANKDGNAEDNRFHPVTDINKESYKRKGSQMVLLERKKLKAQFPNTSENMNVLQFLGFRSDEIKHLFLYGIDVYFCPEGVFTQYGLCKGCQKMFELCVCWAGQKVSYRRMAWEALAVERMLRNDEEYKEYLEDIEPYHGDPVGYLKYFSVKRGEIYSQIQRNYAWYLAITRRRETISVLDSTRGKQGSQVFRMSGRQIKELYYKVWSNLRESKTEVLQYFLNWDEKKCREEWEAKDDTVFVEALEKVGVFQRLRSMTSAGLQGPQYVKLQFSRHHRQLRSRYELSLGMHLRDQLALGVTPSKVPHWTAFLSMLIGLFYNKTFRQKLEYLLEQISEVWLLPHWLDLANVEVLAADNTRVPLYMLMVAVHKELDSDDVPDGRFDIILLCRDSSREVGE* 070209 +YPL052W MESQFILDYNVPSKNKGNNQKSVAKLLKNKLVNDMKTTLKRLIYNENTKQYKNNNSHDGYNWRKLGSQYFILYLPLFTQELIWCKLNENYFHVVLPSLLNSRNVHDNHSTYINKDWLLALLELTSNLNQNFKFEYMKLRLYILRDDLINNGLDLLKNLNWVGGKLIKNEDREVLLNSTDLATDSISHLLGDENFVILEFEC* 051216 +YPL060C-A MATPVRDETRNVIDDNISARIQSKVKTNDTVRQTPSSLRKVSIKDEQVKQYQRNLNRFKTILNGLKAEEEKLSETDDIQMLAEKLLKLGETIDKVENRIVDLVEKIQLLETNENNNILHEHIDATGTYYLFDTLTSTNKRFYPKDCVFDYRTNNVENIPILLNNFKKFIKKYQFDDVFENDIIEIDPRENEILCKIIKEGLGESLDIMNTNTTDIFRIIDGLKNKYRSLHGRDVRIRAWEKVLVDTTCRNSALLMNKLQKLVLMEKWIFSKCCQDCPNLKDYLQEAIMGTLHESLRNSVKQRLYNIPHNVGINHEEFLINTVIETVIDLSPIADDQIENSCMYCKSVFHCSINCKKKPNRELRPDSTNFSKTYYLQGAQRQQQLKSSAKEQKSWNKTQKKSNKVYNSKKLVIIDTGSGVNITNDKTLLHNYEDSNRSTRFFGIGKNSSVSVKGYGYIKIKNGHNNTDNKCLLTYYVPEEESTIISCYDLAKKTKMVLSRKYTRLGNKIIKIKTKIVNGVIHVKMNELIERPSDDSKINAIKPTSSPGFKLNKRSITLEDAHKRMGHTGIQQIENSIKHNHYEESLDLIKEPNEFWCQTCKISKATKRNHYTGSMNNHSTDHEPGSSWCMDIFGPVSSSNADTKRYMLIMVDNNTRYCMTSTHFNKNAETILAQIRKNIQYVETQFDRKVREINSDRGTEFTNDQIEEYFISKGIHHILTSTQDHAANGRAERYIRTIVTDATTLLRQSNLRVKFWEYAVTSATNIRNCLEHKSTGKLPLKAISRQPVTVRLMSFLPFGEKGIIWNHNHKKLKPSGLPSIILCKDPNSYGYKFFIPSKNKIVTSDNYTIPNYTMDGRVRNTQNIYKSHQFSSHNDNEEDQIETVTNLCEALENYEDDNKPITRLEDLFTEEELSQIDSNAKYPSPSNNLEGDLDYVFSDVEESGDYDVESELSTTNTSISTDKNKILSNKDFNSELASTEISISEIDKKGLINTSHIDEDKYDEKVHRIPSIIQEKLVGSKNTIKINDENRISDRIRSKNIGSILNTGLSRCVDITDESITNKDESMHNAKPELIQEQFNKTNHETSFPKEGSIGTKCKIPKYRQ* 141118 +YPL060C-A MATPVRDETRNVIDDNISARIQSKVKTNDTVRQTPSSLRKVSIKDEQVKQYQRNLNRFKTILNGLKAEEEKLSETDDIQMLAEKLLKLGETIDKVENRIVDLVEKIQLLETNENNNILHEHIDATGTYYLFDTLTSTNKRFYPKDCVFDYRTNNVENIPILLNNFKKFIKKYQFDDVFENDIIEIDPRENEILCKIIKEGLGESLDIMNTNTTDIFRIIDGLKNKYRSLHGRDVRIRAWEKVLVDTTCRNSALLMNKLQKLVLMEKWIFSKCCQDCPNLKDYLQEAIMGTLHESLRNSVKQRLYNIPHNVGINHEEFLINTVIETVIDLSPIADDQIENSCMYCKSVFHCSINCKKKPNRELRPDSTNFSKTYYLQGAQRQQQLKSSAKEQKSWNKTQKKSNKVYNSKKLVIIDTGSGVNITNDKTLLHNYEDSNRSTRFFGIGKNSSVSVKGYGYIKIKNGHNNTDNKCLLTYYVPEEESTIISCYDLAKKTKMVLSRKYTRLGNKIIKIKTKIVNGVIHVKMNELIERPSDDSKINAIKPTSSPGFKLNKRSITLEDAHKRMGHTGIQQIENSIKHNHYEESLDLIKEPNEFWCQTCKISKATKRNHYTGSMNNHSTDHEPGSSWCMDIFGPVSSSNADTKRYMLIMVDNNTRYCMTSTHFNKNAETILAQIRKNIQYVETQFDRKVREINSDRGTEFTNDQIEEYFISKGIHHILTSTQDHAANGRAERYIRTIVTDATTLLRQSNLRVKFWEYAVTSATNIRNCLEHKSTGKLPLKAISRQPVTVRLMSFLPFGEKGIIWNHNHKKLKPSGLPSIILCKDPNSYGYKFFIPSKNKIVTSDNYTIPNYTMDGRVRNTQNIYKSHQFSSHNDNEEDQIETVTNLCEALENYEDDNKPITRLEDLFTEEELSQIDSNAKYPSPSNNLEGDLDYVFSDVEESGDYDVESELSTTNTSISTDKNKILSNKDFNSELASTEISISEIDKKGLINTSHIDEDKYDEKVHRIPSIIQEKLVGSKNTIKINDENRISDRIRSKNIGSILNTGLSRCVDITDESITNKDESMHNAKPELIQEQFNKTNHETSFPKEGSIGTKCKIPKYRQ*ISLKTGDTSLPIKTLESINNHHSNDYSTNKVEKFEKENHHPPPIEDIVDMSDQTDMESNCQDGNNLKELKVTDKNVPTDNGTNVSPRLEQNIEASGSPVQTVNKSAFLNKEFSSLNMKRKRKRHDKNNSLTSYELERDKKRSKRNRVKLIPDNMETVSAQKIRAIYYNEAISKNPDLKEKHEYKQAYHKELQNLKDMKVFDVDVKYSRSEIPDNLIVPTNTIFTKKRNGIYKARIVCRGDTQSPDTYSVITTESLNHNHIKIFLMIANNRNMFMKTLDINHAFLYAKLEEEIYIPHPHDRRCVVKLNKALYGLKQSPKEWNDHLRQYLNGIGLKDNSYTPGLYQTEDKNLMIAVYVDDCVIAASNEQRLDEFINKLKSNFELKITGTLIDDVLDTDILGMDLVYNKRLGTIDLTLKSFINRMDKKYNEELKKIRKSSIPHMSTYKIDPKKDVLQMSEEEFRQGVLKLQQLLGELNYVRHKCRYDINFAVKKVARLVNYPHERVFYMIYKIIQYLVRYKDIGIHYDRDCNKDKKVIAITDASVGSEYDAQSRIGVILWYGMNIFNVYSNKSTNRCVSSTEAELHAIYEGYADSETLKVTLKELGEGDNNDIVMITDSKPAIQGLNRSYQQPKEKFTWIKTEIIKEKIKEKSIKLLKITGKGNIADLLTKPVSASDFKRFIQVLKNKITSQDILASTDY 150113 +YPL094C MVAEQTQENMSAVGPGSNAGASVNGGSATAIATLLRNHKELKQRQGLFQAKQTDFFRYKRFVRALHSEEYANKSARQPEIYPTIPSNKIEDQLKSREIFIQLIKAQMVIPVKKLHSQECKEHGLKPSKDFPHLIVSNKAQLEADEYFVWNYNPRTYMDYLIVIGVVSIILALVCYPLWPRSMRRGSYYVSLGAFGILAGFFAVAILRLILYVLSLIVYKDVGGFWIFPNLFEDCGVLESFKPLYGFGEKDTYSYKKKLKRMKKKQAKRESNKKKAINEKAEQN* 040112 +YPL109C MGLYVSSENELQEKLKSFRSAKITESRNKLIRYLRIFWFGFNDNIVEPVCTILRFLEISAIFLPLLLLYPISWFGHKLKITDTNITETRGSLIWCQLLRKALELAGPSFIKLGQWAGSRTDIFSHALCHELGKLHSNVTAHSLSFTLEKLSQALKVDKIEDAFDEFNRTPIGVGSIAQVYVGELSQKYIDKYDNIQIGKDGNRWCAIKILHPNVRSQIRRDLKIMKFCADAINWIPTMEWLSLPSEVDQFSILMNIQLDLRIEALNLERFNENFKNSIQVKFPKPFLPLSNRDVMFEEHVYGLSMEKFLSTKKQINDVELCKKVSDPFVDAFLQMLILDDFVHADLHPGNVIIRFVKTNKYGTNIISSELESYRITHDLRKKIEEDQDQDFVGKLKSVLTNYTPQICFIDTGIITELNEKNRINFIALFNALARFDGYRAGELMIERSRTPETAIDKEVFAFKVEKLVDKVKQRTFTLGTVSIGDLLDQMLSMVRSHHVRMESDFVSVVVAILLLEGIGRQLDPNLDLFESSLPILREFGFKREAKSLLKDASTLSMLKIWVGLEVRQLMHLSMKQIYDLVRTDQLCPNY* 040723 +YPL224C MLRISIDSIKQFGSFVTGYNNTSYHAAGRAIRTSSLYSTMISANPRRCLHSSKLLNKEGQEEGYNEQLISKMSSQNGSNSRQNESEGKKEGKASSVKSLLQHTHSHSHTHMHDNPLLSLNVQQIKKNPGVRITWIGLASNVGMAVGKFVGGITFHSQALLADSVHALSDLVSDFLTLFSVQYASRKPTSEYPYGYGKVETVGSLAVSTILAMAGISIGWSSLCAIVGPVIPHAILESMAGLIGETHSHSQSLTQQATNVNAVWIAAGSILVKEWVFQATKKVAIQTNSNVLMANAWHHRVDSLTSLVALVAITSSYFFNIQSLDNLGGLVVSGLIIKTGGQGILSSLKELVDQSIPPTDPRYLEIESVIKDSIGSLKTDLDLKQSLHVRDLTILASGPNLRATTTLEVPVLHSGQEVGIRFLENAISTIREDLRMKVPNVGRWTSSLLM* 110203 +YPR035W MAEASIEKTQILQKYLELDQRGRIIAEYVWIDGTGNLRSKGRTLKKRITSIDQLPEWNFDGSSTNQAPGHDSDIYLKPVAYYPDPFRRGDNIVVLAACYNNDGTPNKFNHRHEAAKLFAAHKDEEIWFGLEQEYTLFDMYDDVYGWPKGGYPAPQGPYYCGVGAGKVYARDMIEAHYRACLYAGLEISGINAEVMPSQWEFQVGPCTGIDMGDQLWMARYFLHRVAEEFGIKISFHPKPLKGDWNGAGCHANVSTKEMRQPGGTKYIEQAIEKLSKRHAEHIKLYGSDNDMRLTGRHETASMTAFSSGVANRGSSIRIPRSVAKEGYGYFEDRRPASNIDPYLVTGIMCETVCGAIDNADMTKEFERESS* 110203 +YPR097W MITQDTPALNPTEEHYLKRELLRCQLDYEIGKLNDQFALRKFGYPFSPNDPTAPQPISNNDSSPVLGGKGHFSVNYPMLSYVLQEFISTFPLLSTNLLVDEKFWQSKVQVFFEHFMSLGFSESYDREEASKRKKVSKKLSKVILLLFNSGVGSFQEQAYYNEDKFVLQSGQARKRSNIEKFAMPTRENLENLLTNESVFINGWDVNIISVFNKNSRKCTESVDNDKSSKSTPTSSPKSHAIKSFASTSKWMKNAFNNTINSTINSMPESSASLFSKLSLGVPSTKSKQSRKHHYFLIKIKKQDDDDQDNSNEENSNLDHHAGYFYVTRTYSDFKKLSHDLKSEFPGKKCPRLPHRNKKVTSMITKTEVLHNGQTKSAAREKIVNTFDTDLQSASESDNSSFLQTTNELSATETVLTEKETETLRKNILNEIKEEDNIDEDEYEEEGEGEESDFDEYKDASDSKINTLVGEKMRTSLRQYLRTLCKDAEVSQSSSIRRFFLSGPNLDIKDINPKIADDIRNRALIDVSNLENQIRFQQMALEKSLKLQDSMKDFKTSLLKDEKYLMSLLVEIKDNTKVEDLSPLLQDFVEWCKIYISSMIYQMFLGNDNSYELYTQIRRLHKLMPYTVMGQIMKFTNPIAIMRGMIELFMAQPFGGHSLLQTMFSTILTDDLKTQKVAIKELERKIAEMDPGASVVTKCLKDFVFNNDTKDEHDTKLFTMDAVNAESESMNMPVPLIVLMKSAAANLIPDEVVAGLIESYSSWKLQKEDTDALNVTSEDQSGIYFTHVKDLWQLYIKEHDKQLMRQLWQDPELTQMLKAIVTMIYEPMVKIFKVARMDVALKNFEKFMGDLIRLVDDVINGQLGVSTQFDVVEEIHNLVTKHQDAFFEFIHDVYLNDSEGIFEGFITWITTIVKFLQKSKFGGPSERIDFNKLICRDDIDIDVKLLKVQVNNVLNKKIGARKIYKKLLDLKVKQGTKQNNKHAAGILQKNWSDINSLVMPSSSGSFGLGDGDLVDLDLDTGDYDFLHKENEVELEKQYKDLLNLVVDESEIDKLRSQVFAQELKNYLEAQIAKK* 110203 +YPR121W MVIILLGLCTLGFPRTAFCPSIMTNSTVSINTPPPYLTLACNEKLPTVMSIAGSDSSGGAGVEADIKTITAHRCYAMTCVTTLTAQTPVKVYGAHNIPKKMVSQILDANLQDMKCNVIKTGMLTVDAIEVLHEKLLQLGENRPKLVIDPVLCAASDSSPTGKDVVSLIIEKISPFADILTPNISDCFMLLGENREVSKLQDVLEIAKDLSRITNCSNILVKGGHIPCDDGKEKHITDVLYLGAEQKFITFKGQFVNTTRTHGAGCTLASAIASNLARGYSLSQSVYGGIEYVQNAIAIGCDVTKKAVKVGPINHVYAVEIPLEKMLTDECFTASDAVPKKPIEGSLDKIPGGSFFNYLINHPKVKPHWDAYVNHEFVKRVADGTLERKKFQFFIEQDYLYLIDYVRVCCVTGSKSPTLEDLEKDLVIADCARNELNEHERRLREEFGVKDPDYLQKIKRGPALRAYCRYLIDISRRGNWQEIVVALNPCLMGYVYAVDKVKDKITAAEGSIYSEWCDTCASSFCYQAVLEGERLMNHILETYPPDQLDSLVTIFARGCELETNFWTAAMEYE* 110203 +YPR153W MFPVLRSFVTNNDIPVGYVTPKFPSLYWPINNSKYNTAFLYYISDIWKFSLYWTLIFNGAFYVTAGVYASLTHRKKAGSVWIFVMYVLYGGVQGLTTGTVMGFLIGAIYRSGLFSMSTWVPLCCAVVQILFDVVLSYSMVGSVM* 070713 +YPR169W MASSPQLEEEAAGKLETIHASAMAKSKKKTDVVDSTNLPILELLSLKAPIFQSLLHPELPIIITGFGTGHIVCHRYDPAKLQSHLDRRRRIDTATTGKDAKKGVCPWIRLDIDLETGDLKFVDIEEQQQQKQTGKDEDLGVKTLWKTKRHKGSVRAMCFDSKGDNIFSVGSDNVLKKANTMTGKVVKKVNLSSLFNSEEKKNDKFTKLCASQTHPFILIGDESGNIHVINSENLALSNSIRSIHFGDSINDIFHFDKRSAYKFISLGQTTLAYFDVRDKDAKPNVAGNEDGKILISDDQEDEVLCGCFVDPEVADTLLCGMGEGIVTVWKPNKNDLEDQMSRIKISKDESIDCIVPTLQDDNCVWCGCSNGNIYKVNAKLGKVVEIRNHSELDEVSFVDLDFEYRVVSGGLENIKIWELSSDDVEENASVESDSDEPLSHSDEDLSDDTSSDDETTLVGLSKEELLDELDKDLKEDHQEEKESNSKSVKKRKIMKENNKKKDLYEHGIKKFDDL* 051202 diff --git a/data/sgd/coordinate_changes_dict.json b/data/sgd/coordinate_changes_dict.json new file mode 100644 index 0000000..5adb703 --- /dev/null +++ b/data/sgd/coordinate_changes_dict.json @@ -0,0 +1,2625 @@ +{ + "YAL064W": [ + { + "revision": "110203", + "new_alignment": "--------------MNPFASLEGQDNISSVFFLHMQQFESQVKDRFRFPIFRLERKTFGNSCYQVETLKVKCRPRHAKSCNLLTLLFKSRTQSVLVPNFGFLILNSEP*", + "old_alignment": "MRYTATFRPLQRFVMNPFASLEGQDNISSVFFLHMQQFESQVKDRFRFPIFRLERKTFGNSCYQVETLKVKCRPRHAKSCNLLTLLFKSRTQSVLVPNFGFLILNSEP*" + } + ], + "YAL060W": [ + { + "revision": "110203", + "new_alignment": "MRALAYFKKGDIHFTNDIPRPEIQTDDEVIIDVSWCGICGSDLHEYLDGPIFMPKDGECHKLSNAALPLAMGHEMSGIVSKVGPKVTKVKVGDHVVVDAASSCADLHCWPHSKFYNSKPCDACQRGSENLCTHAGFVGLGVISGGFAEQVVVSQHHIIPVPKEIPLDVAALVEPLSVTWHAVKISGFKKGSSALVLGAGPIGLCTILVLKGMGASKIVVSEIAERRIEMAKKLGVEVFNPSKHGHKSIEILRGLTKSHDGFDYSYDCSGIQVTFETSLKALTFKGTATNIAVWGPKPVPFQPMDVTLQEKVMTGSIGYVVEDFEEVVRAIHNGDIAMEDCKQLITGKQRIEDGWEKGFQELMDHKESNVKILLTPNNHGEMK*", + "old_alignment": "MRALAYFKKGDIHFTNDIPRPEIQTDDEVIIDVSWCGICGSDLHEYLDGPIFMPKDGECHKLSNAALPLAMGHEMSGIVSKVGPKVTKVKVGDHVVVDAASSCADLHCWPHSKFYNSKPCDACQRGSENLCTHAGFVGLGVISGGFAEQVVVSQHHIIPVPKEIPLDVAALVEPLSVTWHAVKISGFKKGSSALVLGAGPIGLCTILVLKGMGASKIVVSEIAERRIEMAKKLGVEVFNPSKHGHKSIEILRGLTKSHDGFDYSYDCSGIQVTFETSLKALTFKGTATNIAVWGPKPVPFQPMDVTLQEKVMTGSIGYVVEAFEEVVRAIHNGDIAMEDCKQLITGKQRIEDGWEKGFQELMDHKESNVKILLTPNNHGEMK*" + } + ], + "YAL059C-A": [ + { + "revision": "110203", + "new_alignment": "MYLAREMDLAILPSRRLVKFKAFTKRSLSMDEIELASLSSRAFLFNFLPLLLLLAFLDIFASSNASFLAAVLIKILVKSVFSALGSSLKSFTSGSRASDCLAALEFFDIFLAMLCFRRYLTSIVKEKTTFCRLCSHIQYF*", + "old_alignment": "MYLAREMDLAILPSRRLVKFKAFTKRSLSMDEIELSSLSSRAFLFNFLPLLLLLAFLDIFASSNASFLAAVLIKILVKSVFSALGSSLKSFTSGSRASDCLAALEFFDIFLAMLCFRRYLTSIVKEKTTFCRLCSHIQYF*" + } + ], + "YAL059W": [ + { + "revision": "110203", + "new_alignment": "MWEQRRQKVVFSLTILVRYRLKQSMAKKISKNSRAARQSDALEPEVKDLSELPRAEKTDLTNILIRTAAKNEALLEAKISKKANKSKRGKKLNKKALEDKLANSISSMDRDRLVKALNFTNRLDGKIAKSISRAKYIQNTRKAGWDSTNETIKKELAFLNGGLSVQAKSASEGNAEKEDEEIPEVFDSLAEDNTVQKTPTNRFGVLPDDVEE*", + "old_alignment": "MWEQRRQKVVFSLTILVRYRLKQSMAKKISKNSRAARQSDALEPEVKDLSELPRAEKTDLTNILIRTAAKNEALLEAKISKKANKSKRGKKLNKKALEDKLDNSISSMDRDRLVKALNFTNRLDGKIAKSISRAKYIQNTRKAGWDSTNETIKKELAFLNGGLSVQAKSASEGNAEKEDEEIPEVFDSLAEDNTVQKTPTNRFGVLPDDVEE*" + } + ], + "YAL056W": [ + { + "revision": "040206", + "new_alignment": "MEISSSPWNDGGYSPYERNRVAVSPFSSALEGEERIETSRSLGDHCFEPLPYVTNYLSIFALFGKEIFGDKGNVSSRNEYLLKKYYSLKKPFVLRHNGHALKNPDMPLQRNDILQTNFMVDKFLNRTVRSVNFNNFKIISDMQSKSGRGTKSGTNQNQSADAIQNICLPSIPSALPYFQYYRKLLTVNTKEWDILKLHSLWVPKLRKDFKDFSLYGDKNSLKPIDSHYDEDNTMKKNLFFERSPSRQTLDGKGCASKGYDISSGNMIIPSLFSEDKLPALTYHCSVELNGNIYIFGGLMPCYSYEEDAPMLNDFFVDGIKNLPPPLLPQVINNPSMVNNPHLYVASIPSCRFSKPKMGGYIPPPLLCVQGSKLTDRHIFFYGGFEIRTETRGDENGKYHLKKRLYVNNTGYILDIMSFKFTKIDIIVQPSKYNAYPTMSSRFGHLQISIDNPNRRASVHSSSMNEIHKMGSASMKQGSSITSGRLEKAAVLSSLPHNTVHTVIIFGGYRQTGDDRYEAMNDLWKIEIPVIRRGKKGYCKFSETANAILLTPSEKDKSDWPEERAFSAFSVHGTSLMDRSSLDMRLLNNLKNHFVLKPSYISQDRVVSPKPVFPMMVHGTHQDLFNSGSAAQESPKAGASASSASAASFDPDMDDNLENYIVNPGRKSSSIPMTAIGRQRLILSQEKPVGKTVVLHGGSNGLNVLDDMWLMDLECETWTPIETFAKADSSEDGDEKLDSVNVGLVGHRMESIGRICVCIGGMVQEDVDQFYSENDDEPPRKRKVDTLPLGGNFLNTIDLSTQCWEEHKITLSKKEDDEDRQDSENEDTNSNIVVGVGGTSLQCDKSIILIGGLISRRSNVKEIYLHGTITKSIFPSVNPSA*---------", + "old_alignment": "MEISSSPWNDGGYSPYERNRVAVSPFSSALEGEERIETSRSLGDHCFEPLPYVTNYLSIFALFGKEIFGDKGNVSSRNEYLLKKYYSLKKPFVLRHNGHALKNPDMPLQRNDILQTNFMVDKFLNRTVRSVNFNNFKIISDMQSKSGRGTKSGTNQNQSADAIQNICLPSIPSALPYFQYYRKLLTVNTKEWDILKLHSLWVPKLRKDFKDFSLYGDKNSLKPIDSHYDEDNTMKKNLFFERSPSRQTLDGKGCASKGYDISSGNMIIPSLFSEDKLPALTYHCSVELNGNIYIFGGLMPCYSYEEDAPMLNDFFVDGIKNLPPPLLPQVINNPSMVNNPHLYVASIPSCRFSKPKMGGYIPPPLLCVQGSKLTDRHIFFYGGFEIRTETRGDENGKYHLKKRLYVNNTGYILDIMSFKFTKIDIIVQPSKYNAYPTMSSRFGHLQISIDNPNRRASVHSSSMNEIHKMGSASMKQGSSITSGRLEKAAVLSSLPHNTVHTVIIFGGYRQTGDDRYEAMNDLWKIEIPVIRRGKKGYCKFSETANAILLTPSEKDKSDWPEERAFSAFSVHGTSLMDRSSLDMRLLNNLKNHFVLKPSYISQDRVVSPKPVFPMMVHGTHQDLFNSGSAAQESPKAGASASSASAASFDPDMDDNLENYIINPGRKSSSIPMTAIGRQRLILSQEKPVGKTVVLHGGSNGLNVLDDMWLMDLECETWTPIETFAKADSSEDGDEKLDSVNVGLVGHRMESIGRICVCIGGMVQEDVDQFYSENDDEPPRKRKVDTLPLGGNFLNTIDLSTQFWEEHKITLSKKAADEDRQDSENEDTNSNIVVGVGGTS------------------------------------------FNVTKVLF*" + }, + { + "revision": "110203", + "new_alignment": "MEISSSPWNDGGYSPYERNRVAVSPFSSALEGEERIETSRSLGDHCFEPLPYVTNYLSIFALFGKEIFGDKGNVSSRNEYLLKKYYSLKKPFVLRHNGHALKNPDMPLQRNDILQTNFMVDKFLNRTVRSVNFNNFKIISDMQSKSGRGTKSGTNQNQSADAIQNICLPSIPSALPYFQYYRKLLTVNTKEWDILKLHSLWVPKLRKDFKDFSLYGDKNSLKPIDSHYDEDNTMKKNLFFERSPSRQTLDGKGCASKGYDISSGNMIIPSLFSEDKLPALTYHCSVELNGNIYIFGGLMPCYSYEEDAPMLNDFFVDGIKNLPPPLLPQVINNPSMVNNPHLYVASIPSCRFSKPKMGGYIPPPLLCVQGSKLTDRHIFFYGGFEIRTETRGDENGKYHLKKRLYVNNTGYILDIMSFKFTKIDIIVQPSKYNAYPTMSSRFGHLQISIDNPNRRASVHSSSMNEIHKMGSASMKQGSSITSGRLEKAAVLSSLPHNTVHTVIIFGGYRQTGDDRYEAMNDLWKIEIPVIRRGKKGYCKFSETANAILLTPSEKDKSDWPEERAFSAFSVHGTSLMDRSSLDMRLLNNLKNHFVLKPSYISQDRVVSPKPVFPMMVHGTHQDLFNSGSAAQESPKAGASASSASAASFDPDMDDNLENYIVNPGRKSSSIPMTAIGRQRLILSQEKPVGKTVVLHGGSNGLNVLDDMWLMDLECETWTPIETFAKADSSEDGDEKLDSVNVGLVGHRMESIGRICVCIGGMVQEDVDQFYSENDDEPPRKRKVDTLPLGGNFLNTIDLSTQCWEEHKITLSKKEDDEDRQDSENEDTNSNIVVGVGGTSLQCDKSIILIGGLISRRSNVKEIYLHGTITKSIFPSVNPSA*", + "old_alignment": "MEISSSPWNDGGYSPYERNRVAVSPFSSALEGEERIETSRSLGDHCFEPLPYVTNYLSIFALFGKEIFGDKGNVSSRNEYLLKKYYSLKKPFVLRHNGHALKNPDMPLQRNDILQTNFMVDKFLNRTVRSVNFNNFKIISDMQSKSGRGTKSGTNQNQSADAIQNICLPSIPSALPYFQYYRKLLTVNTKEWDILKLHSLWVPKLRKDFKDFSLYGDKNSLKPIDSHYDEDNTMKKNLFFERSPSRQTLDGKGCASKGYDISSGNMIIPSLFSEDKLPALTYHCSVELNGNIYIFGGLMPCYSYEEDAPMLNDFFVDGIKNLPPPLLPQVINNPSMVNNPHLYVASIPSCRFSKPKMGGYIPPPLLCVQGSKLTDRHIFFYGGFEIRTETRGDENGKYHLKKRLYVNNTGYILDIMSFKFTKIDIIVQPSKYNAYPTMSSRFGHLQISIDNPNRRASVHSSSMNEIHKMGSASMKQGSSITSGRLEKAAVLSSLPHNTVHTVIIFGGYRQTGDDRYEAMNDLWKIEIPVIRRGKKGYCKFSETANAILLTPSEKDKSDWPEERAFSAFSVHGTSLMDRSSLDMRLLNNLKNHFVLKPSYISQDRVVSPKPVFPMMVHGTHQDLFNSGSAAQESPKAGASASSASAASFDPDMDDNLENYIINPGRKSSSIPMTAIGRQRLILSQEKPVGKTVVLHGGSNGLNVLDDMWLMDLECETWTPIETFAKADSSEDGDEKLDSVNVGLVGHRMESIGRICVCIGGMVQEDVDQFYSENDDEPPRKRKVDTLPLGGNFLNTIDLSTQFWEEHKITLSKKAADEDRQDSENEDTNSNIVVGVGGTSLQCDKSIILIGGLISRRSNVKEIYLHGTITKSIFPSVNPSA*" + } + ], + "YAL053W": [ + { + "revision": "110203", + "new_alignment": "MIFLNTFARCLLTCFVLCSGTARSSDTNDTTPASAKHLQTTSLLTCMDNSQLTASFFDVKFYPDNNTVIFDIDATTTLNGNVTVKAELLTYGLKVLDKTFDLCSLGQVSLCPLSAGRIDVMSTQVIESSITKQFPGIAYTIPDLDAQVRVVAYAQNDTEFETPLACVQAILSNGKTVQTKYAAWPIAAISGVGVLTSGFVSVIGYSATAAHIASNSISLFIYFQNLAITAMMGVSRVPPIAAAWTQNFQWSMGIINTNFMQKIFDWYVQATNGVSNVVVANKDVLSISVQKRAISMASSSDYNFDTILDDSNLYTTSEKDPSNYSAKILVLRGIERVAYLANIELSNFFLTGIVFFLFFLFVVVVSLIFFKALLEVLTRARILKETSNFFQYRKNWGSIIKGTLFRLSIIAFPQVSLLAIWEFTQVNSPAIVVDAVVILLIITGLLVYGTIRVFIKGRESLRLYKNPAYLLYSDTYFLNKFGFLYVQFKADKFWWLLPLLSYAFLRSLFVAVLQNQGKAQAMIIFVIELAYFVCLCWIRPYLDKRTNVFNIAIHLVNLINAFFFLFFSNLFKQPAVVSSVMAVILFVLNAVFALFLLLFTIVTCTLALLHRNPDVRYQPMKDDRVSFIPKIQNDFDGKNKNDSELFELRKAVMDTNENEEEKMFRDDTFGKNLNANTNTARLFDDETSSSSFKQNSSPFDASEVTEQPVQPTSAVMGTGGSFLSPQYQRASSASRTNLAPNNTSTSSLMKPESSLYLGNSNKSYSHFNNNGSNENARNNNPYL*", + "old_alignment": "MIFLNTFARCLLTCFVLCSGTARSSDTNDTTPASAKHLQTTSLLTCMDNSQLTASFFDVKFYPDNNTVIFDIDATTTLNGNVTVKAELLTYGLKVLDKTFDLCSLGQVSLSPLSAGRIDVMSTQVIESSITKQFPGIAYTIPDLDAQVRVVAYAQNDTEFETPLACVQAILSNGKTVQTKYAAWPIAAISGVGVLTSGFVSVIGYSATAAHIASNSISLFIYFQNLAITAMMGVSRVPPIAAAWTQNFQWSMGIINTNFMQKIFDWYVQATNGVSNVVVANKDVLSISVQKRAISMASSSDYNFDTILDDSDLYTTSEKDPSNYSAKILVLRGIERVAYLANIELSNFFLTGIVFFLFFLFVVVVSLIFFKALLEVLTRARILKETSNFFQYRKNWGSIIKGTLFRLSIIAFPQVSLLAIWEFTQVNSPAIVVDAVVILLIITGLLVYGTIRVFIKGRESLRLYKNPAYLLYSDTYFLNKFGFLYVQFKADKFWWLLPLLSYAFLRSLFVAVLQNQGKAQAMIIFVIELAYFVCLCWIRPYLDKRTNVFNIAIHLVNLINAFFFLFFSNLFKQPAVVSSVMAVILFVLNAVFALFLLLFTIVTCTLALLHRNPDVRYQPMKDDRVSFIPKIQNDFDGKNKIDPELFELRKAVMDTNENEEEKMFRDDTFGKNLNANTNTARLFDDETSSSSFKQNSSPFDASEVTEQPVQPTSAVMGTGGSFLSPQYQRASSASRTNLAPNNTSTSSLMKPESSLYLGNSNKSYSHFNNNGSNENARNNNPYL*" + } + ], + "YAL051W": [ + { + "revision": "110203", + "new_alignment": "MVENSTQKAPHAGNDDNSSTKPYSEAFFLGFNNPTPGLEAEHSSTSPAPENSETHNRKRNRILFVCQACRKSKTKCDREKPECGRCVKHGLKCVYDVSKQPAPRIPSKDAIISRLEKDMFYWKDKAMKLLTEREVNESGKRSASPINTNNASGDSPDTKKQHKMEPIYEQSGNGDINNGTRNDIEINLYRSHPTMIMSKVMKREVKPLSENYIIIQDCFLKILVTSVFLDTSKNTMIPALTANANITRAQPSVANNLLKLKEMLIRQCQTEDEKNRVNEFTDRILQNTNSNRNLKIGMLLSMLYNSVGYQYLEDHCPQGGEYSDLLRNLINECEAILPSYEIIERYKNHFYEYVYPSLPFIELEIFEESLSQTIFPDPNNPSKVQIRMGSTHLRAKVENLSLLLVILKLSYMSIRFLDHSTADSSFYLSKEIIDKYPIPNDFILLSQRCLASENWCACANENIISCLLYIWSFFAFSPEEGDFFLEHPTDVISSLIMMLSTSIGLHRDPSDFPQLISPSTSDKRTLNHRRILWLSIVTVCSFEASLKGRHSVSPISLMALFLNIKDPDSLTVYMNRVRGDLSDINNHKLLRIHKFTFKRAQLALLLSDLDNLTMTYYGSFHLHSIEFIREKIEIFVEENFPIVPLKSVAQDKSDLDDMNVISEMNILSSENSSSFHNRIMNKLLMLRTSMAVFLHFETLITKDKSIFPFYKKYFMVSCMDALSLINYFNKFFNGEYRHAISSLTSFNVTKFIQLALSSTIFSLLGIILRIGLAIHMLSSEVQKLSGTTDPRIKELNTKVEKFSTLQRDLESALEGIYCSASEHLRFTYFPVFKMLALFDVIVQRMRKGELWHGIFTMIQMEQMHSRIIKTLSITLGVKLDKKDRLLEELMACNHVANFSVEDIDELNRNIKKEIQISSGLKPPVNTIDLTNGEPFGNAVPTFTKTWSSSLDNLEKLSSAAAVGQSLDYNSGLRQGPLAGGGSKEQTPIAGMNNLNNSINATPIVDNSSGSQLPNGFDRGQANNTPFPGYFGGLDLFDYDFLFGNDFA*", + "old_alignment": "MVENSTQKAPHAGNDDNSSTKPYSEAFFLGFNNPTPGLEAEHSSTSPAPENSETHNRKRNRILFVCQACWKSKTKCDREKPECGRCVKHGLKCVYDVSKQPAPRIPSKDAIISRLEKDMFYWKDKAMKLLTEREVNESGKRSASPINTNNASGDSPDTKKQHKMEPIYEQSGNGDINNGTRNDIEINLYRSHPTMIMSKVMKREVKPLSENYIIIQDCFLKILVTSVFLDTSKNTMIPALTANANITRAQPSVANNLLKLKEMLIRQCQTEDEKNRVNEFTDRILQNTNSNRNLKIGMLLSMLYNSVGYQYLEDHCPQGGEYSDLLRNLINECEAILPSYEIIERYKNHFYEYVYPSLPFIELEIFEESLSQTIFPDPNNPSKVQIRMGSTHLRAKVENLSLLLVILKLSYMSIRFLDHSTADSSFYLSKEIIDKYPIPNDFILLSPRCLASENWCACANENIISCLLYIWSFFAFSPEEGDFFLEHPTDVISSLIMMLSTSIGLHRDPSDFPQLISPSTSDKRTLNHRRILWLSIVTVCSFEASLKGRHSVSPISLMALFLNIKDPDSLTVYMNRVRGDLSDINNHTLLRIHKFTFKRAQLALLLSDLDNLTMTYYGSFHLHSIEFIREKIEIFVEENFPIVPLKSVAQDKSDLDDMNVISEMNILSSENSSSFHNRIMNKLLMLRTSMAVFLHFETLITKDKSIFPFYKKYFMVSCMDALSLINYFNKFFNGEYRHAISSLTSFNVTKFIQLALSSTIFSLLGIILRIGLAIHMLSSEVQKLSGTTDPRIKELNTKVEKFSTLQRDLESALEGIYCSASEHLRFTYFPVFKMLALFDVIVQRMRKGELWHGIFTMIQMEQMHSRIIKTLSITLGVKLDKKDRLLEELMACNHVANFSVEDIDELNRNIKKEIQISSGLKPPVNTIDLTNGEPFGNAVPTFTKTWSSSLDNLEKLSSAAAVGQSLDYNSGLRQGPLAGGGSKEQTPIAGMNNLNNSINATPIVDNSSGSQLPNGFDRGQANNTPFPGYFGGLDLFDYDFLFGNDFA*" + }, + { + "revision": "040723", + "new_alignment": "MVENSTQKAPHAGNDDNSSTKPYSEAFFLGFNNPTPGLEAEHSSTSPAPENSETHNRKRNRILFVCQACRKSKTKCDREKPECGRCVKHGLKCVYDVSKQPAPRIPSKDAIISRLEKDMFYWKDKAMKLLTEREVNESGKRSASPINTNNASGDSPDTKKQHKMEPIYEQSGNGDINNGTRNDIEINLYRSHPTMIMSKVMKREVKPLSENYIIIQDCFLKILVTSVFLDTSKNTMIPALTANANITRAQPSVANNLLKLKEMLIRQCQTEDEKNRVNEFTDRILQNTNSNRNLKIGMLLSMLYNSVGYQYLEDHCPQGGEYSDLLRNLINECEAILPSYEIIERYKNHFYEYVYPSLPFIELEIFEESLSQTIFPDPNNPSKVQIRMGSTHLRAKVENLSLLLVILKLSYMSIRFLDHSTADSSFYLSKEIIDKYPIPNDFILLSQRCLASENWCACANENIISCLLYIWSFFAFSPEEGDFFLEHPTDVISSLIMMLSTSIGLHRDPSDFPQLISPSTSDKRTLNHRRILWLSIVTVCSFEASLKGRHSVSPISLMALFLNIKDPDSLTVYMNRVRGDLSDINNHKLLRIHKFTFKRAQLALLLSDLDNLTMTYYGSFHLHSIEFIREKIEIFVEENFPIVPLKSVAQDKSDLDDMNVISEMNILSSENSSSFHNRIMNKLLMLRTSMAVFLHFETLITKDKSIFPFYKKYFMVSCMDALSLINYFNKFFNGEYRHAISSLTSFNVTKFIQLALSSTIFSLLGIILRIGLAIHMLSSEVQKLSGTTDPRIKELNTKVEKFSTLQRDLESALEGIYCSASEHLRFTYFPVFKMLALFDVIVQRMRKGELWHGIFTMIQMEQMHSRIIKTLSITLGVKLDKKDRLLEELMACNHVANFSVEDIDELNRNIKKEIQISSGLKPPVNTIDLTNGEPFGNAVPTFTKTWSSSLDNLEKLSSAAAVGQSLDYNSGLRQGPLAGGGSKEQTPIAGMNNLNNSINATPIVDNSSGSQLPNGFDRGQANNTPFPGYFGGLDLFDYDFLFGNDFA*----------------------", + "old_alignment": "MVENSTQKAPHAGNDDNSSTKPYSEAFFLGFNNPTPGLEAEHSSTSPAPENSETHNRKRNRILFVCQACWKSKTKCDREKPECGRCVKHGLKCVYDVSKQPAPRIPSKDAIISRLEKDMFYWKDKAMKLLTEREVNESGKRSASPINTNNASGDSPDTKKQHKMEPIYEQSGNGDINNGTRNDIEINLYRSHPTMIMSKVMKREVKPLSENYIIIQDCFLKILVTSVFLDTSKNTMIPALTANANITRAQPSVANNLLKLKEMLIRQCQTEDEKNRVNEFTDRILQNTNSNRNLKIGMLLSMLYNSVGYQYLEDHCPQGGEYSDLLRNLINECEAILPSYEIIERYKNHFYEYVYPSLPFIELEIFEESLSQTIFPDPNNPSKVQIRMGSTHLRAKVENLSLLLVILKLSYMSIRFLDHSTADSSFYLSKEIIDKYPIPNDFILLSPRCLASENWCACANENIISCLLYIWSFFAFSPEEGDFFLEHPTDVISSLIMMLSTSIGLHRDPSDFPQLISPSTSDKRTLNHRRILWLSIVTVCSFEASLKGRHSVSPISLMALFLNIKDPDSLTVYMNRVRGDLSDINNHTLLRIHKFTFKRAQLALLLSDLDNLTMTYYGSFHLHSIEFIREKIEIFVEENFPIVPLKSVAQDKSDLDDMNVISEMNILSSENSSSFHNRIMNKLLMLRTSMAVFLHFETLITKDKSIFPFYKKYFMVSCMDALSLINYFNKFFNGEYRHAISSLTSFNVTKFIQLALSSTIFSLLGIILRIGLAIHMLSSEVQKLSGTTDPRIKELNTKVEKFSTLQRDLESALEGIYCSASEHLRFTYFPVFKMLALFDVIVQRMRKGELWHGIFTMIQMEQMHSRIIKTLSITLGVKLDKKDRLLEELMACNHVANFSVEDIDELNRNIKKEIQISSGLKPPVNTIDLTNGEPFGNAVPTFTKTWSSSLDNLEKLSSAAAVGQSLDYNSGLRQGPLAGGGSKEQTPIAGMNNLNNSINATPIVDNSSGSQLPNGFDRGQANNTPFPGYFGGLDLFDYDFL-------VWAMTLLKNFLSKLLPIHFIN*" + } + ], + "YAL047C": [ + { + "revision": "110203", + "new_alignment": "MVRRWIPSGRHLRNNDNTGDDDDSEFTNSMDSGMSIPSLRDSMTTRSSHNDPIKPALMNDSNKVKNLEKELTNAKIKIQVLYEYIRRIPNKDGNAPSLGNDTDFRNSIIEGLNLEINKLKQDLKAKEVEYQDTLQFVQENLENSESIVNTINHLLSFILTHFNEQDENAHLLDKEERETLEETLELSSDYVLEKMDTLSKFIIQFLQDFLHSKSRAESKQDKEEFLSLAQSSPAGSQLESRDSPSSKEENTDGGYQNDEIHDSNNHIDTENVMANSTSLPISAVESRFEKTLDTQLEIVIENLHKEYDQFINSIRLKFEKSQKLEKIIASKLNEQSHLLDSLELEENSSSVIEKQDHLISQLKEKIESQSVLINNLEKLKEDIIKMKQNEKVLTKELETQTKINKLKENNWDSYINDLEKQINDLQIDKSEEFHVIQNQLDKLDLENYQLKNQLNTLDNQKLILSQYESNFIKFNQNLLLHLDSIFNILQKILQESSIAQFDRKMKSIKSVPNALKNLNLIQPKLESLYTFIETALESIINSYISSLISMETPEQPHQQGNELTATPNKELTLRIEELQRRWISERERRKLDANASEARIKALEQENESLRSKLFNLSINNP*", + "old_alignment": "MVRRWIPSGRHLRNNDNTGDDDDSEFTNSMDSGMSIPSLRDSMTTRSSHNDPIKPALMNDSNKVKNLEKELTNAKIKIQVLYEYIRRIPNKDGNAPSLGNDTDFRNSIIEGLNLEINKLKQDLKAKEVEYQDTLQFVQENLENSESIVNTINHLLSFILTHFNEQDENAHLLDKEERETLEETLELSSDYVLEKMDTLSKFIIQFLQDFLHSKSRAESKQDKEEFLSLAQSSPAGSQLESRDSPSSKEENTDGGYQNDEIHDSNNHIDTENVMANSTSLPISAVESRFEKTLDTQLEIVIEILHKEYDQFINSIRLKFEKSQKLEKIIASKLNEQSHLLDSLELEENSSSVIEKQDHLISQLKEKIESQSVLINNLEKLKEDIIKMKQNEKVLTKELETQTKINKLKENNWDSYINDLEKQINDLQIDKSEEFHVIQNQLDKLDLENYQLKNQLNTLDNQKLILSQYESNFIKFNQNLLLHLDSIFNILQKILQESSIAQFDRKMKSIKSVPNALKNLNLIQPKLESLYTFIETALESIINSYISSLISMETPEQPHQQGNELTATPNKELTLRIEELQRRWISERERRKLDANASEARIKALEQENESLRSKLFNLSINNP*" + } + ], + "YAL044C": [ + { + "revision": "080306", + "new_alignment": "MLRTTRLWTTRMPTVSKLFLRNSSGNALNKNKLPFLYSSQGPQAVRYTSQHEWIAVHQDKTAFVGITKYATDALGDATYVELPEVGTEIAQGESLGSIESVKSASEIYQPADGTVEEINTNLEENPGVVNEDPMGDGWLVKMKLGEGVNVEQVEGLMSLEQYEKTLVHDD*", + "old_alignment": "MLRTTRLWTTRMPAVSKLFLRNSSGNALNKNKLPFLYSSQGPQAVRYTSQHEWIAVHQDKTAFVGITKYATDSLGDATYVELPEVGTEISQGESLGSIESVKSASEIYQPADGTVEEINTNLEENPGVVNEDPMGDGWLVKMKLGEGVNVEQVEGLMSLEQYEKTLVHDD*" + } + ], + "YAL026C": [ + { + "revision": "110203", + "new_alignment": "MNDDRETPPKRKPGEDDTLFDIDFLDDTTSHSGSRSKVTNSHANANYIPPSHVLPEETIDLDADDDNIENDVHENLFMSNNHDDQTSWNANRFDSDAYQPQSLRAVKPPGLFARFGNGLKNAFTFKRKKGPESFEMNHYNAVTNNELDDNYLDSRNKFNIKILFNRYILRKNVGDAEGNGEPRVIHINDSLANSSFGYSDNHISTTKYNFATFLPKFLFQEFSKYANLFFLCTSAIQQVPHVSPTNRYTTIGTLLVVLIVSAMKECIEDIKRANSDKELNNSTAEIFSEAHDDFVEKRWIDIRVGDIIRVKSEEPIPADTIILSSSEPEGLCYIETANLDGETNLKIKQSRVETAKFIDVKTLKNMNGKVVSEQPNSSLYTYEGTMTLNDRQIPLSPDQMILRGATLRNTAWIFGLVIFTGHETKLLRNATATPIKRTAVEKIINRQIIALFTVLIVLILISSIGNVIMSTADAKHLSYLYLEGTNKAGLFFKDFLTFWILFSNLVPISLFVTVELIKYYQAFMIGSDLDLYYEKTDTPTVVRTSSLVEELGQIEYIFSDKTGTLTRNIMEFKSCSIAGHCYIDKIPEDKTATVEDGIEVGYRKFDDLKKKLNDPSDEDSPIINDFLTLLATCHTVIPEFQSDGSIKYQAASPDEGALVQGGADLGYKFIIRKPNSVTVLLEETGEEKEYQLLNICEFNSTRKRMSAIFRFPDGSIKLFCKGADTVILERLDDEANQYVEATMRHLEDYASEGLRTLCLAMRDISEGEYEEWNSIYNEAATTLDNRAEKLDEAANLIEKNLILIGATAIEDKLQDGVPETIHTLQEAGIKIWVLTGDRQETAINIGMSCRLLSEDMNLLIINEETRDDTERNLLEKINALNEHQLSTHDMNTLALVIDGKSLGFALEPELEDYLLTVAKLCKAVICCRVSPLQKALVVKMVKRKSSSLLLAIGDGANDVSMIQAAHVGVGISGMEGMQAARSADIAVGQFKFLKKLLLVHGSWSYQRISVAILYSFYKNTALYMTQFWYVFANAFSGQSIMESWTMSFYNLFFTVWPPFVIGVFDQFVSSRLLERYPQLYKLGQKGQFFSVYIFWGWIINGFFHSAIVFIGTILIYRYGFALNMHGELADHWSWGVTVYTTSVIIVLGKAALVTNQWTKFTLIAIPGSLLFWLIFFPIYASIFPHANISREYYGVVKHTYGSGVFWLTLIVLPIFALVRDFLWKYYKRMYEPETYHVIQEMQKYNISDSRPHVQQFQNAIRKVRQVQRMKKQRGFAFSQAEEGGQEKIVRMYDTTQKRGKYGELQDASANPFNDNNGLGSNDFESAEPFIENPFADGNQNSNRFSSSRDDISFDI*", + "old_alignment": "MNDDRETPPKRKPGEDDTLFDIDFLDDTTSHSGSRSKVTNSHANGYYIPPSHVLPEETIDLDADDDNIENDVHENLFMSNNHDDQTSWNANRFDSDAYQPQSLRAVKPPGLFARFGNGLKNAFTFKRKKGPESFEMNHYNAVTNNELDDNYLDSRNKFNIKILFNRYILRKNVGDAEGNGEPRVIHINDSLANSSFGYSDNHISTTKYNFATFLPKFLFQEFSKYANLFFLCTSAIQQVPHVSPTNRYTTIGTLLVVLIVSAMKECIEDIKRANSDKELNNSTAEIFSEAHDDFVEKRWIDIRVGDIIRVKSEEPIPADTIILSSSEPEGLCYIETANLDGETNLKIKQSRVETAKFIDVKTLKNMNGKVVSEQPNSSLYTYEGTMTLNDRQIPLSPDQMILRGATLRNTAWIFGLVIFTGHETKLLRNATATPIKRTAVEKIINRQIIRLFTVLIVLILISSIGNVIMSTADAKHLSYLYLEGTNKAGLFFKDFLTFWILFSNLVPISLFVTVELIKYYQAFMIGSDLDLYYEKTDTPTVVRTSSLVEELGQIEYIFSDKTGTLTRNIMEFKSCSIAGHCYIDKIPEDKTATVEDGIEVGYRKFDDLKKKLNDPSDEDSPIINDFLTLLATCHTVIPEFQSDGSIKYQAASPDEGALVQGGADLGYKFIIRKGNSVTVLLEETGEEKEYQLLNICEFNSTRKRMSAIFRFPDGSIKLFCKGADTVILERLDDEANQYVEATMRHLEDYASEGLRTLCLAMRDISEGEYEEWNSIYNEAATTLDNRAEKLDEAANLIEKNLILIGATAIEDKLQDGVPETIHTLQEAGIKIWVLTGDRQETAINIGMSCRLLSEDMNLLIINEETRDDTERNLLEKINALNEHQLSTHDMKSLALVIDGKSLGFALEPELEDYLLTVAKLCKAVICCRVSPLQKALVVKMVKRKSSSLLLAIASGANDVSMIQAAHVGVGISGMEGMQAARSADIALGQFKFLKKLLLVHGSWSYQRISVAILYSFYKNTALYMTQFWYVFANAFSGQSIMESWTMSFYNLFFTVWPPFVIGVFDQFVSSRLLERYPQLYKLGQKGQFFSVYIFWGWIINGFFHSAIVFIGTILIYRYGFALNMHGELADHWSWGVTVYTTSVIIVLGKAALVTNQWTKFTLIAIPGSLLFWLIFFPIYASIFPHANISREYYGVVKHTYGSGVFWLTLIVLPIFALVRDFLWKYYKRMYEPETYHVIQEMQKYNISDSRPHVQQFQNAIRKVRQVQRMKKQRGFAFSQAEEGGQEKIVRMYDTTQKRGKYGELQDASANPFNDNNGLGSNDFESAEPFIENPFADGNQNSNRFSSSRDDISFDI*" + } + ], + "YAL025C": [ + { + "revision": "110203", + "new_alignment": "MSDEIVWQVINQSFCSHRIKAPNGQNFCRNEYNVTGLCTRQSCPLANSKYATVKCDNGKLYLYMKTPERAHTPAKLWERIKLSKNYTKALQQIDEHLLHWSKFFRHKCKQRFTKLTQVMITERRLALREEERHYVGVAPKVKRREQNRERKALVAAKIEKAIEKELMDRLKSGAYGDKPLNVDEKVWKKIMGQMEEENSQDEEEDWDEEEESDDGEVEYVADDGEGEYVDVDDLEKWLADSDREASSASESESDSESESDSDSDEENKNSAKRRKKGTSAKTKRPKVEIEYEEEHEVQNAEQEVAQ*", + "old_alignment": "MSDEIVWQVINQSFCSHRIKAPNGQNFCRNEYNVTGLCTRQSCPLANSKYATVKCDNGKLYLYMKTPERAHTPAKLWERIKLSKNYTKALQQIDEHLLHWSKFFRHKCKQRFTKLTQVMITERRLALREEERHYVGVAPKVKRREQNRERKALVAAKIEKAIEKELMDRLKSGAYGDKPLNVDEKVWKKIMGQMEEENSQDEEEDWDEEEESDDGEVEYVADDGEGEYVDVDDLEKWLADSDREASSASQSESDSESESDSDSDEENKNSAKRRKKGTSAKTKRPKVEIEYEEEHEVQNAEQEVAQ*" + } + ], + "YAL020C": [ + { + "revision": "110203", + "new_alignment": "MSCVYAFGSNGQRQLGLGHDEDMDTPQRSVPGDDGAIVRKIACGGNHSVMLTNDGNLVGCGDNRRGELDSAQALRQVHDWRPVEVPAPVVDVACGWDTTVIVDADGRVWQRGGGCYEFTQQHVPLNSNDERIAVYGCFQNFVVVQGTRVYGWGSNTKCQLQEPKSRSLKEPVLVYDTGSVAVDYVAMGKDFMVIVDEGGRIVHASGRLPTGFELKQQQKRHNLVVLCMWTSIHLWNARLNTVESFGRGTHSQLFPQERLDFPIVGVATGSEHGILTTANQEGKSHCYNVYCWGWGEHGNCGPQKGSQPGLQLVGQYSGKPRVFGGCATTWIVL*", + "old_alignment": "MSCVYAFGSNGQRQLGLGHDEDMDTPQRSVPGDDGAIVRKIACGGNHSVMLTNDGNLVGCGDNRRGELDSAQALRQVHDWRPVEVPAPVVDVACGWDTTVIVDADGRVWQRGGGCYEFTQQHVPLNSNDERIAVYGCFQNFVVVQGTRVYGWGSNTKCQLQEPKSRSLKEPVLVYDTGSVAVDYVAMGKDFMVIVDEGGRIVHASGRLPTGFELKQQQKRHNLVVLCMWTSIHLWNARLNTVESFGRGTHSQLFPQERLDFPIVGVATGSEHGILTTANQEGKSHCYNVYCWGWGEHGNCGPQKASQPGLQLVGQYSGKPRVFGGCATTWIVL*" + } + ], + "YAL017W": [ + { + "revision": "110203", + "new_alignment": "MPYIGASNLSEHSFVNLKEKHAITHKGTSSSVASLQTPPSPDQENHIDNELENYDTSLSDVSTPNKKEGDEFEQSLRDTFASFRKTKPPPPLDFEQPRLPSTASSSVDSTVSSPLTDEDIKELEFLPNESTHSYSYNPLSPNSLAVRLRILKRSLEIIIQNPSMLLEPTPDDLPPLKEFAGRRSSLPRTSASANHLMNRNKSQIWNTTSATLNAFVNNTSSSSAASSALSNKKPGTPVFPNLDPTHSQTFHRANSLAYLPSILPEQDPLLKHNNSLFRGDYGNNISPERPSFRQPFKDQTSNLRNSSLLNERAYQEDETFLPHHGPSMDLLNEQRANLKSLLNLLNETLEKNTSERASDLHMISLFNLNKLMLGDPKKNNSERDKRTEKLKKILLDSLAEPFFEHYNFIGDNPIADTDELKEEIDEFTGSGDTTAITDIRPQQDYGRILRTFTSTKNSAPQAIFTCSQEDPWQFRAANDLACLVFGISQNAIRALTLMDLIHTDSRNFVLHKLLSTEGQEMVFTGEIIGIVQPETLSSSKVVWASFWAKRKNGLLVCVFEKVPCDYVDVLLNLDDFGAENIVDKCELLSDGPTLSSSSTLSLPKMASSPTGSKLEYSLERKILEKSYTKPTSTENRNGDENQLDGDSHSEPSLSSSPVRSKKSVKFANDIKDVKSISQSLAKLMDDVRNGVVFDPDDDLLPMPIKVCNHINETRYFTLNHLSYNIPCAVSSTVLEDELKLKIHSLPYQAGLFIVDSHTLDIVSSNKSILKNMFGYHFAELVGKSITEIIPSFPKFLQFINDKYPALDITLHKNKGLVLTEHFFRKIQAEIMGDRKSFYTSVGIDGLHRDGCEIKIDFQLRVMNSKVILLWVTHSRDVVFEEYNTNPSQLKMLKESELSLMSSASSSASSSKKSSSRISTGTLKDMSNLSTYEDLAHRTNKLKYEIGDDSRAHSQSTLSEQEQVPLENDKDSGEMMLADPEMKHKLELARIYSRDKSQFVKEGNFKVDENLIISKISLSPSTESLADSKSSGKGLSPLEEEKLIDENATENGLAGSPKDEDGIIMTNKRGNQPVSTFLRTPEKNIGAQKHVKKFSDFVSLQKMGEGAYGKVNLCIHKKNRYIVVIKMIFKERILVDTWVRDRKLGTIPSEIQIMATLNKKPHENILRLLDFFEDDDYYYIETPVHGETGCIDLFDLIEFKTNMTEFEAKLIFKQVVAGIKHLHDQGIVHRDIKDENVIVDSKGFVKIIDFGSAAYVKSGPFDVFVGTIDYAAPEVLGGNPYEGQPQDIWAIGILLYTVVFKENPFYNIDEILEGDLKFNNAEEVSEDCIELIKSILNRCVPKRPTIDDINNDKWLVI*", + "old_alignment": "MPYIGASNLSEHSFVNLKEKHAITHKGTSSSVASLQTPPSPDQENHIDNELENYDTSLSDVSTPNKKEGDEFQQSLRDTFASFRKTKPPPPLDFEQPRLPSTASSSVDSTVSSPLTDEDIKELEFLPNESTHSYSYNPLSPNSLAVRLRILKRSLEIIIQNPSMLLEPTPDDLPPLKEFAGRRSSLPRTSASANHLMNRNKSQIWNTTSATLNAFVNNTSSSSAASSALSNKKPGTPVFPNLDPTHSQTFHRANSLAYLPSILPEQDPLLKHNNSLFRGDYGNNISPERPSFRQPFKDQTSNLRNSSLLNERAYQEDETFLPHHGPSMDLLNEQRANLKSLLNLLNETLEKNTSERASDLHMISLFNLNKLMLGDPKKNNSERDKRTEKLKKILLDSLAEPFFEHYNFIGDNPIADTDELKEEIDEFTGSGDTTAITDIRPQQDYGRILRTFTSTKNSAPQAIFTCSQEDPWQFRAANDLACLVFGISQNAIRALTLMDLIHTDSRNFVLHKLLSTEGQEMVFTGEIIGIVQPETLSSSKVVWASFWAKRKNGLLVCVFEKVPCDYVDVLLNLDDFGAENIVDKCELLSDGPTLSSSSTLSLPKMASSPTGSKLEYSLERKILEKSYTKPTSTENRNGDENQLDGDSHSEPSLSSSPVRSKKSVKFANDIKDVKSISQSLAKLMDDVRNGVVFDPDDDLLPMPIKVCNHINETRYFTLNHLSYNIPCAVSSTVLEDELKLKIHSLPYQAGLFIVDSHTLDIVSSNKSILKNMFGYHFAELVGKSITEIIPSFPKFLQFINDKYPALDITLHKNKGLVLTEHFFRKIQAEIMGDRKSFYTSVGIDGLHRDGCEIKIDFQLRVMNSKVILLWVTHSRDVVFEEYNTNPSQLKMLKESELSLMSSASSSASSSKKSSSRISTGTLKDMSNLSTYEDLAHRTNKLKYEIGDDSRAHSQSTLSEQEQVPLENDKDSGEMMLADPEMKHKLELARIYSRDKSQFVKEGNFKVDENLIISKISLSPSTESLADSKSSGKGLSPLEEEKLIDENATENGLAGSPKDEDGIIMTNKRGNQPVSTFLRTPEKNIGAQKHVKKFSDFVSLQKMGEGAYGKVNLCIHKKNRYIVVIKMIFKERILVDTWVRDRKLGTIPSEIQIMATLNKKPHENILRLLDFFEDDDYYYIETPVHGETGCIDLFDLIEFKTNMTEFEAKLIFKQVVAGIKHLHDQGIVHRDIKDENVIVDSKGFVKIIDFGSAAYVKSGPFDVFVGTIDYAAPEVLGGNPYEGQPQDIWAIGILLYTVVFKENPFYNIDEILEGDLKFNNAEEVSEDCIELIKSILNRCVPKRPTIDDINNDKWLVI*" + } + ], + "YAL013W": [ + { + "revision": "040112", + "new_alignment": "MSQQTPQESEQTTAKEQDLDQESVLSNIDFNTDLNHNLNLSEYCISSDAGTEKMDSDEEKSLANLPELKYAPKLSSLVKQETLTESLKRPHEDEKEAIDEAKKMKVPGENEDESKEEEKSQELEEAIDSKEKSTDARDEQGDEGDNEEENNEEDNENENEHTAPPALVMPSPIEMEEQRMTALKEITDIEYKFAQLRQKLYDNQLVRLQTELQMCLEGSHPELQVYYSKIAAIRDYKLHRAYQRQKYELSCINTETIATRTFIHQDFHKKVTDLRARLLNRTTQTWYDINKERRDMDIVIPDVNYHVPIKLDNKTLSCITGYASAAQLCYPGEPVAEDLACESIEYRYRANPVDKLEVIVDRMRLNNEISDLEGLRKYFHSFPGAPELNPLRDSEINDDFHQWAQ*----------------------------------------", + "old_alignment": "MSQQTPQESEQTTAKEQDLDQESVLSNIDFNTDLNHNLNLSEYCISSDAGTEKMDSDEEKSLANLPELKYAPKLSSLVKQETLTESLKRPHEDEKEAIDEAKKMKVPGENEDESKEEEKSQELEEAIDSKEKSTDARDEQGDEGDNEEENNEEDNENENEHTAPPALVMPSPIEMEEQRMTALKEITDIEYKFAQLRQKLYDNQLVRLQTELQMCLEGSHPELQVYYSKIAAIRDYKLHRAYQRQKYELSCINTETIATRTFIHQDFHKKVTDLRARLLNRTTQTWYDINKERRDMDIVIPDVNYHVPIKLDNKTLSCITGYA-----------------------------------------------------------------------------------AHDSCAIPASPWQRTSLAKASSTATEPTRWTNSKSLWTE*" + }, + { + "revision": "110203", + "new_alignment": "MSQQTPQESEQTTAKEQDLDQESVLSNIDFNTDLNHNLNLSEYCISSDAGTEKMDSDEEKSLANLPELKYAPKLSSLVKQETLTESLKRPHEDEKEAIDEAKKMKVPGENEDESKEEEKSQELEEAIDSKEKSTDARDEQGDEGDNEEENNEEDNENENEHTAPPALVMPSPIEMEEQRMTALKEITDIEYKFAQLRQKLYDNQLVRLQTELQMCLEGSHPELQVYYSKIAAIRDYKLHRAYQRQKYELSCINTETIATRTFIHQDFHKKVTDLRARLLNRTTQTWYDINKERRDMDIVIPDVNYHVPIKLDNKTLSCITGYASAAQLCYPGEPVAEDLACESIEYRYRANPVDKLEVIVDRMRLNNEISDLEGLRKYFHSFPGAPELNPLRDSEINDDFHQWAQ---------------*", + "old_alignment": "MSQQTPQESEQTTAKEQDLDQESVLSNIDFNTDLNHNLNLSEYCISSDAGTEKMDSDEEKSLANLPELKYAPKLSSLVKQETLTESLKRPHEDEKEAIDEAKKMKVPGENEDESKEEEKSQELEEAIDSKEKSTDARDEQGDEGDNEEENNEEDNENENEHTAPPALVMPSPIEMEEQRMTALKEITDIEYKFAQLRQKLYDNQLVRLQTELQMCLEGSHPELQVYYSKIAAIRDYKLHRAYQRQKYELSCINTETIATRTFIHQDFHKKVTDLRARLLNRTTQTWYDINKERRDMDIVIPDVNYHVPIKLDNKTLSCITGYASAAQLCYPGEPVAEDLACESIEYRYRANPVDKLEVIVDRMRLNNEISDLEGLRKYFHSFPGAPELNPLRDSEINDDFHQWAQCDRHTGPHTTSFCYS*" + } + ], + "YAL010C": [ + { + "revision": "110203", + "new_alignment": "MLPYMDQVLRAFYQSTHWSTQNSYEDITATSRTLLDFRIPSAIHLQISNKSTPNTFNSLDFSTRSRINGSLSYLYSDAQQLEKFMRNSTDIPLQDATETYRQLQPNLNFSVSSANTLSSDNTTVDNDKKLLHDSKFVKKSLYYGRMYYPSSDLEAMIIKRLSPQTQFMLKGVSSFKESLNVLTCYFQRDSHRNLQEWIFSTSDLLCGYRVLHNFLTTPSKFNTSLYNNSSLSLGAEFWLGLVSLSPGCSTTLRYYTHSTNTGRPLTLTLSWNPLFGHISSTYSAKTGTNSTFCAKYDFNLYSIESNLSFGCEFWQKKHHLLETNKNNNDKLEPISDELVDINPNSRATKLLHENVPDLNSAVNDIPSTLDIPVHKQKLLNDLTYAFSSSLRKIDEERSTIEKFDNKINSSIFTSVWKLSTSLRDKTLKLLWEGKWRGFLISAGTELVFTRGFQESLSDDEKNDNAISISATDTENGNIPVFPAKFGIQFQYST*", + "old_alignment": "MLPYMDQVLRAFYQSTHWSTQNSYEDITATSRTLLDFRIPSAIHLQISNKSTPNTFNSLDFSTRSRINGSLSYLYSDAQQLEKFMRNSTDIPLQDATETYRQLQPNLNFSVSSANTLSSDNTTVDNDKKLLHDSKFVKKSLYYGRMYYPSSDLEAMIIKRLSPQTQFMLKGVSSFKESLNVLTCYFQRDSHRNLQEWIFSTSDLLCGYRVLHNFLTTPSKFNTSLYNNSSLSLGAEFWLGLVSLSPGCSTTLRYYTHSTNTGRPLTLTLSWQPLFGHISSTYSAKTGTNSTFCAKYDFNLYSIESNLSFGCEFWQKKHHLLETNKNNNDKLEPISDELVDINPNSRATKLLHENVPDLNSAVNDIPSTLDIPVHKQKLLNDLTYAFSSSLRKIDEERSTIEKFDNKINSSIFTSVWKLSTSLRDKTLKLLWEGKWRGFLISAGTELVFTRGFQESLSDDEKNDNAISISATDTENGNIPVFPAKFGIQFQYST*" + } + ], + "YAL005C": [ + { + "revision": "070406", + "new_alignment": "MSKAVGIDLGTTYSCVAHFANDRVDIIANDQGNRTTPSFVAFTDTERLIGDAAKNQAAMNPSNTVFDAKRLIGRNFNDPEVQADMKHFPFKLIDVDGKPQIQVEFKGETKNFTPEQISSMVLGKMKETAESYLGAKVNDAVVTVPAYFNDSQRQATKDAGTIAGLNVLRIINEPTAAAIAYGLDKKGKEEHVLIFDLGGGTFDVSLLSIEDGIFEVKATAGDTHLGGEDFDNRLVNHFIQEFKRKNKKDLSTNQRALRRLRTACERAKRTLSSSAQTSVEIDSLFEGIDFYTSITRARFEELCADLFRSTLDPVEKVLRDAKLDKSQVDEIVLVGGSTRIPKVQKLVTDYFNGKEPNRSINPDEAVAYGAAVQAAILTGDESSKTQDLLLLDVAPLSLGIETAGGVMTKLIPRNSTIPTKKSEIFSTYADNQPGVLIQVFEGERAKTKDNNLLGKFELSGIPPAPRGVPQIEVTFDVDSNGILNVSAVEKGTGKSNKITITNDKGRLSKEDIEKMVAEAEKFKEEDEKESQRIASKNQLESIAYSLKNTISEAGDKLEQADKDTVTKKAEETISWLDSNTTASKEEFDDKLKELQDIANPIMSKLYQAGGAPGGAAGGAPGGFPGGAPPAPEAEGPTVEEVD*", + "old_alignment": "MSKAVGIDLGTTYSCVAHFANDRVDIIANDQGNRTTPSFVAFTDTERLIGDAAKNQAAMNPSNTVFDAKRLIGRNFNDPEVQADMKHFPFKLIDVDGKPQIQVEFKGETKNFTPEQISSMVLGKMKETAESYLGAKVNDAVVTVPAYFNDSQRQATKDAGTIAGLNVLRIINEPTAAAIAYGLDKKGKEEHVLIFDLGGGTFDVSLLFIEDGIFEVKATAGDTHLGGEDFDNRLVNHFIQEFKRKNKKDLSTNQRALRRLRTACERAKRTLSSSAQTSVEIDSLFEGIDFYTSITRARFEELCADLFRSTLDPVEKVLRDAKLDKSQVDEIVLVGGSTRIPKVQKLVTDYFNGKEPNRSINPDEAVAYGAAVQAAILTGDESSKTQDLLLLDVAPLSLGIETAGGVMTKLIPRNSTISTKKFEIFSTYADNQPGVLIQVFEGERAKTKDNNLLGKFELSGIPPAPRGVPQIEVTFDVDSNGILNVSAVEKGTGKSNKITITNDKGRLSKEDIEKMVAEAEKFKEEDEKESQRIASKNQLESIAYSLKNTISEAGDKLEQADKDTVTKKAEETISWLDSNTTASKEEFDDKLKELQDIANPIMSKLYQAGGAPGGAAGGAPGGFPGGAPPAPEAEGPTVEEVD*" + } + ], + "YAL004W": [ + { + "revision": "070406", + "new_alignment": "MGVTSGGLNFKDTVFNGQQRDIESTTTQVENQDVFFLTLLVQTVSNGSGGRFVNNTQDIQTSNGTSILGSLSLRIVEVSWDSDDSVIDLGSQVRFGSFLHLTQDHGGDLFWGKVLGFTLKFNLNLRLTVNIDQLEWEVLHVSLHFWVVEVSTDQTLSVENGIRRIHSSLILSSITNQSFSVSESDKRWSGSVTLIVGNNVHTIISKVSNTRVCCT*", + "old_alignment": "MGVTSGGLNFKDTVFNEQQRDIESTTTQVENQDVFFLTLLVQTVSNGSGGRFVNNTQDIQTSNGTSILGSLSLRIVEVSWDSDDSVIDLGSQVRFGSFLHLTQDHGGDLFWGKVLGFTLKFNLNLRLTVNIDQLEWEVLHVSLHFWVVEVSTDQTLSVENGIRRIHSSLILSSITNQSFSVSESDKRWSGSVTLIVGNNVHTIISKVSNTRVCCT*" + } + ], + "YAL002W": [ + { + "revision": "040206", + "new_alignment": "MEQNGLDHDSRSSIDTTINDTQKTFLEFRSYTQLSEKLASSSSYTAPPLNEDGPKGVASAVSQGSESVVSWTTLTHVYSILGAYGGPTCLYPTATYFLMGTSKGCVLIFNYNEHLQTILVPTLSEDPSIHSIRSPVKSIVICSDGTHVAASYETGNICIWNLNVGYRVKPTSEPTNGMTPTPALPAVLHIDDHVNKEITGLDFFGARHTALIVSDRTGKVSLYNGYRRGFWQLVYNSKKILDVNSSKEKLIRSKLSPLISREKISTNLLSVLTTTHFALILLSPHVSLMFQETVEPSVQNSLVVNSSISWTQNCSRVAYSVNNKISVISISSSDFNVQSASHSPEFAESILSIQWIDQLLLGVLTISHQFLVLHPQHDFKILLRLDFLIHDLMIPPNKYFVISRRSFYLLTNYSFKIGKFVSWSDITLRHILKGDYLGALEFIESLLQPYCPLANLLKLDNNTEERTKQLMEPFYNLSLAALRFLIKKDNADYNRVYQLLMVVVRVLQQSSKKLDSIPSLDVFLEQGLEFFELKDNAVYFEVVANIVAQGSVTSISPVLFRSIIDYYAKEENLKVIEDLIIMLNPTTLDVDLAVKLCQKYNLFDLLIYIWNKIFDDYQTPVVDLIYRISNQSEKCVIFNGPQVPPETTIFDYVTYILTGRQYPQNLSISPSDKCSKIQRELSAFIFSGFSIKWPSNSNHKLYICENPEEEPAFPYFHLLLKSNPSRFLAMLNEVFEASLFNDDNDMVASVGEAELVSRQYVIDLLLDAMKDTGNSDNIRVLVAIFIATSISKYPQFIKVSNQALDCVVNTICSSRVQGIYEISQIALESLLPYYHSRTTENFILELKEKNFNKVLFHIYKSENKYASALSLILETKDIEKEYNTDIVSITDYILKKCPPGSLECGKVTEVIETNFDLLLSRIGIEKCVTIFSDFDYNLHQEILEVKNEETQQKYLDKLFSTPNINNKVDKRLRNLHIELNCKYKSKREMILWLNGTVLSNAESLQILDLLNQDSNFEAAAIIHERLESFNLAVRDLLSFIEQCLNEGKTNISTLLESLRRAFDDCNSAGTEKKSCWILLITFLITLYGKYPSHDERKDLCNKLLQEAFLGLVRSKSSSQKDSGGEFWEIMSSVLEHQDVILMKVQDLKQLLLNVFNTYKLERSLSELIQKIIEDSSQDLVQQYRKFLSEGWSIHTDDCEICGKKIWGAGLDPLLFLAWENVQRHQDMISVDLKTPLVIFKCHHGFHQTCLENLAQKPDEYSCLICQTESNPKIV*", + "old_alignment": "--------------------------------------------------------------------------------------------------MGTSKGCVLIFNYNEHLQTILVPTLSEDPSIHSIRSPVKSIVICSDGTHVAASYETGNICIWNLNVGYRVKPTSEPTNGMTPTPALPAVLHIDDHVNKEITGLDFFGARHTALIVSDRTGKVSLYNGYRRGFWQLVYNSKKILDVNSSKEKLIRSKLSPLISREKISTNLLSVLTTTHFALILLSPHVSLMFQETVEPSVQNSLVVNSSISWTQNCSRVAYSVNNKISVISISSSDFNVQSASHSPEFAESILSIQWIDQLLLGVLTISHQFLVLHPQHDFKILLRLDFLIHDLMIPPNKYFVISRRSFYLLTNYSFKIGKFVSWSDITLRHILKGDYLGALEFIESLLQPYCPLANLLKLDNNTEERTKQLMEPFYNLSLAALRFLIKKDNADYNRVYQLLMVVVRVLQQSSKKLDSIPSLDVFLEQGLEFFELKDNAVYFEVVANIVAQGSVTSISPVLFRSIIDYYAKEENLKVIEDLIIMLNPTTLDVDLAVKLCQKYNLFDLLIYIWNKIFDDYQTPVVDLIYRISNQSEKCVIFNGPQVPPETTIFDYVTYILTGRQYPQNLSISPSDKCSKIQRELSAFIFSGFSIKWPSNSNHKLYICENPEEEPAFPYFHLLLKSNPSRFLAMLNEVFEASLFNDDNDMVASVGEAELVSRQYVIDLLLDAMKDTGNSDNIRVLVAIFIATSISKYPQFIKVSNQALDCVVNTICSSRVQGIYEISQIALESLLPYYHSRTTENFILELKEKNFNKVLFHIYKSENKYASALSLILETKDIEKEYNTDIVSITDYILKKCPPGSLECGKVTEVIETNFDLLLSRIGIEKCVTIFSDFDYNLHQEILEVKNEETQQKYLDKLFSTPNINNKVDKRLRNLHIELNCKYKSKREMILWLNGTVLSNAESLQILDLLNQDSNFEAAAIIHERLESFNLAVRDLLSFIEQCLNEGKTNISTLLESLRRAFDDCNSAGTEKKSCWILLITFLITLYGKYPSHDERKDLCNKLLQEAFLGLVRSKSSSQKDSGGEFWEIMSSVLEHQDVILMKVQDLKQLLLNVFNTYKLERSLSELIQKIIEDSSQDLVQQYRKFLSEGWSIHTDDCEICGKKIWGAGLDPLLFLAWENVQRHQDMISVDLKTPLVIFKCHHGFHQTCLENLAQKPDEYSCLICQTESNPKIV*" + } + ], + "YAR014C": [ + { + "revision": "040206", + "new_alignment": "MSNKEEHVDETSASGVKEVSSIAARHDNGYAPSLITSTSGMDSFQSHALLNDPTLIEDYSDIINNRPTSGSKLTLGNEDSESMGGSVVVTPTSNKSSPFNSKLNILSNAAEKGHDVLRNRDDDKELEEENVEKHMHSNSKRDQRHYKENSSELPDSYDYSDSEFEDNLERRLQEIETDSVDSADKDEVHFSVNNTMNPDVDDFSDGLKYAISEDEDEEENYSDDDDFDRKFQDSGFQGEKDDLEEENDDYQPLSPPRELDPDKLYALYAFNGHDSSHCQLGQDEPCILLNDQDAYWWLVKRITDGKIGFAPAEILETFPERLARLNCWKNENMSSQSVASSDSKDDSISSGNKNQSDAESIIPTPALNGYGKGNKSVSFNDVVGYADRFIDDAIEDTSLDSNDDGGEGNGQSYDDDVDNDKETKVTHRDEYTEAKLNFGKFQDDDTSDVVSDVSFSTSLNTPLNVKKVRRQDNKNESEPKTSSSKDREDDYNANRYVGQEKSEPVDSDYDTDLKKVFEAPRMPFANGMAKSDSQNSLSTIGEFSPSSSEWTNESPSTPIVEESSSIPSSRAIKDISQYIHAKSKIEETTNVENTE---------------------GQIQASLGSSGGMANQTDAEQPKEELEKHHSTPEEEKQSTLSLHSSSEEDFYMDEQRAVSSASINSSLSGSRALSNTNMSDPASKPNSLVQHLYAPVFDRMDVLMKQLDEIIRK*----", + "old_alignment": "MSNKEEHVDETSASGVKEVSSIAARHDNGYAPSLITSTSGMDSFQSHALLNDPTLIEDYSDIINNRPTSGSKLTLGNEDSESMGGSVVVTPTSNKSSPFNSKLNILSNAAEKGHDVLRNRDDDKELEEENVEKHMHSNSKRDQRHYKENSSELPDSYDYSDSEFEDNLERRLQEIETDSVDSADKDEVHFSVNNTMNPDVDDFSDGLKYAISEDEDEEENYSDDDDFDRKFQDSGFQGEKDDLEEENDDYQPLSPPRELDPDKLYALYAFNGHDSSHCQLGQDEPCILLNDQDAYWWLVKRITDGKIGFAPAEILETFPERLARLNCWKNENMSSQSVASSDSKDDSISSGNKNQSDAESIIPTPALNGYGKGNKSVSFNDVVGYADRFIDDAIEDTSLDSNDDGGEGNGQSYDDDVDNDKETKVTHRDEYTEAKLNFAKFQDDDTSDVVSDVSFSTSLNTPLNVKKVRRQDNKNESEPKTSSSKDREDDYNANRYVGQEKSEPVDSDYDTDLKKVFEAPRMPFANGMAKSDSQNSLSTIGEFSPSSSEWTNESPSTPIVEESSSIPSSRAI-----------------------RTFTYIMQNRKLRDNKRGKHRGQIQASLGSSGGMPNQTDAEQPKEELEKHHSTPEEEKQSTLSLHSSSEEDFYMDEQRAVSSASINSSLSGSRALSNTNMSDPASKPNSLVQHLYAPVFDRMDVLMK---------PIG*" + }, + { + "revision": "110203", + "new_alignment": "MSNKEEHVDETSASGVKEVSSIAARHDNGYAPSLITSTSGMDSFQSHALLNDPTLIEDYSDIINNRPTSGSKLTLGNEDSESMGGSVVVTPTSNKSSPFNSKLNILSNAAEKGHDVLRNRDDDKELEEENVEKHMHSNSKRDQRHYKENSSELPDSYDYSDSEFEDNLERRLQEIETDSVDSADKDEVHFSVNNTMNPDVDDFSDGLKYAISEDEDEEENYSDDDDFDRKFQDSGFQGEKDDLEEENDDYQPLSPPRELDPDKLYALYAFNGHDSSHCQLGQDEPCILLNDQDAYWWLVKRITDGKIGFAPAEILETFPERLARLNCWKNENMSSQSVASSDSKDDSISSGNKNQSDAESIIPTPALNGYGKGNKSVSFNDVVGYADRFIDDAIEDTSLDSNDDGGEGNGQSYDDDVDNDKETKVTHRDEYTEAKLNFGKFQDDDTSDVVSDVSFSTSLNTPLNVKKVRRQDNKNESEPKTSSSKDREDDYNANRYVGQEKSEPVDSDYDTDLKKVFEAPRMPFANGMAKSDSQNSLSTIGEFSPSSSEWTNESPSTPIVEESSSIPSSRAIKDISQYIHAKSKIEETTNVENTE---------------------GQIQASLGSSGGMANQTDAEQPKEELEKHHSTPEEEKQSTLSLHSSSEEDFYMDEQRAVSSASINSSLSGSRALSNTNMSDPASKPNSLVQHLYAPVFDRMDVLMKQLDEIIRK*", + "old_alignment": "MSNKEEHVDETSASGVKEVSSIAARHDNGYAPSLITSTSGMDSFQSHALLNDPTLIEDYSDIINNRPTSGSKLTLGNEDSESMGGSVVVTPTSNKSSPFNSKLNILSNAAEKGHDVLRNRDDDKELEEENVEKHMHSNSKRDQRHYKENSSELPDSYDYSDSEFEDNLERRLQEIETDSVDSADKDEVHFSVNNTMNPDVDDFSDGLKYAISEDEDEEENYSDDDDFDRKFQDSGFQGEKDDLEEENDDYQPLSPPRELDPDKLYALYAFNGHDSSHCQLGQDEPCILLNDQDAYWWLVKRITDGKIGFAPAEILETFPERLARLNCWKNENMSSQSVASSDSKDDSISSGNKNQSDAESIIPTPALNGYGKGNKSVSFNDVVGYADRFIDDAIEDTSLDSNDDGGEGNGQSYDDDVDNDKETKVTHRDEYTEAKLNFAKFQDDDTSDVVSDVSFSTSLNTPLNVKKVRRQDNKNESEPKTSSSKDREDDYNANRYVGQEKSEPVDSDYDTDLKKVFEAPRMPFANGMAKSDSQNSLSTIGEFSPSSSEWTNESPSTPIVEESSSIPSSRAI-----------------------RTFTYIMQNRKLRDNKRGKHRGQIQASLGSSGGMPNQTDAEQPKEELEKHHSTPEEEKQSTLSLHSSSEEDFYMDEQRAVSSASINSSLSGSRALSNTNMSDPASKPNSLVQHLYAPVFDRMDVLMKQLDEIIRK*" + } + ], + "YAR019C": [ + { + "revision": "110203", + "new_alignment": "MNSMADTDRVNLTPIQRASEKSVQYHLKQVIGRGSYGVVYKAINKHTDQVVAIKEVVYENDEELNDIMAEISLLKNLNHNNIVKYHGFIRKSYELYILLEYCANGSLRRLISRSSTGLSENESKTYVTQTLLGLKYLHGEGVIHRDIKAANILLSADNTVKLADFGVSTIVNSSALTLAGTLNWMAPEILGNRGASTLSDIWSLGATVVEMLTKNPPYHNLTDANIYYAVENDTYYPPSSFSEPLKDFLSKCFVKNMYKRPTADQLLKHVWINSTENVKVDKLNKFKEDFTDADYHWDADFQEEKLNISPSKFSLAAAPAAWAENNQELDLMPPTESQLLSQLKSSSKPLTDLHVLFSVCSLENIADTIIECLSRTTVDKRLITAFGSIFVYDTQHNHSRLRLKFIAMGGIPLIIKFEHLAKEFVIDYPQTLIECGIMYPPNFASLKTPKYILELVYRFYDLTSTAFWCRWCFKHLDISLLLNNIHERRAQSILLKLSSYAPWSFEKILPSLIDSKLKKKILISPQITYVVFKSINYMITTNDDKIHKSAIPSSSSLPLSSSPTRNSPVNSVQSPSRSPVHSLMATRPSSPMRHKSISNFPHLTISSKSRLLIELPEGFFTWLTSFFVDMAQIKDLSVLKYFTKLCYLTVHINSTFLNDLLDNDAFFAFIRNIDTIIPFIDDAKTAAFIWKQITAICVEMSLDMDQMSASLFSTAMNFIRKKNNTSISGLEIILNCLHFTLRNVNDDVAPTVGSSESHSVFLIKVNNDAAIELPIDQLVDLFYALNDDDVNLSKLISIFTKICSLPGFENLTINIIFHPNFYEKIVSFFDTYFNSLLIQIDLLKFIKLIFSKSLLKLYDYTGQPDPIKQTEPNRRNKATVFKLRAILVQITEFLNNNWNKDV---PKRNSNQVGGDSVLICQLCEDIRSLSKKGSLQKVSSVTAAIGSSPTKDERSNLRSSKDKSDGFSVPITTFQT*", + "old_alignment": "MNSMADTDRVNLTPIQRASEKSVQYHLKQVIGRGSYGVVYKAINKHTDQVVAIKEVVYENDEELNDIMAEISLLKNLNHNNIVKYHGFIRKSYELYILLEYCANGSLRRLISRSSTGLSENESKTYVTQTLLGLKYLHGEGVIHRDIKAANILLSADNTVKLADFGVSTIVNSSALTLAGTLNWMAPEILGNRGASTLSDIWSLGATVVEMLTKNPPYHNLTDANIYYAVENDTYYPPSSFSEPLKDFLSKCFVKNMYKRPTADQLLKHVWINSTENVKVDKLNKFKEDFTDADYHWDADFQEEKLNISPSKFSLRAAPAPWAENNQELDLMPPTESQLLSQLKSSSKPLTDLHVLFSVCSLENIADTIIECLSRTTVDKRLITAFGSIFVYDTQHNHSRLRLKFIAMGGIPLIIKFEHLAKEFVIDYPQTLIECGIMYPPNFASLKTPKYILELVYRFYDLTSTAFWCRWCFKHLDISLLLNNIHERRAQSILLKLSSYAPWSFEKILPSLIDSKLKKKILISPQITYVVFKSINYMITTNDDKIHKSAIPSSSSLPLSSSPTRNSPVNSVQSPSRSPVHSLMATRPSSPMRHKSISNFPHLTISSKSRLLIELPEGFFTWLTSFFVDMAQIKDLSVLKYFTKLCYLTVHINSTFLNDLLDNDAFFAFIRNIDTIIPFIDDAKTAAFIWKQITAICVEMSLDMDQMSASLFSTAMNFIRKKNNTSISGLEIILNCLHFTLRNVNDDVAPTVGSSESHSVFLIKVNNDAAIELPIDQLVDLFYALNDDDVNLSKLISIFTKICSLPGFENLTINIIFHPNFYEKIVSFFDTYFNSLLIQIDLLKFIKLIFSKSLLKLYDYTGQPDPIKQTEPNRRNKATVFKLRAILVQITEFLNNNWN---NGCPKRNSNQVGGDSVLICQLCEDIRSLSKKGSLQKVSSVTAAIGSSPTKDERSNLRSSKDKSDGFSVPITTFQT*" + } + ], + "YAR019W-A": [ + { + "revision": "110203", + "new_alignment": "MFINGFVNYPVRTPPNDLLQVVLHGFLRCPLDGSQVDSIGIGHTVHGIVLPGKWVVLMCVLSFLEPPSRRYTFCEADLPYTKITARKAERPSQGGKDYNGTAKSAQSTTV*-----------", + "old_alignment": "MFINGFVNYPVRTPPNDLLQVVLHGFLRCPLDGSQVDSIGIGHTVHGIVLPGKWVVLMCVLSFLEPPSRRYTFCEADLPYTKITARKAERPSQGGKDYNGTAKS-------HRALQYSIEC*" + } + ], + "YAR023C": [ + { + "revision": "110203", + "new_alignment": "MINFLLFVLTILATLTNIWFSGVLSPAMVIRICLGGSMVVLQIWSFSRPISNETFRTKLLLEVITHRPSIAGKEWKTITYNMNQYLFKAGLWKTPYHFFCEHQCYEFFKDLIKGKYPDVQWDTANTQPFISVPENQAATQNSDVEPTVKWCLFKAAEIQAHAVREYWQSQYPDVGIPAI*", + "old_alignment": "MINFLLFVLTILATLTNIWVSGVLSPAMVIRICLGGSMVVLQIWSISRPISNETFRTKLLLEVITHRPSIAGKEWKTITYNMNQYLFKAGLWKTPYHFFCEHQCYEFFKDLIKGKYPDVQWDTANTQPFISVPENQAATQNSDVEPTVKWCLFKAAEIQAHAVREYWQSQYPDVGIPAI*" + } + ], + "YAR042W": [ + { + "revision": "060120", + "new_alignment": "MEQPDLSSVAISKPLLKLKLLDALRQGSFPNLQDLLKKQFQPLDDPNVQQVLHLMLHYAVQVAPMAVIKEIVHHWVSTTNTTFLNIHLDLNERDSNGNTPLHIAAYQSRGDIVAFLLDQPTINDCVLNNSHLQAIEMCKNLNIAQMMQVKRSTYVAETAQEFRTAFNNRDFGHLESILSSPRNAELLDINGMDPETGDTVLHEFVKKRDVIMCRWLLEHGADPFKRDRKGKLPIELVRKVNENDTATNTKIAIDIELKKLLERATREQSVIDVTNNNLHEAPTYKGYLKKWTNFAQGYKLRWFILSSDGKLSYYIDQADTKNACRGSLNMSSCSLHLDSSEKLKFEIIGGNNGVIRWHLKGNHPIETNRWVWAIQGAIRYAKDREILLHNGPYSPSLALSHGLSSKVSNKENLHATSKRLTKSPHLSKSTLTQNDHDNDDDSTNNNNNKSNNDYDDNNNNNNNDDDDYDDDDESRPLIEPLPLISSRSQSLSEITPGPHSRKSTVSSTRAADIPSDDEGYSEDDSDDDGNSSYTMENGGENDGDEDLNAIYGPYIQKLHMLQRSISIELASLNELLQDKQQHDEYWNTVNTSIETVSEFFDKLNRLTSQREKRMIAQMTKQRDVNNVWIQSVKDLEMELVDKDEKLVALDKERKNLKKMLQKKLNNQPQVETEANEESDDANSMIKGSQESTNTLEEIVKFIEATKESDEDSDADEFFDAEEAASDKKANDSEDLTTNKETPANAKPQEEAPEDESLIVISSPQVEKKNQLLKEGSFVGYEDPVRTKLALDEDNRPKIGLWSVLKSMVGQDLTKLTLPVSFNEPTSLLQRVSEDIEYSHILDQAATFEDSSLRMLYVAAFTASMYASTTNRVSKPFNPLLGETFEYARTDGQYRFFTEQVSHHPPISATWTESPKWDFYGECNVDSSFNGRTFAVQHLGLWYITIRPDHNISVPEETYSWKKPNNTVIGILMGKPQVDNSGDVKVTNHTTGDYCMLHYKAHGWTSAGAYEVRGEVFNKDDKKLWVLGGHWNDSIYGKKVTARGGELTLDRIKTANSATGGPKLDGSKFLIWKANERPSVPFNLTSFALTLNALPPHLIPYLAPTDSRLRPDQRAMENGEYDKAAAEKHRVEVKQRAAKKEREQKGEEYRPKWFVQEEHPVTKSLYWKFNGEYWNKRKNHDFKDCADIF*", + "old_alignment": "MEQPDLSSVAISKPLLKLKLLDALRQGSFPNLQDLLKKQFQPLDDPNVQQVLHLMLHYAVQVAPMAVIKEIVHHWVSTTNTTFLNIHLDLNERDSNGNTPLHIAAYQSRGDIVAFLLDQPTINDCVLNNSHLQAIEMCKNLNIAQMMQVKRSTYVAETAQEFRTAFNNRDFGHLESILSSPRNAELLDINGMDPETGDTVLHEFVKKRDVIMCRWLLEHGADPFKRDRKGKLPIELVRKVNENDTATSTKIAIDIELKKLLERATREQSVIDVTNNNLHEAPTYKGYLKKWTNFAQGYKLRWFILSSDGKLSYYIDQADTKNACRGSLNMSSCSLHLDSSEKLKFEIIGGNNGVIRWHLKGNHPIETNRWVWAIQGAIRYAKDREILLHNGPYSPSLALSHGLSSKVSNKENLHATSKRLTKSPHLSKSTLTQNDHDNDDDSTNNNNNKSNNDYDDNNNNNNNDDDDYDDDDESRPLIEPLPLISSRSQSLSEITPGPHSRKSTVSSTRAADIPSDDEGYSEDDSDDDGNSSYTMENGGENDGDEDLNAIYGPYIQKLHMLQRSISIELASLNELLQDKQQHDEYWNTVNTSIETVSEFFDKLNRLTSQREKRMIAQMTKQRDVNNVWIQSVKDLEMELVDKDEKLVALDKERKNLKKMLQKKLNNQPQVETEANEESDDANSMIKGSQESTNTLEEIVKFIEATKESDEDSDADEFFDAEEAASDKKANDSEDLTTNKETPANAKPQEEAPEDESLIVISSPQVEKKNQLLKEGSFVGYEDPVRTKLALDEDNRPKIGLWSVLKSMVGQDLTKLTLPVSFNEPTSLLQRVSEDIEYSHILDQAATFEDSSLRMLYVAAFTASMYASTTNRVSKPFNPLLGETFEYARTDGQYRFFTEQVSHHPPISATWTESPKWDFYGECNVDSSFNGRTFAVQHLGLWYITIRPDHNISVPEETYSWKKPNNTVIGILMGKPQVDNSGDVKVTNHTTGDYCMLHYKAHGWTSAGAYEVRGEVFNKDDKKLWVLGGHWNDSIYGKKVTARGGELTLDRIKTANSATGGPKLDGSKFLIWKANERPSVPFNLTSFALTLNALPPHLIPYLAPTDSRLRPDQRAMENGEYDKAAAEKHRVEVKQRAAKKEREQKGEEYRPKWFVQEEHPVTKSLYWKFNGEYWNKRKNHDFKDCADIF*" + } + ], + "YAR061W": [ + { + "revision": "141118", + "new_alignment": "MPYHYLFLALFTYLATSNVVSGSTQACLPVGPRKNGMNVNFYKYSLLDSTTYSYPQYMTSGYASNWN*VPLADRRISQLTTIFLVLSLQELLNVLNQMLMETGDAEVIVNVQNSQERPIGVLIYLVSYYPKKRYSRNDRLLFTTTNKFLHVQVC*GR*LCNSISRW*RCVRMLCTRTTSNYIDGFYNQWY*AMARKFA**HRRDCLHVCRLLLSAEGCLLQCRFLGHASN*RGIA*WYYC***L*RVRLLF*R*FKSVKLYYP*SFKTYY*HRHNYYRTVDWYFYFYIY*NDHRHRY*WSTN*RNRYCCQSSNHCHLIQFVIIFFRTNHQLYHVL", + "old_alignment": "MPYHYLFLALFTYLATSNVVSGSTQACLPVGPRKNGMNVNFYKYSLLDSTTYSYPQYMTSGYASNWN*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------" + } + ], + "YBL106C": [ + { + "revision": "110203", + "new_alignment": "MFKKSRHLKNVSNAIKSARVHDVSNGINSKFFDTKKICTYGINGRITVTTFDYTQSLLAVATTAGEIHVYGQKQIEVVFTLKNRPQIKHMRFIKGIYLIAVDEKSNIIVLSVHSKQILTTVFCPNSITCIETDPSLDWMLIGLESGSILIYDVDRNQMSKLKIENFQKSVFLPKERLSPVISIQWNPRDIGTILISYEHITVIYSFIDYKVKQHFFYQLEPYAPGGDLSTNIEKKRTPKVIQSLYHPNSLHILTVHEDNSLVFWDVNSGKLIHARSIFETHVNFPNPALKDCSFTETPAIFKVSWLCQRNPEYTSLLIATKATENPCLPQEITMIDLGGTPMYSVTSFDAMSKYYAKPVQQKLFSLIGKAPLINFLPLPKASPYFGGCHDTNLILLLLEDGELETLIYPAGSFSSKASIFPRSLAWVRPTVTTCIAQSVQKNLWLGMMTIAQSESFLKGGIPATRNIRRHETRSALLTGHSNGSVRIWDASHSEVTDNAVFEVNTAKVLNRATNLAIKNISFASETLELAVSSEVGDVILFKFETNKFYGQLPKSDALQLKFSRFSLDDSKTILVDVSDRGPTNVKQGFIPSTVIHAKKGAVSAIMNSNIGFVAVGFIEGTLIILDRRGPAIIFNENIRVISKAGSSYVSTVHFCVMEYGDDGFSSILMLCGTDIGELMTFKILPATNGRFEVKFTDATKTNNQGKILGINSFAKDTGYSCSATISKMQGLSKGIAIPGFVTISGANDIRLVSPGKSKDTHALFKYPIATSGLSFIPIIDGKGERKLSTIMIVLLINGDIKVLTVPELKEVKNLRCPVPLSAQYVENSSILENGDIVIRTGKFQASLISVLNESATGTNHTADISQHTPIDTLYNPDLKIGYRPQVNSLQWARGTIYCTPYQLDELLGGIERPESKYEESAIARGCISSSSSNAARKLPPGTEDHRYARPVRSSGRSNGYGVLKSVSRAIETRLDTVETTINDYATTMGQTMNDAMEETGRDMMKSAVGF*", + "old_alignment": "MFKKSRHLKNVSNAIKSARVHDVSNGINSKFFDTKKICTYGINGRITVTTFDYTQSLLAVATTAGEIHVYGQKQIEVVFTLKNRPQIKHMRFIKGIYLIAVDEKSNIIVLSVHSKQILTTVFCPNSITCFETDPPLDWMLIGLESGSILIYDVDRNQMSKLKIENFQKSVFLPKERLSPVISIQWNPRDIGTILISYEHITVIYSFIDYKVKQHFFYQLEPYAPGGDLSTNIEKKRTPKVIQSLYHPNSLHILTVHEDNALVFWDVNSGKLIHARSIFETHVNFPNPALKDCSFTETPAIFKVSWLCQRNPEYTSLLIATKATENPCLPQEITMIDLGGTPMYSVTSFDAMSKYYAKPVQQKLFSLIGKAPLINFLPLPKASPYFGGCHDTNLILLLLEDGELETLIYPAGSFSSKASIFPRSLAWVRPTVTTCIAQSVQKNLWLGMMTIAQSESFLKGGIPATRNIRRHETRSALLTGHSNGSVRIWDASHSEVTDNAVFEVNTAKVLNRATNLAIKNISFASETLELAVSSEVGDVILFKFETNKFYGQLPKSDALQLKFSRFSLDDSKTILVDVSDRGPTNVKQGFIPSTVIHAKKGAVSAIMNSNIGFVAVGFIEGTLIILDRRGPAIIFNENIRVISKAGSSYVSTVHFCVMEYGDDGFSSILMLCGTDIGELMTFKILPATNGRFEVKFTDATKTNNQGKILGINSFAKDTGYSCSATISKMQGLSKGIAIPGFVTISGANDIRLVSPGKSKDTHALFKYPIATSGLSFIPIIDGKGERKLSTIMIVLLINGDIKVLTVPELKEVKNLRCPVPLSAQYVENSSILENVDIVIRTGKFQASLISVLNESATGSNHTADISQHTPIDTLYNPDLKIGYRPQVNSLQWARGTIYCTPYQLDELLGGIERPESKYEESAIARGCISSSSSNAARKLPPGTKDHRYARPVRSSGRSNGYGVLKSVSRAIETRLDTVETTINDYATTMGQTMNDAMEETGRDMMKSAVGF*" + } + ], + "YBL105C": [ + { + "revision": "110203", + "new_alignment": "MSFSQLEQNIKKKIAVEENIIRGASALKKKTSNVMVIQKCNTNIREARQNLEYLEDSLKKLRLKTAQQSQGENGSEDNERCNSKEYGFLSTKSPNEHIFSRLDLVKYDCPSLAQRIQYMLQQLEFKLQVEKQYQEANTKLTKLYQIDGDQRSSSAAEGGAMESKYRIQMLNKALKKYQAINVDFDQFKHQPNDIMDNQQPKFRRKQLTGVLTIGITAARDVDHIQSPMFARKPESYVTIKIDDTIKARTKPSRNDRWSEDFQIPVEKGNEIEITVYDKVNDSLIPVAIMWLLLSDIAEEIRKKKAGQTNEQQGWVNASNINGGSSLASEEGSTLTSTYSNSAIQSTSAKNVQGENTSTSQISTNSWFVLEPSGQILLTLGFHKSSQIERKQLMGGLHRHGAIINRKEEIFEQHGHHFVQKSFYNIMCCAYCGDFLRYTGFQCQDCKFLCHKKCYTNVVTKCIAKTSTDTDPDEAKLNHRIPHRFLPTSNRGTKWCCHCGYILPWGRHKVRKCSECGIMCHAQCAHLVPDFCGMSMEMANKILKTIQDTKRNQEKKKRTVPSAQLGSSIGTANGSDLSPSKLAERANAPLPPQPRKHDKTPSPQKVGRDSPTKQHDPIIDKRISLQTHGREKLNKFIDENEAYLNFTEGAQQTAEFSSPEKTLDPTSNRRSLGLTDLSIEHSQTWESKDDLMRDELELWKAQREEMELEIKQDSGEIQEDLEVDHIDLETKQKLDWENKNDFREADLTIDSTHTNPFRDMNSETFQIEQDHASKEVLQETVSLAPTSTHASRTTDQQSPQKSQTSTSAKHKKRAAKRRKVSLDNFVLLKVLGKGNFGKVILSKSKNTDRLCAIKVLKKDNIIQNHDIESARAEKKVFLLATKTKHPFLTNLYCSFQTENRIYFAMEFIGGGDLMWHVQNQRLSVRRAKFYAAEVLLALKYFHDNGVIYRDLKLENILLTPEGHIKIADYGLCKDEMWYGNRTSTFCGTPEFMAPEILKEQEYTKAVDWWAFGVLLYQMLLCQSPFSGDDEDEVFNAILTDEPLYPIDMAGEIVQIFQGLLTKDPEKRLGAGPRDADEVMEEPFFRNINFDDILNLRVKPPYIPEIKSPEDTSYFEQEFTSAPPTLTPLPSVLTTSQQEEFRGFSFMPDDLDL*", + "old_alignment": "MSFSQLEQNIKKKIAVEENIIRGASALKKKTSNVMVIQKCNTNIREARQNLEYLEDSLKKLRLKTAQQSQGENGSEDNERFNSKEYGFLSTKSPNEHIFSRLDLVKYDCPSLAQRIQYMLQQLEFKLQVEKQYQEANTKLTKLYQIDGDQRSSSAAEGGAMESKYRIQMLNKALKKYQAINVDFDQFKHQPNDIMDNQQPKFRRKQLTGVLTIGITAARDVDHIQSPMFARKPESYVTIKIDDTIKARTKPSRNDRWSEDFQIPVEKGNEIEITVYDKVNDSLIPVAIMWLLLSDIAEEIRKKKAGQTNEQQGWVNASNINGGSSLASEEGSTLTSTYSNSAIQSTSAKNVQGENTSTSQISTNSWFVLEPSGQILLTLGFHKSSQIERKQLMGGLHRHGAIINRKEEIFEQHGHHFVQKSFYNIMCCAYCGDFLRYTGFQCQDCKFLCHKKCYTNVVTKCIAKTSTDTDPDEAKLNHRIPHRFLPTSNRGTKWCCHCGYILPWGRHKVRKCSECGIMCHAQCAHLVPDFCGMSMEMANKILKTIQDTKRNQEKKKRTVPSAQLGSSIGTANGSDLSPSKLAERANAPLPPQPRKHDKTPSPQKVGRDSPTKQHDPIIDKKISLQTHGREKLNKFIDENEAYLNFTEGAQQTAEFSSPEKTLDPTSNRRSLGLTDLSIEHSQTWESKDDLMRDELELWKAQREEMELEIKQDSGEIQEDLEVDHIDLETKQKLDWENKNDFREADLTIDSTHTNPFRDMNSETFQIEQDHASKEVLQETVSLAPTSTHPSRTTDQQSPQKSQTSTSAKHKKRAAKRRKVSLDNFVLLKVLGKGNFGKVILSKSKNTDRLCAIKVLKKDNIIQNHDIESARAEKKVFLLATKTKHPFLTNLYCSFQTENRIYFAMEFIGGGDLMWHVQNQRLSVRRAKFYAAEVLLALKYFHDNGVIYRDLKLENILLTPEGHIKIADYGLCKDEMWYGNRTSTFCGTPEFMAPEILKEQEYTKAVDWWAFGVLLYQMLLCQSPFSGDDEDEVFNAILTDEPLYPIDMAGEIVQIFQGLLTKDPEKRLGAGPRDADEVMEEPFFRNINFDDILNLRVKPPYIPEIKSPEDTSYFEQEFTSAPPTLTPLPSVLTTSQQEEFRGFSFMPDDLDL*" + } + ], + "YBL104C": [ + { + "revision": "040206", + "new_alignment": "MGLIKKVTHWSYDNLIDYLSVNPTRDEVTHYKVDPENESDESIIKLHTVKDFGSITCLDYSESEIGMIGVGEKNGYLRIFNISGQNSSSPASHAPVGLNANNETSMTNASGGKAAQAENIVGSVSNLKDTQGYPVSETNYDIRVRAKKQRCINSLGINTNGLIAMGLDRNKHDSSLQIWDMNYHDDSHETINPMFSYCTNESIVSLKFLNDTSVLAASTKFLKEIDVRSPNPIYQHPTRLTYDIKLNPFNDWQFSTYGDDGTLAIWDRRKLSDQASLGDLNVASPLLTFEKLVGSGAASRKYMNSCFRWSCVRNNEFATLHRGDTIKRWRLGYYCDSNRDIAADDDNEMNIENLFVSSVHDTNTMYDRVATFDYIPRSNNGTSLICMRQSGTIYRMPISEVCSKAILNNRNSLLLSNFENTEIDEIRVNNEHEKSNLENVKTILKNLSFEDLDVSEDYFPSGHDEPNNEIEYSELSEEENEGSNDVLDSKRGFELFWKPEKLLEKDISVIMRTRASLGYGLDPMNTVEMIDSSKNLQNNAYIRNTWRWIAIAKASVDDGTMVSGDLDLGYEGVIGIWNGINGISNQDRYRQETILSDKQLNKEMEKIIKLRRKNRDRNSPIANAAGSPKYVQRRLCLIISGWDLSRSDYEDKYNIIMKNGHYEKAAAWAVFFGDIPKAVEILGSAKKERLRLIATAIAGYLAYKDLPGNNAWRQQCRKMSSELDDPYLRVIFAFIADNDWWDILYEPAISLRERLGVALRFLNDTDLTTFLDRTSSTVIENGELEGLILTGITPNGIDLLQSYVNKTSDVQSAALISIFGSPRYFRDQRVDEWIQTYRDMLKSWELFSMRARFDVLRSKLSRTKTGVLTADIKPRQIYIQCQNCKQNINTPRTSSPSSAVSTSAGNYKNGEAYRRNNADYKKFNTGSSEAQAADEKPRHKYCCPHCGSSFPRCAICLMPLGTSNLPFVINGTQSRDPMQTEDSQDGANRELVSRKLKLNEWFSFCLSCNHGMHAGHAEEWFDRHNVCPTPGCTCQCNK*----------------", + "old_alignment": "------------------------------------------------------------------MIGVGEKNGYLRIFNISGQNSSSPASHAPVGLNANNETSMTNASGGKAAQAENIVGSVSNLKDTQGYPVSETNYDIRVRAKKQRCINSLGINTNGLIAMGLDRNKHDSSLQIWDMNYHDDSHETINPMFSYCTNESIVSLKFLNDTSVLAASTKFLKEIDVRSPNPIYQHPTRLTYDIKLNPFNDWQFSTYGDDGTLAIWDRRKLSDQASLGDLNVASPLLTFEKLVGSGAASRKYMNSCFRWSCVRNNEFATLHRGDTIKRWRLGYYCDSNRDIAADDDNEMNIENLFVSSVHDTNTMYDRVATFDYIPRSNNGTSLICMRQSGTIYRMPISEVCSKAILNNRNSLLLSNFENTEIDEIRVNNEHEKSNLENVKTILKNLSFEDLDVSEDYFPSGHDEPNNEIEYSELSEEENEGSNDVLDSKRGFELFWKPEKLLEKDISVIMRTRASLGYGLDPMNTVEMIDSSKNLQNNAYIRNTWRWIAIAKASVDDGTMVSGDLDLGYEGVIGIWNGINGISNQDRYRQETILSDKQLNKEMEKIIKLRRKNRDRNSPIANAAGSPKYVQRRLCLIISGWDLSRSDYEDKYNIIMKNGHYEKAAAWAVFFGDIPKAVEILGSAKKERLRLIATAIAGYLAYKDLPGNNAWRQQCRKMSSELDDPYLRVIFAFIADNDWWDILYEPAISLRERLGVALRFLNDTDLTTFLDRTSSTVIENGELEGLILTGITPNGIDLLQSYVNKTSDVQSAALISIFGSPRYFRDQRVDEWIQTYRDMLKSWELFSMRARFDVLRSKLSRTKTGVLTADIKPRQIYIQCQNCKQNINTPRTSSPSSAVSTSAGNYKNGEAYRRNNADYKKFNTGSSEAQAADEKPRHKYCCPHCGSSFPRCAICLMPLGTSNLPFVINGTQSRD---------------------------------------------------------------QCRQKTLKMVQIANS*" + } + ], + "YBL099W": [ + { + "revision": "110203", + "new_alignment": "MLARTAAIRSLSRTLINSTKAARPAAAALASTRRLASTKAQPTEVSSILEERIKGVSDEANLNETGRVLAVGDGIARVFGLNNIQAEELVEFSSGVKGMALNLEPGQVGIVLFGSDRLVKEGELVKRTGNIVDVPVGPGLLGRVVDALGNPIDGKGPIDAAGRSRAQVKAPGILPRRSVHEPVQTGLKAVDALVPIGRGQRELIIGDRQTGKTAVALDTILNQKRWNNGSDESKKLYCVYVAVGQKRSTVAQLVQTLEQHDAMKYSIIVAATASEAAPLQYLAPFTAASIGEWFRDNGKHALIVYDDLSKQAVAYRQLSLLLRRPPGREAYPGDVFYLHSRLLERAAKLSEKEGSGSLTALPVIETQGGDVSAYIPTNVISITDGQIFLEAELFYKGIRPAINVGLSVSRVGSAAQVKALKQVAGSLKLFLAQYREVAAFAQFGSDLDASTKQTLVRGERLTQLLKQNQYSPLATEEQVPLIYAGVNGHLDGIELSRIGEFESSFLSYLKSNHNELLTEIREKGELSKELLASLKSATESFVATF*", + "old_alignment": "MLARTAAIRSLSRTLINSTKAARPAAAALASTRRLASTKAQPTEVSSILEERIKGVSDEANLNETGRVLAVGDGIARVFGLNNIQAEELVEFSSGVKGMALNLEPGQVGIVLFGSDRLVKEGELVKRTGNIVDVPVGPGLLGRVVDALGNPIDGKGPIDAAGRSRAQVKAPGILPRRSVHEPVQTGLKAVDALVPIGRGQRELIIGDRQTGKTAVALDTILNQKRWNNGSDESKKLYCVYVAVGQKRSTVAQLVQTLEQHDAMKYSIIVAATASEAAPLQYLAPFTAASIGEWFRDNGKHALIVYDDLSKQAVAYRQLSLLLRRPPGREAYPGDVFYLHPRLLERAAKLSEKEGSGSLTALPVIETQGGDVSAYIPTNVISITDGQIFLEAELFYKGIRPAINVGLSVSRVGSAAQVKALKQVAGSLKLFLAQYREVAAFAQFGSDLDASTKQTLVRGERLTQLLKQNQYSPLATEEQVPLIYAGVNGHLDGIELSRIGEFESSFLSYLKSNHNELLTEIREKGELSKELLASLKSATESFVATF*" + } + ], + "YBL097W": [ + { + "revision": "040206", + "new_alignment": "MTTQLRYENNDDDERVEYNLFTNRSTMMANFEEWIKMATDNKINSRNSWNFALIDYFYDLDVLKDGENNINFQKASATLDGCIKIYSSRVDSVTTETGKLLSGLAQRKTNGASNGDDSNGGNGEGLGGDSDEANIEIDPLTGMPISNDPDVNNTRRRVYNRVLETTLVEFETIKMKELDQELIIDPLFKKALVDFDEGGAKSLLLNTLNIDNTARVIFDASIKDTQNVGQGKLQRKEEELIERDSLVDDENEPSQSLISTRNDSTVNDSVISAPSMEDEILSLGMDFIKFDQIAVCEISGSIEQLRNVVEDINQAKDFIENVNNRFDNFLTEEELQAAVPDNAEDDSDGFDMGMQQELCYPDENHDNTSHDEQDDDNVNSTTGSIFEKDLMAYFDENLNRNWRGREHWKVRNFKKANLVNKESDLLEETRTTIGDTTDKNTTDDKSMDTKKKHKQKKVLEIDFFKTDDSFEDKVFASKGRTKIDMPIKNRKNDTHYLLPDDFHFSTDRITRLFIKPGQKMSLFSHRKHTRGDVSSGLFEKSTVSANHSNNDIPTIADEHFWADNYERKEQEEKEKEQSKEVGDVVGGALDNPFEDDMDGVDFNQAFEGTDDNEEASVKLDLQDDEDHKFPIRENKVTYSRVSKKVDVRRLKKNVWRSINNLIQEHDSRKNREQSSNDSETHTEDESTKELKFSDIIQGISKMYSDDTLKDISTSFCFICLLHLANEHGLQITHTENYNDLIVNYEDLATTQAAS*", + "old_alignment": "--------------------------MMANFEEWIKMATDNKINSRNSWNFALIDYFYDLDVLKDGENNINFQKASATLDGCIKIYSSRVDSVTTETGKLLSGLAQRKTNGASNGDDSNGGNGEGLGGDSDEANIEIDPLTGMPISNDPDVNNTRRRVYNRVLETTLVEFETIKMKELDQELIIDPLFKKALVDFDEGGAKSLLLNTLNIDNTARVIFDASIKDTQNVGQGKLQRKEEELIERDSLVDDENEPSQSLISTRNDSTVNDSVISAPSMEDEILSLGMDFIKFDQIAVCEISGSIEQLRNVVEDINQAKDFIENVNNRFDNFLTEEELQAAVPDNAEDDSDGFDMGMQQELCYPDENHDNTSHDEQDDDNVNSTTGSIFEKDLMAYFDENLNRNWRGREHWKVRNFKKANLVNKESDLLEETRTTIGDTTDKNTTDDKSMDTKKKHKQKKVLEIDFFKTDDSFEDKVFASKGRTKIDMPIKNRKNDTHYLLPDDFHFSTDRITRLFIKPAQKMSLFSHRKHTRGDVSSGLFEKSTVSANHSNNDIPTIADEHFWADNYERKEQEEKEKEQSKEVGDVVGGALDNPFEDDMDGVDFNQAFEGTDDNEEASVKLDLQDDEDHKFPIRENKVTYSRVSKKVDVRRLKKNVWRSINNLIQEHDSRKNREQSSNDSETHTEDESTKELKFSDIIQGISKMYSDDTLKDISTSFCFICLLHLANEHGLQITHTENYNDLIVNYEDLATTQAAS*" + }, + { + "revision": "110203", + "new_alignment": "MTTQLRYENNDDDERVEYNLFTNRSTMMANFEEWIKMATDNKINSRNSWNFALIDYFYDLDVLKDGENNINFQKASATLDGCIKIYSSRVDSVTTETGKLLSGLAQRKTNGASNGDDSNGGNGEGLGGDSDEANIEIDPLTGMPISNDPDVNNTRRRVYNRVLETTLVEFETIKMKELDQELIIDPLFKKALVDFDEGGAKSLLLNTLNIDNTARVIFDASIKDTQNVGQGKLQRKEEELIERDSLVDDENEPSQSLISTRNDSTVNDSVISAPSMEDEILSLGMDFIKFDQIAVCEISGSIEQLRNVVEDINQAKDFIENVNNRFDNFLTEEELQAAVPDNAEDDSDGFDMGMQQELCYPDENHDNTSHDEQDDDNVNSTTGSIFEKDLMAYFDENLNRNWRGREHWKVRNFKKANLVNKESDLLEETRTTIGDTTDKNTTDDKSMDTKKKHKQKKVLEIDFFKTDDSFEDKVFASKGRTKIDMPIKNRKNDTHYLLPDDFHFSTDRITRLFIKPGQKMSLFSHRKHTRGDVSSGLFEKSTVSANHSNNDIPTIADEHFWADNYERKEQEEKEKEQSKEVGDVVGGALDNPFEDDMDGVDFNQAFEGTDDNEEASVKLDLQDDEDHKFPIRENKVTYSRVSKKVDVRRLKKNVWRSINNLIQEHDSRKNREQSSNDSETHTEDESTKELKFSDIIQGISKMYSDDTLKDISTSFCFICLLHLANEHGLQITHTENYNDLIVNYEDLATTQAAS*", + "old_alignment": "MTTQLRYENNDDDERVEYNLFTNRSTMMANFEEWIKMATDNKINSRNSWNFALIDYFYDLDVLKDGENNINFQKASATLDGCIKIYSSRVDSVTTETGKLLSGLAQRKTNGASNGDDSNGGNGEGLGGDSDEANIEIDPLTGMPISNDPDVNNTRRRVYNRVLETTLVEFETIKMKELDQELIIDPLFKKALVDFDEGGAKSLLLNTLNIDNTARVIFDASIKDTQNVGQGKLQRKEEELIERDSLVDDENEPSQSLISTRNDSTVNDSVISAPSMEDEILSLGMDFIKFDQIAVCEISGSIEQLRNVVEDINQAKDFIENVNNRFDNFLTEEELQAAVPDNAEDDSDGFDMGMQQELCYPDENHDNTSHDEQDDDNVNSTTGSIFEKDLMAYFDENLNRNWRGREHWKVRNFKKANLVNKESDLLEETRTTIGDTTDKNTTDDKSMDTKKKHKQKKVLEIDFFKTDDSFEDKVFASKGRTKIDMPIKNRKNDTHYLLPDDFHFSTDRITRLFIKPAQKMSLFSHRKHTRGDVSSGLFEKSTVSANHSNNDIPTIADEHFWADNYERKEQEEKEKEQSKEVGDVVGGALDNPFEDDMDGVDFNQAFEGTDDNEEASVKLDLQDDEDHKFPIRENKVTYSRVSKKVDVRRLKKNVWRSINNLIQEHDSRKNREQSSNDSETHTEDESTKELKFSDIIQGISKMYSDDTLKDISTSFCFICLLHLANEHGLQITHTENYNDLIVNYEDLATTQAAS*" + } + ], + "YBL091C-A": [ + { + "revision": "040112", + "new_alignment": "MRIVPEKLVFKAPLNKQSTEYIKLENDGEKRVIFKVRTSAPTKYCVRPNVAIIGAHESVNVQIVFLGLPKSTADDEMDQKRDKFLIVTLPIPAAYQNVEDGELLSDWPNLEEQYKDDIVFKKIKIFHSVLPKRKPSGNHDAESARAPSAGNGQSLSSRALLIITVIALLVGWIYY*", + "old_alignment": "----------------------------------------------------------------------------MDQKRDKFLIVTLPIPAAYQNVEDGELLSDWPNLEEQYKDDIVFKKIKIFHSVLPKRKPSGNHDAESARAPSAGNGQSLSSRALLIITVIALLVGWIYY*" + } + ], + "YBL091C": [ + { + "revision": "110203", + "new_alignment": "MTDAEIENSPASDLKELNLENEGVEQQDQAKADESDPVESKKKKNKKKKKKKSNVKKIELLFPDGKYPEGAWMDYHQDFNLQRTTDEESRYLKRDLERAEHWNDVRKGAEIHRRVRRAIKDRIVPGMKLMDIADMIENTTRKYTGAENLLAMEDPKSQGIGFPTGLSLNHCAAHFTPNAGDKTVLKYEDVMKVDYGVQVNGNIIDSAFTVSFDPQYDNLLAAVKDATYTGIKEAGIDVRLTDIGEAIQEVMESYEVEINGETYQVKPCRNLCGHSIAPYRIHGGKSVPIVKNGDTTKMEEGEHFAIETFGSTGRGYVTAGGEVSHYARSAEDHQVMPTLDSAKNLLKTIDRNFGTLPFCRRYLDRLGQEKYLFALNNLVRHGLVQDYPPLNDIPGSYTAQFEHTILLHAHKKEVVSKGDDY*", + "old_alignment": "MTDAEIENSPASDLKELNLENEGVEQQDQAKADESDPVESKKKKNKKKKKKKSNVKKIELLFPDGKYPEGAWMDYHQDFNLQRTTVEESRYLKRDLERAEHWNDVRKGAEIHRRVRRAIKDRIVPGMKLMDIADMIENTTRKYTGAENLLAMEDPKSQGIGFPTGLSLNHCAAHFTPNAGDKTVLKYEDVMKVDYGVQVNGNIIDSAFTVSFDPQYDNLLAAVKDATYTGIKEAGIDVRLTDIGEAIQEVMESYEVEINGETYQVKPCRNLCGHSIAPYRIHGGKSVPIVKNGDTTKMEEGEHFAIETFGSTGRGYVTAGGEVSHYARSAEDHQVMPTLDSAKNLLKTIDRNFGTLPFCRRYLDRLGQEKYLFALNNLVRHGLVQDYPPLNDIPGSYTAQFEHTILLHAHKKEVVSKGDDY*" + } + ], + "YBL088C": [ + { + "revision": "110203", + "new_alignment": "MEDHGIVETLNFLSSTKIKERNNALDELTTILKEDPERIPTKALSTTAEALVELLASEHTKYCDLLRNLTVSTTNKLSLSENRLSTISYVLRLFVEKSCERFKVKTLKLLLAVVPELMVKDGSKSLLDAVSVHLSFALDALIKSDPFKLKFMIHQWISLVDKICEYFQSQMKLSMVDKTLTNFISILLNLLALDTVGIFQVTRTITWTVIDFLRLSKKENGNTRLIMSLINQLILKCHCFSVIDTLMLIKEAWSYNLTIGCTSNELVQDQLSLFDVMSSELMNHKLPYMIGQENYVEELRSESLVSLYREYILLRLSNYKPQLFTVNHVEFSYIRGSRDKNSWFALPDFRLRDRGGRSVWLKILGITKSLLTYFALNRKNENYSLLFKRRKCDSDIPSILRISDDMDTFLIHLLEENSSHEFEVLGLQLCSFYGTLQDFTKSFAEQLKELLFSKFEKIQCFNWVCFSFIPLLSQKECELSNGDMARLFKVCLPLVKSNESCQLSCLLLANSIKFSKQLLSDEKTINQIYDLYELSDILGPILVTNESFMLWGYLQYVGKDFQSMNGISSADRIFEWLKSKWNQLRGTDAKQDQFCNFISWLGNKYDPENPFNDKKGEGANPVSLCWDESHKIWQHFQEQREFLLGVKPEEKSECFNTPFFNLPKVSLDLTRYNEILYRLLENIESDAFSSPLQKFTWVAKLIQIVDNLCGDSTFSEFIAAYKRTTLITIPQLSFDSQNSYQSFFEEVLSIRTINVDHLVLDKINMKEIVNDFIRMQKNKSQTGTSAINYFEASSEDTTQNNSPYTIGGRFQKPLHSTIDKAVRAYLWSSRNKSISERLVAILEFSDCVSTDVFISYLGTVCQWLKQAIGEKSSYNKILEEFTEVLGEKLLCNHYSSSNQAMLLLTSYIEAIRPQWLSYPEQPLNSDCNDILDWIISRFEDNSFTGVAPTVNLSMLLLSLLQNHDLSHGSIRGGKQRVFATFIKCLQKLDSSNIINIMNSISSYMAQVSYKNQSIIFYEIKSLFGPPQQSIEKSAFYSLAMSMLSLVSYPSLVFSLEDMMTYSGFNHTRAFIQQALNKITVAFRYQNLTELFEYCKFDLIMYWFNRTKVPTSKLEKEWDISLFGFADIHEFLGRYFVEISAIYFSQGFNQKWILDMLHAITGNGDAYLVDNSYYLCIPLAFISGGVNELIFDILPQISGKTTVKYHKKYRLLMLKWIIRFTDLGSLTELRSTVEKLFPTSYLSPYLFENSSVSMRYQYPLHIPLALGATLVQTQFAHEKNNTHEFKLLFLSVITDLEKTSTYIGKLRCARELKYLFVLYENVLVKSSTLNFIIIRLSKFLIDTQIHDEVITIFSSLLNLADKNTFEIEPSLPNLFCKIFIYLRENKQLSPSFQQAIKLLEHRDLIKIKTWKYCLDAIFGNIVQDDIYENTELLDASDCGVDDVVLVSLLFSYARRPVASKIGCSLSKAAAINILKHHVPKEYLSKNFKLWFAALSRRILQQEVQRERSTNFNNEVHLKNFEMVFRHPEQPHMIYQRISTFNKEAELYDSTEVFFISECILTYLVGYSIGNSESEFCFRDNIMNENKDKVAPLDKDVLNAIYPLANNFGMESFICDTYLSVNEPYNCWLSKFARSLIHQISFNIPPIVCLYPLCKGSTAFCELVLTDLFFLSTTYDPKSCLNWSNRIFTQIAMLLHVKDSEIKLKMLFNVIKMIRMGSRCKERNCLRIYSSLDLQEICQISLKIKEFKFGYLLFEEMNMPNIREMNINTLQKIYECINDGDFLAGLPVPHSIEGVLNSINRIDSDTWKRFLFNNADFDANYTTSLEEEKESLIKATEDSGFYGLTSLLESRLSGSSDVYKWNLELGDWKLLTPKVVDSKAKGLYYAIKNLPQDVGFAEKSLEKSLLTIFDSRQHFISQTEWMDTLNAIIEFIKIAAIPQDVTSFPQTLMSIMKADKERLNTIDFYDHKTTLKSRHTLMNVLSRNSLDENVKCSKYLRLGSIIQLANYVQLAIANGAPQDALRNATLMSKTVKNIAKLYDDPSVVSQIEKLASFTSANALWESREYKAPVMIMRDLLAQNEKNISESILYDDFKLLINVPMDQIKARLVKWSSESRLEPAAAIYEKIIVNWDINVEDHESCSDVFYTLGSFLDEQAQKLRSNGEIEDREHRSYTGKSTLKALELIYKNTKLPENERKDAKRHYNRVLLQYNRDSEVLKALLLQKEKFLWHALHFYLNTLVFSNRYDNDIIDKFCGLWFENDDNSKINQLLYKEIGTIPSWKFLPWVNQIASKISMEENEFQKPLQLTMKRLLYKLPYDSLYSVMSILLYEKQSNKDTNISQKIQAVKKILLELQGYDRGAFAKKYLLPVQEFCEMSVELANLKFVQNTKTLRLANLKIGQYWLKQLNMEKLPLPTSNFTVKSSADGRKARPYIVSVNETVGITTTGLSLPKIVTFNISDGTTQKALMKGSNDDLRQDAIMEQVFQQVNKVLQNDKVLRNLDLGIRTYKVVPLGPKAGIIEFVANSTSLHQILSKLHTNDKITFDQARKGMKAVQTKSNEERLKAYLKITNEIKPQLRNFFFDSFPDPLDWFEAKKTYTKGVAASSIVGYILGLGDRHLNNILLDCSTGEPIHIDLGIAFDQGKLLPIPELVPFRLTRDIVDGFGVTGVDGLFRRSCERVYAVLRKDYVKVMCVLNILKWDPLYSWVMSPVKKYEHLFEEEHEITNFDNVSKFISNNDRNENQESYRALKGVEEKLMGNGLSVESSVQDLIQQATDPSNLSVIYMGWSPFY*", + "old_alignment": "MEDHGIVETLNFLSSTKIKERNNALDELTTILKEDPERIPTKALSTTAEALVELLASEHTKYCDLLRNLTVSTTNKLSLSENRLSTISYVLRLFVEKSCERFKVKTLKLLLAVVPELMVKDGSKSLLDAVSVHLSFALDALIKSDPFKLKFMIHQWISLVDKICEYFQSQMKLSMVDKTLTNFISILLNLLALDTVGIFQVTRTITWTVIDFLRLSKKENGNTRLIMSLINQLILKCHCFSVIDTLMLIKEAWSYNLTIGCTSNELVQDQLSLFDVMSSELMNHKLPYMIGQENYVEELRSESLVSLYREYILLRLSNYKPQLFTVNHVEFSYIRGSRDKNSWFALPDFRLRDRGGRSVWLKILGITKSLLTYFALNRKNENYSLLFKRRKCDSDIPSILRISDDMDTFLIHLLEENSSHEFEVLGLQLCSFYGTLQDFTKSFAEQLKELLFSKFEKIQCFNWVCFSFIPLLSQKECELSNGDMARLFKVCLPLVKSNESCQLSCLLLANSIKFSKQLLSDEKTINQIYDLYELSDILGPILVTNESFMLWGYLQYVGKDFQSMNGISSADRIFEWLKSKWNQLRGTDAKQDQFCNFISWLGNKYDPENPFNDKKGEGANPVSLCWDESHKIWQHFQEQREFLLGVKPEEKSECFNTPFFNLPKVSLDLTRYNEILYRLLENIESDAFSSPLQKFTWVAKLIQIVDNLCGDSTFSEFIAAYKRTTLITIPQLSFDSQNSYQSFFEEVLSIRTINVDHLVLDKINMKEIVNDFIRMQKNKSQTGTSAINYFEASSEDTTQNNSPYTIGGRFQKPLHSTIDKAVRAYLWSSRNKSISERLVAILEFSDCVSTDVFISYLGTVCQWLKQAIGEKSSYNKILEEFTEVLGEKLLCNHYSSSNQAMLLLTSYIEAIRPQWLSYPEQPLNSDCNDILDWIISRFEDNSFTGVAPTVNLSMLLLSLLQNHDLSHGSIRGGKQRVFATFIKCLQKLDSSNIINIMNSISSYMAQVSYKNQSIIFYEIKSLFGPPQQSIEKSAFYSLAMSMLSLVSYPSLVFSLEDMMTYSGFNHTRAFIQQALNKITVAFRYQNLTELFEYCKFDLIMYWFNRTKVPTSKLEKEWDISLFGFADIHEFLGRYFVEISAIYFSQGFNQKWILDMLHAITGNGDAYLVDNSYYLCIPLAFISGGVNELIFDILPQISGKTTVKYHKKYRLLMLKWIIRFTDLGSLTELRSTVEKLFPTSYLSPYLFENSSVSMRYQYPLHIPLALGATLVQTQFAHEKNNTHEFKLLFLSVITDLEKTSTYIGKLRCARELKYLFVLYENVLVKSSTLNFIIIRLSKFLIDTQIHDEVITIFSSLLNLADKNTFEIEPSLPNLFCKIFIYLRENKQLSPSFQQAIKLLEHRDLIKIKTWKYFLDAIFGNIVQDDIYENTELLDASDCGVDDVVLVSLLFSYARRPVASKIGCSLSKAAAINILKHHVPKEYLSKNFKLWFAALSRRILQQEVQRERSTNFNNEVHLKNFEMVFRHPEQPHMIYQRISTFNKEAELYDSTEVFFISECILTYLVGYSIGNSESEFCFRDNIMNENKDKVAPLDKDVLNAIYPLANNFGMESFICDTYLSVNEPYNCWLSKFARSLIHQISFNIPPIVCLYPLCKGSTAFCELVLTDLFFLSTTYDPKSCLNWSNRIFTQIAMLLHVKDSEIKLKMLFNVIKMIRMGSRCKERNCLRIYSSLDLQEICQISLKIKEFKFGYLLFEEMNMPNIREMNINTLQKIYECINDGDFLAGLPVPHSIEGVLNSINRIDSDTWKRFLFNNADFDANYTTSLEEEKESLIKATEDSGFYGLTSLLESRLSGSSDVYKWNLELGDWKLLTPKVVDSKAKGLYYAIKNLPQDVGFAEKSLEKSLLTIFDSRQHFISQTEWMDTLNAIIEFIKIAAIPQDVTSFPQTLMSIMKADKERLNTIDFYDHKTTLKSRHTLMNVLSRNSLDENVKCSKYLRLGSIIQLANYVQLAIANGAPQDALRNATLMSKTVKNIAKLYDDPSVVSQIEKLASFTSANALWESREYKAPVMIMRDLLAQNEKNISESILYDDFKLLINVPMDQIKARLVKWSSESRLEPAAAIYEKIIVNWDINVEDHESCSDVFYTLGSFLDEQAQKLRSNGEIEDREHRSYTGKSTLKALELIYKNTKLPENERKDAKRHYNRVLLQYNRDSEVLKALLLQKEKFLWHALHFYLNTLVFSNRYDNDIIDKFCGLWFENDDNSKINQLLYKEIGTIPSWKFLPWVNQIASKISMEENEFQKPLQLTMKRLLYKLPYDSLYSVMSILLYEKQSNKDTNISQKIQAVKKILLELQGYDRGAFAKKYLLPVQEFCEMSVELANLKFVQNTKTLRLANLKIGQYWLKQLNMEKLPLPTSNFTVKSSADGRKARPYIVSVNETVGITTTGLSLPKIVTFNISDGTTQKALMKGSNDDLRQDAIMEQVFQQVNKVLQNDKVLRNLDLGIRTYKVVPLGPKAGIIEFVANSTSLHQILSKLHTNDKITFDQARKGMKAVQTKSNEERLKAYLKITNEIKPQLRNFFFDSFPDPLDWFEAKKTYTKGVAASSIVGYILGLGDRHLNNILLDCSTGEPIHIDLGIAFDQGKLLPIPELVPFRLTRDIVDGFGVTGVDGLFRRSCERVYAVLRKDYVKVMCVLNILKWDPLYSWVMSPVKKYEHLFEEEHEITNFDNVSKFISNNDRNENQESYRALKGVEEKLMGNGLSVESSVQDLIQQATDPSNLSVIYMGWSPFY*" + } + ], + "YBL084C": [ + { + "revision": "110203", + "new_alignment": "MAVNPELAPFTLSRGIPSFDDQALSTIIQLQDCIQQAIQQLNYSTAEFLAELLYAECSILDKSSVYWSDAVYLYALSLFLNKSYHTAFQISKEFKEYHLGIAYIFGRCALQLSQGVNEAILTLLSIINVFSSNSSNTRINMVLNSNLVHIPDLATLNCLLGNLYMKLDHSKEGAFYHSEALAINPYLWESYEAICKMRATVDLKRVFFDIAGKKSNSHNNNAASSFPSTSLSHFEPRSQPSLYSKTNKNGNNNINNNVNTLFQSSNSPPSTSASSFSSIQHFSRSQQQQANTSIRTCQNKNTQTPKNPAINSKTSSALPNNISMNLVSPSSKQPTISSLAKVYNRNKLLTTPPSKLLNNDRNHQNNNNNNNNNNNNNNNNNNNNNNNNIINKTTFKTPRNLYSSTGRLTTSKKNPRSLIISNSILTSDYSITLPEIMYNFALILRSSSQYNSFKAIRLFESQIPSHIKDTMPWCLVQLGKLHFEIINYDMSLKYFNRLKDLQPARVKDMEIFSTLLWHLHDKVKSSNLANGLMDTMPNKPETWCCIGNLLSLQKDHDAAIKAFEKATQLDPNFAYAYTLQGHEHSSNDSSDSAKTCYRKALACDPQHYNAYYGLGTSAMKLGQYEEALLYFEKARSINPVNVVLICCCGGSLEKLGYKEKALQYYELACHLQPTSSLSKYKMGQLLYSMTRYNVALQTFEELVKLVPDDATAHYLLGQTYRIVGRKKDAIKELTVAMNLDPKGNQVIIDELQKCHMQE*", + "old_alignment": "MAVNPELAPFTLSRGIPSFDDQALSTIIQLQDCIQQAIQQLNYSTAEFLAELLYAECSILDKSSVYWSDAVYLYALSLFLNKSYHTAFQISKEFKEYHLGIAYIFGRCALQLSQGVNEAILTLLSIINVFSSNSSNTRINMVLNSNLVHIPDLATLNCLLGNLYMKLDHSKEGAFYHSEALAINPYLWESYEAICKMRATVDLKRVFFDIAGKKSNSHNNNAASSFPSTSLSHFEPRSQPSLYSKTNKNGNNNINNNVNTLFQSSNSPPSTSASSFSSIQHFSRSQQQQANTSIRTCQNKNTQTPKNPAINSKTSSALPNNISMNLVSPSSKQPTISSLAKVYNRNKLLTTPPSKLLNNDRNHQNNNNNNNNNNNNNNNNNNNNNNNNIINKTTFKTPRNLYSSTGRLTTSKKNPRSLIISNSILTSDYQITLPEIMYNFALILRSSSQYNSFKAIRLFESQIPSHIKDTMPWCLVQLGKLHFEIINYDMSLKYFNRLKDLQPARVKDMEIFSTLLWHLHDKVKSSNLANGLMDTMPNKPETWCCIGNLLSLQKDHDAAIKAFEKATQLDPNFAYAYTLQGHEHSSNDSSDSAKTCYRKALACDPQHYNAYYGLGTSAMKLGQYEEALLYFEKARSINPVNVVLICCCGGSLEKLGYKEKALQYYELACHLQPTSSLSKYKMGQLLYSMTRYNVALQTFEELVKLVPDDATAHYLLGQTYRIVGRKKDAIKELTVAMNLDPKGNQVIIDELQKCHMQE*" + } + ], + "YBL080C": [ + { + "revision": "110203", + "new_alignment": "MLRLARFYSLARTKAIHSHGAPFRPEYALKCGLEIHTQLNTKNKLFSQSTNSATSLVDAPNHHTSYYDIALPGTQPVLNLEAILFAMKLSLALGSQVNSISQFDRKHYFYGDQPQGYQLTQHYRPFARGGKINLSKELDDIDESAKEIGILQLQIEQDTGKSHYTETDKDVITLVDLNRSNVPLIELVTKPDFSDIKQVRAFIKKYQNLVRHLHISSGDLETGAMRVDVNLSINEYARVELKNLPNTSSIINAIKYEYQRQVELISVGDTSSLMEPETRGWTGSSTVKLRSKETTIDYRYMPDPELPYINLAPDVISGVRGLMPQLPDDIMRILMKKPYQLSLKDAKILTYNSNQNDMYNHEALRSYYLDTFREFSKLAGERSNAKLPTNWIIHEFLGDLNKLQIPLAKAKEILPPPVFAQFLKLLHEEVISATSGKMLLFHILENFEQSNCQDLSIPDFSKLIEKFELHAINQVDPQELMDLCNDVIAQHTDDTFIRNLVTGKKKSSLKFLIGQGMRRSQGRIKANEFEKKFKEILNIQW*", + "old_alignment": "MLRLARFYSLARTKAIHSHGAPFRPEYALKCGLEIHTQLNTKNKLFSQSTNSATSLVDAPNHHTSYYDIALPGTQPVLNLEAILFAMKLSLALGSQVNSISQFDRKHYFYGDQPQGYQLTQHYRPFARGGKINLSKELDDIDESAKEIGILQLQIEQDTGKSHYTETDKDVITLVDLNRSNVPLIELVTKPDFSDIKQVRAFIKKYQNLVRHLHISSGDLETGAMRVDVNLSINEYARVELKNLPNTSSIINAIKYEYQRQVELISVGDTSSLMEPETRGWTGSSTVKLRSKETTIDYRYMPDPELPYINLAPDVISGVRGLMPQLPDDIMRILMKKPYQLSLKDAKILTYNSNQNDMYNHEALRSYYLDTFREFSKLAGERSNAKLPTNWIIHEFLGDLNKLQIPLAKAKEILAPPVFAQFLKLLHEEVISATSGKMLLFHILENFEQSNCQDLSIPDFSKLIEKFELHAINQVDPQELMDLCNDVIAQHTDDTFIRNLVTGKKKSSLKFLIGQGMRRSQGRIKANEFEKKFKEILNIQW*" + } + ], + "YBL068W": [ + { + "revision": "110203", + "new_alignment": "MNSESREDMAINSIKLLAGNSHPDLAEQISKKLGIPLSKVGVYQYSNKETSVTIGESLRDEDVYIIQTGIGEQEINDFLMELLILIHACKIASARKITTVIPNFPYARQDKKDKSRAPITAKLVANLLQTAGADHVITMDLHASQIQGFFHIPVDNLYAEPSVLNYIRT-KTDFDNAILVSPDAGGAKRVAALADKLDLNFALIHKERQKANEVSKMVLVGDVTNKSCLLVDDMADTCGTLVKACDTLMEHGAKEVIAIVTHGIFSGSAREKLRNSRLSRIVCTNTVPVDLDLPIADQIDISPTFAEAIRRLHNGESVSYLFTHAPV*", + "old_alignment": "MNSESREDMAINSIKLLAGNSHPDLAEQISKKLGIPLSKVGVYQYSNKETSVTIGESLRDEDVYIIQTGIGEQEINDFLMELLILIHACQIASARKITTVIPNFPYARQDKKDKSRAPITAKLVANLLQTAGADHVITMDLHASQIQGFFHIPVDNLYAEPSVLNYIRARKTDFDNAILVSPDAGGAKRVAALADKLDLNFALIHKERQKANEVSKMVLVGDVTNKSCLLVDDMADTCGTLVKACDTLMEHGAKEVIAIVTHGIFSGSAREKLRNSRLSRIVCTNTVPVDLDLPIADQIDISPTFAEAIRRLHNGESVSYLFTHAPV*" + } + ], + "YBL067C": [ + { + "revision": "040716", + "new_alignment": "MIRRWLTISKSGKKKKAVNDTITEEVEKVDFKPVNHDINDELCYSESSDNPSSSLFVSNLDTKETFLNEDNNLQISSGLDYSSETCNQGSNYSQDGIFYISNAKAINAYGGIITQGPEAPILAMKVSDSMPYGDGSNKVFGYENFGNTCYCNSVLQCLYNLSSLRENILQFPKKSRESDQPRKKEMRGKKPRIFTEASFEKSIAGTNGHLPNPKPQSVDDGKPTPVNSVNSNTAGPSEKKSKFFKSFSAKHVQDNNKKEGSPAILTTGKPSSRPQDAPPLIVETPNEPGAPSRLSFENVTDRPPDVPRKIIVGRVLNYENPSRGSSNSNNLDLKGESNSSLSTPLDKKDTRRSSSSSQISPEHRKKSALIRGPVLNIDHSLNGSDKATLYSSLRDIFECITENTYLTGVVSPSSFVDVLKRENVLFNTTMHQDAHEFFNFLLNELSEYIERENKKIAASDINSDSEPSKSKNFISDLFQGTLTNQIKCLTCDNITSRDEPFLDFPIEVQGDEETDIQEILKSYHQREMLNGSNKFYCDECCGLQEAERLVGLKQLPDTLTLHLKRFKYSEKQNCNIKLFNNIHYPLTLNVCSSINSKVCQKYELAGIVVHMGGGPQHGHYVSLCKHEKFGWLLFDDETVEAVKEETVLEFTGESPNMATAYVLFYKAMYSNAVEKNDRENMAKEQDDNIDNLIKYDDWLRTCNSGQKKKEELPIADDLDTAIDDSFVSNTPIKSSKKKSRMFSFRKS*---------------------------", + "old_alignment": "MIRRWLTISKSGKKKKAVNDTITEEVEKVDFKPVNHDINDELCYSESSDNPSSSLFVSNLDTKETFLNEDNNLQISSGLDYSSETCNQGSNYSQDGIFYISNAKAINAYGGIITQGPEAPILAMKVSDSMPYGDGSNKVFGYENFGNTCYCNSVLQCLYNLSSLRENILQFPKKSRESDHPRKKEMRGKKPRIFTEASFEKSIAGTNGHLPNPKPQSVDDGKPTPVNSVNSNTAGPSEKKSKFFKSFSAKHVQDNNKKEGSPAILTTGKPSSRPQDAPPLIVETPNEPGAPSRLSFENVTDRPPDVPRKIIVGRVLNYENPSRGSSNSNNLDLKGESNSSLSTPLDKKDTRRSSSSSQISPEHRKKSALIRGPVLNIDHSLNGSDKATLYSSLRDIFECITENTYLTGVVSPSSFVDVLKRENVLFNTTMHQDAHEFFNFLLNELSEYIERENKKIAASDINSDSEPSKSKNFISDLFQGTLTNQIKCLTCDNITSRDEPFLDFPIEVQGDEETDIQEILKSYHQREMLNGSNKFYCDECCGLQEAERLVGLKQLPDTLTLHLKRFKYSEKQNCNIKLFNNIHYPLTLNVCSSINSKVCQKYELAGIVVHMGGGPQHGHYVSLCKHEKFGWLLFDDETVEAVKEETVLEFTGESPNMATAYV--------------------------------------------------------------------------------------CFIKRCIQTLLKRMIVKIWQKNKMII*" + }, + { + "revision": "110203", + "new_alignment": "MIRRWLTISKSGKKKKAVNDTITEEVEKVDFKPVNHDINDELCYSESSDNPSSSLFVSNLDTKETFLNEDNNLQISSGLDYSSETCNQGSNYSQDGIFYISNAKAINAYGGIITQGPEAPILAMKVSDSMPYGDGSNKVFGYENFGNTCYCNSVLQCLYNLSSLRENILQFPKKSRESDQPRKKEMRGKKPRIFTEASFEKSIAGTNGHLPNPKPQSVDDGKPTPVNSVNSNTAGPSEKKSKFFKSFSAKHVQDNNKKEGSPAILTTGKPSSRPQDAPPLIVETPNEPGAPSRLSFENVTDRPPDVPRKIIVGRVLNYENPSRGSSNSNNLDLKGESNSSLSTPLDKKDTRRSSSSSQISPEHRKKSALIRGPVLNIDHSLNGSDKATLYSSLRDIFECITENTYLTGVVSPSSFVDVLKRENVLFNTTMHQDAHEFFNFLLNELSEYIERENKKIAASDINSDSEPSKSKNFISDLFQGTLTNQIKCLTCDNITSRDEPFLDFPIEVQGDEETDIQEILKSYHQREMLNGSNKFYCDECCGLQEAERLVGLKQLPDTLTLHLKRFKYSEKQNCNIKLFNNIHYPLTLNVCSSINSKVCQKYELAGIVVHMGGGPQHGHYVSLCKHEKFGWLLFDDETVEAVKEETVLEFTGESPNMATAYVLFYKAMYSNAVEKNDRENMAKEQDDNIDNLIKYDDWLRTCNSGQKKKEELPIADDLDTAIDDSFVSNTPIKSSKKKSRMFSFRKS*", + "old_alignment": "MIRRWLTISKSGKKKKAVNDTITEEVEKVDFKPVNHDINDELCYSESSDNPSSSLFVSNLDTKETFLNEDNNLQISSGLDYSSETCNQGSNYSQDGIFYISNAKAINAYGGIITQGPEAPILAMKVSDSMPYGDGSNKVFGYENFGNTCYCNSVLQCLYNLSSLRENILQFPKKSRESDHPRKKEMRGKKPRIFTEASFEKSIAGTNGHLPNPKPQSVDDGKPTPVNSVNSNTAGPSEKKSKFFKSFSAKHVQDNNKKEGSPAILTTGKPSSRPQDAPPLIVETPNEPGAPSRLSFENVTDRPPDVPRKIIVGRVLNYENPSRGSSNSNNLDLKGESNSSLSTPLDKKDTRRSSSSSQISPEHRKKSALIRGPVLNIDHSLNGSDKATLYSSLRDIFECITENTYLTGVVSPSSFVDVLKRENVLFNTTMHQDAHEFFNFLLNELSEYIERENKKIAASDINSDSEPSKSKNFISDLFQGTLTNQIKCLTCDNITSRDEPFLDFPIEVQGDEETDIQEILKSYHQREMLNGSNKFYCDECCGLQEAERLVGLKQLPDTLTLHLKRFKYSEKQNCNIKLFNNIHYPLTLNVCSSINSKVCQKYELAGIVVHMGGGPQHGHYVSLCKHEKFGWLLFDDETVEAVKEETVLEFTGESPNMATAYVLFYKAMYSNAVEKNDRENMAKEQDDNIDNLIKYDDWLRTCNSGQKKKEELPIADDLDTAIDDSFVSNTPIKSSKKKSRMFSFRKS*" + } + ], + "YBL066C": [ + { + "revision": "040716", + "new_alignment": "MVKDNRDSDQDQDFSSAHMKRQPEQQQLQQHQFPSKKQRISHHDDSHQINHRPVTSCTHCRQHKIKCDASQNFPHPCSRCEKIGLHCEINPQFRPKKGSQLQLLRQDVDEIKSKLDTLLANDSVFVHLLQQIPMGNSLLNKLNLHPTPTPGTIIPNPDSSPSSGSPTSSAAQRDSKVSVQTYLSREPQLLQANQGSNTNKFKANNEASSHMTLRASSLAQDSKGLVATEPNKLPPLLNDSALPNNSKESLPPALQMAFYKNNSAGNTPNGPFSPIQKTYSPHTTSTTVTTTTNQPPFAATSHVATNNNADRTKTPVVATTTTMPLLPSPHANVDEFVLGDISISIEKANRLHHIFVTRYLPYFPIMYSNNATELYSQSQLLFWTVMLTACLSDPEPTMYCKLSSLIKQLAIETCWIRTPRSTHISQALLILCIWPLPNQKVLDDCSYRFVGLAKSLSYQLGLHRGEFISEFTRTQTSMPNAEKWRTRTWLGIFFAELCWASILGLPPTSQTDYLLEKALSCGDEESEEDNNDSIDNNNNDKRNKKDEPHVESKYKLPGSFRRLLSLANFQAKLSHIIGSSTSSPDGLLEPKYRAETLSILGKELDLLAKTLNFQSDDTVNIYFLYVKLTVCCFAFLPETPPTDQIPYVTEAYLTATKIVTLLNNLLETHQLIELPIYIRQAATFSALILFKLQLTPLLPDKYFDSARQSVVTIHRLYRNQLTAWATSVENDISRTASMLEKLNFVLIMHPEVFVEEDGIISRMRSHLTGSLFYDLVWCVHEARRREMDPEYNKQALEKAAKKRKFSSNGIYNGTSSTGGITDRKLYPLPLYNHISRDDFETVTKTTPSGTTVTTLVPTKNALKQAEKLAKTNNGDSDGSIMEINGIPLSMLGETGSVKFQSLFANTSNSNDYNNNRTLLDASNDISIPSNSIYPVASVPASNNNPQSTKVDYYSNGPSVIPDLSMKRSVSTPVNHFPASVPGLRNHPVGNLSNNVTLGIDHPIPREHSNLQNVTMNYNNQFSNANAIGRSQSSMSHSRTPIASKSNNMTDLHSVVSDPGSSKSTAYPPLSLFSKSNDINSNKTNQRFSTGTNTVTSSNFQTIDNENNVKTPGNKLTDFFQQQSAGWIEGNSSNDDFFGWFDMNMEQGF*------------------", + "old_alignment": "MVKDNRDSDQDQDFSSAHMKRQPEQQQLQQHQFPSKKQRISHHDDSHQINHRPVTSCTHCRQHKIKCDASQNFPHPCSRCEKIGLHCEINPQFRPKKGSQLQLLRQDVDEIKSKLDTLLANDSVFVHLLQQIPMGNSLLNKLNLHPTPTPGTIIPNPDSSPSSGSPTSSAAQRDSKVSVQTYLSREPQLLQANQGSNTNKFKANNEASSHMTLRASSLAQDSKGLVATEPNKLPPLLNDSALPNNSKESLPPALQMAFYKNNSAGNTPNGPFSPIQKTYSPHTTSTTVTTTTNQPPFAATSHVATNNNADRTKTPVVATTTTMPLLPSPHANVDEFVLGDISISIEKANRLHHIFVTRYLPYFPIMYSNNATELYSQSQLLFWTVMLTACLSDPEPTMYCKLSSLIKQLAIETCWIRTPRSTHISQALLILCIWPLPNQKVLDDCSYRFVGLAKSLSYQLGLHRGEFISEFTRTQTSMPNAEKWRTRTWLGIFFAELCWASILGLPPTSQTDYLLEKALSCGDEESEEDNNDSIDNNNNDKRNKKDEPHVESKYKLPGSFRRLLSLANFQAKLSHIIGSSTSSPDGLLEPKYRAETLSILGKELDLLAKTLNFQSDDTVNIYFLYVKLTVCCFAFLPETPPTDQIPYVTEAYLTATKIVTLLNNLLETHQLIELPIYIRQAATFSALILFKLQLTPLLPDKYFDSARQSVVTIHRLYRNQLTAWATSVENDISRTASMLEKLNFVLIMHPEVFVEEDGIISRMRSHLTGSLFYDLVWCVHEARRREMDPEYNKQALEKAAKKRKFSSNGIYNGTSSTGGITDRKLYPLPLYNHISRDDFETVTKTTPSGTTVTTLVPTKNALKQAEKLAKTNNGDSDGSIMEINGIPLSMLGETGSVKFQSLFANTSNSNDYNNNRTLLDASNDISIPSNSIYPVASVPASNNNPQSTKVDYYSNGPSVIPDLSMKRSVSTPVNHFPASVPGLRNHPVGNLSNNVTLGIDHPIPREHSNLQNVTMNYNNQFSNANAIGRSQSSMSHSRTP-------------------------------------------------------------------------------------------------------------LFRSIYDSWIPRPTPVL*" + } + ], + "YBL057C": [ + { + "revision": "110203", + "new_alignment": "------MEKMTVSSNYTIALWATFTAISFAVGYQLGTSNASSTKKSSATLLRSKEMKEGKLHNDTDEEESESEDESDEDEDIESTSLNDIPGEVRMALVIRQDLGMTKGKIAAQCCHAALSCFRHIATNPARASYNPIMTQRWLNAGQAKITLKCPDKFTMDELYAKAISLGVNAAVIHDAGRTQIAAGSATVLGLGPAPKAVLDQITGDLKLY*", + "old_alignment": "MITSFLMEKMTVSSNYTIALWATFTAISFAVGYQLGTSNASSTKKSSATLLRSKEMKEGKLHNDTDEEESESEDESDEDEDIESTSLNDIPGEVRMALVIRQDLGMTKGKIAAQCCHAALSCFRHIATNPARASYNPIMTQRWLNAGQAKITLKCPDKFTMDELYAKAISLGVNAAVIHDAGRTQIAAGSATVLGLGPAPKAVLDQITGDLKLY*" + } + ], + "YBL056W": [ + { + "revision": "110203", + "new_alignment": "MGQILSNPIIDKEHHSGTDCLTAFGLCAMQGWRMSMEDAHIVEPNLLAESDEEHLAFYGIFDGHGGSSVAEFCGSKMISILKKQESFKSGMLEQCLIDTFLATDVELLKDEKLKDDHSGCTATVILVSQLKKLLICANSGDSRTVLSTGGNSKAMSFDHKPTLLSEKSRIVAADGFVEMDRVNGNLALSRAIGDFEFKSNTKLGPHEQVVTCVPDIICHNLNYDEDEFVILACDGIWDCLTSQECVDLVHYGISQGNMTLSDISSRIVDVCCSPTTEGSGIGCDNMSISIVALLKENESESQWFERMRSKNYNIQTSFVQRRKSIFDFHDFSDDDNEVFAITTKKLQDRLNRSKDNDDMEIDDLDTELGSSATPSKLSGEDRTGPIDLFSLEALLEAGIQIRQRPSSDSDGNTSYFHGASLSDMLASLSNAAAGETEPNDADDNDDNDGEENGKNENAKKGSKIEEIE*", + "old_alignment": "MGQILSNPIIDKEHHSGTDCLTAFGLCAMQGWRMSMEDAHIVEPNLLAESDEEHLAFYGIFDGHGGSSVAEFCGSKMISILKKQESFKSGMLEQCLIDTFLATDVELLKDEKLKDDHSGCTATVILVSQLKKLLICANSGDSRTVLSTGGNSKAMSFDHKPTLLSEKSRIVAADGFVEMDRVNGNLALSRAIGDFEFKSNTKLGPHEQVVTCVPDIICHNLNYDEDEFVILACDGIWDCLTSQECVDLVHYGISQGNMTLSDISSRIVDVCCSPTTEGSGIGCDNMSISIVALLKENESESQWFERMRSKNYNIQTSFVQRRKSIFDFHDFSDDDNEVFAITTKKLQDRLNRSKDNDDMEIDDLDTELDSSATPSKLSGEDRTGPIDLFSLEALLEAGIQIRQRPSSDSDGNTSYFHGASLSDMLASLSNAAAGETEPNDADDNDDNDGEENGKNENAKKGSKIEEIE*" + } + ], + "YBL014C": [ + { + "revision": "110203", + "new_alignment": "MSEGQIPSSDVLGSQLGVGVQGASLYCPQENYTTKKQEKPQWLRPVDDTLAEDALDLHIVVKSLLCDTAIRYISDDKVLQESDADDDLITSDIDEDTDNQGDTSIVVNPVIPVVPKDVHFFKKVDVGNDSMFGVNCDTPVSFQDYIPSDLLRNLDDTLQESTNSSRPMQDAFFWDPTVANRLDSQYIQTASDLRNYRDGTEIIAYASGKTGSVLNIAVLTRQNTLHLNRHNNVTSIELHSPIKSIKIPGASESIGRRSNLVGIITENSFQIFRIESVHSRSCDVMVSSSEPLYFVEIDDLQVVDFAFNPWDLQQFAIIDIKGNWSIGRIPKNFNNNNKRKLQLIDNLHGTIFDPEELSSWKRIEWFSHFQKILVFDRSKMIEIDFMNNWQTEVVQAKAWSNIRDYKRIDDKNGILLTSREIIIVGASESNDPVRRISWKHDLDPDDTTLRITVQKVKKPDHILLVAFVYSMRHKRIYMHVFSHRKANLFQSLGCSTVLEIPGGTPTGIETILTLDHIDDESRREEDADENFELVVDFLVKLRNSSEVYYYALSNTQNSEPNKQETPIIVDHPEWASLFNNADEREKESIGALVSQIKLKERERISRVQNLIEHENSHDEDKYLQDLGYRLSIATNELLESWQKTKDESILSGSLSHSKLKNLLENSDSFASIPEFSSLLDQFFQYYQDQDVTFIGFEKLLHLFLHEDVPGLDIFYNKLLQCWVLVSPQAELLTKEIVKDIIWSLARLEKPSLFEPIQNEISRSLSGPYQDIISSWDMDDINEEDESNEFNFDSQFSAPFNGRPPFNLNSQSQIPTIKSSQSSGLARRKRILKTQSQKATPLSQSTQNLSVLPDSMTPAFTLMQPPSSQISFVNDSQPRNSQKAKKKKKRIRGFG*", + "old_alignment": "MSEGQIPSSDVLGSQLGVGVQGASLYCPQENYTTKKQENPQWLRPVDDTLAEDALDLHIVVKSLLCDTAIRYISDDKVLQESDADDDLITSDIDEDTDNQGDTSIVVNPVIPVVPKDVHFFKKVDVGNDSMFGVNCDTPVSFQDYIPSDLLRNLDDTLQESTNSSRPMQDAFFWDPTVANRLDSQYIQTASDLRNYRDGTEIIAYASGKTGSVLNIAVLTRQNTLHLNRHNNVTSIELHSPIKSIKIPGASESIGRRSNLVGIITENSFQIFRIESVHSRSCDVMVSSSEPLYFVEIDDLQVVDFAFNPWDLQQFAIIDIKGNWSIGRIPKNFNNNNKRKLQLIDNLHGTIFDPEELSSWKRIEWFSHFQKILVFDRSKMIEIDFMNNWQTEVVQAKAWSNIRDYKRIDDKNGILLTSREIIIVGASESNDPVRRISWKHDLDPDDTTLRITVQKVKKPDHILLVAFVYSMRHKRIYMHVFSHRKANLFQSLGCSTVLEIPGGTPTGIETILTLDHIDDESRREEDADENFELVVDFLVKLRNSSEVYYYALSNTQNSEPNKQETPIIVDHPEWASLFNNADEREKESIGALVSQIKLKERERISRVQNLIEHENSHDEDKYLQDLGYRLSIATNELLESWQKTKDESILSGSLSHSKLKNLLENSDSFASIPEFSSLLDQFFQYYQDQDVTFIGFEKLLHLFLHEDVPGLDIFYNKLLQCWVLVSPQAELLTKEIVKDIIWSLARLEKPSLFEPIQNEISRSLSGPYQDIISSWDMDDINEEDESNEFNFDSQFSAPFNGRPPFNLNSQSQIPTIKSSQSSGLARRKRILKTQSQKATPLSQSTQNLSVLPDSMTPAFTLMQPPSSQISFVNDSQPRNSQKAKKKKKRIRGFG*" + } + ], + "YBL013W": [ + { + "revision": "040206", + "new_alignment": "MVKMRRITPTRLLFTCRYISNNASPPVQPLNVLFFGSDTFSNFSLQALNELRQNNGSCGIVDNIQVVTRSPKWCGRQKSILKYPPIFDMAEKLQLPRPITCDTKQEMLALSKLTPSRQGNPENDGSGAPFNAIIAVSFGKLIPGDLIRAVPLALNVHPSLLPRHKGSAPIQRALLEGDTYTGVTIQTLHPDRFDHGAIVAQTEPLAIATMLSKGRVNDSTADFNSEGLPRRTAILMDQLGALGAQLLGQTLRERLYLPQNRVQAPTAYKPSYAHRITTEDKRIHWARDSAAELLNKLETLGPLHAFKEATAARKDAQNSVLKRILFHECKVMRDARLDNGSKPGMFKYDDIKDCILVTCRGNLLLCVSRLQFEGFAVERAGQFMARLRKRCGALSEKLVFL*--------", + "old_alignment": "MVKMRRITPTRLLFTCRYISNNASPPVQPLNVLFFGSDTFSNFSLQALNELRQNNGSCGIVDNIQVVTRSPKWCGRQKSILKYPPIFDMAEKLQLPRPITCDTKQEMLALSKLTPSRQGNPENDGSGAPFNAIIAVSFGKLIPGDLIRAVPLALNVHPSLLPRHKGSAPIQRALLEGDTYTGVTIQTLHPDRFDHGAIVAQTEPLAIATMLSKGRVNDSTADFNSEGLPRRTAILMDQLGALGAQLLGQTLRERLYLPQNRVQAPTAYKPSYAHRITTEDKRIHWARDSAAELLNKLETLGPLHAFKEATAARKDAQNSVLKRILFHECKVMRDARLDNGSKPGMFKYDDIKDCILVTCRGNLLLCVSRLQFEGFAVERAGQFMAR----------------CGKDAAP*" + } + ], + "YBL008W": [ + { + "revision": "110203", + "new_alignment": "MKVVKFPWLAHREESRKYEIYTVDVSHDGKRLATGGLDGKIRIWSIDSILRCMELESLTPEIPLPQDLQMPLCSMSRHTGSITCVKFSPDGKYLASGSDDRILLIWALDEEQSSQPAFGSEHEREHWTVRKRLVAHDNDIQDICWAPDSSILVTVGLDRSVIVWNGSTFEKLKRFDVHQSLVKGVVFDPANKYFATTSDDRTMKIFRYHKTGDISFTIEHIITEPFKESPLTTYFRRPSWSPDGQHIAVPNATNGPVSSVAIVNRGTWDTNVSLIGHDAPTEVARFNPRLFERNAGVKQKKDDDPENALVGQNDDKVHHFDKNIDSVVATAGQDKSLAVWSTSRPRPILVAFDIANKSITDMSWNPDGSLLFVASLDSSITLFKFENNELGKPIPLEKNMEQLYRYGVDKDSLDFPESINQLLLEDQTKSFKHTKISTSKLGENHPTLATNSASNQKDNNDASVSRSEHINILIPKRKKDAILNKAVTLKSGKKRVAPTLISTSSSSPFSNGIKKPTLDSKRIENNVKSSTKTINSKNTLLNVPEGVEKKISISSFPLPRLGIHSLIMGTKERSAWKISNSELENDDADNAGGKGSDGTSNSIDDIAVLSEEENDFHRMTLNAKLTQEKIWSEEPTTRCLLQSDVIPDTDVVVLEGGSLDDIAVLEIRNGVERSIQFDSEALLDNPTRILGYQGGKRTIETFIPEVIICAIGSKDCKCWCLASANGSIYILSYNGQQRIPKICLGHKVIKMVTSSKYLLVLTERGLFFAWDLLDLKLVLRNVPILPILNGQPIHGNKVRINKVIKCFRLDGSSCDLLLEVGDPKNVYKWTKDLGCWSLYK*", + "old_alignment": "MKVVKFPWLAHREESRKYEIYTVDVSHDGKRLATGGLDGKIRIWSIDSILRCMELESLTPEIPLPQDLQMPLCSMSRHTGSITCVKFSPDGKYLASGSDDRILLIWALDEEQSSQPAFGSEHEREHWTVRKRLVAHDNDIQDICWAPDSSILVTVGLDRSVIVWNGSTFEKLKRFDVHQSLVKGVVFDPANKYFATTSDDRTMKIFRYHKTGDISFTIEHIITEPFKESPLTTYFRRPSWSPDGQHIAVPNATNGPVSSMAIVNRGTWDTNVSLIGHDAPTEVARFNPRLFERNAGVKQKKDDDPENALVGQNDDKVHHFDKNIDSVVATAGQDKSLAVWSTSRPRPILVAFDIANKSITDMSWNPDGSLLFVASLDSSITLFKFENNELGKPIPLEKNMEQLYRYGVDKDSLDFPESINQLLLEDQTKSFKHTKISTSKLGENHPTLATNSASNQKDNNDASVSRSEHINILIPKRKKDAILNKAVTLKSGKKRVAPTLISTSSSSPFSNGIKKPTLDSKRIENNVKSSTKTINSKNTLLNVPEGVEKKISISSFPLPRLGIHSLIMGTKERSAWKISNSELENDDADNAGGKGSDGTSNSIDDIAVLSEEENDFHRMTLNAKLTQEKIWSEEPTTRCLLQSDVIPDTDVVVLEGGSLDDIAVLEIRNGVERSIQFDSEALLDNPTRILGYQGGKRTIETFIPEVIICAIGSKDCKCWCLASANGSIYILSYNGQQRIPKICLGHKVIKMVTSSKYLLVLTERGLFFAWDLLDLKLVLRNVPILPILNGQPIHGNKVRINKVIKCFRLDGSSCDLLLEVGDPKNVYKWTKDLGCWSLYK*" + } + ], + "YBL006C": [ + { + "revision": "040206", + "new_alignment": "MSGSNMGYYDVLAGLSALEKSSQVVFSATELQQLTQQSHATDKGIEGSENSKAKVSKPKRVAVHGYLGGKVSLADAAQVEYEVGHSLLGSYVPRQQLEALSSVDFSHHFHRTLECKAALETHDVFLAGAGQLSLPFQSHIESPRNSEAKRKRKVIICKRCQSRFIGSHRRSQLREHACVD*------------------------------------------", + "old_alignment": "MSGSNMGYYDVLAGLSALEKSSQVVFSATELQQLTQQSHATDKGIEGSENSKAKVSKPKRVAVHGYLGGKVSLADAAQVEYEVGHSLLGSYVPRQQLEALSSVD-----------------------------------------------------------------------------LFAPFPPHIRMQSCSRDTRCFSCRRRTIVSTLPITHREPQE*" + } + ], + "YBL006W-A": [ + { + "revision": "040206", + "new_alignment": "MCDWKGRDNCPAPARKTSCVSRAALHSNVRWKWCEKSTLDRASNCWRGT*----", + "old_alignment": "MCDWKGRDNCPAPARKTSCVSRAALHSNVRWKWCEK--------------VDT*" + } + ], + "YBR004C": [ + { + "revision": "110203", + "new_alignment": "MIVGLTLYFVLFRSIQYLLVFLTPIRQFDTSTSLLLNELCSSPSEINSYWNKYFWNKLLSWDSVFFIKNITSKNGKPQFEHEYAFSQLWTFFVRLFIKSNNDSIYHALRVGVAIENVLFYLSGIVLYFLTKKIFSQNIRQSQFARTIAKKTSLLFFLTSAAGFLTSIYSEPLSFFFAFVGIWSRECSISVPVLGQFDISWRYWFPYSFISMACFTLASLNRSNCVLLGIYFIFDLIELTKNRKFVKAICFPLLSGSLMFSALLYQQYYLPYKTFCPQRGEWCKSQLFSSIFITKTSLYSYIQSHYWGVGLLKYWTPNNIPNFLFAVPNIIILIYSSIYFSKIYPSYNLKALVWITRALVVIVCFFAHVQILNRIASFLPLHLWYLADRLVKTSDPKKMENPKGDDKIVKFYIYWLAFWIPLQTILFAAFLPPA*", + "old_alignment": "MIVGLTLYFVLFRSIQYLLVFLTPIRQFDTSTSLLLNELCSSPSEINSYWNKYFWNKLLSWDSVFFIKNITSKNGKPQFEHEYAFSQLWTFFVRLFIKSNNDSIYHALRVGVAIENVLFYLSGIVLYFLTKKIFSQNIRQSQFARTIAKKTSLLFFLTSAAGFLTSIYSEPLSFFFAFVGIWSRECTISVPVLGQFDISWRYWFPYSFISMACFTLASLNRSNCVLLGIYFIFDLIELTKNRKFVKAICFPLLSGSLMFSALLYQQYYLPYKTFCPQRGEWCKSQLFSSIFITKTSLYSYIQSHYWGVGLLKYWTPNNIPNFLFAVPNIIILIYSSIYFSKIYPSYNLKALVWITRALVVIVCFFAHVQILNRIASFLPLHLWYLADRLVKTSDPKKMENPKGDDKIVKFYIYWLAFWIPLQTILFAAFLPPA*" + } + ], + "YBR007C": [ + { + "revision": "110203", + "new_alignment": "MNQNLKNTSWADRIGSDDQERKANSSEVSQSPPPNNSFESSMDSQFSYAHSNKSSISFESIQTTERLLDKLDLSLEDELILQEALLEEENASRNSQLSQTSGPTLCMPASEFPSLRYRTNPSPTYIQARDRSLIIDNLKEKDSTLRGKYSSGKVERHLPVKSRYSYIVEEDYDSETFSGMKPQMNRNEKDYKYPNLENGNRSTNSPNPFNFEKYRIENTRLHHLYPTLISDNNTSVDNNANSKNNRTTSNNINTSTKTDRISEKQSCPNEFTTTQKSNCLYRNGSSTSTNTSFSEVGQLSKPKTQSSFESESSSFSKLKLTKSDTTPIKPSPKRSNSSTSTITKTNTMTNDISLPPTPPYKAHKKKTSLNSLKKLFKSPRTRAKNKKDLESEGSSPIRSATNSLDFSGENIQLPSTSSTINNSSPHLARYIFPPNPVFHFKTASTPQSSTDKKKNSKARPNRTHLRTFSDFHTTEKDSKIGELSALTEQSNKPYHPKVRRRTLSLDGMLPNNSTQCMDSFSHKKEGSNATSKCGKLKFHPEPYDNDESSHIGQAITMRHQGKLEESAQRLKKACACGNKTAFLLYGLALRHGCGVDKNLKLSLGYLMAATDIKSFAAEVLDLDINPLNFASMDDIPDIAPEPTAPALYECGMAYLKGLGMDHPDERKGLKFLEKAALLGHVDSMCLSGTIWSKTSNVKKRDLARAAAWFRIADKKGANLLGSDWIYKEKYMKQGPK*", + "old_alignment": "MNQNLKNTSWADRIGSDDQERKANSSEVSQSPPPNNSFESSMDSQFSYAHSNKSSISFESIQTTERLLDKLDLSLEDELILQEALLEEENASRNSQLSQTSGPTLCMPASEFPSLRYRTNPSPTYIQARDRSLIIDNLKEKDSTLRGKYSSGKVERHLPVKSRYSYIVEEDYDSETFSGMKPQMNRNEKDYKYPNLENGNRSTNRPNPFNFEKYRIENTRLHHLYPTLISDNNTSVDNNANSKNNRTTSNNINTSTKTDRISEKQSCPNEFTTTQKSNCLYRNGSSTSTNTSFSEVGQLSKPKTQSSFESESSSFSKLKLTKSDTTTIKPSPKRSNSSTSTITKTNTMTNDISLPPTPPYKAHKKKTSLNSLKKLFKSPRTRAKNKKDLESEGSSPIRSATNSLDFSGENIQLPSTSSTINNSSPHLARYIFPPNPVFHFKTASTPQSSTDKKKNSKARPNRTHLRTFSDFHTTEKDSKIGELSALTEQSNKPYHPKVRRRTLSLDGMLPNNSTQCMDSFSHKKEGSNATSKCGKLKFHPEPYDNDESSHIGQAITMRHQGKLEESAQRLKKACACGNKTAFLLYGLALRHGCGVDKNLKLSLGYLMAATDIKSFAAEVLDLDINPLNFASMDDIPDIAPEPTAPALYECGMAYLKGLGMDHPDERKGLKFLEKAALLGHVDSMCLSGTIWSKTSNVKKRDLARAAAWFRIADKKGANLLGSDWIYKEKYMKQGPK*" + } + ], + "YBR041W": [ + { + "revision": "040206", + "new_alignment": "MSPIQVVVFALSRIFLLLFRLIKLIITPIQKSLGYLFGNYFDELDRKYRYKEDWYIIPYFLKSVFCYIIDVRRHRFQNWYLFIKQVQQNGDHLAISYTRPMAEKGEFQLETFTYIETYNIVLRLSHILHFDYNVQAGDYVAIDCTNKPLFVFLWLSLWNIGAIPAFLNYNTKGTPLVHSLKISNITQVFIDPDASNPIRESEEEIKNALPDVKLNYLEEQDLMHELLNSQSPEFLQQDNVRTPLGLTDFKPSMLIYTSGTTGLPKSAIMSWRKSSVGCQVFGHVLHMTNESTVFTAMPLFHSTAALLGACAILSHGGCLALSHKFSASTFWKQVYLTGATHIQYVGEVCRYLLHTPISKYEKMHKVKVAYGNGLRPDIWQDFRKRFNIEVIGEFYAATEAPFATTTFQKGDFGIGACRNYGTIIQWFLSFQQTLVRMDPNDDSVIYRNSKGFCEVAPVGEPGEMLMRIFFPKKPETSFQGYLGNAKETKSKVVRDVFRRGDAWYRCGDLLKADEYGLWYFLDRMGDTFRWKSENVSTTEVEDQLTASNKEQYAQVLVVGIKVPKYEGRAGFAVIKLTDNSLDITAKTKLLNDSLSRLNLPSYAMPLFVKFVDEIKMTDNHKILKKVYREQKLPKGLDGNDTIFWLKNYKRYEVLTAADWEAIDAQTIKL*-----", + "old_alignment": "MSPIQVVVFALSRIFLLLFRLIKLIITPIQKSLGYLFGNYFDELDRKYRYKEDWYIIPYFLKSVFCYIIDVRRHRFQNWYLFIKQVQQNGDHLAISYTRPMAEKGEFQLETFTYIETYNIVLRLSHILHFDYNVQAGDYVAIDCTNKPLFVFLWLSLWNIGAIPAFLNYNTKGTPLVHSLKISNITQVFIDPDASNPIRESEEEIKNALPDVKLNYLEEQDLMHELLNSQSPEFLQQDNVRTPLGLTDFKPSMLIYTSGTTGLPKSAIMSWRKSSVGCQVFGHVLHMTNESTVFTAMPLFHSTAALLGACAILSHGGCLALSHKFSASTFWKQVYLTGATHIQYVGEVCRYLLHTPISKYEKMHKVKVAYGNGLRPDIWQDFRKRFNIEVIGEFYAATEAPFATTTFQKGDFGIGACRNYGTIIQWFLSFQQTLVRMDPNDDSVIYRNSKGFCEVAPVGEPGEMLMRIFFPKKPETSFQGYLGNAKETKSKVVRDVFRRGDAWYRCGDLLKADEYGLWYFLDRMGDTFRWKSENVSTTEVEDQLTASNKEQYAQVLVVGIKVPKYEGRAGFAVIKLTDNSLDITAKTKLLNDSLSRLNLPSYAMPLFVKFVDEIKMTDN---------------------------------------------------LIKF*" + } + ], + "YBR043C": [ + { + "revision": "110203", + "new_alignment": "MQAQGSQSNVGSLRSNCSDNSLPNNHVMMHCDESSGSPHSEHNDYSYEKTNLESTASNSREHRDNQLSRLKSEEYVVPKNQRRGLLPQLAIIPEFKDARDYPPMMKKMIVFLIAFSSMMGPMGTSIIFPAINSITTEFKTSVIMVNVSIGVYLLSLGVFPLWWSSLSELEGRRTTYITSFALLFAFNIGSALAPDINSFIALRMLCGAASASVQSVGAGTVADLYISEDRGKNLSYYYLGPLLAPLLSPIFGSLLVNRWPWRSTQWFMVILSGCNVILLTVLLPETLRKQDSKGAIAQILAERRIQVDNNERGEIQEDYQRGEDETDRIENQVATLSTEKHNYVGEVRDQDSLDLESHSSPNTYDGRAGETQLQRIYTEASRSLYEYQLDDSGIDATTAQVTRIRSTDPKLARSIRENSLRKLQTNLEEQVKKVLSSNGGEIAPKQVSAVRKVWDTFFVYFIKPLKSLHFLEYPPVALAITFSAISFSTVYFVNMTVEYKYSRPPYNFKPLYIGLLYIPNSVTYFFASIYGGRWVDMLLKRYKEKYGILAPEARISWNVVTSVISFPIALLIFGWCLDKKCHWVTPLIGTALFGYAAMMTIGATLSYLVDSLPGKGATGVALNNLIRQILAATAVFVTTPMLNGMGTGWAFTMLAFIVLGASSVLIILKKHGDYWRENYDLQKLYDKID*", + "old_alignment": "MQAQGSQSNVGSLRSNCSDNSLPNNHVMMHCDESSGTPHSEHNDYSYEKTNLESTASNSREHRDNQLSRLKSEEYVVPKNQRRGLLPQLAIIPEFKDARDYPPMMKKMIVFLIAFSSMMGPMGTSIIFPAINSITTEFKTSVIMVNVSIGVYLLSLGVFPLWWSSLSELEGRRTTYITSFALLFAFNIGSALAPDINSFIALRMLCGAASASVQSVGAGTVADLYISEDRGKNLSYYYLGPLLAPLLSPIFGSLLVNRWPWRSTQWFMVILSGCNVILLTVLLPETLRKQDSKGAIAQILAERRIQVDNNERGEIQEDYQRGEDETDRIENQVATLSTEKHNYVGEVRDQDSLDLESHSSPNTYDGRAGETQLQRIYTEASRSLYEYQLDDSGIDATTAQVTRIRSTDPKLARSIRENSLRKLQTNLEEQVKKVLSSNGGEIAPKQVSAVRKVWDTFFVYFIKPLKSLHFLEYPPVALAITFSAISFSTVYFVNMTVEYKYSRPPYNFKPLYIGLLYIPNSVTYFFASIYGGRWVDMLLKRYKEKYGILAPEARISWNVVTSVISFPIALLIFGWCLDKKCHWVTPLIGTALFGYAAMMTIGATLSYLVDSLPGKGATGVALNNLIRQILAATAVFVTTPMLNGMGTGWAFTMLAFIVLGASSVLIILKKHGDYWRENYDLQKLYDKID*" + } + ], + "YBR044C": [ + { + "revision": "110203", + "new_alignment": "MLRNCLRKLGNHQTKCSVKTLHTPIYRTKNLQVLRDTLSGIKLLEKIITSSSYNKTLIYEPKYKSKPQVVSSHDTMRLHNVMRELLDSLQVDEATNTRLQSNRPRKLGRVGLQLFMDCIQDNLTATSTSLTCSLLEHYFKYPEKEVTNGIKAGLRYIRDFLAKNKIIVKSQNDVDALVEQLTMSSSDSQSIKRVLKAINYELFSDDIVRVINGNKTYDEVDVSKGWKYPAGILDSNEAYLRSLELPTKKLVSIDKDMLVLMYDGTLRDANKILPTITYARKLRKSVLLIVNGDCTGDALTSVTINNNRNKRENNESRIVVLKYSKKANNDLAPQENLDFIKFLRLPCGYDSIYSPEYSPLVPSKMCADKYYGSIESIKATTGEAFLYNSIDAEAIPNKVPKSFLQNTVTLSIGGHNEIEIDRRRNAIDNCLNNVLCHGLAKGFIPGYGISLLKAIPGLNELKANEPNFMTKVGINAVLSAVILPSEVAFKNAYGYNYYEINSLIAGAINEKSFPMAKFSPNSEPVNTVKDGNLEPWSKMDSCLAGVETFIELLTSCNTIITCVYKKPERHKA*---------", + "old_alignment": "MLRNCLRKLGNHQTKCSVKTLHTPIYRTKNLQVLRDTLSGIKLLEKIITSSSYNKTLIYEPKYKSKPQVVSSHDTMRLHNVMRELLDSLQVDEATNTRLQSNRPRKLGRVGLQLFMDCIQDNLTATSTSLTCSLLEHYFKYPEKEVTNGIKAGLRYIRDFLAKNKIIVKSQNDVDALVEQLTMSSSDSQSIKRVLKAINYELFSDDIVRVINGNKTYDEVDVSKGWKYPAGILDSNEAYLRSLELPTKKLVSIDKDMLVLMYDGTLRDANKILPTITYARKLRKSVLLIVNGDCTGDALTSVTINNNRNKRENNESRIVVLKYSKKANNDLAPQENLDFIKFLRLPCGYDSIYSPEYSPLVPSKMCADKYYGSIESIKATTGEAFLYNSIDAEAIPNKVPKSFLQNTVTLSIGGHNEIEIDRRRNAIDNCLNNVLCHGLAKGFIPGYGISLLKAIPGLNELKANEPNFMTKVGINAVLSAVILPSEVAFKNAYGYNYYEINSLIAGAINEKSFPMAKFSPNSEPVNTVKDGNLEPWSKMDSCLAGVETFIELLTSCNTIITCVYK--------SLNGTKPR*" + } + ], + "YBR045C": [ + { + "revision": "110203", + "new_alignment": "METILQPKARPFESLKRKRFREWLRPSTAHGSLLHSDTLDLRDFAKPNPADTFSNLDSGHCPLVTTPIKYECPDGKSSFFRGDTKFETLFSNRKFYEFKDNLKRGLKKIRHGRNGHQSEKRCPVVEETKKSVSDNLDKPDNNTPCFDRFHTNSKEFETQFDHSNRSQNSEKAYLDNESCWNLSEKFIPFNNLKYEDLKHFEENLQSLAPATFTPIESNESLDRSDSTRGTKRSIRNDSSDTTSEKRLCLKQYSDEPESDHSMESTPSIYITKEVQERIEALSSTDSFLIEKVDFPSNKIGSSASDYESDNEYRNMDEDSINDVTTEKEGNVVIPDSNTSTVDAMEKPIEVSSALKDDTLDKDIDDASSSYSDDVETTFEPVESEELSDLSDTSSSGSSKIYTIPTFRGLTNRTNISQILSKVGKADLSQDNLTHLIKSHQKKKRCVNFRNKRFYDAFNPYVDNEEDAELSDSENISEMDTDLCIKDRSTSSVRFDENSRLLIYKKSKKLNKDETQSGYSTTEMRSILKTKMNSQHDEESQRASKCDTVGVAQFLHYFQYTEYKRQRNEAENYRLRGEQLSKYYSEEYPLDFAAVECEDSVNDKSDIILSMRATERNIGRQLKGISSQGAQIISLDEDVF*----", + "old_alignment": "METILQPKARPFESLKRKRFREWLRPSTAHGSLLHSDTLDLRDFAKPNPADTFSNLDSGHCPLVTTPIKYECPDGKSSFFRGDTKFETLFSNRKFYEFKDNLKRGLKKIRHGRNGHQSEKRCPVVEETKKSVSDNLDKPDNNTPCFDRFHTNSKEFETQFDHSNRSQNSEKAYLDNESCWNLSEKFIPFNNLKYEDLKHFEENLQSLAPATFTPIESNESLDRSDSTRGTKRSIRNDSSDTTSEKRLCLKQYSDEPESDHSMESTPSIYITKEVQERIEALSSTDSFLIEKVDFPSNKIGSSASDYESDNEYRNMDEDSINDVTTEKEGNVVIPDSNTSTVDAMEKPIEVSSALKDDTLDKDIDDASSSYSDDVETTFEPVESEELSDLSDTSSSGSSKIYTIPTFRGLTNRTNISQILSKVGKADLSQDNLTHLIKSHQKKKRCVNFRNKRFYDAFNPYVDNEEDAELSDSENISEMDTDLCIKDRSTSSVRFDENSRLLIYKKSKKLNKDETQSGYSTTEMRSILKTKMNSQHDEESQRASKCDTVGVAQFLHYFQYTEYKRQRNEAE----------------------------------------------------------------------IID*" + } + ], + "YBR062C": [ + { + "revision": "040716", + "new_alignment": "MSTYEEEHGIQQNSRDYQEVGGTSQEEQRRQVRSQLQGLFQNFGNTSGEGDAHSDSTLLLRLLSQMLPESLQEEWLQEMDKGKSAGCPDTFAASLPRINKKKLKATDNCSICYTNYLEDEYPLVVELPHCHHKFDLECLSVWLSRSTTCPLCRDNVMGHRIINEIDTTEAELEEDWGMYG*", + "old_alignment": "-----------------------------------------------------------------MLPESLQEEWLQEMDKGKSAGCPDTFAASLPRINKKKLKATDNCSICYTNYLEDEYPLVVELPHCHHKFDLECLSVWLSRSTTCPLCRDNVMGHRIINEIDTTEAELEEDWGMYG*" + } + ], + "YBR068C": [ + { + "revision": "110203", + "new_alignment": "MLSSEDFGSSGKKETSPDSISIRSFSAGNNFQSSSSEKTYSKQKSGSDKLIHRFADSFKRAEGSTTRTKQINENTSDLEDGVESITSDSKLKKSMKSRHVVMMSLGTGIGTGLLVANAKGLHYGGPAALIIGYILVSFVTYFMIQAAGEMAVTYPTLPANFNAYSSIFISKSFGFATVWLYCFQWLTVLPLELITASMTIQFWNDKINPDIYILIFYVFLVFIHFFGVKAYGETEFIFNCCKILMIAGFIILSIVINCGGAGNDGYIGATYWHNPGAFAGDTSIGRFKNVCYILVTAYFSFGGMELFALSVQEQSNPRKSTPVAAKRSIYRIVVIYLLTMILIGFNVPYNDDQLMGAGGSATHASPYVLAASIHGVKIVPHIINAVILISVVSVANSSLYAGPRLICSLAQQGYAPKFLDYVDREGRPLRALIVCCVFGVIAFVAASSKEEIVFTWLAAIAGLSELFTWTSIMLSHLRFRQAMKVQGRSLDELGYKATTGIWGSIYGVFFNILVFVAQFWVALAPLGNGGKCDAESFFQNYLAFPIWLAFYFGYMVYNRDFTLLNPLDKIDLDFHRRIYDPELMRQEDEENKEKLRNMSLMRKAYHFWC*", + "old_alignment": "MLSSEDFGSSGKKETSPDSISIRSFSAGNNFQSSSSEKTYSKQKSGSDKLIHRFADSFKRAEGSTTRTKQINENTSDLEDGVESITSDSKLKKSMKSRHVVMMSLGTGIGTGLLVANAKGLHYGGPAALIIGYILVSFETYFMIQAAGEMAVTYPTLPANFNAYSSIFISKSFGFATVWLYCFQWLTVLPLELITASMTIQFGNDKINPDIYILIFYVFLVFIHFFGVKAYGETEFIFNCCKILMIAGFIILSIVINCGGAGNDGYIGATYWHNPGAFAGDTSIGRFKNVCYILVTAYFSFGGMELFALSVQEQSNPRKSTPVAAKRSIYRIVVIYLLTMILIGFNVPYNDDQLMGAGGSATHASPYVLAASIHGVKIVPHIINAVILISVVSVANSSLYAGPRLICSLAQQGYAPKFLDYVDREGRPLRALIVCCVFGVIAFVAASSKEEIVFTWLAAIAGLSELFTWTSIMLSHLRFRQAMKVQGRSLDELGYKATTGIWGSIYGVFFNILVFVAQFWVALAPLGNGGKCDAESFFQNYLAFPIWLAFYFGYMVYNRDFTLLNPLDKIDLDFHRRIYDPELMRQEDEENKEKLRNMSLMRKAYHFWC*" + } + ], + "YBR073W": [ + { + "revision": "110203", + "new_alignment": "MAVISVKPRRREKILQEVKNSSVYQTVFDSGTTQMQIPKYENKPFKPPRRVGSNKYTQLKPTATAVTTAPISKAKVTVNLKRSISAGPTLNLAKKPNNLSSNENTRYFTIMYRKPTTKKHKTWSGDGYATLKASSDKLCFYNEAGKFLGSSMLPSDSDSLFETLFKAGSNEVQLDYELKENAEIRSAKEALSQNMGNPSPPTTSTTETVPSTKNDGGKYQMPLSQLFSLNTVKRFKSVTKQTNEHMTTVPKTSQNSKAKKYYPVFDVNKIDNPIVMNKNAAAEVDVIVDPLLGKFLRPHQREGVKFMYDCLMGLARPTIENPDIDCTTKSLVLENDSDISGCLLADDMGLGKTLMSITLIWTLIRQTPFASKVSCSQSGIPLTGLCKKILVVCPVTLIGNWKREFGKWLNLSRIGVLTLSSRNSPDMDKMAVRNFLKVQRTYQVLIIGYEKLLSVSEELEKNKHLIDMLVCDEGHRLKNGASKILNTLKSLDIRRKLLLTGTPIQNDLNEFFTIIDFINPGILGSFASFKRRFIIPITRARDTANRYNEELLEKGEERSKEMIEITKRFILRRTNAILEKYLPPKTDIILFCKPYSQQILAFKDILQGARLDFGQLTFSSSLGLITLLKKVCNSPGLVGSDPYYKSHIKDTQSQDSYSRSLNSGKLKVLMTLLEGIRKGTKEKVVVVSNYTQTLDIIENLMNMAGMSHCRLDGSIPAKQRDSIVTSFNRNPAIFGFLLSAKSGGVGLNLVGASRLILFDNDWNPSVDLQAMSRIHRDGQKKPCFIYRLVTTGCIDEKILQRQLMKNSLSQKFLGDSEMRNKESSNDDLFNKEDLKDLFSVHTDTKSNTHDLICSCDGLGEEIEYPETNQQQNTVELRKRSTTTWTSALDLQKKMNEAATNDDAKKSQYIRQCLVHYKHIDPARQDELFDEVITDSFTELKDSITFAFVKPGEICLREQ*", + "old_alignment": "MAVISVKPRRREKILQEVKNSSVYQTVFDSGTTQMQIPKYENKPFKPPRRVGSNKYTQLKPTATAVTTAPISKAKVTVNLKRSISAGPTLNLAKKPNNLSSNENTRYFTIMYRKPTTKKHKTWSGDGYATLKASSDKLCFYNEAGKFLGSSMLPSDSDSLFETLFKAGSNEVQLDYELKENAEIRSAKEALSQNMGNPSPPTTSTTETVPSTKNDGGKYQMPLSQLFSLNTVKRFKSVTKQTNEHMTTVPKTSQNSKAKKYYPVFDVNKIDNPIVMNKNAAAEVDVIVDPLLGKFLRPHQREGVKFMYDCLMGLARPTIENPDIDCTTKSLVLENDSDISGCLLADDMGLGKTLMSITLIWTLIRQTPFASKVSCSQSGIPLTGLCKKILVVCPVTLIGNWKREFGKWLNLSRIGVLTLSSRNSPDMDKMAVRNFLKVQRTYQVLIIGYEKLLSVSEELEKNKHLIDMLVCDEGHRLKNGASKILNTLKSLDIRRKLLLTGTPIQNDLNEFFTIIDFINPGILGSFASFKRRFIIPITRARDTANRYNEELLEKGEERSKEMIEITKRFILRRTNAILEKYLPPKTDIILFCKPYSQQILAFKDILQGARLDFGQLTFSSSLGLITLLKKVCNSPGLVGSDPYYKSHIKDTQSQDSYSRSLNSGKLKVLMTLLEGIRKGTKEKVVVVSNYTQTLDIIENLMNMAGMSHCRLDGSIPAKQRDSIVTSFNRNPAIFGFLLSAKSGGVGLNLVGRSRLILFDNDWNPSVDLQAMSRIHRDGQKKPCFIYRLVTTGCIDEKILQRQLMKNSLSQKFLGDSEMRNKESSNDDLFNKEDLKDLFSVHTDTKSNTHDLICSCDGLGEEIEYPETNQQQNTVELRKRSTTTWTSALDLQKKMNEAATNDDAKKSQYIRQCLVHYKHIDPARQDELFDEVITDSFTELKDSITFAFVKPGEICLREQ*" + }, + { + "revision": "090508", + "new_alignment": "MAVISVKPRRREKILQEVKNSSVYQTVFDSGTTQMQIPKYENKPFKPPRRVGSNKYTQLKPTATAVTTAPISKAKVTVNLKRSISAGPTLNLAKKPNNLSSNENTRYFTIMYRKPTTKKHKTWSGDGYATLKASSDKLCFYNEAGKFLGSSMLPSDSDSLFETLFKAGSNEVQLDYELKENAEIRSAKEALSQNMGNPSPPTTSTTETVPSTKNDGGKYQMPLSQLFSLNTVKRFKSVTKQTNEHMTTVPKTSQNSKAKKYYPVFDVNKIDNPIVMNKNAAAEVDVIVDPLLGKFLRPHQREGVKFMYDCLMGLARPTIENPDIDCTTKSLVLENDSDISGCLLADDMGLGKTLMSITLIWTLIRQTPFASKVSCSQSGIPLTGLCKKILVVCPVTLIGNWKREFGKWLNLSRIGVLTLSSRNSPDMDKMAVRNFLKVQRTYQVLIIGYEKLLSVSEELEKNKHLIDMLVCDEGHRLKNGASKILNTLKSLDIRRKLLLTGTPIQNDLNEFFTIIDFINPGILGSFASFKRRFIIPITRARDTANRYNEELLEKGEERSKEMIEITKRFILRRTNAILEKYLPPKTDIILFCKPYSQQILAFKDILQGARLDFGQLTFSSSLGLITLLKKVCNSPGLVGSDPYYKSHIKDTQSQDSYSRSLNSGKLKVLMTLLEGIRKGTKEKVVVVSNYTQTLDIIENLMNMAGMSHCRLDGSIPAKQRDSIVTSFNRNPAIFGFLLSAKSGGVGLNLVGASRLILFDNDWNPSVDLQAMSRIHRDGQKKPCFIYRLVTTGCIDEKILQRQLMKNSLSQKFLGDSEMRNKESSNDDLFNKEDLKDLFSVHTDTKSNTHDLICSCDGLGEEIEYPETNQQQNTVELRKRSTTTWTSALDLQKKMNEAATNDDAKKSQYIRQCLVHYKHIDPARQDELFDEVITDSFTELKDSITFAFVKPGEICLREQ*", + "old_alignment": "----------------------------------MQIPKYENKPFKPPRRVGSNKYTQLKPTATAVTTAPISKAKVTVNLKRSISAGPTLNLAKKPNNLSSNENTRYFTIMYRKPTTKKHKTWSGDGYATLKASSDKLCFYNEAGKFLGSSMLPSDSDSLFETLFKAGSNEVQLDYELKENAEIRSAKEALSQNMGNPSPPTTSTTETVPSTKNDGGKYQMPLSQLFSLNTVKRFKSVTKQTNEHMTTVPKTSQNSKAKKYYPVFDVNKIDNPIVMNKNAAAEVDVIVDPLLGKFLRPHQREGVKFMYDCLMGLARPTIENPDIDCTTKSLVLENDSDISGCLLADDMGLGKTLMSITLIWTLIRQTPFASKVSCSQSGIPLTGLCKKILVVCPVTLIGNWKREFGKWLNLSRIGVLTLSSRNSPDMDKMAVRNFLKVQRTYQVLIIGYEKLLSVSEELEKNKHLIDMLVCDEGHRLKNGASKILNTLKSLDIRRKLLLTGTPIQNDLNEFFTIIDFINPGILGSFASFKRRFIIPITRARDTANRYNEELLEKGEERSKEMIEITKRFILRRTNAILEKYLPPKTDIILFCKPYSQQILAFKDILQGARLDFGQLTFSSSLGLITLLKKVCNSPGLVGSDPYYKSHIKDTQSQDSYSRSLNSGKLKVLMTLLEGIRKGTKEKVVVVSNYTQTLDIIENLMNMAGMSHCRLDGSIPAKQRDSIVTSFNRNPAIFGFLLSAKSGGVGLNLVGRSRLILFDNDWNPSVDLQAMSRIHRDGQKKPCFIYRLVTTGCIDEKILQRQLMKNSLSQKFLGDSEMRNKESSNDDLFNKEDLKDLFSVHTDTKSNTHDLICSCDGLGEEIEYPETNQQQNTVELRKRSTTTWTSALDLQKKMNEAATNDDAKKSQYIRQCLVHYKHIDPARQDELFDEVITDSFTELKDSITFAFVKPGEICLREQ*" + } + ], + "YBR074W": [ + { + "revision": "110203", + "new_alignment": "MKLKSVFRSVLKYRKTNLSLLLLITYSIITLLYIFDHERYKLNLPKEDEHPEFNDLLETAWGDLQIITASFHPYTSKENDKVHDYLLKRVLEITGNSSFASVSDDKESERSILFQQQDPFNESSRFSRVTYFESSNILVKLEGKNPEEEGLLLSAHFDSVPTGYGATDDGMGVVSLLANLKYHIKHRPNRTLIFNFNNNEEFGLLGASTYFDHSWSNLTKYVINLEGTGAGGKAVLFRTSDTSTARIYQQSVKENPFGNSIYQQGFYSRYVRSETDYKIYEENGMRGWDVAFYKPRNLYHTIKDSIQYTSKASLWHMLHTSLQLSAYVASNSLDTADQTPACYFDFIGLKFFVISAKTLFYWNCIFLLVSPVVAIGLYLISRDRMTWKSYSWLSWTRFPLSLAAGIIVQKLFSNDIIRSNPLTFSRNYFWPISAFFTQVIFTSYVLINCSNFFFPCADMKSLSIIELFIILWTILLFTSKLLYSSDYRYTGLYPLSIFFLLSTIAAILRLLALALGMRTRKRLGRECRDHHSNYSSHSQIDMERDGQENLEQPQDQLTSSQDDQASIQDDNVSTTSAGPSHNVDEDHGMDSSSQQHDERVPLLKGSNSMEEGLSTRENSLKLEYTDYAWIIQFLLIVPIPSFILFNSVDVIMDALNHTVQEGSKATFDVLRFGMVGSILIALPILPFFYKVNYITISLTALLFLISASKTLLVHPFTNSNPLKVRFSQNIDLSQGNAASVHVLGREGNFLKPMLQDLPSIKYSSTHINCTSVTNGMELCMYDGMQPNLLSTNGNTNISSMVKVHVLHNNRNSTERSPYEPIVAELLLEVKENRACTLTFESRHQAKSPVREITVYQKKNSAPQKANITKTIKSASGINELQLHKLDFDQETYHIGVQWFPKLLTDGNVEDDKLGTKDELSVSISCYWGEYDSESVVNGTAVRKIPAFDELINYAPLSFSFTNEQKGLVIVKDAIIL*", + "old_alignment": "MKLKSVFRSVLKYRKTNLSLLLLITYSIITLLYIFDHERYKLNLPKEDEHPEFNDLLETAWGDLQIITASFHPYTSKENDKVHDYLLKRVLEITGNSSFASVSDDKESERSILFQQQDPFNESSRFSRVTYFESSNILVKLEGKNPEEEGLLLSAHFDSVPTGYGATDDGMGVVSLLANLKYHIKHRPNRTLIFNFNNNEEFGLLGASTYFDHSWSNLTKYVINLEGTGAGGKAVLFRTSDTSTARIYQQSVKENPFGNSIYQQGFYSRYVRSETDYKIYEENGMRGWDVAFYKPRNLYHTIKDSIQYTSKASLWHMLHTSLQLSAYVASNSLDTADQTPACYFDFIGLKFFVISAKTLFYWNCIFLLVSPVVAIGLYLISRDRMTWKSYSWLSWTRFPLSLAAGIIVQKLFSNDIIRSNPLTFSRNYFWPISAFFTQVIFTSYVLINCSNFFFPCADMKSLSIIELFIILWTILLFTSKLLYSSDYRYTGLYPLSIFFLLSTIAAILRLLALALGMRTRKRLGRECRDHHSNYSSHSQIDMERDGQENLEQPQDQLTSSQDDQASIQDDNVSTTSAGPSHNVDEDHGMDSSSQQHDERVPLLKGSNSMEEGLSTRENSLKLEYTDYAWIIQFLLIVPIPSFILFNSVDVIMDALNHTVQEGSKATFDVLRFGMVGSILIALPILPFFYKVNYITISLTALLFLISASKTLLVHPFTNSNPLKVRFSQNIDLSQGNAASVHVLGREGNFLKPMLQDLPSIKYSSTHINCTSVTNGMELCMYDGMQPNLLSTNGNTNISSMVKVHVLHNNRNSTERSPYEPIVAELLLEVKEFRACTLTFESRHQAKSPVREITVYQKKNSAPQKANITKTIKSASGINELQLHKLDFDQETYHIGVQWFPKLLTDGNVEDDKLGTKDELSVSISCYWGEYDSESVVNGTAVRKIPAFDELINYAPLSFSFTNEQKGLVIVKDAIIL*" + } + ], + "YBR076W": [ + { + "revision": "110203", + "new_alignment": "MDYGYFFPAQRIEETNGVDFWIDSNAEFTQSKRPDSSTSTLSRVLTDTTNVSNNSGSLKRKTIKNKIFPQRKIF-------------------------NDSENFDFGKANTDCKHVFKSISKQLIFLPRCFQHHSIRGWMKDRYSEFGYKIKRNQNCPPSACVQALYNTSRSNTEESNPNSLDSLIMYKYMRYSEKKKELMCRFCQGNNWILAENYLKHLFFAHGILSEFKPHTLYHFESKLLKIQGKLNFKIQVLKEPEFSKKILNSLTVSIIPSPLAYYTQTLNGGFRRIHVKCPHCENWIRLGWCEYDEIIRDSFQDFESLRNLNADYNGMSYIQTRNREDIEGIYENYFTHYIQCDLATFRTKCLYVQVITK-----------------------SN-----------*", + "old_alignment": "--------------------------------------------------------------------------MYPIIVDHSKEKPSRTKYSHKGKYCNDSENFDFGKANTDCKHVFKSISKQLIFLPRCFQHHSIRGWMKDRYSEFGYKIKRNQNCPPSACVQALYNTSRSNTEESNPNSLDSLIMYKYMRYSEKKKELMCRFCQGNNWILAENYLKHLFFAHGILSEFKPHTLYHFESKLLKIQGKLNFKIQVLKEPEFSKKILNSLTVSIIPSPLAYYTQTLNGGFRRIHVKCPHCENWIRLGWCEYDEIIRDSFQDFESLRNLNADYNGMSYIQTRNREDIEGIYENYFTHYIQCDLATFRTKCLYVQVITKAIDCVRKILKINDHITNQTKFAASNELNDYETADKY*" + } + ], + "YBR078W": [ + { + "revision": "110203", + "new_alignment": "MQFKNALTATAILSASALAANSTTSIPSSCSIGTSATATAQADLDKISGCSTIVGNLTITGDLGSAALASIQEIDGSLTIFNSSSLSSFSADSIKKITGDLNMQELIILTSASFGSLQEVDSINMVTLPAISTFSTDLQNANNIIVSDTTLESVEGFSTLKKVNVFNINNNRYLNSFQSSLESVSDSLQFSSNGDNTTLAFDNLVWANNITLRDVNSISFGSLQTVNASLGFINNTLPSLNLTQLSKVGQSLSIVSNDELSKAAFSNLTTVGGGFIIANNTQLKVIDGFNKVQTVGGAIEVTGNFSTLDLSSLKSVRGGANFDSSSSNFSCNALKKLQSNGAIQGDSFVCKNGATSTSVKLSSTSTESSKSSATSSASSSGDASNAQANVSASASSSSSSSKKSKGAAPELVPATSFMGVVAAVGVALL*------------------------------------------", + "old_alignment": "MQFKNALTATAILSASALAANSTTSIPSSCSIGTSATATAQADLDKISGCSTIVGNLTITGDLGSAALASIQEIDGSLTIFNSSSLSSFSADSIKKITGDLNMQELIILTSASFGSLQEVDSINMVTLPAISTFSTDLQNANNIIVSDTTLESVEGFSTLKKVNVFNINNNRYLNSFQSSLESVSDSLQFSSNGDNTTLAFDNLVWANNITLRDVNSISFGSLQTVNASLGFINNTLPSLNLTQLSKVGQSLSIVSNDELSKAAFSNLTTVGGGFIIANNTQLKVIDGFNKVQTVGGAIEVTGNFSTLDLSSLKSVRGGANFDSSSSNFSCNALKKLQSNGAIQGDSFVCKNGATSTSVKLSSTSTESSKSSATSSASSSGDASNAQANVSASASSSSSSSKKSKGAAPELVPATSFMGVVAAVGVA---YYKIKATICVSIITLISSLMISLPFLFYYETVGSSLNFICR*" + } + ], + "YBR089C-A": [ + { + "revision": "110203", + "new_alignment": "MAATKEAKQPKEPKKRTTRRKKDPNAPKRGLSAYMFFANENRDIVRSENPDVTFGQVGRILGERWKALTAEEKQPYESKAQADKKRYESEKELYNATRA*", + "old_alignment": "MAATKEAKQPKEPKKRTTRRKKDPNAPKRRLSAYMFFANENRDIVRSENPDVTFGQVGRILGERWKALTAEEKQPYESKAQADKKRYESEKELYNATRA*" + } + ], + "YBR090C": [ + { + "revision": "110203", + "new_alignment": "MVPAPGSRAFPSPVFLGGVFFVFFFRWRGNYKVQQVRLRQYWEFTLWETAPNTKQKNDFFAKTLTYIKLALWPQLKKQSNQRNQRRGPPGERRILTPLRGACQLICSLLMKTETLSVPRILT*", + "old_alignment": "MVPAPGSRAFPSPVFLGGVFFVFFFRWRGNYKVQQVRLRQYWEFTLWETAPNTKQKNDFFAKTLTYIKLALWPQLKKQSNQRNQRRGPPGERRILTPLRGGCQLICSLLMKTETLSVPRILT*" + } + ], + "YBR094W": [ + { + "revision": "110203", + "new_alignment": "MRVLITNDDGPLSDQFSPYIRPFIQHIKRNYPEWKITVCVPHVQKSWVGKAHLAGKNLTAQFIYSKVDAEDNTFWGPFIQPQIRSENSKLPYVLNAEIPKDTIEWILIDGTPASCANIGLHLLSNEPFDLVLSGPNVGRNTSAAYITSSGTVGGAMESVITGNTKAIAISWAYFNGLKNVSPLLMEKASKRSLDVIKHLVKNWDPKTDLYSINIPLVESLSDDTKVYYAPIWENRWIPIFNGPHINLENSFAEIEDGNESSSISFNWAPKFGAHKDSIHYMDEYKDRTVLTDAEVIESEMISVTPMKATFKGVNHLLGELKLTEEENNLSKTNNLIVVSIDPMEYIYKPLTHALKKYLPQVEIVSNLPEFDNGGCEKEMKVFHYGDYEQLDMDKLMELPNNYFTNSYIYRKALIRKHFLSHTIQTYTAKNPESILKKAYLESFTIDLDYAEFLDDALDENWELRQELENESQDKWWIVKPSMSDKGQGIRVFKTIEDLQAIFDSFDDEDSEAEESGNDDDADDVNGEFMDNNKVNISQLRHFIIQEYLTNPLLLASMDNRKFHIRCYVVCRGDLQVFVYDRMLALFAAKPFVPLDPYAYSVTDLKDLECHLTNTCLQSKKKDKDSSVLEFDSIEEIPNERKSNIKEQIHSITNDVFLAAVNVNRLNFQPLPNAFETYGVDFLIDSNYEVKLLEINAFPDFKQTGKDLKNLIDELFDDTVKYCVTPIFNENRNKTDDETDPNFVKVIDYTSNGW*", + "old_alignment": "MRVLITNDDGPLSDQFSPYIRPFIQHIKRNYPEWKITVCVPHVQKSWVGKAHLAGKNLTAQFIYSKVDAEDNTFWGPFIQPQIRSENSKLPYVLNAEIPKDTIEWILIDGTPASCANIGLHLLSNEPFDLVLSGPNVGRNTSAAYITSSGTVGGAMESVITGNTKAIAISWAYFNGLKNVSPLLMEKASKRSLDVIKHLVKNWDPKTDLYSINIPLVESLSDDTKVYYAPIWENRWIPIFNGPHINLENSFAEIEDGNESSSISFNWAPKFGAHKDSIHYMDEYKDRTVLTDAEVIESEMISVTPMKATFKGVNHLLGELKLTEEENNLSKTNNLIVVSIDPMEYIYKPLTHALKKYLPQVEIVSNLPEFDNGGCEKEMKVFHYGDYEQLDMDKLMELPNNYFTNSYIYRKALIRKHFLSHTIQTYTAKNPESILKKAYLESFTIDLDYREFLDDALDENWELRQELENESQDKWWIVKPSMSDKGQGIRVFKTIEDLQAIFDSFDDEDSEAEESGNDDDADDVNGEFMDNNKVNISQLRHFIIQEYLTNPLLLASMDNRKFHIRCYVVCRGDLQVFVYDRMLALFAAKPFVPLDPYAYSVTDLKDLECHLTNTCLQSKKKDKDSSVLEFDSIEEIPNERKSNIKEQIHSITNDVFLAAVNVNRLNFQPLPNAFETYGVDFLIDSNYEVKLLEINAFPDFKQTGKDLKNLIDELFDDTVKYCVTPIFNENRNKTDDETDPNFVKVIDYTSNGW*" + } + ], + "YBR097W": [ + { + "revision": "110203", + "new_alignment": "MGAQLSLVVQASPSIAIFSYIDVLEEVHYVSQLNSSRFLKTCKALDPNGEIVIKVFIKPKDQYSLRPFLQRIRAQSFKLGQLPHVLNYSKLIETNRAGYMIRQHLKNNLYDRLSLRPYLQDIELKFIAFQLLNALKDIHNLNIVHGDIKTENILVTSWNWCILTDFAAFIKPVYLPEDNPGEFLFYFDTSKRRTCYLAPERFNSKLYQDGKSNNGRLTKEMDIFSLGCVIAEIFAEGRPIFNLSQLFKYKSNSYDVNREFLMEEMNSTDLRNLVLDMIQLDPSKRLSCDELLNKYRGIFFPDYFYTFIYDYFRNLVTMTTSTPISDNTCTNSTLEDNVKLLDETTEKIYRDFSQICHCLDFPLIKDGGEIGSDPPILESYKIEIEISRFLNTNLYFPQNYHLVLQQFTKVSEKIKSVKEECALLFISYLSHSIRSIVSTATKLKNLELLAVFAQFVSDENKIDRVVPYFVCCFEDSDQDVQALSLLTLIQVLTSVRKLNQLNENIFVDYLLPRLKRLLISNRQNTNYLRIVFANCLSDLAIIINRFQEFTFAQHCNDNSMDNNTEIMESSTKYSAKLIQSVEDLTVSFLTDNDTYVKMALLQNILPLCKFFGRERTNDIILSHLITYLNDKDPALRVSLIQTISGISILLGTVTLEQYILPLLIQTITDSEELVVISVLQSLKSLFKTGLIRKKYYIDISKTTSPLLLHPNNWIRQFTLMIIIEIINKLSKAEVYCILYPIIRPFFEFDVEFNFKSMISCCKQPVSRSVYNLLCSWSVRASKSLFWKKIITNHVDSFGNNRIEFITKNYSSKNYGFNKRDTKSSSSLKGIKTSSTVYSHDNKEIPLTAEDRNWIDKFHIIGLTEKDIWKIVALRGYVIRTARVMAANPDFPYNNSNYRPLVQNSPPNLNLTNIMPRNIFFDVEFAEESTSEGQDSNLENQQIYKYDESEKDSNKLNINGSKQLSTVMDINGSLIFKNKSIATTTSNLKNVFVQLEPTSYHMHSPNHGLKDNANVKPERKVVVSNSYEGDVESIEKFLSTFKILPPLRDYKEFGPIQEIVRSPNMGNLRGKLIATLMENEPNSITSSAVSPGETPYLITGSDQGVIKIWNLKEIIVGEVYSSSLTYDCSSTVTQITMIPNFDAFAVSSKDGQIIVLKVNHYQQESEVKFLNCECIRKINLKNFGKNEYAVRMRAFVNEEKSLLVALTNLSRVIIFDIRTLERLQIIENSPRHGAVSSICIDEECCVLILGTTRGIIDIWDIRFNVLIRSWSFGDHAPITHVEVCQFYGKNSVIVVGGSSKTFLTIWNFVKGHCQYAFINSDEQPSMEHFLPIEKGLEELNFCGIRSLNALSTISVSNDKILLTDEATSSIVMFSLNELSSSKAVISPSRFSDVFIPTQVTANLTMLLRKMKRTSTHSVDDSLYHHDIINSISTCEVDETPLLVACDNSGLIGIFQ*", + "old_alignment": "MGAQLSLVVQASPSIAIFSYIDVLEEVHYVSQLNSSRFLKTCKALDPNGEIVIKVFIKPKDQYSLRPFLQRIRAQSFKLGQLPHVLNYSKLIETNRAGYMIRQHLKNNLYDRLSLRPYLQDIELKFIAFQLLNTLKDIHNLNIVHGDIKTENILVTSWNWCILTDFAAFIKPVYLPEDNPGEFLFYFDTSKRRTCYLAPERFNSKLYQDGKSNNGRLTKEMDIFSLGCVIAEIFAEGRPIFNLSQLFKYKSNSYDVNREFLMEEMNSTDLRNLVLDMIQLDPSKRLSCDELLNKYRGIFFPDYFYTFIYDYFRNLVTMTTSTPISDNTCTNSTLEDNVKLLDETTEKIYRDFSQICHCLDFPLIKDGGEIGSDPPILESYKIEIEISRFLNTNLYFPQNYHLVLQQFTKVSEKIKSVKEECALLFISYLSHSIRSIVSTATKLKNLELLAVFAQFVSDENKIDRVVPYFVCCFEDSDQDVQALSLLTLIQVLTSVRKLNQLNENIFVDYLLPRLKRLLISNRQNTNYLRIVFANCLSDLAIIINRFQEFTFAQHCNDNSMDNNTEIMESSTKYSAKLIQSVEDLTVSFLTDNDTYVKMALLQNILPLCKFFGRERTNDIILSHLITYLNDKDPALRVSLIQTISGISILLGTVTLEQYILPLLIQTITDSEELVVISVLQSLKSLFKTGLIRKKYYIDISKTTSPLLLHPNNWIRQFTLMIIIEIINKLSKAEVYCILYPIIRPFFEFDVEFNFKSMISCCKQPVSRSVYNLLCSWSVRASKSLFWKKIITNHVDSFGNNRIEFITKNYSSKNYGFNKRDTKSSSSLKGIKTSSTVYSHDNKEIPLTAEDINWIDKFHIIGLTEKDIWKIVALRGYVIRTARVMAANPDFPYNNSNYRPLVQNSPPNLNLTNIMPRNIFFDVEFAEESTSEGQDSNLENQQIYKYDESEKDSNKLNINGSKQLSTVMDINGSLIFKNKSIATTTSNLKNVFVQLEPTSYHMHSPNHGLKDNANVKPERKVVVSNSYEGDVESIEKFLSTFKILPPLRDYKEFGPIQEIVRSPNMGNLRGKLIATLMENEPNSITSSAVSPGETPYLITGSDQGVIKIWNLKEIIVGEVYSSSLTYDCSSTVTQITMIPNFDAFAVSSKDGQIIVLKVNHYQQESEVKFLNCECIRKINLKNFGKNEYAVRMRAFVNEEKSLLVALTNLSRVIIFDIRTLERLQIIENSPRHGAVSSICIDEECCVLILGTTRGIIDIWDIRFNVLIRSWSFGDHAPITHVEVCQFYGKNSVIVVGGSSKTFLTIWNFVKGHCQYAFINSDEQPSMEHFLPIEKGLEELNFCGIRSLNALSTISVSNDKILLTDEATSSIVMFSLNELSSSKAVISPSRFSDVFIPTQVTANLTMLLRKMKRTSTHSVDDSLYHHDIINSISTCEVDETPLLVACDNSGLIGIFQ*" + } + ], + "YBR108W": [ + { + "revision": "110203", + "new_alignment": "MGFWENNKDSITSGLKSAGKYGYQGTKYVAKTGYKASKKHYNNSKARRERKSGKKNSSDEEYDSEDEMEYERKPTDIRSLKDPKSFPPPPLKPGQKTYTGQQQQQMPNGQASYAFQGAYQGQPGAGSTEQSQYAQPQYNQYPQQQLQQGVMPQQQQLQQGVVPQQPPIYGEQVPPYGSNSNATSYQSLPQQNQPQNAIPSQVSLNSASQQSTGFVSQNLQYGTQSSNPAPSPSFQNGLQCHQQPQYVSHGSTNLGQSQFPSGQQQQPTTQFGQQVLPSPAQPQQQQQGQPLPPPRGQVILPAPGEPLSNGFGQQQQQQQQQQQPLNQNNALLPQMNVEGVSGMAAVQPVYGQAMSSTTNMQDSNPSYGASPMQGQPPVGGQPPVPVRMQPQPPQPMQQGNIYPIEPSLDSTGSTPHFEVTPFDPDAPAPKPKIDIPTVDVSSLPPPPTHRDRGAVVHQEPAPSGKIQPNTTSSAASLPAKHSRTTTADNERNSGNKENDESTSKSSILGHYDVDVNIMPPPKPFRHGLDSVPSEHTTKNAPERAVPILPPRNNVEPPPPPSRGNFERTESVLSTNAANVQEDPISNFLPPPKPFRHTETKQNQNSKASPVEMKGEVLPGHPSEEDRNVEPSLVPQSKPQSQSQFRRAHMETQPIQNFQPPPKPFRRSQSSNSSDSSYTIDGPEANHGRGRGRIAKHHDGDEYNPKSENSTENGRLGDAPNSFIRKRAPTPPAPSRSEKLHEGTITSEVDSSKDANKYEKSIPPVTSSIQAQQSTKKAPPPVVKPKPRNFSLKANEYPKELTREATGQDEVLNSITNELSHIKLRKTNVNLEKLGGSKKVKDSSPVPSDLDEKYVSASGSITPPRPPPSRSSPKKVPPVVPKKNDNLKKKPPVVPKKKPLLKSLEPRPIEMERAYSGDISAADDNLNPFERYKRNVVPQEDDRLHKLK*", + "old_alignment": "MGFWENNKDSITSGLKSAGKYGYQGTKYVAKTGYKASKKHYNNSKARRERKSGKKNSSDEEYDSEDEMEYERKPTDIRSLKDPKSFPPPPLKPGQKTYTGQQQQQMPNGQASYAFQGAYQGQPGAGSTEQSQYAQPQYNQYPQQQLQQGVMPQQQQLQQGVVPQQPPIYGEQVPPYGSNSNATSYQSLPQQNQPQNAIPSQVSLNSASQQSTGFVSQNLQYGTQSSNPAPSPSFQNGLQCHQQPQYVSHGSTNLGQSQFPSGQQQQPTTQFGQQVLPSPAQPQQQQQGQPLPPPRGQVILPAPGEPLSNGFGQQQQQQQQQQQPLNQNNALLPQMNVEGVSGMAAVQPVYGQAMSSTTNMQDSNPSYGASPMQGQPPVGGQPPVPVRMQPQPPQPMQQGNIYPIEPSLDSTGSTPHFEVTPFDPDAPAPKPKIDIPTVDVSSLPPPPTHRDRGAVVHQEPAPSGKIQPNTTSSAASLPAKHSRTTTADNERNSGNKENDESTSKSSILGHYDVDANIMPPPKPFRHGLDSVPSEHTTKNAPERAVPILPPRNNVEPPPPPSRGNFERTESVLSTNAANVQEDPISNFLPPPKPFRHTETKQNQNSKASPVEMKGEVLPGHPSEEDRNVEPSLVPQSKPQSQSQFRRAHMETQPIQNFQPPPKPFRRSQSSNSSDSSYTIDGPEANHGRGRGRIAKHHDGDEYNPKSENSTENGRLGDAPNSFIRKRAPTPPAPSRSEKLHEGTITSEVDSSKDANKYEKSIPPVTSSIQAQQSTKKAPPPVVKPKPRNFSLKANEYPKELTREATGQDEVLNSITNELSHIKLRKTNVNLEKLGGSKKVKDSSPVPSDLDEKYVSASGSITPPRPPPSRSSPKKVPPVVPKKNDNLKKKPPVVPKKKPLLKSLEPRPIEMERAYSGDISAADDNLNPFERYKRNVVPQEDDRLHKLK*" + }, + { + "revision": "040709", + "new_alignment": "MGFWENNKDSITSGLKSAGKYGYQGTKYVAKTGYKASKKHYNNSKARRERKSGKKNSSDEEYDSEDEMEYERKPTDIRSLKDPKSFPPPPLKPGQKTYTGQQQQQMPNGQASYAFQGAYQGQPGAGSTEQSQYAQPQYNQYPQQQLQQGVMPQQQQLQQGVVPQQPPIYGEQVPPYGSNSNATSYQSLPQQNQPQNAIPSQVSLNSASQQSTGFVSQNLQYGTQSSNPAPSPSFQNGLQCHQQPQYVSHGSTNLGQSQFPSGQQQQPTTQFGQQVLPSPAQPQQQQQGQPLPPPRGQVILPAPGEPLSNGFGQQQQQQQQQQQPLNQNNALLPQMNVEGVSGMAAVQPVYGQAMSSTTNMQDSNPSYGASPMQGQPPVGGQPPVPVRMQPQPPQPMQQGNIYPIEPSLDSTGSTPHFEVTPFDPDAPAPKPKIDIPTVDVSSLPPPPTHRDRGAVVHQEPAPSGKIQPNTTSSAASLPAKHSRTTTADNERNSGNKENDESTSKSSILGHYDVDVNIMPPPKPFRHGLDSVPSEHTTKNAPERAVPILPPRNNVEPPPPPSRGNFERTESVLSTNAANVQEDPISNFLPPPKPFRHTETKQNQNSKASPVEMKGEVLPGHPSEEDRNVEPSLVPQSKPQSQSQFRRAHMETQPIQNFQPPPKPFRRSQSSNSSDSSYTIDGPEANHGRGRGRIAKHHDGDEYNPKSENSTENGRLGDAPNSFIRKRAPTPPAPSRSEKLHEGTITSEVDSSKDANKYEKSIPPVTSSIQAQQSTKKAPPPVVKPKPRNFSLKANEYPKELTREATGQDEVLNSITNELSHIKLRKTNVNLEKLGGSKKVKDSSPVPSDLDEKYVSASGSITPPRPPPSRSSPKKVPPVVPKKNDNLKKKPPVVPKKKPLLKSLEPRPIEMERAYSGDISAADDNLNPFERYKRNVVPQEDDRLHKLK*---------", + "old_alignment": "MGFWENNKDSITSGLKSAGKYGYQGTKYVAKTGYKASKKHYNNSKARRERKSGKKNSSDEEYDSEDEMEYERKPTDIRSLKDPKSFPPPPLKPGQKTYTGQQQQQMPNGQASYAFQGAYQGQPGAGSTEQSQYAQPQYNQYPQQQLQQGVMPQQQQLQQGVVPQQPPIYGEQVPPYGSNSNATSYQSLPQQNQPQNAIPSQVSLNSASQQSTGFVSQNLQYGTQSSNPAPSPSFQNGLQCHQQPQYVSHGSTNLGQSQFPSGQQQQPTTQFGQQVLPSPAQPQQQQQGQPLPPPRGQVILPAPGEPLSNGFGQQQQQQQQQQQPLNQNNALLPQMNVEGVSGMAAVQPVYGQAMSSTTNMQDSNPSYGASPMQGQPPVGGQPPVPVRMQPQPPQPMQQGNIYPIEPSLDSTGSTPHFEVTPFDPDAPAPKPKIDIPTVDVSSLPPPPTHRDRGAVVHQEPAPSGKIQPNTTSSAASLPAKHSRTTTADNERNSGNKENDESTSKSSILGHYDVDANIMPPPKPFRHGLDSVPSEHTTKNAPERAVPILPPRNNVEPPPPPSRGNFERTESVLSTNAANVQEDPISNFLPPPKPFRHTETKQNQNSKASPVEMKGEVLPGHPSEEDRNVEPSLVPQSKPQSQSQFRRAHMETQPIQNFQPPPKPFRRSQSSNSSDSSYTIDGPEANHGRGRGRIAKHHDGDEYNPKSENSTENGRLGDAPNSFIRKRAPTPPAPSRSEKLHEGTITSEVDSSKDANKYEKSIPPVTSSIQAQQSTKKAPPPVVKPKPRNFSLKANEYPKELTREATGQDEVLNSITNELSHIKLRKTNVNLEKLGGSKKVK------------------------------------------------------------------------------------------------------------TLALFPQI*" + } + ], + "YBR111W-A": [ + { + "revision": "040112", + "new_alignment": "MTMDTAQLKSQIQQYLVESGNYEL--------------------------ISNELKARLLQEGWVDKVKDLTKSEMNINESTNFTQILSTVEPKALEMVSDSTRETVLKQIREFLEEIVDTQ*---", + "old_alignment": "MTMDTAQLKSQIQQYLVESGNYELYDNIIGVVFFKKSTLLTIQITVTFIRISNELKARLLQEGWVDKVKDLTKSEMNINESTNFTQILSTVEPKAL---------------------------GM*" + } + ], + "YBR121C": [ + { + "revision": "110203", + "new_alignment": "MSVEDIKKARAAVPFNREQLESVLRGRFFYAPAFDLYGGVSGLYDYGPPGCAFQNNIIDAWRKHFILEEDMLEVDCTMLTPYEVLKTSGHVDKFSDWMCRDLKTGEIFRADHLVEEVLEARLKGDQEARGLVEDANAAAKDDAEKKKRKKKVKQIKAVKLDDDVVKEYEEILAKIDGYSGPELGELMEKYDIGNPVTGETLESPRAFNLMFETAIGPSGQLKGYLRPETAQGQFLNFNKLLEFNNSKTPFASASIGKSFRNEISPRAGLLRVREFLMAEIEHFVDPLDKSHPKFNEIKDIKLSFLPRDVQEAGSTEPIVKTVGEAVASRMVDNETLGYFIARIYQFLMKIGVDESKLRFRQHMANEMAHYAADCWDGELKTSYGWIECVGCADRSAYDLTVHSKKTKEKLVVRQKLDNPIEVTKWEIDLTKKLFGPKFRKDAPKVESHLLNMSQDDLASKAELLKANGKFTIKVDGVDGEVELDDKLVKIEQRTKVEHVREYVPSVIEPSFGIGRIIYSVFEHSFWNRPEDNARSVLSFPPLVAPTKVLLVPLSNHKDLVPVTTEVAKILRKSQIPFKIDDSGVSIGKRYARNDELGTPFGVTIDFESAKDHSVTLRERDSTKQVRGSVENVIKAIRDITYNGASWEEGTKDLTPFIAQAEAEAETD*", + "old_alignment": "MSVEDIKKARAAVPFNREQLESVLRGRFFYAPAFDLYGGVSGLYDYGPPGCAFQNNIIDAWRKHFILEEDMLEVDCTMLTPYEVLKTSGHVDKFSDWMCRDLKTGEIFRADHLVEEVLEARLKGDQEARGLVEDANAAAKDDAEKKKRKKKVKQIKAVKLDDDVVKEYEEILAKIDGYSGPELGELMEKYDIGNPVTGETLESPRAFNLMFETAIGPSGQLKGYLRPETAQGQFLNFNKLLEFNNSKTPFASASIGKSFRNEISPRAGLLRVREFLMAEIEHFVDPLDKSHPKFNEIKDIKLSFLPRDVQEAGSTEPIVKTVGEAVASRMVDNETLGYFIARIYQFLMKIGVDESKLRFRQHMANEMAHYAADCWDGELKTSYGWIECVGCADRSAYDLTVHSKKTKEKLVVRQKLDNPIEVTKWEIDLTKKLFGPKFRKDAPKVESHLLNMSQDDLASKAELLKANGKFTIKVDGVDGEVELDDKLVKIEQRTKVEHVREYVPSVIEPSFGIGRIIYSVFEHSFWNRPEDNARSVLSFPPLVAPTKVLLVPLSNHKDLVPVHHEVAKILRKSQIPFKIDDSGVSIGKRYARNDELGTPFGVTIDFESAKDHSVTLRERDSTKQVRGSVENVIKAIRDITYNGASWEEGTKDLTPFIAQAEAEAETD*" + } + ], + "YBR137W": [ + { + "revision": "110203", + "new_alignment": "MVVLDKKLLERLTSRKVPLEELEDMEKRCFLSTFTYQDAFDLGTYIRNAVKENFPEKPVAIDISLPNGHCLFRTVTYGGSALDNDFWIQRKKKTALRFGHSSFYMGCKKGDKTPEEKFFVDSKEYAFHGGAVLIQSERSDYPYACLTISGLKQEEDHLMAVSSLIAFANESLEEDLNLD*", + "old_alignment": "MVVLDKKLLERLTSRKVPLEELEDMEKRCFLSTFTYQDAFDLGTYIRNAVKENFPEKPVAIDISLPNGHCLFRTVTYGGSALDNDFWIQRKKKTALRFGHSSFYMGCKKSDKTPEEKFFVDSKEYAFHGGAVLIQSERSDYPYACLTISGLKQEEDHLMAVSSLIAFANESLEEDLNLD*" + } + ], + "YBR138C": [ + { + "revision": "110203", + "new_alignment": "MEKDQIQPRVLESVDTNSLSLLSSNTSSNMNSNTNNKLSIIASDISTGSVLSRPLTPPVVQDIENNSMLQWQFEKKEFIFDSNSTPSKQAKPLQRNSPYQGNSQSENQNQQLLNVRKRRSQLIGAKPKIPSKLYQSVSKLDLIDDKSFTSLPIAPPCNIETNEDDSGNNEYNNNKKRPRLNPVNELRVHNNKRNRYVSYGPSLDTKNYELTENTSQDIPPLVLVEDYIPYTQSKSTKKMVSISDLKSKLSKRRDNHIPLRVKNSYSEINKETNRNSFEPNSLTLIPHILRNTEENRDESNNPLDFIKEEIEISDISIPNSIENMVVNLVNIPSSNKSYDDLYLSELNVHSQLRKCVICEKALYEISSRLLNSGYYKEIVCEQCTVRYEEAAKIFENCEFESSMDESNLSSGTFSDLENSAEPFHLSTDVPKKINRHIEDNKIDLKKEISKKKDSFSKELIERLQLQLLENDKSIKHHFNKDAMGSKSMNWFLEARRKLKWKWRINGLLPHFLRNQNSDRLNFQP*", + "old_alignment": "MEKDQIQPRVLESVDTNSLSLLSSNTSSNMNSNTNNKLSIIASDISTGSVLSRPLTPPVVQDIENNSMLQWQFEKKEFIFDSNSTPSKQAKPLQRNSPYQGNSQSENQNQQLLNVRKRRSQCIGAKPKIPSKLYQSVSKLDLIDDKSFTSLPIAPPCNIETNEDDSGNNEYNNNKKRPRLNPVNELRVHNNKRNRYVSYGPSLDTKNYELTENTSQDIPPLVLVEDYIPYTQSKSTKKMVSISDLKSKLSKRRDNHIPLRVKNSYSEINKETNRNSFEPNSLTLIPHILRNTEENRDESNNPLDFIKEEIEISDISIPNSIENMVVNLVNIPSSNKSYDDLYLSELNVHSQLRKCVICEKALYEISSRLLNSGYYKEIVCEQCTVRYEEAAKIFENCEFESSMDESNLSSGTFSDLENSAEPFHLSTDVPKKINRHIEDNKIDLKKEISKKKDSFSKELIERLQLQLLENDKSIKHHFNKDAMGSKSMNWFLEARRKLKWKWRINGLLPHFLRNQNSDRLNFQP*" + } + ], + "YBR141C": [ + { + "revision": "110203", + "new_alignment": "MHSRKSKSITGKRKQVGSNVTRVIKPQKTRRIIRRFHHLINKRQSICKFLCLKENLDDSNEEKNDKIIRLSIKGNVRLGKYYEDGKSQSFNDAMESQLLRLHSLIKNESKSKDTSDLAVMYTLLGYIMNQINKLGGLETYQIASQNGQLKERGGDTSKLLEKWIRSSFENCPGAVALEIGSLSSGNRISRCALFRNVVRIDLEEHEGVIKQDFMERPLPRNENDKFDLISCSLVLNFVKNHRDRGAMCHRMVKFLKPQGYIFIVLPQACVTHSRYCDKTLLQNLLGSIGLIMLNSHQSNKLYYCLYQLQVVPPQPSSFSKRIKVNDGPGLNNFGITL*", + "old_alignment": "MHSRKSKSITGKRKQVGSNVTRVIKPQKTRRIIRRFHHLINKRQSICKFLCLKENLDDSNEEKNDKIIRLSIKGNVRLGKYYEDGKSQSFNDAMESQLLRLHSLIKNESKSKDTSDLAVMYTLLGYIMNQINKLGGLETYQIASQNGQLKERGGDTSKLLEKWIRSSFENCPGAVALEIGSLSSGNRISRCALFRNVVRIDLEEHEGVIKQDFMERPLPRNENDKFDLISCSLVLNFVKNHRDRGAMCHRMVKFLKPQGYIFIVLPQACVTHSRYCDKTLLQNLLGSIGLIMLNSHQSNKLYYCLYQLQVVSPQPSSFSKRIKVNDGPGLNNFGITL*" + } + ], + "YBR157C": [ + { + "revision": "040206", + "new_alignment": "MGKFEQKERERISTFSFPTTGSQSSTSIKSLGSPLYGRFSSLSSTESQFDSSKQPHEYEKSFYFEESQGEALFNKLKTYSFPGDKDGVKTRRNSSICPRKPNAVSPLRVESNELSSHSHSRSLSHELTKPSGRRKSYHRKSHAISFSRSCKPNFIDGYDSNSSIGVNSRKTSLASSFLDKEYHSSPDTSYTHQMSPKNTIMNTNEQLRRNASGRFGSLKEFAEKNQINIEGKIFAHKVETGDILQPLIDLDIDNK*------------------", + "old_alignment": "MGKFEQKERERISTFSFPTTGSQSSTSIKSLGSPLYGRFSSLSSTESQFDSSKQPHEYEKSFYFEESQGEALFNKLKTYSFPGDKDGVK-----------------------------------------------------------------------------------------------------------------------------------------------------------------------RGEIPPYVQESLMRYHL*" + } + ], + "YBR202W": [ + { + "revision": "110203", + "new_alignment": "MSAALPSIQLPVDYNNLFNEITDFLVTFKQDTLSSDATRNENEDENLDAENIEQHLLEKGPKYMAMLQKVANRELNSVIIDLDDILQYQNEKFLQGTQADDLVSAIQQNANHFTELFCRAIDNNMPLPTKEIDYKDDVLDVILNQRRLRNERMLSDRTNEIRSENLMDTTMDPPSSMNDALREVVEDETELFPPNLTRRYFLYFKPLSQNCARRYRKKAISSKPLSVRQIKGDFLGQLITVRGIITRVSDVKPAVEVIAYTCDQCGYEVFQEVNSRTFTPLSECTSEECSQNQTKGQLFMSTRASKFSAFQECKIQELSQQVPVGHIPRSLNIHVNGTLVRSLSPGDIVDVTGIFLPAPYTGFKALKAGLLTETYLEAQFVRQHKKKFASFSLTSDVEERVMELITSGDVYNRLAKSIAPEIYGNLDVKKALLLLLVGGVDKRVGDGMKIRGDINVCLMGDPGVAKSQLLKAICKISPRGVYTTGKGSSGVGLTAAVMKDPVTDEMILEGGALVLADNGICCIDEFDKMDESDRTAIHEVMEQQTISISKAGINTTLN--ARTSILAAANPLYGRYNPRLSPLDNINLPAALLSRFDILFLMLDIPSRDDDEKLAEHVTYVHMHNKQPDLDFTPVEPSKMREYIAYAKTKRPVMSEAVNDYVVQAYIRLRQDSKREMDSKFSFGQATPRTLLGIIRLSQALAKLRLADMVDIDDVEEALRLVRVSKESLYQETNKSKEDESPTTKIFTIIKKMLQETGKNTLSYENIVKTVRLRGFTMLQLSNCIQEYSYLNVWHLINEGNTLKFVDDGTMDTDQEDSLVSTPKLAPQTTASANVSAQDSDIDLQDA*", + "old_alignment": "MSAALPSIQLPVDYNNLFNEITDFLVTFKQDTLSSDATRNENEDENLDAENIEQHLLEKGPKYMAMLQKVANRELNSVIIDLDDILQYQNEKFLQGTQADDLVSAIQQNANHFTELFCRAIDNNMPLPTKEIDYKDDVLDVILNQRRLRNERMLSDRTNEIRSENLMDTTMDPPSSMNDALREVVEDETELFPPNLTRRYFLYFKPLSQNCARRYRKKAISSKPLSVRQIKGDFLGQLITVRGIITRVSDVKPAVEVIAYTCDQCGYEVFQEVNSRTFTPLSECTSEECSQNQTKGQLFMSTRASKFSAFQECKIQELSQQVPVGHIPRSLNIHVNGTLVRSLSPGDIVDVTGIFLPAPYTGFKALKAGLLTETYLEAQFVRQHKKKFASFSLTSDVEERVMELITSGDVYNRLAKSIAPEIYGNLDVKKALLLLLVGGVDKRVGDGMKIRGDINVCLMGDPGVAKSQLLKAICKISPRGVYTTGKGSSGVGLTAAVMKDPVTDEMILEGGALVLADNGICCIDEFDKMDESDRTAIHEVMEQQTISISKAVINT--NPGARTSILAAANPLYGRINPRLSPLDNINLPAALLSRFDILFLMLDIPSRDDDEKLAEHVTYVHMHNKQPDLDFTPVEPSKMREYIAYAKTKRPVMSEAVNDYVVQAYIRLRQDSKREMDSKFSFGQATPRTLLGIIRLSQALAKLRLADMVDIDDVEEALRLVRVSKESLYQETNKSKEDESPTTKIFTIIKKMLQETGKNTLSYENIVKTVRLRGFTMLQLSNCIQEYSYLNVWHLINEGNTLKFVDDGTMDTDQEDSLVSTPKLAPQTTASANVSAQDSDIDLQDA*" + } + ], + "YBR203W": [ + { + "revision": "110203", + "new_alignment": "MSSASRLQNVNIVSNNYSRYGTSVYDKLYHSNGSGSNNAGKNSTTVGKLSSISQKSRSKQRHGSNCSRSMSQSPLSTFKSPLSNQNQSSAPDDLASIGQRRSDDVTSLDNETIITMNSRKSRIKKKYKSLISTSSKKFMNKLYDHGASSDSFSIFSLKTSHSGKHENSRFEKLRKRKYHAWGKFADINDLPVEIIAKILSEFELGRDQKTLVRCLYVSKKFYKATKIVLYRLPYFTSTYRVAQFVTSLRLHPDNGAYVKVLDLSHLKPGIIGQDSKDSQGLDDDGHSRRHRRRRRRSTNTSLNLPPATPTSTISNEDDANSGLIKDDASNGSEVEDLALAGWRDWRYRNEPLYSSPLLNSFKLKKVVSRSSSITSTSSGNSTGVHSTRRQRSNSSVASITTSIMSSIYNTSHVSLSSTTSNTSNGNISSGSNLSRVSTAGSLKKASAKSTRSSPQKAKPISDITSSSWFRMRLSSRNRKARTANTINLKNSKDKSDDDFKVLKHDSGHPSNYRSSTLKFSIEQPFSTHHPYANKFLLKYAPYKDLPLGYILHMLNLCPNLVELNLSNLVICTDFKLINQRSERRRMTSSLLPAVQESSVSAGPEKDLEIVYMTDSGKGYEYYEGLSKKHSRSSSLGTNPSSWIGGQANWTDYPPPIDAQTKTREEHRRNNTLNNKNVVLKKLNPFEIFEMICNRNEEKGGYCSLTKVKMNDIVWCRQYMVKYFVMRTFRQH-----LDYKSMENNSYERHLFSFRDSGLDRNFSWACNAKLHEFVALMVMDHLSNLDDLGLEELFNIKSEKLYIKNYCCRDPDILEISNLFDIRYGAGSEADATSDSNLEAESLQFRLTILKTEKPTSFWLTKVSKDYVSLVVKLCVDDDIDMDKMKVGKPTLRIDSITHNLISRLKELRRVDLRRNVGENNYYAESII*", + "old_alignment": "MSSASRLQNVNIVSNNYSRYGTSVYDKLYHSNGSGSNNAGKNSTTVGKLSSISQKSRSKQRHGSNCSRSMSQSPLSTFKSPLSNQNQSSAPDDLASIGQRRSDDVTSLDNETIITMNSRKSRIKKKYKSLISTSSKKFMNKLYDHGASSDSFSIFSLKTSHSGKHENSRFEKLRKRKYHAWGKFADINDLPVEIIAKILSEFELGRDQKTLVRCLYVSKKFYKATKIVLYRLPYFTSTYRVAQFVTSLRLHPDNGAYVKVLDLSHLKPGIIGQDSKDSQGLDDDGHSRRHRRRRRRSTNTSLNLPPATPTSTISNEDDANSGLIKDDASNGSEVEDLALAGWRDWRYRNEPLYSSPLLNSFKLKKVVSRSSSITSTSSGNSTGVHSTRRQRSNSSVASITTSIMSSIYNTSHVSLSSTTSNTSNGNISSGSNLSRVSTAGSLKKASAKSTRSSPQKAKPISDITSSSWFRMRLSSRNRKARTANTINLKNSKDKSDDDFKVLKHDSGHPSNYRSSTLKFSIEQPFSTHHPYANKFLLKYAPYKDLPLGYILHMLNLCPNLVELNLSNLVICTDFKLINQRSERRRMTSSLLPAVQESSVSAGPEKDLEIVYMTDSGKGYEYYEGLSKKHSRSSSLGTNPSSWIGGQANWTDYPPPIDAQTKTREEHRRNNTLNNKNVVLKKLNPFEIFEMICNRNEEKGGYCSLTKVKMNDIVWCRQYMVKYFVMR-----SWRNDLDYKSMENNSYERHLFSFRDSGLDRNFSWACNAKLHEFVALMVMDHLSNLDDLGLEELFNIKSEKLYIKNYCCRDPDILEISNLFDIRYGAGSEADATSDSNLEAESLQFRLTILKTEKPTSFWLTKVSKDYVSLVVKLCVDDDIDMDKMKVGKPTLRIDSITHNLISRLKELRRVDLRRNVGENSYYAGSII*" + } + ], + "YBR204C": [ + { + "revision": "110203", + "new_alignment": "MNMAERAEATKSWSCEPLSGKTLEEIVQNAENAADLVAYIRKPEVDLDFRLKFIAEHEEFFNVQLSDRNSRIRTCHNLSDKGIRGDTVFVFVPGLAGNLEQFEPLLELVDSDQKAFLTLDLPGFGHSSEWSDYPMLKVVELIFVLVCDVLRKWSTAVPNNDNVNPFNGHKIVLVGHSMGCFLACHLYEQHMADTKAVQTLVLLTPPKAHIEQLSKDKHIIQWALYGVFKLPWLFDVYRNKFDQVKGLQSSGIKQYFYQQGDDVKLKYRKFWQFKNNISNKSRTIIGYLLGWETVDWVKFNGVLTQTDMKQKIIIFGAEKDPIAPIENLEFYKQTINKECLRKVIILPDCSHNLCFDRPELVCENFQREVIDNSKL*", + "old_alignment": "MNMAERAEATKSWSCEPLSGKTLEEIVQNAENAADLVAYIRKPEVDLDFRLKFIAEHEEFFNEQLSDRNSRIRTCHNLSDKGIRGDTVFVFVPGLAGNLEQFEPLLELVDSDQKAFLTLDLPGFGHSSEWSDYPMLKVVELIFVLVCDVLRKWSTAVPNNDNVNPFNGHKIVLVGHSMGCFLACHLYEQHMADTKAVQTLVLLTPPKAHIEQLSKDKHIIQWALYGVFKLPWLFDVYRNKFDQVKGLQSSGIKQYFYQQGDDVKLKYRKFWQFKNNISNKSRTIIGYLLGWETVDWVKFNGVLTQTDMKQKIIIFGAEKDPIAPIENLEFYKQTINKECLRKVIILPDCSHNLCFDRPELVCENFQREVIDNSKL*" + } + ], + "YBR207W": [ + { + "revision": "110203", + "new_alignment": "MAFEDYFSFQIFFIFLRESLEIVVIVSILLTIVKQGLSVEDDSPFEGSSSSAGLPSPNTNTNADSTTAFLQAGPSDGNAIGTSATAANNKSRPLNVEEEEEIYEYSNELRDQDRESDEHTADNVKLYQKLKIQILAGGAFGLLLCMLIGGAFVSIFYHIGTDLWTLSEHYYEGVLSLVASVIISVMGLFFLRMGKLREKFRVKLASIIYSKDNNLLGNKTQKGVKFSEKYSFFILPFITTLREGLEAVVFIGGIGIDQPLSSIPLSMVLATAISTVFGIFFFRYSSSLSLKICLVVATCFLYLIAAGLFSKGVWQLELQDYVNKCNGQDMSEVGNGPGSYDISRSVWHVNCCNGEKDGGWMIFTAIFGWTNSATVGSVISYNAYWLVLICALKLLMIEEKYGYIPYLPISWQKKRIMKRLSIAKASLDLKHHTSELNSSTSEPDSQRRSKDSSVPLIIDSSGSAN*", + "old_alignment": "MAFEDYFSFQIFFIFLRKSLEIVVIVSILLTIVKQDLSVEDDSPFEGSSSSAGLPSPNTNTNADSTTAFLQAGPSDGNAIGTSATAANNKSRPLNVEEEEEIYEYSNELRDQDRESDEHTADNVKLYQKLKIQILAGGAFGLLLCMLIGGAFVSIFYHIGTDLWTLSEHYYEGVLSLVASVIISVMGLFFLRMGKLREKFRVKLASIIYSKDNNLLGNKTQKGVKFSQKYSFFILPFITTLREGLEAVYSIGGIGIDQPLSSIPLSMVLATAISTVFGIFFFRYSSSLSLKICLVVATCFLYLIAAGLFSKGVWQLELQDYVNKCNGQDMSEVENGPGSYDISRSVWHVNCCNGEKDGGWMIFTAIFGWTNSATVGSVISYNAYWLVLKYALKLLMIEGKCGYIPYLPISWQKKRIMKRLSIAKASLDLKHHTSELNSSTSEPDSQRRSKDSSVPLIIDSSGSAN*" + } + ], + "YBR215W": [ + { + "revision": "070713", + "new_alignment": "MDQK--AIVLDNSKSGSKQTKSSGKMQTQTDTNAEVLNTDNSIKKETGSDSEDLFNKFSNKKTNRKIPNIAEELAKNRNYVKGASPSPIIISGSSSTSPSGPSSSSTNPMGIPTNRFNKNTVELYQHSPSPVMTTNKTDTEEKRQNNRNMDNKNTPERGSSSFAAKQLKISSLLTISSNEDSKTLHINDTNGNKNSNAASNNIPSAYAELHTEGNSIESLIKPPSSPRNKSLTPKVILPTQNMDGTIAKDPHLGDNTPGILIAKTSSPVNLDVESTAQSLGKFNKSTNSLKAALTKAPAEKVSLKRSISSVTNSDSNISSSKKPTSEKAKKSSSASAILPKPTTTKTSKKAASNSSDSTRKKNASNKTTSAIKKESNAGSKLNTVKKENSSLSSIKATEKEKDKGGNSTEAKNSTSNVRKEPTAKSPKRLVAAPTVSPPKILQTAETKAKEPSILIDVPLYQADTNDYLDENGQVIFNLSTLIKEKYHPKSKELAQLKDSKRNLLMQLSDHSNGSLEKEKDEEGDVIELDDDEDMEEDEGEIDTETNTVTTTISPKKKSHPMKGKNLIGKYDVEDPFIDDSELLWEEQRAATKDGFFVYFGPLIEKGHYASLERANGTMKRGGVKNK*", + "old_alignment": "----MIAIVLDNSKSGSKQTKSSGKMQTQTDTNAEVLNTDNSIKKETGSDSEDLFNKFSNKKTNRKIPNIAEELAKNRNYVKGASPSPIIISGSSSTSPSGPSSSSTNPMGIPTNRFNKNTVELYQHSPSPVMTTNKTDTEEKRQNNRNMDNKNTPERGSSSFAAKQLKISSLLTISSNEDSKTLHINDTNGNKNSNAASNNIPSAYAELHTEGNSIESLIKPPSSPRNKSLTPKVILPTQNMDGTIAKDPHLGDNTPGILIAKTSSPVNLDVESTAQSLGKFNKSTNSLKAALTKAPAEKVSLKRSISSVTNSDSNISSSKKPTSEKAKKSSSASAILPKPTTTKTSKKAASNSSDSTRKKNASNKTTSAIKKESNAGSKLNTVKKENSSLSSIKATEKEKDKGGNSTEAKNSTSNVRKEPTAKSPKRLVAAPTVSPPKILQTAETKAKEPSILIDVPLYQADTNDYLDENGQVIFNLSTLIKEKYHPKSKELAQLKDSKRNLLMQLSDHSNGSLEKEKDEEGDVIELDDDEDMEEDEGEIDTETNTVTTTISPKKKSHPMKGKNLIGKYDVEDPFIDDSELLWEEQRAATKDGFFVYFGPLIEKGHYASLERANGTMKRGGVKNK*" + } + ], + "YBR255C-A": [ + { + "revision": "040112", + "new_alignment": "MGGNVLPIHYDPKTVKQLTKE-ITVASCIGAAQGALFSIASALLLRRFSSVYRNVRTQVRVFYHCSWISMGAVFRADKQLLKFQTNYYREEQKRREKIMDEAAERGLFLEDESLNSSRSTT*", + "old_alignment": "MGGNVLPIHYDPKTVKQLTKEEITVASCIGAAQGALFSIASALLLRRFSSVYRNVRTQVRVFYHCSWISMGAVFRADKQLLKFQTNYYREEQKRREKIMDEAAERGLFLEDESLNSSRSTT*" + } + ], + "YBR265W": [ + { + "revision": "110203", + "new_alignment": "MKFTLEDQVVLITGGSQGLGKEFAKKYYNEAENTKIIIVSRSEARLLDTCNEIRIEAHLRRETTDEGQVQHKLAAPLDLEQRLFYYPCDLSCYESVECLFNALRDLDLLPTQTLCCAGGAVPKLFRGLSGHELNLGMDINYKTTLNVAHQIALAEQTKEHHLIIFSSATALYPFVGYSQYAPAKAAIKSLVAILRQELTNFRISCVYPGNFESEGFTVEQLTKPEITKLIEGPSDAIPCKQACDIIAKSLARGDDDVFTDFVGWMIMGMDLGLTAKKSRFVPLQWIFGVLSNILVVPFYMVGCSWYIRKWFRENDGKKAN*", + "old_alignment": "MKFTLEDQVVLITGGSQGLGKEFAKKYYNEAENTKIIIVSRSEARLLDTCNEIRIEAHLRRETTDEGQVQHKLAAPLDLEQRLFYYPCDLSCYESVECLFNALRDLDLLPTQTLCCAGGAVPKLFRGLSGHELNLGMDINYKTTLNVAHQIALAEQTKEHHLIIFSSATALYPFVGYSQYAPAKAAIKSLVAILRQELTNFRISCVYPGNFESEGFTVEQLTKPEITKLIEGPSDAIPCKQACDIIAKSLARGDEDVFTDFVGWMIMGMDLGLTAKKSRFVPLQWIFGVLSNILVVPFYMVGCSWYIRKWFRENDGKKAN*" + } + ], + "YBR267W": [ + { + "revision": "110203", + "new_alignment": "MSSSGVYTCNSCVLTFDSSDEQRAHMKSDWHRYNLKRRVAQLPPISFETFDSKVSAAAASTSKSAEKEKPVTKKELKRREKQALLEKKKKLLEIARANMLENMQKSQEGNTPDLSKLSLQENEENKEKEEPKKEEPEQLTEEEMAERVMQEKLRNRVDIPLEQCLFCEHNKHFKDVEENLEHMFRTHGFYIPEQKYLVDKIGLVKYMSEKIGLGNICIVCNYQGRTLTAVRQHMLAKRHCKIPYESEDERLEISEFYDFTSSYANFNSNTTPDNEDDWEDVGSDEAGSDDEDLPQEYLYNDGIELHLPTGIKVGHRSLQRYYKQDLKPEVILTEGQGTLVAAETRSFLPAFDKKGVQTQQRVWQTERFDKKRLDKRSAKFVNNQPHYRDQLLQ*", + "old_alignment": "MSSSGVYTCNSCVLTFDSSDEQRAHMKSDWHRYNLKRRVAQLPPISFETFDSKVSAAAASTSKSAEKEKPVTKKELKRREKQALLEKKKKLLEIARANMLENMQKSQEGNTPDLSKLSLQENEENKEKEEPKKEEPEQLTEEEMAERVMQENVRNRVDIPLEQCLFCEHNKHFKDVEENLEHMFRTHGFYIPEQKYLVDKIGLVKYMSEKIGLGNICIVCNYQGRTLTAVRQHMLAKRHCKIPYESEDERLEISEFYDFTSSYANFNSNTTPDNEDDWEDVGSDEAGSDDEDLPQEYLYNDGIELHLPTGIKVGHRSLQRYYKQDLKPEVILTEGQGTLVAAETRSFLPAFDKKGVQTQQRVWQTERFDKKRLDKRSAKFVNNQPHYRDQLLQ*" + } + ], + "YBR266C": [ + { + "revision": "110203", + "new_alignment": "MCSRFSSTSLKCLLCSQNRHCSSGISTLLRSFSCITLSAISSSVNCSGSSFLGSSFSLFSSFSCKESLLRSGVFPSWLFCMFSSILALAISNSFFFFSSNACFSLLFNSFLVTGFSFSADLLVLAAAADTLESNVSNDIGGNCATRLFKL*", + "old_alignment": "MCSRFSSTSLKCLLCSQNRHCSSGISTLLRTFSCITLSAISSSVNCSGSSFLGSSFSLFSSFSCKESLLRSGVFPSWLFCMFSSILALAISNSFFFFSSNACFSLLFNSFLVTGFSFSADLLVLAAAADTLESNVSNDIGGNCATRLFKL*" + } + ], + "YBR269C": [ + { + "revision": "040112", + "new_alignment": "MLCAIKSTGYRYPRTGALNLLRGRPFNMATRKITTERIPGPPKLPREEQEEFERLQRIATSQEAIDQYNAQATGDRTKESLNSPLLTKNDIGSFSPEFSKTIPEFEGDVNPKTGEVGGPKQDPLRHGDYSFNGRVTDF*------------", + "old_alignment": "MLCAIKSTGYRYPRTGALNLLRGRPFNMATRKITTERIPGPPKLPREEQEEFERLQRIATSQEAIDQYNAQATGDRTKESLNSPLLTKNDIGSFSPEFSKTIPEFEGDVNPKTGEVGGP--------------------SRTVETRRLFV*" + } + ], + "YBR270C": [ + { + "revision": "110203", + "new_alignment": "MATDLNRKRSATSGSLSVTNPNIKATNRKPARVYSVSSDIVPQALTHPDEDVHLKTSKSPHDAAPRWSQVGFQSIFHDGSNARRSTDSIEEEYSQGTENNDGHSEIGSSSSNRMEGNTTSNDSLFSSNSRGNKRRLSIFTNSKDNMRNRSRSGSKNYGTVITGTSSNNISRSGSKLFHTKSNMSVNSLQSSLSTGHSHSNKGSNVFSKMAKKLLPYKPHNSIGKDDVEPVVPSPFSKFLHSSYGKHRSPVQFIHTSTGGLIDSGKSVYSFNPSINNNPNDTALSLIQDDAFDATNVSLLHDLLKNLPSLIANYKSFTVQELFVLEGNIWGIYCSIVVELFKNKRVWQLPAKIEDIDRLLEFYITLKTQTKAAVTHSRFLAEIEEFITTSLYILENQIVFNYANEDTVNTALKRVGIIWKVFYQQVYYDMMAVLLPFEKSFQKNSNYWLDGYLSEPSRYAPSIDVLLLKCFRDSIILPYYESFLHTNDGASKSFQRYIFSEEEQNGVTEEDKLTLLQCFGILNTIKGNSRNQRIIGELLEGIRMSI*", + "old_alignment": "MATDLNRKRSATSGSLSVTNPNIKATNRKPARVYSVSSDIVPQALTHPDEDVHLKTSKSPHDAAPRWSQVGFQSIFHDGSNARRSTDSIEEEYSQGTENNDGHSEIGSSSSNRMEGNTTSNDSLFSSNSRGNKRRLSIFTNSKDNMRNRSRRASKNYGTVITGTSSNNISRSGSKLFHTKSNMSVNSLQSSLSTGHSHSNKGSNVFSKMAKKLLPYKPHNSIGKDDVEPVVPSPFSKFLHSSYGKHRSPVQFIHTSTGGLIDSGKSVYSFNPSINNNPNDTALSLIQDDAFDATNVSLLHDLLKNLPSLIANYKSFTVQELFVLEGNIWGIYCSIVVELFKNKRVWQLPAKIEDIDRLLEFYITLKTQTKAAVTHSRFLAEIEEFITTSLYILENQIVFNYANEDTVNTALKRVGIIWKVFYQQVYYDMMAVLLPFEKSFQKNSNYWLDGYLSEPSRYAPSIDVLLLKCFRDSIILPYYESFLHTNDGASKSFQRYIFSEEEQNGVTEEDKLTLLQCFGILNTIKGNSRNQRIIGELLEGIRMSI*" + } + ], + "YBR275C": [ + { + "revision": "110203", + "new_alignment": "MSKDFSDKKKHTIDRIDQHILRRSQHDNYSNGSSPWMKTNLPPPSPQAHMHIQSDLSPTPKRRKLASSSDCENKQFDLSAINKNLYPEDTGSRLMQSLPELSASNSDNVSPVTKSVAFSDRIESSPIYRIPGSSPKPSPSSKPGKSILRNRLPSVRTVSDLSYNKLQYTQHKLHNGNIFTSPYKETRVNPRALEYWVSGEIHGLVDNESVSEFKEIIEGGLGILRQESEDYVARRFEVYATFNNIIPILTTKNVNEVDQKFNILIVNIESIIEICIPHLQIAQDTLLSSSEKKNPFVIRLYVQIVRFFSAIMSNFKIVKWLTKRPDLVNKLKVIYRWTTGALRNENSNKIIITAQVSFLRDEKFGTFFLSNEEIKPIISTFTEIMEINSHNLIYEKLLLIRGFLSKYPKLMIETVTSWLPGEVLPRIIIGDEIYSMKILITSIVVLLELLKKCLDFVDEHERIYQCIMLSPVCETIPEKFLSKLPLNSYDSANLDKVTIGHLLTQQIKNYIVVKNDNKIAMDLWLSMTGLLYDSGKRVYDLTSESNKVWFDLNNLCFINNHPKTRLMSIKVWRIITYCICTKISQKNQEGNKSLLSLLRTPFQMTLPYVNDPSAREGIIYHLLGVVYTAFTSNKNLSTDMFELFWDHLITPIYEDYVFKYDSIHLQNVLFTVLHLLIGGKNADVALERKYKKHIHPMSVIASEGVKLKDISSLPPQIIKREYDKIMKVVFQAVEVAISNVNLAHDLILTSLKHLPEDRKDQTHLESFSSLILKVTQNNKDTPIFRDFFGAVTSSFVYTFLDLFLRKNDSSLVNFNIQISKVGISQGNMTLDLLKDVIRKARNETSEFLIIEKFLELDDKKTEVYAQNWVGSTLLPPNISFREFQSLANIVNKVPNENSIENFLDLCLKLSFPVNLFTLLHVSMWSNNNFIYFIQSYVSKNENKLNVDLITLLKTSLPGNPELFSGLLPFLRRNKFMDILEYCIHSNPNLLNSIPDLNSDLLLKLLPRSRASYFAANIKLFKCSEQLTLVRWLLKGQQLEQLNQNFSEIENVLQNASDSELEKSEIIRELLHLAMANPIEPLFSGLLNFCIKNNMADHLDEFCGNMTSEVLFKISPELLLKLLTYKEKPNGKLLAAVIEKIENGDDDYILELLEKIIIQKEIQILEKLKEPLLVFFLNPVSSNMQKHKKSTNMLRELVLLYLTKPLSRSAAKKFFSMLISILPPNPNYQTIDMVNLLIDLIKSHNRKFKDKRTYNATLKTIGKWIQESGVVHQGDSSKEIEAIPDTKSMYIPCEGSENKLSNLQRKVDSQDIQVPATQGMKEPPSSIQISSQISAKDSDSISLKNTAIMNSSQQESHANRSRSIDDETLEEVDNESIREIDQQMKSTQLDKNVANHSNICSTKSDEVDVTELHESIDTQSSEVNAYQPIEVLTSELKAVTNRSIKTNPDHNVVNSDNPLKRPSKETPTSENKRSKGHETMVDVLVSEEQAVSPSSDVICTNIKSIANEESSLALRNSIKVETNCNENSLNVTLDLDQQTITKEDGKGQVEHVQRQENQESMNKINSKSFTQDNIAQYKSVKKARPNNEGENNDYACNVEQASPVRNEVPGDGIQIPSGTILLNSSKQTEKSKVDDLRSDEDEHGTVAQEKHQVGAINSRNKNNDRMDSTPIQGTEEESREVVMTEEGINVRLEDSGTCELNKNLKGPLKGDKDANINDDFVPVEENVRDEGFLKSMEHAVSKETGLEEQPEVADISVLPEIRIPIFNSLKMQGSKSQIKEKLKKRLQRNELMPPDSPPRMTENTNINAQNGLDTVPKTIGGKEKHHEIQLGQAHTEADGEPLLGGDGNEDATSREATPSLKVHFFSKKSRRLVARLRGFTPGDLNGISVEERRNLRIELLDFMMRLEYYSNRDNDMN*", + "old_alignment": "MSKDFSDKKKHTIDRIDQHILRRSQHDNYSNGSSPWMKTNLPPPSPQAHMHIQSDLSPTPKRRKLASSSDCENKQFDLSAINKNLYPEDTGSRLMQSLPELSASNSDNVSPVTKSVAFSDRIESSPIYRIPGSSPKPSPSSKPGKSILRNRLPSVRTVSDLSYNKLQYTQHKLHNGNIFTSPYKETRVNPRALEYWVSGEIHGLVDNESVSEFKEIIEGGLGILRQESEDYVARRFEVYATFNNIIPILTTKNVNEVDQKFNILIVNIESIIEICIPHLQIAQDTLLSSSEKKNPFVIRLYVQIVRFFSAIMSNFKIVKWLTKRPDLVNKLKVIYRWTTGALRNENSNKIIITAQVSFLRDEKFGTFFLSNEEIKPIISTFTEIMEINSHNLIYEKLLLIRGFLSKYPKLMIETVTSWLPGEVLPRIIIGDEIYSMKILITSIVVLLELLKKCLDFVDEHERIYQCIMLSPVCETIPEKFLSKLPLNSYDSANLDKVTIGHLLTQQIKNYIVVKNDNKIAMDLWLSMTGLLYDSGKRVYDLTSESNKVWFDLNNLCFINNHPKTRLMSIKVWRIITYCICTKISQKNQEGNKSLLSLLRTPFQMTLPYVNDPSAREGIIYHLLGVVYTAFTSNKNLSTDMFELFWDHLITPIYEDYVFKYDSIHLQNVLFTVLHLLIGGKNADVALERKYKKHIHPMSVIASEGVKLKDISSLPPQIIKREYDKIMKVVFQTVEVAISNVNLAHDLILTSLKHLPEDRKDQTHLESFSSLILKVTQNNKDTPIFRDFFGAVTSSFVYTFLDLFLRKNDSSLVNFNIQISKVGISQGNMTLDLLKDVIRKARNETSEFLIIEKFLELDDKKTEVYAQNWVGSTLLPPNISFREFQSLANIVNKVPNENSIENFLDLCLKLSFPVNLFTLLHVSMWSNNNFIYFIQSYVSKNENKLNVDLITLLKTSLPGNPELFSGLLPFLRRNKFMDILEYCIHSNPNLLNSIPDLNSDLLLKLLPRSRASYFAANIKLFKCSEQLTLVRWLLKGQQLEQLNQNFSEIENVLQNASDSELEKSEIIRELLHLAMANPIEPLFSGLLNFCIKNNMADHLDEFCGNMTSEVLFKISPELLLKLLTYKEKPNGKLLAAVIEKIENGDDDYILELLEKIIIQKEIQILEKLKEPLLVFFLNPVSSNMQKHKKSTNMLRELVLLYLTKPLSRSAAKKFFSMLISILPPNPNYQTIDMVNLLIDLIKSHNRKFKDKRTYNATLKTIGKWIQESGVVHQGDSSKEIEAIPDTKSMYIPCEGSENKLSNLQRKVDSQDIQVPATQGMKEPPSSIQISSQISAKDSDSISLKNTAIMNSSQQESHANRSRSIDDETLEEVDNESIREIDQQMKSTQLDKNVANHSNICSTKSDEVDVTELHESIDTQSSEVNAYQPIEVLTSELKAVTNRSIKTNPDHNVVNSDNPLKRPSKETPTSENKRSKGHETMVDVLVSEEQAVSPSSDVICTNIKSIANEESSLALRNSIKVETNCNENSLNVTLDLDQQTITKEDGKGQVEHVQRQENQESMNKINSKSFTQDNIAQYKSVKKARPNNEGENNDYACNVEQASPVRNEVPGDGIQIPSGTILLNSSKQTEKSKVDDLRSDEDEHGTVAQEKHQVGAINSRNKNNDRMDSTPIQGTEEESREVVMTEEGINVRLEDSGTCELNKNLKGPLKGDKDANINDDFVPVEENVRDEGFLKSMEHAVSKETGLEEQPEVADISVLPEIRIPIFNSLKMQGSKSQIKEKLKKRLQRNELMPPDSPPRMTENTNINAQNGLDTVPKTIGGKEKHHEIQLGQAHTEADGEPLLGGDGNEDATSREATPSLKVHFFSKKSRRLVARLRGFTPGDLNGISVEERRNLRIELLDFMMRLEYYSNRDNDMN*" + } + ], + "YBR285W": [ + { + "revision": "110203", + "new_alignment": "MTIFSRFSYFDSLFSFKKQEPSPIEIIYCNENNGFINIKSLESPTDDSMEADISDREMATILTRNRNNLGKVAIDKKGVNNHCIDLNELKKGLVANEHKLDNDNSTRHQNTYSPEDSVEFDRFDDKQSRILKCSTRRSYLRYKK*", + "old_alignment": "MTIFSRFSYFDSLFSFKKQEPSPIEIIYCNENNGFINIKSLESPTDDSMEADISHREMATILTRNRNNLGKVAIDKKGVNNHCIDLNELKKGLVANEHKLDNDNSTRHQNTYSPEDSVEFDRFDDKQSRILKCSTRRSYLRYKK*" + } + ], + "YBR286W": [ + { + "revision": "051111", + "new_alignment": "--------------------------MHFSLKQLAVAAFYATNLGSAYVIPQFFQEAFQQEEPIENYLPQLNDDDSSAVAANIPKPHIPYFMKPHVESEKLQDKIKVDDLNATAWDLYRLANYSTPDYGHPTRVIGSKGHNKTMEYILNVFDDMQDYYDVSLQEFEALSGKIISFNLSDAETGKSFANTTAFALSPPVDGFVGKLVEIPNLGCEEKDYASVVPPRHNEKQIALIERGKCPFGDKSNLAGKFGFTAVVIYDNEPKSKEGLHGTLGEPTKHTVATVGVPYKVGKKLIANIALNIDYSLYFAMDSYVEFIKTQNIIADTKHGDPDNIVALGAHSDSVEEGPGINDDGSGTISLLNVAKQLTHFKINNKVRFAWWAAEEEGLLGSNFYAYNLTKEENSKIRVFMDYDMMASPNYEYEIYDANNKENPKGSEELKNLYVDYYKAHHLNYTLVPFDGRSDYVGFINNGIPAGGIATGAEKNNVNNGKVLDRCYHQLCDDVSNLSWDAFITNTKLIAHSVATYADSFEGFPKRETQKHKEVDILNAQQPQFKYRADFLII*", + "old_alignment": "MGTKPCSAFQQLVEEAKKKKKTETPTMHFSLKQLAVAAFYATNLGSAYVIPQFFQEAFQQEEPIENYLPQLNDDDSSAVAANIPKPHIPYFMKPHVESEKLQDKIKVDDLNATAWDLYRLANYSTPDYGHPTRVIGSKGHNKTMEYILNVFDDMQDYYDVSLQEFEALSGKIISFNLSDAETGKSFANTTAFALSPPVDGFVGKLVEIPNLGCEEKDYASVVPPRHNEKQIALIERGKCPFGDKSNLAGKFGFTAVVIYDNEPKSKEGLHGTLGEPTKHTVATVGVPYKVGKKLIANIALNIDYSLYFAMDSYVEFIKTQNIIADTKHGDPDNIVALGAHSDSVEEGPGINDDGSGTISLLNVAKQLTHFKINNKVRFAWWAAEEEGLLGSNFYAYNLTKEENSKIRVFMDYDMMASPNYEYEIYDANNKENPKGSEELKNLYVDYYKAHHLNYTLVPFDGRSDYVGFINNGIPAGGIATGAEKNNVNNGKVLDRCYHQLCDDVSNLSWDAFITNTKLIAHSVATYADSFEGFPKRETQKHKEVDILNAQQPQFKYRADFLII*" + } + ], + "YBR288C": [ + { + "revision": "110203", + "new_alignment": "MYLSFYITDTKNKLIFQYLLGATAPSFKHLWTRVQSTCPQLLEDSSSDDYLDHSMVGRDLEVYKYFSVINKLNYWCLASTSKSKGPLDCFTFLETIDRILLEYFDKDKLSIKKIVNNYDRISLIFNCCVEAGEPNVSDMLYVNKIKEAVPERSDLSKFISSTAHNLQQAVQLPQQRQQQLQQNQISRGSNSLIENEEIVPWRTSRASKHENNELYVDLLETFHVVFEKKKSHLRLLTGSIHGIVDVRSYLNDNPLVAVKLNTMGNDIGIPSLHDCVEINDGVFSPSNITFIPPDGKFRLLEYSVDLSSQVKQSGVRMNSIGLMSLHFQNGLGKDSDEFELSLNIENFKKVSQVDDLKIDLQFNVENADPNEIAYKIKILRNTHGRFENSIIMGQGQWIFDKSTATGTVPVLRGCIEYENTGPNFTKKVDLQTVSLEYSYIGQSASGIYVEAIDIVSGLTIGKNTKLYKGAKYKTQTGNFQVRL*", + "old_alignment": "MYLSFYITDTKNKLIFQYLLGATAPSFKHLWTRVRTTCPQLLEDSSSDDYLDHSMVGRDLEVYKYFSVINKLNYWCLASTSKSKGPLDCFTFLETIDRILLEYFDKDKLSIKKIVNNYDRISLIFNCCVEAGEPNVSDMLYVNKIKEAVPERSDLSKFISSTAHNLQQAVQLPQQRQQQLQQNQISRGSNSLIENEEIVPWRTSRASKHENNELYVDLLETFHVVFEKKKSHLRLLTGSIHGIVDVRSYLNDNPLVAVKLNTMGNDIGIPSLHDCVEINDGVFSPSNITFIPPDGKFRLLEYSVDLSSQVKQSGVRMNSIGLMSLHFQNGLGKDSDEFELSLNIENFKKVSQVDDLKIDLQFNVENADPNEIAYKIKILRNTHGRFENSIIMGQGQWIFDKSTATGTVPVLRGCIEYENTGPNFTKKVDLQTVSLEYSYIGQSASGIYVEAIDIVSGLTIGKNTKLYKGAKYKTQTGNFQVRL*" + } + ], + "YBR289W": [ + { + "revision": "110203", + "new_alignment": "MNNQPQGTNSVPNSIGNIFSNIGTPSFNMAQIPQQLYQSLTPQQLQMIQQRHQQLLRSRLQQQQQQQQQTSPPPQTHQSPPPPPQQSQPIANQSATSTPPPPPAPHNLHPQIGQVPLAPAPINLPPQIAQLPLATQQQVLNKLRQQAIAKNNPQVVNAITVAQQQVQRQIEQQKGQQTAQTQLEQQRQLLVQQQQQQQLRNQIQRQQQQQFRHHVQIQQQQQKQQQQQQQHQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQGQIPQSQQVPQVRSMSGQPPTNVQPTIGQLPQLPKLNLPKYQTIQYDPPETKLPYPTYWSDKKADTDTLLYEQIIQRDKINKYSLIRETNGYDPFSIYGFSNKEYISRLWHTLKYYQDLKNTRMKSITSTSQKIPSASIWGNGYSGYGNGITNTTTRVIPQVEVGNRKHYLEDKLKVYKQAMNETSEQLVPIRLEFDQDRDRFFLRDTLLWNKNDKLIKIEDFVDDMLRDYRFEDATREQHIDTICQSIQEQIQEFQGNPYIELNQDRLGGDDLRIRIKLDIVVGQNQLIDQFEWDISNSDNCPEEFAESMCQELELPGEFVTAIAHSIREQVHMYHKSLALLGYNFDGSAIEDDDIRSRMLPTITLDDVYRPAAESKIFTPNLLQISAAELERLDKDKDRDTRRKRRQGRSNRRGMLALSGTSASNTSMNGVHNTVAAGNASSLPPGEILLPDIADIPRTFRTPVPSTLMPGGVDVGPSVESYELRNTTTYKSRPDRPKPVSPPCYIIDHIPGHSLLLSIKLPGKVNTKEEFAAAPNDTSSGTNAMLPSPESLKTKLNSNIRAGVTIPSIPNPIANHTVTNSPNPTLQPVIPGGAASKSVPTPSLPIAPPVAPHDSEATLLTNSNNGSSNNNTQNT*", + "old_alignment": "MNNQPQGTNSVPNSIGNIFSNIGTPSFNMAQIPQQLYQSLTPQQLQMIQQRHQQLLRSRLQQQQQQQQQTSPPPQTHQSPPPPPQQSQPIANQSATSTPPPPPAPHNLHPQIGQVPLAPAPINLPPQIAQLPLATQQQVLNKLRQQAIAKNNPQVVNAITVAQQQVQRQIEQQKGQQTAQTQLEQQRQLLVQQQQQQQLRNQIQRQQQQQFRHHVQIQQQQQKQQQQQQQHQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQGQIPQSQQVPQVRSMSGQPPTNVQPTIGQLPQLPKLNLPKYQTIQYDPPETKLPYPTYWSDKKADTDTLLYEQIIQRDKINKYSLIRETNGYDPFSIYGFSNKEYISRLWHTLKYYQDLKNTRMKSITSTSQKIPSASIWGNGYSGYGNGITNTTTRVIPQVEVGNRKHYLEDKLKVYKQAMNETSEQLVPIRLEFDQDRDRFFLRDTLLWNKNDKLIKIEDFVDDMLRDYRFEDATREQHIDTICQSIQEQIQEFQGNPYIELNQDRLGGDDLRIRIKLDIVVGQNQLIDQFEWEISNSDNCPEEFAESMCQELELPGEFVTAIAHSIREQVHMYHKSLALLGYNFDGSAIEDDDIRSRMLPTITLDDVYRPAAESKIFTPNLLQISAAELERLDKDKDRDTRRKRRQGRSNRRGMLALSGTSASNTSMNGVHNTVAAGNASSLPPGEILLPDIADIPRTFRTPVPSTLMPGGVDVGPSVESYELRNTTTYKSRPDRPKPVSPPCYIIDHIPGHSLLLSIKLPGKVNTKEEFAAAPNDTSSGTNAMLPSPESLKTKLNSNIRAGVTIPSIPNPIANHTVTNSPNPTLQPVIPGGAASKSVPTPSLPIAPPVAPHDSEATLLTNSNNGSSNNNTQNT*" + } + ], + "YBR295W": [ + { + "revision": "110203", + "new_alignment": "MKPEKLFSGLGTSDGEYGVVNSENISIDAMQDNRGECHRRSIEMHANDNLGLVSQRDCTNRPKITPQECLSETEQICHHGENRTKAGLDVDDAETGGDHTNESRVDECCAEKVNDTETGLDVDSCCGDAQTGGDHTNESCVDGCCVRDSSVMVEEVTGSCEAVSSKEQLLTSFEVVPSKSEGLQSIHDIRETTRCNTNSNQHTGKGRLCIESSDSTLKKRSCKVSRQKIEVSSKPECCNISCVERIASRSCEKRTFKGSTNVGISGSSSTDSLSEKFFSEQYSRMYNRYSSILKNLGCICNYLRTLGKESCCLPKVRFCSGEGASKKTKYSYRNSSGCLTKKKTHGDKERLSNDNGHADFVCSKSCCTKMKDCAVTSTISGHSSSEISRIVSMEPIENHLNLEAGSTGTEHIVLSVSGMSCTGCESKLKKSFGALKCVHGLKTSLILSQAEFNLDLAQGSVKDVIKHLSKTTEFKYEQISNHGSTIDVVVPYAAKDFINEEWPQGVTELKIVERNIIRIYFDPKVIGARDLVNEGWSVPVSIAPFSCHPTIEVGRKHLVRVGCTTALSIILTIPILVMAWAPQLREKISTISASMVLATIIQFVIAGPFYLNALKSLIFSRLIEMDLLIVLSTSAAYIFSIVSFGYFVVGRPLSTEQFFETSSLLVTLIMVGRFVSELARHRAVKSISVRSLQASSAILVDKTGKETEINIRLLQYGDIFKVLPDSRIPTDGTVISGSSEVDEALITGESMPVPKKCQSIVVAGSVNGTGTLFVKLSKLPGNNTISTIATMVDEAKLTKPKIQNIADKIASYFVPTIIGITVVTFCVWIAVGIRVEKQSRSDAVIQAIIYAITVLIVSCPCVIGLAVPIVFVIASGVAAKRGVIFKSAESIEVAHNTSHVVFDKTGTLTEGKLTVVHETVRGDRHNSQSLLLGLTEGIKHPVSMAIASYLKEKGVSAQNVSNTKAVTGKRVEGTSYSGLKLQGGNCRWLGHNNDPDVRKALEQGYSVFCFSVNGSVTAVYALEDSLRADAVSTINLLRQRGISLHILSGDDDGAVRSMAARLGIESSNIRSHATPAEKSEYIKDIVEGRNCDSSSQSKRPVVVFCGDGTNDAIGLTQATIGVHINEGSEVAKLAADVVMLKPKLNNILTMITVSQKAMFRVKLNFLWSFTYNLFAILLAAGAFVDFHIPPEYAGLGELVSILPVIFVAILLRYAKI*", + "old_alignment": "MKPEKLFSGLGTSDGEYGVVNSENISIDAMQDNRGECHRRSIEMHANDNLGLVSQRDCTNRPKITPQECLSETEQICHHGENRTKAGLDVDDAETGGDHTNESRVDECCAEKVNDTETGLDVDSCCGDAQTGGDHTNESCVDGCCVRDSSVMVEEVTGSCEAVSSKEQLLTSFEVVPSKSEGLQSIHDIRETTRCNTNSNQHTGKGRLCIESSDSTLKKRSCKVSRQKIEVSSKPECCNISCVERIASRSCEKRTFKGSTNVGISGSSSTDSLSEKFFSEQYSRMYNRYSSILKNLGCICNYLRTLGKESCCLPKVRFCSGEGASKKTKYSYRNSSGCLTKKKTHGDKERLSNDNGHADFVCSKSCCTKMKDCAVTSTISGTSSSEISRIVSMEPIENHLNLEAGSTGTEHIVLSVSGMSCTGCESKLKKSFGALKCVHGLKTSLILSQAEFNLDLAQGSVKDVIKHLSKTTEFKYEQISNHGSTIDVVVPYAAKDFINEEWPQGVTELKIVERNIIRIYFDPKVIGARDLVNEGWSVPVSIAPFSCHPTIEVGRKHLVRVGCTTALSIILTIPILVMAWAPQLREKISTISASMVLATIIQFVIAGPFYLNALKSLIFSRLIEMDLLIVLSTSAAYIFSIVSFGYFVVGRPLSTEQFFETSSLLVTLIMVGRFVSELARHRAVKSISVRSLQASSAILVDKTGKETEINIRLLQYGDIFKVLPDSRIPTDGTVISGSSEVDEALITGESMPVPKKCQSIVVAGSVNGTGTLFVKLSKLPGNNTISTIATMVDEAKLTKPKIQNIADKIASYFVPTIIGITVVTFCVWIAVGIRVEKQSRSDAVIQAIIYAITVLIVSCPCVIGLAVPIVFVIASGVAAKRGVIFKSAESIEVAHNTSHVVFDKTGTLTEGKLTVVHETVRGDRHNSQSLLLGLTEGIKHPVSMAIASYLKEKGVSAQNVSNTKAVTGKRVEGTSYSGLKLQGGNCRWLGHNNDPDVRKALEQGYSVFCFSVNGSVTAVYALEDSLRADAVSTINLLRQRGISLHILSGDDDGAVRSMAARLGIESSNIRSHATPAEKSEYIKDIVEGRNCDSSSQSKRPVVVFCGDGTNDAIGLTQATIGVHINEGSEVAKLAADVVMLKPKLNNILTMITVSQKAMFRVKLNFLWSFTYNLFAILLAAGAFVDFHIPPEYAGLGELVSILPVIFVAILLRYAKI*" + } + ], + "YCL058W-A": [ + { + "revision": "060113", + "new_alignment": "-------------------MGKCSMKKKGVGKNVGVGKKVQKKRSISTAERKRTKLQVEKLNKSSETMIPTLLREASTQEPAKLKAETTLKAEELIKDQEKDSKVREQIRTEKSKTNDSMLKQIEMISGFSL*", + "old_alignment": "MCKPAIIRYNNSRAFSKEKMGKCSMKKKGVGKNVGVGKKVQKKRSISTAERKRTKLQVEKLNKSSETMIPTLLREASTQEPAKLKAETTLKAEELIKDQEKDSKVREQIRTEKSKTNDSMLKQIEMISGFSL*" + } + ], + "YCL025C": [ + { + "revision": "060113", + "new_alignment": "MSSSKSLYELKDLKNSSTEIHATGQDNEIEYFETGSNDRPSSQPHLGYEQHNTSAVRRFFDSFKRADQGPQDEVEATQMNDLTSAISPSSRQAQELEKNESSDNIGANTGHKSDSLKKTIQPRHVLMIALGTGIGTGLLVGNGTALVHAGPAGLLIGYAIMGSILYCIIQACGEMALVYSNLTGGYNAYPSFLVDDGFGFAVAWVYCLQWLCVCPLELVTASMTIKYWTTSVNPDVFVIIFYVLVITINIFGARGYAEAEFFFNCCKILMMTGFFILGIIIDVGGAGNDGFIGGKYWHDPGAFNGKHAIDRFKGVAATLVTAAFAFGGSEFIAITTAEQSNPRKAIPGAAKQMIYRILFLFLATIILLGFLVPYNSDQLLGSTGGGTKASPYVIAVASHGVRVVPHFINAVILLSVLSMANSSFYSSARLFLTLSEQGYAPKVFSYIDRAGRPLIAMGVSALFAVIAFCAASPKEEQVFTWLLAISGLSQLFTWTAICLSHLRFRRAMKVQGRSLGELGFKSQTGVWGSAYACIMMILILIAQFWVAIAPIGEGKLDAQAFFENYLAMPILIALYVGYKVWHKDWKLFIRADKIDLDSHRQIFDEELIKQEDEEYRERLRNGPYWKRVVAFWC*------", + "old_alignment": "MSSSKSLYELKDLKNSSTEIHATGQDNEIEYFETGSNDRPSSQPHLGYEQHNTSAVRRFFDSFKRADQGPQDEVEATQMNDLTSAISPSSRQAQELEKNESSDNIGANTGHKSDSLKKTIQPRHVLMIALGTGIGTGLLVGNGTALVHAGPAGLLIGYAIMGSILYCIIQACGEMALVYSNLTGGYNAYPSFLVDDGFGFAVAWVYCLQWLCVCPLELVTASMTIKYWTTSVNPDVFVIIFYVLVITINIFGARGYAEAEFFFNCCKILMMTGFFILGIIIDVGGAGNDGFIGGKYWHDPGAFNGKHAIDRFKGVAATLVTAAFAFGGSEFIAITTAEQSNPRKAIPGAAKQMIYRILFLFLATIILLGFLVPYNSDQLLGSTGGGTKASPYVIAVASHGVRVVPHFINAVILLSVLSMANSSFYSSARLFLTLSEQGYAPKVFSYIDRAGRPLIAMGVSALFAVIAFCAASPKEEQVFTWLLAISGLSQLFTWTAICLSHLRFRRAMKVQGRSLGELGFKSQTGVWGSAYACIMMILILIAQFWVAIAPIGEGKLDAQAFFENYLAMPILIALYVGYKVWHKDWKLFIR--------------------------------------------ETRST*" + } + ], + "YCL008C": [ + { + "revision": "040305", + "new_alignment": "MSANGKISVPEAVVNWLFKVIQPIYNDGRTTFHDSLALLDNFHSLRPRTRVFTHSDGTPQLLLSIYGTISTGEDGSSPHSIPVIMWVPSMYPVKPPFISINLENFDMNTISSSLPIQEYIDSNGWIALPILHCWDPAAMNLIMVVQELMSLLHEPPQDQAPSLPPKPNTQLQQEQNTPPLPPKPKSPHLKPPLPPPPPPQPASNALDLMDMDNTDISPTNHHEMLQNLQTVVNELYREDVDYVADKILTRQTVMQESIARFHEIIAIDKNHLRAVEQAIEQTMHSLNAQIDVLTANRAKVQQFSSTSHVDDEDVNSIAVAKTDGLNQLYNLVAQDYALTDTIECLSRMLHRGTIPLDTFVKQGRELARQQFLVRWHIQRITSPLS*----", + "old_alignment": "MSANGKISVPEAVVNWLFKVIQPIYNDGRTTFHDSLALLDNFHSLRPRTRVFTHSDGTPQLLLSIYGTISTGEDGSSPHSIPVIMWVPSMYPVKPPFISINLENFDMNTISSSLPIQEYIDSNGWIALPILHCWDPAAMNLIMVVQELMSLLHEPPQDQAPSLPPKPNTQLQQEQNTPPLPPKPKSPHLKPPLPPPPPPQPASNALDLMDMDNTDISPTNHHEMLQNLQTVVNELYREDVDYVADKILTRQTVMQESIARFHEIIAIDKNHLRAVEQAIEQTMHSLNAQIDVL---------------------------------------------------------------------------------------------NRK*" + } + ], + "YCL002C": [ + { + "revision": "110203", + "new_alignment": "MLVIVLQGLAGFLSIIAILCQKRYNKLHRSIYGLSYDLFLLDFVGNGLYLYCALHYCYSSLVREQLSQRFPLFYPLNDARSIPISSFLILKDFCVSCCCMMVLRQLYYYRSTKHIYQGISITSIIIISVFLVLGIFTYGCSISNLPLKNSGKFGVFYLEHINYLWVMANLLKCFKYVPQMSINWMGCSTVGLSSKFALISFLAESIDLLGRLVIPTNALFYEIPFNSTPFWVKLIQFVTLLVILCQVQYVYVGRKPRLPKGKL*-------------", + "old_alignment": "MLVIVLQGLAGFLSIIAILCQKRYNKLHRSIYGLSYDLFLLDFVGNGLYLYCALHYCYSSLVREQLSQRFPLFYPLNDARSIPISSFLILKDFCVSCCCMMVLRQLYYYRSTKHIYQGISITSIIIISVFLVLGIFTYGCSISNLPLKNSGKFGVFYLEHINYLWVMANLLKCFKYVPQMSINWMGCSTVGLSSKFALISFLAESIDLLGRLVIPTNALFYEIPFNSTPFWVKLIQFVT-------------------------YWSYFVKFSMFT*" + } + ], + "YCR077C": [ + { + "revision": "110203", + "new_alignment": "MSFFGLENSGNARDGPLDFEESYKGYGEHELEENDYLNDETFGDNVQVGTDFDFGNPHSSGSSGNAIGGNGVGATARSYVAATAEGISGPRTDGTAAAGPLDLKPMESLWSTAPPPAMAPSPQSTMAPAPAPQQMAPLQPILSMQDLERQQRQMQQQFMNFHAMGHPQGLPQGPPQQQFPMQPASGQPGPSQFAPPPPPPGVNVNMNQMPMGPVQVPVQASPSPIGMSNTPSPGPVVGATKMPLQSGRRSKRDLSPEEQRRLQIRHAKVEKILKYSGLMTPRDKDFITRYQLSQIVTEDPYNEDFYFQVYKIIQRGGITSESNKGLIARAYLEHSGHRLGGRYKRTDIALQRMQSQVEKAVTVAKERPSKLKDQQAAAGNSSQDNKQANTVLGKISSTLNSKNPRRQLQIPRQQPSDPDALKDVTDSLTNVDLASSGSSSTGSSAAAVASKQRRRSSYAFNNGNGATNLNKSGGKKFILELIETVYEEILDLEANLRNGQQTDSTAMWEALHIDDSSYDVNPFISMLSFDKGIKIMPRIFNFLDKQQKLKILQKIFNELSHLQIIILSSYKTTPKPTLTQLKKVDLFQMIILKIIVSFLSNNSNFIEIMGLLLQLIRNNNVSFLTTSKIGLNLITILISRAALIKQDSSRSNILSSPEISTWNEIYDKLFTSLESKIQLIFPPREYNDHIMRLQNDKFMDEAYIWQFLASLALSGKLNHQRIIIDEVRDEIFATINEAETLQKKEKELSVLPQRSQELDTELKSIIYNKEKLYQDLNLFLNVMGLVYRDGEISELK*", + "old_alignment": "MSFFGLENSGNARDGPLDFEESYKGYGEHELEENDYLNDETFGDNVQVGTDFDFGNPHSSGSSGNAIGGNGVGATARSYVAATAEGISGPRTDGTAAAGPLDLKPMESLWSTAPPPAMAPSPQSTMAPAPAPQQMAPLQPILSMQDLERQQRQMQQQFMNFHAMGHPQGLPQGPPQQQFPMQPASGQPGPSQFAPPPPPPGVNVNMNQMPMGPVQVPVQASPSPIGMSNTPSPGPVVGATKMPLQSGRRSKRDLSPEEQRRLQIRHAKVEKILKYSGLMTPRDKDFITRYQLSQIVTEDPYNEDFYFQVYKIIQRGGITSESNKGLIARAYLEHSGHRLGGRYKRTDIALQRMQSQVEKAVTVAKERPSKLKDQQAAAGNSSQDNKQANTVLGKISSTLNSKNPRRQLQIPRQQPSDPDALKDVTDSLTNVDLASSGSSSTGSSAAAVASKQRRRSSYAFNNGNGATNLNKSGGKKFILELIETVYEEILDLEANLRNGQQTDSTAMWEALHIDDSSYDVNPFISMLSFDKGIKIMPRIFNFLDKQQKLKILQKIFNELSHLQIIILSSYKTTPKPTLTQLKKVDLFQMIILKIIVSFLSNNSNFIEIMGLLLQLIRNNNVSFLTTSKIGLNLITILISRAALIKQDSSRSNILSSPEISTWNEIYDKLFTSLESKIQLIFPPREYNVHIMRLQNDKFMDEAYIWQFLASLALSGKLNHQRIIIDEVRDEIFATINEAETLQKKEKELSVLPQRSQELDTELKSIIYNKEKLYQDLNLFLNVMGLVYRDGEISELK*" + } + ], + "YCR091W": [ + { + "revision": "110203", + "new_alignment": "MTQQEYRSPSQRLSKGRSMSLPKIFARNLRSLQNNAPPGKNINVNCLNVNSCSLSASPSSQINMACNGNKQDLPIPFPLHVECNDSWSSSKLNKFKSMFNHNRSKSSGTTDASTSEKGTHKREPRSTIHTELLQSSIIGEPNVHSTTSSTLIPNEAICSTPNEISGSSSPDAELFTFDMPTDPSSFHTPSSPSYIAKDSRNLSNGSLNDINENEELQNFHRKISENGSASPLANLSLSNSPIDSPRKNSETRKDQIPMNITPRLRRAASEPFNTAKDGLMREDYIALKQPPSLGDIVEPRRSRRLRTKSFGNKFQDITVEPQSFEKIRLLGQGDVGKVYLVRERDTNQIFALKVLNKHEMIKRKKIKRVLTEQEILATSDHPFIVTLYHSFQTKDYLYLCMEYCMGGEFFRALQTRKSKCIAEEDAKFYASEVVAALEYLHLLGFIYRDLKPENILLHQSGHVMLSDFDLSIQATGSKKPTMKDSTYLDTKICSDGFRTNSFVGTEEYLAPEVIRGNGHTAAVDWWTLGILIYEMLFGCTPFKGDNSNETFSNILTKDVKFPHDKEVSKNCKDLIKKLLNKNEAKRLGSKSGAADIKRHPFFKKVQWSFLRNQDPPLIPALNDNGCELPFILSCNKHPKRNSVSEQETKMFCEKVANDDEIDEADPFHDFNSMSLTKKDHNILTYSENYTYGKILYKATCTRPRHNSSHRSFFKDIIPEL*", + "old_alignment": "MTQQEYRSPSQRLSKGRSMSLPKIFARNLRSLQNNAPPGKNINVNCLNVNSCSLSASPSSQINMACNGNKQDLPIPFPLHVECNDSWSSSKLNKFKSMFNHNRSKSSGTTDASTSEKGTHKREPRSTIHTELLQSSIIGEPNVHSTTSSTLIPNEAICSTPNEISGSSSPDAELFTFDMPTDPSSFHTPSSPSYIAKDSRNLSNGSLNDINENEELQNFHRKISENGSASPLANLSLSNSPIDSPRKNSETRKDQIPMNITPRLRRAASEPFNTAKDGLMREDYIALKQPPSLGDIVEPRRSRRLRTKSFGNKFQDITVEPQSFEKIRLLGQGDVGKVYLMRERDTNQIFALKVLNKHEMIKRKKIKRVLTEQEILATSDHPFIVTLYHSFQTKDYLYLCMEYCMGGEFFRALQTRKSKCIAEEDAKFYASEVVAALEYLHLLGFIYRDLKPENILLHQSGHVMLSDFDLSIQATGSKKPTMKDSTYLDTKICSDGFRTNSFVGTEEYLAPEVIRGNGHTAAVDWWTLGILIYEMLFGCTPFKGDNSNETFSNILTKDVKFPHDKEVSKNCKDLIKKLLNKNEAKRLGSKSGAADIKRHPFFKKVQWSFLRNQDPPLIPALNDNGCELPFILSCNKHPKRNSVSEQETKMFCEKVANDDEIDEADPFHDFNSMSLTKKDHNILTYSENYTYGKILYKATCTRPRHNSSHRSFFKDIIPEL*" + } + ], + "YCR092C": [ + { + "revision": "070906", + "new_alignment": "-----------------------------MAGQPTISRFFKKAVKSELTHKQEQEVAVGNGAGSESICLDTDEEDNLSSVASTTVTNDSFPLKGSVSSKNSKNSEKTSGTSTTFNDIDFAKKLDRIMKRRSDENVEAEDDEEEGEEDFVKKKARKSPTAKLTPLDKQVKDLKMHHRDKVLVIRVGYKYKCFAEDAVTVSRILHIKLVPGKLTIDESNPQDCNHRQFAYCSFPDVRLNVHLERLVHHNLKVAVVEQAETSAIKKHDPGASKSSVFERKISNVFTKATFGVNSTFVLRGKRILGDTNSIWALSRDVHQGKVAKYSLISVNLNNGEVVYDEFEEPNLADEKLQIRIKYLQPIEVLVNTDDLPLHVAKFFKDISCPLIHKQEYDLEDHVVQAIKVMNEKIQLSPSLIRLVSKLYSHMVEYNNEQVMLIPSIYSPFASKIHMLLDPNSLQSLDIFTHDGGKGSLFWLLDHTRTSFGLRMLREWILKPLVDVHQIEERLDAIECITSEINNSIFFESLNQMLNHTPDLLRTLNRIMYGTTSRKEVYFYLKQITSFVDHFKMHQSYLSEHFKSSDGRIGKQSPLLFRLFSELNELLSTTQLPHFLTMINVSAVMEKNSDKQVMDFFNLNNYDCSEGIIKIQRESESVRSQLKEELAEIRKYLKRPYLNFRDEVDYLIEVKNSQIKDLPDDWIKVNNTKMVSRFTTPRTQKLTQKLEYYKDLLIRESELQYKEFLNKITAEYTELRKITLNLAQYDCILSLAATSCNVNYVRPTFVNGQQAIIAKNARNPIIESLDVHYVPNDIMMSPENGKINIITGPNMGGKSSYIRQVALLTIMAQIGSFVPAEEIRLSIFENVLTRIGAHDDIINGDSTFKVEMLDILHILKNCNKRSLLLLDEVGRGTGTHDGIAISYALIKYFSELSDCPLILFTTHFPMLGEIKSPLIRNYHMDYVEEQKTGEDWMSVIFLYKLKKGLTYNSYGMNVAKLARLDKDIINRAFSISEELRKESINEDALKLFSSLKRILKSDNITATDKLAKLLSLDIH*", + "old_alignment": "MVIGNEPKLVLLRAKSSANRFILLNLLTIMAGQPTISRFFKKAVKSELTHKQEQEVAVGNGAGSESICLDTDEEDNLSSVASTTVTNDSFPLKGSVSSKNSKNSEKTSGTSTTFNDIDFAKKLDRIMKRRSDENVEAEDDEEEGEEDFVKKKARKSPTAKLTPLDKQVKDLKMHHRDKVLVIRVGYKYKCFAEDAVTVSRILHIKLVPGKLTIDESNPQDCNHRQFAYCSFPDVRLNVHLERLVHHNLKVAVVEQAETSAIKKHDPGASKSSVFERKISNVFTKATFGVNSTFVLRGKRILGDTNSIWALSRDVHQGKVAKYSLISVNLNNGEVVYDEFEEPNLADEKLQIRIKYLQPIEVLVNTDDLPLHVAKFFKDISCPLIHKQEYDLEDHVVQAIKVMNEKIQLSPSLIRLVSKLYSHMVEYNNEQVMLIPSIYSPFASKIHMLLDPNSLQSLDIFTHDGGKGSLFWLLDHTRTSFGLRMLREWILKPLVDVHQIEERLDAIECITSEINNSIFFESLNQMLNHTPDLLRTLNRIMYGTTSRKEVYFYLKQITSFVDHFKMHQSYLSEHFKSSDGRIGKQSPLLFRLFSELNELLSTTQLPHFLTMINVSAVMEKNSDKQVMDFFNLNNYDCSEGIIKIQRESESVRSQLKEELAEIRKYLKRPYLNFRDEVDYLIEVKNSQIKDLPDDWIKVNNTKMVSRFTTPRTQKLTQKLEYYKDLLIRESELQYKEFLNKITAEYTELRKITLNLAQYDCILSLAATSCNVNYVRPTFVNGQQAIIAKNARNPIIESLDVHYVPNDIMMSPENGKINIITGPNMGGKSSYIRQVALLTIMAQIGSFVPAEEIRLSIFENVLTRIGAHDDIINGDSTFKVEMLDILHILKNCNKRSLLLLDEVGRGTGTHDGIAISYALIKYFSELSDCPLILFTTHFPMLGEIKSPLIRNYHMDYVEEQKTGEDWMSVIFLYKLKKGLTYNSYGMNVAKLARLDKDIINRAFSISEELRKESINEDALKLFSSLKRILKSDNITATDKLAKLLSLDIH*" + } + ], + "YDL240W": [ + { + "revision": "110203", + "new_alignment": "MIQNSAGYRSLNTASPMTVQVKNQKKICARCNKLVIPDSQRTKTTLKALGKYYHESCFTCQDCQKPLKPKYFPYQVDKTSESILLCQYDYFRRHNLLCHVCDTPLRGLYYTAFGYRYDEEHFSCTICATPCGVKKCFMYGNQLYCKYHFLKYFSKRCKGCEFPISDQYIEFPKGEEIHCWHPECYGIHKYWHVNLAAETVGLQYLPKLEYNPNSGDKDINPTAYELDKQMQAFNFILSKTWSVLYRFEEEAASCISDMFQYLTSNDQLKGIESTGLLVLKIDCLFRGLDTLNLSTNKSMPVNSDQECIENNAMAASKYSKFPKNLSTKIMIYLQLLRKLGTENKNETITISSFMSVITGLAHFLKLLTRFGLYTALENNKLTHSVNPLLRFLREVEKNELFENNPFQYIKTPVNATDSCAGCNKYIQEECIQFYEHRWHIACFTCSSCHKNINPRSLTDPTFNKEKKKILCSHCSIDDPASVPGFKFVTKLAQLIFLLKIALVKSRTVMLKSKASNKVGRNSLQSTMLKEQTYIRTLNDIKRLRSRRESVRVTHNKQQARKSVILETAETDLNDPTKQGDSKNLVIQTDDPSSSQQVSTRENVFSNTKTLTLDDISRIVAAEQARELRPNAFAHFKKLKETDDETSNVVPKKSGVYYSELSTMELSMIRAISLSLLAGKQLISKTDPNYTSLVSMVFSNEKQVTGSFWNRMKIMMSMEPKKPITKTVFGAPLDVLCEKWGVDSDLGVGPVKIRIPIIIDELISSLRQMDMSVEGIFRKNGNIRRLRELTANIDSNPTEAPDFSKENAIQLSALLKKFIRELPQPILSTDLYELWIKAAKIDLEDEKQRVILLIYSLLPTYNRNLLEALLSFLHWTSSFSYIENEMGSKMDIHNLSTVITPNILYLRHKEISNDNVPDEPESGLVDSFAQNKGENYFLAIEIVDYLITHNEEMAMVPKFLMNLLKDVQLQKLDNYESINHFISTVMQSKTIDYSECDIKTPVTVKDSTTTVIQGEINK*", + "old_alignment": "MIQNSAGYRSLNTASPMTVQVKNQKKICARCNKLVIPDSQRTKTTLKALGKYYHESCFTCQDCQKPLKPKYFPYQVDKTSESILLCQYDYFRRHNLLCHVCDTPLRGLYYTAFGYRYDEEHFSCTICATPCGVKKCFMYGNQLYCKYHFLKYFSKRCKGCEFPISDQYIEFPKGEEIHCWHPECYGIHKYWHVNLAAETVGLQYLPKLEYNPNSGDKDINPTAYELDKQMQAFNFILSKTWSVLYRFEEEAASCISDMFQYLTSNDQLKGIESTGLLVLKIDCLFRGLDTLNLSTNKSMPVNSDQECIENNAMAASKYSKFPKNLSTKIMIYLQLLRKLGTENKNETITISSFMSVITGLAHFLKLLTRFGLYTALENNKLTHSVNPLLRFLREVEKNELFENNPFQYIKTPVNATDSCAGCNKYIQEECIQFYEHRWHIACFTCSSCHKNINPRSLTDPTFNKEKKKILCSHCSIDDPASVPGFKFVTKLAQLIFLLKIALVKSRTVMLKSKASNKVGRNSLQSTMLKEHTYIRTLNDIKRLRSRRESVRVTHNKQQARKSVILETAETDLNDPTKQGDSKNLVIQTDDPSSSQQVSTRENVFSNTKTLTLDDISRIVAAEQARELRPNAFAHFKKLKETDDETSNVVPKKSGVYYSELSTMELSMIRAISLSLLAGKQLISKTDPNYTSLVSMVFSNEKQVTGSFWNRMKIMMSMEPKKPITKTVFGAPLDVLCEKWGVDSDLGVGPVKIRIPIIIDELISSLRQMDMSVEGIFRKNGNIRRLRELTANIDSNPTEAPDFSKENAIQLSALLKKFIRELPQPILSTDLYELWIKAAKIDLEDEKQRVILLIYSLLPTYNRNLLEALLSFLHWTSSFSYIENEMGSKMDIHNLSTVITPNILYLRHKEISNDNVPDEPESGLVDSFAQNKGENYFLAIEIVDYLITHNEEMAMVPKFLMNLLKDVQLQKLDNYESINHFISTVMQSKTIDYSECDIKTPVTVKDSTTTVIQGEINK*" + } + ], + "YDL239C": [ + { + "revision": "110203", + "new_alignment": "MNHWLAFLNKPESLKEQNSDCDQQGEMRHVTDGTLTKSPESKPFRERRSQTWIDSEVPTSTEKSNVQESISSDIISKLSNRRSRRNRSESWAGSEASSPSGNISTLENATEKNTLKSPNKFLQRGGLPTVGIGSQALSPAGKPSTLGNVSPGKFTTYKVHNSIEVNRFSSTPTKLLTNPHKVAAISNDEHYVVSNESLEENIEVAHLENVFRSSKTPDEEQSEYMKLGEIRLSSSSYGGSISKENSLPKVLDELQSQNEEIKALRQKLEEKDDRIQELEELNSMNDAKLQRIEDLQKEFHNERKAASKRLNIVQDRFRKEIKKIREEKITDFQNKNASKKEKNEVTSAKTKCKAFSQRNILVSELYRKQKQILNLQQENDKFLKDINESNNSIVKLRSEVEILKSNLQLSQDENKKLHDNGSFYEKRLNDVYSYMQNLSLFEKDLGKFILEEMKCGHSPSMFQNGFAKLYPDFQDIKNLENMEQYKQLKGKIELLEKNDRIRLEKIISVFKLINERLHFMQQQHSHKIKYLQKEALTKEQQFRLEKRRWHDILNLKEENFQKLKSELKEKLILSEKIQKNAEDKLNDYMNEHQEIVEKLQNQALIASRWSTQIQESENTHKKITDELAGKQSEILKLEETILSLKEDVFQEKLNLKKLYGDPSTELNFETVGKSFPHITKEKYDSLGLDILTDLTYVQSQNLIKNLLIVLDIPLKTFLKIVPTIVIQLRCELTLLTKFANDLNLKVFGKQLDFKSRRKVAMNEFLNNHDIAEVKHPLEYDLQALFKYFFS*", + "old_alignment": "MNHWLAFLNKPESLKEQNSDCDQQGEMRHVTDGTLTKSPESKPFRERRSQTWIDSEVPTSTEKSNVQESISSDIISKLSNRRSRRNRSESWAGSEASSPSGNISTLENATEKNTLKSPNKFLQRGGLPTVGIGSQALSPAGKPSTLGNVSPGKFTTYKVHNSIEVNRFSSTPTKLLTNPHKVAAISNDEHYVVSNESLEENIEVAHLENVFRSSKTPDEEQSEYMKLGEIRLSSSSYGGSISKENSLPKVLDELQSQNEEIKALRQKLEEKDDRIQELEELNSMNDAKLQRIEDLQKEFHNERKAASKRLNIVQDRFRKEIKKIREEKITDFQNKNASKKEKNEVTSAKTKCKAFSQRNILVSELYRKQKQILNLQQENDKFLKDINESNNSIVKLRSEVEILKSNLQLSQDENKKLHDNGSFYEKRLNDVYSYMQNLSLFEKDLGKFILEEMKCGHSPSMFQNGFAKLYPDFQDIKNLENMEQYKQLKGKIELLEKNDRIRLEKIISVFKLINERLHFMQQQHSHKIKYLQKEALTKEQQFRLEKRRWHDILNLKEENFQKLKSELKGKLILSEKIQKNAEDKLNDYMNEHQEIVEKLQNQALIASRWSTQIQESENTHKKITDELAGKQSEILKLEETILSLKEDVFQEKLNLKKLYGDPSTELNFETVGKSFPHITKEKYDSLGLDILTDLTYVQSQNLIKNLLIVLDIPLKTFLKIVPTIVIQLRCELTLLTKFANDLNLKVFGKQLDFKSRRKVAMNEFLNNHDIAEVKHPLEYDLQALFKYFFS*" + } + ], + "YDL237W": [ + { + "revision": "110203", + "new_alignment": "MLGLKGCLTILIGYVIAVCALFSSRGRNPSLTDWEKLKDQKISNIDNFGLTGQHLLEFFQENLPFLSFSEEKYRHKHVSLYYDVFKEYILRRASSKKCLPVDSAIAKLNKDVNPMPVHSHNDYWRKLPLFEGLAYGASSTEADVWNIDEKILAVGHNEAYLDPVELTLDKLYTGPLLEILDEVNCQDSDADRKNGVFFNSPETSLFFYIDFKSDDNELTYKLLMEQYFKSLIDSGYLTYYDMKKDEIIWRPVTVILTGNYPTSLDILDNGNDNGYFESSQRFAFLDAPLLSLEPKYSKLSVAATVSFSQLMKHCGSDHWKVSLRGRMDSNEISCAKSIIDGAHALKLKTRIWGAPTWPANLVETISRQIIHDLGSDLLNLDNLFMASSLI*", + "old_alignment": "MLGLKGCLTILIGYVIAVCALFSSRGRNPSLTDWEKLKDQKISDIDNFGLTGQHLLEFFQENLPFLSFSEEKYRHKHVSLYYDVFKEYILRRASSKKCLPVDSAIAKLNKDVNPMPVHSHNDYWRKLPLFEGLAYGASSTEADVWNIDEKILAVGHNEAYLDPVELTLDKLYTGPLLEILDEVNCQDSDADRKNGVFFNSPETSLFFYIDFKSDDNELTYKLLMEQYFKSLIDSGYLTYYDMKKDEIIWRPVTVILTGNYPTSLDILDNGNDNGYFESSQRFAFLDAPLLSLEPKYSKLSVAATVSFSQLMKHCGSDHWKVSLRGRMDSNEISCAKSIIDGAHALKLKTRIWGAPTWPANLVETISRQIIHDLGSDLLNLDNLFMASSLI*" + } + ], + "YDL216C": [ + { + "revision": "060414", + "new_alignment": "---------------MSLSNKTVKELRQLLKERYTVEDELTESIALSSMRFKPSQEPEFHALSQSSLLKTKLKQQSSTDIPSYTHVLISKLSCEKITHYAVRGGNIEIMGILMGFTLKDNIVVMDCFNLPVVGTETRVNAQLESYEYMVQYIDEMYNHNDGGDGRDYKGAKLNVVGWFHSHPGYDCWLSNIDIQTQDLNQRFQDPYVAIVVDPLKSLEDKILRMGAFRTIESKSDDNSATSYYELETIIFDSELNRALFETKLNLHCVIEDDESEQISLNRLIDSMKQYSYLMDSKNVRTRIKLATTSERVSNENKKNIDYQNRSTRSQFCLNTQRGDSTETSSFGSMFSGDNTSDVDMEDRNLTEFDSTDTSLCINGEPSIHVNRVERSSRSTDNFHNSKKRMNSNQERCHDEGNDMLQRNVLETDYARAKNRILASKIKQYERLRFYKDTFTL*", + "old_alignment": "MNNNDRKSIKTAGGSMSLSNKTVKELRQLLKERYTVEDELTESIALSSMRFKPSQEPEFHALSQSSLLKTKLKQQSSTDIPSYTHVLISKLSCEKITHYAVRGGNIEIMGILMGFTLKDNIVVMDCFNLPVVGTETRVNAQLESYEYMVQYIDEMYNHNDGGDGRDYKGAKLNVVGWFHSHPGYDCWLSNIDIQTQDLNQRFQDPYVAIVVDPLKSLEDKILRMGAFRTIESKSDDNSATSYYELETIIFDSELNRALFETKLNLHCVIEDDESEQISLNRLIDSMKQYSYLMDSKNVRTRIKLATTSERVSNENKKNIDYQNRSTRSQFCLNTQRGDSTETSSFGSMFSGDNTSDVDMEDRNLTEFDSTDTSLCINGEPSIHVNRVERSSRSTDNFHNSKKRMNSNQERCHDEGNDMLQRNVLETDYARAKNRILASKIKQYERLRFYKDTFTL*" + } + ], + "YDL208W": [ + { + "revision": "051123", + "new_alignment": "-----------------MGKDNKEHKESKESKTVDNYEARMPAVLPFAKPLASKKLNKKVLKTVKKASKAKNVKRGVKEVVKALRKGEKGLVVIAGDISPADVISHIPVLCEDHSVPYIFIPSKQDLGAAGATKRPTSVVFIVPGSNKKKDGKNKEEEYKESFNEVVKEVQAL*", + "old_alignment": "MVNGSLGSRETETSAVKMGKDNKEHKESKESKTVDNYEARMPAVLPFAKPLASKKLNKKVLKTVKKASKAKNVKRGVKEVVKALRKGEKGLVVIAGDISPADVISHIPVLCEDHSVPYIFIPSKQDLGAAGATKRPTSVVFIVPGSNKKKDGKNKEEEYKESFNEVVKEVQAL*" + } + ], + "YDL200C": [ + { + "revision": "060414", + "new_alignment": "------------------MKELLYYTFIETEVTGAFLVFREKTQNLVFASLGNDKLFLLGKVEGFLKKHEKQDTMYDLQELKEAETYKKSIENYTICLENKMPLPSGAIPFEFLFGTDFQRKVWNELLNVEHGHVVTYGDIAKRIGKPTAARSVGRACGSNNLALLVPCHRIVGSNRKLTGYKWSCKLKEQLLNNEKENSLSLSRL*", + "old_alignment": "MHKKKIENGRIFDLNGPTMKELLYYTFIETEVTGAFLVFREKTQNLVFASLGNDKLFLLGKVEGFLKKHEKQDTMYDLQELKEAETYKKSIENYTICLENKMPLPSGAIPFEFLFGTDFQRKVWNELLNVEHGHVVTYGDIAKRIGKPTAARSVGRACGSNNLALLVPCHRIVGSNRKLTGYKWSCKLKEQLLNNEKENSLSLSRL*" + } + ], + "YDL195W": [ + { + "revision": "110203", + "new_alignment": "MVKLAEFSRTATFAWSHDKIPLLVSGTVSGTVDANFSTDSSLELWSLLAADSEKPIASLQVDSKFNDLDWSHNNKIIAGALDNGSLELYSTNEANNAINSMARFSNHSSSVKTVKFNAKQDNVLASGGNNGEIFIWDMNKCTESPSNYTPLTPGQSMSSVDEVISLAWNQSLAHVFASAGSSNFASIWDLKAKKEVIHLSYTSPNSGIKQQLSVVEWHPKNSTRVATATGSDNDPSILIWDLRNANTPLQTLNQGHQKGILSLDWCHQDEHLLLSSGRDNTVLLWNPESAEQLSQFPARGNWCFKTKFAPEAPDLFACASFDNKIEVQTLQNLTNTLDEQETETKQQESETDFWNNVSREESKEKPTVFHLQAPTWYGEPSPAAHWAFGGKLVQITPDGKGVSITNPKISGLESNTTLSEALKTKDFKPLINQRLVKVIDDVNEEDWNLLEKLSMDGTEEFLKEALAFDNDESDAQDDANNEKEDDGEEFFQQIETNFQPEGDFSLSGNIEQTISKNLVSGNIKSAVKNSLENDLLMEAMVIALDSNNERLKESVKNAYFAKYGSKSSLSRILYSISKREVDDLVENLDVSQWKFISKAIQNLYPNDIAQRNEMLIKLGDRLKENGHRQDSLTLYLAAGSLDKVASIWLSEFPDLEDKLKKDNKTIYEAHSECLTEFIERFTVFSNFINGSSTINNEQLIAKFLEFINLTTSTGNFELATEFLNSLPSDNEEVKTEKARVLIASGKSLPAQNPATATTSKAKYTNAKTNKNVPVLPTPGMPSTTSIPSMQAPFYGMTPGASANALPPKPYVPATTTSAPVHTEGKYAPPSQPSMASPFVNKTNSSTRLNSFAPPPNPYATATVPATNVSTTSIPQNTFAPIQPGMPIMGDYNAQSSSIPSQPPINAVSGQTPHLNRKANDGWNDLPLKVKEKPSRAKAVSVAPPNILSTPTPLNGIPANAASTMPPPPLSRAPSSVSMVSPPPLHKNSRVPSLVATSESPRASISNPYAPPQSSQQFPIGTISTANQTSNTAQVASSNPYAPPPQQRVATPLSGGVPPAPLPKASNPYAPTATTQPNGSSYPPTGPYTNNHTMTSPPPVFNKPPTGPPPISMKKRSNKLASIEQNPSQGATYPPTLSSSASPLQPSQPPTLASQVNTSAENVSHEIPADQQPIVDFLKEELARVTPLTPKEYSKQLKDCDKRLKILFYHLEKQDLLTQPTIDCLHDLVALMKEKKYKEAMVIHANIATNHAQEGGNWLTGVKRLIGIAEATLN*", + "old_alignment": "MVKLAEFSRTATFAWSHDKIPLLVSGTVSGTVDANFSTDSSLELWSLLAADSEKPIASLQVDSKFNDLDWSHNNKIIAGALDNGSLELYSTNEANNAINSMARFSNHSSSVKTVKFNAKQDNVLASGGNNGEIFIWDMNKCTESPSNYTPLTPGQSMSSVDEVISLAWNQSLAHVFASAGSSNFASIWDLKAKKEVIHLSYTSPNSGIKQQLSVVEWHPKNSTRVATATGSDNDPSILIWDLRNANTPLQTLNQGHQKGILSLDWCHQDEHLLLSSGRDNTVLLWNPESAEQLSQFPARGNWCFKTKFAPEAPDLFACASFDNKIEVQTLQNLTNTLDEQETETKQQESETDFWNNVSREESKEKPSVFHLQAPTWYGEPSPAAHWAFGGKLVQITPDGKGVSITNPKISGLESNTTLSEALKTKDFKPLINQRLVKVIDDVNEEDWNLLEKLSMDGTEEFLKEALAFDNDESDAQDDANNEKEDDGEEFFQQIETNFQPEGDFSLSGNIEQTISKNLVSGNIKSAVKNSLENDLLMEAMVIALDSNNERLKESVKNAYFAKYGSKSSLSRILYSISKREVDDLVENLDVSQWKFISKAIQNLYPNDIAQRNEMLIKLGDRLKENGHRQDSLTLYLAAGSLDKVASIWLSEFPDLEDKLKKDNKTIYEAHSECLTEFIERFTVFSNFINGSSTINNEQLIAKFLEFINLTTSTGNFELATEFLNSLPSDNEEVKTEKARVLIASGKSLPAQNPATATTSKAKYTNAKTNKNVPVLPTPGMPSTTSIPSMQAPFYGMTPGASANALPPKPYVPATTTSAPVHTEGKYAPPSQPSMASPFVNKTNSSTRLNSFAPPPNPYATATVPATNVSTTSIPQNTFAPIQPGMPIMGDYNAQSSSIPSQPPINAVSGQTPHLNRKANDGWNDLPLKVKEKPSRAKAVSVAPPNILSTPTPLNGIPANAASTMPPPPLSRAPSSVSMVSPPPLHKNSRVPSLVATSESPRASISNPYAPPQSSQQFPIGTISTANQTSNTAQVASSNPYAPPPQQRVATPLSGGVPPAPLPKASNPYAPTATTQPNGSSYPPTGPYTNNHTMTSPPPVFNKPPTGPPPISMKKRSNKLASIEQNPSQGATYPPTLSSSASPLQPSQPPTLASQVNTSAENVSHEIPADQQPIVDFLKEELARVTPLTPKEYSKQLKDCDKRLKILFYHLEKQDLLTQPTIDCLHDLVALMKEKKYKEAMVIHANIATNHAQEGGNWLTGVKRLIGIAEATLN*" + } + ], + "YDL190C": [ + { + "revision": "110203", + "new_alignment": "MTAIEDILQITTDPSDTRGYSLLKSEEVPQGSTLGVDFIDTLLLYQLTENEKLDKPFEYLNDCFRRNQQQKRITKNKPNAESLHSTFQEIDRLVIGYGVVALQIENFCMNGAFINYITGIVSNVNSYTDFLSQIIQRAILEGTALDLLNAVFPTLLEYCNKHVSHFDLNESVIYNNVLTIFELFVTFKPIAEIFTKIDGFFADYSCKPQDFERKTILGPILSLSPIEAAVAIRNYGDNLLRSKQQTAMIHESLQAEHKVVIDRLFFIVDKLVRGSLNSRTDMISYFAHIANKNHLRRADHPPFKELSSNGFMSNITLLLVRFSQPFLDISYKKIDKIDANYFNNPSLFIDLSGETRLNSDFKEADAFYDKNRKTADSKPNFISDCFFLTLTYLHYGLGGTLSFEEKMGSEIKALKEEIEKVKKIAANHDVFARFITAQLSKMEKALKTTESLRFALQGFFAHRSLQLEVFDFICGASTFLIRVVDPEHEFPFKQIKLPLIPDQIGVENVDNADFLRAHAPVPFKYYPEFVVEGPVNYSLYISKYQTSPIFRNPRLGSFVEFTTMVLRCPELVSNPHLKGKLVQLLSVGAMPLTDNSPGFMMDIFEHDELVNKNLLYALLDFYVIVEKTGSSSQFYDKFNSRYSISIILEELYYKIPSYKNQLIWQSQNNADFFVRFVARMLNDLTFLLDEGLSNLAEVHNIQNELDNRARGAPPTREEEDKELQTRLASASRQAKSSCGLADKSMKLFEIYSKDIPAAFVTPEIVYRLASMLNYNLESLVGPKCGELKVKDPQSYSFNPKDLLKALTTVYINLSEQSEFISAVAKDERSFNRNLFVRAVDILGRKTGLASPEFIEKLLNFANKAEEQRKADEEEDLEYGDVPDEFLDPLMYTIMKDPVILPASKMNIDRSTIKAHLLSDSTDPFNRMPLKLEDVTPNEELRQKILCFKKQKKEEAKHKASE*", + "old_alignment": "MTAIEDILQITTDPSDTRGYSLLKSEEVPQGSTLGVDFIDTLLLYQLTENEKLDKPFEYLNDCFRRNQQQKRITKNKPNAESLHSTFQEIDRLVIGYGVVASQIENFCMNGAFINYITGIVSNVNSYTDFLSQIIQRAILEGTALDLLNAVFPTLLEYCNKHVSHFDLNESVIYNNVLTIFELFVTFKPIAEIFTKIDGFFADYSCKPQDFERKTILGPILSLSPIEAAVAIRNYGDNLLRSKQQTAMIHESLQAEHKVVIDRLFFIVDKLVRGSLNSRTDMISYFAHIANKNHLRRADHPPFKELSSNGFMSNITLLLVRFSQPFLDISYKKIDKIDANYFNNPSLFIDLSGETRLNSDFKEADAFYDKNRKTADSKPNFISDCFFLTLTYLHYGLGGTLSFEEKMGSEIKALKEEIEKVKKIAANHDVFARFITAQLSKMEKALKTTESLRFALQGFFAHRSLQLEVFDFICGASTFLIRVVDPEHEFPFKQIKLPLIPDQIGVENVDNADFLRAHAPVPFKYYPEFVVEGPVNYSLYISKYQTSPIFRNPRLGSFVEFTTMVLRCPELVSNPHLKGKLVQLLSVGAMPLTDNSPGFMMDIFEHDELVNKNLLYALLDFYVIVEKTGSSSQFYDKFNSRYSISIILEELYYKIPSYKNQLIWQSQNNADFFVRFDARMLNDLTFLLDEGLSNLAEVHNIQNELDNRARGAPPTREEEDKELQTRLASASRQAKSSCGLADKSMKLFEIYSKDIPAAFVTPEIVYRLASMLNYNLESLVGPKCGELKVKDPQSYSFNPKDLLKALTTVYINLSEQSEFISAVAKDERSFNRNLFVRAVDILGRKTGLASPEFIEKLLNFANKAEEQRKADEEEDLEYGDVPDEFLDPLMYTIMKDPVILPASKMNIDRSTIKAHLLSDSTDPFNRMPLKLEDVTPNEELRQKILCFKKQKKEEAKHKASE*" + } + ], + "YDL127W": [ + { + "revision": "040305", + "new_alignment": "MSNYEALLKFNRKAVSKEMVQYLASTTASIIKIKKTNSMIDIALPAPPLTKFINRLIKHSNVQTPTLMATSVYLAKLRSIIPSNVYGIETTRHRIFLGCLILAAKTLNDSSPLNKHWAEYTDGLLILREVNTIERELLEYFDWDVTISTDDLITCLSPFLKPIKEEQLYKSQRDCRTLKNFSAQEKDIVNKTSISHSRSSSNMSIPSLASTSTLSTLESRRSNLSNYSNRIRTLPELHESNNISDKFSPRTYNIDSKHDNKENRPIPTIKPFNFSKARPVILKTGLNKQIIKEDTKVKKSNWSNYFKS*------------------", + "old_alignment": "MSNYEALLKFNRKAVSKEMVQYLASTTASIIKIKKTNSMIDIALPAPPLTKFINRLIKHSNVQTPTLMATSVYLAKLRSIIPSNVYGIETTRHRIFLGCLILAAKTLNDSSPLNKHWAEYTDGLLILREVNTIERELLEYFDWDVTISTDDLITCLSPFLKPIKEEQLYKSQRDCRTLKNFSAQEKDIVNKTSISHSRSSSNMSIPSLASTSTLSTLESRRSNLSNYSNRIRTLPELHESNNISDKFSPRTYNIDSKHDNKE-----------------------------------------------IGQYRQLSLLILVKRAL*" + } + ], + "YDL115C": [ + { + "revision": "040305", + "new_alignment": "MSTISTTTAPEFIRVKRRRDEDSVQALLIDEGKRVKKQKFIFKLSKTVSSESYQSEQESSTPLLKLAHEDHRHFVLEQRKKSRRDSDDEKSQQRLAAEGSTVDDDGLPPEINQMVNDYLKLNKGVEKTERKKPSRKYFTGDSAKIASLPSLDYVFDIYHLEKIHDDEVARYNNEKNIGFVKIIEHIDLALDEESDPNEARSDDEDSNDENYYQNDYPEDEDDDRSILFGSEGEDIAALGEEIVIGVNKSRFSSWNDDKIQGSNGYHDVEEEYGDLFNRLGGKSDVLKSINSSNFIDLDGQEGEIEISDNEDDSDEGDDIEYPRNEFFPTDVDDPLAHHRDRIFHQLQKKINRS*", + "old_alignment": "MSTISTTTAPEFIRVKRRRDEDSVQALLIDEGKRVKKQKFIFKLSKTVSSESYQSEQESSTPLLKLAHEDHRHFVLEQRKKSRRDSDDEKSQQRLAAEGSTVDDDGLPPEINQMVNDYLKLNKGVEKTERKKPSRKYFTGDSAKIASLPSLDYVFDIYHLEKIHDDEVARYNNEKNIGFVKIIEHIDLALDEESDPNEARSDDEDSNDENYYQNDYPEDEDDDRSILFGSEGEDIAALGEEIVIGVNKSRFSSWNDDKIQGSNGYHDVEEEYGDLFNRLGGKSDVLKSINSSNFIDLDGQEGEIEISDNEDDSDEGDDIEYPRNEFFPTDVDDPLAHHRDRIFHQLQKKINRS*" + }, + { + "revision": "040206", + "new_alignment": "MSTISTTTAPEFIRVKRRRDEDSVQALLIDEGKRVKKQKFIFKLSKTVSSESYQSEQESSTPLLKLAHEDHRHFVLEQRKKSRRDSDDEKSQQRLAAEGSTVDDDGLPPEINQMVNDYLKLNKGVEKTERKKPSRKYFTGDSAKIASLPSLDYVFDIYHLEKIHDDEVARYNNEKNIGFVKIIEHIDLALDEESDPNEARSDDEDSNDENYYQNDYPEDEDDDRSILFGSEGEDIAALGEEIVIGVNKSRFSSWNDDKIQGSNGYHDVEEEYGDLFNRLGGKSDVLKSINSSNFIDLDGQEGEIEISDNEDDSDEGDDIEYPRNEFFPTDVDDPLAHHRDRIFHQLQKKINRS*", + "old_alignment": "-----------------------------------------------------------------------------------------------------------------MVNDYLKLNKGVEKTERKKPSRKYFTGDSAKIASLPSLDYVFDIYHLEKIHDDEVARYNNEKNIGFVKIIEHIDLALDEESDPNEARSDDEDSNDENYYQNDYPEDEDDDRSILFGSEGEDIAALGEEIVIGVNKSRFSSWNDDKIQGSNGYHDVEEEYGDLFNRLGGKSDVLKSINSSNFIDLDGQEGEIEISDNEDDSDEGDDIEYPRNEFFPTDVDDPLAHHRDRIFHQLQKKINRS*" + }, + { + "revision": "070713", + "new_alignment": "MSTISTTTAPEFIRVKRRRDEDSVQALLIDEGKRVKKQKFIFKLSKTVSSESYQSEQESSTPLLKLAHEDHRHFVLEQRKKSRRDSDDEKSQQRLAAEGSTVDDDGLPPEINQMVNDYLKLNKGVEKTERKKPSRKYFTGDSAKIASLPSLDYVFDIYHLEKIHDDEVARYNNEKNIGFVKIIEHIDLALDEESDPNEARSDDEDSNDENYYQNDYPEDEDDDRSILFGSEGEDIAALGEEIVIGVNKSRFSSWNDDKIQGSNGYHDVEEEYGDLFNRLGGKSDVLKSINSSNFIDLDGQEGEIEISDNEDDSDEGDDIEYPRNEFFPTDVDDPLAHHRDRIFHQLQKKINRS*", + "old_alignment": "-----------------------------------------------------------------------------------------------------------------MVNDYLKLNKGVEKTERKKPSRKYFTGDSAKIASLPSLDYVFDIYHLEKIHDDEVARYNNEKNIGFVKIIEHIDLALDEESDPNEARSDDEDSNDENYYQNDYPEDEDDDRSILFGSEGEDIAALGEEIVIGVNKSRFSSWNDDKIQGSNGYHDVEEEYGDLFNRLGGKSDVLKSINSSNFIDLDGQEGEIEISDNEDDSDEGDDIEYPRNEFFPTDVDDPLAHHRDRIFHQLQKKINRS*" + }, + { + "revision": "040402", + "new_alignment": "MSTISTTTAPEFIRVKRRRDEDSVQALLIDEGKRVKKQKFIFKLSKTVSSESYQSEQESSTPLLKLAHEDHRHFVLEQRKKSRRDSDDEKSQQRLAAEGSTVDDDGLPPEINQMVNDYLKLNKGVEKTERKKPSRKYFTGDSAKIASLPSLDYVFDIYHLEKIHDDEVARYNNEKNIGFVKIIEHIDLALDEESDPNEARSDDEDSNDENYYQNDYPEDEDDDRSILFGSEGEDIAALGEEIVIGVNKSRFSSWNDDKIQGSNGYHDVEEEYGDLFNRLGGKSDVLKSINSSNFIDLDGQEGEIEISDNEDDSDEGDDIEYPRNEFFPTDVDDPLAHHRDRIFHQLQKKINRS*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------", + "old_alignment": "-----------------------------------------------------------------------------------------------------------------MVNDYLKLNKGVEKTERKKPSRKYFTG----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------VTMRLLDITTRKI*GL*KLLSI*IWLLMKKVIPMKPVQTMRILMTKTITKMIIRRMKMMIDLFYLVAKERI*LHWVKRLL*GLIRAGFPLGMTIKFRDLMGTTMWRKSTGIFLTGLEEKVMS*NP*IPRISLTWMAKKVK*R*VITKMILMKEMILNTLEMNFFRRMLMTHWRIIGTEFFISYRKKLIEA" + } + ], + "YDL102W": [ + { + "revision": "110203", + "new_alignment": "MSEKRSLPMVDVKIDDEDTPQLEKKIKRQSIDHGVGSEPVSTIEIIPSDSFRKYNSQGFKAKDTDLMGTQLESTFEQELSQMEHDMADQEEHDLSSFERKKLPTDFDPSLYDISFQQIDAEQSVLNGIKDENTSTVVRFFGVTSEGHSVLCNVTGFKNYLYVPAPNSSDANDQEQINKFVHYLNETFDHAIDSIEVVSKQSIWGYSGDTKLPFWKIYVTYPHMVNKLRTAFERGHLSFNSWFSNGTTTYDNIAYTLRLMVDCGIVGMSWITLPKGKYSMIEPNNRVSSCQLEVSINYRNLIAHPAEGDWSHTAPLRIMSFDIECAGRIGVFPEPEYDPVIQIANVVSIAGAKKPFIRNVFTLNTCSPITGSMIFSHATEEEMLSNWRNFIIKVDPDVIIGYNTTNFDIPYLLNRAKALKVNDFPYFGRLKTVKQEIKESVFSSKAYGTRETKNVNIDGRLQLDLLQFIQREYKLRSYTLNAVSAHFLGEQKEDVHYSIISDLQNGDSETRRRLAVYCLKDAYLPLRLMEKLMALVNYTEMARVTGVPFSYLLARGQQIKVVSQLFRKCLEIDTVIPNMQSQASDDQYEGATVIEPIRGYYDVPIATLDFNSLYPSIMMAHNLCYTTLCNKATVERLNLKIDEDYVITPNGDYFVTTKRRRGILPIILDELISARKRAKKDLRDEKDPFKRDVLNGRQLALKISANSVYGFTGATVGKLPCLAISSSVTAYGRTMILKTKTAVQEKYCIKNGYKHDAVVVYGDTDSVMVKFGTTDLKEAMDLGTEAAKYVSTLFKHPINLEFEKAYFPYLLINKKRYAGLFWTNPDKFDKLDQKGLASVRRDSCSLVSIVMNKVLKKILIERNVDGALAFVRETINDILHNRVDISKLIISKTLAPNYTNPQPHAVLAERMKRREGVGPNVGDRVDYVIIGGNDKLYNRAEDPLFVLENNIQVDSRYYLTNQLQNPIISIVAPIIGDKQANGMFVVKSIKINTGSQKGGLMSFIKKVEACKSCKGPLRKGEGPLCSNCLARSGELYIKALYDVRDLEEKYSRLWTQCQRCAGNLHSEVLCSNKNCDIFYMRVKVKKELQEKVEQLSKW*", + "old_alignment": "MSEKRSLPMVDVKIDDEDTPQLEKKIKRQSIDHGVGSEPVSTIEIIPSDSFRKYNSQGFKAKDTDLMGTQLESTFEQDVSQMEHDMADQEEHDLSSFERKKLPTDFDPSLYDISFQQIDAEQSVLNGIKDENTSTVVRFFGVTSEGHSVLCNVTGFKNYLYVPAPNSSDANDQEQINKFVHYLNETFDHAIDSIEVVSKQSIWGYSGDTKLPFWKIYVTYPHMVNKLRTAFERGHLSFNSWFSNGTTTYDNIAYTLRLMVDCGIVGMSWITLPKGKYSMIEPNNRVSSCQLEVSINYRNLIAHPAEGDWSHTAPLRIMSFDIECAGRIGVFPEPEYDPVIQIANVVSIAGAKKPFIRNVFTLNTCSPITGSMIFSHATEEEMLSNWRNFIIKVDPDVIIGYNTTNFDIPYLLNRAKALKVNDFPYFGRLKTVKQEIKESVFSSKAYGTRETKNVNIDGRLQLDLLQFIQREYKLRSYTLNAVSAHFLGEQKEDVHYSIISDLQNGDSETRRRLAVYCLKDAYLPLRLMEKLMALVNYTEMARVTGVPFSYLLARGQQIKVVSQLFRKCLEIDTVIPNMQSQASDDQYEGATVIEPIRGYYDVPIATLDFNSLYPSIMMAHNLCYTTLCNKATVERLNLKIDEDYVITPNGDYFVTTKRRRGILPIILDELISARKRAKKDLRDEKDPFKRDVLNGRQLALKISANSVYGFTGATVGKLPCLAISSSVTAYGRTMILKTKTAVQEKYCIKNGYKHDAVVVYGDTDSVMVKFGTTDLKEAMDLGTEAAKYVSTLFKHPINLEFEKAYFPYLLINKKRYAGLFWTNPDKFDKLDQKGLASVRRDSCSLVSIVMNKVLKKILIERNVDGALAFVRETINDILHNRVDISKLIISKTLAPNYTNPQPHAVLAERMKRREGVGPNVGDRVDYVIIGGNDKLYNRAEDPLFVLENNIQVDSRYYLTNQLQNPIISIVAPIIGDKQANGMFVVKSIKINTGSQKGGLMSFIKKVEACKSCKGPLRKGEGPLCSNCLARSGELYIKALYDVRDLEEKYSRLWTQCQRCAGNLHSEVLCSNKNCDIFYMRVKVKKELQEKVEQLSKW*" + } + ], + "YDL065C": [ + { + "revision": "060414", + "new_alignment": "--------MNENEYDNFDDLDDLLDEDPTKLDEAEPDDVQAKGSVYNDSENKEKNAESKDSDGVQVANESEEDPELKEMMVDLQNEFANLMKNNGNENNVKTEDFNKLISALEEAAKVPHQQMEQGCSSLKSNSTDKGTVNGSNPGFKNIVSNTLDRLKENGNKVDTSLAEETKESQRSGQNNNIDDILSQLLDQMVASGGKESAENQFDLKDGEMDDAITKILDQMTSKEVLYEPMKEMRSEFGVWFQENGENEEHKEKIGTYKRQFNIVDEIVNIYELKDYDELKHKDRVTELLDELEQLGDSPIRSANSPLKHGNEEEELMKMLEIDGNDPNLGNLDKELTDGCKQQ*", + "old_alignment": "MPNIQHEVMNENEYDNFDDLDDLLDEDPTKLDEAEPDDVQAKGSVYNDSENKEKNAESKDSDGVQVANESEEDPELKEMMVDLQNEFANLMKNNGNENNVKTEDFNKLISALEEAAKVPHQQMEQGCSSLKSNSTDKGTVNGSNPGFKNIVSNTLDRLKENGNKVDTSLAEETKESQRSGQNNNIDDILSQLLDQMVASGGKESAENQFDLKDGEMDDAITKILDQMTSKEVLYEPMKEMRSEFGVWFQENGENEEHKEKIGTYKRQFNIVDEIVNIYELKDYDELKHKDRVTELLDELEQLGDSPIRSANSPLKHGNEEEELMKMLEIDGNDPNLGNLDKELTDGCKQQ*" + } + ], + "YDL039C": [ + { + "revision": "080606", + "new_alignment": "MYRTRSSDEVTTSTDLTSSSDVATSVDPTTSVISSTSADPTTSADSTTSTVQTTSAGPSNNIGNSTLANSTTFAVSSTSIDPTSSSDVITSTVQTTSIEPTTSLVSSNDITTSTSLNISVVISTSTDSTSLIESTTTVGPHASSSVAGMYRTRSSDEVTTSTDPTSSSDVATSADPTSSSAVTTLVDPTTSVVISTSVDQTSSSDVATSVDPTTSVISSTSADPTTSADSTTSTVQTTSVDPTSSVVSSAPVDPASSVVSLTSSYPTSSSTVTISANSNGSATLAAQTTSIDPVSSIVSSSGATTIISSASIDPASSVVSSTSSEPTSFIVSSTSVYSTRPSGPTTSTDLATFSDTIILRVSTTSTSQDTQTVSSSLTDMVSSTGSADLSVSSIQRSQVDPSTFAVSNSPVYPTASTGSTSTGIPIASESLSLSRQQGISATSSSSIVTLTPVDSASSSRSSATSIIKPNMPVSSNDSKTQSSVSVVDAFQSTKSSYPSITSADPTTLASENGLVGSSSSAHPITLDRTYASAHASVTDIVSRVTDSTRHTTLVTSNINIQSEVGNPNYSGPKDTTITKQSAFMTSPASTSTISNVQSTASVMNHSIEDNISAAASLESVSGTSTKDYSSQSSAIHYTNSFTTTTTNAFITSKHSIAAVSTGAITSSASISLIMEGSANIEAVGKLVWLAAALPLAFI*", + "old_alignment": "-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------MTSPASTSTISNVQSTASVMNHSIEDNISAAASLESVSGTSTKDYSSQSSAIHYTNSFTTTTTNAFITSKHSIAAVSTGAITSSASISLIMEGSANIEAVGKLVWLAAALPLAFI*" + } + ], + "YDL031W": [ + { + "revision": "110203", + "new_alignment": "MAGVQKRKRDLEDQDDNGSEEDDIAFDIANEIALNDSESDANDSDSEVEADYGPNDVQDVIEYSSDEEEGVNNKKKAENKDIKKKKNSKKEIAAFPMLEMSDDENNASGKTQTGDDEDDVNEYFSTNNLEKTKHKKGSFPSFGLSKIVLNNIKRKGFRQPTPIQRKTIPLILQSRDIVGMARTGSGKTAAFILPMVEKLKSHSGKIGARAVILSPSRELAMQTFNVFKDFARGTELRSVLLTGGDSLEEQFGMMMTNPDVIIATPGRFLHLKVEMNLDLKSVEYVVFDEADRLFEMGFQEQLNELLASLPTTRQTLLFSATLPNSLVDFVKAGLVNPVLVRLDAETKVSENLEMLFLSSKNADREANLLYILQEIIKIPLATSEQLQKLQNSNNEADSDSDDENDRQKKRRNFKKEKFRKQKMPAANELPSEKATILFVPTRHHVEYISQLLRDCGYLISYIYGTLDQHARKRQLYNFRAGLTSILVVTDVAARGVDIPMLANVINYTLPGSSKIFVHRVGRTARAGNKGWAYSIVAENELPYLLDLELFLGKKILLTPMYDSLVDVMKKRWIDEGKPEYQFQPPKLSYTKRLVLGSCPRLDVEGLGDLYKNLMSSNFDLQLAKKTAMKAEKLYYRTRTSASPESLKRSKEIISSGWDAQNAFFGKNEEKEKLDFLAKLQNRRNKETVFEFTRNPDDEMAVFMKRRRKQLAPIQRKATERRELLEKERMAGLSHSIEDEIL------KGDDGETGYTVSEDALKEFEDADQLLEAQENENKKKKKPKSFKDPTFFLSHYAPAGDIQDKQLQITNGFANDAAQAAYDLNSDDKVQVHKQTATVKWDKKRKKYVNTQGIDNKKYIIGESGQKIAASFRSGRFDDWSKARNLKPLKVGSRETSIPSNLLEDPSQGPAANGRTVRGKFKHKQMKAPKMPDKHRDNYYSQKKKVEKALQSGISVKGYNNAPGLRSELKSTEQIRKDRIIAEKKRAKNARPSKKRKF*", + "old_alignment": "MAGVQKRKRDLEDQDDNGSEEDDIAFDIANEIALNDSESDANDSDSEVEADYGPNDVQDVIEYSSDEEEGVNNKKKAENKDIKKKKNSKKEIAAFPMLEMSDDENNASGKTQTGDDEDDVNEYFSTNNLEKTKHKKGSFPSFGLSKIVLNNIKRKGFRQPTPIQRKTIPLILQSRDIVGMARTGSGKTAAFILPMVEKLKSHSGKIGARAVILSPSRELAMQTFNVFKDFARGTELRSVLLTGGDSLEEQFGMMMTNPDVIIATPGRFLHLKVEMNLDLKSVEYVVFDEADRLFEMGFQEQLNELLASLPTTRQTLLFSATLPNSLVDFVKAGLVNPVLVRLDAETKVSENLEMLFLSSKNADREANLLYILQEIIKIPLATSEQLQKLQNSNNEADSDSDDENDRQKKRRNFKKEKFRKQKMPAANELPSEKATILFVPTRHHVEYISQLLRDCGYLISYIYGTLDQHARKRQLYNFRAGLTSILVVTDVAARGVDIPMLANVINYTLPGSSKIFVHRVGRTARAGNKGWAYSIVAENELPYLLDLELFLGKKILLTPMYDSLVDVMKKRWIDEGKPEYQFQPPKLSYTKRLVLGSCPRLDVEGLGDLYKNLMSSNFDLQLAKKTAMKAEKLYYRTRTSASPESLKRSKEIISSGWDAQNAFFGKNEEKEKLDFLAKLQNRRNKETVFEFTRNPDDEMAVFMKRRRKQLAPIQRKATERRELLEKERMAGL-H-----ILSKMKFWKGDDVETGYTVSEDALKEFEDAHQLLEAQENENKKKKKPKSFKDPTFFLSHYAPAGDIQDKQLQITNGFANDAAQAAYDLNSDDKVQVHKQTATVKWDKKRKKYVNTQGIDNKKYIIGESGQKIAASFRSGRFDDWSKARNLKPLKVGSRETSIPSNLLEDPSQGPAANGRTVRGKFKHKQMKAPKMPDKHRDNYYSQKKKVEKALQSGISVKGYNNAPGLRSELKSTEQIRKDRIIAEKKRAKNARPSKKRKF*" + } + ], + "YDL028C": [ + { + "revision": "110203", + "new_alignment": "MSTNSFHDYVDLKSRTNTRQFSDDEEFTTPPKLSNFGSALLSHTEKTSASEILSSHNNDKIANRLEEMDRSSSRSHPPPSMGNLTSGHTSTSSHSTLFGRYLRNNHQTSMTTMNTSDIEINVGNSLDKSFERIRNLRQNMKEDITAKYAERRSKRFLISNRTTKLGPAKRAMTLTNIFDEDVPNSPNQPINARETVELPLEDSHQTNFKETKR--NTDYDSIDFGDLNPIQYIKKHNLPTSDLPLISQIYFDKQREENRQAALRKHSSRELLYKSRSSSSSLSSNNLLANKDNSITSNNGSQPRRKVSTGSSSSKSSIEIRRALKENIDTSNNSNFNSPIHKIYKGISRNKDSDSEKREVLRNISINANHADNLLQQENKRLKRSLDDAITNENINSKNLEVFYHRPAPKPPVTKKVEIVEPAKSASLSNNRNIITVNDSQYEKIELLGRGGSSRVYKVKGSGNRVYALKRVSFDAFDDSSIDGFKGEIELLEKLKDQKRVIQLLDYEMGDGLLYLIMECGDHDLSQILNQRSGMPLDFNFVRFYTKEMLLCIKVVHDAGIVHSDLKPANFVLVKGILKIIDFGIANAVPEHTVNIYRETQIGTPNYMAPEALVAMNYTQNSENQHEGNKWKVGRPSDMWSCGCIIYQMIYGKPPYGSFQGQNRLLAIMNPDVKIPFPEHTSNNEKIPKSAIELMKACLYRNPDKRWTVDKVLSSTFLQPFMISGSIMEDLIRNAVRYGSEKPHISQDDLNDVVDTVLRKFADYKI*", + "old_alignment": "MSTNSFHDYVDLKSRTNTRQFSDDEEFTTPPKLSNFGSALLSHTEKTSASEILSSHNNDKIANRLEEMDRSSSRSHPPPSMGNLTSGHTSTSSHSTLFGRYLRNNHQTSMTTMNTSDIEINVGNSLDKSFERIRNLRQNMKEDITAKYAERRSKRFLISNRTTKLGPAKRAMTLTNIFDEDVPNSPNQPINARETVELPLEDSHQTNFKE--RRENTDYDSIDFGDLNPIQYIKKHNLPTSDLPLISQIYFDKQREENRQAALRKHSSRELLYKSRSSSSSLSSNNLLANKDNSITSNNGSQPRRKVSTGSSSSKSSIEIRRALKENIDTSNNSNFNSPIHKIYKGISRNKDSDSEKREVLRNISINANHADNLLQQENKRLKRSLDDAITNENINSKNLEVFYHRPAPKPPVTKKVEIVEPAKSASLSNNRNIITVNDSQYEKIELLGRGGSSRVYKVKGSGNRVYALKRVSFDAFDDSSIDGFKGEIELLEKLKDQKRVIQLLDYEMGDGLLYLIMECGDHDLSQILNQRSGMPLDFNFVRFYTKEMLLCIKVVHDAGIVHSDLKPANFVLVKGILKIIDFGIANAVPEHTVNIYRETQIGTPNYMAPEALVAMNYTQNSENQHEGNKWKVGRPSDMWSCGCIIYQMIYGKPPYGSFQGQNRLLAIMNPDVKIPFPEHTSNNEKIPKSAIELMKACLYRNPDKRWTVDKVLSSTFLQPFMISGSIMEDLIRNAVRYGSEKPHISQDDLNDVVDTVLRKFADYKI*" + } + ], + "YDR007W": [ + { + "revision": "040305", + "new_alignment": "MSVINFTGSSGPLVKVCGLQSTEAAECALDSDADLLGIICVPNRKRTIDPVIARKISSLVKAYKNSSGTPKYLVGVFRNQPKEDVLALVNDYGIDIVQLHGDESWQEYQEFLGLPVIKRLVFPKDCNILLSAASQKPHSFIPLFDSEAGGTGELLDWNSISDWVGRQESPESLHFMLAGGLTPENVGDALRLNGVIGVDVSGGVETNGVKDSNKIANFVKNAKK*", + "old_alignment": "MSVINFTGSSGPLVKVCGLQSTEAAECALDSDADLLGIICVPNRKRTIDPVIARKISSLVKAYKNS*GTPKYLVGVFRNQPKEDVLALVNDYGIDIVQLHGDESWQEYQEFLGLPVIKRLVFPKDCNILLSAASQKPHSFIPLFDSEAGGTGELLDWNSISDWVGRQESPESLHFMLAGGLTPENVGDALRLNGVIGVDVSGGVETNGVKDSNKIANFVKNAKK*" + } + ], + "YDR015C": [ + { + "revision": "060414", + "new_alignment": "MSCSFHISSPLGSSSSLEGFSSLKVVVVACQALSRDLLGIDLVLLLLFWRPDKHPHWGFRHLCSQTDFWHEVVVFPIPN*-------------------------------------------------------------------------", + "old_alignment": "MSCSFHISSPLGSSSSLEGFSSLKVVVVACQALSRDLLGIDLVLLLLFWRPDKHPHW-----------------------ASATCVLRQIFGTKLLFFQFQIKQSSFYNVDVDYGRSRNRPFVLSCWSNFGAQALFGIIMYPEWYIGAASPI*" + } + ], + "YDR031W": [ + { + "revision": "040723", + "new_alignment": "MSDILDEIVIEDVVANCPQEFLQYHKCIRDNEENPGKCKDGRMILSTCIREKVPSVKSIMSECSEPMKKYDQCIRDNMGTRTINENCLGFLQDLRKCAELQVKNKNIKPSINGVNLELIKD*--", + "old_alignment": "MSDILDEIVIEDVVANCPQEFLQYHKCIRDNEENPGKCKDGRMILSTCIREKVPSVKSIMSECSEPMKKYDQCIRDNMGTRTINENCLGFLQDLRKCAELQVKNKNIKPSINGVNL------N*" + } + ], + "YDR083W": [ + { + "revision": "060120", + "new_alignment": "MALFNVEGWSIKTKTVAFDNKTNKSSKDKKKNNRKNGKLTREQKLKEETEAELKEQVEDIPSEGSVAKDIPKKNQEKSDQNETSKKRKHDEEAPLMQVKENIEKPTKKQLTPLQQKMMAKLTGSRFRWINEQLYTISSDEALKLIKEQPQLFDEYHDGFRSQVQAWPENPVDVFVDQIRYRCMKPVNAPGGLPGLKDSKEIVIADMGCGEAQLALEINNFFKNYNKKAKKYLKRRHKVHSFDLKKANERITVADIRNVPLPDESCTIVVFCLALMGTNFLDFIKEAYRILAPRGELWIAEIKSRFSDGKGNEFVDALKLMGFFHKKTFDENKMFTRFEFFKPPAEIIEERRQKLERRQKFIEVETEKEELEKKRRKIAEGKWLLKPCIYKRR*-----", + "old_alignment": "MALFNVEGWSIKTKTVAFDNKTNKSSKDKKKNNRKNGKLTREQKLKEETEAELKEQVEDIPSEGSVAKDIPKKNQEKSDQNETSKKRKHDEEAPLMQVKENIEKPTKKQLTPLQQKMMAKLTGSRFRWINEQLYTISSDEALKLIKEQPQLFDEYHDGFRSQVQAWPENPVDVFVDQIRYRCMKPVNAPGGLPGLKDSKEIVIADMGCGEAQLALEINNFFKNYNKKAKKYLKRRHKVHSFDLKKANERITVADIRNVPLPDESCTIVVFCLALMGTNFLDFIKEAYRILAPRGELWIAEIKSRFSDGKGNEFVDALKLMGFFHKKTFDENKMFTRFEFFKPPAEIIEERRQKLERRQKFIEVETEKEELEKKRRKIAE--------------ENGS*" + } + ], + "YDR098C": [ + { + "revision": "141118", + "new_alignment": "-----------------------------------MPVIEINDQEQFTYLTTTAAGDKLIVLYFHTSWAEPCKALKQVFEAISNEPSNSNVSFLSIDADENSEISELFEISAVPYFIIIHKGTILKELSGADPKEYVSLLEDCKNSVNSGSSQTHTMENANVNEGSHNDEDDDDEEEEEETEEQINARLTKLVNAAPVMLFMKGSPSEPKCGFSRQLVGILREHQVRFGFFDILRDESVRQNLKKFSEWPTFPQLYINGEFQGGLDIIKESLEEDPDFLQHALQS*", + "old_alignment": "MCSFQVPSAFSFNYTSYCYKRHQARYYTAAKLFQEMPVIEINDQEQFTYLTTTAAGDKLIVLYFHTSWAEPCKALKQVFEAISNEPSNSNVSFLSIDADENSEISELFEISAVPYFIIIHKGTILKELSGADPKEYVSLLEDCKNSVNSGSSQTHTMENANVNEGSHNDEDDDDEEEEEETEEQINARLTKLVNAAPVMLFMKGSPSEPKCGFSRQLVGILREHQVRFGFFDILRDESVRQNLKKFSEWPTFPQLYINGEFQGGLDIIKESLEEDPDFLQHALQS*" + } + ], + "YDR179W-A": [ + { + "revision": "040723", + "new_alignment": "MPTILYNTNSSLITKYRRPNASNQYKGFLSKKGHTRLNSKSSGDIWEKDCSHTKNSGNDVSFESEFEKDSVEYLRDLCFSIYPNSLHQKIRSIEALPDLQVNTFIALIFQNFVKSWYGIKIPTDDSKFLTELYNLVQDLITYLKSSKINYHALLLDYIPCLLSSHLKALNDSSQNNDLVYEQYCKLTLYDSKRYPMLFTEIIQSKMSTKSLLQRSFLDSFLNELVFGHIFNSIAEPYYLLEGLNKICIRIKLNSAGNTRNEVTHGKPKCDPWLFVSNVKHKILQMTRLLAYSTSTEAANMNTAEIQETAFLQRYIFTFFTDDFFKLSMRKPFLFSICRTLQHWISKLNALNRVMYRTFDNIVQTKITSPVTIGNLFSLLRHSLFPNDNMMGPPRVLPVGDAFLEFREECISNLWDVCMTYKLDHILAIKRSDIADLIICISKNRDCNKLLIYRIIDCVIAQLP*", + "old_alignment": "---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------MLFTEIIQSKMSTKSLLQRSFLDSFLNELVFGHIFNSIAEPYYLLEGLNKICIRIKLNSAGNTRNEVTHGKPKCDPWLFVSNVKHKILQMTRLLAYSTSTEAANMNTAEIQETAFLQRYIFTFFTDDFFKLSMRKPFLFSICRTLQHWISKLNALNRVMYRTFDNIVQTKITSPVTIGNLFSLLRHSLFPNDNMMGPPRVLPVGDAFLEFREECISNLWDVCMTYKLDHILAIKRSDIADLIICISKNRDCNKLLIYRIIDCVIAQLP*" + } + ], + "YDR215C": [ + { + "revision": "110203", + "new_alignment": "MKTPPNQEKNNEKISLLFSSQRLTIDVHPSSVYHIVLSSNNADRHQVTLSFTARSRMMPLTRARPFGNHSSMFRMFLDAMVILAVASGVSLPPQLPGRRSHNASTPGAKKPGKDHGAMVSEFPANGVITPVYFPLRW*----------------------------------------------------------------", + "old_alignment": "MKTPPNQEKNNEKISLLFSSQRLTIDVHPSSVYHIVLSSNNADRHQVTLSFTARSRMMPLTRAR--------------------------------------------------------------------------LSAIILACSACSLTPWSSLPSPPAFPFPLSCQGAVHTTQAHPAPKNRGKTTALWFRSFPPMAL*" + } + ], + "YDR350C": [ + { + "revision": "110203", + "new_alignment": "MLKCICRVYSQPLAQMVTSPLFKHMGSAGTYTILPITNLRHLSTKNCPLKIKSNRSEPLQFGDFERQVPCSRKSGSSKNVQKRLYELRQLKTVLSETFGVTEYASFFESLRNALHINNCSENEKKKLLYDIILHQHELYPEVARKIGFYLPGEVHRWFWYHIPKSESFNHYLFLLKSDVLLFTSNYCTRFTNRLIKGTEMERQLATFQIFLHDETNIKFIMEKVLKLHTFDSLIALVNGLVKAKNFRFIKVFIQALLQKLEQHCYSGKDGAKQKNLRYVKFNNTLLYYLLKSGNVELFIKTFQEELKFIVSSGLLNHIDGNEHILNFPIHHYLNLLRISNRQEELFNVISCLQSSPLMKYKLFKEFLMGELIASFQAFRDPKLVCKYLLSSYSSKASANILNALGIWGWLYHSKSTTLTAPTLARELKNKNNILPNTMRIGSPVTVPILTELYRSLLSSSSVSLESGQFKNCLLDLYYKYKSFLSEEAHKYRYWRNDTGILNVFLNYIRFQAREPRLAYNVLLDFYSQPFAKKVVLTTTLCPFSIVAYKNHTLTQAELSELLQVMHKNGVPLTFKFCSAMVMHYVKMRDEK-----------GARSWYNKILFGGFEIRHMALIQIIKDQGWPFPKNFDETLLTELVENNNIKEPTDSTLFTDEDMFEEDGKPRFNDDDVNKCTNIIRETLKSLN*-----", + "old_alignment": "MLKCICRVYSQPLAQMVTSPLFKHMGSAGTYTILPITNLRHLSTKNCPLKIKSNRSEPLQFGDFERQVPCSRKSGSSKNVQKRLYELRQLKTVLSETFGVTEYASFFESLRNALHINNCSENEKKKLLYDIILHQHELYPEVARKIGFYLPGEVHRWFWYHIPKSESFNHYLFLLKSDVLLFTSNYCTRFTNRLIKGTEMERQLATFQIFLHDETNIKFIMEKVLKLHTFDSLIALVNGLVKAKNFRFIKVFIQALLQKLEQHCYSGKDGAKQKNLRYVKFNNTLLYYLLKSGNVELFIKTFQEELKFIVSSGLLNHIDGNEHILNFPIHHYLNLLRISNRQEELFNVISCLQSSPLMKYKLFKEFLMGELIASFQAFRDPKLVCKYLLSSYSSKASANILNALGIWGWLYHSKSTTLTAPTLARELKNKNNILPNTMRIGSPVTVPILTELYRSLLSSSSVSLESGQFKNCLLDLYYKYKSFLSEEAHKYRYWRNDTGILNVFLNYIRFQAREPRLAYNVLLDFYSQPFAKKVVLTTTLCPFSIVAYKNHTLTQAELSELLQVMHKNGVPLTFKFCSAMVMHYVKMRDEKEHAPGTIRYSSGA--------------------------------------------------------------------------------------LKS---GIWL*" + } + ], + "YDR359C": [ + { + "revision": "040206", + "new_alignment": "MSSRPSSAVPNSASLSEDQSSDRSKFPKADDLIDERDRKLTELYCVSRLNQLLELTDENKLRKEIDAFLKKNDIRRGIRFDEASLPKLLHTAATPITKKKLKDVNLINVPNQRLSDSKMSRELPENSENVSVKSESHFVPSHDNSIRENMMDSLRPAEKTGGMWNKRPLESTMGGEEERHEKRQKMQSQSLESSNNSEMASLPISPRPPVPNALAHYTYYENIEYPPADPTEVQPAVKFKDPLIKNIMAKEIDTSDHYNENNVDALETVFLLMNDYIPSKIPQALPLAELKYMSQTLPLINLIPRAHKALTTNIINNALNEARITVVGSRIEELRRLGLWSLRQPKRFIDPWKQHNTHQNILLEEAKWMQADFKEGHKYKVAICTAMAQAIKDYWTYGEICCVKRKTLLPGKENKLSDDGRISEKSGRPSDTSRNDSDISIAGKDDIGIIANVDDITEKESAAANDNDENGKNEAGAKSDFDFADGLLSQEGAHDQIISSIDTKLLLKKPSSSSEVVLIQHEVAASSALIETEESKKELAPPFKLSIFVDELNTFEKTLIQDLPLYNGINEERPKKDDSLPFIPISKSVVSLDDNGFYKLLERQLIDEEPSISQLSKRRGMFYGNRRNHYLRPPAVPSLRYLQNRTPTIWLSEDDQELVKNINTYGYNWELISAHMTHRLTYSYLSNIERRTPWQCFERFVQLNERFNFSDLKGPRAHSAQQWLIEAHKFQQRQNRRISPLGVNTESIQRGHRRLRWASMFEAIRKCMKKRENTPRPNPTQPRKPLDCKNMKVPTPAEMSLLKAQRDEALRRDIQLRRTVKNRLQQRQQQSQQAHSSRAQSPIPSNGKSSSNLARNGQASAPRPNQKQYTEQDIIESYSRKLLEQKPDIGPEMALKAAKNYYRTLREQQQQLKQHQIQQQRQQLQEESSHVQQLQQLQPGSQAPPPKSSPSQSSLSNISNINSAPRIKSPTPQEILQRFQKQ*-------------------", + "old_alignment": "MSSRPSSAVPNSASLSEDQSSDRSKFPKADDLIDERDRKLTELYCVSRLNQLLELTDENKLRKEIDAFLKKNDIRRGIRFDEASLPKLLHTAATPITKKKLKDVNLINVPNQRLSDSKMSRELPENSENVSVKSESHFVPSHDNSIRENMMDSLRPAEKTGGMWNKRPLESTMGGEEERHEKRQKMQSQSLESSNNSEMASLPISPRPPVPNALAHYTYYENIEYPPADPTEVQPAVKFKDPLIKNIMAKEIDTSDHYNENNVDALETVFLLMNDYIPSKIPQALPLAELKYMSQTLPLINLIPRAHKALTTNIINNALNEARITVVGSRIEELRRLGLWSLRQPKRFIDPWKQHNTHQNILLEEAKWMQADFKEGHKYKVAICTAMAQAIKDYWTYGEICCVKRKTLLPGKENKLSDDGRISEKSGRPSDTSRNDSDISIAGKDDIGIIANVDDITEKESAAANDNDENGKNEAGAKSDFDFADGLLSQEGAHDQIISSIDTKLLLKKPSSSSEVVLIQHEVAASSALIETEESKKELAPPFKLSIFVDELNTFEKTLIQDLPLYNGINEERPKKDDSLPFIPISKSVVSLDDNGFYKLLERQLIDEEPSISQLSKRRGMFYGNRRNHYLRPPAVPSLRYLQNRTPTIWLSEDDQELVKNINTYGYNWELISAHMTHRLTYSYLSNIERRTPWQCFERFVQLNERFNFSDLKGPRAHSAQQWLIEAHKFQQRQNRRISPLGVNTESIQRGHRRLRWASMFEAIRKCMKKRENTPRPNPTQPRKPLDCKNMKVPTPAEMSLLKAQRDEALRRDIQLRRTVKNRLQQRQQQSQQAHSSRAQSPIPSNGKSSSNLARNGQASAPRPNQKQYTEQDIIESYSRKLLEQKPDIGPEMALKAAKNYYRTLREQQQQLKQHQIQQQRQQLQEESSHVQQLQQLQPGS------------------------------------------SSSATEIISISIFSFQYF*" + } + ], + "YDR360W": [ + { + "revision": "110203", + "new_alignment": "MGVAAVCRSFGSDASSNLIPLRISFFFKNASISFRSLFSSVNSSSWFKRDTQYSSVSFLSLSSIKSSALGNLLLSLLWSSLSDAELGTAELGREDIFEAETVLLIMMSLNNLYILSVRRLTPTGNSRPLKISRLQQVRKNPYPF*--------", + "old_alignment": "MGVAAVCRSFGSDASSNLIPLRISFFFKNASISFRSLFSSVNSSSWFKRDTQYSSVSFLSLSSIKSSALGNLLLSLLWSSLSDAELGTAELGREDIFEAETVLLIMMSLNNLYILSVRRLT------------------------LRVIAGL*" + } + ], + "YDR378C": [ + { + "revision": "051123", + "new_alignment": "-------------------------------------MSGKASTEGSVTTEFLSDIIGKTVNVKLASGLLYSGRLESIDGFMNVALSSATEHYESNNNKLLNKFNSDVFLRGTQVMYISEQKI*", + "old_alignment": "MPNKQRRSNPFNNAQDAILTRKYGIAQYKQNKQRLLVMSGKASTEGSVTTEFLSDIIGKTVNVKLASGLLYSGRLESIDGFMNVALSSATEHYESNNNKLLNKFNSDVFLRGTQVMYISEQKI*" + } + ], + "YDR381C-A": [ + { + "revision": "040206", + "new_alignment": "MSNPFQNIG-KNLLYISAAGIASIYVVKTIVKARRDAKFIPKARGNNGEVNEKNYYDNLAQVKPGFPIPKDGGDNIDCSEDHQLVRKSKYEGSGLSAVTRKRGDKLGFLDRRRNE*", + "old_alignment": "MSNPFQNIGSKNLLYISAAGIASIYVVKTIVKARRDAKFIPKARGNNGEVNEKNYYDNLAQVKPGFPIPKDGGDNIDCSEDHQLVRKSKYEGSGLSAVTRKRGDKLGFLDRRRNE*" + } + ], + "YDR414C": [ + { + "revision": "110203", + "new_alignment": "MEKSESNSEGLYLQNILNVPPPQRFIVLIILALWIWTWILKFFLHSNLDVSQVILTRVPHDIRPGYTLQQLHRTARNFALKITRIIIPFHFATVFLFEFMNIIEGPLKNIILIVYFLPLIQCVTIFWFLLKECQIIKYCTRRCLLIESSPRSLRNTYILISDTLTSFAKPLIDFTLFTSLIFREPFTHFDLSVALLPVLVRLLQCLREYRLLHEATLLFNALKYSCNLPILFCTWRSRVYEGSINEERLHHVQRWFMLINSSYTLFWDVRMDWSLDSLTSLRSRSKSAVTLKKKMYHSAILVDFLLRFWWLWVYLSQNLKLVAADSDYIFFQGEMQYFEVIRRGIWVVFKLDAEYYIKFASK*", + "old_alignment": "MEKSESNSEGLYLQNILNVPPPQRFIVLIILALWIWTWILKFFLHSNLDVSQVILTRVPHDIRPGYTLQQLHRTARNFALKITRIIIPFHFATVFLFEFMNIIEGPLKNIILIVYFLPLIQCVTIFWFLLKECQIIKYCTRRCLLIESSPRSLRNTYILISDTLTSFGKPLIDFTLFTSLIFREPFTHFDLSVALLPVLVRLLQCLREYRLLHEATLLFNALKYSCNLPILFCTWRSRVYEGSINEERLHHVQRWFMLINSSYTLFWDVRMDWSLDSLTSLRSRSKSAVTLKKKMYHSAILVDFLLRFWWLWVYLSQNLKLVAADSDYIFFQGEMQYFEVIRRGIWVVFKLDAEYYIKFASK*" + } + ], + "YDR422C": [ + { + "revision": "060414", + "new_alignment": "------------------------------------------------MGNSPSTQDPSHSTKKEHGHHFHDAFNKDRQGSITSQLFNNRKSTHKRRASHTSEHNGAIPPRMQLLASHDPSTDCDGRMSSDTTIDKGPSHLFKKDYSLSSAADVNDTTLANLTLSDDHDVGAPEEQVKSPSFLSPGPSMATVKRTKSDLDDLSTLNYTMVDETTENERNDKPHHERHRSSIIALKKNLLESSATASPSPTRSSSVHSASLPALTKTDSIDIPVRQPYSKKPSIHAYQYQYLNNDETFSENSQMDKEGNSDSVDAEAGVLQSEDMVLNQSLLQNALKKDMQRLSRVNSSNSMYTAERISHANNNGNIENNTRNKGNAGGSNDDFTAPISATAKMMMKLYGDKTLMERDLNKHHNKTKKAQNKKIRSVSNSRRSSFASLHSLQSRKSILTNGLNLQPLHPLHPIINDNESQYSAPQHREISHHSNSMSSMSSISSTNSTENTLVVLKWKDDGTVAATTEVFIVSTDIASALKEQRELTLDENASLDSEKQLNPRIRMVYDDVHKEWFVPDLFLPAGIYRLQFSINGILTHSNFLPTATDSEGNFVNWFEVLPGYHTIEPFRNEADIDSQVEPTLDEELPKRPELKRFPSSSRKSSYYSAKGVERPSTPFSDYRGLSRSSSINMRDSFVRLKASSLDLMAEVKPERLVYSNEIPNLFNIGDGSTISVKGDSDDVHPQEPPSFTHRVVDCNQDDLFATLQQGGNIDAETAEAVFLSRYPVPDLPIYLNSSYLNRILNQSNQNSESHERDEGAINHIIPHVNLNHLLTSSIRDEIISVACTTRYEGKFITQVVYAPCYYKTQKSQISN*", + "old_alignment": "MVDISDTSGYLHKQGVLPSVSFICTSFFACGLTSWKVELSYYIVVAAAMGNSPSTQDPSHSTKKEHGHHFHDAFNKDRQGSITSQLFNNRKSTHKRRASHTSEHNGAIPPRMQLLASHDPSTDCDGRMSSDTTIDKGPSHLFKKDYSLSSAADVNDTTLANLTLSDDHDVGAPEEQVKSPSFLSPGPSMATVKRTKSDLDDLSTLNYTMVDETTENERNDKPHHERHRSSIIALKKNLLESSATASPSPTRSSSVHSASLPALTKTDSIDIPVRQPYSKKPSIHAYQYQYLNNDETFSENSQMDKEGNSDSVDAEAGVLQSEDMVLNQSLLQNALKKDMQRLSRVNSSNSMYTAERISHANNNGNIENNTRNKGNAGGSNDDFTAPISATAKMMMKLYGDKTLMERDLNKHHNKTKKAQNKKIRSVSNSRRSSFASLHSLQSRKSILTNGLNLQPLHPLHPIINDNESQYSAPQHREISHHSNSMSSMSSISSTNSTENTLVVLKWKDDGTVAATTEVFIVSTDIASALKEQRELTLDENASLDSEKQLNPRIRMVYDDVHKEWFVPDLFLPAGIYRLQFSINGILTHSNFLPTATDSEGNFVNWFEVLPGYHTIEPFRNEADIDSQVEPTLDEELPKRPELKRFPSSSRKSSYYSAKGVERPSTPFSDYRGLSRSSSINMRDSFVRLKASSLDLMAEVKPERLVYSNEIPNLFNIGDGSTISVKGDSDDVHPQEPPSFTHRVVDCNQDDLFATLQQGGNIDAETAEAVFLSRYPVPDLPIYLNSSYLNRILNQSNQNSESHERDEGAINHIIPHVNLNHLLTSSIRDEIISVACTTRYEGKFITQVVYAPCYYKTQKSQISN*" + } + ], + "YDR470C": [ + { + "revision": "110203", + "new_alignment": "MNNNNVTEATSRAQIRPYYDPDSFNAGYSAVFKPDEGVVDPHGYTIASKLNVINSSPTTKRMANALFKSSPMKKLSNSVNDGLSLEGSNGEITGLNNFEWAELVNIQKWRKIFEQLLDMFFRKYFQLLIQQPFDVARLLIQVGEFKIFKTTVDTNKPQAPIILRDEEGDGAAREGEEDAYDEEEIDFFPIERKIAEANSTAPIMAEETDHSHHEPTDISLTIAPQSLHTIDVINALFDQEGIRGLWKANNTTFIYNFLSLSIDTWFTGLLSSFLGVPDPYFMEVINSPDISKSFILALGAGVFTSIILLPVDLIRTRLIVTSFKKKKNVKTDGKNMVTNTRSLRQLIRCWSWRKNGVSIPLDMWSLTILQSINNSFFNKLFDLVIYNQFHIEKYSQTVMYNTMKFFSKSLELFIKLPLENLLRRCQLNYLLNDQRLSFKVDSTELIVKPKKYNGIWDVIRNNSNTNRGQLWNGWKVGVISLICGYGLQMMNKVDINMEQEKF*", + "old_alignment": "MNNNNVTEATSRAQIRPYYDPDSFNAGYSAVFKPDEGVVDPHGYTIASKLNVINSSPTTKRMANALFKSSPMKKLSNSVNDGLSLEGSNGEITGLNNFEWAELVNIQKWRKIFGQLLDMFFRKYFQLLIQQPFDVARLLIQVGEFKIFKTTVDTNKPQAPIILRDEEGDGAAREGEEDAYDEEEIDFFPIERKIAEANSTAPIMAEETDHSHHEPTDISLTIAPQSLHTIDVINALFDQEGIRGLWKANNTTFIYNFLSLSIDTWFTGLLSSFLGVPDPYFMEVINSPDISKSFILALGAGVFTSIILLPVDLIRTRLIVTSFKKKKNVKTDGKNMVTNTRSLRQLIRCWSWRKNGVSIPLDMWSLTILQSINNSFFNKLFDLVIYNQFHIEKYSQTVMYNTMKFFSKSLELFIKLPLENLLRRCQLNYLLNDQRLSFKVDSTELIVKPKKYNGIWDVIRNNSNTNRGQLWNGWKVGVISLICGYGLQMMNKVDINMEQEKF*" + } + ], + "YDR505C": [ + { + "revision": "110203", + "new_alignment": "MDLPTVNSTTSISDNVDLKNYYEDLLFKNNSGKSLSDLPRKLNDNSNNSGSDTVDPLAGLNNLRNSIKSAGNGMENRRTFDDIDFMGRFPYLPPVPNQQQQPFSHQNGFIQEHPSSNLTSFQMSSSNSEPMSAPPISSNNNNLNSTQMGNYQAQQRSFPQFNGNSFHSNGNDLMGNRMDSDYMRLMNKTNIGFTSNSGSNFAAPSHSAGNPSSMNNQQVPSFNWQQPSHPESTIRRSSYISDTLINHQMPDARQKQTSQVQQQHAQGFNLFNSRFNYDNLNSTHLTAKGVPEFGNGVQPPYPYDNEPNNASISNSNNNNNSHNMVPMQQFRRNTQPVASFNPSLPTFQQQQQQPQQPQQPRNVNVPTSFNGERVDDVQLVQLQRSSSVPSSTNSHNLQNENSNEGNVSLDNGLVLIQGKHLTSSKTLHDLYSDCGSGYFASSAVFEFTDNIKKMLKLHDSNESYDAKNMGLIDEEGNTYQSLLNFLDILRSCNMNYVNDPESNNGIVSNNGGNKNRRKGSFTTELSCRNANNSFLPYTPLVLVALKNGKLELLSTPQATNLLLKRGDLVIIDGDRGRDLVLVVEPSVDLNLALFINFLKKKIHFDSLITSESQHYRNDEFIQMLIDSKNGQKKKLNPKLYDVVELTELIIPSKQVLRFATPWEVTTNLHNKFEDELKALHIAQSKLQALNDNSKSQNTNDSSSNNFTNAATYSKPKLNIKILNAEFQFDRKKLTFYYVCEERNDFRDLIKELFKYYKTRIWLCAIPNNLSIDSKYYDKQQKELKLYQNIVKNYNAEDLMNVNEFSQNRGNNRVNFAPPLNEIELDNFQIAVYEELVHELFH*", + "old_alignment": "MDLPTVNSTTSISDNVDLKNYYEDLLFKNNSGKSLSDLPRKLNDNSNNSGSDTVDPLAGLNNLRNSIKSAGNGMENRRTFDDIDFMGRFPYLPPVPNQQQQPFSHQNGFIQEHPSSNLTSFQMSSSNSEPMSAPPISSNNNNLNSTQMGNYQAQQRSFPQFNGNSFHSNGNDLMGNRMDSDYMRLMNKTNIGFTSNSGSNFAAPSHSAGNPSSMNNQQVPSFNWQQPSHPESTIRRSSYISDTLINHQMPDARQKQTSQVQQQHAQGFNLFNSRFNYDNLNSTHLTAKGVPEFGNGVQPPYPYDNEPNNASISNSNNNNNSHNMVPMQQFRRNTQPVASFNPSLPTFQQQQQQPQQPQQPRNVNVPTSFNGERVDDVQLVQLQRSSSVPSSTNSHNLQNENSNEGNVSLDNGLVLIQGKHLTSSKTLHDLYSDCGSGYFASSAVFEFTDNIKKMLKLHDSNESYDAKNMGLIDEEGNTYQSLLNFLDILRSCNMNYVNDPESNNGIVSNNGGNKNRRKGSFTTELSCRNANNSFLPYTPLVLVALKNGKLELLSTPQATNLLLKRGDLVIIDGDRGRDLVLVVEPSVDLNLALFINFLKKKIHFDSLITSESQHYRNDEFIQMLIDSKNGQKKKLNPKLYDVVELTELIIPSKQVLRFATPWEVTTNLHNKFEDELKALHIAQSKLQALNDNSKSQNTNDSSSNNFTNAATYSKPKLNIKILNAEFQFDRKELTFYYVCEERNDFRDLIKELFKYYKTRIWLCAIPNNLSIDSKYYDKQQKELKLYQNIVKNYNAEDLMNVNEFSQNRGNNRVNFAPPLNEIELDNFQIAVYEELVHELFH*" + } + ], + "YDR527W": [ + { + "revision": "110203", + "new_alignment": "MDLLGDIVEKDTSDSVESNDNGTLSTNNCGTGFPELYKPKKISSWKERLREKRAQKKKTSGKDAEKQQTSTDAPLSEAKSIHNENIKVLQGMSDEQIVQEREDLYNSLDPKLIAKLLKNINKRAKDENNTPLFAEIEGASGTWVGGNKQGIYDLPPLDDEDVDVALEIRPMLGKDAKHVQFEEAGKEKDVEEEAKTNDDVDDIAPLDFQMAQCIDHMKNEELFKDVHFIKEESQNEINLEKLDINDPNFNDKLHEKYFPDLPKEVDKLKWMQPVQQKTDKNYIIEDVSECRFDFNGDLVPPTRQIDSTIHSGLHHHSDSPELAGYTIVELEHLARSTFPSQRCIAIQTLGRILYKLGQKSYYQLVPEIDADTYKEDGSISNVMDKIYSMFWDLIKDGKVIESLEISSDEKFTRNLSVRNYAIDALWLWKQGGGDFRTKK*", + "old_alignment": "MDLLGDIVEKDTSDSVESNDNGTLSTNNCGTGFPELYKPKKISSWKERLREKRAQKKKTSGKDAEKQQTSTDAPLSEAKSIHNENIKVLQGMSDEQIVQEREDLYNSLDPKLIAKLLKNINKRAKDENNTPLFAEIEGASGTWVGGNKQGIYDLPPLDDEDVDVALEIRPMLGKDAKHVQFEEAGKEKDVEGEGKTNDDVDDIAPLDFQMAQCIDHMKNEELFKDVHFIKEESQNEINLEKLDINDPNFNDKLHEKYFPDLPKEVDKLKWMQPVQQKTDKNYIIEDVSECRFDFNGDLVPPTRQIDSTIHSGLHHHSDSPELAGYTIVELEHLARSTFPSQRCIAIQTLGRILYKLGQKSYYQLVPEIDADTYKEDGSISNVMDKIYSMFWDLIKDGKVIESLEISSDEKFTRNLSVRNYAIDALWLWKQGGGDFRTKK*" + } + ], + "YDR541C": [ + { + "revision": "110203", + "new_alignment": "MSNTVLVSGASGFIALHILSQLLKQDYKVIGTVRSHEKEAKLLRQFQHNPNLTLEIVPDISHPNAFDKVLQKRGREIRYVLHTASPFHYDTTEYEKDLLIPALEGTKNILNSIKKYAADTVERVVVTSSCTAIITLAKMDDPSVVFTEESWNEATWESCQIDGINAYFASKKFAEKAAWEFTKENEDHIKFKLTTVNPSLLFGPQLFDEDVHGHLNTSCEMINGLIHTPVNASVPDFHSIFIDVRDVALAHLYAFQKENTAGKRLVVTNGKFGNQDILDILNEDFPQLRGLIPLGKPGTGDQVIDRGSTTDNSATRKILGFEFRSLHESVHDTAAQILKKQNRL*", + "old_alignment": "MSNTVLVSGASGFIALHILSQLLKQDYKVIGTVRSHEKEAKLLRQFQHNPNLTLEIVPDISHPNAFDKVLQKRGREIRYVLHTASPFHYDTTEYEKDLLIPALEGTKNILNSIKKYAADTVERVVVTSSCTAIITLAKMDDPSVVFTEESWNEATWESCQIDGINAYFASKKFAEKAAWEFTKENEDHIKFKLTTVNPSLLFGPQLFDEDVHGHLNTSCEMINGLIHTPVNASVPDFHSIFIDVRDVALAHLYAFQKENTAGKRLVVTNGKFGNQDILDILNEDFPQLRGLIPLGKPGTGDQVIDRGSTTDNSATRKILGFEFRSLHESVHDTAAQILKKENRL*" + } + ], + "YEL066W": [ + { + "revision": "210421", + "new_alignment": "------------------MSNEEPEKMVNDRIVVKAIEPKDEEAWNKLWKEYQGFQKTVMPPEVATTTFARFIDPTVKLWGALAFDTETGDAIGFAHYLNHLTSWHVEEVVYMNDLYVTERARVKGVGRKLIEFVYSRADELGTPAVYWVTDHYNHRAQLLYTKVAYKTDKVLYKRNGY*", + "old_alignment": "MKKTPDPSPPFASTKNVGMSNEEPEKMVNDRIVVKAIEPKDEEAWNKLWKEYQGFQKTVMPPEVATTTFARFIDPTVKLWGALAFDTETGDAIGFAHYLNHLTSWHVEEVVYMNDLYVTERARVKGVGRKLIEFVYSRADELGTPAVYWVTDHYNHRAQLLYTKVAYKTDKVLYKRNGY*" + } + ], + "YEL038W": [ + { + "revision": "060512", + "new_alignment": "--------------MGDNYSTYLLDIEGTVCPISFVKETLFPYFTNKVPQLVQQDTRDSPVSNILSQFHIDNKEQLQAHILELVAKDVKDPILKQLQGYVWAHGYESGQIKAPVYADAIDFIKRKKRVFIYSSGSVKAQKLLFGYVQDPNAPAHDSLDLNSYIDGYFDINTSGKKTETQSYANILRDIGAKASEVLFLSDNPLELDAAAGVGIATGLASRPGNAPVPDGQKYQVYKNFETL*", + "old_alignment": "MVIGQKVLLARIPKMGDNYSTYLLDIEGTVCPISFVKETLFPYFTNKVPQLVQQDTRDSPVSNILSQFHIDNKEQLQAHILELVAKDVKDPILKQLQGYVWAHGYESGQIKAPVYADAIDFIKRKKRVFIYSSGSVKAQKLLFGYVQDPNAPAHDSLDLNSYIDGYFDINTSGKKTETQSYANILRDIGAKASEVLFLSDNPLELDAAAGVGIATGLASRPGNAPVPDGQKYQVYKNFETL*" + } + ], + "YEL003W": [ + { + "revision": "070713", + "new_alignment": "MEQRNN------------------VFQAKYNEYKQILEELQTKIIELGHDKDEHTIVIKTLKDAEPTRKCYRMIGGALVESDVQTSLPILETKKENIEGTISKMKETLIQTAKEFEKWKKDNKIQVVKN*", + "old_alignment": "------MHVANFILLTIFVFSLCIVFQAKYNEYKQILEELQTKIIELGHDKDEHTIVIKTLKDAEPTRKCYRMIGGALVESDVQTSLPILETKKENIEGTISKMKETLIQTAKEFEKWKKDNKIQVVKN*" + } + ], + "YER030W": [ + { + "revision": "051202", + "new_alignment": "-------MSDEAKEKRELESQKESSHNKSEKSVEPKPKRRRRRNYDDYDAEVAKEETKAKNGLTKSENNGTVEDSESDMDDAKLDALMGNEGEEEEDDLAEIDTSNIITSGRRTRGKVIDYKKTAEELDKKEPSTGSKDDVGYGEKEEDDEDEEDDDFKE*", + "old_alignment": "MEGKREIMSDEAKEKRELESQKESSHNKSEKSVEPKPKRRRRRNYDDYDAEVAKEETKAKNGLTKSENNGTVEDSESDMDDAKLDALMGNEGEEEEDDLAEIDTSNIITSGRRTRGKVIDYKKTAEELDKKEPSTGSKDDVGYGEKEEDDEDEEDDDFKE*" + } + ], + "YER041W": [ + { + "revision": "110203", + "new_alignment": "MGVSQIWEFLKPYLQDSRIPLRKFVIDFNKSQKRAPRIAIDAYGWLFECGFIQNIDISARSRSRSRSPTRSPRDSDIDSSQEYYGSRSYTTTGKAVINFISRLKELLSLNVEFLLVFDGVMKPSFKRKFNHEQNATTCDDEKEYYSSWEQHVKNHEVYGNCKGLLAPSDPEFISLVRKLLDLMNISYVIACGEGEAQCVWLQVSGAVDFILSNDSDTLVFGGEKILKNYSKFYDDFGPSSITSHSPSRHHDSKESFVTVIDLPKINKVAGKKFDRLSLLFFSVLLGADYNRGVKGLGKNKSLQLAQCEDPNFSMEFYDIFKDFNLEDLTSESLRKSRYRLFQKRLYLYCKDHSVELFGRNYPVLLNQGSFEGWPSTVAIMHYFHPIVQPYFDEEVLSDKYINMAGNGHYRNLNFNELKYFLQSLNLPQISSFDKWFHDSMHEMFLLREFLSIDESDNIGKGNMRITEEKIMNIDGGKFQIPCFKIRYTTFLPNIPISSQSPLKRSNSPSRSKSPTRRQMDIMEHPNSLWLPKYLIPQSHPLVIQYYETQQLIQKEKEKKGKKSNKSRLPQKNNLDEFLRKHTSPIKSIGKVGESRKEILEPVRKRLFVDTDEDTSLEEIPAPTRLTTVDEHSDNDDDSLIFVDEITNSQSVLDSSPGKRIRDLTQDEQVDVWKDVIEISPIKKSRTTNAEKNPPESGLKSRSSITINARLQGTKMLPPNLTAPRLEREHSSVLDQLVTDAQDTVDRFVACDSDSSSTIE*", + "old_alignment": "MGVSQIWEFLKPYLQDSRIPLRKFVIDFNKSQKRAPRIAIDAYGWLFECGFIQNIDISPRSRSRSRSPTRSPRDSDIDSSQEYYGSRSYTTTGKAVINFISRLKELLSLNVEFLLVFDGVMKPSFKRKFNHEQNATTCDDEKEYYSSWEQHVKNHEVYGNCKGLLAPSDPEFISLVRKLLDLMNISYVIACGEGEAQCVWLQVSGAVDFILSNDSDTLVFGGEKILKNYSKFYDDFGPSSITSHSPSRHHDSKESFVTVIDLPKINKVAGKKFDRLSLLFFSVLLGADYNRGVKGLGKNKSLQLAQCEDPNFSMEFYDIFKDFNLEDLTSESLRKSRYRLFQKRLYLYCKDHSVELFGRNYPVLLNQGSFEGWPSTVAIMHYFHPIVQPYFDEEVLSDKYINMAGNGHYRNLNFNELKYFLQSLNLPQISSFDKWFHDSMHEMFLLREFLSIDESDNIGKGNMRITEEKIMNIDGGKFQIPCFKIRYTTFLPNIPISSQSPLKRSNSPSRSKSPTRRQMDIMEHPNSLWLPKYLIPQSHPLVIQYYETQQLIQKEKEKKGKKSNKSRLPQKNNLDEFLRKHTSPIKSIGKVGESRKEILEPVRKRLFVDTDEDTSLEEIPAPTRLTTVDEHSDNDDDSLIFVDEITNSQSVLDSSPGKRIRDLTQDEQVDVWKDVIEISPIKKSRTTNAEKNPPESGLKSRSSITINARLQGTKMLPPNLTAPRLEREHSSVLDQLVTDAQDTVDRFVACDSDSSSTIE*" + } + ], + "YER050C": [ + { + "revision": "051202", + "new_alignment": "----------------------------------------------------------------MQPIIKGAVSSTFKRALYNFGIKEKKSVNIEMGRTQQTKKIDQSLSKKLPKGTIYDPFDFSMGRIHLDRKYQANKNSNRNDIMKSGANPLEFYARPRILSRYVTSTGRIQHRDITGLSAKNQRRLSKAIRRCQAIGLM*", + "old_alignment": "MFYYAFKLHCRVTCWGKKYLGLLYILKYESIINSVTVLTKKARFYTKLRMFKMNATTGIKIQNGMQPIIKGAVSSTFKRALYNFGIKEKKSVNIEMGRTQQTKKIDQSLSKKLPKGTIYDPFDFSMGRIHLDRKYQANKNSNRNDIMKSGANPLEFYARPRILSRYVTSTGRIQHRDITGLSAKNQRRLSKAIRRCQAIGLM*" + } + ], + "YER061C": [ + { + "revision": "110203", + "new_alignment": "MSRRVVITGLGCVTPLGRSLSESWGNLLSSKNGLTPITSLPNYNEDYKLREKSIPSTITVGKIPENFQNENSAINKLLFTSQDERRTSSFIKLALRTTYEALHNAGLLNPNDITINTSLCNLDHFGCLIGSGIGSIQDIYQTSLQFHNDNKRINPYFVPKILTNMAAGNVSIKFNLRGLSHSVSTACATGNNSIGDAFNFIRLGMQDICVAGASETSLHPLSLAGFIRAKSITTNGISRPFDTQRSGFVLGEGCGMIVMESLEHAQKRNANIISELVGYGLSSDACHITSPPADGNGAKRAIEMALKMARLEPTDVDYVNAHATSTLLGDKAECLAVASALLPGRSKSKPLYISSNKGAIGHLLGAAGAVESIFTICSLKDDKMPHTLNLDNVLTLENNEADKLHFIRDKPIVGANPKYALCNSFGFGGVNTSLLFKKWEGS*", + "old_alignment": "MSRRVVITGLGCVTPLGRSLSESWGNLLSSKNGLTPITSLPNYNEDYKLREKSIPSTITVGKIPENFQNENSAINKLLFTSQDERRTSSFIKLALRTTYEALHNAGLLNPNDITINTSLCNLDHFGCLIGSGIGSIQDIYQTSLQFHNDNKRINPYFVPKILTNMAAGNVSIKFNLRGLSHSVSTACATGNNSIGDAFNFIRLGMQDICVAGASETSLHPLSLAGFIRAKSITTNGISRPFDTQRSGFVLGEGCGMIVMESLEHAQKRNANIISELVGYGLSSDACHITSPPADGNGAKRAIEMALKMARLEPTDVDYVNAHATSTLLGDKAECLAVASALLPGRSKSKPLYISSNKGAIGHLLGARGAVESIFTICSLKDDKMPHTLNLDNVLTLENNEADKLHFIRDKPIVGANPKYALCNSFGFGGVNTSLLFKKWEGS*" + } + ], + "YER073W": [ + { + "revision": "110203", + "new_alignment": "MLSRTRAAAPNSRIFTRSLLRLYSQAPLRVPITLPNGFTYEQPTGLFINGEFVASKQKKTFDVINPSNEEKITTVYKAMEDDVDEAVAAAKKAFETKWSIVEPEVRAKALFNLADLVEKHQETLAAIESMDNGKSLFCARGDVALVSKYLRSCGGWADKIYGNVIDTGKNHFTYSIKEPLGVCGQIIPWNFPLLMWSWKIGPALATGNTVVLKPAETTPLSALFASQLCQEAGIPAGVVNILPGSGRVVGERLSAHPDVKKIAFTGSTATGRHIMKVAADTVKKVTLELGGKSPNIVFADADLDKAVKNIAFGIFYNSGEVCCAGSRIYIQDTVYEEVLQKLKDYTESLKVGDPFDEEVFQGAQTSDKQLHKILDYVDVAKSEGARLVTGGARHGSKGYFVKPTVFADVKEDMRIVKEEVFGPIVTVSKFSTVDEVIAMANDSQYGLAAGIHTNDINKAVDVSKRVKAGTVWINTYNNFHQNVPFGGFGQSGIGREMGEAALSNYTQTKSVRIAIDKPIR*", + "old_alignment": "MLSRTRAAAPNSRIFTRSLLRLYSQAPLRVPITLPNGFTYEQPTGLFINGEFVASKQKKTFDVINPSNEEKITTVYKAMEDDVDEAVAAAKKAFETKWSIVEPEVRAKALFNLADLVEKHQETLAAIESMDNGKSLFCARGDVALVSKYLRSCGGWADKIYGNVIDTGKNHFTYSIKEPLGVCGQIIPWNFPLLMWSWKIGPALATGNTVVLKPAETTPLSALFASQLCQEAGIPAGVVNILPGSGRVVGERLSAHPDVKKIAFTGSTATGRHIMKVAADTVKKVTLELGGKSPNIVFADADLDKAVKNIAFGIFYNSGEVCCAGSRIYIQDTVYEEVLQKLKDYTESLKVGDPFDEEVFQGAQTSDKQLHKILDYVDVAKSEGARLVTGGARHGSKGYFVKPTVFADVKGDMRIVKEEVFGPIVTVSKFSTVDEVIAMANDSQYGLAAGIHTNDINKAVDVSKRVKAGTVWINTYNNFHQNVPFGGFGQSGIGREMGEAALSNYTQTKSVRIAIDKPIR*" + } + ], + "YER074W-A": [ + { + "revision": "040112", + "new_alignment": "MVLFGLGRLFYVILLLINAVAVLSEERFLRRI-GLGRSNDETPVFGQDQNTTKSKVVQLIGAVQTLLRI-PLIGINILVIVYELLLG*", + "old_alignment": "MVLFGLGRLFYVILLLINAVAVLSEERFLRRRVGLGRSNDETPVFGQDQNTTKSKVVQLIGAVQTLLRRVPLIGINILVIVYELLLG*" + } + ], + "YER075C": [ + { + "revision": "110203", + "new_alignment": "MKDSVDCPSILPTDRTSVLSETSTLVGSSSHVYSRHAPMNSYHNSMNSNIYHSPKASSPLVSYKTSSPVLLKRATAPVLPSFKPKEQRYNKPQGCSLITAVELGKIIETLPDEKVLLLDVRPFTEHAKSIITNSIHVCLPSTLLRRKNFTFSKLLDNLTPSEQSVLKSKLAIDNLRIIIYDSTANQTESSVSLPCYGIASKLIEFDTNVKKTVSILMCGFPQFKILFPDHINTNTFNSDCISSAEPKSPKTNLMNSLHNTAPHMTATTPLSSPQMNLKLKVPDDSRSDHSNFSSSPSPRNVLSDSPMSSSSPISALFKFQLPAPQTNINQMFKFSQNEEIMGLETYLSAVNIKEEHERWYNNDSAKKSLQNFQFPKNQNSLEKDTNKDKLGFQIRYENLSKNYEKEVIDSVIPEWFQHLMSIPKIELVSQFQKLDFLEKRRLNHSVSFRKKENSFILEKPSSYPEQLTSTSSSTIMPPKFPDVNKVQKRSHSQPIFTQYSKYKSMLSLESDSDSESDDVIISSGVELGAKNRYKDIFPYEHSRVILKKGLQSSKGIKHSHSTSDGGILDNYINANYLSLPRFSVEQNSSFQTTTTTTRRVRYIATQAPMPSTVHDFYTCILNNGVPLVLSLTNDFENGIEKCYRYWQEGNYNGIHVKLLEKKILKMPSTTSMRKNTMGTQNSSLYSAGVQGNSSNYSTDNDNDNDNNNNNNNNSNIAVTAAACDDDDDDDDDAILIRKILLTYHDQEKPYELLQIQVKNWPDLGTLLNPISILQAINVKNHIIDTLFARNYYQNDQLPTILVHCSAGCGRTGTLCTIDSILSNFEMFEMLQKEFVKLKYPAKLFDPISWTINIFRKQRISMVQNINQFIFIYDCLLFYFRLRLDDITERTDGDGSNKDNISLSALIEQIEKLEILQTFVDDKLKELPQ*", + "old_alignment": "MKDSVDCPSILPTDRTSVLSETSTLVGSSSHVYSRHAPMNSYHNSMNSNIYHSPKASSPLVSYKTSSPVLLKRATAPVLPSFKPKEQRYNKPQGCSLITAVELGKIIETLPDEKVLLLDVRPFTEHAKSIITNSIHVCLPSTLLRRKNFTFSKLLDNLTPSEQSVLKSKLAIDNLRIIIYDSTANQTESSVSLPCYGIASKLIEFDTNVKKTVSILMCGFPQFKILFPDHINTNTFNSDCISSAEPKSPKTNLMNSLHNTAPHMTATTPLSSPQMNLKLKVPDDSRSDHSNFSSSPSPRNVLSDSPMSSSSPISALFKFQLPAPQTNINQMFKFSQNEEIMGLETYLSAVNIKEEHERWYNNDSAKKSLQNFQFPKNQNSLEKDTNKDKLGFQIRYENLSKNYEKEVIDSVIPEWFQHLMSIPKIELVSQFQKLDFLEKRRLNHSVSFRKKENSFILEKPSSYPEQLTSTSSSTIMPPKFPDVNKVQKRSHSQPIFTQYSKYKSMLSLESDSDSESDDVIISSGVELGAKNRYKDIFPYEHSRVILKKGLQSSKGIKHSHSTSDGGILDNYINANYLSLPRFSVEQNSSFQTTTTTTRRVRYIATQAPMPSTVHDFYTCILNNGVPLVLSLTNDFENGIEKCYRYWQEGNYNGIHVKLLEKKILKMPSTTSMRKNTMGTQNSSLYSAGVQGNSSNYSTDNDNDNDNNNNNNNNSNIPVTAAACDDDDDDDDDAILIRQILLTYHDQEKPYELLQIQVKNWPDLGTLLNPISILQAINVKNHIIDTLFARNYYQNDQLPTILVHCSAGCGRTGTLCTIDSILSNFEMFEMLQKEFVKLKYPAKLFDPISWTINIFRKERISMVQNINQFIFIYDCLLFYFRLRLDDITERTDGDGSNKDNISLSALIEQIEKLEILQTFVDDKLKELPQ*" + } + ], + "YER162C": [ + { + "revision": "110203", + "new_alignment": "MNEDLPKEYFELIRKALNEKEAEKAPLSRRRRVRRKNQPLPDAKKKFKTGLNELPRESVVTVNLDSSDDGVVTVPTDDSVEEIQSSEEDYDSEEFEDVTDGNEVAGVEDISVEIKPSSKRNSDARRTSRNVCSNEERKRRKYFHMLYLVCLMVHGFIRNEWINSKRLSRKLSNLVPEKVFELLHPQKDEELPLRSTRKLLDGLKKCMELWQKHWKITKKYDNVGLYMRTWKEIEMSANNKRKFKTLKRSDFLRAVSKGHGDPDISVQGFVAMLRACNVNARLIMSCQPPDFTNMKIDTSLNGNNAYKDMVKYPIFWCEVWDKFSKKWITVDPVNLKTIEQVRLHSKLAPKGVACCERNMLRYVIAYDRKYGCRDVTRRYAQWMNSKVRKRRITKDDFGEKWFRKVITALHHRKRTKIDDYEDQYFFQRDESEGIPDSVQDLKNHPYYVLEQDIKQTQIVKPGCKECGYLKVHGKVGKVLKVYAKRDIADLKSARQWYMNGRILKTGSRCKKVIKRTVGRPKGEAEEEDERLYSFEDTELYIPPLASASGEITKNTFGNIEVFAPTMIPGNCCLVENPVAIKAARFLGVEFAPAVTSFKFERGSTVKPVLSGIVVAKWLREAIETAIDGIEFIQEDDNRKEHLLGALESWNTLLLKLRIRSKLNSTYGKIAEEEPNVTKEQNIADNHDNTETFMGGGFLPGIANHEARPYSEPSEPEDSLDYVSVDKAEESATDDDVGEDYSDFMKELEMSEESD*", + "old_alignment": "MNEDLPKEYFELIRKALNEKEAEKAPLSRRRRVRRKNQPLPDAKKKFKTGLNELPRESVVTVNLDSSDDGVVTVPTDDSVEEIQSSEEDYDSEEFEDVTDGNEVAGVEDISVEIKPSSKRNSDARRTSRNVCSNEERKRRKYFHMLYLVCLMVHGFIRNEWINSKRLSRKLSNLVPEKVFELLHPQKDEELPLRSTRKLLDGLKKCMELWQKHWKITKKYDNEGLYMRTWKEIEMSANNKRKFKTLKRSDFLRAVSKGHGDPDISVQGFVAMLRACNVNARLIMSCQPPDFTNMKIDTSLNGNNAYKDMVKYPIFWCEVWDKFSKKWITVDPVNLKTIEQVRLHSKLAPKGVACCERNMLRYVIAYDRKYGCRDVTRRYAQWMNSKVRKRRITKDDFGEKWFRKVITALHHRKRTKIDDYEDQYFFQRDESEGIPDSVQDLKNHPYYVLEQDIKQTQIVKPGCKECGYLKVHGKVGKVLKVYAKRDIADLKSARQWYMNGRILKTGSRCKKVIKRTVGRPKGEAEEEDERLYSFEDTELYIPPLASASGEITKNTFGNIEVFAPTMIPGNCCLVENPVAIKAARFLGVEFAPAVTSFKFERGSTVKPVLSGIVVAKWLREAIETAIDGIEFIQEDDNRKEHLLGALESWNTLLLKLRIRSKLNSTYGKIAEEEPNVTKEQNIADNHDNTETFMGGGFLPGIANHEARPYSEPSEPEDSLDYVSVDKAEESATDDDVGEDYSDFMKELEMSEESD*" + } + ], + "YFL056C": [ + { + "revision": "141118", + "new_alignment": "MADLFAPAPEPSTELGRLRVLSKSAGIRVSPLILGGMSIGDAWSEILGSMSKERAFELLDAFYEAGGNFIDTANNYQNEQSEAWIGEWMVSRKLRDQIVIATKFTTDYKKYDVGGGKSANYCGNHKRSLHVSVRDSLRKLQTDWIDILYVHWWDYMSSIEEVMDSLHILVQQARSSIWVCLIRLPGLFLRQITTLNLMVKPLLASIKVNGTC*TETSNVISFQWLGISVWPSPHGMSWEVEDFRVKKQWRNGGRMERVFVLSLAPLNKQMQKSRLVKHWPRLLRNMALNLLLLLLLPMFALRRKMFFHWLEEGKLNTSNRTLRL*ALN*HQNK*ST*KVLFLLMLVFLLILSVMIRLLPRRLHFSRQCLRRFPSI", + "old_alignment": "MADLFAPAPEPSTELGRLRVLSKSAGIRVSPLILGGMSIGDAWSEILGSMSKERAFELLDAFYEAGGNFIDTANNYQNEQSEAWIGEWMVSRKLRDQIVIATKFTTDYKKYDVGGGKSANYCGNHKRSLHVSVRDSLRKLQTDWIDILYVHWWDYMSSIEEVMDSLHILVQQARSSIWVCLIRLPGLFLRQITTLNLMVKPLLASIKVNGTC*------------------------------------------------------------------------------------------------------------------------------------------------------------------" + } + ], + "YFL034W": [ + { + "revision": "110203", + "new_alignment": "MSDSEEDLGVQLKGLKIARHLKESGEHTDEESNSSPEHDCGLSNQDDLTVMHTQAKEEVFKRREEDGTRTEDALHEGEAGKEGTGFPSSQSVCSPNEADSGIDRADKPILLDPFKSVHDTDPVPGTKSRSNSDSDSDSDDGGWQEMPAVSSFNIYNHRGELELTSKVRNSEQASETSPTVPPGKNCKSVNDSRFDYTKMAAEQQAQRSYRTNKKTDFLFDHKVLKKKINSSQTSVNLTSSPSTTSLNNEKNNDDDDDDSYDEYEDDVEPVNDLNRDSQLNITKNLLSDMEKFAYVGAINILANQMCTNLATLCLCIDIKSHKKLAHRLQFTQKDMAAWKTVVLSRLYDHLGISQEEIVMIEKLSLHKIQLEDLCKCLKTTQSIDNPWENDRDHEEDGIEETTERMSPNEQNGSVQASTPDPEQSATPETPKAKQSPLSSDVPGKVLDPENVKSQDKLNIDVAWTIICDLFLICLQSSTYDSRSRTLLINFAKVLNMTSLEICEFERRVTDSLDMEQSTEDQVWDEQDHMRNRRRSKRRKKMAYVALAMVGGSLVLGLSGGLLAPVIGGGIAAGLSTIGITGATSFLTGVGGTTVVAVSSTAIGANIGARGMSKRMGSVRTFEFRPLHNNRRVNLILTVSGWMVGNEDDVRLPFSTVDPVEGDLYSLYWEPEMLKSIGQTVSIVATEIFTTSLQQILGATVLTALISSIQWPMALSKLGYILDNPWNVSLDRAWSAGKILADTLIARNLGARPITLVGFSIGARVIFSCLIELCKKKALGLIENVYLFGTPAVMKKEQLVMARSVVSGRFVNGYSDKDWFLAYLFRAAAGGFSAVMGISTIENVEGIENINCTEFVDGHLNYRKSMPKLLKRIGIAVLSEEFVEIEEMMNPEEVKRKRKLINDVDAAQKKLSERKKHNSWVPKWLKPKKSKWKVMVEEAVEEGRDMQDLPENDVNNNENENPDEHEGIARQKRRDAALVDHGALMHELQLIKQAMHEDEIKNKACLPGEDKEVESSNDFLGESHYKPPSTPKINPPQSPNNFQLLSAGRTILPEDDDFDPRGKKKVEFSFPDDI*", + "old_alignment": "MSDSEEDLGVQLKGLKIARHLKESGEHTDEESNSSPEHDCGLSNQDDLTVMHTQAKEEVFKRREEDGTRTEDALHEGEAGKEGTGFPSSQSVCSPNEADSGIDRADKPILLDPFKSVHDTDPVPGTKSRSNSDSDSDSDDGGWQEMPAVSSFNIYNHRGELELTSKVRNSEQASETSPTVPPGKNCKSVNDSRFDYTKMAAEQQAQRSYRTNKKTDFLFDHKVLKKKINSSQTSVNLTSSPSTTSLNNEKNNDDDDDDSYDEYEDDVEPVNDLNRDSQLNITKNLLSDMEKFAYVGAINILANQMCTNLATLCLCIDIKSHKNLAHRLQFTQKDMAAWKTVVLSRLYDHLGISQEEIVMIEKLSLHKIQLEDLCKCLKTTQSIDNPWENDRDHEEDGIEETTERMSPNEQNGSVQASTPDPEQSATPETPKAKQSPLSSDVPGKVLDPENVKSQDKLNIDVAWTIICDLFLICLQSSTYDSRSRTLLINFAKVLNMTSLEICEFERRVTDSLDMEQSTEDQVWDEQDHMRNRRRSKRRKKMAYVALAMVGGSLVLGLSGGLLAPVIGGGIAAGLSTIGITGATSFLTGVGGTTVVAVSSTAIGANIGARGMSKRMGSVRTFEFRPLHNNRRVNLILTVSGWMVGNEDDVRLPFSTVDPVEGDLYSLYWEPEMLKSIGQTVSIVATEIFTTSLQQILGATVLTALISSIQWPMALSKLGYILDNPWNVSLDRAWSAGKILADTLIARNLGARPITLVGFSIGARVIFSCLIELCKKKALGLIENVYLFGTPAVMKKEQLVMARSVVSGRFVNGYSDKDWFLAYLFRAAAGGFSAVMGISTIENVEGIENINCTEFVDGHLNYRKSMPKLLKRIGIAVLSEEFVEIEEMMNPEEVKRKRKLINDVDAAQKKLSERKKHNSWVPKWLKPKKSKWKVMVEEAVEEGRDMQDLPENDVNNNENENPDEHEGIARQKRRDAALVDHGALMHELQLIKQAMHEDEIKNKACLPGEDKEVESSNDFLGESHYKPPSTPKINPPQSPNNFQLLSAGRTILPEDDDFDPRGKKKVEFSFPDDI*" + } + ], + "YFL026W": [ + { + "revision": "110203", + "new_alignment": "MSDAAPSLSNLFYDPTYNPGQSTINYTSIYGNGSTITFDELQGLVNSTVTQAIMFGVRCGAAALTLIVMWMTSRSRKTPIFIINQVSLFLIILHSALYFKYLLSNYSSVTYALTGFPQFISRGDVHVYGATNIIQVLLVASIETSLVFQIKVIFTGDNFKRIGLMLTSISFTLGIATVTMYFVSAVKGMIVTYNDVSATQDKYFNASTILLASSINFMSFVLVVKLILAIRSRRFLGLKQFDSFHILLIMSCQSLLVPSIIFILAYSLKPNQGTDVLTTVATLLAVLSLPLSSMWATAANNASKTNTITSDFTTSTDRFYPGTLSSFQTDSINNDAKSSLRSRLYDLYPRRKETTSDKHSERTFVSETADDIEKNQFYQLPTPTSSKNTRIGPFADASYKEGEVEPVDMYTPDTAADEEARKFWTEDNNNL*", + "old_alignment": "MSDAAPSLSNLFYDPTYNPGQSTINYTSIYGNGSTITFDELQGLVNSTVTQAIMFGVRCGAAALTLIVMWMTSRSRKTPIFIINQVSLFLIILHSALYFKYLLSNYSSVTYALTGFPQFISRGDVHVYGATNIIQVLLVASIETSLVFQIKVIFTGDNFKRIGLMLTSISFTLGIATVTMYFVSAVKGMIVTYNDVSATQDKYFNASTILLASSINFMSFVLVVKLILAIRSRRFLGLKQFDSFHILLIMSCQSLLVPSIIFILAYSLEPNQGTDVLTTVATLLAVLSLPLSSMWATAANNASKTNTITSDFTTSTDRFYPGTLSSFQTDSINNDAKSSLRSRLYDLYPRRKETTSDKHSERTFVSETADDIEKNQFYQLPTPTSSKNTRIGPFADASYKEGEVEPVDMYTPDTAADEEARKFWTEDNNNL*" + } + ], + "YFR019W": [ + { + "revision": "110203", + "new_alignment": "MSSEEPHASISFPDGSHVRSSSTGTSSVNTIDATLSRPNYIKKPSLHIMSTSTTSTTTDLVTNPILSNISVPKISPPTSSSIATATSTSHVTGTASHSNIKANANTSTSVNKKNLPPTTSGRIPSSTIKRYPSRYKPSHSLQLPIKNDSNFKRSSIYASKSTVTAIPIRNNRPISMQNSYARTPDSDHDDVGDEVSSIKSASSSLTASLSKSFLFAFYNNRKKDKTSNNGVLSKEYWMKDESSKECFSCGKTFNTFRRKHHCRICGQIFCSSCTLLIDGDRFGCHAKMRVCYNCYEHADTYEDSSDEENDSTMQLNEPRSRSRSRSSNTNPYSHSHSHLHLISQDNHNGTDLHDPVAATDNPQQQNEVYLLNDDDVQSIMTSGEDSKLFISTPPPPPKMAIPATKQGGSLEISFDSENDRALHYQDDNPGRHHHLDSVPTRYTIRDMDNISHYDTNSNSTLRPHYNTNNSTITINNLNNTTSNNSNYNNTNSNSNINNPAHSLRRSIFHYVSSNSVNKDSNNSSATPASSAQSSSILDPANRIIGNYAHRNYKFKFNYNSKGPSQQNDTANGNNDNNNNNNNNNNNNNNNSASGIADNNNIPSNDNGTTFTLDKKKRNPLTKSKSTSAYLEYPLNEEDSSEDEGSMSIYSVLNDDHKTDNPIRSMRNSTKSFQRAQASLQRMRFRRKSKSKHFPNNSKSSIYRDLNFLTNSTPNLLSVVSDDNLYDDSSPLQDKASSSAASRLTDRKFSNSSGSNNNSNSNSNINTDPWKRIASISGFKLKKEKKRELNEVSLLHMHALLKQLLNDQEISNLQEWITLLDGALRKVLRTILNARDLNTLDFRQTYVKIKRISGGSPQNSEYIDGVVFSKALPSKTMPRHLKNPRILLIMFPLEYQKNNNHFLSIESVFRQEREYLDKLVSRLKSLHPDIIYVGANVSGYALELLNDSGIVVQFNMKPQVIERIAKLTEADIAISVDKLATNIKMGECETFEVKSYIYGNISKTYTFLRGCNPELGGTILLRGDSLENLRKIKQVSEFMVYAIFSLKLESSFFNDNFIQLSTDVYLKRAESKKLQVFEGYFADFLIKFNNRILTVSPTVDFPIPFLLEKARGLEKKLIERINQYESESDLDRQTQLNMLQGLESTITKKHLGNLIKFLHEMEIENLELEFQKRSRQWEVSYSSSQNLLGTGSHQSITVLYSMVSTKTATPCVGPQIVTIDYFWDSDISIGQFIENVVGTARYPCQQGCNGLYLDHYRSYVHGSGKVDVLIEKFQTRLPKLKDIILTWSYCKKCGTSTPILQISEKTWNHSFGKYLEVMFWSYKDSVTGIGKCPHDFTKDHVKYFGYNDLVVRLEYSDLEVHELITPPRKIKWKPHIDIKLKVELYYKILEKINNFYGSVLSRLERIKLDSMTKDKVLSGQAKIIELKSNATEEQKLMLQDLDTFYADSPCDQHLPLNLVIKSLYDKAVNWNSTFAIFAKSYLPSETDISRITAKQLKKLFYDSSRKDSEDKKSLHDEKAKTRKPEKNELPLEGLKDVEKPKIDSKNTTENRDRTNEPQNAVTITTFKDDTPIIPTSGTSHLTVTPSASSVSSSLTPQTEERPPISRSGTGISMTHDKSTRPNIRKMSSDSSLCGLASLANEYSKNNKVSKLATFFDQMHFDALSKEFELERERERLQLNKDKYQAIRLQTSTPIVEIYKNVKDAVDEPLHSRSSGNNLSSANVKTLEAPVGEHSRANNCNPPNLDQNLETELENSISQWGENILNPSGKTTASTHLNSKPVVKETSENPKSIVRESDNSKSEPLPPVITTTTVNKVESTPQPEKSLLMKTLSNFWADRSAYLWKPLVYPTCPSEHIFTDSDVIIREDEPSSLIAFCLSTSDYRNKMMNLNVQQQQQQQTAEAAPAKTGGNSGGTTQTGDPSVNISPSVSTTSHNKGRDSEISSLVTTKEGLLNTPPIEGARDRTPQESQTHSQANLDTLQELEKIMTKKTATHLRYQFEEGLTVMSCKIFFTEHFDVFRKICDCQENFIQSLSRCVKWDSNGGKSGSGFLKTLDDRFIIKELSHAELEAFIKFAPSYFEYMAQAMFHDLPTTLAKVFGFYQIQVKSSISSSKSYKMDVIIMENLFYEKKTTRIFDLKGSMRNRHVEQTGKANEVLLDENMVEYIYESPIHVREYDKKLLRASVWNDTLFLAKMNVMDYSLVIGIDNEGYTLTVGIIDFIRTFTWDKKLESWVKEKGLVGGASVIKQPTVVTPRQYKKRFREAMERYILMVPDPWYREGN*", + "old_alignment": "MSSEEPHASISFPDGSHVRSSSTGTSSVNTIDATLSRPNYIKKPSLHIMSTSTTSTTTDLVTNPILSNISVPKISPPTSSSIATATSTSHVTGTASHSNIKANANTSTSVNKKNLPPTTSGRIPSSTIKRYPSRYKPSHSLQLPIKNDSNFKRSSIYASKSTVTAIPIRNNRPISMQNSYARTPDSDHDDVGDEVSSIKSASSSLTASLSKSFLFAFYNNRKKDKTSNNGVLSKEYWMKDESSKECFSCGKTFNTFRRKHHCRICGQIFCSSCTLLIDGDRFGCHAKMRVCYNCYEHADTYEDSSDEENDSTMQLNEPRSRSRSRSSNTNPYSHSHSHLHLISQDNHNGTDLHDPVAATDNPQQQNEVYLLNDDDVQSIMTSGEDSKLFISTPPPPPKMAIPATKQGGSLEISFDSENDRALHYQDDNPGRHHHLDSVPTRYTIRDMDNISHYDTNSNSTLRPHYNTNNSTITINNLNNTTSNNSNYNNTNSNSNINNPAHSLRRSIFHYVSSNSVNKDSNNSSATPASSAQSSSILDPANRIIGNYAHRNYKFKFNYNSKGPSQQNDTANGNNDNNNNNNNNNNNNNNNSASGIADNNNIPSNDNGTTFTLDKKKRNPLTKSKSTSAYLEYPLNEEDSSEDEGSMSIYSVLNDDHKTDNPIRSMRNSTKSFQRAQASLQRMRFRRKSKSKHFPNNSKSSIYRDLNFLTNSTPNLLSVVSDDNLYDDSSPLQDKASSSAASRLTDRKFSNSSGSNNNSNSNSNINTDPWKRIASISGFKLKKEKKRELNEVSLLHMHALLKQLLNDQEISNLQEWITLLDGALRKVLRTILNARDLNTLDFRQTYVKIKRISGGSPQNSEYIDGVVFSKALPSKTMPRHLKNPRILLIMFPLEYQKNNNHFLSIESVFRQEREYLDKLVSRLKSLHPDIIYVGANVSGYALELLNDSGIVVQFNMKPQVIERIAKLTEADIAISVDKLATNIKMGECETFEVKSYIYGNISKTYTFLRGCNPELGGTILLRGDSLENLRKIKQVSEFMVYAIFSLKLESSFFNDNFIQLSTDVYLKRAESKKLQVFEGYFADFLIKFNNRILTVSPTVDFPIPFLLEKARGLEKKLIERINQYESESDLDRQTQLNMLQGLESTITKKHLGNLIKFLHEMEIENLELEFQKRSRQWEVSYSSSQNLLGTGSHQSITVLYSMVSTKTATPCVGPQIVTIDYFWDSDISIGQFIENVVGTARYPCQQGCNGLYLDHYRSYVHGSGKVDVLIEKFQTRLPKLKDIILTWSYCKKCGTSTPILQISEKTWNHSFGKYLEVMFWSYKDSVTGIGKCPHDFTKDHVKYFGYNDLVVRLEYSDLEVHELITPPRKIKWKPHIDIKLKVELYYKILEKINNFYGSVLSRLERIKLDSMTKDKVLSGQAKIIELKSNATEEQKLMLQDLDTFYADSPCDQHLPLNLVIKSLYDKAVNWNSTFAIFAKSYLPSETDISRITAKQLKKLFYDSSRKDSEDKKSLHDEKAKTRKPEKNELPLEGLKDVEKPKIDSKNTTENRDRTNEPQNAVTITTFKDDTPIIPTSGTSHLTVTPSASSVSSSLTPQTEERPPISRSGTGISMTHDKSTRPNIRKMSSDSSLCGLASLANEYSKNNKVSKLATFFDQMHFDALSKEFELERERERLQLNKDKYQAIRLQTSTPIVEIYKNVKDAVDEPLHSRSSGNNLSSANVKTLEAPVGEHSRANNCNPPNLDQNLETELENSISQWGENILNPSGKTTASTHLNSKPVVKETSENPKSIVRESDNSKSEPLPPVITTTTVNKVESTPQPEKSLLMKTLSNFWADRSAYLWKPLVYPTCPSEHIFTDSDVIIREDEPSSLIAFCLSTSDYRNKMMNLNVQQQQQQQTAEAAPAKTGGNSGGTTQTGDPSVNISPSVSTTSHNKGRDSEISSLVTTKEGLLNTPPIEGARDRTPQESQTHSQANLDTLQELEKIMTKKTATHLRYQFEEGLTVMSCKIFFTEHFDVFRKICDCQENFIQSLSRCVKWDSNGGKSGSGFLKTLDDRFIIKELSHAELEAFIKFAPSYFEYMAQAMFHDLPTTLAKVFGFYQIQVKSSISSSKSYKMDVIIMENLFYEKKTTRIFDLKGSMRNRHVEQTGKANEVLLDENMVEYIYESPIHVREYDKKLLRASVWNDTLFLAKMNVMDYSLVIGIDNEGYTLTVGIIDFIRTFTWDKKLESWVKEKGLVGGASVIKQPTVVTPRQYKKRFREAMERYILMVPDPWYWEGN*" + } + ], + "YFR024C-A": [ + { + "revision": "080606", + "new_alignment": "MGINNPIPRSLKSETKKAAKILAS-FVKPNQVFGADQVIPPDVLKRAKGLAIITILKAGFLFSGRAGSGVIVARLKDGTWSAPSAIAMAGAGAGGMVGIELTDFVFILNTQDAVKSFSEFGTITLGGNVSVSAGPLGRSAEAAASASAGGVAAVFAYSKSKGLFAGVSVEGSAIIERREANRKFYGDNCTAKMILSGRIRPPPAVDPLFRVLESRAFNYRPSNGGRGSFDDDEDDYYDDDDYYNDIPSSFSSTDASSTRPNTRSTRRRAQSGSRYTFDDDDDDDDYGTGYSRNSRLAPTNSGGSGGKLDDPSGASSYYASHRRSGTAQSRARSSRNRWADDEYDDYDDDYESGYRRGNGRDRTKDREVDDLSNRFSKSRISSASTPQTSQGRFTAPTSPSTSSPKAVALYSFAGEESGDLPFRKGDVITILKKSDSQNDWWTGRVNGREGIFPANYVELV*", + "old_alignment": "MGINNPIPRSLKSET---------NFVKPNQVFGADQVIPPDVLKRAKGLAIITILKAGFLFSGRAGSGVIVARLKDGTWSAPSAIAMAGAGAGGMVGIELTDFVFILNTQDAVKSFSEFGTITLGGNVSVSAGPLGRSAEAAASASAGGVAAVFAYSKSKGLFAGVSVEGSAIIERREANRKFYGDNCTAKMILSGRIRPPPAVDPLFRVLESRAFNYRPSNGGRGSFDDDEDDYYDDDDYYNDIPSSFSSTDASSTRPNTRSTRRRAQSGSRYTFDDDDDDDDYGTGYSRNSRLAPTNSGGSGGKLDDPSGASSYYASHRRSGTAQSRARSSRNRWADDEYDDYDDDYESGYRRGNGRDRTKDREVDDLSNRFSKSRISSASTPQTSQGRFTAPTSPSTSSPKAVALYSFAGEESGDLPFRKGDVITILKKSDSQNDWWTGRVNGREGIFPANYVELV*" + } + ], + "YFR038W": [ + { + "revision": "040206", + "new_alignment": "MSRCSNAALMTVVEDAVGARVAARTRNMSNGVNYREKEVNDLTADISDSDSDLDSEDNKHGKGDNDTAPIWLQDDVHSDEDIQLDSEDDSDTEAVQAQVVDKLAKDTKSEQKSLDDELSEMDTKTVSLKLKKLNEFVRQSQVYSSIIADTLLHRSNEVANANTKDNSNSDDEEHSSKKRKTKKKSITDFFKKQKKNEDTTTQNGAPDDAAIKQPRLLKNCILKPYQLEGLNWLITLYENGLNGILADEMGLGKTVQSIALLAFIYEMDTKGPFLVTAPLSTLDNWMNEFAKFAPDLPVLKYYGTNGYKERSAKLKNFFKQHGGTGIVITSYEIILRDTDLIMSQNWKFLIVDEGHRLKNINCRLIKELKKINTSNRLLLTGTPLQNNLAELWSLLNFIMPDIFADFEIFNKWFDFDSLNLGSGSNSEALNKLINDELQKNLISNLHTILKPFLLRRLKKVVLANILPPKREYIINCPMTSAQEKFYKAGLNGKLKKTMFKELIKDFFTLNDEYIGHVSNRSIRDFINYKLSGNETSNTDNKINPTLLQMDKLYKKNLQMEISNKKLQNMMMQLRQIIDSTFLFYFPYLHPEDLTLETLLKTSGKLQILQKLIPPLISEGHKVLIYSQFVNMLDLIEDWCDLNSFATFRIDGSVNNETRKDQLEKFNSSKDKHNIFLLSTRAAGLGINLVGADTVVLFDSDWNPQVDLQAMDRCHRIGQESPVIVYRLCCDNTIEHVILTRAANKRNLERMVIQMGKFNNLKKLALNEGSFLKANKAGVNVTNKDLVQELSMLLMSDESNIGFENGGQKENKATEGQLTDKEVEELTNRSLEAYKANRVVDLPHVKLFETTSGL*-----------", + "old_alignment": "MSRCSNAALMTVVEDAVGARVAARTRNMSNGVNYREKEVNDLTADISDSDSDLDSEDNKHGKGDNDTAPIWLQDDVHSDEDIQLDSEDDSDTEAVQAQVVDKLAKDTKSEQKSLDDELSEMDTKTVSLKLKKLNEFVRQSQVYSSIIADTLLHRSNEVANANTKDNSNSDDEEHSSKKRKTKKKSITDFFKKQKKNEDTTTQNGAPDDAAIKQPRLLKNCILKPYQLEGLNWLITLYENGLNGILADEMGLGKTVQSIALLAFIYEMDTKGPFLVTAPLSTLDNWMNEFAKFAPDLPVLKYYGTNGYKERSAKLKNFFKQHGGTGIVITSYEIILRDTDLIMSQNWKFLIVDEGHRLKNINCRLIKELKKINTSNRLLLTGTPLQNNLAELWSLLNFIMPDIFADFEIFNKWFDFDSLNLGSGSNSEALNKLINDELQKNLISNLHTILKPFLLRRLKKVVLANILPPKREYIINCPMTSAQEKFYKAGLNGKLKKTMFKELIKDFFTLNDEYIGHVSNRSIRDFINYKLSGNETSNTDNKINPTLLQMDKLYKKNLQMEISNKKLQNMMMQLRQIIDSTFLFYFPYLHPEDLTLETLLKTSGKLQILQKLIPPLISEGHKVLIYSQFVNMLDLIEDWCDLNSFATFRIDGSVNNETRKDQLEKFNSSKDKHNIFLLSTRAAGLGINLVGADTVVLFDSDWNPQVDLQAMDRCHRIGQESPVIVYRLCCDNTIEHVILTRAANKRNLERMVIQMGKFNNLKKLALNEG--------------------------------------------------------------------------------------FFFEGKQSGC*" + } + ], + "YFR040W": [ + { + "revision": "110203", + "new_alignment": "MSFWPFGQNLNHSNINKILDEYFHVLHELERINPSVGKAIPAIFNNVQERGTSDSLDSIPEEYSHGDEVKTARGDQKSRFEKDDQQERYEKEEEERSMNSSESSTTSFSSGSTSKTDLDEEDISNATAPMMVTTKNLDNSFIERMLVETELLNELSRQNKTLLDFICFGFFFDKKTNKKVNNMEYLVDQLMECISKIKTATTVDLNNLIDYQEQQQLDDSSQEDVYVESDTEQEEEKEDDNNSNNKKRRKRGSSSFGNDDINNNDDDDDANEDDESAYLTKATIISEIFSLDIWLISESLVKNQSYLNKIWSIINQPNFNSENSPLVPIFLKINQNLLLTRQDQYLNFIRTERSFVDDMLKHVDISLLMDFFLKIISTDKIESPTGIIELVYDQNLISKCLSFLNNKESPADIQACVGDFLKALIAISANAPLDDISIGPNSLTRQLASPESIAKLVDIMINQRGAALNTTVSIVIELIRKNNSDYDQVNLLTTTIKTHPPSNRDPIYLGYLLRKFSNHLSDFFQIILDIENDANIPLHENQLHEKFKPLGFERFKVVELIAELLHCSNMGLMNSKRAERIARRRDKVRSQLSHHLQDALNDLSIEEKEQLKTKHSPTRDTDHDLKNNNGKIDNDNNDNDDESDYGDEIDESFEIPYINMKQNIKLRTDPTVGDLFKIKLYDTRIVSKIMELFLTHPWNNFWHNVIFDIIQQIFNGRMDFSYNSFLVLSLFNLKSSYQFMTDIVISDEKGTDVSRFSPVIRDPNFDFKITTDFILRGYQDSYKFYELRKMNLGYMGHIVLIAEEVVKFSKLYKVELISPDIQVILQTEEWQYYSEEVLNETRMMYSKILGGGSYIDDGNGNIIPQLPDNTTVLTPNGDASNNNEILDSDTGSSNGTSGGGQLINVESLEEQLSLSTESDLHNKLREMLINRAQEDVDNKNTENGVFILGPPEDKNSNSNINNTNHNSNNSNNNDNNDNNDNDNDNTRNYNEDADNDNDYDHE*", + "old_alignment": "MSFWPFGQNLNHSNINKILDEYFHVLHELERINPSVGKAIPAIFNNVQERGTSDSLDSIPEEYSHGDEVKTARGDQKSRFEKDDQQERYEKEEEERSMNSSESSTTSFSSGSTSKTDLDEEDISNATAPMMVTTKNLDNSFIERMLVETELLNELSRQNKTLLDFICFGFFFDKKTNKKVNNMEYLVDQLMECISKIKTATTVDLNNLIDYQEQQQLDDSSQEDVYVESDTEQEEEKEDDNNSNNKKRRKRGSSSFGNDDINNNDDDDDANEDDESAYLTKATIISEIFSLDIWLISESLVKNQSYLNKIWSIINQPNFNSENSPLVPIFLKINQNLLLTRQDQYLNFIRTERSFVDDMLKHVDISLLMDFFLKIISTDKIESPTGIIELVYDQNLISKCLSFLNNKESPADIQACVGDFLKALIAISANAPLDDISIGPNSLTRQLASPESIAKLVDIMINQRGAALNTTVSIVIELIRKNNSDYDQVNLLTTTIKTHPPSNRDPIYLGYLLRKFSNHLSDFFQIILDIENDANIPLHENQLHEKFKPLGFERFKVVELIAELLHCSNMGLMNSKRAERIARRRDKVRSQLSHHLQDALNDLSIEEKEQLKTKHSPTRDTDHDLKNNNGKIDNDNNDNDDESDYGDEIDESFEIPYINMKQTIKLRTDPTVGDLFKIKLYDTRIVSKIMELFLTHPWNNFWHNVIFDIIQQIFNGRMDFSYNSFLVLSLFNLKSSYQFMTDIVISDEKGTDVSRFSPVIRDPNFDFKITTDFILRGYQDSYKFYELRKMNLGYMGHIVLIAEEVVKFSKLYKVELISPDIQVILQTEEWQYYSEEVLNETRMMYSKILGGGSYIDDGNGNIIPQLPDNTTVLTPNGDASNNNEILDSDTGSSNGTSGGGQLINVESLEEQLSLSTESDLHNKLREMLINRAQEDVDNKNTENGVFILGPPEDKNSNSNINNTNHNSNNSNNNDNNDNNDNDNDNTRNYNEDADNDNDYDHE*" + } + ], + "YFR045W": [ + { + "revision": "040206", + "new_alignment": "MANQNSDLYKQITAGSVAAVFQTTMTYPFEYLKTGLQLQPKGTAFEIILPQIKSYFVGCSALNVAAFGKTILRFVTFDKLCHSLNNNIDNNDNFQRLTGYNLLIAGTLTGIVESLFIIPFENIKTTLIQSAMIDHKKLEKNQPVVNAKATFHKVATKSTPVARIEKLLPAVKHMYQTRGPAAFVQGTTATIFRQIANTSIQFTAYTAFKRLLQARNDKASSVITGLATSFTLVAMTQPIDVVKTRMMSQNAKTEYKNTLNCMYRIFVQEGMATFWKGSIFRFMKVGISGGLTFTVYEQVSLLLGFSSRS*", + "old_alignment": "-----------------------------------------------------------------------------------------------------------------------------------MIDHKKLEKNQPVVNAKATFHKVATKSTPVARIEKLLPAVKHMYQTRGPAAFVQGTTATIFRQIANTSIQFTAYTAFKRLLQARNDKASSVITGLATSFTLVAMTQPIDVVKTRMMSQNAKTEYKNTLNCMYRIFVQEGMATFWKGSIFRFMKVGISGGLTFTVYEQVSLLLGFSSRS*" + }, + { + "revision": "070406", + "new_alignment": "MANQNSDLYKQITAGSVAAVFQTTMTYPFEYLKTGLQLQPKGTAFEIILPQIKSYFVGCSALNVAAFGKTILRFVTFDKLCHSLNNNIDNNDNFQRLTGYNLLIAGTLTGIVESLFIIPFENIKTTLIQSAMIDHKKLEKNQPVVNAKATFHKVATKSTPVARIEKLLPAVKHMYQTRGPAAFVQGTTATIFRQIANTSIQFTAYTAFKRLLQARNDKASSVITGLATSFTLVAMTQPIDVVKTRMMSQNAKTEYKNTLNCMYRIFVQEGMATFWKGSIFRFMKVGISGGLTFTVYEQVSLLLGFSSRS*", + "old_alignment": "------------------------MTYPFEYLKTGLQLQPKGTAFEIILPQIKSYFVGCSALNVAAFGKTILRFVTFDKLCHSLNNNIDNNDNFQRLTGYNLLIAGTLTGIVESLFIIPFENIKTTLIQSAMIDHKKLEKNQPVVNAKATFHKVATKSTPVARIEKLLPAVKHMYQTRGPAAFVQGTTATIFRQIANTSIQFTAYTAFKRLLQARNDKASSVITGLATSFTLVAMTQPIDVVKTRMMSQNAKTEYKNTLNCMYRIFVQEGMATFWKGSIFRFMKVGISGGLTFTVYEQVSLLLGFSSRS*" + } + ], + "YGL256W": [ + { + "revision": "080606", + "new_alignment": "-----------------------------------------------------------------------------------MSSVTGFYIPPISFFGEGALEETADYIKNKDYKKALIVTDPGIAAIGLSGRVQKMLEERDLNVAIYDKTQPNPNIANVTAGLKVLKEQNSEIVVSIGGGSAHDNAKAIALLATNGGEIGDYEGVNQSKKAALPLFAINTTAGTASEMTRFTIISNEEKKIKMAIIDNNVTPAVAVNDPSTMFGLPPALTAATGLDALTHCIEAYVSTASNPITDACALKGIDLINESLVAAYKDGKDKKARTDMCYAEYLAGMAFNNASLGYVHALAHQLGGFYHLPHGVCNAVLLPHVQEANMQCPKAKKRLGEIALHFGASQEDPEETIKALHVLNRTMNIPRNLKELGVKTEDFEILAEHAMHDACHLTNPVQFTKEQVVAIIKKAYEY*", + "old_alignment": "MLGITYAVNSTKQLIFCCLKYLTLLGYILLSNRKKGQRTNMYKRVISISGLLKTGVKRFSSVYCKTTINNKFTFATTNSQIRKMSSVTGFYIPPISFFGEGALEETADYIKNKDYKKALIVTDPGIAAIGLSGRVQKMLEERDLNVAIYDKTQPNPNIANVTAGLKVLKEQNSEIVVSIGGGSAHDNAKAIALLATNGGEIGDYEGVNQSKKAALPLFAINTTAGTASEMTRFTIISNEEKKIKMAIIDNNVTPAVAVNDPSTMFGLPPALTAATGLDALTHCIEAYVSTASNPITDACALKGIDLINESLVAAYKDGKDKKARTDMCYAEYLAGMAFNNASLGYVHALAHQLGGFYHLPHGVCNAVLLPHVQEANMQCPKAKKRLGEIALHFGASQEDPEETIKALHVLNRTMNIPRNLKELGVKTEDFEILAEHAMHDACHLTNPVQFTKEQVVAIIKKAYEY*" + } + ], + "YGL236C": [ + { + "revision": "040716", + "new_alignment": "MLRVTTLASSCTSFPLQVLRRRLTISSLTSFQPTTKTQVVVIGAGHAGCEAAAASSRTGAHTTLITPSLTDIGKCSCNPSIGGVGKGILVKEIDALDGLMGKVTDLAGVQFKMLNRSKGPAVWGPRAQIDRELYKKYMQRELSDKKAHPNLSLLQNKVADLILYDPGCGHKVIKGVVLDDGTQVGADQVIITTGTFLSAEIHIGDKRIAAGRIGEQPTYGISNTLQNEVGFQLGRLKTGTPARLAKESIDFSALEVQKGDALPVPMSFLNETVSVEPTKQLDCFGTHTTPQMHDFLRNNLHQSIHIQDTTIKGPRYCPSIEAKILRFPDRSSHKIWLEPEGFNSDVIYPNGISNSMPEDVQLQMMRLIPGMANVEILQPAYGVEYDYVDPRQLKPSLETKLVDGLFLAGQINGTTGYEEAAAQGIIAGINAGLLSRQEREQLVLKRSEAYIGVLIDDLINNGVIEPYRMFTSRSEFRISVRADNADFRLTPIGAQLGIISPVRLSQYSRDKHLYDETIRALQNFKLSSQKWSSLLQANIAPQAENRSAWEIFRFKDMDLHKLYECIPDLPINLLDIPMHVVTKINIQGKYEPYIVKQNQFVKAFQADENMLLPQDYDYRQLPTLSTECKLLLNRVQPLTIGQARRIQGITAAALFELYRVARKPSQPVM*------------------", + "old_alignment": "MLRVTTLASSCTSFPLQVLRRRLTISSLTSFQPTTKTQVVVIGAGHAGCEAAAASSRTGAHTTLITPSLTDIGKCSCNPSIGGVGKGILVKEIDALDGLMGKVTDLAGVQFKMLNRSKGPAVWGPRAQIDRELYKKYMQRELSDKKAHPNLSLLQNKVADLILYDPGCGHKVIKGVVLDDGTQVGADQVIITTGTFLSAEIHIGDKRIAAGRIGEQPTYGISNTLQNEVGFQLGRLKTGTPARLAKESIDFSALEVQKGDALPVPMSFLNETVSVEPTKQLDCFGTHTTPQMHDFLRNNLHQSIHIQDTTIKGPRYCPSIEAKILRFPDRSSHKIWLEPEGFNSDVIYPNGISNSMPEDVQLQMMRLIPGMANVEILQPAYGVEYDYVDPRQLKPSLETKLVDGLFLAGQINGTTGYEEAAAQGIIAGINAGLLSRQEREQLVLKRSEAYIGVLIDDLINNGVIEPYRMFTSRSEFRISVRADNADFRLTPIGAQLGIISPVRLSQYSRDKHLYDETIRALQNFKLSSQKWSSLLQANIAPQAENRSAWEIFRFKDMDLHKLYECIPDLPINLLDIPMHVVTKINIQGKYEPYIVKQNQFVKAFQADENMLLPQDYDYRQLPTLSTECKLLLNRVQPLTIGQARRIQGITAAALFELYRVAR--------SQANQSCKYPLIVSLYM*" + } + ], + "YGL214W": [ + { + "revision": "110203", + "new_alignment": "MI---VRLHAIYQDITRDYLPPASLNHLMLLSKQTQHKLSFKSAPIPDLQPFFKNFTSKTPGSAKESPCSSTAKISSSISISSQCIFNVVILSFVFTSQNLNLPSHPALHNVSPESLNDRLMTQLECANSPRLACELWVGTDKEPILSPNSVSYRVMQPNEFES*", + "old_alignment": "--MDDVRLHAIYQDITRDYLPPASLNHLMLLSKQTQHKLSFKSAPIPDLQPFFKNFTSKTPGSAKESPCSSTAKISSSISISSQCIFNVVILSFVFTSQNLNLPSHPALHNVSPESLNDRLMTQLECANSPRLACELWVGTDKEPILSPNSVSYRVMQPNEFES*" + } + ], + "YGL211W": [ + { + "revision": "040723", + "new_alignment": "MSFTAPSDPVNKPTKVKVSQLCELCHSRKALIRRPKNLSKLCKQCFCLVFETEIHNTIVANNLFQRGEKVAVGASGGKDSTVLAHMLKLLNDRYDYGIEIVLLSIDEGIIGYRDDSLATVKRNQQQYGLPLEIFSFKDLYDWTMDEIVSVAGIRNSCTYCGVFRRQSLDRGAAKLGISHVVTGHNADDMAETVLMNILRGDVARLEKSTAIITQSSGSPIKRSKPFKYSYQKEIVLYAHYMKLDYFSTECTYAPEAFRGTAREYMKNLEAVRPSCIIDIIQSGENLALKAKKSNAGKRVVKFVDGNRCARCGYLSSNNICKACMLLEGLEKSRAQVAIENDTSADGAALKLRALEKLSF*--------------------", + "old_alignment": "MSFTAPSDPVNKPTKVKVSQLCELCHSRKALIRRPKNLSKLCKQCFCLVFETEIHNTIVANNLFQRGEKVAVGASGGKDSTVLAHMLKLLNDRYDYGIEIVLLSIDEGIIGYRDDSLATVKRNQQQYGLPLEIFSFKDLYDWTMDEIVSVAGIRNSCTYCGVFRRQSLDRGAAK------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------WAYLTLSPATMQTIWQRQY*" + } + ], + "YGL201C": [ + { + "revision": "040206", + "new_alignment": "MSSPFPADTPSSNRPSNSSPPPSSIGAGFGSSSGLDSQIGSRLHFPSSSQPHVSNSQTGPFVNDSTQFSSQRLQTDGSATNDMEGNEPARSFKSRALNHVKKVDDVTGEKVREAFEQFLEDFSVQSTDTGEVEKVYRAQIEFMKIYDLNTIYIDYQHLSMRENGALAMAISEQYYRFLPFLQKGLRRVVRKYAPELLNTSDSLKRSEGDEGQADEDEQQDDDMNGSSLPRDSGSSAAPGNGTSAMATRSITTSTSPEQTERVFQISFFNLPTVHRIRDIRSEKIGSLLSISGTVTRTSEVRPELYKASFTCDMCRAIVDNVEQSFKYTEPTFCPNPSCENRAFWTLNVTRSRFLDWQKVRIQENANEIPTGSMPRTLDVILRGDSVERAKPGDRCKFTGVEIVVPDVTQLGLPGVKPSSTLDTRGISKTTEGLNSGVTGLRSLGVRDLTYKISFLACHVISIGSNIGASSPDANSNNRETELQMAANLQANNVYQDNERDQEVFLNSLSSDEINELKEMVKDEHIYDKLVRSIAPAVFGHEAVKKGILLQMLGGVHKSTVEGIKLRGDINICVVGDPSTSKSQFLKYVVGFAPRSVYTSGKASSAAGLTAAVVRDEEGGDYTIEAGALMLADNGICCIDEFDKMDISDQVAIHEAMEQQTISIAKAGIHATLNARTSILAAANPVGGRYNRKLSLRGNLNMTAPIMSRFDLFFVILDDCNEKIDTELASHIVDLHMKRDEAIEPPFSAEQLRRYIKYARTFKPILTKEARSYLVEKYKELRKDDAQGFSRSSYRITVRQLESMIRLSEAIARANCVDEITPSFIAEAYDLLRQSIIRVDVDDVEMDEEFDNIESQSHAASGNNDDNDDGTGSGVITSEPPADIEEGQSEATARPGTSEKKKTTVTYDKYVSMMNMIVRKIAEVDREGAEELTAVDIVDWYLLQKENDLGSLAEYWEERRLAFKVIKRLVKDRILMEIHGTRHNLRDLENEENENNKTVYVIHPNCEVLDQLEPQDSS*", + "old_alignment": "MSSPFPADTPSSNRPSNSSPPPSSIGAGFGSSSGLDSQIGSRLHFPSSSQPHVSNSQTGPFVNDSTQFSSQRLQTDGSATNDMEGNEPARSFKSRALNHVKKVDDVTGEKVREAFEQFLEDFSVQSTDTGEVEKVYRAQIEFMKIYDLNTIYIDYQHLSMRENGALAMAISEQYYRFLAFLQKGLRRVVRKYAPELLNTSDSLKRSEGDEGQADEDEQQDDDMNGSSLPRDSGSSAAPGNGTSAMATRSITTSTSPEQTERVFQISFFNLPTVHRIRDIRSEKIGSLLSISGTVTRTSEVRPELYKASFTCDMCRAIVDNVEQSFKYTEPTFCPNPSCENRAFWTLNVTRSRFLDWQKVRIQENANEIPTGSMPRTLDVILRGDSVERAKPGDRCKFTGVEIVVPDVTQLGLPGVKPSSTLDTRGISKTTEGLNSGVTGLRSLGVRDLTYKISFLACHVISIGSNIGASSPDANSNNRETELQMAANLQANNVYQDNERDQEVFLNSLSSDEINELKEMVKDEHIYDKLVRSIAPAVFGHEAVKKGILLQMLGGVHKSTVEGIKLRGDINICVVGDPSTSKSQFLKYVVGFAPRSVYTSGKASSAAGLTAAVVRDEEGGDYTIEAGALMLADNGICCIDEFDKMDISDQVAIHEAMEQQTISIAKAGIHATLNARTSILAAANPVGGRYNRKLSLRGNLNMTAPIMSRFDLFFVILDDCNEKIDTELASHIVDLHMKRDEAIEPPFSAEQLRRYIKYARTFKPILTKEARSYLVEKYKELRKDDAQGFSRSSYRITVRQLESMIRLSEAIARANCVDEITPSFIAEAYDLLRQSIIRVDVDDVEMDEEFDNIESQSHAASGNNDDNDDGTGSGVITSEPPADIEEGQSEATARPGTSEKKKTTVTYDKYVSMMNMIVRKIAEVDREGAEELTAVDIVDWYLLQKENDLGSLAEYWEERRLAFKVIKRLVKDRILMEIHGTRHNLRDLENEENENNKTVYVIHPNCEVLDQLEPQDSS*" + } + ], + "YGL198W": [ + { + "revision": "040206", + "new_alignment": "MSYGREDTTIEPDFIEPDAPLAASGGVADNIGGTMQNSGSRGTLDETVLQTLKRDVVEINSRLKQVVYPHFPSFFSPSDDGIGAADNDISANCDLWAPLAFIILYSLFVSHARSLFSSLFVSSWFILLVMALHLRLTKPHQRVSLISYISISGYCLFPQVLNALVSQILLPLAYHIGKQNRWIVRVLSLVKLVVMALCLMWSVAAVSWVTKSKTIIEIYPLALCL-----FGMAWLSTIL*---------------------------------", + "old_alignment": "MSYGREDTTIEPDFIEPDAPLAASGGVADNIGGTMQNSGSRGTLDETVLQTLKRDVVEINSRLKQVVYPHFPSFFSPSDDGIGAADNDISANCDLWAPLAFIILYSLFVSHARSLFSSLFVSSWFILLVMALHLRLTKPHQRVSLISYISISGYCLFPQVLNALVSQILLPLAYHIGKQNRWIVRVLSLVKLVVMALCLMWSVAAVSWVTKSKTIIEIY-----LWHSVFFGMA-------GCQLFYNTSYICIKPNIHGHRIAYLASHGRKF*" + } + ], + "YGL197W": [ + { + "revision": "110203", + "new_alignment": "MPLLQPSTCFCYPLKLPPLPLTSDSNEFDECARKRLTLDYRTGSAVTLTRSNIFVHGGLTIPLNLPVVNSMQLQKELILFFAKEKNNGSSFRNLNEWISKETFFLDLMSRTWYRVKTSFDQRTEELLKAESSSAKADNDTNEIRTDIKKGKSLESPLKERLFHSLCYLDGCLYIFGGLTVSPQSGYELIATNELWKLDLNTKKWSLLSDDPQIARRFNHTMHVKNENNDNRDTKLIIVGGLNNMDQPVKKIDIYNISQNCWQSE---TIPKQPMEITTNVNGIPLALSKDQNFSILVENNEANVPALAFYMRSDQIDEYLGKDSSKIKENSPIVALPLLSESQGIRMPSNPALPKKLLNVPYELLAPTGDYFGFNIIIGGFHPNYQSSNFHCFIYDINSGKWSRVATACPDCDINKHRFWRVFVWKSHHQTILLGTKTDDYYSPSVQRFDHLSTFGLPLVNIFNKTIQLPHHKISASSLPIPIENFAKHKDTPLKKVSFTSSATSQFENYIRYIAPPLEMSSIQSVFPPYAMVLGKDALEIYGKPLSDFEFITSEGDSIGIPCYLLRKRWGRYFDMLLSQSYTKVCADYETTDTQSTLIKFSPHSSRNSSKAVRQEGRLSSSGSLDNYFEKNFPIFARTSVSEAQNTQPQVANADAKAPNTPSTSDEPSSSSSSDLYSTPHYQRNNDEEDDEDPVSPKPVSKSNSIYRPIRKTESSSTTSSSNGMIFRVPFKEKAAVTSNTEALLESNLSLQELSRRRSSLMSIPSGELLRSSISEAEHQRRASHPLTSSPLFEDSGTPCGKQLQQLQQHTIQNPHNHLSPRRFSRSARSSISYVSSSSDRRGNSISSRSTSDSFGTPPVLGVLNVPLPPQTREPNEPPPPCPAMSTGSNTRRSNTLTDYMHSNKASPFSSRRSSHIGRRSSTPETENAFSATPRASLDGQMLGKSLKEGSTSQYTQPRMNSFPKANETIQTPTSSNNEWSRQSVTSNTDSFDSLQSNFALELEPLLTPRSLYMPWPTSTVRAFAEFFYTGQVNSKWLLAPVALDLLVMAKIYEIPLLYKLILEVLYSILAKKEESLSLICTSLMETFRTKTLNSYKGDEEKTNTYLTSNDNYQELLKLKVSLENIDNGYYDPDLLRKQSRAQSSSTQESSGSANGEKTATGAGSLETSSTNVPTVFAGGPRDSHNSVGSIGFPNSMNIQGSRRSTSGFSPRVKMKSSLSKEIDPKTFYEEYEPKEGKSFDDNDDQQTNIGSFNLHLFDMNYGSISSSSTNSISSSDLEEKEEQEQLQDLLEIEREDSAEILDARFRNKEDDKVTKDISNDKKRNYLPHEKNNLKAKEGKETRDVREEEEEFDFGLGMLSLNKIKREAKHVDKVDDSVDPLFKSSAFPQSPIRAYGSTTRTSSASGKPFRDNRSFNAFSVLTLENMASANALPPVDYVIKSIYRTTVLVNDIRLMVRCMDCIELSKNLRALKKKTMEDISKLKGISKPSP*", + "old_alignment": "MPLLQPSTCFCYPLKLPPLPLTSDSNEFDECARKRLTLDYRTGSAVTLTRSNIFVHGGLTIPLNLPVVNSMQLQKELILFFAKEKNNGSSFRNLNEWISKETFFLDLMSRTWYRVKTSFDQRTEELLKAESSSAKADNDTNEIRTDIKKGKSLESPLKERLFHSLCYLDGCLYIFGGLTVSPQSGYELIATNELWKLDLNTKKWSLLSDDPQIARRFNHTMHVKNENNDNRDTKLIIVGGLNNMDQPVKKIDIYNISQNCW---HPKTIPKQPMEITTNVNGIPLALSKDQNFSILVENNEANVPALAFYMRSDQIDEYLGKDSSKIKENSPIVALPLLSESQGIRMPSNPALPKKLLNVPYELLAPTGDYFGFNIIIGGFHPNYQSSNFHCFIYDINSGKWSRVRTACPDCDINKHRFWRVFVWKSHHQTILLGTKTDDYYSPSVQRFDHLSTFGLPLVNIFNKTIQLPHHKISASSLPIPIENFAKHKDTPLKKVSFTSSATSQFENYIRYIAPPLEMSSIQSVFPPYAMVLGKDALEIYGKPLSDFEFITSEGDSIGIPCYLLRKRWGRYFDMLLSQSYTKVCADYETTDTQSTLIKFSPHSSRNSSKAVRQEGRLSSSGSLDNYFEKNFPIFARTSVSEAQNTQPQVANADAKAPNTPSTSDEPSSSSSSDLYSTPHYQRNNDEEDDEDPVSPKPVSKSNSIYRPIRKTESSSTTSSSNGMIFRVPFKEKAAVTSNTEALLESNLSLQELSRRRSSLMSIPSGELLRSSISEAEHQRRASHPLTSSPLFEDSGTPCGKQLQQLQQHTIQNPHNHLSPRRFSRSARSSISYVSSSSDRRGNSISSRSTSDSFGTPPVLGVLNVPLPPQTREPNEPPPPCPAMSTGSNTRRSNTLTDYMHSNKASPFSSRRSSHIGRRSSTPETENAFSATPRASLDGQMLGKSLKEGSTSQYTQPRMNSFPKANETIQTPTSSNNEWSRQSVTSNTDSFDSLQSNFALELEPLLTPRSLYMPWPTSTVRAFAEFFYTGQVNSKWLLAPVALDLLVMAKIYEIPLLYKLILEVLYSILAKKEESLSLICTSLMETFRTKTLNSYKGDEEKTNTYLTSNDNYQELLKLKVSLENIDNGYYDPDLLRKQSRAQSSSTQESSGSANGEKTATGAGSLETSSTNVPTVFAGGPRDSHNSVGSIGFPNSMNIQGSRRSTSGFSPRVKMKSSLSKEIDPKTFYEEYEPKEGKSFDDNDDQQTNIGSFNLHLFDMNYGSISSSSTNSISSSDLEEKEEQEQLQDLLEIEREDSAEILDARFRNKEDDKVTKDISNDKKRNYLPHEKNNLKAKEGKETRDVREEEEEFDFGLGMLSLNKIKREAKHVDKVDDSVDPLFKSSAFPQSPIRAYGSTTRTSSASGKPFRDNRSFNAFSVLTLENMASANALPPVDYVIKSIYRTTVLVNDIRLMVRCMDCIELSKNLRALKKKTMEDISKLKGISKPSP*" + } + ], + "YGL196W": [ + { + "revision": "040723", + "new_alignment": "MSDVLSQYKGCSVRDLPTPNFVINEEKFDKNCTTMLNNVEKLSQECGVPIKFRAHVKTHKTAKGTLKQLGHGLPLAKRTTRAILVSTLKEAEELLNYQDRQCSDYIDDITYSLPCCVPEFIPLLSNLSRRVNNFQVFVDNIEHLENLKNFGRPASGKKWSVFIKVDMGTKRAGLAFDSPEFLSLLKKLTSSEIKEVIEPYGFYAHAGHSYSSTSINDTQNLLMEEVKAVNSAAKVLCSVDPQFDPSKLTLSVGATPTSNSLKLDNKSTLVKFITTQLVSTLEIHCGNYCMYDLQQVATGCVQDHELSGFVLGTVLSSYPSRGELLSNTGVMCLTREASSIKGFGICADLEHVLKSESFSREWYVARVSQEHGILRPIRNWNETTPLKLGSKIAVLPQHACITMGQFPYYFVVNSEGIVNDVWLPFQKW*--", + "old_alignment": "------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------MEEVKAVNSAAKVLCSVDPQFDPSKLTLSVGATPTSNSLKLDNKSTLVKFITTQLVSTLEIHCGNYCMYDLQQVATGCVQDHELSGFVLGTVLSSYPSRGELLSNTGVMCLTREASSIKGFGICADLEHVLKSESFSREWYVARVSQEHGILRPIRNWNETTPL-------------------------------------------N*" + } + ], + "YGL129C": [ + { + "revision": "110203", + "new_alignment": "--------------------------------------MLRMSTSRFIGQRLFTTARSLQAAKPAPKGKTQGFSKKSSSVSSYSSAKRVTPGSLYKNWTNTTHTAQLQQTAVPLALPIFNFDDISKTLNKVVSYSNKQYKSLHHLGSFKKSQFNELFQKPVCLVREDATNSFLKKLVSHPVKKFIITGEPGVGKTVLLSQAHAYAVDSKQIIINISYPELFLNGRNDFSYDDDLKLFIQPMYLKKLIRKILKANDPALLKSIELSKDYKFSNANPKNASVKPFVTLNKTKNTVLDLLSVMTHPHNRGKLMKAIIDELSVQSKVPIMFTVDNFSKVLTTAYSAYRNTENKQIYSLDLQMGKLMMDIISGETKFANGESSTILAISGVDRTNKTLPVALGKIPVDPYVTRYHYEPKFVELLQKGNVTEFEVPKLNKQEVNELIDYYKQSNVLLDKDITGKKWENLIDEKYFLSGNGNPRELLKSLVLSHR*", + "old_alignment": "MYKNIYICILYIYINFYTSRENINKRTSTSHVVIRIRIMLRMSTSRFIGQRLFTTARSLQAAKPAPKGKTQGFSKKSSSVSSYSSAKRVTPGSLYKNWTNTTHTAQLQQTAVPLALPIFNFDDISKTLNKVVSYSNKQYKSLHHLGSFKKSQFNELFQKPVCLVREDATNSFLKKLVSHPVKKFIITGEPGVGKTVLLSQAHAYAVDSKQIIINISYPELFLNGRNDFSYDDDLKLFIQPMYLKKLIRKILKANDPALLKSIELSKDYKFSNANPKNASVKPFVTLNKTKNTVLDLLSVMTHPHNRGKLMKAIIDELSVQSKVPIMFTVDNFSKVLTTAYSAYRNTENKQIYSLDLQMGKLMMDIISGETKFANGESSTILAISGVDRTNKTLPVALGKIPVDPYVTRYHYEPKFVELLQKGNVTEFEVPKLNKQEVNELIDYYKQSNVLLDKDITGKKWENLIDEKYFLSGNGNPRELLKSLVLSHR*" + } + ], + "YGL124C": [ + { + "revision": "110203", + "new_alignment": "MNLNESYLDAEIPKGQLKHSKSGNFEGIPIVATTSEPTTSVNLDETFFKKAPIAMPICDDHSVSKSTSVNSLNTTSLASRRSPLQTKKLQAKNNLLSADLAKSNDDTTRALNSPKKDFGPYLDSENDIRSRLAESIYSMETSIRGSELQRRPYVSNEIPNVFKFSKFNSNCKLNESQTLCDKNFFIFTSAGKPIYCMHGKDEQIMSYTGLVNTVISYFQVNGPSELKTISTLTSGKRLTFLDKSPILLMAQSERGESSNELLNQLDFLYSYILSSLSERQLLRLFSKRENFDLRNYLESTDFENLDEICSLICNRMFPDLLLNSLQCLPFNHSSRLKLQNVVLQQLEKRQDIPRGTLLYGLIIAPQNKLCCVLRPRGHTLHTTDLHLLFCLISHQFQNLDETQELWVPICFPKFNSSGFLYCYIKFLPNDTHSNEKSALVLISAQKDAFFSLKSFSDELIIKLEEEKLLKKINTSKGFKLSDIPAPMVHHFIYKSKQNVQYVMPHFEVNSNIALDSSQGLEYELKLKTYYQQLHGTVVRDNGNLLSRSMLNFVRWSSKDNEDLAMDETQMDFSELDEYIIGNSSFKQESVNMVGMAWVTPTFELYLIGNNGIVDKRVLFKSARKVANWCQKHESRLFISDGAVF*", + "old_alignment": "MNLNESYLDAEIPKGQLKHSKSGNFEGIPIVATTSEPTTSVNLDETFFKKAPIAMPICDDHSVSKSTSVNSLNTTSLASRRSPLQTKKLQAKNNLLSADLAKSNDDTTRALNCPKKDFGPYLDSENDIRSRLAESIYSMETSIRGSELQRRPYVSNEIPNVFKFSKFNSNCKLNESQTLCDKNFFIFTSAGKPIYCMHGKDEQIMSYTGLVNTVISYFQVNGPSELKTISTLTSGKRLTFLDKSPILLMAQSERGESSNELLNQLDFLYSYILSSLSERQLLRLFSKRENFDLRNYLESTDFENLDEICSLICNRMFPDLLLNSLQCLPFNHSSRLKLQNVVLQQLEKRQDIPRGTLLYGLIIAPQNKLCCVLRPRGHTLHTTDLHLLFCLISHQFQNLDETQELWVPICFPKFNSSGFLYCYIKFLPNDTHSNEKSALVLISAQKDAFFSLKSFSDELIIKLEEEKLLKKINTSKGFKLSDIPAPMVHHFIYKSKQNVQYVMPHFEVNSNIALDSSQGLEYELKLKTYYQQLHGTVVRDNGNLLSRSMLNFVRWSSKDNEDLAMDETQMDFSELDEYIIGNSSFKQESVNMVGMAWVTPTFELYLIGNNGIVDKRVLFKSARKVANWCQKHESRLFISDGAVF*" + } + ], + "YGL109W": [ + { + "revision": "110203", + "new_alignment": "MAAQNPLADIQVYKRYKAKRRMEGQQKNSCTIAYIDSLQYYCRRSLSHKSCFPFPSQHAFSRPLPLSESYETWHALELAFCLTRPYCTFHSSLEISSQQLTLRPPLG*", + "old_alignment": "MAAQNPLADIQVYKRYKAKRRMEGQKKNSCTIAYIDSLQYYCRRSLSHKSCFPFPSQHAFSRPLPLSESYETWHALELAFCLTRPYCTFHSSLEISSQQLTLRPPLG*" + } + ], + "YGL063W": [ + { + "revision": "110203", + "new_alignment": "MLLGYCGSGYYGMQYNPPHKTIEGEILTKLFDVGAISEENSLAPKKNSFMAAARTDKGVHAMLNLLSLKITLREDTVAKLNAALPPEIRVWGIQPVNKKFNARSACDSRWYQYLIPEFILIGPPRSSLLHRNVGGCYREDGSQEVWDTFLEQTRGRFSGDELCRLQDTAQKLSESDPLVQDYVGLLSGTLSGYCLSPSKLDAFEAAMQEYVGTHNFHNFTTGKLWGDPSAQRHIKKVVVSQASPGWICVRIHGQSFMLHQIRRMVALAVLAARCQLPPNIVRNYFNAGPRKYIPRAPAQGLLLEGPVFDGYNTKLRNLLYCEIRPDDITLERMCRFRERQICTAIAHEETQRHVFCHFVRQMNRLATPLI*", + "old_alignment": "MLLGYCGSGYYGMQYNPPHKTIEGEILTKLFDVGAISEENSLAPKKNSFMAAARTDKGVHAMLNLLSLKITLREDTVAKLNAALPPEIRVWGIQPVNKKFNARSACDSRWYQYLIPEFILIGPPRSSLLHRNVGGSYREDGSQEVWDTFLEQTRGRFSGDELCRLQDTAQKLSESDPLVQDYVGLLSGTLSGYCLSPSKLDAFEAAMQEYVGTHNFHNFTTGKLWGDPSAQRHIKKVVVSQASPGWICVRIHGQSFMLHQIRRMVALAVLAARCQLPPNIVRNYFNAGPRKYIPRAPAQGLLLEGPVFDGYNTKLRNLLYCEIRPDDITLERMCRFRERQICTAIAHEETQRHVFCHFVRQMNRLATPLI*" + } + ], + "YGL059W": [ + { + "revision": "110203", + "new_alignment": "MSKYQINCIRYRHFLRTSNISQIPDFTKYCIGPVNEELAPYIMETMKAYPSNSEYINPQHYYHNRTVLVENYLKRSPNPVSLTQLAQYYDDSTKLTRTKIINSGKFVKEELVIRIAHKLNQLQQLPFNVVNNFHFVQVYESYYNIFESFRKYPTIRTLEDASQFADFIKNMLEGFNTLNLPHLIMGALECTILDLYPREKMDQLLSDLLRARISRRLIVEEHVSITANYTSGKEENTLVLGDIFQECSAKKYLLEASEESQKFIQDMYFKDIPMPEFIIEGDTQLSFYFLPTHLKYLLGEILRNTYEATMKHYIRKGLEKPEPIIVTVVSNDESYLFRISDKAGGVLHDDENLWSFGKSKERAQESLNNFHKLPGLQTVSIYDEVHSHTKYNSKLKSLQSITLKPYMHTSLEPMSYPSIINGHIKYETPLIELLKRSFRYKLGIGLAMCKVYAEYWNGDLSLHSMPGYGTDVVLKLGNLMKHTKKLQLDKV*", + "old_alignment": "MSKYQINCIRYRHFLRTSNISQIPDFTKYCIGPVNEELAPYIMETMKAYPSNSEYINPQHYYHNRTVLVENYLKRSPNPVSLTQLAQYYDDSTKLTRTKIINSGKFVKEELVIRIAHKLNQLQQLPFNVVNNFHFVQVYESYYNIFESFRKYPTIRTLEDASQFADFIKNMLEGFNTLNLPHLIMGALECTILDLYPREKMDQLLSDLLRARISRRLIVEEHVVYTANYTSGKEENTLVLGDIFQECSAKKYLLEASEESQKFIQDMYFKDIPMPEFIIEGDTQLSFYFLPTHLKYLLGEILRNTYEATMKHYIRKGLEKPEPIIVTVVSNDESYLFRISDKAGGVLHDDENLWSFGKSKERAQESLNNFHKLPGLQTVSIYDEVHSHTKYNSKLKSLQSITLKPYMHTSLEPMSYPSIINGHIKYETPLIELLKRSFRYKLGIGLAMCKVYAEYWNGDLSLHSMPGYGTDVVLKLGNLMKHTKKLQLDKV*" + } + ], + "YGL056C": [ + { + "revision": "110203", + "new_alignment": "MPQNTRHTSIVEMLSTPPQLPNSTDLNSLSEQTDKNTEANKSDTESLHKSISKSSSSSSLSTLDNTEYSNNNGNSLSTLNSQNLLSVHRQEWQHTPLSNLVEQNKLIFIRGSISVEEAFNTLVKHQLTSLPVENFPGDMNCLTFDYNDLNAYLLLVLNRIKVSNDKITSDCQNGKSVPVGEIVKLTPKNPFYKLPETENLSTVIGILGSGVHRVAITNVEMTQIKGILSQRRLIKYLWENARSFPNLKPLLDSSLEELNIGVLNAARDKPTFKQSRVISIQGDEHLIMALHKMYVERISSIAVVDPQGNLIGNISVTDVKHVTRTSQYPLLHNTCRHFVSVILNLRGLETGKDSFPIFHVYPTSSLARTFAKLVATKSHRLWIVQPNDNQPTASSEKSSSPSPSTPPVTTLPSLASSYHSNTQSSRMANSPVLKSSDTSNNKINVNINLSGPSPSQPQSPSATMPPPQSPSNCPASPTPAHFEKEYRTGKLIGVVSLTDILSVLARKQTHHKEIDPQMARKQRGHIG*", + "old_alignment": "MPQNTRHTSIVEMLSTPPQLPNSTDLNSLSEQTDKNTEANKSDTESLHKSISKSSSSSSLSTLDNTEYSNNNGNSLSTLNSQNLLSVHRQEWQHTPLSNLVEQNKLIFIRGSISVEEAFNTLVKHQLTSLPVENFPGDMNCLTFDYNDLNAYLLLVLNRIKVSNDKITSDCQNGKSVPVAEIVKLTPKNPFYKLPETENLSTVIGILGSGVHRVAITNVEMTQIKGILSQRRLIKYLWENARSFPNLKPLLDSSLEELNIGVLNAARDKPTFKQSRVISIQGDEHLIMALHKMYVERISSIAVVDPQGNLIGNISVTDVKHVTRTSQYPLLHNTCRHFVSVILNLRGLETGKDSFPIFHVYPTSSLARTFAKLVATKSHRLWIVQPNDNQPTASSEKSSSPSPSTPPVTTLPSLASSYHSNTQSSRMANSPVLKSSDTSNNKINVNINLSGPSPSQPQSPSATMPPPQSPSNCPASPTPAHFEKEYRTGKLIGVVSLTDILSVLARKQTHHKEIDPQMARKQRGHIG*" + } + ], + "YGL041W-A": [ + { + "revision": "110203", + "new_alignment": "MLRVIWKHSSRVTRSIELSNISTTNHTRSLRRLSWISPRRFYAQSWDDRQPNDKIDAHIKVQKLMDQINSRPNVL---EKLEKVSNIMIEKKLVNLDGTSANEENTMKPWQMIKILMDRDLRHAMKEFKLELEKSGIQLGPEQLAPLMTVLGLEKKK*", + "old_alignment": "---------------------------------------------------------------------------MFWEKLEKVSNIMIEKKLVNLDGTSANEENTMKPWQMIKILMDRDLRHAMKEFKLELEKSGIQLGPEQLAPLMTVLGLEKKK*" + } + ], + "YGL041C": [ + { + "revision": "110203", + "new_alignment": "MPDFSNSNLNSFIACLRSLSIKILIICHGFIVFSSLAEVPSRLTNFFSIMILLTFSNFSRTLGLEFI*----------------------------------------------", + "old_alignment": "MPDFSNSNLNSFIACLRSLSIKILIICHGFIVFSSLAEVPSRLTNFFSIMILLTFSNFS---------QNIRPRIYLIHEFLHLYVCIYFVIRLSVVPRLSVKSSRRNPGKPP*" + } + ], + "YGL033W": [ + { + "revision": "141118", + "new_alignment": "MAPKKKSNDRAIQAKGSEAEQLIEDYLVSQYKPFSVNDIVQNLHNKVTKTTATKALENLVNEKRIVSKTFGKIIIYSCNEQDTALPSNIDPSQFDFETVLQLRNDLIELERDKSTAKDALDSVTKEPENEDLLTIIENEENELKKIESKLQSLQDDWDPANDEIVKRIMSEDTLLQKEITKRSKICKNLIATIKDSVCPKNMNEFLEEIGFEDI*-------------", + "old_alignment": "MAPKKKSNDRAIQAKGSEAEQLIEDYLVSQYKPFSVNDIVQNLHNKVTKTTATKALENLVNEKRIVSKTFGKIIIYSCNEQDTALPSNIDPSQFDFETVLQLRNDLIELERDKSTAKDALDSVTKEPENEDLLTIIENEENELKKIESKLQSLQDDWDPANDEIVKRIMSEDTLLQKEITKRSKICKNLIATIKDSVCPKNMNEFL---------VCILNIFRDLFF*" + } + ], + "YGR006W": [ + { + "revision": "040206", + "new_alignment": "MDLDLASILKGEISKKKKELANSKGVQPPCTEKFQPHESANIDETPRQVEQESTDEENLSDNQSDDIRTTISKLENRPERIQEAIAQDKTISVIIDPSQIGSTEGKPLLSMKCNLYIHEILSRWKASLEAYHPELFLDTKKALFPLLLQLRRNQLAPDLLISLATVLYHLQQPKEINLAVQSYMKLSIGNVAWPIGVTSVGIHARSAHSKIQGGRNAANIMIDERTRLWITSIKRLITFEEWYTSNHDSLA*--------------------", + "old_alignment": "MDLDLASILKGEISKKKKELANSKGVQPPCTEKFQPHESANIDETPRQVEQESTDEENLSDNQSDDIRTTISKLENRPERIQEAIAQDKTISVIIDPSQIGSTEGKPLLSMKCNLYIHEILSRWKASLEAYHPELFLDTKKALFPLLLQLRRNQLAPDLLISLATVLYHLQQPKEINLAVQSYMKLSIGNVAWPIGVTSV----------------------------------------------------AFMLVVHIRKFKEAGMLLT*" + } + ], + "YGR034W": [ + { + "revision": "061006", + "new_alignment": "MAKQSLD---------VSSDRRKARKAYFTAPSSERRVLLSAPLSKELRAQYGIKALPIRRDDEVLVVRGSKKGQEGKISSVYRLKFAVQVDKVTKEKVNGASVPINLHPSKLVITKLHLDKDRKALIQRKGGKLE*", + "old_alignment": "-------MLNYCKTMYVSSDRRKARKAYFTAPSSERRVLLSAPLSKELRAQYGIKALPIRRDDEVLVVRGSKKGQEGKISSVYRLKFAVQVDKVTKEKVNGASVPINLHPSKLVITKLHLDKDRKALIQRKGGKLE*" + } + ], + "YGR058W": [ + { + "revision": "110203", + "new_alignment": "MCAKKLKYAAGDDFVRYATPKEAMEETRREFEKEKQRQQQIKVTQAQTPNTRVHSAPIPLQTQYNKNRAENGHHSYGSPQSYSPRHTKTPVDPRYNVIAQKPAGRPIPPAPTHYNNLNTSAQRIASSPPPLIHNQAVPAQLLKKVAPASFDSREDVRDMQVATQLFHNHDVKGKNRLTAEELQNLLQNDDNSHFCISSVDALINLFGASRFGTVNQAEFIALYKRVKSWRKVYVDNDINGSLTISVSEFHNSLQELGYLIPFEVSEKTFDQYAEFINRNGTGKELKFDKFVEALVWLMRLTKLFRKFDTNQEGIATIQYKDFIDATLYLGRFLPH*", + "old_alignment": "MCAKKLKYAAGDDFVRYATPKEAMEETRREFEKEKQRQQQIKVTQAQTPNTRVHSAPIPLQTQYNKNRAENGHHSYGSPQSYSPRHTKTPVDPRYNVIAQKPAGRPIPPAPTHYNNLNTSAQRIASSPPPLIHNQAVPAQLLKKVAPASFDSREDVRDMQVATQLFHNHDVKGKNRLTAEELQNLLQNDDNSHFCISSVDALINLFGASRFGTVNQAEFIALYKRVKSWRKVYVDNDINGSLTISVSEFHNSLQELGYLIPFEVSEKTFDQYAEFINRNGTGKELKFDKFVEALVWLMRLTKLFRKFDTNQEGIATIQYKDFIYATLYLGRFLPH*" + } + ], + "YGR067C": [ + { + "revision": "110203", + "new_alignment": "MAAGQKKYICSFCLKPFSRSEHKIRHERSHAGVKPFQCQVCKHSFVRRDLLQRHIRTVHRTFLLSSYASMTGDKADIPVSLGVGDVDSTSPRDIKMETLVNSMIKVNSGLINIHYHSSNVEKMDKQQRCVIGKESSSLKKGKSRFKQVKSRLESSISVKILQEYSLDFISSRDILTFFRMGVSHLVENKIFQNFFPDLFSSLQNDELVESFWINKPFGLIIACLGMSISLNQDSQKLWFICCTNLYASSSKHDNDFDTEDILSQTEQHDVFALILFYSLLVMLENNIPVSNSIKKFDVFSMLQDILKPFTVASSSYHYLNSKENAWFIFDLWVNILRDSNNFNNDSLLIFGWFVNQEFISSNPLKDFIYKGPSMSTTDLTLKHINILADSAYVYFIIKKTYPQELPSDFRVHDLLVYLNECFVMQQPIKPETSANPSLFANVMNARITDCKSKSNWLLWETIWFEFINNLTLRNGTTRNIWFIDNFPQVSTSCLLHHSSSFVDETLITTNLSIISMLLNLKSFTLASLNPRNIQLITDIVSFQLKLFSSELIASSDVSPSQVSQLLVNPNVHLMLYFWFDTIYVQRQSYLSSTEKEEFEKVEVFVNDYIITHQKNLVTDLHSILFDFWSDSFIAYHILLHAIVSSLRDNILYPYLIYSPHLNDQTKALLTDISNWSCFALQQPFRKTSRGSLSGASDMKSFSVASCLPLSPNFLKRDSNCNKILLPPLDIKAIEPISTSNYTYVNSAPKQQEKEQPLLRATGNNINLVQTIVVPPQVNMESQEFSASSTDNKQSKNIEIFSQIK*", + "old_alignment": "MAAGQKKYICSFCLKPFSRSEHKIRHERSHAGVKPFQCQVCKHSFVRRDLLQRHIRTVHRTFLLSSYASMTGDKADIPVSLGVGDVDSTSPRDIKMETLVNSMIKVNSGLINIHYHSSNVEKMDKQQRCVIGKESSSLKKGKSRFKQVKSRLESSISVKILQEYSLDFISSRDILTFFRMGVSHLVENKIFQNFFPDLFSSLQNDELVESFWINKPFGLIIACLGMSISLNQDSQKLWFICCTNLYASSSKHDNDFDTEDILSQTEQHDVFALILFYSLLVMLENNIPVSNSIKKFDVFSMLQDILKPFTVASSSYHYLNSKENAWFIFDLWVNILRDSNNFNNDSLLIFGWFVNQEFISSNPLKDFIYKGPSMSTTDLTLKHINILADSAYVYFIIKKTYPQELPSDFRVHDLLVYLNECFVMQQPIKPETSANPSLFANVMNARITDCKSKSNWLLWETIWFEFINNLTLRNGTTRNIWFIDNFPQVSTSCLLHHSSSFVDETLITTNLSIISMLLNLKSFTLASLNPRNIQLITDIVSFQLKLFSSELIASSDVSPSQVSQLLVNPNVHLMLYFWFDTIYVQRQSYLSSTEKEEFEKVEVFVNDYIITHQKNLVTDLHSILFDFWSDSFIAYHILLHAIVSSLRDNILYPYLIYSPHLNDQTKALLTDISNWSCFALQQPFRKTSRGSLSGASDMKSFSVASCLPLSPNFLKRDSNCNKILLPPLDIKAIEPISTSNYTYVNSAPKQQEKEQPLLRATGNNINLVQTIVVPPQVNMESQEFSASSTDNKQS----------*" + } + ], + "YGR070W": [ + { + "revision": "110203", + "new_alignment": "MNSNELDLRNKYFYEIFGKKRKSDTSTPTQLFSGSKVQTNINEISITNDEDEDSTEDENKASLKDYTLGHDTGARYRIAPDCSSHQLKASPVLHISTNLNSSPQSFTGDQISPTNKKISINDSTRQDKGNSCTTTSSPSQKRSNVLLPHVRKHSSPSLLSFSKNSGSHMGDPNQLSTPPTPKSAGHTMELHSSFNGKHSSSSTSSLFALESLKTQNRRSSNSSNHSSQYRRHTNQHQRHHSRSKSSPVSLTEISMIKGTPLVYPALLSLIAIKFKQTIKLSTHKKMGLLYRDSFTGKQAIDTLCLIIGSLDRNLGMLIGKSLEAQKLFHDVLYDHGVRDSVLEIYELSSESIFMAHQSQSSTSIANTFSSSSSSVNSLRTKTEIYGVFVPLTHCYSSTCSLEKLCYSISCPNRLQQQANLHLKLGGGLKRNISLALDKEDDERISWTNSVPKSVWESLSKQQIKRQEAIYELFTTEKKFVKSLEIIRDTFMKKLLETNIIPSDVRINFVKHVFAHINEIYSVNREFLKALAQRQSLSPICPGIADIFLQYLPFFDPFLSYIASRPYAKYLIETQRSVNPNFARFDDEVSNSSLRHGIDSFLSQGVSRPGRYSLLVREIIHFSDPVTDKDDLQMLMKVQDLLKDLMKRIDRASGAAQDRYDVKVLKQKILFKNEYVNLGLNNEKRKIKHEGLLSRKDVNKTDASFSGDIQFYLLDNMLLFLKSKAVNKWHQHTVFQRPIPLPLLFICPAEDMPPIKRYVTENPNCSAGVLLPQYQTSNPKNAIVFAYYGTKQQYQVTLYAPQPAGLQTLIEKVKQEQKRLLDETKHITFKQMVGQFFHSYINTNRVNDVLICHAGKILLVATNMGLFVLNYATSINQKPVHLLHKISISQISVLEEYKVMILLIDKKLYGCPLDVIDDAENADFLFRKNSKVLFKYVAMFKDGFCNGKRIIMIAHHFLHAVQLLIVNPLIFDFNSGNFKKNLKAGLVDFSVDSEPLSFSFLENKICIGCKKNIKILNVPEVCDKNGFKMRELLNLHDNKVLANMYKETFKVVSMFPIKNSTFACFPELCFFLNKQGKREETKGCFHWEGEPEQFACSYPYIVAINSNFIEIRHIENGELVRCVLGNKIRMLKSYAKKILYCYEDPQGFEIIELLNF*", + "old_alignment": "MNSNELDLRNKYFYEIFGKKRKSDTSTPTQLFSGSKVQTNINEISITNDEDEDSTEDENKASLKDYTLGHDTGARYRIAPDCSSHQLKASPVLHISTNLNSSPQSFTGDQISPTNKKISINDSTRQDKGNSCTTTSSPSQKRSNVLLPHVRKHSSPSLLSFSKNSGSHMGDPNQLSTPPTPKSAGHTMELHSSFNGKHSSSSTSSLFALESLKTQNRRSSNSSNHSSQYRRHTNQHQRHHSRSKSSPVSLTEISMIKGTPLVYPALLSLIAIKFKQTIKLSTHKKMGLLYRDSFTGKQAIDTLCLIIGSLDRNLGMLIGKSLEAQKLFHDVLYDHGVRDSVLEIYELSSESIFMAHQSQSSTSIANTFSSSSSSVNSLRTKTEIYGVFVPLTHCYSSTCSLEKLCYSISCPNRLQQQANLHLKLGGGLKRNISLALDKEDDERISWTNSVPKSVWESLSKQQIKRQEAIYELFTTEKKFVKSLEIIRDTFMKKLLETNIIPSDVRINFVKHVFAHINEIYSVNREFLKALAQRQSLSPICPGIADIFLQYLPFFDPFLSYIASRPYAKYLIETQRSVNPNFARFDDEVSNSSLRHGIDSFLSQGVSRPGRYSLLVREIIHFSDPVTDKDDLQMLMKVQDLLKDLMKRIDRASGAAQDRYDVKVLKQKILFKNEYVNLGLNNEKRKIKHEGLLSRKDVNKTDASFSGDIQFYLLDNMLLFLKSKAVNKWHQHTVFQRPIPLPLLFICPAEDMPPIKRYVTENPNCSAGVLLPQYQTSNPKNAIVFAYYGTKQQYQVTLYAPQPAGLQTLIEKVKQEQKRLLDETKHITFKQMVGQFFHSYINTNRVNDVLICHAGKILLVATNMGLFVLNYATSINQKPVHLLHKISISQISVLEEYKVMILLIDKKLYGCPLDVIDDAENADFLFRKNSKVLFKYVAMFKDGFCNGKRIIMIAHHFLHAAQLLIVNPLIFDFNSGNFKKNLKAGLVDFSVDSEPLSFSFLENKICIGCKKNIKILNVPEVCDKNGFKMRELLNLHDNKVLANMYKETFKVVSMFPIKNSTFACFPELCFFLNKQGKREETKGCFHWEGEPEQFACSYPYIVAINSNFIEIRHIENGELVRCVLGNKIRMLKSYAKKILYCYEDPQGFEIIELLNF*" + } + ], + "YGR088W": [ + { + "revision": "060126", + "new_alignment": "-----------MNVFGKKEEKQEKVYSLQNGFPYSHHPYASQYSRPDGPILLQDFHLLENIASFDRERVPERVVHAKGGGCRLEFELTDSLSDITYAAPYQNVGYKCPGLVRFSTVGGESGTPDTARDPRGVSFKFYTEWGNHDWVFNNTPVFFLRDAIKFPVFIHSQKRDPQSHLNQFQDTTIYWDYLTLNPESIHQITYMFGDRGTPASWASMNAYSGHSFIMVNKEGKDTYVQFHVLSDTGFETLTGDKAAELSGSHPDYNQAKLFTQLQNGEKPKFNCYVQTMTPEQATKFRYSVNDLTKIWPHKEFPLRKFGTITLTENVDNYFQEIEQVAFSPTNTCIPGIKPSNDSVLQARLFSYPDTQRHRLGANYQQLPVNRPRNLGCPYSKGDSQYTAEQCPFKAVNFQRDGPMSYYNFGPEPNYISSLPNQTLKFKNEDNDEVSDKFKGIVLDEVTEVSVRKQEQDQIRNEHIVDAKINQYYYVYGISPLDFEQPRALYEKVYNDEQKKLFVHNVVCHACKIKDPKVKKRVTQYFGLLNEDLGKVIAECLGVPWEPVDLEGYAKTWSIASAN*", + "old_alignment": "MPIRSISSASQMNVFGKKEEKQEKVYSLQNGFPYSHHPYASQYSRPDGPILLQDFHLLENIASFDRERVPERVVHAKGGGCRLEFELTDSLSDITYAAPYQNVGYKCPGLVRFSTVGGESGTPDTARDPRGVSFKFYTEWGNHDWVFNNTPVFFLRDAIKFPVFIHSQKRDPQSHLNQFQDTTIYWDYLTLNPESIHQITYMFGDRGTPASWASMNAYSGHSFIMVNKEGKDTYVQFHVLSDTGFETLTGDKAAELSGSHPDYNQAKLFTQLQNGEKPKFNCYVQTMTPEQATKFRYSVNDLTKIWPHKEFPLRKFGTITLTENVDNYFQEIEQVAFSPTNTCIPGIKPSNDSVLQARLFSYPDTQRHRLGANYQQLPVNRPRNLGCPYSKGDSQYTAEQCPFKAVNFQRDGPMSYYNFGPEPNYISSLPNQTLKFKNEDNDEVSDKFKGIVLDEVTEVSVRKQEQDQIRNEHIVDAKINQYYYVYGISPLDFEQPRALYEKVYNDEQKKLFVHNVVCHACKIKDPKVKKRVTQYFGLLNEDLGKVIAECLGVPWEPVDLEGYAKTWSIASAN*" + } + ], + "YGR145W": [ + { + "revision": "110203", + "new_alignment": "MVLKSTSANDVSVYQVSGTNVSRSLPDWIAKKRKRQLKNDLEYQNRVELIQDFEFSEASNKIKVSRDGQYCMATGTYKPQIHVYDFANLSLKFDRHTDAENVDFTILSDDWTKSVHLQNDRSIQFQNKGGLHYTTRIPKFGRSLVYNKVNCDLYVGASGNELYRLNLEKGRFLNPFKLDTEGVNHVSINEVNGLLAAGTETNVVEFWDPRSRSRVSKLYLENNIDNRPFQVTTTSFRNDGLTFACGTSNGYSYIYDLRTSEPSIIKDQGYGFDIKKIIWLDNVGTENKIVTCDKRIAKIWDRLDGKAYASMEPSVDINDIEHVPGTGMFFTANESIPMHTYYIPSLGPSPRWCSFLDSITEELEEKPSDTVYSNYRFITRDDVKKLNLTHLVGSRVLRAYMHGFFINTELYDKVSLIANPDAYKDEREREIRRRIEKERESRIRSSGAVQKPKIKVNKTLVDKLSQKRGDKVAGKVLTDDRFKEMFEDEEFQVDEDDYDFKQLNPVKSIKETEEGAAKRIRALTAAEESDEERIAMKDGRGHYDYEDEESDEEESDDETNQKSNKEELSEKDLRKMEKQKALIERRKKEKEQSERFMNEMKAGTSTSTQRDESAHVTFGEQVGELLEVENGKKSNESILRRNQRGEAELTFIPQRKSKKDGNYKSRRHDNSSDEEGIDENGNKKDNGRSKPRFENRRRASKNAFRGM*", + "old_alignment": "MVLKSTSANDVSVYQVSGTNVSRSLPDWIAKKRKRQLKNDLEYQNRVELIQDFEFSEASNKIKVSRDGQYCMATGTYKPQIHVYDFANLSLKFDRHTDAENVDFTILSDDWTKSVHLQNDRSIQFQNKGGLHYTTRIPKFGRSLVYNKVNCDLYVGASGNELYRLNLEKGRFLNPFKLDTEGVNHVSINEVNGLLAAGTETNVVEFWDPRSRSRVSKLYLENNIDNRPFQVTTTSFRNDGLTFACGTSNGYSYIYDLRTSEPSIIKDQGYGFDIKKIIWLDNVGTENKIVTCDKRIAKIWDRLDGKAYASMEPSVDINDIEHVPGTGMFFTANESIPMHTYYIPSLGPSPRWCSFLDSITEELEEKPSDTVYSNYRFITRDDVKKLNLTHLVGSRVLRAYMHGFFINTELYDKVSLIANPDAYKDEREREIRRRIEKERESRIRSSGAVQKPKIKVNKTLVDKLSQKRGDKVAGKVLTDDRFKEMFEDEEFQVDEDDYDFKQLNPVKSIKETEEGAAKRIRALTAAEESDEERIAMKDGRGHYDYEDEESDEEESDDETNQKSNKEELSEKDLRKMEKQKALIERRKKEKEQSERFMNEMKAGTSTSTQRDESAHVTFGEQVGELLEVENGKKSNESILRRNQRGEAELTFIPQRKSKKDGNYKSRRHDNSSDEEGIEENGNKKDNGRSKPRFENRRRASKNAFRGM*" + } + ], + "YGR153W": [ + { + "revision": "110203", + "new_alignment": "MGKACLNKEVGTYECEGERDTYSFFTSLSDIQDSSSNEEQCGVGSILSEDSFTFEGSNVSIRLFSLDLNALNENENGSKNPVKFTIPPKIEQRKEARQREKRLRRVAVLPENSRNYLVESSMDSSREYSQPFFDWRHEMVEHGEESVKPCGCHKSRKAKCFKELEMENIEKGDIKKSLFYRDIIEWCRDYEVNKTREVCVPSIHEFYLHGNGSDNLF*", + "old_alignment": "MGKACLNKEVGTYECEGERDTYSFFTSLSDIQDSSSNEEQCGVGSILSEDSFTFEGSNVSIRLFSLDLNALNENENGSKNPVKFTIPPKIEQRKEARQREKRLRRVAVLPENSRNYLVESSMDSSREYSQPFFDWRHEMVEHGEESVKPCGCHKSRKDKCFKELEMENIEKGDIKKSLFYRDIIEWCRDYEVNKTREVCVPSIHEFYLHGNGSDNLF*" + } + ], + "YGR221C": [ + { + "revision": "110203", + "new_alignment": "MFSHYRYKENSCQKREAIPDKSRVSLTFLQKRTDSSNVTVAVAVAVPIGAIIIVLSVVLIVVYRRCKKEPSMQDFDPNFEGDLYYLPKMDS-----------------------SMNSANSDSNATEKRFIYGGYDDFLQPSIENSQSFKDYVRRINEHAPSAYNIASLASQNNSKLSVPSKHIDLSNKISFESLENSELIVSPQHSNTGQDCDQRCDSTSNPDVNEKSSHNNDNRLKSNYTSRSGLEPQCSREEEENIDRIRSIYNIYFEKSNSTIRSSVTSSIRRDSKLNIATRKSVNMSSQDNPNDTTLIEQSHFGSTTVQEIDSSSSANEEYEDATDYLQVPAPQENKNIASSVYSEVATREKVIPESSLSLTFPPPNGLSTRITSSIYSDTVAKDHIHSAKAPVRALSEGSGQSNLTSAQQYSTYFIDHCNQSNDDNYYYNYPLPLEHPQNYENIGDLPTPTQFIYSTSSHSLTSFKGRPKPPKTLKHVPTARLNGTALNPMDHPEMFYSSPTKIPSTSLTKQFCTPLPYQLRQSVVMTNPSELSMKPRYKPAGSLRNLIKAQYLPGNSSTTTSSSLSQPPSTLSNAINFRVSGLLDDTDILQPPSVGEILPFKASTEDLRKQLGTSHNYEITPYENVHV*", + "old_alignment": "MFSHYRYKENSCQKREAIPDKSRVSLTFLQKRTDSSNVTVAVAVAVPIGAIIIVLSVVLIVVYRRCKK-----------------------NLLCRILTQILRAIYTIYRRWITSMNSANSDSNATEKRFIYGGYDDFLQPSIENSQSFKDYVRRINEHAPSAYNIASLASQNNSKLSVPSKHIDLSNKISFESLENSELIVSPQHSNTGQDCDQRCDSTSNPDVNEKSSHNNDNRLKSNYTSRSGLEPQCSREEEENIDRIRSIYNIYFEKSNSTIRSSVTSSIRRDSKLNIATRKSVNMSSQDNPNDTTLIEQSHFGSTTVQEIDSSSSANEEYEDATDYLQVPAPQENKNIASSVYSEVATREKVIPESSLSLTFPPPNGLSTRITSSIYSDTVAKDHIHSAKAPVRALSEGSGQSNLTSAQQYSTYFIDHCNQSNDDNYYYNYPLPLEHPQNYENIGDLPTPTQFIYSTSSHSLTSFKGRPKPPKTLKHVPTARLNGTALNPMDHPEMFYSSPTKIPSTSLTKQFCTPLPYQLRQSVVMTNPSELSMKPRYKPAGSLRNLIKAQYLPGNSSTTTSSSLSQPPSTLSNAINFRVSGLLDDTDILQPPSVGEILPFKASTEDLRKQLGTSHNYEITPYENVHV*" + } + ], + "YGR225W": [ + { + "revision": "051202", + "new_alignment": "MATPHLYHRYNSKSSNKNINSSGNSTEVDRFIPKSVSRNAYKSIPMLNGFDISYSELCEKSPSPERLSSPEFFNELRNTGHYESISTTNEFSMSSISSSSESQVTRSGSARASRNDYSKLTKEQKDHRKNIAHSLGFQLPDRVFTFETTSAEILEKNKAIKNCFGPGSCAEIRSTFDFSTLSPDVARYYIANSNARSASPQRQIQRPAKRVKSHIPYRVLDAPCLRNDFYSNLISWSRTTNNVLVGLGCSVYIWSEKEGAVSILDHQYLSEKRDLVTCVSFCPYNTYFIVGTKFGRILLYDQKEFFHSSNTNEKEPVFVFQTESFKGICCLEWFKPGEICKFYVGEENGNVSLFEIKSLHFPIKNWSKRQKLEDENLIGLKLHSTYQAQAQQVCGISLNEHANLLAVGGNDNSCSLWDISDLDKPIKKFVLPHKAAVKAIAFCPWSKSLLATGGGSKDRCIKFWHTSTGTLLDEICTSGQVTSLIWSLRHKQIVATFGFGDTKNPVLITLYSYPKLSKLLEVRSPNPLRVLSAVISPSSMAICVATNDETIRFYELWNDKEEIINEIQESGIYGSNIIEYMEGIETTHNKRIR*----------", + "old_alignment": "MATPHLYHRYNSKSSNKNINSSGNSTEVDRFIPKSVSRNAYKSIPMLNGFDISYSELCEKSPSPERLSSPEFFNELRNTGHYESISTTNEFSMSSISSSSESQVTRSGSARASRNDYSKLTKEQKDHRKNIAHSLGFQLPDRVFTFETTSAEILEKNKAIKNCFGPGSCAEIRSTFDFSTLSPDVARYYIANSNARSASPQRQIQRPAKRVKSHIPYRVLDAPCLRNDFYSNLISWSRTTNNVLVGLGCSVYIWSEKEGAVSILDHQYLSEKRDLVTCVSFCPYNTYFIVGTKFGRILLYDQKEFFHSSNTNEKEPVFVFQTESFKGICCLEWFKPGEICKFYVGEENGNVSLFEIKSLHFPIKNWSKRQKLEDENLIGLKLHSTYQAQAQQVCGISLNEHANLLAVGGNDNSCSLWDISDLDKPIKKFVLPHKAAVKAIAFCPWSKSLLATGGGSKDRCIKFWHTSTGTLLDEICTSGQVTSLIWSLRHKQIVATFGFGDTKNPVLITLYSYPKLSKLLEVRSPNPLRVLSAVISPSSMAICVATNDETIRF-----------------------------------------MNCGTIRRK*" + } + ], + "YGR226C": [ + { + "revision": "051202", + "new_alignment": "MCCFDTLHIFYNIRSINPTLLNFINYFLLIVPQFIKSYRFIVSGNANCHGTWRDYCAQYTQRVGRPNFE*---------------------------------------------------------------------------------------------------------------------------------------------------------------------", + "old_alignment": "MCCFDTLHIFYNIRSINPTLLNFINYFLLIVPQFI-----------------------------------NLIVSSLVATQIAMELGEITALSTRKGLGDLTSSSFDNFGYEYSVINTGFLVSPNPKVATICLCLNDHIKDVTCPEVQISSNNVPVDVCQNLIHLSLLPPPVANKDFDQGQKAMAFTAALCGRTNFLIGLSKSEISHKLQELSLPPTASRFACSFREIPVENIC*" + } + ], + "YGR227W": [ + { + "revision": "110203", + "new_alignment": "MDAKKNTGEANNDVLEEEAAIQLIAPGIARNLTQEVITGIFCNVVIYPLLLIYFVLTFRYMTTNIVPYEFIDEKFHVGQTLTYLKGKWTQWDPKITTPPGIYILGLINYYCIKPIFKSWSTLTILRLVNLLGGIIVFPILVLRPIFLFNALGFWPVSLMSFPLMTTYYYLFYTDVWSTILILQSLSCVLTLPFGPVKSIWLSAFFAGVSCLFRQTNIIWTGFIMILAVERPAILQKQFNTHTFNNYLKLFIHAIDDFSNLVLPYMINFVLFFIYLIWNRSITLGDKSSHSAGLHIVQIFYCFTFITVFSLPIWISRNFMKLYKLRIKRKPVQTFFEFIGIMLIIRYFTKVHPFLLADNRHYTFYLFRRLIGNKSRLIKYFFMTPIYHFSTFAYLEVMRPNQLTFHPITPLPIKEPVHLPIQLTHVSWTALITCTMVTIVPSPLFEPRYYILPYFFWRIFITCSCEPLIKDLKPAKEGENPITISSTKRLFMEFLWFMLFNVVTLVIFSKVSFPWTTEPYLQRIIW*", + "old_alignment": "MDAKKNTGEANNDVLEEEAAIQLIAPGIARNLTQEVITGIFCNVVIYPLLLIYFVLTFRYMTTNIVPYEFIDEKFHVGQTLTYLKGKWTQWDPKITTPPGIYILGLINYYCIKPIFKSWSTLTILRLVNLLGGIIVFPILVLRPIFLFNALGFWPVSLMSFPLMTTYYYLFYTDVWSTILILQSLSCVLTLPFGPVKSIWLSAFFAGVSCLFRQTNIIWTGFIMILAVERPAILQKQFNTHTFNNYLKLFIHAIDDFSNLVLPYMKNFVLFFIYLIWNRSITLGDKSSHSAGLHIVQIFYCFTFITVFSLPIWISRNFMKLYKLRIKRKPVQTFFEFIGIMLIIRYFTKVHPFLLADNRHYTFYLFRRLIGNKSRLIKYFFMTPIYHFSTFAYLEVMRPNQLTFHPITPLPIKEPVHLPIQLTHVSWTALITCTMVTIVPSPLFEPRYYILPYFFWRIFITCSCEPLIKDLKPAKEGENPITISSTKRLFMEFLWFMLFNVVTLVIFSKVSFPWTTEPYLQRIIW*" + } + ], + "YGR231C": [ + { + "revision": "040716", + "new_alignment": "MNRSPGEFQRYAKAFQKQLSKVQQTGGRGQVPSPRGAFAGLGGLLLLGGGALFINNALFNVDGGHRAIVYSRIHGVSSRIFNEGTHFIFPWLDTPIIYDVRAKPRNVASLTGTKDLQMVNITCRVLSRPDVVQLPTIYRTLGQDYDERVLPSIVNEVLKAVVAQFNASQLITQREKVSRLIRENLVRRASKFNILLDDVSITYMTFSPEFTNAVEAKQIAQQDAQRAAFVVDKARQEKQGMVVRAQGEAKSAELIGEAIKKSRDYVELKRLDTARDIAKILASSPNRVILDNEALLLNTVVDARIDGRGK*-------", + "old_alignment": "MNRSPGEFQRYAKAFQKQLSKVQQTGGRGQVPSPRGAFAGLGGLLLLGGGALFINNALFNVDGGHRAIVYSRIHGVSSRIFNEGTHFIFPWLDTPIIYDVRAKPRNVASLTGTKDLQMVNITCRVLSRPDVVQLPTIYRTLGQDYDERVLPSIVNEVLKAVVAQFNASQLITQREKVSRLIRENLVRRASKFNILLDDVSITYMTFSPEFTNAVEAKQIAQQDAQRAAFVVDKARQEKQGMVVRAQGEAKSAELIGEAIKKSRDYVELKRLDTARDIAKILASSPNRVILDNEALLLNTVVDARIDGRG--QINSEG*" + } + ], + "YGR236C": [ + { + "revision": "051123", + "new_alignment": "MKLDSGIYSEAQRVVRTPKFRYIMLGLVGAAVVPTAYMRRGYTVPAHSLDNINGVDTTKASVMGTEQRAAMTKGKSLQEMMDDDEVTYLMFSSIM*---------------------------------------", + "old_alignment": "MKLDSGIYSEAQRVVRTPKFRYIMLGLVGAAVVPTAYMRRGYTVPAHSLDNINGVDTTKASVMGTEQRAAMTKGKSLQEMMDDDEVTYLMF-----LFNHVREFVLGSLHLCSLHFVFAFNHSTTNGEGDCDFT*" + } + ], + "YGR271W": [ + { + "revision": "110203", + "new_alignment": "MSTEYSADSSKSFMIAMQSMIDTSQTFNLDRSKISLPDFDDELKKVQKDEQNQRTELTVLSQDRNDWDDIFEEFKDISFAQLQSIIDSYKTKNAVAVYKKIGKLINEAETTLSSNVLLETVLQMVYKHQKQELEKELLDFLGTGNIDLVSLLLQHRRMIVATPIETTILLIKNAVNSTPEFLTQQDIRNQVLKSAEDAKNRKLNPATKIIKYPHVFRKYEAGSTTAMAFAGQKFTLPVGTTRMSYNTHEEIIIPAADQASNKNYLYTKLLKISDLDHFCKTVFPYETLNQIQSLVYPVAYKTNENMLICAPTGAGKTDIALLTIINTIKQFSVVNGENEIDIQYDDFKVIYVAPLKALAAEIVDKFSKKLAPFNIQVRELTGDMQLTKAEILATQVIVTTPEKWDVVTRKANGDNDLVSKVKLLIIDEVHLLHEDRGSVIETLVARTLRQVESSQSMIRIIGLSATLPNFMDVADFLGVNRQIGMFYFDQSFRPKPLEQQLLGCRGKAGSRQSKENIDKVAYDKLSEMIQRGYQVMVFVHSRKETVKSARNFIKLAESNHEVDLFAPDPIEKDKYSRSLVKNRDKDMKEIFQFGFGIHHAGMARSDRNLTEKMFKDGAIKVLCCTATLAWGVNLPADCVIIKGTQVYDSKKGGFIDLGISDVIQIFGRGGRPGFGSANGTGILCTSNDRLDHYVSLITQQHPIESRFGSKLVDNLNAEISLGSVTNVDEAIEWLGYTYMFVRMRKNPFTYGIDWEEIANDPQLYERRRKMIVVAARRLHALQMIVFDEVSMHFIAKDLGRVSSDFYLLNESVEIFNQMCDPRATEADVLSMISMSSEFDGIKFREEESKELKRLSDESVECQIGSQLDTPQGKANVLLQAYISQTRIFDSALSSDSNYVAQNSVRICRALFLIGVNRRWGKFSNVMLNICKSIEKRLWAFDHPLCQFDLPENIIRRIRDTKPSMEHLLELEADELGELVHNKKAGSRLYKILSRFPKINIEAEIFPITTNVMRIHIALGPDFVWDSRIHGDAQFFWVFVEESDKSQILHFEKFILNRRQLNNQHEMDFMIPLSDPLPPQVVVKVVSDTWIGCESTHAISFQHLIRPFNETLQTKLLKLRPLPTSALQNPLIESIYPFKYFNPMQTMTFYTLYNTNENAFVGSPTGSGKTIVAELAIWHAFKTFPGKKIVYIAPMKALVRERVDDWRKKITPVTGDKVVELTGDSLPDPKDVHDATIVITTPEKFDGISRNWQTRKFVQDVSLIIMDEIHLLASDRGPILEMIVSRMNYISSQTKQPVRLLGMSTAVSNAYDMAGWLGVKDHGLYNFPSSVRPVPLKMYIDGFPDNLAFCPLMKTMNKPVFMAIKQHSPDKPALIFVASRRQTRLTALDLIHLCGMEDNPRRFLNIDDEEELQYYLSQVTDDTLKLSLQFGIGLHHAGLVQKDRSISHQLFQKNKIQILIATSTLAWGVNLPAHLVIIKGTQFFDAKIEGYRDMDLTDILQMMGRAGRPAYDTTGTAIVYTKESKKMFYKHFLNVGFPVESSLHKVLDDHLGAEITSGSITNKQEALDFLSWTFLFRRAHHNPTYYGIEDDTSTAGVSEHLSSLIDSTLENLRESQCVLLHGDDIVATPFLSISSYYYISHLTIRQLLKQIHDHATFQEVLRWLSLAVEYNELPVRGGEIIMNEEMSQQSRYSVESTFTDEFELPMWDPHVKTFLLLQAHLSRVDLPIADYIQDTVSVLDQSLRILQAYIDVASELGYFHTVLTMIKMMQCIKQGYWYEDDPVSVLPGLQLRRIKDYTFSEQGFIEMTPQQKKKKLLTLEEIGRFGYKKLLNVFDQLTFGMTESEDTKKRFVSVCQRLPVLEGMKFEEQENNEVLTFYSKHLSSKHNNGFEVYCDKFPKIQKELWFLIGHKGDELLMIKRCQPKQMNKEVIIHCDLFIPEEIRGEELQFSLINDALGLRYDMVHKLIS*", + "old_alignment": "MSTEYSADSSKSFMIAMQSMIDTSQTFNLDRSKISLPDFDDELKKVQKDEPNQRTELTVLSQDRNDWDDIFEEFKDISFAQLQSIIDSYKTKNAVAVYKKIGKLINEAETTLSSNVLLETVLQMVYKHQKQELEKELLDFLGTGNIDLVSLLLQHRRMIVATPIETTILLIKNAVNSTPEFLTQQDIRNQVLESAEDAKNRKLNPATKIIKYPHVFRKYEAGSTTAMAFAGQKFTLPVGTTRMSYNTHEEIIIPAADQASNKNYLYTKLLKISDLDHFCKTVFPYETLNQIQSLVYPVAYKTNENMLICAPTGAGKTDIALLTIINTIKQFSVVNGENEIDIQYDDFKVIYVAPLKALAAEIVDKFSKKLAPFNIQVRELTGDMQLTKAEILATQVIVTTPEKWDVVTRKANGDNDLVSKVKLLIIDEVHLLHEDRGPVIETLVARTLRQVESSQSMIRIIGLSATLPNFMDVADFLGVNRQIGMFYFDQSFRPKPLEQQLLGCRGKAGSRQSKENIDKVAYDKLSEMIQRGYQVMVFVHSRKETVKSARNFIKLAESNHEVDLFAPDPIEKDKYSRSLVKNRDKDMKEIFQFGFGIHHAGMARSDRNLTEKMFKDGAIKVLCCTATLAWGVNLPADCVIIKGTQVYDSKKGGFIDLGISDVIQIFGRGGRPGFGSANGTGILCTSNDRLDHYVSLITQQHPIESRFGSKLVDNLNAEISLGSVTNVDEAIEWLGYTYMFVRMRKNPFTYGIDWEEIANDPQLYERRRKMIVVAARRLHALQMIVFDEVSMHFIAKDLGRVSSDFYLLNESVEIFNQMCDPRATEADVLSMISMSSEFDGIKFREEESKELKRLSDESVECQIGSQLDTPQGKANVLLQAYISQTRIFDSALSSDSNYVAQNSVRICRALFLIGVNRRWGKFSNVMLNICKSIEKRLWAFDHPLCQFDLPENIIRRIRDTKPSMEHLLELEADELGELVHNKKAGSRLYKILSRFPKINIEAEIFPITTNVMRIHIALGPDFVWDSRIHGDAQFFWVFVEESDKSQILHFEKFILNRRQLNNQHEMDFMIPLSDPLPPQVVVKVVSDTWIGCESTHAISFQHLIRPFNETLQTKLLKLRPLPTSALQNPLIESIYPFKYFNPMQTMTFYTLYNTNENAFVGSPTGSGKTIVAELAIWHAFKTFPGKKIVYIAPMKALVRERVDDWRKKITPVTGDKVVELTGDSLPDPKDVHDATIVITTPEKFDGISRNWQTRKFVQDVSLIIMDEIHLLASDRGPILEMIVSRMNYISSQTKQPVRLLGMSTAVSNAYDMAGWLGVKDHGLYNFPSSVRPVPLKMYIDGFPDNLAFCPLMKTMNKPVFMAIKQHSPDKPALIFVASRRQTRLTALDLIHLCGMEDNPRRFLNIDDEEELQYYLSQVTDDTLKLSLQFGIGLHHAGLVQKDRSISHQLFQKNKIQILIATSTLAWGVNLPAHLVIIKGTQFFDAKIEGYRDMDLTDILQMMGRAGRPAYDTTGTAIVYTKESKKMFYKHFLNVGFPVESSLHKVLDDHLGAEITSGSITNKQEALDFLSWTFLFRRAHHNPTYYGIEDDTSTAGVSEHLSSLIDSTLENLRESQCVLLHGDDIVATPFLSISSYYYISHLTIRQLLKQIHDHATFQEVLRWLSLAVEYNELPVRGGEIIMNEEMSQQSRYSVESTFTDEFELPMWDPHVKTFLLLQAHLSRVDLPIADYIQDTVSVLDQSLRILQAYIDVASELGYFHTVLTMIKMMQCIKQGYWYEDDPVSVLPGLQLRRIKDYTFSEQGFIEMTPQQKKKKLLTLEEIGRFGYKKLLNVFDQLTFGMTESEDTKKRFVSVCQRLPVLEGMKFEEQENNEVLTFYSKHLSSKHNNGFEVYCDKFPKIQKELWFLIGHKGDELLMIKRCQPKQMNKEVIIHCDLFIPEEIRGEELQFSLINDALGLRYDMVHKLIS*" + } + ], + "YGR271C-A": [ + { + "revision": "071212", + "new_alignment": "MAKLQRKRSKALGSSLEMSQIMDAGTNKIKRRIRDLERLLKKKKDILPSTVIIEKERNLQALRLELQNNELKNKIKANAKKYHMVRFFEKKKALRKYNRLLKKIKESGADDKDLQQKLRATKIELCYVINFPKTEKYIALYPNDTPSTDPKGVELTNLRREQFLKLVAERMDANTLNVSFEEILKGKKLDEDSIGLTLSPDKDHEDGSQVSPTQDRKELDQVVGEDEKDDFFE*", + "old_alignment": "--------------------------------------------------------------------------------------------------------------------------------------------------------------------------MDANTLNVSFEEILKGKKLDEDSIGLTLSPDKDHEDGSQVSPTQDRKELDQVVGEDEKDDFFE*" + } + ], + "YHL047C": [ + { + "revision": "110203", + "new_alignment": "MIEVPEDNRSSQTKRKNTEKNCNELMVDEKMDDDSSPRDEMKDKLKGTKSLIIRKSELMAKKYDTWQLKAIFLFSAFICTFAYGLDSSIRGTYMTYAMNSYSAHSLISTVSVIVLMISAVSQVIFGGLSDIFGRLTLFLVSIVLYIVGTIIQSQAYDVQRYAAGAVFYYVGLVGVMLQVVLMLSDNSSLKWRLFYTLIPSWPSIITTWVSGSVVEAANPLENWSWNIAMWAFIFPLCCIPLILCMLHMRWKVRNDVEWKELQDEKSYYQTHGLVQMLVQLFWKLDVVGVLLFTAGVGCILVPLTLAGGVSTNWRNSKIIGPFVLGFVLVPGFIYWESRLALVPFAPFKLLKDRGVWAPLGIMFFICFVYQMAAGYLYTILVVAVDESASSATRIINLYSFVTAVVAPFLGLIVTRSSRLKSYIIFGGSLYFITMGLFYRYRSGQDADGGIIAGMVIWGLSSCLFDYPTIVSIQSVTSHENMATVTALNYTVFRIGGAVAAAISGAIWTQSLYPKLLHYMGDADLATAAYGSPLTFILSNPWGTPVRSAMVEAYRHVQKYEVIVALVFSAPMFLLTFCVRDPRLTEDFAQKLPDREYVQTKEDDPINDWIAKRFAKALGRS*--------------------", + "old_alignment": "MIEVPEDNRSSQTKRKNTEKNCNELMVDEKMDDDSSPRDEMKDKLKGTKSLIIRKSELMAKKYDTWQLKAIFLFSAFICTFAYGLDSSIRGTYMTYAMNSYSAHSLISTVSVIVLMISAVSQVIFGGLSDIFGRLTLFLVSIVLYIVGTIIQSQAYDVQRYAAGAVFYYVGLVGVMLQVVLMLSDNSSLKWRLFYTLIPSWPSIITTWVSGSVVEAANPLENWSWNIAMWAFIFPLCCIPLILCMLHMRWKVRNDVEWKELQDEKSYYQTHGLVQMLVQLFWKLDVVGVLLFTAGVGCILVPLTLAGGVSTNWRNSKIIGPFVLGFVLVPGFIYWESRLALVPFAPFKLLKDRGVWAPLGIMFFICFVYQMAAGYLYTILVVAVDESASSATRIINLYSFVTAVVAPFLGLIVTRSSRLKSYIIFGGSLYFITMGLFYRYRSGQDADGGIIAGMVIWGLSSCLFDYPTIVSIQSVTSHENMATVTALNYTVFRIGGAVAAAISGAIWTQSLYPKLLHYMGDADLATAAYGSPLTFILSNPWGTPVRSAMVEAYRHVQKYEVIVALVFSAPMFLLTFCVRDPRLTEDFAQKLPDREYVQTKEDDPINDWIAKRFAKALG---GHKKDLQNPNRICVRKNDL*" + } + ], + "YHL037C": [ + { + "revision": "110203", + "new_alignment": "MYRSSISIQVFICVLFLPLDSGRPLIYMIDLSYICSDATVFSGKSRVIFFSNPICEHTRGNFYLFYLNYIINTFAPKNRGTRRCKPFGLHINCRKKIDCLHVQLSYILCKNKSRKRHMDAHAITLAWLAHALT*--------------------------------------", + "old_alignment": "MYRSSISIQVFICVLFLPLDSGRPLIYMIDLSYICSDATVFSGKSRVIFFSNPICEHTRGNFYLFYLNYIINTFAPKNRGTRRCKPFGLHINCRKKIDCLHVQLSYILCKNKSRKRHMDAHA------------HNPCMVSTRPHVSEFAKMIVKCVDSSIRGEVGELKVE*" + } + ], + "YHL026C": [ + { + "revision": "051111", + "new_alignment": "MKSSEPAPATPTGFRNSIWFIIFYLFVIQALGSAIISGGIEFAIAYAMYHSRVDLITLWAFPHTISGDCALSLFIQVGLTWASEEILVGFDDYKRPVFRLNKWITKPSPLKTESNEEIPPPKKRFIVDYFESKDNVVAKQNTLYHKHNWLFGYLEVNRGIIPKGKEATLKGFLTSQFIHDSTQSKFMNFIEWFVQKFIRSMILAIAMFIVIWPVTMGILAGIGHKVGSHDYYFNDYPLPQVMKLIYAVVIAFVCTPVAIIVIVLRNQFHEELYYEGLANGTLQQDQEVCSTGNRSSGSTDQDISTTKQQSQEAVA*", + "old_alignment": "-----------------------------------------------MYHSRVDLITLWAFPHTISGDCALSLFIQVGLTWASEEILVGFDDYKRPVFRLNKWITKPSPLKTESNEEIPPPKKRFIVDYFESKDNVVAKQNTLYHKHNWLFGYLEVNRGIIPKGKEATLKGFLTSQFIHDSTQSKFMNFIEWFVQKFIRSMILAIAMFIVIWPVTMGILAGIGHKVGSHDYYFNDYPLPQVMKLIYAVVIAFVCTPVAIIVIVLRNQFHEELYYEGLANGTLQQDQEVCSTGNRSSGSTDQDISTTKQQSQEAVA*" + } + ], + "YHL006C": [ + { + "revision": "040206", + "new_alignment": "MQFEERLQQLVESDWSLDQSSPNVLVIVLGDTARKYVELGGLKEHVTTNTVAGHVASRERVSVVFLGRVKYLYMYLTRMQAQANGPQYSNVLVYGLWDLTATQDGPQQLRLLSLVLRQCLSLPSKVEFYPEPPSSSVPARLLRFWDHIIR*--------------------------------------------------", + "old_alignment": "MQFEERLQQLVESDWSLDQSSPNVLVIVLGDTARKYVELGGLKEHVTTNTVAGHVASRERVSVVFLGRVKYLYMYLTRMQAQANGPQYSNVLVYGLWDLTATQDGPQQLR-----------------------------------------YLALCYGSASVCHLKLNSIQNRLLVACLPGYCDSGTILSDSCIVLHAIS*" + } + ], + "YHR049C-A": [ + { + "revision": "110203", + "new_alignment": "MTRSKRRLILKFNMISFFSAVSLLHYFLPSRKSISMFKKVFVSHAKAPRVDFSRRAGLAARRMEEKRKDATNLWFILYKVLICIYTYSISISLHTPCV*-----------------------------------------------", + "old_alignment": "MTRSKRRLILKFNMISFFSAVSLLHYFLPSRKSISMFKKVFVSHAKAPRVDFSRRAG------------------------------------------FSSTQDGREEKGCYKLVVHSIQSTYMYIYILDQHFTPHTLRVIVKS*" + } + ], + "YHR056C": [ + { + "revision": "040206", + "new_alignment": "MMDMQVRKVRKPPACTQCRKRKIGCDRAKPICGNCVKYNKPDCFYPDGPGKMVAVPSASGMSTHGNGQGSNHFSQGNGVNQKNVMIQTQYPIMQTSIEAFNFSFNPSVDTAMQWTKAASYQNNNTNNNTAPRQNSSTVSSNVHGNTIVRSDSPDVPSMDQIREYNTRLQLVNAQSFDYTDNPYSFNVGINQDSAVFDLMTSPFTQEEVLIKEIDFLKNKLLDLQSLQLKSLKEKSNLNADNTTANKINKTGENSKKGKVDGKRAGFDHQTSRTSQSSQKYFTALTITDVQSLVQVKPLKDTPNYLFTKNFIIFRDHYLFKFYNILHDICHINQFKVSPPNNKNHQQYMEVCKVNFPPKAIIIETLNSESLNNLNIEEFLPIFDKTLLLEFVHNSFPNGDTCPSFSTVDLPLSQLTKLGELTVLLLLLNDSMTLFNKQAINNHVSALMNNLRLIRSQITLINLEYYDQETIKFIAITKFYESLYMHDDHKSSLDEDLSCLLSFQIKDFKLFHFLKKMYYSRHSLLGQSSFMVPAAENLSPIPASIDTNDIPLIANDLKLLETQAKLINILQGVPFYLPVNLTKIESLLETLTMGVSNTVDLYFHDNEVRKEWKDTLNFINTIVYTNFFLFVQNESSLSMAVQHSSNNNKTSNSERCAKDLMKIISNMHIFYSITFNFIFPIKSIKSFSSGNNRFHSNGKEFLFANHFIEILQNFIAITFAIFQRCEVILYDEFYKNLSNEEINVQLLLIHDKILEILKKIEIIVSFLRDEMNSNGSFKSIKGFNKVLNLIKYMLRFSKKKQNFARNSDNNNVTDYSQSAKNKNVLLKFPVSELNRIYLKFKEISDFLMEREVVQRSIIIDKDLESDNLGITTANFNDFYDAFYN*", + "old_alignment": "---------------------------------------------------MVAVPSASGMSTHGNGQGSNHFSQGNGVNQKNVMIQTQYPIMQTSIEAFNFSFNPSVDTAMQWTKAASYQNNNTNNNTAPRQNSSTVSSNVHGNTIVRSDSPDVPSMDQIREYNTRLQLVNAQSFDYTDNPYSFNVGINQDSAVFDLMTSPFTQEEVLIKEIDFLKNKLLDLQSLQLKSLKEKSNLNADNTTANKINKTGENSKKGKVDGKRAGFDHQTSRTSQSSQKYFTALTITDVQSLVQVKPLKDTPNYLFTKNFIIFRDHYLFKFYNILHDICHINQFKVSPPNNKNHQQYMEVCKVNFPPKAIIIETLNSESLNNLNIEEFLPIFDKTLLLEFVHNSFPNGDTCPSFSTVDLPLSQLTKLGELTVLLLLLNDSMTLFNKQAINNHVSALMNNLRLIRSQITLINLEYYDQETIKFIAITKFYESLYMHDDHKSSLDEDLSCLLSFQIKDFKLFHFLKKMYYSRHSLLGQSSFMVPAAENLSPIPASIDTNDIPLIANDLKLLETQAKLINILQGVPFYLPVNLTKIESLLETLTMGVSNTVDLYFHDNEVRKEWKDTLNFINTIVYTNFFLFVQNESSLSMAVQHSSNNNKTSNSERCAKDLMKIISNMHIFYSITFNFIFPIKSIKSFSSGNNRFHSNGKEFLFANHFIEILQNFIAITFAIFQRCEVILYDEFYKNLSNEEINVQLLLIHDKILEILKKIEIIVSFLRDEMNSNGSFKSIKGFNKVLNLIKYMLRFSKKKQNFARNSDNNNVTDYSQSAKNKNVLLKFPVSELNRIYLKFKEISDFLMEREVVQRSIIIDKDLESDNLGITTANFNDFYDAFYN*" + } + ], + "YHR056W-A": [ + { + "revision": "110203", + "new_alignment": "MNITTNGTTILTRSSIIIGVIILVASGLGPLHRSIHRGVEREVECLYRRLHNRILRLNHYVFLIYTVSLTKMVGTLAIAVRGHPGRRGHSDHLTRSIWIKTVRLVILDAIPTYRFCPVAPDLSLPALGASRRLPHFSHLHVHHD*", + "old_alignment": "MNITTNGTTILTRSSIIIGVIILVASGLGPLHRSIHRGVEREVECLYRRLHNRILRLNHYVFLIYTVSLTKMVGTLAIAVRGHPGRRGHSDHLTRSIWIKTVRLVILDAIPTYRFGPVAPDLSLPALGASRRLPHFSHLHVHHD*" + }, + { + "revision": "040206", + "new_alignment": "MNITTNGTTILTRSSIIIGVIILVASGLGPLHRSIHRGVEREVECLYRRLHNRILRLNHYVFLIYTVSLTKMVGTLAIAVRGHPGRRGHSDHLTRSIWIKTVRLVILDAIPTYRFCPVAPDLSLPALGASRRLPHFSHLHVHHD*-----------------------------", + "old_alignment": "MNITTNGTTILTRSSIIIGVIILVASGLGPLHRSIHRGVEREVECLYRRLHNRILRLNHYVFLIYTVSLTKMVGTLAIAVRGHPGRRGHSDHLTRSIWIKTVRLVILDAIPTYRF------------------------------WPCRTRSFSSCIGCKQAASSLFSLACPS*" + } + ], + "YHR072W": [ + { + "revision": "110203", + "new_alignment": "MTEFYSDTIGLPKTDPRLWRLRTDELGRESWEYLTPQQAANDPPSTFTQWLLQDPKFPQPHPERNKHSPDFSAFDACHNGASFFKLLQEPDSGIFPCQYKGPMFMTIGYVAVNYIAGIEIPEHERIELIRYIVNTAHPVDGGWGLHSVDKSTVFGTVLNYVILRLLGLPKDHPVCAKARSTLLRLGGAIGSPHWGKIWLSALNLYKWEGVNPAPPETWLLPYSLPMHPGRWWVHTRGVYIPVSYLSLVKFSCPMTPLLEELRNEIYTKPFDKINFSKNRNTVCGVDLYYPHSTTLNIANSLVVFYEKYLRNRFIYSLSKKKVYDLIKTELQNTDSLCIAPVNQAFCALVTLIEEGVDSEAFQRLQYRFKDALFHGPQGMTIMGTNGVQTWDCAFAIQYFFVAGLAERPEFYNTIVSAYKFLCHAQFDTECVPGSYRDKRKGAWGFSTKTQGYTVADCTAEAIKAIIMVKNSPVFSEVHHMISSERLFEGIDVLLNLQNIGSFEYGSFATYEKIKAPLAMETLNPAEVFGNIMVEYPYVECTDSSVLGLTYFHKYFDYRKEEIRTRIRIAIEFIKKSQLPDGSWYGSWGICFTYAGMFALEALHTVGETYENSSTVRKGCDFLVSKQMKDGGWGESMKSSELHSYVDSEKSLVVQTAWALIALLFAEYPNKEVIDRGIDLLKNRQEESGEWKFESVEGVFNHSCAIEYPSYRFLFPIKALGMYSRAYETHTL*", + "old_alignment": "MTEFYSDTIGLPKTDPRLWRLRTDELGRESWEYLTPQQAANDPPSTFTQWLLQDPKFPQPHPERNKHSPDFSAFDACHNGASFFKLLQEPDSGIFPCQYKGPMFMTIGYVAVNYIAGIEIPEHERIELIRYIVNTAHPVDGGWGLHSVDKSTVFGTVLNYVILRLLGLPKDHPVCAKARSTLLRLGGAIGSPHWGKIWLSALNLYKWEGVNPAPPETWLLPYSLPMHPGRWWVHTRGVYIPVSYLSLVKFSCPMTPLLEELRNEIYTKPFDKINFSKNRNTVCGVDLYYPHSTTLNIANSLVVFYEKYLRNRFIYSLSKKKVYDLIKTELQNTDSLCIAPVNQAFCALVTLIEEGVDSEAFQRLQYRFKDALFHGPQGMTIMGTNGVQTWDCAFAIQYFFVAGLAERPEFYNTIVSAYKFLCHAQFDTECVPGSYRDKRKGAWGFSTKTQGYTVADCTAEAIKAIIMVKNSPVFSEVHHMISSERLFEGIDVLLNLQNIGSFEYGSFATYEKIKAPLAMETLNPAEVFGDIMVEYPYVECTDSSVLGLTYFHKYFDYRKEEIRTRIRIAIEFIKKSQLPDGSWYGSWGICFTYAGMFALEALHTVGETYENSSTVRKGCDFLVSKQMKDGGWGESMKSSELHSYVDSEKSLVVQTAWALIALLFAEYPNKEVIDRGIDLLKNRQEESGEWKFESVEGVFNHSCAIEYPSYRFLFPIKALGMYSRAYETHTL*" + } + ], + "YHR076W": [ + { + "revision": "070713", + "new_alignment": "MFANVGFRTLRVSRGPLY-------------------------------GSCSQIISFSKRTFYSSAKSGYQSNNSHGDAYSSGSQSGPFTYKTAVAFQPKDRDDLIYQKLKDSIRSPTGEDNYFVTSNNVHDIFAGVADGVGGWAEHGYDSSAISRELCKKMDEISTALAENSSKETLLTPKKIIGAAYAKIRDEKVVKVGGTTAIVAHFPSNGKLEVANLGDSWCGVFRDSKLVFQTKFQTVGFNAPYQLSIIPEEMLKEAERRGSKYILNTPRDADEYSFQLKKKDIIILATDGVTDNIATDDIELFLKDNAARTNDELQLLSQKFVDNVVSLSKDPNYPSVFAQEISKLTGKNYSGGKEDDITVVVVRVD*", + "old_alignment": "MFANVGFRTLRVSRGPLYGMFIVLFIGVLIAKFAGQMLIDSETNFSHIIGSCSQIISFSKRTFYSSAKSGYQSNNSHGDAYSSGSQSGPFTYKTAVAFQPKDRDDLIYQKLKDSIRSPTGEDNYFVTSNNVHDIFAGVADGVGGWAEHGYDSSAISRELCKKMDEISTALAENSSKETLLTPKKIIGAAYAKIRDEKVVKVGGTTAIVAHFPSNGKLEVANLGDSWCGVFRDSKLVFQTKFQTVGFNAPYQLSIIPEEMLKEAERRGSKYILNTPRDADEYSFQLKKKDIIILATDGVTDNIATDDIELFLKDNAARTNDELQLLSQKFVDNVVSLSKDPNYPSVFAQEISKLTGKNYSGGKEDDITVVVVRVD*" + } + ], + "YHR079C-A": [ + { + "revision": "051103", + "new_alignment": "MNYLETQLNKKQKQIQEYESMNGNLIKMFEQLSKEKKNDETPKKISSTYIKELKEYNELRDAGLRLAQIIADEKQCKIKDVFEEIGYSMKD*--------------", + "old_alignment": "MNYLETQLNKKQKQIQEYESMNGNLIKMFEQLSKEKK-------------------------------------------------------KYVAIFSSRQKSV*" + } + ], + "YHR092C": [ + { + "revision": "110203", + "new_alignment": "MSEEAAYQEDTAVQNTPADALSPVESDSNSALSTPSNKAERDDMKDFDENHEESNNYVEIPKKPASAYVTVSICCLMVAFGGFVFGWDTGTISGFVAQTDFIRRFGMKHHDGTYYLSKVRTGLIVSIFNIGCAIGGIILAKLGDMYGRKMGLIVVVVIYIIGIIIQIASINKWYQYFIGRIISGLGVGGIAVLSPMLISEVSPKHIRGTLVSCYQLMITLGIFLGYCTNYGTKTYTNSVQWRVPLGLGFAWALFMIGGMTFVPESPRYLVEVGKIEEAKRSIALSNKVSADDPAVMAEVEVVQATVEAEKLAGNASWGEIFSTKTKVFQRLIMGAMIQSLQQLTGDNYFFYYGTTVFTAVGLEDSFETSIVLGIVNFASTFVGIFLVERYGRRRCLLWGAASMTACMVVFASVGVTRLWPNGKKNGSSKGAGNCMIVFTCFYLFCFATTWAPIPFVVNSETFPLRVKSKCMAIAQACNWIWGFLIGFFTPFISGAIDFYYGYVFMGCLVFSYFYVFFFVPETKGLTLEEVNTLWEEGVLPWKSPSWVPPNKRGTDYNADDLMHDDQPFYKKMFGKK*---------------", + "old_alignment": "MSEEAAYQEDTAVQNTPADALSPVESDSNSALSTPSNKAERDDMKDFDENHEESNNYVEIPKKPASAYVTVSICCLMVAFGGFVFGWDTGTISGFVAQTDFIRRFGMKHHDGTYYLSKVRTGLIVSIFNIGCAIGGIILAKLGDMYGRKMGLIVVVVIYIIGIIIQIASINKWYQYFIGRIISGLGVGGIAVLSPMLISEVSPKHIRGTLVSCYQLMITLGIFLGYCTNYGTKTYTNSVQWRVPLGLGFAWALFMIGGMTFVPESPRYLVEVGKIEEAKRSIALSNKVSADDPAVMAEVEVVQATVEAEKLAGNASWGEIFSTKTKVFQRLIMGAMIQSLQQLTGDNYFFYYGTTVFTAVGLEDSFETSIVLGIVNFASTFVGIFLVERYGRRRCLLWGAASMTACMVVFASVGVTRLWPNGKKNGSSKGAGNCMIVFTCFYLFCFATTWAPIPFVVNSETFPLRVKSKCMAIAQACNWIWGFLIGFFTPFISGAIDFYYGYVFMGCLVFSYFYVFFFVPETKGLTLEEVNTLWEEGVLPWKSPSW-------------------------------FHQTREVLTTTLMI*" + } + ], + "YHR095W": [ + { + "revision": "110203", + "new_alignment": "MNILFLIYLKDKRSARQCPAAFLPSFSEFPLRIGSCAHICQSFTEKKKEHWVTSEKLLTQCNSVIILCAVSLKKNQECKISINSLEVMMVSLSLTLLKKGFFSWSTLFRGKKKKKKKKKRILHVIYHDSTFLQAKMKIIRAHAQVVPAMPLRKNFRNQYSLHPP*--", + "old_alignment": "MNILFLIYLKDKRSARQCPAAFLPSFSEFPLRIGSCAHICQSFTEKKKEHWVTSEKLLTQCNSVIILCAVSLKKNQECKISINSLEVMMVSLSLTLLKKGFFSWSTLFRGKKKKKKKKKRILHVIYHDSTFLQAKMKIIRAHA----------------------K*" + } + ], + "YHR131C": [ + { + "revision": "040726", + "new_alignment": "MALPIEGKLSMANNRIERLKSPSSSSTCSMDEVLITSSNNSSSICLETMRQLPREGVSGQINIIKETAASSSSHAALFIKQDLYEHIDPLPAYPPSYDLVNPNKEVRFPIFGDTAPCPKSSLPPLYAPAVYELTLISLKLERLSPYEISSNRSWRNFIIEINSTQLNFYHIDESLTKHIRNYSSGETKSEKEDRIHSDLVHRSDQSQHLHHRLFTLPTRSASEFKKADQERISYRVKRDRSRYLTDEALYKSFTLQNARFGIPTDYTKKSFVLRMSCESEQFLLRFSHIDDMIDWSMYLSIGISVSLDLEVREYPDYRIVPRRRRRRRRRRRRRRHTHRSESSMGSFSQRFIRSNSRPDLIQRYSTGSSTNNNTTIRERSNTFTAGLLDHYCTGLSKTPTEALISSAASGESSDNSTLGSTRSLSGCSASRSIASRSLKFKIKNFFRPKNSSRTEKLHRLRSNSSNLNSVIETEEDDEHHESSGGDHPEPGVPVNTTIKVERPMHRNRAISMPQRQSLRRAISEEVVPIKFPNSTVGESVHSPSPIEHLSVDGCEIMLQSQNAVMKEELRSVASNLVANERDEASIRPKPQSSSIYLSGLAPNGESATDLSQSSRSLCLTNRDAEINDDESATETDEDENDGETDEYAGDDTNDDTDDSNIGYAYGSESDYSCLIEERIRNRRRASSTLSCFSNIPYGTDDIKWKPAIKEISRRRYLRDSLKCIKPFLDSNDCLGKVIYIPVSGPTFETSNKIHFSNRQSLQKQKNHFLKGFIVGPTALIELNCKNKNAIVGTTKDAEDHGEDDGDGDDGEDDDDDDDDDDDDDDDEDDDDDDDDDDDDDDDDDDGQITA*", + "old_alignment": "----------MANNRIERLKSPSSSSTCSMDEVLITSSNNSSSICLETMRQLPREGVSGQINIIKETAASSSSHAALFIKQDLYEHIDPLPAYPPSYDLVNPNKEVRFPIFGDTAPCPKSSLPPLYAPAVYELTLISLKLERLSPYEISSNRSWRNFIIEINSTQLNFYHIDESLTKHIRNYSSGETKSEKEDRIHSDLVHRSDQSQHLHHRLFTLPTRSASEFKKADQERISYRVKRDRSRYLTDEALYKSFTLQNARFGIPTDYTKKSFVLRMSCESEQFLLRFSHIDDMIDWSMYLSIGISVSLDLEVREYPDYRIVPRRRRRRRRRRRRRRHTHRSESSMGSFSQRFIRSNSRPDLIQRYSTGSSTNNNTTIRERSNTFTAGLLDHYCTGLSKTPTEALISSAASGESSDNSTLGSTRSLSGCSASRSIASRSLKFKIKNFFRPKNSSRTEKLHRLRSNSSNLNSVIETEEDDEHHESSGGDHPEPGVPVNTTIKVERPMHRNRAISMPQRQSLRRAISEEVVPIKFPNSTVGESVHSPSPIEHLSVDGCEIMLQSQNAVMKEELRSVASNLVANERDEASIRPKPQSSSIYLSGLAPNGESATDLSQSSRSLCLTNRDAEINDDESATETDEDENDGETDEYAGDDTNDDTDDSNIGYAYGSESDYSCLIEERIRNRRRASSTLSCFSNIPYGTDDIKWKPAIKEISRRRYLRDSLKCIKPFLDSNDCLGKVIYIPVSGPTFETSNKIHFSNRQSLQKQKNHFLKGFIVGPTALIELNCKNKNAIVGTTKDAEDHGEDDGDGDDGEDDDDDDDDDDDDDDDEDDDDDDDDDDDDDDDDDDGQITA*" + } + ], + "YHR131W-A": [ + { + "revision": "040726", + "new_alignment": "MVSKHIELLLLLEVMRTSSIEHVDEDEGDFNLSILLFAMDNLPSIGRAILNKRTTCMHDVGSKIYCGPKKQRFLLCWSTKL*--------------------------------------------------------------------", + "old_alignment": "MVSKHIELLLLLEVMRTSSIEHVDEDEGDFNLSILLFAMDNLPSIGRA----------------------------------SLTNEQLVCTMSDQKYTVAPRNNDFFCAGQQNCNLFGGPYYETFLFFFFLTVRQLDAPTSLKLDDYD*" + } + ], + "YHR163W": [ + { + "revision": "051111", + "new_alignment": "-------------------------------MVTVGVFSERASLTHQLGEFIVKKQDEALQKKSDFKVSVSGGSLIDALYESLVADESLSSRVQWSKWQIYFSDERIVPLTDADSNYGAFKRAVLDKLPSTSQPNVYPMDESLIGSDAESNNKIAAEYERIVPQVLDLVLLGCGPDGHTCSLFPGETHRYLLNETTKRVAWCHDSPKPPSDRITFTLPVLKDAKALCFVAEGSSKQNIMHEIFDLKNDQLPTALVNKLFGEKTSWFVNEEAFGKVQTKTF*", + "old_alignment": "MVIVVYYIKRKGLEDNRRQCTINCFTPGPRQMVTVGVFSERASLTHQLGEFIVKKQDEALQKKSDFKVSVSGGSLIDALYESLVADESLSSRVQWSKWQIYFSDERIVPLTDADSNYGAFKRAVLDKLPSTSQPNVYPMDESLIGSDAESNNKIAAEYERIVPQVLDLVLLGCGPDGHTCSLFPGETHRYLLNETTKRVAWCHDSPKPPSDRITFTLPVLKDAKALCFVAEGSSKQNIMHEIFDLKNDQLPTALVNKLFGEKTSWFVNEEAFGKVQTKTF*" + } + ], + "YHR168W": [ + { + "revision": "110203", + "new_alignment": "MSIAWSSVFKRELRLERFLPRVYSTKVPDNAPRAADNEQWLETLRPITHPEQKKSDHDVSYTRHINVPLGEVTSVNYLQRYNKHKHSQGNFVDVRIVKCKSGAGGSGAVSFFRDAGRSIGPPDGGDGGAGGSVYIQAVAGLGSLAKMKTTYTAEDGEAGAARQLDGMRGRDVLIQVPVGTVVKWCLPPQKVRELVEREMRKDNNATLRSILGSTAVNLSVSSGSHRKKIQLYRHEMAESWLFKDKAKEYHENKDWFKDLHKKMEAYDHSLEQSELFNDQFPLAGLDLNQPMTKPVCLLKGGQGGLGNMHFLTNLIRNPRFSKPGRNGLEQHFLFELKSIADLGLIGLPNAGKSTILNKISNAKPKIGHWQFTTLSPTIGTVSLGFGQDVFTVADIPGIIQGASLDKGMGLEFLRHIERSNGWVFVLDLSNKNPLNDLQLLIEEVGTLEKVKTKNILIVCNKVDIDAEKSESFAKYLQVEKFSKSQEWDCVPISALREENIDVLKKKMFKCARQSEFDK*---", + "old_alignment": "MSIAWSSVFKRELRLERFLPRVYSTKVPDNAPRAADNEQWLETLRPITHPEQKKSDHDVSYTRHINVPLGEVTSVNYLQRYNKHKHSQGNFVDVRIVKCKSGAGGSGAVSFFRDAGRSIGPPDGGDGGAGGSVYIQAVAGLGSLAKMKTTYTAEDGEAGAARQLDGMRGRDVLIQVPVGTVVKWCLPPQKVRELVEREMRKDNNATLRSILGSTAVNLSVSSGSHRKKIQLYRHEMAESWLFKDKAKEYHENKDWFKDLHKKMEAYDHSLEQSELFNDQFPLAGLDLNQPMTKPVCLLKGGQGGLGNMHFLTNLIRNPRFSKPGRNGLEQHFLFELKSIADLGLIGLPNAGKSTILNKISNAKPKIGHWQFTTLSPTIGTVSLGFGQDVFTVADIPGIIQGASLDKGMGLEFLRHIERSNGWVFVLDLSNKNPLNDLQLLIEEVGTLEKVKTKNILIVCNKVDIDAEKSESFAKYLQVEKFSKSQEWDCVPISALRE----------------------KT*" + } + ], + "YHR176W": [ + { + "revision": "040206", + "new_alignment": "MTVNDKKRLAIIGGGPGGLAAARVFSQSLPNFEIEIFVKDYDIGGVWHYPEQKSDGRVMYDHLETNISKKLMQFSGFPFEENVPLYPSRRNIWEYLKAYYKTFIANKDAISIHFSTEVTYLKKKNSQWEITSKDELRTTKSDFDFVIVASGHYSVPKLPTNIAGLDLWFDNKGAFHSKDFKNCEFAREKVVIVVGNGSSGQDIANQLTTVAKKVYNSIKEPASNQLKAKLIETVQTIDSADWKNRSVTLSDGRVLQNIDYIIFATGYYYSFPFIEPSVRLEVLGEGVTGDKHSSVNLHNLWEHMIYVKDPTLSFILTPQLVIPFPLSELQAAIMVEVFCKSLPITTTFDSNACGTHNFPKGKDLEYYAELQELLNSIPRRVGHFEPVVWDDRLIDLRNSSYTDKEERNVLLAEHAQALKKKKAPYFLPAPHT*--------------", + "old_alignment": "MTVNDKKRLAIIGGGPGGLAAARVFSQSLPNFEIEIFVKDYDIGGVWHYPEQKSDGRVMYDHLETNISKKLMQFSGFPFEENVPLYPSRRNIWEYLKAYYKTFIANKDAISIHFSTEVTYLKKKNSQWEITSKDELRTTKSDFDFVIVASGHYSVPKLPTNIAGLDLWFDNKGAFHSKDFKNCEFAREKVVIVVGNGSSGQDIANQLTTVAKKVYNSIKEPASNQLKAKLIETVQTIDSADWKNRSVTLSDGRVLQNIDYIIFATGYYYSFPFIEPSVRLEVLGEGVTGDKHSSVNLHNLWEHMIYVKDPTLSFILTPQLVIPFPLSELQAAIMVEVFCKSLPITTTFDSNACGTHNFPK-------------------------------------------------------------------------ERTWNTMQNYRNY*" + } + ], + "YHR197W": [ + { + "revision": "110203", + "new_alignment": "MSEEFIAVSTLARNLEIAKGNEFHTILATLRSPVYINEQLLKSELSFLVTKILKLIRSGNDFDLWKGCHTSVVTCAYNPLVLSTHGGQLLAAIYSRLEQKTGFYSSVISSSHGKQLFNTLISSVAIIIDLMKNKPTLSREALVPKLKAIIPTLITLSQYEPELVLPVLQRILKRNTTTFKPFTNKFRTVLINLIISDYASLGTKTQRLVCENFAYLHLLKIQVSDTSDDETQAHHKIYADSNWRTGLMSILSQFKPIIQLCGEILDFEQDNELYKLIKSLPVIDESNNKEEFLPSLKLDFNAPLTLWEIPQRLSLLADMLVAFISLPTPFPIRVPLGGINSLCEVLLGVSNKYLPLKKELRHDNELNGVINTILPQIQFQGIRLWEIMVSKYGKCGLSFFEGILSSIELFIPLKKKSNNEIDFNVVGSLKFEFATVFRLVNMILSHLGHQLNIISVISQLIEVALFLSHDKTLIDSLFKNRKSIMKQQTKTKQSKRSKSAEGAFSDIYTHPELFVCKNSMNWFNEINDFFITALNNWILPSTPHIQILKYSITQSLRLKERFGYIPESFVNLLRCEVLHPGSERVSILPIAISLLKNINDDMFELLCHPKVPVGMVYQLHKPLDLGEDGEVRDDINKKEVETNESSSNANTGLETLKALENLENVTIPEPKHEVPKVVDDTAIFKKRSVEEVIERESTSSHKKVKFVEETTVDNGEELIVKKAVSQTKEEEKPMEDSEDEEQEEFEIPAIELSDDEEEEEEEE*", + "old_alignment": "MSEEFIAVSTLARNLEIAKGNEFHTILATLRSPVYINEQLLKSELSFLVTKILKLIRSGNDFDLWKGCHTSVVTCAYNPLVLSTHGGQLLAAIYSRLEQKTGFYSSVISSSHGKQLFNTLISSVAIIIDLMKNKPTLSREALVPKLKAIIPTLITLSQYEPELVLPVLQRILKRNTTTFKPFTNKFRTVLINLIISDYASLGTKTQRLVCENFAYLHLLKIQVSDTSDDETQAHHKIYADSNWRTGLMSILSQFKPIIQLCGEILDFEQDNELYKLIKSLPVIDESNNKEEFLPSLKLDFNAPLTLWEIPQRLSLLADMLVAFISLPTPFPIRVPLGGINSLCEVLLGVSNKYLPLKKELRHDNELNGVINTILPQIQFQGIRLWEIMVSKYGKCGLSFFEGILSSIELFIPLKKKSNNEIDFNVVGSLKFEFATVFRLVNMILSHLGHQLNIISVISQLIEVALFLSHDKTLIDSLFKNRKSIMKQQTKTKQSKRSKSAEGAFSDIYTHPELFVCKNSMNWFNEINDFFITALNNWILPSTPHIQILKYSITQSLRLKERFGYIPESFVNLLRCEVLHPGSERVSILPIAISLLKNINDDMFELLCHPKVPVGMVYQLHKPLDLGEDGEVRDDINKKEVETNESSSNANTGLETLKALENLENVTIPEPKHEVPKVVDDTAIFKKRSVEEVIERESTSSHKKVKFVEETTVDNGEELIVKKAVSQTKEEEKPMEDSEDEEQEEFEIPAIELSDDEEEEEEGE*" + } + ], + "YIL167W": [ + { + "revision": "141118", + "new_alignment": "MEMTYYEKTPLIRQFLNNGKTNSWFYVKHEMLQPGGSFKSRGIGHLIRKSNEEALSEGSGKLAVFSSSGGNAGLAAATACRSMALNCSVVVPKTTKPRMVKKIQSAGAKVIIHGDHWGEADEYLRHE*MAQESQHGSKTLYVHPFDNETIWEGHSTIVDEIIEQLKENDISLPRVKALVCSVGGGGLFSGIIKGLDRNQLAEKIPVVAVETAGCDVLNKSLKKGSPVTLEKLTSVATSLASPYIASFAFESFNKYGCKSVVLSDQDVLATCLRYADDYNFIVEPACGASLHLCYHPEILEDILEQKIYEDDIVIIIACGGSCMTYEDLVKASSTLNVS*", + "old_alignment": "--------------------------------------------------------------------------------------------------------------------------------MAQESQHGSKTLYVHPFDNETIWEGHSTIVDEIIEQLKENDISLPRVKALVCSVGGGGLFSGIIKGLDRNQLAEKIPVVAVETAGCDVLNKSLKKGSPVTLEKLTSVATSLASPYIASFAFESFNKYGCKSVVLSDQDVLATCLRYADDYNFIVEPACGASLHLCYHPEILEDILEQKIYEDDIVIIIACGGSCMTYEDLVKASSTLNVS*" + } + ], + "YIL123W": [ + { + "revision": "110203", + "new_alignment": "MKFSTAVTTLISSGAIVSALPHVDVHQEDAHQHKRAVAYKYVYETVVVDSDGHTVTPAASEVATAATSAIITTSVLAPTSSAAA--ADSSASIAVSSAALAKNEKISDAAASATASTSQGASSSSSSSSATSTLESSSVSSSSEEAAPTSTVVSTSSATQSSASSATKSSTSSTSPSTSTSTSTSSTSSSSSSSSSSSSSSSGSGSIYGDLADFSGPSEKFQDGTIPCDKFPSGQGVISIDWIGEGGWSGVENTDTSTGGSCKEGSYCSYSCQPGMSKTQWPSDQPSDGRSVGGLLCKNGYLYRSNTDADYLCEWGVEAAYVVSKLSKGVAICRTDYPGTENMVIPTYVEGGSSLPLTVVDQDTYFTWEGKKTSAQYYVNNAGVSVEDGCIWGTSGSGIGNWAPLNFGAGSTGGVTYLSLIPNPNNSDALNYNVKIVAADDSSNVIGECVYENGEFSGGADGCTVSVTSGKAHFVLYN*", + "old_alignment": "MKFSTAVTTLISSGAIVSALPHVDVHQEDAHQHKRAVAYKYVYETVVVDSDGHTVTPAASEVATAATSAIITTSVLAPTSSAAAGIA---ASIAVSSAALAKNEKISDAAASATASTSQGASSSSSSSSATSTLESSSVSSSSEEAAPTSTVVSTSSATQSSASSATKSSTSSTSPSTSTSTSTSSTSSSSSSSSSSSSSSSGSGSIYGDLADFSGPSEKFQDGTIPCDKFPSGQGVISIDWIGEGGWSGVENTDTSTGGSCKEGSYCSYSCQPGMSKTQWPSDQPSDGRSVGGLLCKNGYLYRSNTDADYLCEWGVEAAYVVSKLSKGVAICRTDYPGTENMVIPTYVEGGSSLPLTVVDQDTYFTWEGKKTSAQYYVNNAGVSVEDGCIWGTSGSGIGNWAPLNFGAGSTGGVTYLSLIPNPNNSDALNYNVKIVAADDSSNVIGECVYENGEFSGGADGCTVSVTSGKAHFVLYN*" + } + ], + "YIL083C": [ + { + "revision": "110203", + "new_alignment": "MPPLPVLNRPQIHTSVTEISHAIDRTIKEELFPVAYTTEEEQYFKTNPKPAYIDELIKDAKEFIDLQYSLKRNKIVLITSGGTTVPLENNTVRFIDNFSAGTRGASSAEQFLANGYSVIFLHREFSLTPYNRSFSHSINTLFLDYIDSEGKIKPEFAENVLKNKKLYDKYMEKEEKLLLLPFTTVNQYLWSLKSIAKLLNNSGCLFYLAAAVSDFFVPYSRLPQHKIQSGDNGKMGANNDTEGTTRTTPDGKLIVNLDPVPKFLRRLVESWATQAMIVSFKLETDESMLLYKCTQALDRYNHQLVIGNLLQTRNKQVIFVSPENRKGDWVRLDEKHHSIEEMIIPEVIARHDKWVAHSKTKLATK*", + "old_alignment": "MPPLPVLNRPQIHTSVTEISHAIDRTIKEELFPVAYTTEEEQYFKTNPKPAYIDELIKDAKEFIDLQYSLKRNKIVLITSGGTTVPLENNTVRFIDNFSAGTRGASSAEQFLANGYSVIFLHREFSLTPYNRSFSHSINTLFLDYIDSEGKIKPEFAENVLKNKKLYDKYMEKEEKLLLLPFTTVNQYLWSLKSIAKLLNNSGCLFYLAAAVSDFFVPYSRLPQHKIQSGDNGKMGANNDTEGTTRTTPDGKLIVNLDPVPKFLRRLVESWATQAMIVSFKLETDESMLLYKCTQALDRYNHQLVIGNLLQTRNKQVIFVSPENRKGDWVRLDEKHHIIEEMIIPEVIARHDKWVAHSKTKLATK*" + } + ], + "YIL076W": [ + { + "revision": "051123", + "new_alignment": "---------------------------------------------------------------MDYFNIKQNYYTGNFVQCLQEIEKFSKVTDNTLLFYKAKTLLALGQYQSQDPTSKLGKVLDLYVQFLDTKNIEELENLLKDKQNSPYELYLLATAQAILGDLDKSLETCVEGIDNDEAEGTTELLLLAIEVALLNNNVSTASTIFDNYTNAIEDTVSGDNEMILNLAESYIKFATNKETATSNFYYYEELSQTFPTWKTQLGLLNLHLQQRNIAEAQGIVELLLSDYYSVEQKENAVLYKPTFLANQITLALMQGLDTEDLTNQLVKLDHEHAFIKHHQEIDAKFDELVRKYDTSN*", + "old_alignment": "MQRLQWDKDILFLIFKVILIFCWFFFSFLSSEKLQFLQKNTSSYSIRTDCEELGGEHRNRQKIMDYFNIKQNYYTGNFVQCLQEIEKFSKVTDNTLLFYKAKTLLALGQYQSQDPTSKLGKVLDLYVQFLDTKNIEELENLLKDKQNSPYELYLLATAQAILGDLDKSLETCVEGIDNDEAEGTTELLLLAIEVALLNNNVSTASTIFDNYTNAIEDTVSGDNEMILNLAESYIKFATNKETATSNFYYYEELSQTFPTWKTQLGLLNLHLQQRNIAEAQGIVELLLSDYYSVEQKENAVLYKPTFLANQITLALMQGLDTEDLTNQLVKLDHEHAFIKHHQEIDAKFDELVRKYDTSN*" + } + ], + "YIL053W": [ + { + "revision": "060126", + "new_alignment": "---------------------MPLTTKPLSLKINAALFDVDGTIIISQPAIAAFWRDFGKDKPYFDAEHVIHISHGWRTYDAIAKFAPDFADEEYVNKLEGEIPEKYGEHSIEVPGAVKLCNALNALPKEKWAVATSGTRDMAKKWFDILKIKRPEYFITANDVKQGKPHPEPYLKGRNGLGFPINEQDPSKSKVVVFEDAPAGIAAGKAAGCKIVGIATTFDLDFLKEKGCDIIVKNHESIRVGEYNAETDEVELIFDDYLYAKDDLLKW*", + "old_alignment": "MKRFNVLKYIRTTKANIQTIAMPLTTKPLSLKINAALFDVDGTIIISQPAIAAFWRDFGKDKPYFDAEHVIHISHGWRTYDAIAKFAPDFADEEYVNKLEGEIPEKYGEHSIEVPGAVKLCNALNALPKEKWAVATSGTRDMAKKWFDILKIKRPEYFITANDVKQGKPHPEPYLKGRNGLGFPINEQDPSKSKVVVFEDAPAGIAAGKAAGCKIVGIATTFDLDFLKEKGCDIIVKNHESIRVGEYNAETDEVELIFDDYLYAKDDLLKW*" + } + ], + "YIL043C": [ + { + "revision": "060126", + "new_alignment": "--------------------------------------MAIDAQKLVVVIVIVVVPLLFKFIIGPKTKPVLDPKRNDFQSFPLVEKTILTHNTSMYKFGLPHADDVLGLPIGQHIVIKANINGKDITRSYTPTSLDGDTKGNFELLVKSYPTGNVSKMIGELKIGDSIQIKGPRGNYHYERNCRSHLGMIAGGTGIAPMYQIMKAIAMDPHDTTKVSLVFGNVHEEDILLKKELEALVAMKPSQFKIVYYLDSPDREDWTGGVGYITKDVIKEHLPAATMDNVQILICGPPAMVASVRRSTVDLGFRRSKPLSKMEDQVFVF*", + "old_alignment": "MYKYSYYIRRKNEREKKVLKVCIQLALQQETQSIKQSKMAIDAQKLVVVIVIVVVPLLFKFIIGPKTKPVLDPKRNDFQSFPLVEKTILTHNTSMYKFGLPHADDVLGLPIGQHIVIKANINGKDITRSYTPTSLDGDTKGNFELLVKSYPTGNVSKMIGELKIGDSIQIKGPRGNYHYERNCRSHLGMIAGGTGIAPMYQIMKAIAMDPHDTTKVSLVFGNVHEEDILLKKELEALVAMKPSQFKIVYYLDSPDREDWTGGVGYITKDVIKEHLPAATMDNVQILICGPPAMVASVRRSTVDLGFRRSKPLSKMEDQVFVF*" + } + ], + "YIL012W": [ + { + "revision": "110203", + "new_alignment": "MCLGKLYFEQLILVRCIKGRQSGNITTGESRCVSWNVYCTTSMIGLFSWRKMLLFQHFSYTQRENRQIGGKTWSLISSLFHLNETLASALHHPYETLALYEAYFALREKKFLL*--------------------------", + "old_alignment": "MCLGKLYFEQLILVRCIKGRQSGNITTGESRCVSWNVYCTTSMIGLFSWRKMLLFQHFSYTQRENRQIGGKTWSLISSLFHLNETLASALHHPYETLALYEAYFA---------CGKKNFFCKRGYSETVTEGRGWKRV*" + } + ], + "YIR043C": [ + { + "revision": "141118", + "new_alignment": "MKENEVKDEKSVDVLSFKQLESQKTVLPQDVFRNELTWFCYEIYKSLAFRIWMLLWLPLSI*WKLSNNWVYQFIVSLLVLVLGPIFLLVIREPSRKRSLSKQLTQFCKDITKNAPSLDTHNWEIVAANLNSYLYENKAWNTRYFFFNAMGCQEAFRTTLLEPFSLKKDEAAKVKSFKDSVSYIEEALGVYFTEVEKQWKLFNTEKSWSPVGLEDAKLPKEAYRFKLTWILKRIFKLRCLQVFLYYFLIVYTSGNVDLISRFLFPVVMFFIMTRDFQNMGMIVLSVKMEHKMQFLSTIINEQESGANGWDEIAKKMNRYLFEKKVWNNEEFFYDGLDCEWFFSCFFYRLLSLKKTMWFASLNVELWPYVKEAQSVVTSL*", + "old_alignment": "----------------------------------------------------------------------------------------------------------------------------------------------------MGCQEAFRTTLLEPFSLKKDEAAKVKSFKDSVSYIEEALGVYFTEVEKQWKLFNTEKSWSPVGLEDAKLPKEAYRFKLTWILKRIFKLRCLQVFLYYFLIVYTSGNVDLISRFLFPVVMFFIMTRDFQNMGMIVLSVKMEHKMQFLSTIINEQESGANGWDEIAKKMNRYLFEKKVWNNEEFFYDGLDCEWFFSCFFYRLLSLKKTMWFASLNVELWPYVKEAQSVVTSL*" + } + ], + "YJL188C": [ + { + "revision": "110203", + "new_alignment": "MTKSLKHKYVLRLDVHLGSSPVSSLSVVTDSVVGSQSDPLWQWSVLLLSLSHFLLDSERLLSLIKRETYRAHTKCTIVKNVSNNVQTHQCDAFTDPRQYHLT*", + "old_alignment": "MTKSLKHKYVLRLDVHLGSSPVSSLSVVTDSVVGSQSDPLWQWSVLLLSLSHFLLDSERLLSLIKRETYRAHTKCTIVKNVSNNVQTHQYDAFTDPRQYHLT*" + } + ], + "YJL186W": [ + { + "revision": "110203", + "new_alignment": "MLIRLKKRKILQVIVSAVVLILFFCSVHNDVSSSWLYGKKLRLPVLTRSNLKNNFYTTLVQAIVENKPADSSPDLSKLHGAEGCSFANNVAAHDSGHDSDLSYESLSKCYNLNKTVQESLREVHSKFTDTLSGKLNFSIPQREALFSGSEGIVTIGGGKYSVLAYTMIKKLRDTGTTLPIEVIIPPQDEGEDDFCKNWLPKFNGKCIYFSDIVPSKPLSDLKLTHFQLKVFGLIISSFKRIIFLDADNYAVKNLDLAFNTTSFNDTGLILWPDFWRRVTPPAFYNIIGSSINIGKRVRFVSDDISPVSRYDPFVSNSNDYTPKERQEHFLKHVPLHDLDGTMPDLSSESGQMVIDKIRHFNTLLLALYYNVYGPTWYYKMISQGTAGEGDKDTFVAAAHALNMPYYQVRTNFEFDGFFYQKDDYKGLALLQHDFEQDYKQYQKAQQKVKANIEEFSKLDPDYTLDNGFLKTLMVNDDGSDLDIMFIHASFYKADPWTLYHENRFIGPNGEQVRGFRKPHRYGMDFELFLFNDMRGSFCTTPKSQVIKFKYFTDKVNTPEWDAMCEYLTNHVNYLESTHKEAMGEKN*", + "old_alignment": "MLIRLKKRKILQVIVSAVVLILFFCSVHNDVSSSWLYGKKLRLPVLTRSNLKNNFYTTLVQAIVENKPADSSPDLSKLHGAEGCSFANNVAAHDSGHDSDLSYESLSKCYNLNKTVQESLREVHSKFTDTLSGKLNFSIPQREALFSGSEGIVTIGGGKYSVLAYTMIKKLRDTGTTLPIEVIIPPQDEGEDDFCKNWLPKFNGKCIYFSDIVPSKPLSDLKLTHFQLKVFGLIISSFKRIIFLDADNYAVKNLDLAFNTTSFNDTGLILWPDFWRRVTPPAFYNIIGSSINIGKRVRFVSDDISPVSRYDPFVSNSNDYTPKERQEHFLKHVPLHDLDGTMPDLSSESGQMVIDKIRHFNTLLLALYYNVYGPTWYYKMISQGTAGEGDKDTFFAAAHALNMPYYQVRTNFEFDGFFYQKDDYKGLALLQHDFEQDYKQYQKAQQKVKANIEEFSKLDPDYTLDNGFLKTLMVNDDGSDLDIMFIHASFYKADPWTLYHENRFIGPNGEQVRGFRKPHRYGMDFELFLFNDMRGSFCTTPKSQVIKFKYFTDKVNTPEWDAMCEYLTNHVNYLESTHKEAMGEKN*" + } + ], + "YJL183W": [ + { + "revision": "110203", + "new_alignment": "MAIKPRTKGKTYSSRSVGSQWFNRLGFKQNKYGTCKFLSIITAFVFILYFFSNRFYPISRSAGASYSPSHGLYINEIPASSRLIYPHVEHVPVLKQMTVRGLYITRLEVDGSKRLILKPEENALTDEEKKKTTDQILLVKHSFLDHGKLVYRKSNDAPEVVVVTLIDFENYELETIIQIVQNRVDYAQKHQYGVYIRWIQEFLPVLENQNLAESYEFIKPLVIRAAMHAFPTAKYIHFVDQDALLMNLDLSLQKYLLDPKIMDLALLKNVPVVANSNIKTYNHFEYSSAKIIIPHDADGNIDASSFVIANDFYGKALIDYLNDPLLRNFPWDNTGDKLSAAIGHILQWHPTLLGKTAIVIPKVLASQYDASLDQEGESGNGASNGDVYHYNEGDLAASFKGCRSRGTCASEIGHMYQKIKKS*", + "old_alignment": "MAIKPRTKGKTYSSRSVGSQWFNRLGFKQNKYGTCKFLSIITAFVFILYFFSNRFYPISRSAGASYSPSHGLYINEIPASSRLIYPHVEHVPVLKQMTVRGLYITRLEVDGSKRLILKPEENALTDEEKKKTTDQILLVKHSFLDHGKLVYRKSNDAPEVVVVTLIDFENYELETIIQIVQNRVDYAQKHQYGVYIRWIQEFLPVLENQNLAESYEFIKPLVIRAAMHAFPTAKYIHFVDQDALLMNLDLSLQKYLLDPKIMDLALLKNVPVVANSNIKTYNHFEYSSAKIIIPHDAGGNIDASSFVIANDFYGKALIDYLNDPLLRNFPWDNTGDKLSAAIGHILQWHPTLLGKTAIVIPKVLASQYDASLDQEGESGNGASNGDVYHYNEGDLAASFKGCRSRGTCASEIGHMYQKIKKS*" + } + ], + "YJL179W": [ + { + "revision": "110203", + "new_alignment": "MSQIAQEMTVSLRNARTQLDMVNQQLAYLDRQEKLAELTKKELESYPTDKVWRSCGKSFILQDKSKYVNDLSHDETVLLDQRKTLKIKKNYLETTVEKTIDNLKALMKN*", + "old_alignment": "MSQIAQEMTVSLRNARTQLDMVNQQLAYLDRQEKLAELTKKELESYPTDKVWRSCGKSFILQDKSKYVNDLSHAETVLLDQRKTLKIKKNYLETTVEKTIDNLKALMKN*" + } + ], + "YJL178C": [ + { + "revision": "040305", + "new_alignment": "MVSKTWICGFISIITVVQALSCEKHDVLKKYQVGKFSSLTSTERDTPPSTTIEKWWINVCEEHNVEPPEECKKNDMLCGLTDVILPGKDAITTQIIDFDKNIGFNVEETESALTLTLKGATWGANSFDAKLEFQCNDNMKQDELTSHTWADKSIQLTLKGPSGCLKSKDDDKKNGDGDNGKDGDSEGKKPAKKAGGTSWFTWLFLYALLFTLIYLMVVSFLNTRGGSFQDFRAEFIQRSTQFLTSLPEFCKEVVSRILGRSTAQRGGYSAV*", + "old_alignment": "---------------------------------------------------------------------------MLCGLTDVILPGKDAITTQIIDFDKNIGFNVEETESALTLTLKGATWGANSFDAKLEFQCNDNMKQDELTSHTWADKSIQLTLKGPSGCLKSKDDDKKNGDGDNGKDGDSEGKKPAKKAGGTSWFTWLFLYALLFTLIYLMVVSFLNTRGGSFQDFRAEFIQRSTQFLTSLPEFCKEVVSRILGRSTAQRGGYSAV*" + } + ], + "YJL171C": [ + { + "revision": "110203", + "new_alignment": "MLQSIVLSVCMFMLHTVAASGPQSYQKLDFTNVGFTGSYVDVNKFKDITNNESCTCEVGDRVWFSGKNAPLADYLSVHFRGPLKLKQFAFYTSPGFTVNNSRSSSDWNRLAYYESSSKTADNVTFLNHGGEASPCLGNALSYASSNGTGSASEATVLADGTLISSDQEYIIYSNVSCPKSGYDKGCGVYRSGIPAYYGYGGTTKMFLFEFEMPTETEKNSSSIGYYDLPAIWLLNDHIARTSQYPTNANCSCWASGCGEYDIFEAMNGTEKNHLYSTFHTFQGIEDLGTGIQSYGYITRNTTGTMKGGVVFDSSGNVVSFISDATPFNGTVSADTVNDLLAAIPENETYSSQLMSISATAPSTTSKSNGVALTKMQNGVWYYILAIFTAFTQVVLI*", + "old_alignment": "MLQSIVLSVCMFMLHTVAASGPQSYQKLDFTNVGFTGSYVDVNKFKDITNNESCTCEVGDRVWFSGKNAPLADYLSVHFRGPLKLKQFAFYTSPGFTVNNSRSSSDWNRLAYYESSSKTADNVTFLNHGGEASPCLGNALSYASSNGTGSASEATVLADGTLISSDQEYIIYSNVSCPKSGYDKGCGVYRSGIPAYYGYGGTTKMFLFEFEMPTETEKNSSSIGYYDLPAIWLLNDHIARTSQYPTNANCSCWASGCGEYDIFEAMNGTEKNHLYSTFHTFQGIEDLGTGIQSYGYITRNTTGTMKGGVVFDSSGNVVSFISDATPFNGTVSADTVNDLLAAIPENETYSSQLMSISATAPSTTSLSNGVRLTNMQNGVWYYILAIFTAFTQVVLI*" + } + ], + "YJL170C": [ + { + "revision": "060120", + "new_alignment": "MTTLASSIEHKTKHLAAPFENDENPWMKKYCCQCKSCKMSVPVQPWLPRFFVFGILCPVFWLVNLLAWWFLQYWQPHELEFHDLQEDEYPGFYEYEAITKRTVIPIKEEVLQEIRVMQNFSDSNSEEYYESKDGMPSSFLNVNTEQVEDENDTLKKYRYAFLKKVAHDVLESHDLLRKTFRDWNLRSLLGLLIDSILIIFVVLLCKKSR*", + "old_alignment": "--------------------------MKKYCCQCKSCKMSVPVQPWLPRFFVFGILCPVFWLVNLLAWWFLQYWQPHELEFHDLQEDEYPGFYEYEAITKRTVIPIKEEVLQEIRVMQNFSDSNSEEYYESKDGMPSSFLNVNTEQVEDENDTLKKYRYAFLKKVAHDVLESHDLLRKTFRDWNLRSLLGLLIDSILIIFVVLLCKKSR*" + } + ], + "YJL169W": [ + { + "revision": "110203", + "new_alignment": "MYKEINGKDKKNYLLQIAITIKVQDFLWDRKRETSPKYACLVNYDDVEGGGEDILVDADDNANAFFCFFLRIILSMYEFMNSLTLCLFPLVKSSGGALEESFLSSFVVRIFTMSLAHCLMFS*", + "old_alignment": "MYKEINGKDKKNYLLQIAITIKVQDFLWDRKRETSPKYACLVNYDDVEGGGEDILVDADDNPNAFFCFFLRIILSMYEFMNSLTLCLFPLVKSSGGALEESFLSSFVVRIFTMSLAHCLMFS*" + } + ], + "YJL168C": [ + { + "revision": "110203", + "new_alignment": "MSKNQSVSASEDEKEILNNNAEGHKPQRLFDQEPDLTEEALTKFENLDDCIYANKRIGTFKNNDFMECDCYEEFSDGVNHACDEDSDCINRLTLIECVNDLCSSCGNDCQNQRFQKKQYAPIAIFKTKHKGYGVRAEQDIEANQFIYEYKGEVIEEMEFRDRLIDYDQRHFKHFYFMMLQNGEFIDATIKGSLARFCNHSCSPNAYVNKWVVKDKLRMGIFAQRKILKGEEITFDYNVDRYGAQAQKCYCEEPNCIGFLGGKTQTDAASLLPQNIADALGVTVSMEKKWLKLKKLSGEPIIKNENENINIEFLQSLEVQPIDSPVDVTKIMSVLLQQDNKIIASKLLKRLFTIDDDSLRHQAIKLHGYTCFSKMLKLFITEQPQVDGKGNETEEDDIKFIKGILDFLLELPKTTRNGIESSQIDNVVKTLPAKFPFLKPNCDELLEKWSKFETYKRITKKDINVAASKMIDLRRVRLPPGWEIIHENGRPLYYNAEQKTKLHYPPSGSSKVFSSRSNTQVNSPSSSGIPKTPGALDSKKHKLSDEEYERKKQKRLEYERIALERAKQEELESLKQKLKLENERKSVLEDIIAEANKQKELQKEEAKKLVEAKEAKRLKRKTVSQSQRLEHNWNKFFASFVPNLIKKNPQSKQFDHENIKQCAKDIVKILTTKELKKDSSRAPPDDLTKGKRHKVKEFINSYMDKIILKKKQKKALALSSASTRMSSPPPSTSS*", + "old_alignment": "MSKNQSVSASEDEKEILNNNAEGHKPQRLFDQEPDLTEEALTKFENLDDCIYANKRIGTFKNNDFMECDCYEEFSDGVNHACDEDSDCINRLTLIECVNDLCSSCGNDCQNQRFQKKQYAPIAIFKTKHKGYGVRAEQDIEANQFIYEYKGEVIEEMEFRDRLIDYDQRHFKHFYFMMLQNGEFIDATIKGSLARFCNHSCSPNAYVNKWVVKDKLRMGIFAQRKILKGEEITFDYNVDRYGAQAQKCYCEEPNCIGFLGGKTQTDAASLLPQNIADALGVTVSMEKKWLKLKKLSGEPIIKNENENINIEFLQSLEVQPIDSPVDVTKIMSVLLQQDNKIIASKLLKRLFTIDDDSLRHQAIKLHGYTCFSKMLKLFITEQPQVDGKGNETEEDDIKFIKGILDFLLELPKTTRNGIESSQIDNVVKTLPAKFPFLKPNCDELLEKWSKFETYKRITKKDINVAASKMIDLRRVRLPPGWEIIHENGRPLYYNAEQKTKLHYPPSGSSKVFSSRSNTQVNSPSSSGIPKTPGALDSKKHKLSDEEYERKKQKRLEYERIALERAKQEELESLKQKLKLENERKSVLEDIIAEFNKQKELQKEESKKLVEAKEAKRLKRKTVSQSQRLEHNWNKFFASFVPNLIKKNPQSKQFDHENIKQCAKDIVKILTTKELKKDSSRAPPDDLTKGKRHKVKEFINSYMDKIILKKKQKKALGLSSASTRMSSPPPSTSS*" + } + ], + "YJL164C": [ + { + "revision": "110203", + "new_alignment": "MSTEEQNGGGQKSLDDRQGEESQKGETSERETTATESGNESKSVEKEGGETQEKPKQPHVTYYNEEQYKQFIAQARVTSGKYSLQD--------FQILRTLGTGSFGRVHLIRSRHNGRYYAMKVLKKEIVVRLKQVEHTNDERLMLSIVTHPFIIRMWGTFQDAQQIFMIMDYIEGGELFSLLRKSQRFPNPVAKFYAAEVCLALEYLHSKDIIYRDLKPENILLDKNGHIKITDFGFAKYVPDVTYTLCGTPDYIAPEVVSTKPYNKSIDWWSFGILIYEMLAGYTPFYDSNTMKTYEKILNAELRFPPFFNEDVKDLLSRLITRDLSQRLGNLQNGTEDVKNHPWFKEVVWEKLLSRNIETPYEPPIQQGQGDTSQFDKYPEEDINYGVQGEDPYADLFRDF*", + "old_alignment": "MSTEEQNGGGQKSLDDRQGEESQKGETSERETTATESGNESKSVEKEGGETQEKPKQPHVTYYNEEQYKQFIAQARVT--------VGSIVYKNFQILRTLGTGSFGRVHLIRSRHNGRYYAMKVLKKEIVVRLKQVEHTNDERLMLSIVTHPFIIRMWGTFQDAQQIFMIMDYIEGGELFSLLRKSQRFPNPVAKFYAAEVCLALEYLHSKDIIYRDLKPENILLDKNGHIKITDFGFAKYVPDVTYTLCGTPDYIAPEVVSTKPYNKSIDWWSFGILIYEMLAGYTPFYDSNTMKTYEKILNAELRFPPFFNEDVKDLLSRLITRDLSQRLGNLQNGTEDVKNHPWFKEVVWEKLLSRNIETPYEPPIQQGQGDTSQFDKYPEEDINYGVQGEDPYADLFRDF*" + } + ], + "YJL162C": [ + { + "revision": "060120", + "new_alignment": "MSQVIEPQLDRTTYYSILGLTSNATSSEVHKSYLKLARLLHPDKTKSDKSEELFKAVVHAHSILTDEDQKLRYDRDLKIKGLHTYQPKKNCHIFKTKAKESQGASPTLGQSEAYHRQNKPYEQQPYGFGVGKKMTSSSKSKVPIFKSFNLKSYQRNHYYSSKKERKHGSPDIDSLFHETNGASKVRMTDAGKMDTNSQFQEIWEILGKNAYTHKSYSEDPNSCLGSALSDHEEEEEAGKQQQQQQQQQQQQQHYGMTSKSSSPDEEKKNNKEPKRESRVSPEENGEEETGHKQFKLPKTSTFSSGSHDSNLQSPFYNHEYRHYARSKFECKNQFRKSVSPIKEIPATTSANEGWNILRDIIEKLNISNVDDRNKDLLFRRDEIGDKNHSDSIDIENLSIKEPKGMKRRKKDDISLEELFQSLPREKDYFMMDAINDSLESINLFKKPKTTQSHEQGGTFAQAESNRAKFKPLLEQCGITPEILDLEIPEIPEFDAVADLETLKLNVQLFNNQCNKLKETIHQVSLQRLRADTQFSDMLTQKQSIMVWKTYLEFDKSLMDKLNILQERQMQVIKIFSERCDGKV*", + "old_alignment": "MSQVIEPQLDRTTYYSILGLTSNATSSEVHKSYLKLARLLHPDKTKSDKSEELFKAVVHAHSILTDEDQKLRYDRDLKIKGLHTYQPKKNCHIFKTKAKESQGASPTLGQSEAYHRQNKPYEQQPYGFGVGKKMTSSSKSKVPIFKSFNLKSYQRNHYYSSKKERKHGSPDIDSLFHETNGASKVRMTDAGKMDTNSQFQEIWEILGKNAYTHKSYSEDPNSCLGSALSDHEEEEEAGKQQQQQQQQQQQQQHYGMTSKSSSPDEEKKNNKEPKRESRVSPEENGEEETGHKQFKLPKTSTFSSGSHDSNLQSPFYNHEYRHYARSKFECKNQFRKSVSPIKEIPATTSANEGWNILRDIIEKLNISNVDDRNKDLLFRRDEIGDKNHSDSIDIENLSIKEPKGMKRRKKDDISLEELFQSLPREKDYFMMDPINDSLESINLFKKPKTTQSHEQGGTFAQAESNRAKFKPLLEQCGITPEI-----------------------------------------------------------------------------------------------------*" + } + ], + "YJL160C": [ + { + "revision": "040305", + "new_alignment": "MHYKKAFLASLLSSIALTAYAPPEPWATLTPSSKMDGGTTEYRTSFGLAVIPFTVTESKVKRNVISQINDGQVQVTTQKLPHPVSQIGDGQIQVTTQKVPPVVSHIVSQIGDGQLQITTAKNVVTKSTIAVPSKTVTATATSTATAVSQIHDGQVQVTISSASSSSVLSKSKLEPTKKPNNEKVIKVQACKSSGTLAITLQGGVLIDSSGRIGSIVANRQFQFDGPPPQAGAIYAGGWSITKHGTLAIGDNDVFYQCLSGTFYNLYDQSIGGQCNPVHLQTVGLVDC*--------", + "old_alignment": "MHYKKAFLASLLSSIALTAYAPPEPWATLTPSSKMDGGTTEYRTSFGLAVIPFTVTESKVKRNVISQINDGQVQVTTQKLPHPVSQIGDGQIQVTTQKVPPVVSHIVSQIGDGQLQITTAKNVVTKSTIAVPSKTVTATATSTATAVSQIHDGQVQVTISSASSSSVLSKSKL-------------------------------------------------------------------------------------------------------------------RANKETK*" + } + ], + "YJL159W": [ + { + "revision": "061006", + "new_alignment": "MQYKKTLVASALAATTLAAYAPSEPWSTLTPTATYSGGVTDYASTFGIAVQPISTTSSASSAATTASSKAKRAASQIGDGQVQAATTTASVSTKSTAAAVSQIGDGQIQATTKTTAAAVSQIG-DGQIQATTKTTSAKTTAAAVSQISDGQIQATTTTLAPKSTAAAVSQIGDGQVQATTTTLAPKSTAAAVSQIGDGQVQATTKTTAAAVSQIGDGQVQATTKTTAAAVSQIGDGQVQATTKTTAAAVSQIGDGQVQATTKTTAAAVSQITDGQVQATTKTTQAASQVSDGQVQATTATSASAAATSTDPVDAVSCKTSGTLEMNLKGGILTDGKGRIGSIVANRQFQFDGPPPQAGAIYAAGWSITPDGNLAIGDNDVFYQCLSGTFYNLYDEHIGSQCTPVHLEAIDLIDC*", + "old_alignment": "MQYKKTLVASALAATTLAAYAPSEPWSTLTPTATYSGGVTDYASTFGIAVQPISTTSSASSAATTASSKAKRAASQIGDGQVQAATTTASVSTKSTAAAVSQIGDGQIQATTKTTAAAVS---RDGQIQATTKTTSAKTTAAAVSQISDGQI------------------------QATTTTLAPKSTAAAVSQIGDGQVQATTKTTAAAVSQIGDGQVQATTKTTAAAVSQIGDGQVQATTKTTAAAVSQIGDGQVQATTKTTAAAVSQITDGQVQATTKTTQAASQVSDGQVQATTATSASAAATSTDPVDAVSCKTSGTLEMNLKGGILTDGKGRIGSIVANRQFQFDGPPPQAGAIYAAGWSITPDGNLAIGDNDVFYQCLSGTFYNLYDEHIGSQCTPVHLEAIDLIDC*" + }, + { + "revision": "040305", + "new_alignment": "MQYKKTLVASALAATTLAAYAPSEPWSTLTPTATYSGGVTDYASTFGIAVQPISTTSSASSAATTASSKAKRAASQIGDGQVQAATTTASVSTKSTAAAVSQIGDGQIQATTKTTAAAVSQIG-DGQIQATTKTTSAKTTAAAVSQISDGQIQATTTTLAPKSTAAAVSQIGDGQVQATTTTLAPKSTAAAVSQIGDGQVQATTKTTAAAVSQIGDGQVQATTKTTAAAVSQIGDGQVQATTKTTAAAVSQIGDGQVQATTKTTAAAVSQITDGQVQATTKTTQAASQVSDGQVQATTATSASAAATSTDPVDAVSCKTSGTLEMNLKGGILTDGKGRIGSIVANRQFQFDGPPPQAGAIYAAGWSITPDGNLAIGDNDVFYQCLSGTFYNLYDEHIGSQCTPVHLEAIDLIDC*---------------------------------------", + "old_alignment": "MQYKKTLVASALAATTLAAYAPSEPWSTLTPTATYSGGVTDYASTFGIAVQPISTTSSASSAATTASSKAKRAASQIGDGQVQAATTTASVSTKSTAAAVSQIGDGQIQATTKTTAAAVS---RDGQIQATTKTTSAKTTAAAVSQISDGQI------------------------QATTTTLAPKSTAAAVSQIGDGQVQATTKTTAAAVSQIGDGQVQATTKTTAAAVSQIGDGQVQATTKTTAAAVSQIGDGQVQATTKTTAAAVSQITDGQVQATTKTTQAASQVSDGQVQATTA--------------------------------------------------------------------------------------------------------------------WLLVTMMSSTNVCPVLSTTCTTNTLVVNVLQSTWKLSI*" + } + ], + "YJL156C": [ + { + "revision": "090220", + "new_alignment": "MVRFFGLNKKKNEEKENTDLPADNEQNAAETSSSNVSGNEERIDPNSHDTNPENANNDDASTTFGSSIQSSSIFSRGRMTYGTGASSSMATSEMRSHSSGHSGSKNSKNLQGFKDVGKPLRAVSFLSPVKEEESQDTQNTLDVSSSTSSTLATSENARENSFTSRRSITLEYIHKSLSELEENLVDIMDDIHQDVISISKAVIEAIEYFKEFLPTTRDRIPYRISLEKSSSLRKINKIVLHFLDNLLVSDAFSNSRSILLRRFYFFLKKLNLITDDDLISESGVLPCLSVFCIGSHCNLPSMDKLGMILDELTKMDSSIISDQEGAFIAPILRGITPKSSILTIMFGLPNLQHEHYEMIKVLYSLFPDVHMYCVKDYIKKAASAVGSIPSHTAATIDTIAPTKFQFSPPYAVSENPLELPISMSLSTETSAKITGTLGGYLFPQTGSDKKFSQFASCSFAITCAHVVLSEKQDYPNVMVPSNVLQTSYKKVLTKESDRYPDGSVEKTAFLEEVQRIDQNLNWQKSNKFGQVVWGERAIVDHRLSDFAIIKVNSSFKCQNTLGNGLKSFPDPTLRFQNLHVKRKIFKMKPGMKVFKIGASTGYTSGELNSTKLVYWADGKLQSSEFVVASPTPLFASAGDSGAWILTKLEDRLGLGLVGMLHSYDGEQRQFGLFTPIGDILERLHAVTKIQWDIDPQLDG*----", + "old_alignment": "MVRFFGLNKKKNEEKENTDLPADNEQNAAETSSSNVSGNEERIDPNSHDTNPENANNDDASTTFGSSIQSSSIFSRGRMTYGTGASSSMATSEMRSHSSGHSGSKNSKNLQGFKDVGKPLRAVSFLSPVKEEESQDTQNTLDVSSSTSSTLATSENARENSFTSRRSITLEYIHKSLSELEENLVDIMDDIHQDVISISKAVIEAIEYFKEFLPTTRDRIPYRISLEKSSSLRKINKIVLHFLDNLLVSDAFSNSRSILLRRFYFFLKKLNLITDDDLISESGVLPCLSVFCIGSHCNLPSMDKLGMILDELTKMDSSIISDQEGAFIAPILRGITPKSSILTIMFGLPNLQHEHYEMIKVLYSLFPDVHMYCVKDYIKKAASAVGSIPSHTAATIDTIAPTKFQFSPPYAVSENPLELPISMSLSTETSAKITGTLGGYLFPQTGSDKKFSQFASCSFAITCAHVVLSEKQDYPNVMVPSNVLQTSYKKVLTKESDRYPDGSVEKTAFLEEVQRIDQNLNWQKSNKFGQVVWGERAIVDHRLSDFAIIKVNSSFKCQNTLGNGLKSFPDPTLRFQNLHVKRKIFKMKPGMKVFKIGASTGYTSGELNSTKLVYWADGKLQSSEFVVASPTPLFASAGDSGAWILTKLEDRLGLGLVGMLHSYDGEQRQFGLFTPIGDILERLH----------------DCN*" + } + ], + "YJL130C": [ + { + "revision": "110203", + "new_alignment": "MATIAPTAPITPPMESTGDRLVTLELKDGTVLQGYSFGAEKSVAGELVFQTGMVGYPESVTDPSYEGQILVITYPLVGNYGVPDMHLRDELVEELPRYFESNRIHIAGLVISHYTDEYSHYLAKSSLGKWLQNEGIPAVYGVDTRSLTKHLRDAGSMLGRLSLEKSGSDRTISRSSSWRSAFDVPEWVDPNVQNLVSKVSINEPKLYVPPADNKHIELQTGPDGKVLRILAIDVGMKYNQIRCFIKRGVELKVVPWNYDFTKEDYDGLFISNGPGDPSVLDDLSQRLSNVLEAKKTPVFGICLGHQLIARAAGASTLKLKFGNRGHNIPCTSTISGRCYITSQNHGFAVDVDTLTSGWKPLFVNANDDSNEGIYHSELPYFSVQFHPESTPGPRDTEFLFDVFIQAVKEFKYTQVLKPIAFPGGLLEDNVKAHPRIEAKKVLVLGSGGLSIGQAGEFDYSGSQAIKALKEEGIYTILINPNIATIQTSKGLADKVYFVPVTAEFVRKVILHERPDAIYVTFGGQTALSVGIAMKDEFEALGVKVLGTPIDTIITTEDRELFSNAIDEINEKCAKSQAANSVDEALAAVKEIGFPVIVRAAYALGGLGSGFANNEKELVDLCNVAFSSSPQVLVEKSMKGWKEVEYEVVRDAFDNCITVCNMENFDPLGIHTGDSIVVAPSQTLSDEDYNMLRTTAVNVIRHLGVVGECNIQYALNPVSKDYCIIEVNARLSRSSALASKATGYPLAYTAAKLGLNIPLNEVKNSVTKSTCACFEPSLDYCVVKMPRWDLKKFTRVSTELSSSMKSVGEVMSIGRTFEEAIQKAIRSTEYANLGFNETDLDIDIDYELNNPTDMRVFAIANAFAKKGYSVDKVWEMTRIDKWFLNKLHDLVQFAEKISSFGTKEELPSLVLRQAKQLGFDDRQIARFLDSNEVAIRRLRKEYGITPFVKQIDTVAAEFPAYTNYLYMTYNADSHDLSFDDHGVMVLGSGVYRIGSSVEFDWCAVTAVRTLRANNIKTIMVNYNPETVSTDYDEADRLYFETINLERVLDIYEIENSSGVVVSMGGQTSNNIAMTLHRENVKILGTSPDMIDSAENRYKFSRMLDQIGVDQPAWKELTSMDEAESFAEKVGYPVLVRPSYVLSGAAMNTVYSKNDLESYLNQAVEVSRDYPVVITKYIENAKEIEMDAVARNGELVMHVVSEHVENAGVHSGDATLIVPPQDLAPETVDRIVVATAKIGKALKITGPYNIQFIAKDNEIKVIECNVRASRSFPFISKVVGVNLIELATKAIMGLPLTPYPVEKLPDDYVAVKVPQFSFPRLAGADPVLGVEMASTGEVATFGHSKYEAYLKSLLATGFKLPKKNILLSIGSYKEKQELLSSVQKLYNMGYKLFATSGTADFLSEHGIAVQYLEVLNKDDDDQKSEYSLTQHLANNEIDLYINLPSANRFRRPASYVSKGYKTRRLAVDYSVPLVTNVKCAKLLIEAISRNITLDVSERDAQTSHRTITLPGLINIATYVPNASHVIKGPAELKETTRLFLESGFTYCQLMPRSISGPVITDVASLKAANSVSQDSSYTDFSFTIAGTAHNAHSVTQSASKVTALFLPLRELKNKITAVAELLNQWPTEKQVIAEAKTADLASVLLLTSLQNRSIHITGVSNKEDLALIMTVKAKDPRVTCDVNIYSLFIAQDDYPEAVFLPTKEDQEFFWNNLDSIDAFSVGALPVALANVTGNKVDVGMGIKDSLPLLLAAVEEGKLTIDDIVLRLHDNPAKIFNIPTQDSVVEIDLDYSFRRNKRWSPFNKDMNGGIERVVYNGETLVLSGELVSPGAKGKCIVNPSPASITASAELQSTSAKRRFSITEEAIADNLDAAEDAIPEQPLEQKLMSSRPPRELVAPGAIQNLIRSNNPFRGRHILSIKQFKRSDFHVLFAVAQELRAAVAREGVLDLMKGHVITTIFFEPSTRTCSSFIAAMERLGGRIVNVNPLVSSVKKGETLQDTIRTLACYSDAIVMRHSEEMSVHIAAKYSPVPIINGGNGSREHPTQAFLDLFTIREEIGTVNGITVTFMGDLKHGRTVHSLCRLLMHYQVRINLVSPPELRLPEGLREELRKAGLLGVESIELTPHIISKTDVLYCTRVQEERFNSPEEYARLKDTYIVDNKILAHAKENMAIMHPLPRVNEIKEEVDYDHRAAYFRQMKYGLFVRMALLAMVMGVDM*", + "old_alignment": "MATIAPTAPITPPMESTGDRLVTLELKDGTVLQGYSFGAEKSVAGELVFQTGMVGYPESVTDPSYEGQILVITYPLVGNYGVPDMHLRDELVEELPRYFESNRIHIAGLVISHYTDEYSHYLRKSSLGKWLQNEGIPAVYGVDTRSLTKHLRDAGSMLGRLSLEKSGSDRTISRSSSWRSAFDVPEWVDPNVQNLVSKVSINEPKLYVPPADNKHIELQTGPDGKVLRILAIDVGMKYNQIRCFIKRGVELKVVPWNYDFTKEDYDGLFISNGPGDPSVLDDLSQRLSNVLEAKKTPVFGICLGHQLIARAAGASTLKLKFGNRGHNIPCTSTISGRCYITSQNHGFAVDVDTLTSGWKPLFVNANDDSNEGIYHSELPYFSVQFHPESTPGPRDTEFLFDVFIQAVKEFKYTQVLKPIAFPGGLLEDNVKAHPRIEAKKVLVLGSGGLSIGQAGEFDYSGSQAIKALKEEGIYTILINPNIATIQTSKGLADKVYFVPVTAEFVRKVILHERPDAIYVTFGGQTALSVGIAMKDEFEALGVKVLGTPIDTIITTEDRELFSNAIDEINEKCAKSQAANSVDEALAAVKEIGFPVIVRAAYALGGLGSGFANNEKELVDLCNVAFSSSPQVLVEKSMKGWKEVEYEVVRDAFDNCITVCNMENFDPLGIHTGDSIVVAPSQTLSDEDYNMLRTTAVNVIRHLGVVGECNIQYALNPVSKDYCIIEVNARLSRSSALASKATGYPLAYTAAKLGLNIPLNEVKNSVTKSTCACFEPSLDYCVVKMPRWDLKKFTRVSTELSSSMKSVGEVMSIGRTFEEAIQKAIRSTEYANLGFNETDLDIDIDYELNNPTDMRVFAIANAFAKKGYSVDKVWEMTRIDKWFLNKLHDLVQFAEKISSFGTKEELPSLVLRQAKQLGFDDRQIARFLDSNEVAIRRLRKEYGITPFVKQIDTVAAEFPAYTNYLYMTYNADSHDLSFDDHGVMVLGSGVYRIGSSVEFDWCAVTAVRTLRANNIKTIMVNYNPETVSTDYDEADRLYFETINLERVLDIYEIENSSGVVVSMGGQTSNNIAMTLHRENVKILGTSPDMIDSAENRYKFSRMLDQIGVDQPAWKELTSMDEAESFAEKVGYPVLVRPSYVLSGAAMNTVYSKNDLESYLNQAVEVSRDYPVVITKYIENAKEIEMDAVARNGELVMHVVSEHVENAGVHSGDATLIVPPQDLAPETVDRIVVATAKIGKALKITGPYNIQFIAKDNEIKVIECNVRASRSFPFISKVVGVNLIELATKAIMGLPLTPYPVEKLPDDYVAVKVPQFSFPRLAGADPVLGVEMASTGEVATFGHSKYEAYLKSLLATGFKLPKKNILLSIGSYKEKQELLSSVQKLYNMGYKLFATSGTADFLSEHGIAVQYLEVLNKDDDDQKSEYSLTQHLANNEIDLYINLPSANRFRRPASYVSKGYKTRRLAVDYSVPLVTNVKCAKLLIEAISRNITLDVSERDAQTSHRTITLPGLINIATYVPNASHVIKGPAELKETTRLFLESGFTYCQLMPRSISGPVITDVASLKAANSVSQDSSYTDFSFTIAGTAHNAHSVTQSASKVTALFLPLRELKNKITAVAELLNQWPTEKQVIAEAKTADLASVLLLTSLQNRSIHITGVSNKEDLALIMTVKAKDPRVTCDVNIYSLFIAQDDYPEAVFLPTKEDQEFFWNNLDSIDAFSVGALPVALANVTGNKVDVGMGIKDSLPLLLAAVEEGKLTIDDIVLRLHDNPAKIFNIPTQDSVVEIDLDYSFRRNKRWSPFNKDMNGGIERVVYNGETLVLSGELVSPGAKGKCIVNPSPASITASAELQSTSAKRRFSITEEAIADNLDAAEDAIPEQPLEQKLMSSRPPRELVAPGAIQNLIRSNNPFRGRHILSIKQFKRSDFHVLFAVAQELRAAVAREGVLDLMKGHVITTIFFEPSTRTCSSFIAAMERLGGRIVNVNPLVSSVKKGETLQDTIRTLACYSDAIVMRHSEEMSVHIAAKYSPVPIINGGNGSREHPTQAFLDLFTIREEIGTVNGITVTFMGDLKHGRTVHSLCRLLMHYQVRINLVSPPELRLPEGLREELRKAGLLGVESIELTPHIISKTDVLYCTRVQEERFNSPEEYARLKDTYIVDNKILAHAKENMAIMHPLPRVNEIKEEVDYDHRAAYFRQMKYGLFVRMALLAMVMGVDM*" + } + ], + "YJL128C": [ + { + "revision": "110203", + "new_alignment": "MEDKFANLSLHEKTGKSSIQLNEQTGSDNGSAVKRTSSTSSHYNNINADLHARVKAFQEQRALKRSASVGSNQSEQDKGSSQSPKHIQQIVNKPLPPLPVAGSSKVSQRMSSQVVQASSKSTLKNVLDNQETQNITDVNINIDTTKITATTIGVNTGLPATDITPSVSNTASATHKAQLLNPNRRAPRRPLSTQHPTRPNVAPHKAPAIINTPKQSLSARRGLKLPPGGMSLKMPTKTAQQPQQFAPSPSNKKHIETLSNSKVVEGKRSNPGSLINGVQSTSTSSSTEGPHDTVGTTPRTGNSNNSSNSGSSGGGGLFANFSKYVDIKSGSLNFAGKLSLSSKGIDFSNGSSSRITLDELEFLDELGHGNYGNVSKVLHKPTNVIMATKEVRLELDEAKFRQILMELEVLHKCNSPYIVDFYGAFFIEGAVYMCMEYMDGGSLDKIYDESSEIGGIDEPQLAFIANAVIHGLKELKEQHNIIHRDVKPTNILCSANQGTVKLCDFGVSGNLVASLAKTNIGCQSYMAPERIKSLNPDRATYTVQSDIWSLGLSILEMALGRYPYPPETYDNIFSQLSAIVDGPPPRLPSDKFSSDAQDFVSLCLQKIPERRPTYAALTEHPWLVKYRNQDVHMSEYITERLERRNKILRERGENGLSKNVPALHMGGL*", + "old_alignment": "MEDKFANLSLHEKTGKSSIQLNEQTGSDNGSAVKRTSSTSSHYNNINADLHARVKAFQEQRALKRSASVGSNQSEQDKGSSQSPKHIQQIVNKPLPPLPVAGSSKVSQRMSSQVVQASSKSTLKNVLDNQETQNITDVNINIDTTKITATTIGVNTGLPATDITPSVSNTASATHKAQLLNPNRRAPRRPLSTQHPTRPNVAPHKAPAIINTPKQSLSARRAVKLPPGGMSLKMPTKTAQQPQQFAPSPSNKKHIETLSNSKVVEGKRSNPGSLINGVQSTSTSSSTEGPHDTVGTTPRTGNSNNSSNSGSSGGGGLFANFSKYVDIKSGSLNFAGKLSLSSKGIDFSNGSSSRITLDELEFLDELGHGNYGNVSKVLHKPTNVIMATKEVRLELDEAKFRQILMELEVLHKCNSPYIVDFYGAFFIEGAVYMCMEYMDGGSLDKIYDESSEIGGIDEPQLAFIANAVIHGLKELKEQHNIIHRDVKPTNILCSANQGTVKLCDFGVSGNLVASLAKTNIGCQSYMAPERIKSLNPDRATYTVQSDIWSLGLSILEMALGRYPYPPETYDNIFSQLSAIVDGPPPRLPSDKFSSDAQDFVSLCLQKIPERRPTYAALTEHPWLVKYRNQDVHMSEYITERLERRNKILRERGENGLSKNVPALHMGGL*" + } + ], + "YJL114W": [ + { + "revision": "110203", + "new_alignment": "MATPVRGETRNVIDDNISARIQSKVKTNDTVRQTPSSLRKVSIKDEQVRQYQRNLNRFKTILNGLKAEEEKLSEADDIQMLAEKLLKLGETIDKVENRIVDLVEKIQLLETNENNNILHEHIDATGTYYLFDTLTSTNKRFYPKDCVFDYRTNNVENIPILLNNFKKFIKKYQFDDVFENDIIEIDPRENEILCKIIKEGLGESLDIMNTNTTDIFRIIDGLKKQI*----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------", + "old_alignment": "MATPVRGETRNVIDDNISARIQSKVKTNDTVRQTPSSLRKVSIKDEQVRQYQRNLNRFKTILNGLKAEEEKLSEADDIQMLAEKLLKLGETIDKVENRIVDLVEKIQLLETNENNNILHEHIDATGTYYLFDTLTSTNKRFYPKDCVFDYRTNNVENIPILLNNFKKFIKKYQFDDVFENDIIEIDPRENEILCKIIKEGLGESLDIMNTNTTDIFRIIDGLKKQ--NIEVCMVEMSELEPGEKVLVDTTCRNSALLMNKLQKLVLMEKWIFSKCCQDCPNLKDYLQEAIMGTLHESLRNSVKQRLYNIPHDVGIDHEEFLINTVIETVIDLSPIADDQIENSCMYCKSVFHCSINCKKKPNRELRPDSTNFSKTYYLQGAQRQQPLKSSAKRTKVLEQDTKKVEQSVQQQKTGNY*" + } + ], + "YJL113W": [ + { + "revision": "110203", + "new_alignment": "---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------MNKLQKLVLMEKWIFSKCCQDCPNLKDYLQEAIMGTLHESLRNSVKQRLYNIPHDVGIDHEEFLINTVIETVIDLSPIADDQIENSCMYCKSVFHCSINCKKKPNRELGLTRPISQKPIIYKVHRDNNHLSPVQNEQKSWNKTQKRSNKVYNSKKLVIIDTGSGVNITNDKTLLHNYEDSNRSTRFFGIGKNSSVSVKGYGYIKIKNGHNNTDNKCLLTYYVPEEESTIISCYDLAKKTKMVLSRKYTRLGNKIIKIKTKIVNGVIHVKMNELIERPSDDSKINAIKPTSSPGFKLNKRSITLEDAHKRMGHTGIQQIENSIKHNHYEESLDLIKEPNEFWCQTCKISKATKRNHYTGSMNNHSTDHEPGSSWCMDIFGPVSSSNADTKRYMLIMVDNNTRYCMTSTHFNKNAETILAQVRKNIQYVETQFDRKVREINSDRGTEFTNDQIEEYFISKGIHHILTSTQDHAANGRAERYIRTIITDATTLLRQSNLRVKFWEYAVTSATNIRNYLEHKSTGKLPLKAISRQPVTVRLMSFLPFGEKGIIWNHNHKKLKPSGLPSIILCKDPNSYGYKFFIPSKNKIVTSDNYTIPNYTMDGRVRNTQNINKSHQFSSDNDDEEDQIETVTNLCEALENYEDDNKPITRLEDLFTEEELSQIDSNAKYPSPSNNLEGDLDYVFSDVEESGDYDVESELSTTNNSISTDKNKILSNKDFNSELASTEISISGIDKKGLINTSHIDEDKYDEKVHRIPSIIQEKLVGSKNTIKINDENKISDRIRSKNIGSILNTGLSRCVDITDESITNKDESMHNAKPELIQEQLKKTNHETSFPKEGSIGTNVKFRNTNNEISLKTGDTSLPIKTLESINNHHSNDYSTNKVEKFEKENHHPPPIEDIVDMSDQTDMESNCQDGNNLKELKVTDKNVPTDNGTNVSPRLEQNIEASGSPVQTVNKSAFLNKEFSSLNMKRKRKRHDKNNSLTSYELERDKKRSKKNRVKLIPDNMETVSAPKIRAIYYNEAISKNPDLKEKHEYKQAYHKELQNLKDMKVFDVDVKYSRSEIPDNLIVPTNTIFTKKRNGIYKARIVCRGDTQSPDTYSVITTESLNHNHIKIFLMIANNRNMFMKTLDINHAFLYAKLEEEIYIPHPHDRRCVVKLNKALYGLKQSPKEWNDHLRQYLNGIGLKDNSYTPGLYQTEDKNLMIAVYVDDCVIAASNEQRLDEFINKLKSNFELKITGTLIDDVLDTDILGMDLVYNKRLGTIDLTLKSFINRMDKKYNEELKKIRKSSIPHMSTYKIDPKKDVLQMSEEEFRQGVLKLQQLLGELNYVRHKCRYDIEFAVKKVARLVNYPHERVFYMIYKIIQYLVRYKDIGIHYDRDCNKDKKVIAITDASVGSEYDAQSRIGVILWYGMNIFNVYSNKSTNRCVSSTEAELHAIYEGYADSETLKVTLKELGEGDNNDIVMITDSKPAIQGLNRSYQQPKEKFTWIKTEIIKEKIKEKSIKLLKITGKGNIADLLTKPVSASDFKRFIQVLKNKITSQDILASTDY*", + "old_alignment": "MATPVRGETRNVIDDNISARIQSKVKTNDTVRQTPSSLRKVSIKDEQVRQYQRNLNRFKTILNGLKAEEEKLSEADDIQMLAEKLLKLGETIDKVENRIVDLVEKIQLLETNENNNILHEHIDATGTYYLFDTLTSTNKRFYPKDCVFDYRTNNVENIPILLNNFKKFIKKYQFDDVFENDIIEIDPRENEILCKIIKEGLGESLDIMNTNTTDIFRIIDGLKKQNIEVCMVEMSELEPGEKVLVDTTCRNSALLMNKLQKLVLMEKWIFSKCCQDCPNLKDYLQEAIMGTLHESLRNSVKQRLYNIPHDVGIDHEEFLINTVIETVIDLSPIADDQIENSCMYCKSVFHCSINCKKKPNRELGLTRPISQKPIIYKVHRDNNHLSPVQNEQKSWNKTQKRSNKVYNSKKLVIIDTGSGVNITNDKTLLHNYEDSNRSTRFFGIGKNSSVSVKGYGYIKIKNGHNNTDNKCLLTYYVPEEESTIISCYDLAKKTKMVLSRKYTRLGNKIIKIKTKIVNGVIHVKMNELIERPSDDSKINAIKPTSSPGFKLNKRSITLEDAHKRMGHTGIQQIENSIKHNHYEESLDLIKEPNEFWCQTCKISKATKRNHYTGSMNNHSTDHEPGSSWCMDIFGPVSSSNADTKRYMLIMVDNNTRYCMTSTHFNKNAETILAQVRKNIQYVETQFDRKVREINSDRGTEFTNDQIEEYFISKGIHHILTSTQDHAANGRAERYIRTIITDATTLLRQSNLRVKFWEYAVTSATNIRNYLEHKSTGKLPLKAISRQPVTVRLMSFLPFGEKGIIWNHNHKKLKPSGLPSIILCKDPNSYGYKFFIPSKNKIVTSDNYTIPNYTMDGRVRNTQNINKSHQFSSDNDDEEDQIETVTNLCEALENYEDDNKPITRLEDLFTEEELSQIDSNAKYPSPSNNLEGDLDYVFSDVEESGDYDVESELSTTNNSISTDKNKILSNKDFNSELASTEISISGIDKKGLINTSHIDEDKYDEKVHRIPSIIQEKLVGSKNTIKINDENKISDRIRSKNIGSILNTGLSRCVDITDESITNKDESMHNAKPELIQEQLKKTNHETSFPKEGSIGTNVKFRNTNNEISLKTGDTSLPIKTLESINNHHSNDYSTNKVEKFEKENHHPPPIEDIVDMSDQTDMESNCQDGNNLKELKVTDKNVPTDNGTNVSPRLEQNIEASGSPVQTVNKSAFLNKEFSSLNMKRKRKRHDKNNSLTSYELERDKKRSKKNRVKLIPDNMETVSAPKIRAIYYNEAISKNPDLKEKHEYKQAYHKELQNLKDMKVFDVDVKYSRSEIPDNLIVPTNTIFTKKRNGIYKARIVCRGDTQSPDTYSVITTESLNHNHIKIFLMIANNRNMFMKTLDINHAFLYAKLEEEIYIPHPHDRRCVVKLNKALYGLKQSPKEWNDHLRQYLNGIGLKDNSYTPGLYQTEDKNLMIAVYVDDCVIAASNEQRLDEFINKLKSNFELKITGTLIDDVLDTDILGMDLVYNKRLGTIDLTLKSFINRMDKKYNEELKKIRKSSIPHMSTYKIDPKKDVLQMSEEEFRQGVLKLQQLLGELNYVRHKCRYDIEFAVKKVARLVNYPHERVFYMIYKIIQYLVRYKDIGIHYDRDCNKDKKVIAITDASVGSEYDAQSRIGVILWYGMNIFNVYSNKSTNRCVSSTEAELHAIYEGYADSETLKVTLKELGEGDNNDIVMITDSKPAIQGLNRSYQQPKEKFTWIKTEIIKEKIKEKSIKLLKITGKGNIADLLTKPVSASDFKRFIQVLKNKITSQDILASTDY*" + } + ], + "YJL046W": [ + { + "revision": "051202", + "new_alignment": "------------------------------------------MSMMLSNWALSPRYVGQRNLIHCTTLFHTLTRWAKDADDKYHDINSMYENMFTPSNDNVSILQDEGKSDYDTTKASSMEEDISAFNKDLYNFYNIGYAKQIMSASQLENIVKAKGRFVIQSLSTSPYYNLALENYVFKNTPRAKRGPDNCRLLFYINDRCAVIGKNQNLWQEVDLAKLKSKNFELLRRFSGGGTVLHDLGNVNYSYLTSREKFETKFFNKMIIKWLNSLNPELRLDLNERGDIIQDGFKISGSAYKIAGGKAYHHATMLLNADLEQFSGLLEPSLPNNMEWESSGVHSVKSKIKNVGIITPNQFIAVVSERFQKTFKVDGEIPIYYCDEFKSINDEIKDAMNTLQSEQWKYFSGPKFSVKIKDKGLTIKVEKGMIYDCDRNDLIGLEFKGFLENIDSYT*", + "old_alignment": "MRSASSYLIRNIEHPKISELTYVEFLMNTKEENTRLFFDVYIMSMMLSNWALSPRYVGQRNLIHCTTLFHTLTRWAKDADDKYHDINSMYENMFTPSNDNVSILQDEGKSDYDTTKASSMEEDISAFNKDLYNFYNIGYAKQIMSASQLENIVKAKGRFVIQSLSTSPYYNLALENYVFKNTPRAKRGPDNCRLLFYINDRCAVIGKNQNLWQEVDLAKLKSKNFELLRRFSGGGTVLHDLGNVNYSYLTSREKFETKFFNKMIIKWLNSLNPELRLDLNERGDIIQDGFKISGSAYKIAGGKAYHHATMLLNADLEQFSGLLEPSLPNNMEWESSGVHSVKSKIKNVGIITPNQFIAVVSERFQKTFKVDGEIPIYYCDEFKSINDEIKDAMNTLQSEQWKYFSGPKFSVKIKDKGLTIKVEKGMIYDCDRNDLIGLEFKGFLENIDSYT*" + } + ], + "YJL031C": [ + { + "revision": "040206", + "new_alignment": "MHGIKRKQWTKELLRQKRVQDEKKIYDYRSLTENVLNMRDEKIYSIEALKKTSELLEKNPEFNAIWNYRRDIIASLASELEIPFWDKELVFVMMLLKDYPKVYWIWNHRLWVLKHYPTSSPKVWQTELAVVNKLLEQDARNYHGWHYRRIVVGNIESITNKSLDKEEFEYTTIKINNNISNYSAWHQRVQIISRMFQKGEVGNQKEYIRTEISYIINAMFTDAEDQSVWFYIKWFIKNDIVCKTLDEQEYLKMLKDLRENILLINNDEIEFSGKQNIWCLKILLVLEDILEEKEALTERSSEQYLVQLIDADPLRKNRYLHLLEQHK*", + "old_alignment": "-------------------------------------MRDEKIYSIEALKKTSELLEKNPEFNAIWNYRRDIIASLASELEIPFWDKELVFVMMLLKDYPKVYWIWNHRLWVLKHYPTSSPKVWQTELAVVNKLLEQDARNYHGWHYRRIVVGNIESITNKSLDKEEFEYTTIKINNNISNYSAWHQRVQIISRMFQKGEVGNQKEYIRTEISYIINAMFTDAEDQSVWFYIKWFIKNDIVCKTLDEQEYLKMLKDLRENILLINNDEIEFSGKQNIWCLKILLVLEDILEEKEALTERSSEQYLVQLIDADPLRKNRYLHLLEQHK*" + } + ], + "YJL015C": [ + { + "revision": "110203", + "new_alignment": "------------------------------MRHVKRKSLVLGWKYIISHKIISGYIWLYRNCTTNIYTVCKFLRCGYICEELCNGRSTCDDRTFAHRTFVFMGVYLQLIHHISRFRTNIAFITQ*", + "old_alignment": "MITRYYRCFFDIMLSTHFIEWRFAIFFLRTMRHVKRKSLVLGWKYIISHKIISGYIWLYRNCTTNIYTVCKFLRCGYICEELCNGRSTCDDRTFAHRTFVFMGVYLQLIHHISRFRTNIAFITQ*" + } + ], + "YJL012C": [ + { + "revision": "040305", + "new_alignment": "MKFGEHLSKSLIRQYSYYYISYDDLKTELEDNLSKNNGQWTQELETDFLESLEIELDKVYTFCKVKHSEVFRRVKEVQEQVQHTVRLLDSNNPPTQLDFEILEEELSDIIADVHDLAKFSRLNYTGFQKIIKKHDKKTGFILKPVFQVRLDSKPFFKENYDELVVKISQLYDIARTSGRPIKGDSSAGGKQQNFVRQTTKYWVHPDNITELKLIILKHLPVLVFNTNKEFEREDSAITSIYFDNENLDLYYGRLRKDEGAEAHRLRWYGGMSTDTIFVERKTHREDWTGEKSVKARFALKERHVNDFLKGKYTVDQVFAKMRKEGKKPMNEIENLEALASEIQYVMLKKKLRPVVRSFYNRTAFQLPGDARVRISLDTELTMVREDNFDGVDRTHKNWRRTDIGVDWPFKQLDDKDICRFPYAVLEVKLQTQLGQEPPEWVRELVGSHLVEPVPKFSKFIHGVATLLNDKVDSIPFWLPQMDVDIRKPPLPTNIEITRPGRSDNEDNDFDEDDEDDAALVAAMTNAPGNSLDIEESVGYGATSAPTSNTNHVVESANAAYYQRKIRNAENPISKKYYEIVAFFDHYFNGDQISKIPKGTTFDTQIRAPPGKTICVPVRVEPKVYFATERTYLSWLSISILLGGVSTTLLTYGSPTAMIGSIGFFITSLAVLIRTVMVYAKRVVNIRLKRAVDYEDKIGPGMVSVFLILSILFSFFCNLVAK*----------------------------------------", + "old_alignment": "MKFGEHLSKSLIRQYSYYYISYDDLKTELEDNLSKNNGQWTQELETDFLESLEIELDKVYTFCKVKHSEVFRRVKEVQEQVQHTVRLLDSNNPPTQLDFEILEEELSDIIADVHDLAKFSRLNYTGFQKIIKKHDKKTGFILKPVFQVRLDSKPFFKENYDELVVKISQLYDIARTSGRPIKGDSSAGGKQQNFVRQTTKYWVHPDNITELKLIILKHLPVLVFNTNKEFEREDSAITSIYFDNENLDLYYGRLRKDEGAEAHRLRWYGGMSTDTIFVERKTHREDWTGEKSVKARFALKERHVNDFLKGKYTVDQVFAKMRKEGKKPMNEIENLEALASEIQYVMLKKKLRPVVRSFYNRTAFQLPGDARVRISLDTELTMVREDNFDGVDRTHKNWRRTDIGVDWPFKQLDDKDICRFPYAVLEVKLQTQLGQEPPEWVRELVGSHLVEPVPKFSKFIHGVATLLNDKVDSIPFWLPQMDVDIRKPPLPTNIEITRPGRSDNEDNDFDEDDEDDAALVAAMTNAPGNSLDIEESVGYGATSAPTSNTNHVVESANAAYYQRKIRNAENPISKKYYEIVAFFDHYFNGDQISKIPKGTTFDTQIRAPP-----------------------------------------------------------------------------------------------------------------ERRYVCQFVWNQKFTLPLKEPTCLGCPSRYCWAVSPLLY*" + } + ], + "YJL011C": [ + { + "revision": "110203", + "new_alignment": "MKVLEERNAFLSDYEVLKFLTDLEKKHLWDQKSLAALKKSRSKGKQNRPYNHPELQGITRNVVNYLSINKNFINQEDEGEERESSGAKDAEKSGISKMSDESFAELMTKLNSFKLFKAEKLQIVNQLPANMVHLYSIVEECDARFDEKTIEEMLEIISGYA*", + "old_alignment": "MKVLEERNAFLSDYEVLKFLTDLEKKHLWDQKSLAALKKSRSKGKQNRPYNHPELQGITRNVVNYLSINKNFINQEDEGEERESSGAKDAEKSGISKMSDESFAELMTKLNSFKLFKAEKLQIVNQLPANMVHLYSIVEECDARFDEKTIEEMLEIISAYA*" + } + ], + "YJR003C": [ + { + "revision": "060512", + "new_alignment": "--------------------MLRSLHSAATLSNKRFYSLISHSNRKNIIKKLLRHPSFDPIRHHLPEDITTIDPYSLSQNVIESLNKLEVPKKDAAMVHNMMIENLSDLDYGVATIHSNNLRDLDLKPSLPAIKQIIRNNPGRVQSSWELFTQYKASMENVPDELMEVVLEKIIKFDKAEKVDGKKSLTYQDLVRCLYLINHFSSNYNLPSELVEPILIYIVDNGIPNVLGSVLKYKIPLSFFDKYVSEMTQYQICELYDFYSLDNIVADPLVLHKCLTVLGENEKIQQTEEEKEIISKLEEEIDIVKSQCHDNWSLEFPNWSVRKTATSFEELFLEIQKRNIDKKDFELAHKLLRLIGAFKGKVSLFFKLYDEYLLKFKNNEDDLMFEAFLTLCCQGYKSSNEKMLQYAEAFIKEDFDSKLESKIQSVLIVANAKANIDLSLKIYNSNISTAKREKDKYTDLAESDVLTESLILAFLSRDDADFARVIFDGALGEKLISGPTAAKKIKNLLAQYGEALETKTSKQVMQTKIEHYMESI*", + "old_alignment": "MKEFDESYFFKCLTANRHSIMLRSLHSAATLSNKRFYSLISHSNRKNIIKKLLRHPSFDPIRHHLPEDITTIDPYSLSQNVIESLNKLEVPKKDAAMVHNMMIENLSDLDYGVATIHSNNLRDLDLKPSLPAIKQIIRNNPGRVQSSWELFTQYKASMENVPDELMEVVLEKIIKFDKAEKVDGKKSLTYQDLVRCLYLINHFSSNYNLPSELVEPILIYIVDNGIPNVLGSVLKYKIPLSFFDKYVSEMTQYQICELYDFYSLDNIVADPLVLHKCLTVLGENEKIQQTEEEKEIISKLEEEIDIVKSQCHDNWSLEFPNWSVRKTATSFEELFLEIQKRNIDKKDFELAHKLLRLIGAFKGKVSLFFKLYDEYLLKFKNNEDDLMFEAFLTLCCQGYKSSNEKMLQYAEAFIKEDFDSKLESKIQSVLIVANAKANIDLSLKIYNSNISTAKREKDKYTDLAESDVLTESLILAFLSRDDADFARVIFDGALGEKLISGPTAAKKIKNLLAQYGEALETKTSKQVMQTKIEHYMESI*" + } + ], + "YJR012C": [ + { + "revision": "210421", + "new_alignment": "---------------------------------------------------------------------------MAAGGELSYEELLDHILNNKPIPNIVEVPNVTLDEGLASTPSLRPRPRPWEGQLQHQSHQGSLDKPNISLDIDQESLEGMTSLTRLSECYDIQSKLQINDSDNDNDDNNNDNNKGDGNDDDNNTVTANPTAR*", + "old_alignment": "MTVQSSPILRQSSFNFITFYLACQLLTFLCIYIVFFFVKFLPTIKVSFIIIGACKRAPHVSVYLLKIDCEHNESSMAAGGELSYEELLDHILNNKPIPNIVEVPNVTLDEGLASTPSLRPRPRPWEGQLQHQSHQGSLDKPNISLDIDQESLEGMTSLTRLSECYDIQSKLQINDSDNDNDDNNNDNNKGDGNDDDNNTVTANPTAR*" + } + ], + "YJR013W": [ + { + "revision": "040305", + "new_alignment": "MTGEEWGLTVLSFLVRVGFFLFGIYQDANFKVRYTDIDYFVFHDAAKYVYEGKSPYARDTYRYTPLLSWLLVPNHYFGWFHLGKVIFVIFDLVTGLIIMKLLNQAISRKRALILESIWLLNPMVITISTRGNAESVLCCLIMFTLFFLQKSRYTLAGILYGLSIHFKIYPIIYCIPIAIFIYYNKRNQGPRTQLTSLLNIGLSTLTTLLGCGWAMYKIYGYEFLDQAYLYHLYRTDHRHNFSVWNMLLYLDSANKENGESNLSRYAFVPQLLLVLVTGCLEWWNPTFDNLLRVLFVQTFAFVTYNKVCTSQYFVWYLIFLPFYLSRTHIGWKKGLLMATLWVGTQGIWLSQGYYLEFEGKNVFYPGLFIASVLFFVTNVWLLGQFITDIKIPTQPTVSNKKNN*", + "old_alignment": "--------------------------------------------------------------------------------------------------MKLLNQAISRKRALILESIWLLNPMVITISTRGNAESVLCCLIMFTLFFLQKSRYTLAGILYGLSIHFKIYPIIYCIPIAIFIYYNKRNQGPRTQLTSLLNIGLSTLTTLLGCGWAMYKIYGYEFLDQAYLYHLYRTDHRHNFSVWNMLLYLDSANKENGESNLSRYAFVPQLLLVLVTGCLEWWNPTFDNLLRVLFVQTFAFVTYNKVCTSQYFVWYLIFLPFYLSRTHIGWKKGLLMATLWVGTQGIWLSQGYYLEFEGKNVFYPGLFIASVLFFVTNVWLLGQFITDIKIPTQPTVSNKKNN*" + } + ], + "YJR092W": [ + { + "revision": "040709", + "new_alignment": "MHDAESTVDSLLKEIDNEMEQTKSNITQNGSEDTPHNWKLPLQEIGDDTMEMLVKHNTRSNATENSRGRSPSKMSTISNESLNLGLLRVNSELEESPAAVHQERIKNSVANGALGHANSPKVLNNLKNMAQDIDKLARDEEKPVKLSSSPLKFTLKSTQPLLSYPESPIHRSSIEIETNYDDEDEEEEDAYTCLTQSPQILHSPSRIPITNAVSINKLNLDFTLNPNESDKSLVSDTSVDSTGRELDTKTIPELPFCMSSTPEMTPVDEKCNLPSKLLNTSNNSHSDSRSPTASVEDLNISTNLPGADSSQNNPVTTDADALIENDVV---------------------------------------RDLQQNMEHIDDAFDEKKVLDEGCSNEPVTFLGENDTRSIVYSNKGTNANVQEFSQEDSLAHSEPKFKDLNATSDDVWNEDKETDANISTSTKSEESYIADYKVTRQEDWDTKKLHQESEHANEQPAIIPQKDSSEETFTELNNESEFQRNFKDGEEYRIVQHEESLYGQRTKSPEENIINGSEIGVDHGEAAEVNEPLAKTSAEEHDLSSSCEDQSVSEARNKDRIEEKEVETKDENIETEKDESEYHKVEENEEPEHVPLLPPLPRWEEIQFNEPFIDENDTSNDSIDLTRSMKPSDYISIWHIQEEEIKSNSPESIANSQFSQQSSITTASTVDSKKDNGSTSFKFKPRIVSRSRIYNPKSRVSSLNYYDNEDYILSNSEWNALDPMRRNTLISKRIQDNIRTQKGHAPLIRPSIMKLNGEDSGFQNHFLEVEQPQEHENIPLSTHLSEQDITTNVGLDEQKLPTNTQDEAEISIREIESAGDITFNRGDLLSLSFDEELGQDFANFLDALDHDSTSFNHGPDDSSSFQRDSSKKSFNSLWESSYELKPPPSIRKQPIAPDVLQKLLESDTKDDADLEKIREERITEPRTGLGIGMLKTPVKDVSIALAASIKGYEASFSDTDSRPEGMNNSDAITLNMFDDFEEDKMTPSTPVRSISPIKRHVSSPFKVVKAGNKQENNEINIKAEEEIEPMTQQETDGLKQDIPPLLAQTKDNVEAKEETITQLEEPQDVEQEFPDMGTLYLSIKAISTLALYGTKSHRATYAIVFDNGENVVQTPWESLPYDGNIRINKEFELPIDFKGKAETSSASSERDSYKKCVITLKCKYEKPRHELVEIVDKVPVGKSFFGKTKYKFEKKYVQKKPKQDEWDYLFAQDGSFARCEIEINEEFLKNVAFNTSHMHYNMINKWSRIADKIHGSKRLYELPRKAPHKVASLDVEACFLERTSAFEQFPKQFSLVNKIVSKYKLQQNIYKEGYLLQDGGDLKGKIENRFFKLHGSQLSGYHEISRKAKIDINLLKVTKVLRNEDIQADNGGQRNFTDWVLFNECFQLVFDDGERITFNAECSNEEKSDWYNKLQEVVELNVFHQPWVKKYCEKLAEEEKTRTTGHNLKQDFN*", + "old_alignment": "--------------------------------------------------------------------------------------------------------------------------------MAQDIDKLARDEEKPVKLSSSPLKFTLKSTQPLLSYPESPIHRSSIEIETNYDDEDEEEEDAYTCLTQSPQILHSPSRIPITNAVSINKLNLDFTLNPNESDKSLVSDTSVDSTGRELDTKTIPELPFCMSSTPEMTPVDEKCNLPSKLLNTSNNSHSDSRS--------------------------------------ANSLCGGFKHFNESSRVLIPAKIIQSLLMRMRLLKTMLCRDLQQNMEHIDEAFDEKKVLDEGCSNEPVTFLGENDTRSIVYSNKGTNANVQEFSQEDSLAHSEPKFKDLNATSDDVWNEDKETDANISTSTKSEESYIADYKVTRQEDWDTKKLHQESEHANEQPAIIPQKDSSEETFTELNNESEFQRNFKDGEEYRIVQHEESLYGQRTKSPEENIINGSEIGVDHGEAAEVNEPLAKTSAEEHDLSSSCEDQSVSEARNKDRIEEKEVETKDENIETEKDESEYHKVEENEEPEHVPLLPPLPRWEEIQFNEPFIDENDTSNDSIDLTRSMKPSDYISIWHIQEEEIKSNSPESIANSQFSQQSSITTASTVDSKKDNGSTSFKFKPRIVSRSRIYNPKSRVSSLNYYDNEDYILSNSEWNALDPMRRNTLISKRIQDNIRTQKGHAPLIRPSIMKLNGEDSGFQNHFLEVEQPQEHENIPLSTHLSEQDITTNVGLDEQKLPTNTQDEAEISIREIESAGDITFNRGDLLSLSFDEELGQDFANFLDALDHDSTSFNHGPDDSSSFQRDSSKKSFNSLWESSYELKPPPSIRKQPIAPDVLQKLLESDTKDDADLEKIREERITEPRTGLGIGMLKTPVKDVSIALAASIKGYEASFSDTDSRPEGMNNSDAITLNMFDDFEEDKMTPSTPVRSISPIKRHVSSPFKVVKAGNKQENNEINIKAEEEIEPMTQQETDGLKQDIPPLLAQTKDNVEAKEETITQLEEPQDVEQEFPDMGTLYLSIKAISTLALYGTKSHRATYAIVFDNGENVVQTPWESLPYDGNIRINKEFELPIDFKGKAETSSASSERDSYKKCVITLKCKYEKPRHELVEIVDKVPVGKSFFGKTKYKFEKKYVQKKPKQDEWDYLFAQDGSFARCEIEINEEFLKNVAFNTSHMHYNMINKWSRIADKIHGSKRLYELPRKAPHKVASLDVEACFLERTSAFEQFPKQFSLVNKIVSKYKLQQNIYKEGYLLQDGGDLKGKIENRFFKLHGSQLSGYHEISRKAKIDINLLKVTKVLRNEDIQADNGGQRNFTDWVLFNECFQLVFDDGERITFNAECSNEEKSDWYNKLQEVVELNVFHQPWVKKYCEKLAEEEKTRTTGHNLKQDFN*" + }, + { + "revision": "080606", + "new_alignment": "MHDAESTVDSLLKEIDNEMEQTKSNITQNGSEDTPHNWKLPLQEIGDDTMEMLVKHNTRSNATENSRGRSPSKMSTISNESLNLGLLRVNSELEESPAAVHQERIKNSVANGALGHANSPKVLNNLKNMAQDIDKLARDEEKPVKLSSSPLKFTLKSTQPLLSYPESPIHRSSIEIETNYDDEDEEEEDAYTCLTQSPQILHSPSRIPITNAVSINKLNLDFTLNPNESDKSLVSDTSVDSTGRELDTKTIPELPFCMSSTPEMTPVDEKCNLPSKLLNTSNNSHSDSRSPTASVEDLNISTNLPGADSSQNNPVTTDADALIENDVV---------------------------------------RDLQQNMEHIDDAFDEKKVLDEGCSNEPVTFLGENDTRSIVYSNKGTNANVQEFSQEDSLAHSEPKFKDLNATSDDVWNEDKETDANISTSTKSEESYIADYKVTRQEDWDTKKLHQESEHANEQPAIIPQKDSSEETFTELNNESEFQRNFKDGEEYRIVQHEESLYGQRTKSPEENIINGSEIGVDHGEAAEVNEPLAKTSAEEHDLSSSCEDQSVSEARNKDRIEEKEVETKDENIETEKDESEYHKVEENEEPEHVPLLPPLPRWEEIQFNEPFIDENDTSNDSIDLTRSMKPSDYISIWHIQEEEIKSNSPESIANSQFSQQSSITTASTVDSKKDNGSTSFKFKPRIVSRSRIYNPKSRVSSLNYYDNEDYILSNSEWNALDPMRRNTLISKRIQDNIRTQKGHAPLIRPSIMKLNGEDSGFQNHFLEVEQPQEHENIPLSTHLSEQDITTNVGLDEQKLPTNTQDEAEISIREIESAGDITFNRGDLLSLSFDEELGQDFANFLDALDHDSTSFNHGPDDSSSFQRDSSKKSFNSLWESSYELKPPPSIRKQPIAPDVLQKLLESDTKDDADLEKIREERITEPRTGLGIGMLKTPVKDVSIALAASIKGYEASFSDTDSRPEGMNNSDAITLNMFDDFEEDKMTPSTPVRSISPIKRHVSSPFKVVKAGNKQENNEINIKAEEEIEPMTQQETDGLKQDIPPLLAQTKDNVEAKEETITQLEEPQDVEQEFPDMGTLYLSIKAISTLALYGTKSHRATYAIVFDNGENVVQTPWESLPYDGNIRINKEFELPIDFKGKAETSSASSERDSYKKCVITLKCKYEKPRHELVEIVDKVPVGKSFFGKTKYKFEKKYVQKKPKQDEWDYLFAQDGSFARCEIEINEEFLKNVAFNTSHMHYNMINKWSRIADKIHGSKRLYELPRKAPHKVASLDVEACFLERTSAFEQFPKQFSLVNKIVSKYKLQQNIYKEGYLLQDGGDLKGKIENRFFKLHGSQLSGYHEISRKAKIDINLLKVTKVLRNEDIQADNGGQRNFTDWVLFNECFQLVFDDGERITFNAECSNEEKSDWYNKLQEVVELNVFHQPWVKKYCEKLAEEEKTRTTGHNLKQDFN*", + "old_alignment": "MHDAESTVDSLLKEIDNEMEQTKSNITQNGSEDTPHNWKLPLQEIGDDTMEMLVKHNTRSNATENSRGRSPSKMSTISNESLNLGLLRVNSELEESPAAVHQERIKNSVANGALGHANSPKVLNNLKNMAQDIDKLARDEEKPVKLSSSPLKFTLKSTQPLLSYPESPIHRSSIEIETNYDDEDEEEEDAYTCLTQSPQILHSPSRIPITNAVSINKLNLDFTLNPNESDKSLVSDTSVDSTGRELDTKTIPELPFCMSSTPEMTPVDEKCNLPSKLLNTSNNSHSDSRS--------------------------------------ANSLCGGFKHFNESSRVLIPAKIIQSLLMRMRLLKTMLCRDLQQNMEHIDEAFDEKKVLDEGCSNEPVTFLGENDTRSIVYSNKGTNANVQEFSQEDSLAHSEPKFKDLNATSDDVWNEDKETDANISTSTKSEESYIADYKVTRQEDWDTKKLHQESEHANEQPAIIPQKDSSEETFTELNNESEFQRNFKDGEEYRIVQHEESLYGQRTKSPEENIINGSEIGVDHGEAAEVNEPLAKTSAEEHDLSSSCEDQSVSEARNKDRIEEKEVETKDENIETEKDESEYHKVEENEEPEHVPLLPPLPRWEEIQFNEPFIDENDTSNDSIDLTRSMKPSDYISIWHIQEEEIKSNSPESIANSQFSQQSSITTASTVDSKKDNGSTSFKFKPRIVSRSRIYNPKSRVSSLNYYDNEDYILSNSEWNALDPMRRNTLISKRIQDNIRTQKGHAPLIRPSIMKLNGEDSGFQNHFLEVEQPQEHENIPLSTHLSEQDITTNVGLDEQKLPTNTQDEAEISIREIESAGDITFNRGDLLSLSFDEELGQDFANFLDALDHDSTSFNHGPDDSSSFQRDSSKKSFNSLWESSYELKPPPSIRKQPIAPDVLQKLLESDTKDDADLEKIREERITEPRTGLGIGMLKTPVKDVSIALAASIKGYEASFSDTDSRPEGMNNSDAITLNMFDDFEEDKMTPSTPVRSISPIKRHVSSPFKVVKAGNKQENNEINIKAEEEIEPMTQQETDGLKQDIPPLLAQTKDNVEAKEETITQLEEPQDVEQEFPDMGTLYLSIKAISTLALYGTKSHRATYAIVFDNGENVVQTPWESLPYDGNIRINKEFELPIDFKGKAETSSASSERDSYKKCVITLKCKYEKPRHELVEIVDKVPVGKSFFGKTKYKFEKKYVQKKPKQDEWDYLFAQDGSFARCEIEINEEFLKNVAFNTSHMHYNMINKWSRIADKIHGSKRLYELPRKAPHKVASLDVEACFLERTSAFEQFPKQFSLVNKIVSKYKLQQNIYKEGYLLQDGGDLKGKIENRFFKLHGSQLSGYHEISRKAKIDINLLKVTKVLRNEDIQADNGGQRNFTDWVLFNECFQLVFDDGERITFNAECSNEEKSDWYNKLQEVVELNVFHQPWVKKYCEKLAEEEKTRTTGHNLKQDFN*" + } + ], + "YJR098C": [ + { + "revision": "110203", + "new_alignment": "MMATPATDLISDNDKYNKQCLSDSSDSGSDVSFFSVNESEGELDTMEKVDTLIGGARVISNKVEKDSDSEQRGRKKETTGPNNYHNLEEKQASAISLDADDEDLDEIISYSHDGNYDSSHKTFSFSLPFGNTNFRSSSPLAIIKTVLPKTPDEFIKKNLRKNEIKQKLKKSTSISSLEEIELFKYERGIDNSRLRAVKESLEMDALKNSIKQITADPFDKTHDGYYRSRLESIWNELEGDVVIMGGYRGSVLRDATTHKRIWIPLKAGLNMTKVDLLIGPNDEDELKTQKEIVPDGMLTHIGPVDISKRLIKRLDANPNLNVQQFGYDWRLSLDISAKHLTTKLEEIYNKQKNKKGIYIIAHSMGGLVAHKVLQDCTHLIRGIIYVGSPSQCPNILGPIRFGDDVMWNKTIFTKE-----TNFFMRSSFYFLPLDGRCFVDKITLERYDFDFFDTDVWKTLGLSPLVNEKREESAHEKSKLLPRKTKSALSLKATLNATTKFVLNAPVVRNVAGNNKQVPRDVPFDEVFHTSYEDSCEYLARTLKRTKNYLDSLDYDPNKEYPPLAMVYGNKVPTVRGAKVNGIQDIKDGNYEDFYYGPGDGVVHHKWLLPEQRGFPVVCKIASSSGHVSLMTDLKSMAKAFISIVDSEKEGRRSRTRTSS*", + "old_alignment": "MMATPATDLISDNDKYNKQCLSDSSDSGSDVSFFSVNESEGELDTMEKVDTLIGGARVISNKVEKDSDSEQRGRKKETTGPNNYHNLEEKQASAISLDADDEDLDEIISYSHDGNYDSSHKTFSFSLPFGNTNFRSSSPLAIIKTVLPKTPDEFIKKNLRKNEIKQKLKKSTSISSLEEIELFKYERGIDNSRLRAVKESLEMDALKNSIKQITADPFDKTHDGYYRSRLESIWNELEGDVVIMGGYRGSVLRDATTHKRIWIPLKAGLNMTKVDLLIGPNDEDELKTQKEIVPDGMLTHIGPVDISKRLIKRLDANPNLNVQQFGYDWRLSLDISAKHLTTKLEEIYNKQKNKKGIYIIAHSMGGLVAHKVLQDCTHLIRGIIYVGSPSQCPNILGPIRFGDDVMWNK------LFSLRTNFFMRSSFYFLPLDGRCFVDKITLERYDFDFFDTDVWKTLGLSPLVNEKREESAHEKSKLLPRKTKSALSLKATLNATTKFVLNAPVVRNVAGNNKQVPRDVPFDEVFHTSYEDSCEYLARTLKRTKNYLDSLDYDPNKEYPPLAMVYGNKVPTVRGAKVNGIQDIKDGNYEDFYYGPGDGVVHHKWLLPEQRGFPVVCKIASSSGHVSLMTDLKSMAKAFISIVDSEKEGRRSRTRTSS*" + } + ], + "YJR103W": [ + { + "revision": "110203", + "new_alignment": "MKYVVVSGGVISGIGKGVLASSTGMLLKTLGLKVTSIKIDPYMNIDAGTMSPLEHGECFVLDDGGETDLDLGNYERYLGITLSRDHNITTGKIYSHVISRERRGDYLGKTVQIVPHLTNAIQDWIQRVSKIPVDDTGLEPDVCIIELGGTVGDIESAPFVEALRQFQFEVGRENFALIHVSLVPVIHGEQKTKPTQAAIKDLRSLGLIPDMIACRCSEELNRSTIDKIAMFCHVGPEQVVNVHDVNSTYHVPLLLLKQHMIDYLHSRLKLGEVPLTLEDKERGSQLLTNWENMTKNLDDSDDVVKIALVGKYTNLKDSYLSVTKSLEHASMKCRRQLEILWVEASNLEPETQEVDKNKFHDSWNKLSSADGILVPGGFGTRGIEGMILAAKWARESGVPFLGVCLGLQVAAIEFARNVIGRPNSSSTEFLDETLLAPEDQVVIYMPEIDKEHMGGTMRLGLRPTIFQPNSEWSNIRKLYGEVNEVHERHRHRYEINPKIVNDMESRGFIFVGKDETGQRCEIFELKGHPYYVGTQYHPEYTSKVLEPSRPFWGLVAAASGTLGEVIKDINLSEGNENE*-------", + "old_alignment": "MKYVVVSGGVISGIGKGVLASSTGMLLKTLGLKVTSIKIDPYMNIDAGTMSPLEHGECFVLDDGGETDLDLGNYERYLGITLSRDHNITTGKIYSHVISRERRGDYLGKTVQIVPHLTNAIQDWIQRVSKIPVDDTGLEPDVCIIELGGTVGDIESAPFVEALRQFQFEVGRENFALIHVSLVPVIHGEQKTKPTQAAIKDLRSLGLIPDMIACRCSEELNRSTIDKIAMFCHVGPEQVVNVHDVNSTYHVPLLLLKQHMIDYLHSRLKLGEVPLTLEDKERGSQLLTNWENMTKNLDDSDDVVKIALVGKYTNLKDSYLSVTKSLEHASMKCRRQLEILWVEASNLEPETQEVDKNKFHDSWNKLSSADGILVPGGFGTRGIEGMILAAKWARESGVPFLGVCLGLQVAAIEFARNVIGRPNSSSTEFLDETLLAPEDQVVIYMPEIDKEHMGGTMRLGLRPTIFQPNSEWSNIRKLYGEVNEVHERHRHRYEINPKIVNDMESRGFIFVGKDETGQRCEIFELKGHPYYVGTQYHPEYTSKVLEPSRPFWGLVAAA---------------------PAHLVK*" + } + ], + "YJR106W": [ + { + "revision": "110203", + "new_alignment": "MDWAINVAHPRLLYKDPKLSVTFIVPSLFHIIIAFVLLGICASDFLCPNVAHISDPNSLRSNGSLVSKTASHASHTGALMAVLLSWCNSSPDLFSNLMSWATSTRETRSTSVSLSIGEVLGACGIILCIVEGSIFIIMSRTHIEISQIQKLSIMRDLLFSLAAMCVMSYVSLMNQVTVLNCLLMAFLYAFYLVVKLTFKLNHSAETPDETAADTSLRENSVSPFLDDSLMASGLLPPIQPGFDISNSITHGIKPSLLSAMDFNSFLSMLENSSLEEDDSRNEMAELNTLRSMTPGQHWSASATVAGEATSAGRPFSEPTNAFTEYRDSERAINSSPAVFAPYRDNPDDEESQEQVLLETTTHGHFGAQEMRRFSKRSLGWIIKIFIPHLSNFSQKSISDAIFSIITVPFFIIFKLSCPQPPSDILSYDPTLNRYSLTTLPIILLFIQSITAPFLLCSILSVLLTYHLGYLVYLFPLILAMALILLLTAFITKVNLHNKFTLSLDSSNILQEKLQKRKLLERLNTSIQIIFLAIGIINIIIWISLLANSLIEMMEIYQKILGLSKAILGLTIFAWGNSVGDLISNISMCRLYKTQTHYQDRVRLATKFFMISCASCLGGVMLNSMGGIGFSGLVSMLFIGAFNDNEWWFLRKVKLQETSQLDNTLNYKFIVSCVFIILQIILLLLFFGGPNNIKRRLTKEMKLVGISMCGLWALATLINILLELFS*", + "old_alignment": "MDWAINVAHPRLLYKDPKLSVTFIVPSLFHIIIAFVLLGICASDFLCPNVAHISDPNSLRSNGSLVSKTASHASHTGALMAVLLSWCNSSPDLFSNLMSWATSTRETRSTSVSLSIGEVLGACGIILCIVEGSIFIIMSRTHIEISQIQKLSIMRDLLFSLAAMCVMSYVSLMNQVTVLNCLLMAFLYAFYLVVKLTFKLNHSAETPDETAADTSLREDSVSPFLDDSLMASGLLPPIQPGFDISNSITHGIKPSLLSAMDFNSFLSMLENSSLEEDDSRNEMAELNTLRSMTPGQHWSASATVAGEATSAGRPFSEPTNAFTEYRDSERAINSSPAVFAPYRDNPDDEESQEQVLLETTTHGHFGAQEMRRFSKRSLGWIIKIFIPHLSNFSQKSISDAIFSIITVPFFIIFKLSCPQPPSDILSYDPTLNRYSLTTLPIILLFIQSITAPFLLCSILSVLLTYHLGYLVYLFPLILAMALILLLTAFITKVNLHNKFTLSLDSSNILQEKLQKRKLLERLNTSIQIIFLAIGIINIIIWISLLANSLIEMMEIYQKILGLSKAILGLTIFAWGNSVGDLISNISMCRLYKTQTHYQDRVRLATKFFMISCASCLGGVMLNSMGGIGFSGLVSMLFIGAFNDNEWWFLRKVKLQETSQLDNTLNYKFIVSCVFIILQIILLLLFFGGPNNIKRRLTKEMKLVGISMCGLWALATLINILLELFS*" + } + ], + "YJR107W": [ + { + "revision": "110203", + "new_alignment": "MPVVHCSSNLPITPYIYERLVYFIKASSISSCISDNLLLVNKTFNDGGCPPHINFCNDEIINPTAGQTVVELVLNAKKGELGSGYLAVDHGKKVVILAFRGSTTRQDWFSDFEIYPVNYSPLCVKEYRKLIEEGKIRECEGCKMHRGFLRFTETLGMDVFKKMESILESFPEYRIVVTGHSLGAALASLAGIELKIRGFDPLVLTFATPKIFNSEMKQWVDELFETDAIEKESILKDEIQFRKGYFRVVHTGDYIPMVPPFYHPAGLEMFINKVGLPQNAEDIEYRGKNNRLTLKDGFREGMSGLVEDWLHVYEHRAYFIDVVGCSGL*", + "old_alignment": "MPVVHCSSNLPITLYIYERLVYFIKASSISSCISDNLLLVNKTFNDGGCPPHINFCNDEIINPTAPQTVVELVLNAKKGELGSGYLAVDHGKKVVILAFRGSTTRQDWFSDFEIYPVNYSPLCVKEYRKLIEEGKIRECEGCKMHRGFLRFTETLGMDVFKKMESILESFPEYRIVVTGHSLGAALASLAGIELKIRGFDPLVLTFATPKIFNSEMKQWVDELFETDAIEKESILKDEIQFRKGYFRVVHTGDYIPMVPPFYHPAGLEMFINKVGLPQNAEDIEYRGKNNRLTLKDGFREGMSGLVEDWLHVYEHRAYFIDVVGCSGL*" + } + ], + "YJR129C": [ + { + "revision": "110203", + "new_alignment": "MNEDLFYDRLHQRCPGKYLLEELETSKSNDVLHASRFVCEMELVQKTNAYYCKTIVKMLLDHEWIFAKAFTIVNDGEDEIEIYDYLYEKYIKLLSTGKPDPMMKDVVRYRFDEDVKIKIEETPNLISAASTTGFRTWEAALYMGDFLIHKPLQELAPVQGQDDGKKKLNVLEVGAGTGIVSLVILQKYHEFVNKMYVTDGDSNLVETQLKRNFELNNEVRENEPDIKLQRLWWGSDRVPEDIDLVVGADVTYDPTILPDLCECLAECLALDRCKLCLLSATIRSESTVQLFSQECNKLGLKCTIVTSTEYDANNEIRAMKALQFKPLIAPIRIYKITKQ*", + "old_alignment": "MNEDLFYDRLHQRCPGKYLLEELETSKSNDVLHASRFVCEMELVQKTNAYYCKTIVKMLLDHEWIFAKAFTIVNDGEDEIEIYDYLYEKYIKLLSTGKPDPMMKDVVRYRFDEDVKITIEETPNLISAASTTGFRTWEAALYMGDFLIHKPLQELAPVQGQDDGKKKLNVLEVGAGTGIVSLVILQKYHEFVNKMYVTDGDSNLVETQLKRNFELNNEVRENEPDIKLQRLWWGSDRVPEDIDLVVGADVTYDPTILPDLCECLAECLALDRCKLCLLSATIRSESTVQLFSQECNKLGLKCTIVTSTEYDANNEIRAMKALQFKPLIAPIRIYKITKQ*" + } + ], + "YJR132W": [ + { + "revision": "110203", + "new_alignment": "MDITELLQCFACTLDHNAAVRTNAETHLKNASKVPGFLGACLDIIAADEVPENIKLSASLYFKNKITYGWSAGARQGSNELLDSHVDPDEKPVVKDMLIKTMVSVSKTSPRCIRVLKSALTVIISEDYPSKKWGNLLPNSLELLANEDITVTYVGLLCLAEIFRTYRWKNNDERQDLEELILNYFPALLNYGANVLFQDGKYMNNEQIGELVKLIIKIYKFVSYHDLPFTLQRSESFTPWACFFVSIIQQPLPQEVLAISDIEVRSKNPWVKCKKWALANLYRLFQRYASTSLTRKFQYDEFKQMYCEEFLTQFLQVVFDQIEKWGTGQLWLSDECLYYILNFVEQCVVQKTTWKLVGPHYNVILQHVIFPLLKPTAETLEAFDNDPQEYINRNMDFWDVGYSPDLAALALLTTCVTKRGKTTLQPTLEFMVSTLQSAVGDYNNIMLDNALQIESCLRIFSSIIDRLITKDSPFASEMEKFILTYVLPFFKSQYGFLQSRVCDICSKLGSMDFKDPVITSTIYEGVMNCLNNSSNSLPVELTAALALQTFISDDQFNMKLSEHVVPTMQKLLSLSNDFESDVISGVMQDFVEQFAEQLQPFGVELMNTLVQQFLKLAIDLHETSNLDPDSFTNVDSIPDESDKQMAALGILSTTISILLSFENSPEILKNLEQSFYPAAEFILKNDIEDFYRECCEFVENSTFLLRDITPISWKILELIGECNRKPDSMVSYYLSDFMLALNNILIYGRNELKKNEFYTKIIFEIYQKAVTAEDNSLDDLRVVFDLSQELVLALDDSLPQQYRERLLADVVGSILTQKNELKTNVVFSVTAFNVVISNMITEPLITLQYLKQQGCLEIFFQTWITDYIPNYKRCYDIKLSVLALLKIILKLESNDYSVLNLENLVPQLGSIVTQLASRLPTALRQLANQRKEFSSSGFEEDTKWDENFLDVGDDDENDDEGDLTEKYLELIKNRADSLDFVDGYDAKETFDDLEEDPLTGSILDTVDVYKVFKESIANLQHVDSNRYQGILRHLTPADQELFMGIMNA*", + "old_alignment": "MDITELLQCFACTLDHNAAVRTNAETHLKNASKVPGFLGACLDIIAADEVPENIKLSASLYFKNKITYGWSAGARQGSNELLDSHVDPDEKPVVKDMLIKTMVSVSKTSPRCIRVLKSALTVIISEDYPSKKWGNLLPNSLELLANEDITVTYVGLLCLAEIFRTYRWKNNDERQDLEELILNYFPALLNYGANVLFQDGKYMNNEQIGELVKLIIKIYKFVSYHDLPFTLQRSESFTPWACFFVSIIQQPLPQEVLSISDIEVRSKNPWVKCKKWALANLYRLFQRYASTSLTRKFQYDEFKQMYCEEFLTQFLQVVFDQIEKWGTGQLWLSDECLYYILNFVEQCVVQKTTWKLVGPHYNVILQHVIFPLLKPTAETLEAFDNDPQEYINRNMDFWDVGYSPDLAALALLTTCVTKRGKTTLQPTLEFMVSTLQSAVGDYNNIMLDNALQIESCLRIFSSIIDRLITKDSPFASEMEKFILTYVLPFFKSQYGFLQSRVCDICSKLGSMDFKDPVITSTIYEGVMNCLNNSSNSLPVELTAALALQTFISDDQFNMKLSEHVVPTMQKLLSLSNDFESDVISGVMQDFVEQFAEQLQPFGVELMNTLVQQFLKLAIDLHETSNLDPDSFTNVDSIPDESDKQMAALGILSTTISILLSFENSPEILKNLEQSFYPAAEFILKNDIEDFYRECCEFVENSTFLLRDITPISWKILELIGECNRKPDSMVSYYLSDFMLALNNILIYGRNELKKNEFYTKIIFEIYQKAVTAEDNSLDDLRVVFDLSQELVLALDDSLPQQYRERLLADVVGSILTQKNELKTNVVFSVTAFNVVISNMITEPLITLQYLKQQGCLEIFFQTWITDYIPNYKRCYDIKLSVLALLKIILKLESNDYSVLNLENLVPQLGSIVTQLASRLPTALRQLANQRKEFSSSGFEEDTKWDENFLDVGDDDENDDEGDLTEKYLELIKNRADSLDFVDGYDAKETFDDLEEDPLTGSILDTVDVYKVFKESIANLQHVDSNRYQGILRHLTPADQELFMGIMNA*" + } + ], + "YJR149W": [ + { + "revision": "110203", + "new_alignment": "MYFLNQLIFQDVSVMSVDKREDMSRSFQKCLNLRYPIIQAPMAGVTTIEMAAKACIAGAIASLPLSHLDFRKVNDIEKLKLMVSQFRDQVADESLEGNLNLNFFCHDIVDKPTDLQTANWAKLYRKSMNVPIDMNEIKFDNGNVSFKAFEKENALQDFFQYLSDGFRPKIISFHFGHPSKSTIEYLQKIGILIFVTATSVREVRLLARLGINGIVCQGYEAGGHRGNFLVNDPKDDENLSTVQLVKRTVDELAEMKNKGLIHATPFVIAAGGIMDSKDISYMLSQQADAVQVGTAFLGCSESNASKNFSSPFTRETTTKMVNIISGKPARTISTPFIEKVIANFQGEELPPYGYMYSAFKQVRKKYPELANFILAGQGFQNVQSGITTDKKIETMGARLKIDGK*", + "old_alignment": "MYFLNQLIFQDVSVMSVDKREDMSRSFQKCLNLRYPIIQAPMAGVTTIEMAAKACIAGAIASLPLSHLDFRKVNDIEKLKLMVSQFRDQVADESLEGNLNLNFFCHDIVDKPTDLQTANWAKLYRKSMNVPIDMNEIKFDNGNVSFKAFEKENALQDFFQYLSDGFRPKIISFHFGHPSKSTIEYLQKIGILIFVTATSVREVRLLARLGINGIVCQGYEAGGHRGNFLVNDPKDDENLSTVQLVKRTVDELAEMKNKGLIHATPFVIAAGGIMDSKDISYMLSQQADAVQVGTAFLGCSESNASKNFSSPFTRETTTKMVNIISGKPARTISTPFIEKVIANFQGEELPPYGYMYSAFKQVRKKYPELANFILAGQGFQNVQSGITTDKKIETMGARLKIVGK*" + } + ], + "YJR150C": [ + { + "revision": "110203", + "new_alignment": "MSRISILAVAAALVASATAASVTTTLSPYDERVNLIELAVYVSDIGAHLSEYYAFQALHKTETYPPEIAKAVFAGGDFTTMLTGISGDEVTRMITGVPWYSTRLMGAISEALANEGIATAVPASTTEASSTSTSEASSAATESSSSSESSAETSSNAASTQATVSSESSSAASTIASSAESSVASSVASSVASSASFANTTAPVSSTSSISVTPVVQNGTDSTVTKTQASTVETTITSCSNNVCSTVTKPVSSKAQSTATSVTSSASRVIDVTTNGANKFNNGVFGAAAIAGAAALLL*", + "old_alignment": "MSRISILAVAAALVASATAASVTTTLSPYDERVNLIELAVYVSDIGAHLSEYYAFQALHKTETYPPEIAKAVFAGGDFTTMLTGISGDEVTRMITGVPWYSTRLMGAISEALANGGIATAVPASTTEASSTSTSEASSAATESSSSSESSAETSSNAASTQATVSSESSSAASTIASSAESSVASSVASSVASSASFANTTAPVSSTSSISVTPVVQNGTDSTVTKTQASTVETTITSCSNNVCSTVTKPVSSKAQSTATSVTSSASRVIDVTTNGANKFNNGVFGAAAIAGAAALLL*" + } + ], + "YKL221W": [ + { + "revision": "110203", + "new_alignment": "MSEERHEDHHRDVENKLNLNGKDDINGNTSISIEVPDGGYGWFILLAFILYNFSTWGANSGYAIYLAHYLENNTFAGGSKLDYASIGGLAFSCGLFFAPVITWLYHIFSIQFIIGLGILFQGAALLLAAFSVTLWEIYLTQGVLIGFGLAFIFIPSVTLIPLWFRNKRSLASGIGTAGSGLGGIVFNLGMQSILQKRGVKWALIAQCIICTSLSTIALMLTRTTHQGLRQHKRSYKFELLDYDVLSNFAVWLLFGFVSFAMLGYVVLLYSLSDFTVSLGYTSKQGSYVSCMVSVGSLLGRPIVGHIADKYGSLTVGMILHLVMAILCWAMWIPCKNLATAIAFGLLVGSIMGTIWPTIASIVTRIVGLQKLPGTFGSTWIFMAAFALVAPIIGLELRSTDTNGNDYYRTAIFVGFAYFGVSLCQWLLRGFIIARDEIAVREAYSADQNELHLNVKLSHMSKCLFRYKQLPRRV*", + "old_alignment": "MSEERHEDHHRDVENKLNLNGKDDINGNTSISIEVPDGGYGWFILLAFILYNFSTWGANSGYAIYLAHYLENNTFAGGSKLDYASIGGLAFSCGLFFAPVITWLYHIFSIQFIIGLGILFQGAALLLAAFSVTLWEIYLTQGVLIGFGLAFIFIPSVTLIPLWFRNKRSLASGIGTAGSGLGGIVFNLGMQSILQKRGVKWALIAQCIICTSLSTIALMLTRTTHQGLRQHKRSYKFELLDYDVLSNFAVWLLFGFVSFAMLGYVVLLYSLSDFTVSLGYTSKQGSYVSCMVSVGSLLGRPIVGHIADKYGSLTVGMILHLVMAILCWAMWIPCKNLATAIRFGLLVGSIMGTIWPTIASIVTRIVGLQKLPGTFGSTWIFMAAFALVAPIIGLELRSTDTNGNDYYRTAIFVGFAYFGVSLCQWLLRGFIIARDEIAVREAYSADQNELHLNVKLSHMSKCLFRYKQLPRRV*" + } + ], + "YKL207W": [ + { + "revision": "040305", + "new_alignment": "-----------------------------MLLDDQLKYWVLLPISIVMVLTGVLKQYIMTLITGSSANEAQPRVKLTEWQYLQWAQLLIGNGGNLSSDAFAAKKEFLVKDLTEERHLAKAKQQDGSQAGEVPNPFNDPSMSNAMMNMAKGNMASFIPQTIIMWWVNHFFAGFILMQLPFPLTAKFKEMLQTGIICQDLDVRWVSSISWYFISVLGLNPVYNLIGLNDQDMGIQAGIGGPQGPQGPPQSQVDKAMHAMANDLTIIQHETCLDNVEQRVLKQYM*---------------------", + "old_alignment": "MTINQHLQQLLFNRIDKTTSSIQQARAPQMLLDDQLKYWVLLPISIVMVLTGVLKQYIMTLITGSSANEAQPRVKLTEWQYLQWAQLLIGNGGNLSSDAFAAKKEFLVKDLTEERHLAKAKQQDGSQAGEVPNPFNDPSMSNAMMNMAKGNMASFIPQTIIMWWVNHFFAGFILMQLPFPLTAKFKEMLQTGIICQDLDVRWVSSISWYFISVLGLNPVYNLIGLNDQDMGIQAGIGGPQ-------------------------------------------APKALHNHRLTKQCMRWLTI*" + }, + { + "revision": "060512", + "new_alignment": "-----------------------------MLLDDQLKYWVLLPISIVMVLTGVLKQYIMTLITGSSANEAQPRVKLTEWQYLQWAQLLIGNGGNLSSDAFAAKKEFLVKDLTEERHLAKAKQQDGSQAGEVPNPFNDPSMSNAMMNMAKGNMASFIPQTIIMWWVNHFFAGFILMQLPFPLTAKFKEMLQTGIICQDLDVRWVSSISWYFISVLGLNPVYNLIGLNDQDMGIQAGIGGPQGPQGPPQSQVDKAMHAMANDLTIIQHETCLDNVEQRVLKQYM*", + "old_alignment": "MTINQHLQQLLFNRIDKTTSSIQQARAPQMLLDDQLKYWVLLPISIVMVLTGVLKQYIMTLITGSSANEAQPRVKLTEWQYLQWAQLLIGNGGNLSSDAFAAKKEFLVKDLTEERHLAKAKQQDGSQAGEVPNPFNDPSMSNAMMNMAKGNMASFIPQTIIMWWVNHFFAGFILMQLPFPLTAKFKEMLQTGIICQDLDVRWVSSISWYFISVLGLNPVYNLIGLNDQDMGIQAGIGGPQGPQGPPQSQVDKAMHAMANDLTIIQHETCLDNVEQRVLKQYM*" + } + ], + "YKL203C": [ + { + "revision": "040305", + "new_alignment": "MNKYINKYTTPPNLLSLRQRAEGKHRTRKKLTHKSHSHDDEMSTTSNTDSNHNGPNDSGRVITGSAGHIGKISFVDSELDTTFSTLNLIFDKLKSDVPQERASGANELSTTLTSLAREVSAEQFQRFSNSLNNKIFELIHGFTSSEKIGGILAVDTLISFYLSTEELPNQTSRLANYLRVLIPSSDIEVMRLAANTLGRLTVPGGTLTSDFVEFEVRTCIDWLTLTADNNSSSSKLEYRRHAALLIIKALADNSPYLLYPYVNSILDNIWVPLRDAKLIIRLDAAVALGKCLTIIQDRDPALGKQWFQRLFQGCTHGLSLNTNDSVHATLLVFRELLSLKAPYLRDKYDDIYKSTMKYKEYKFDVIRREVYAILPLLAAFDPAIFTKKYLDRIMVHYLRYLKNIDMNAANNSDKPFILVSIGDIAFEVGSSISPYMTLILDNIREGLRTKFKVRKQFEKDLFYCIGKLACALGPAFAKHLNKDLLNLMLNCPMSDHMQETLMILNEKIPSLESTVNSRILNLLSISLSGEKFIQSNQYDFNNQFSIEKARKSRNQSFMKKTGESNDDITDAQILIQCFKMLQLIHHQYSLTEFVRLITISYIEHEDSSVRKLAALTSCDLFIKDDICKQTSVHALHSVSEVLSKLLMIAITDPVAEIRLEILQHLGSNFDPQLAQPDNLRLLFMALNDEIFGIQLEAIKIIGRLSSVNPAYVVPSLRKTLLELLTQLKFSNMPKKKEESATLLCTLINSSDEVAKPYIDPILDVILPKCQDASSAVASTALKVLGELSVVGGKEMTRYLKELMPLIINTFQDQSNSFKRDAALTTLGQLAASSGYVVGPLLDYPELLGILINILKTENNPHIRRGTVRLIGILGALDPYKHREIEVTSNSKSSVEQNAPSIDIALLMQGVSPSNDEYYPTVVIHNLMKILNDPSLSIHHTAAIQAIMHIFQNLGLRCVSFLDQIIPGIILVMRSCPPSQLDFYFQQLGSLISIVKQHIRPHVEKIYGVIREFFPIIKLQITIISVIESISKALEGEFKRFVPETLTFFLDILENDQSNKRIVPIRILKSLVTFGPNLEDYSHLIMPIVVRMTEYSAGSLKKISIITLGRLAKNINLSEMSSRIVQALVRILNNGDRELTKATMNTLSLLLLQLGTDFVVFVPVINKALLRNRIQHSVYDQLVNKLLNNECLPTNIIFDKENEVPERKNYEDEMQVTKLPVNQNILKNAWYCSQQKTKEDWQEWIRRLSIQLLKESPSACLRSCSSLVSVYYPLARELFNASFSSCWVELQTSYQEDLIQALCKALSSSENPPEIYQMLLNLVEFMEHDDKPLPIPIHTLGKYAQKCHAFAKALHYKEVEFLEEPKNSTIEALISINNQLHQTDSAIGILKHAQQHNELQLKETWYEKLQRWEDALAAYNEKEAAGEDSVEVMMGKLRSLYALGEWEELSKLASEKWGTAKPEVKKAMAPLAAGAAWGLEQWDEIAQYTSVMKSQSPDKEFYDAILCLHRNNFKKAEVHIFNARDLLVTELSALVNESYNRAYNVVVRAQIIAELEEIIKYKKLPQNSDKRLTMRETWNTRLLGCQKNIDVWQRILRVRSLVIKPKEDAQVRIKFANLCRKSGRMALAKKVLNTLLEETDDPDHPNTAKASPPVVYAQLKYLWATGLQDEALKQLINFTSRMAHDLGLDPNNMIAQSVPQQSKRVPRHVEDYTKLLARCFLKQGEWRVCLQPKWRLSNPDSILGSYLLATHFDNTWYKAWHNWALANFEVISMLTSVSKKKQEGSDASSVTDINEFDNGMIGVNTFDAKEVHYSSNLIHRHVIPAIKGFFHSISLSESSSLQDALRLLTLWFTFGGIPEATQAMHEGFNLIQIGTWLEVLPQLISRIHQPNQIVSRSLLSLLSDLGKAHPQALVYPLMVAIKSESLSRQKAALSIIEKMRIHSPVLVDQAELVSHELIRMAVLWHEQWYEGLDDASRQFFGEHNTEKMFAALEPLYEMLKRGPETLREISFQNSFGRDLNDAYEWLMNYKKSKDVSNLNQAWDIYYNVFRKIGKQLPQLQTLELQHVSPKLLSAHDLELAVPGTRASGGKPIVKISKFEPVFSVISSKQRPRKFCIKGSDGKDYKYVLKGHEDIRQDSLVMQLFGLVNTLLQNDAECFRRHLDIQQYPAIPLSPKSGLLGWVPNSDTFHVLIREHREAKKIPLNIEHWVMLQMAPDYDNLTLLQKVEVFTYALNNTEGQDLYKVLWLKSRSSETWLERRTTYTRSLAVMSMTGYILGLGDRHPSNLMLDRITGKVIHIDFGDCFEAAILREKFPEKVPFRLTRMLTYAMEVSGIEGSFRITCENVMKVLRDNKGSLMAILEAFAFDPLINWGFDLPTKKIEEETGIQLPVMNANELLSNGAITEEEVQRVENEHKNAIRNARAMLVLKRITDKLTGNDIRRFNDLDVPEQVDKLIQQATSVENLCQHYIGWCPFW*", + "old_alignment": "MNKYINKYTTPPNLLSLRQRAEGKHRTRKKLTHKSHSHDDEMSTTSNTDSNHNGPNDSGRVITGSAGHIGKISFVDSELDTTFSTLNLIFDKLKSDVPQERASGANELSTTLTSLAREVSAEQFQRFSNSLNNKIFELIHGFTSSEKIGGILAVDTLISFYLSTEELPNQTSRLANYLRVLIPSSDIEVMRLAANTLGRLTVPGGTLTSDFVEFEVRTCIDWLTLTADNNSSSSKLEYRRHAALLIIKALADNSPYLLYPYVNSILDNIWVPLRDAKLIIRLDAAVALGKCLTIIQDRDPALGKQWFQRLFQGCTHGLSLNTNDSVHATLLVFRELLSLKAPYLRDKYDDIYKSTMKYKEYKFDVIRREVYAILPLLAAFDPAIFTKKYLDRIMVHYLRYLKNIDMNAANNSDKPFILVSIGDIAFEVGSSISPYMTLILDNIREGLRTKFKVRKQFEKDLFYCIGKLACALGPAFAKHLNKDLLNLMLNCPMSDHMQETLMILNEKIPSLESTVNSRILNLLSISLSGEKFIQSNQYDFNNQFSIEKARKSRNQSFMKKTGESNDDITDAQILIQCFKMLQLIHHQYSLTEFVRLITISYIEHEDSSVRKLAALTSCDLFIKDDICKQTSVHALHSVSEVLSKLLMIAITDPVAEIRLEILQHLGSNFDPQLAQPDNLRLLFMALNDEIFGIQLEAIKIIGRLSSVNPAYVVPSLRKTLLELLTQLKFSNMPKKKEESATLLCTLINSSDEVAKPYIDPILDVILPKCQDASSAVASTALKVLGELSVVGGKEMTRYLKELMPLIINTFQDQSNSFKRDAALTTLGQLAASSGYVVGPLLDYPELLGILINILKTENNPHIRRGTVRLIGILGALDPYKHREIEVTSNSKSSVEQNAPSIDIALLMQGVSPSNDEYYPTVVIHNLMKILNDPSLSIHHTAAIQAIMHIFQNLGLRCVSFLDQIIPGIILVMRSCPPSQLDFYFQQLGSLISIVKQHIRPHVEKIYGVIREFFPIIKLQITIISVIESISKALEGEFKRFVPETLTFFLDILENDQSNKRIVPIRILKSLVTFGPNLEDYSHLIMPIVVRMTEYSAGSLKKISIITLGRLAKNINLSEMSSRIVQALVRILNNGDRELTKATMNTLSLLLLQLGTDFVVFVPVINKALLRNRIQHSVYDQLVNKLLNNECLPTNIIFDKENEVPERKNYEDEMQVTKLPVNQNILKNAWYCSQQKTKEDWQEWIRRLSIQLLKESPSACLRSCSSLVSVYYPLARELFNASFSSCWVELQTSYQEDLIQALCKALSSSENPPEIYQMLLNLVEFMEHDDKPLPIPIHTLGKYAQKCHAFAKALHYKEVEFLEEPKNSTIEALISINNQLHQTDSAIGILKHAQQHNELQLKETWYEKLQRWEDALAAYNEKEAAGEDSVEVMMGKLRSLYALGEWEELSKLASEKWGTAKPEVKKAMAPLAA-AAWGLEQWDEIAQYTSVMKSQSPDKEFYDAILCLHRNNFKKAEVHIFNARDLLVTELSALVNESYNRAYNVVVRAQIIAELEEIIKYKKLPQNSDKRLTMRETWNTRLLGCQKNIDVWQRILRVRSLVIKPKEDAQVRIKFANLCRKSGRMALAKKVLNTLLEETDDPDHPNTAKASPPVVYAQLKYLWATGLQDEALKQLINFTSRMAHDLGLDPNNMIAQSVPQQSKRVPRHVEDYTKLLARCFLKQGEWRVCLQPKWRLSNPDSILGSYLLATHFDNTWYKAWHNWALANFEVISMLTSVSKKKQEGSDASSVTDINEFDNGMIGVNTFDAKEVHYSSNLIHRHVIPAIKGFFHSISLSESSSLQDALRLLTLWFTFGGIPEATQAMHEGFNLIQIGTWLEVLPQLISRIHQPNQIVSRSLLSLLSDLGKAHPQALVYPLMVAIKSESLSRQKAALSIIEKMRIHSPVLVDQAELVSHELIRMAVLWHEQWYEGLDDASRQFFGEHNTEKMFAALEPLYEMLKRGPETLREISFQNSFGRDLNDAYEWLMNYKKSKDVSNLNQAWDIYYNVFRKIGKQLPQLQTLELQHVSPKLLSAHDLELAVPGTRASGGKPIVKISKFEPVFSVISSKQRPRKFCIKGSDGKDYKYVLKGHEDIRQDSLVMQLFGLVNTLLQNDAECFRRHLDIQQYPAIPLSPKSGLLGWVPNSDTFHVLIREHREAKKIPLNIEHWVMLQMAPDYDNLTLLQKVEVFTYALNNTEGQDLYKVLWLKSRSSETWLERRTTYTRSLAVMSMTGYILGLGDRHPSNLMLDRITGKVIHIDFGDCFEAAILREKFPEKVPFRLTRMLTYAMEVSGIEGSFRITCENVMKVLRDNKGSLMAILEAFAFDPLINWGFDLPTKKIEEETGIQLPVMNANELLSNGAITEEEVQRVENEHKNAIRNARAMLVLKRITDKLTGNDIRRFNDLDVPEQVDKLIQQATSVENLCQHYIGWCPFW*" + } + ], + "YKL198C": [ + { + "revision": "110203", + "new_alignment": "MTVSHNHSTKISQQPISSVSAFKFFGKKLLSSSHGNKLKKKASLPPDFHSTSTNDSESSSPKLPNSLKTSRRANSFAHTTNSKRSLSSASTKILPPAGSSTSISRGNRHSSTSRNLSNSKFSSERLVYNPYGVSTPSTSLSSVSTSMKKDPDLGFYLHDGDSKIRMLPIPIVDPNEYLPDEMKEASIQLSDNFVFDDENKTIGWGGSCEVRKIRSKYRKKDVFALKKLNMIYNETPEKFYKRCS----KEFIIAKQLSHHVHITNTFLLVKVPTTVYTTRGWGFVMELGLRDLFAMIQKSGWRSVALAEKFCIFKQVACGVKFCHDQGIAHRDLKPENVLLSPDGVCKLTDFGISDWYHTDPHDLSSPVKKCAGMIGSPPYAPPEVMFYDSKKHYDTELQQPYDPRALDCYGLGIILMTLVNNVIPFLESCSFDTGFRDYCDAYENFIRLHDRAFRNRGNYRPGPGMEYHLARNFKNGHASRVAWRLADPEAATRYTIDDLFEDPWFQGIETCVDANDKYVCKKPIIKTTTYENPRGFHIATDVAATTPTSNPFLKNRVPIRSMVDIAAHPSPTATVLASSPPPPPPATHVPAEALFTLRETPPPQLATLTLSEEPPATPAPSAPSAPSARVRGHSPHRVVHHHLNIVNSLVHSSSAASSQVPAST*--------------", + "old_alignment": "MTVSHNHSTKISQQPISSVSAFKFFGKKLLSSSHGNKLKKKASLPPDFHSTSTNDSESSSPKLPNSLKTSRRANSFAHTTNSKRSLSSASTKILPPAGSSTSISRGNRHSSTSRNLSNSKFSSERLVYNPYGVSTPSTSLSSVSTSMKKDPDLGFYLHDGDSKIRMLPIPIVDPNEYLPDEMKEASIQLSDNFVFDDENKTIGWGGSCEVRKIRSKYRKKDVFALKKLNMIYNETPEKFY----NAAPKEFIIAKQLSHHVHITNTFLLVKVPTTVYTTRGWGFVMELGLRDLFAMIQKSGWRHVALAEKFCIFKQVACGVKFCHDQGIAHRDLKPENVLLSPDGVCKLTDFGISDWYHTDPHDLSSPVKKCAGMIGSPPYAPPEVMFYDSKKHYDTELQQPYDPRALDCYGLGIILMTLVNNVIPFLESCSFDTGFRDYCDAYENFIRLHDRAFRNRGNYRPGPGMEYHLARNFKNGHASRVAWRLADPEAATRYTIDDLFEDPWFQGIETCVDANDKYVCKKPIIKTTTYENPRGFHIATDVAATTPTSNPFLKNRVPIRSMVDIAAHPSPTATVLASSPPPPPPATHVPAEALFTLRETPPPQLATLTLSEEPPATPAPSAPSAPSARVRGHSPHRV---------------------------GASPSEHCQQLGP*" + } + ], + "YKL168C": [ + { + "revision": "060512", + "new_alignment": "----------MVMQEEKKRQQPVTRRVRSFSESFKNLFRPPRSRDSSPINVTRIPYRSSSTSPKRSSEPPRRSTVSAQILDPKNSPIRQRSYTLKCCTPGLSHPFRQTGSGASNSPTRHRSISGEEQEIVNSLPEYKRSASHTFHGIRRPRSRSSSVSSCDSSNGTTSSSDSQWAMDSLLDDSDNDLTPYRGSNKDILKSKDRAPYNYIDDYNKKALRRATSYPNPLPSKQFYNERLYTRRSHPDEESLESLPRFAGADVQCIIEQNGFKVYEDGSHEHNIKLSGVIAKLEKGNSLPAHRQGSLSRPRLGITLSGLFKHHKNECDIENALSLLPNVEKSQTNHEKRTGQSPNDSNRSSPTQGREDYLKIVNPDASLGSDELKLINSLSSRIHKSLQNYLQEKNLKPAECIGEQAPTFQDNYGHPVGLVGAGAYGEVKLCARLRNEKDSPPFETYHDSKYIYYAVKELKPKPDSDLEKFCTKITSEFIIGHSLSHYHKNGKKPAPNILNVFDILEDSSSFIEVMEFCPAGDLYGMLVGKSKLKGRLHPLEADCFMKQLLHGVKFMHDHGIAHCDLKPENILFYPHGLLKICDFGTSSVFQTAWERRVHAQKGIIGSEPYVAPEEFVDGEYYDPRLIDCWSCGVVYITMILGHYLWKVASREKDMSYDEFYKEMQRKNQFRVFEELKHVNSELATNRKIALYRIFQWEPRKRISVGKLLDMQWMKSTNCCLIYDST*", + "old_alignment": "MMDSKTLTASMVMQEEKKRQQPVTRRVRSFSESFKNLFRPPRSRDSSPINVTRIPYRSSSTSPKRSSEPPRRSTVSAQILDPKNSPIRQRSYTLKCCTPGLSHPFRQTGSGASNSPTRHRSISGEEQEIVNSLPEYKRSASHTFHGIRRPRSRSSSVSSCDSSNGTTSSSDSQWAMDSLLDDSDNDLTPYRGSNKDILKSKDRAPYNYIDDYNKKALRRATSYPNPLPSKQFYNERLYTRRSHPDEESLESLPRFAGADVQCIIEQNGFKVYEDGSHEHNIKLSGVIAKLEKGNSLPAHRQGSLSRPRLGITLSGLFKHHKNECDIENALSLLPNVEKSQTNHEKRTGQSPNDSNRSSPTQGREDYLKIVNPDASLGSDELKLINSLSSRIHKSLQNYLQEKNLKPAECIGEQAPTFQDNYGHPVGLVGAGAYGEVKLCARLRNEKDSPPFETYHDSKYIYYAVKELKPKPDSDLEKFCTKITSEFIIGHSLSHYHKNGKKPAPNILNVFDILEDSSSFIEVMEFCPAGDLYGMLVGKSKLKGRLHPLEADCFMKQLLHGVKFMHDHGIAHCDLKPENILFYPHGLLKICDFGTSSVFQTAWERRVHAQKGIIGSEPYVAPEEFVDGEYYDPRLIDCWSCGVVYITMILGHYLWKVASREKDMSYDEFYKEMQRKNQFRVFEELKHVNSELATNRKIALYRIFQWEPRKRISVGKLLDMQWMKSTNCCLIYDST*" + } + ], + "YKL157W": [ + { + "revision": "110203", + "new_alignment": "MPIVRWLLLKSAVRGSSLIGKAHPCLRSIAAHPRYLSNVYSPPAGVSRSLRINVMWKQSKLTPPRFVKIMNRRPLFTETSHACAKCQKTSQLLNKTPNREILPDNVVPLHYDLTVEPDFKTFKFEGSVKIELKINNPAIDTVTLNTVDTDIHSAKIGDVTSSEIISEEEQQVTTFAFPKGTMSSFKGNAFLDIKFTGILNDNMAGFYRAKYEDKLTGETKYMATTQMEPTDARRAFPCFDEPNLKASFAITLVSDPSLTHLSNMDVKNEYVKDGKKVTLFNTTPKMSTYLVAFIVAELKYVESKNFRIPVRVYATPGNEKHGQFAADLTAKTLAFFEKTFGIQYPLPKMDNVAVHEFSAGAMENWGLVTYRVVDLLLDKDNSTLDRIQRVAEVVQHELAHQWFGNLVTMDWWEGLWLNEGFATWMSWYSCNEFQPEWKVWEQYVTDTLQHALSLDSLRSSHPIEVPVKKADEINQIFDAISYSKGASLLRMISKWLGEETFIKGVSQYLNKFKYGNAKTEDLWDALADASGKDVRSVMNIWTKKVGFPVISVSEDGNGKITFRQNRYLSTADVKPDEDKTIYPVFLALKTKNGVDSSVVLSERSKTIELEDPTFFKVNSEQSGIYITSYTDERWAKLGQQADLLSVEDRVGLVADVKTLSASGYTSTTNFLNLVSKWNNEKSFVVWDQIINSISSMKSTWLFEPKETQDALDNFTKQLISGMTHHLGWEFKSSDSFSTQRLKVTMFGAACAARDADVEKAALKMFTDYCSGNKEAIPALIKPIVFNTVARVGGAENYEKVYKIYLDPISNDEKLAALRSLGRFKEPKLLERTLGYLFDGTVLNQDIYIPMQGMRAHQEGVEALWNWVKKNWDELVKRLPPGLSMLGSVVTLGTSGFTSMQKIDEIKKFFATKSTKGFDQSLAQSLDTITSKAQWVNRDRDVVNKYLKENGYY*--", + "old_alignment": "MPIVRWLLLKSAVRGSSLIGKAHPCLRSIAAHPRYLSNVYSPPAGVSRSLRINVMWKQSKLTPPRFVKIMNRRPLFTETSHACAKCQKTSQLLNKTPNREILPDNVVPLHYDLTVEPDFKTFKFEGSVKIELKINNPAIDTVTLNTVDTDIHSAKIGDVTSSEIISEEEQQVTTFAFPKGTMSSFKGNAFLDIKFTGILNDNMAGFYRAKYEDKLTGETKYMATTQMEPTDARRAFPCFDEPNLKASFAITLVSDPSLTHLSNMDVKNEYVKDGKKVTLFNTTPKMSTYLVAFIVAELKYVESKNFRIPVRVYATPGNEKHGQFAADLTAKTLAFFEKTFGIQYPLPKMDNVAVHEFSAGAMENWGLVTYRVVDLLLDKDNSTLDRIQRVAEVVQHELAHQWFGNLVTMDWWEGLWLNEGFATWMSWYSCNEFQPEWKVWEQYVTDTLQHALSLDSLRSSHPIEVPVKKADEINQIFDAISYSKGASLLRMISKWLGEETFIKGVSQYLNKFKYGNAKTEDLWDALADASGKDVRSVMNIWTKKVGFPVISVSEDGNGKITFRQNRYLSTADVKPDEDKTIYPVFLALKTKNGVDSSVVLSERSKTIELEDPTFFKVNSEQSGIYITSYTDERWAKLGQQADLLSVEDRVGLVADVKTLSASGYTSTTNFLNLVSKWNNEKSFVVWDQIINSISSMKSTWLFEPKETQDALDNFTKQLISGMTHHLGWEFKSSDSFSTQRLKVTMFGAACAARDADVEKAALKMFTDYCSGNKEAIPALIKPIVFNTVARVGGAENYEKVYKIYLDPISNDEKLAALRSLGRFKEPKLLERTLGYLFDGTVLNQDIYIPMQGMRAHQEGVEALWNWVKKNWDELVKRLPPGLSMLGSVVTLGTSGFTSMQKIDEIKKFFATKSTKGFDQSLAQSLDTITSKAQW-------------------G*" + } + ], + "YKL137W": [ + { + "revision": "051216", + "new_alignment": "MEQNKDPQMISKHSSRLPIWVLSPREEQQARKNLKTETYKKCANFVQAMADCAKANGMKVFPTCDKQRDEMKSCLLFYQTDEKYLDGERDKIVLEKINKLEKLCQKQSSTK*", + "old_alignment": "--------MISKHSSRLPIWVLSPREEQQARKNLKTETYKKCANFVQAMADCAKANGMKVFPTCDKQRDEMKSCLLFYQTDEKYLDGERDKIVLEKINKLEKLCQKQSSTK*" + } + ], + "YKL134C": [ + { + "revision": "110203", + "new_alignment": "MLRTIILKAGSNASIPSPSRQNKLLRFFATAGAVSRTSPGSIKKIFDDNSYWRNINGQDANNSKISQYLFKKNKTGLFKNPYLTSPDGLRKFSQVSLQQAQELLDKMRNDFSESGKLTYIMNLDRLSDTLCRVIDLCEFIRSTHPDDAFVRAAQDCHEQMFEFMNVLNTDVSLCNILKSVLNNPEVSSKLSAEELKVGKILLDDFEKSGIYMNPDVREKFIQLSQEISLVGQEFINHTDYPGSNSVKIPCKDLDNSKVSTFLLKQLNKDVKGQNYKVPTFGYAAYALLKSCENEMVRKKLWTALHSCSDKQVKRLSHLIKLRAILANLMHKTSYAEYQLEGKMAKNPKDV------QDFILTLMNNTIEKTANELKFIAELKAKDLKKPLTTNTDEILKLVRPWDRDYYTGKYFQLNPSNSPNAKEISYYFTLGNVIQGLSDLFQQIYGIRLEPAITDEGETWSPDVRRLNVISEEEGIIGIIYCDLFERNGKTSNPAHFTVCCSRQIYPSETDFSTIQVGENPDGTYFQLPVISLVCNFSPILIASKKSLCFLQLSEVETLFHEMGHAMHSMLGRTHMQNISGTRCATDFVELPSILMEHFAKDIRILTKIGKHYGTGETIQADMLQRFMKSTNFLQNCETYSQAKMAMLDQSFHDEKIISDIDNFDVVENYQALERRLKVLVDDQSNWCGRFGHLFGYG----ATYYSYLFDRTIASKIWYALFEDDPYSRKNGDKFKKHLLKWGGLKDPWKCIADVLECPMLEKGGSDAMEFIAQSHKS*", + "old_alignment": "MLRTIILKAGSNASIPSPSRQNKLLRFFATAGAVSRTSPGSIKKIFDDNSYWRNINGQDANNSKISQYLFKKNKTGLFKNPYLTSPDGLRKFSQVSLQQAQELLDKMRNDFSESGKLTYIMNLDRLSDTLCRVIDLCEFIRSTHPDDAFVRAAQDCHEQMFEFMNVLNTDVSLCNILKSVLNNPEVSSKLSAEELKVGKILLDDFEKSGIYMNPDVREKFIQLSQEISLVGQEFINHTDYPGSNSVKIPCKDLDNSKVSTFLLKQLNKDVKGQNYKVPTFGYAAYALLKSCENEMVRKKLWTALHSCSDKQVKRLSHLIKLRAILANLMHKTSYAEYQLEGK--------WQDRRCQDFILTLMNNTIEKTANELKFIAELKAKDLKKPLTTNTDEILKLVRPWDRDYYTGKYFQLNPSNSPNAKEISYYFTLGNVIQGLSDLFQQIYGIRLEPAITDEGETWSPDVRRLNVISEEEGIIGIIYCDLFERNGKTSNPAHFTVCCSRQIYPSETDFSTIQVGENPDGTYFQLPVISLVCNFSPILIASKKSLCFLQLSEVETLFHEMGHAMHSMLGRTHMQNISGTRCATDFVELPSILMEHFAKDIRILTKIGKHYGTGETIQADMLQRFMKSTNFLQNCETYSQAKMAMLDQSFHDEKIISDIDNFDVVENYQALERRLKVLVDDQSNWCGRFGHLFGSGQLITATY----FDRTIASKIWYALFEDDPYSRKNGDKFKKHLLKWGGLKDPWKCIADVLECPMLEKGGSDAMEFIAQSHKS*" + } + ], + "YKL133C": [ + { + "revision": "110203", + "new_alignment": "MWKYLHRSVKNEGTVERLTNLNLFTNHRFKFYSTLKEQSFWRIPFKRRSKLQKWVLSTGIVSFIAFNIWWVYWPHHTFPKPVAKILRKGLHSEIKKEGANYQKSLEYYLEALEECKAENVDLLSDEYTGIEIKIGEMYEKLHMYNDATALYGDMLKKFYNELSKTTDKSTKRKFFLLKRDLQILVRFNEINKDSETNATLLIMHLLLAQREFLENSPEFKNVLSKSELLNNQQLDWKNFKGLPFIGKSKPDYQMHLNSKRKQELKIKEPESEQCVFMKELLTARDLYTRYCLNRSNLSGALNSKITTLEWMLLADSPLDDILLAQAELGSIFYLNSEKFEGSLYAIDNEPYKKSEPLELIRSRLQENQNSCLQYSADCYKSIISFANENQYPKVAMESEMDQRILKALSLAHYGIGVINLHKGRLRASKKELKKAIRISEMIRFNELIEEAQRELKKVDGTPI*", + "old_alignment": "MWKYLHRSVKNEGTVERLTNLNLFTNHRFKFYSTLKEQSFWRIPFKRRSKLQKWVLSTGIVSFIAFNIWWVYWPHHTFPKPVAKILRKGLHSEIKKEGANYQKSLEYYLEALEECKAENVDLLSDEYTGIEIKIGEMYEKLHMYNDATALYGDMLKKFYNELSKTTDKSTKRKFFLLKRDLQILVRFNEINKDSETNATLLIMHLLLAQREFLENSPEFKNVLSKSELLNNQQLDWKNFKGLPFIGKSKPDIQMHLNSKRKQELKIKEPESEQCVFMKELLTARDLYTRYCLNRSNLSGALNSKITTLEWMLLADSPLDDILLAQAELGSIFYLNSEKFEGSLYAIDNEPYKKSEPLELIRSRLQENQNSCLQYSADCYKSIISFANENQYPKVAMESEMDQRILKALSLAHYGIGVINLHKGRLRASKKELKKAIRISEMIRFNELIEEAQRELKKVDGTPI*" + } + ], + "YKL129C": [ + { + "revision": "110203", + "new_alignment": "MAVIKKGARRKDVKEPKKRSAKIKKATFDANKKKEVGISDLTLLSKISDESINENLKKRFKNGIIYTYIGHVLISVNPFRDLGIYTNAVLESYKGKNRLEVPPHVFAIAESMYYNLKSYNENQCVIISGESGAGKTEAAKRIMQYIAAASNSHSESIGKIKDMVLATNPLLESFGCAKTLRNNNSSRHGKYLEIKFNSQFEPCAGNITNYLLEKQRVVGQIKNERNFHIFYQFTKGASDTYKQMFGVQMPEQYIYTAAAGCTTADTIDDV-------KDYEGTLEAMRTIGLVQEEQDQIFRMLAAILWIGNISFIENEEGNAQVGDTSVTDFVAYLLQVDASLLVKCLVERIMQTSHGMKRGSVYHVPLNPVQATAVRDALAKAIYNNLFDWIVDRVNVSLQAFPGADKSIGILDIYGFEIFEHNSFEQICINYVNEKLQQIFIQLTLKAEQETYEREKIKWTPIKYFDNKVVCDLIEAKNPPGILAAMNDSIATAHADSNAADQAFAQRLNLFNSNPYFELRANKFVIKHYAGDVTYDINGITDKNKDQLQKDLIELIGTTTNTFLSTIFPDDVDKDSKRRPPTAGDKIIKSANELVETLSKAEPSYIRTIKPNQTKSPNDYDDHQVLHQVKYLGLQENVRIRRAGFAYRQTFEKFVERFYLLSPDCSYAGDYTWDGDTLEAVKLILRDAMIPEKEFQLGVTSVFIKTPESLFALEDMRDKYWYNMAARIQRAWRRFLQRRIDAAIKIQRTIREKKGGNKYVKLRDYGTKLLAGKKERRSMSLLGYRAFMGDYLSCNESKTKGSYIRRQVGIKDKVVFSIKGECLHSKFGRSAQRLKKVFILTKKTFYIIGQTREQNAMKYTQDYKIDVGKIKQVSLTNLQDDWMGVILVNSTQSDPLINTPFKTELMTRLKKLNEKIMIKVGPTIEYHKQPNKLHTVRSKISDSAPKYGDIYKSSTIYVRRGHPANSKSNKKPKNPGGLSGKPIKSKKSKHKSTHKHTHSHRSHRDAAKKQPLPSQKPVNPLSLAATAAQAAYNPKPDKTVPIKSSAIPAAKVSSKHSSKPSSKEKVAVKKASSSHKSSSAKQNQVSMPPSKGVEKNKEPLKETTATATANIPIPPPPPPMGQPKDPKFEAAYDFPGSGSSSELPLKKGDIVFISRDEPSGWSLAKLLDGSKEGWVPTAYMTPYKDTRNTVPVAATGAVNDVTNQKSSQIDNTISSAQEGVQFGSATVGPTSDNQSNPVGTFSDGLASALAARANKMRAESADDDDNDDGDDDDDW*", + "old_alignment": "MAVIKKGARRKDVKEPKKRSAKIKKATFDANKKKEVGISDLTLLSKISDESINENLKKRFKNGIIYTYIGHVLISVNPFRDLGIYTNAVLESYKGKNRLEVPPHVFAIAESMYYNLKSYNENQCVIISGESGAGKTEAAKRIMQYIAAASNSHSESIGKIKDMVLATNPLLESFGCAKTLRNNNSSRHGKYLEIKFNSQFEPCAGNITNYLLEKQRVVGQIKNERNFHIFYQFTKGASDTYKQMFGVQMPEQYIYTAAAGCT--------SADQLMRKDYEGTLEAMRTIGLVQEEQDQIFRMLAAILWIGNISFIENEEGNAQVGDTSVTDFVAYLLQVDASLLVKCLVERIMQTSHGMKRGSVYHVPLNPVQATAVRDALAKAIYNNLFDWIVDRVNVSLQAFPGADKSIGILDIYGFEIFEHNSFEQICINYVNEKLQQIFIQLTLKAEQETYEREKIKWTPIKYFDNKVVCDLIEAKNPPGILAAMNDSIATAHADSNAADQAFAQRLNLFNSNPYFELRANKFVIKHYAGDVTYDINGITDKNKDQLQKDLIELIGTTTNTFLSTIFPDDVDKDSKRRPPTAGDKIIKSANELVETLSKAEPSYIRTIKPNQTKSPNDYDDHQVLHQVKYLGLQENVRIRRAGFAYRQTFEKFVERFYLLSPDCSYAGDYTWDGDTLEAVKLILRDAMIPEKEFQLGVTSVFIKTPESLFALEDMRDKYWYNMAARIQRAWRRFLQRRIDAAIKIQRTIREKKGGNKYVKLRDYGTKLLAGKKERRSMSLLGYRAFMGDYLSCNESKTKGSYIRRQVGIKDKVVFSIKGECLHSKFGRSAQRLKKVFILTKKTFYIIGQTREQNAMKYTQDYKIDVGKIKQVSLTNLQDDWMGVILVNSTQSDPLINTPFKTELMTRLKKLNEKIMIKVGPTIEYHKQPNKLHTVRSKISDSAPKYGDIYKSSTIYVRRGHPANSKSNKKPKNPGGLSGKPIKSKKSKHKSTHKHTHSHRSHRDAAKKQPLPSQKPVNPLSLRATAAQAAYNPKPDKTVPIKSSAIPAAKVSSKHSSKPSSKEKVAVKKASSSHKSSSAKQNQVSMPPSKGVEKNKEPLKETTATATANIPIPPPPPPMGQPKDPKFEAAYDFPGSGSSSELPLKKGDIVFISRDEPSGWSLAKLLDGSKEGWVPTAYMTPYKDTRNTVPVAATGAVNDVTNQKSSQIDNTISSAQEGVQFGSATVGPTSDNQSNPVGTFSDGLASALAARANKMRAESADDDDNDDGDDDDDW*" + } + ], + "YKL101W": [ + { + "revision": "110203", + "new_alignment": "MTGHVSKTSHVPKGRPSSLAKKAAKRAMAKVNSNPKRASGHLERVVQSVNDATKRLSQPDSTVSVATKSSKRKSRDTVGPWKLGKTLGKGSSGRVRLAKNMETGQLAAIKIVPKKKAFVHCSNNGTVPNSYSSSMVTSNVSSPSIASREHSNHSQTNPYGIEREIVIMKLISHTNVMALFEVWENKSELYLVLEYVDGGELFDYLVSKGKLPEREAIHYFKQIVEGVSYCHSFNICHRDLKPENLLLDKKNRRIKIADFGMAALELPNKLLKTSCGSPHYASPEIVMGRPYHGGPSDVWSCGIVLFALLTGHLPFNDDNIKKLLLKVQSGKYQMPSNLSSEARDLISKILVIDPEKRITTQEILKHPLIKKYDDLPVNKVLRKMRKDNMARGKSNSDLHLLNNVSPSIVTLHSKGEIDESILRSLQILWHGVSRELITAKLLQKPMSEEKLFYSLLLQYKQRHSISLSSSSENKKSATESSVNEPRIEYASKTANNTGLRSENNDVKTLHSLEIHSEDTSTVNQNNAITGVNTEINAPVLAQKSQFSINTLSQPESDKAEAEAVTLPPAIPIFNASSSRIFRNSYTSISSRSRRSLRLSNSRLSLSASTSRETVHDNEMPLPQLPKSPSRYSLSRRAIHASPSTKSIHKSLSRKNIAATVAARRTLQNSASKRSLYSLQSISKRSLNLNDLLVFDDPLPSKKPASENVNKSEPHSLESDSDFEILCDQILFGNALDRILEEEEDNEKERDTQRQRQNDTKSSADTFTISGVSTNKENEGPEYPTKIEKNQFNMSYKPSENMSGLSSFPIFEKENTLSSSYLEEQKPKRAALSDITNSFNKMNKQEGMRIEKKIQREQLQKKNDRPSPLKPIQHQELRVNSLPNDQGKPSLSLDPRRNISQPVNSKVESLLQGLKFKKEPASHWTHERGSLFMSEHVEDEKPVKASDVSIESSYVPLTTVATSSRDPSVLAESSTIQKPMLSLPSSFLNTSMTFKNLSQILADDGDDKHLSVPQNQSRSVAMSHPLRKQSAKISLTPRSNLNANLSVKRNQGSPGSYLSNDLDGISDMTFAMEIPTNTFTAQAIQLMNNDTDNNKINTSPKASSFTKEKVIKSAAYISKEKEPDNSDTNYIPDYTIPNTYDEKAINIFEDAPSDEGSLNTSSSESDSRASVHRKAVSIDTMATTNVLTPATNVRVSLYWNNNSSGIPRETTEEILSKLRLSPENPSNTHMQKRFSSTRGSRDSNALGISQSLQSMFKDLEEDQDGHTSQADILESSMSYSKRRPSEESVNPKQRVTMLFDEEEEESKKVGGGKIKEEHTKLDNKISEESSQLVLPVVEKKENANNTENNYSKIPKPSTIKVTKDTAMESNTQTHTKKPILKSVQNVEVEEAPSSDKKNWFVKLFQNFSSHNNATKASKNHVTNISFDDAHMLTLNEFNKNSIDYQLKNLDHKFGRKVVEYDCKFVKGNFKFKIKITSTPNASTVITVKKRSKHSNTSSNKAFEKFNDDVERVIRNAGRS*", + "old_alignment": "MTGHVSKTSHVPKGRPSSLAKKAAKRAMAKVNSNPKRASGHLERVVQSVNDATKRLSQPDSTVSVATKSSKRKSRDTVGPWKLGKTLGKGSSGRVRLAKNMETGQLAAIKIVPKKKAFVHCSNNGTVPNSYSSSMVTSNVSSPSIASREHSNHSQTNPYGIEREIVIMKLISHTNVMALFEVWENKSELYLVLEYVDGGELFDYLVSKGKLPEREAIHYFKQIVEGVSYCHSFNICHRDLKPENLLLDKKNRRIKIADFGMAALELPNKLLKTSCGSPHYASPEIVMGRPYHGGPSDVWSCGIVLFALLTGHLPFNDDNIKKLLLKVQSGKYQMPSNLSSEARDLISKILVIDPEKRITTQEILKHPLIKKYDDLPVNKVLRKMRKDNMARGKSNSDLHLLNNVSPSIVTLHSKGEIDESILRSLQILWHGVSRELITAKLLQKPMSEEKLFYSLLLQYKQRHSISLSSSSENKKSATESSVNEPRIEYASKTANNTGLRSENNDVKTLHSLEIHSEDTSTVNQNNAITGVNTEINAPVLAQKSQFSINTLSQPESDKAEAEAVTLPPAIPIFNASSSRIFRNSYTSISSRSRRSLRLSNSRLSLSASTSRETVHDNEMPLPQLPKSPSRYSLSRRAIHASPSTKSIHKSLSRKNIAATVAARRTLQNSASKRSLYSLQSISKRSLNLNDLLVFDDPLPSKKPASENVNKSEPHSLESDSDFEILCDQILFGNALDRILEEEEDNEKERDTQRQRQNDTKSSADTFTISGVSTNKENEGPEYPTKIEKNQFNMSYKPSENMSGLSSFPIFEKENTLSSSYLEEQKPKRAALSDITNSFNKMNKQEGMRIEKKIQREQLQKKNDRPSPLKPIQHQELRVNSLPNDQGKPSLSLDPRRNISQPVNSKVESLLQGLKFKKEPASHWTHERGSLFMSEHVEDEKPVKASDVSIESSYVPLTTVATSSRDPSVLAESSTIQKPMLSLPSSFLNTSMTFKNLSQILADDGDDKHLSVPQNQSRSVAMSHPLRKQSAKISLTPRSNLNANLSVKRNQGSPGSYLSNDLDGISDMTFAMEIPTNTFTAQAIQLMNNDTDNNKINTSPKASSFTKEKVIKSAAYISKEKEPDNSDTNYIPDYTIPNTYDEKAINIFEDAPSDEGSLNTSSSESDSRASVHRKAVSIDTMATTNVLTPATNVRVSLYWNNNSSGIPRETTEEILSKLRLSPENPSNTHMQKRFSSTRGSRDSNALGISQSLQSMFKDLEEDQDGHTSQADILESSMSYSKRRPSEESVNPKQRVTMLFDEEEEESKKVGGGKIKEEHTKLDNKISEESSQLVLPVVEKKENANNTENNYSKIPKPSTIKVTKDTAMESNTQTHTKKPILKSVQNVEVEEAPSSDKKNWFVKLFQNFSSHNNATKASKNHVTNISFDDAHMLTLNEFNKNSIDYQLKNLDHKFGRKVVEYDCKFVKGNFKFKIKITSTPNASSVITVKKRSKHSNTSSNKAFEKFNDDVERVIRNAGRS*" + } + ], + "YKL099C": [ + { + "revision": "051216", + "new_alignment": "MAKLVHDVQKKQHRERSQLTSRSRYGFLEKHKDYVKRAQDFHRKQSTLKVLREKAKERNPDEYYHAMHSRKTDAKGLLISSRHGDEEDESLSMDQVKLLKTQDSNYVRTLRQIELKKLEKGAKQLMFKSSGNHTIFVDSREKMNEFTPEKFFNTTSEMVNRSENRLTKDQLAQDISNNRNASSIMPKESLDKKKLKKFKQVKQHLQRETQLKQVQQRMDAQRELLKKGSKKKIVDSSGKISFKWKKQRKR*---------------------", + "old_alignment": "MAKLVHDVQKKQHRERSQLTSRSRYGFLEKHKDYVKRAQDFHRKQSTLKVLREKAKERNPDEYYHAMHSRKTDAKGLLISSRHGDEEDESLSMDQVKLLKTQDSNYVRTLRQIELKKLEKGAKQLMFKSSGNHTIFVDSREKMNEFTPEKFFNTTSEMVNRSENRLTKDQLAQDISNNRNASSIMPKESLDKKKLKKFKQVKQHLQRETQLKQVQQRMDAQRELLKKGSKKKIVDS---------------QEKFHLNGRNNGNVRFLPSI*" + } + ], + "YKL065C": [ + { + "revision": "110203", + "new_alignment": "MSLYFTTLFLLLTVEMVMLFIFVLPLPFRIRRGIFSTYNQLTAKQQIKTIIFITGCLVGLLFIDSWKRSQIRVSLYHNDNSGSIGSSAVTPIQALASRAYNQRNMYISGFILYFSICIPTVMSIVKRLVKYQGLINEQEKQKLNKPSSNSKKDSNEADSTKLQEELRKKQISLEGLQKQVKNLEKYFDEKNQPGNVAAAEASKKGN*", + "old_alignment": "MSLYFTTLFLLLTVEVVMLFIFVLPLPFRIRRGIFSTYNQLTAKQQIKTIIFITGCLVGLLFIDSWKRSQIRVSLYHNDNSGSIGSSAVTPIQALASRAYNQRNMYISGFILYFSICIPTVMSIVKRLVKYQGLINEQEKQKLNKPSSNSKKDSNEADSTKLQEELRKKQISLEGLQKQVKNLEKYFDEKNQPGNVAAAEASKKGN*" + } + ], + "YKL052C": [ + { + "revision": "080606", + "new_alignment": "MDSASKEETLEKLDQEITVNLQKIDSNLSFCFHKITQDIIPHVATYSEICERIMDSTEWLGTMFQETGLVNLQANAAAPVGNAPVKSLVSNNVGIFPTSAEEASRQSQTDNGPNEADSAVHVNRDVHSMFNNDSIDDFHTANITSTGQILKLPDSSDEDTGSEAVPSREQTDLTGEGHGGADDEQDESTIQRQSRKRKISLLLQQQYGSSSSMVPSPIVPNKMRKQLAHEEHINNDGDNDDENSNNIESSPLKQGHHHPKGQADDNNEGPDEEESTKEVPKPGTIIHFSTNR*", + "old_alignment": "MDSASKEETLEKLVQEITVNLQKIDSNLSFCFHKITQDIIPHVATYSEICERIMDSTEWLGTMFQETGLVNLQANAAAPVGNAPVKSLVSNNVGIFPTSAEEASRQSQTDNGPNEADSAVHVNRDVHSMFNNDSIDDFHTANITSTGQILKLPDSSDEDTGSEAVPSREQTDLTGEGHGGADDEQDESTIQRQSRKRKISLLLQQQYGSSSSMVPSPIVPNKMRKQLAHEEHINNDGDNDDENSNNIESSPLKQGHHHPKGQADDNNEGPDEEESTKEVPKPGTIIHFSTNR*" + } + ], + "YKL039W": [ + { + "revision": "051216", + "new_alignment": "MRVYQFCRPFQLFTCFLCYLLVFVKANKEKISQKNYQVCAGMYSKEDWKGKIDPFISFNLKKISGLSDESDPGLVVAIYDFQDFEHLGVQLPDEEMYYICDDYAIDIGICEEENRDEFIVQDVVYDPYTSTNRSLANPIMTFSQNEVGLHDTRYPIKETGFYCVTAFRSSTSTKFNAVVNFRNAYGQLAGTEINKLPLYGLLAVAYVVAMALYSFAFWKHKHELLPLQKYLLAFFVFLTAETIFVWAYYDLKNEKGDTAGIKVYMVFLSILTAGKVTFSFFLLLIIALGYGIVYPKLNKTLMRRCQMYGALTYAICIGFLIQSYLTDMEAPSPLILITLIPMALALIIFYYMIIRSMTKTVIYLKEQRQIVKLNMYKKLLYIIYASFLSVLAGSIVSSFIYVGMNTIDMIEKNWRSRFFVTDFWPTLVYFIVFVTIAFLWRPTDTSYMLAASQQLPTDPENVADFDLGDLQSFDDQDDASIITGERGIDEDDLNLNFTDDEEGHDNVNNHSQGHGPVSPSPTK*--------------------", + "old_alignment": "MRVYQFCRPFQLFTCFLCYLLVFVKANKEKISQKNYQVCAGMYSKEDWKGKIDPFISFNLKKISGLSDESDPGLVVAIYDFQDFEHLGVQLPDEEMYYICDDYAIDIGICEEENRDEFIVQDVVYDPYTSTNRSLANPIMTFSQNEVGLHDTRYPIKETGFYCVTAFRSSTSTKFNAVVNFRNAYGQLAGTEINKLPLYGLLAVAYVVAMALYSFAFWKHKHELLPLQKYLLAFFVFLTAETIFVWAYYDLKNEKGDTAGIKVYMVFLSILTAGKVTFSFFLLLIIALGYGIVYPKLNKTLMRRCQMYGALTYAICIGFLIQSYLTDMEAPSPLILITLIPMALALIIFYYMIIRSMTKTVIYLKEQRQIVKLNMYKKLLYIIYASFLSVLAGSIVSSFIYVGMNTIDMIEKNWRSRFFVTDFWPTLVYFIVFVTIAFLWRPTDTSYMLAASQQLPTDPENVADFDLGDLQSFDDQDDASIITGERGIDEDDLNLNFTDDEEGHDNVNNHSQ------------ATGQCLPLQQNNATSSRFD*" + } + ], + "YKL033W-A": [ + { + "revision": "040305", + "new_alignment": "MTHPVAVKACLFDMDGLLINTEDIYTETLNETLAEFGKGPLTWDVKIKLQGLPGPEAGKRVIEHYKLPITLDEYDERNVALQSLKWGTCEFLPGALNLLKYLKLKNIPIALCTSSNKTKFRGKTSHLEEGFDLFDTIVTGDDPRIAKGRGKPFPDIWQLGLKELNEKFHTDIKPDECIVFEDGIPGVKSAKAFGAHVIWVPHPEAHAVLGDTEALLAGKGELLSSLEKLEMSKYGL*------", + "old_alignment": "MTHPVAVKACLFDMDGLLINTEDIYTETLNETLAEFGKGPLTWDVKIKLQGLPGP--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------KQEKG*" + } + ], + "YKL023W": [ + { + "revision": "110203", + "new_alignment": "MNKEELLGFLLDDSIDSQKRCVTDQQAYSNWLKNDNDERTAHEESSSQSTIAALNKKKQTEAAQEDIEELLNGLEGIIGGADPRNLKSKSKRKTKKGGSKPREENVNTEKHIVMLEVEDFSDMSTHEDVNGASPSPNLDRSKKNEKRRKNAKELSYDELKDKLEVTTRKSRLECKDLKKKVHGLERRNLELEQRLEELKIENQTLIEINNKLLKNTNEDEINKSQRNKEKDRKRRERRTARRKDERKQEKKQEKKQDNKTSQSFPSSTDMNGQPIEF*", + "old_alignment": "MNKEELLGFLLDDSIDSQKRCVTDHEAYSNWLKNDNDERTAHEESSSQSTIAALNKKKQTEAAQEDIEELLNGLEGIIGGADPRNLKSKSKRKTKKGGSKPREENVNTEKHIVMLEVEDFSDMSTHEDVNGASPSPNLDRSKKNEKRRKNAKELSYDELKDKLEVTTRKSRLECKDLKKKVHGLERRNLELEQRLEELKIENQTLIEINNKLLKNTNEDEINKSQRNKEKDRKRRERRTARRKDERKQEKKQEKKQDNKTSQSFPSSTDMNGQPIEF*" + } + ], + "YKR005C": [ + { + "revision": "070906", + "new_alignment": "MLECLSALLVLFAGGGGSVLAAVQSKTVADPNLCPGYNSQLISPFLSSCKRNLSECVSRYFDEQYAFCRSCVTVNNETMEDLDNCKCLQCALSSLNNSCFHDYCTSKDEYDKLQIVVEQFQLTNGVLDDGEILKPRGNKFSSRKLSYFVGQNNTLFRNPLQFEKNQLISALLTSLTNNQKTISSVDMFEVVDANNEVQYLRERTISGKTLSPATGYEEENDGDCSVKDKKWEGKIEYHENKKVSSENCSKDTDDKSGSKKERNTKAPLFHTATEIHMTRWSSWRPKKIFTRYLVNEYQSPKIITTVNRFYRTKTDTETGTTLITSTKAKRRWFPRTKIVTSTATSTFLSITTTTTTNAIATKSLVAVLNPDGLNKKAGINFGLFSANGELASPDEGGTPTVVRRDKISDPGAANEQATLFSTTFSQVPHLPELDSGEFISAASQLDKRIFIFTAITVSITTLMMLGFSYRSRVSFRDHSIDDSDDDNDWSDDEVEFDEEYFYSLPVSIPEKGISLDKMAQQLGVE*", + "old_alignment": "------------------------------------------------------------------------------MEDLDNCKCLQCALSSLNNSCFHDYCTSKDEYDKLQIVVEQFQLTNGVLDDGEILKPRGNKFSSRKLSYFVGQNNTLFRNPLQFEKNQLISALLTSLTNNQKTISSVDMFEVVDANNEVQYLRERTISGKTLSPATGYEEENDGDCSVKDKKWEGKIEYHENKKVSSENCSKDTDDKSGSKKERNTKAPLFHTATEIHMTRWSSWRPKKIFTRYLVNEYQSPKIITTVNRFYRTKTDTETGTTLITSTKAKRRWFPRTKIVTSTATSTFLSITTTTTTNAIATKSLVAVLNPDGLNKKAGINFGLFSANGELASPDEGGTPTVVRRDKISDPGAANEQATLFSTTFSQVPHLPELDSGEFISAASQLDKRIFIFTAITVSITTLMMLGFSYRSRVSFRDHSIDDSDDDNDWSDDEVEFDEEYFYSLPVSIPEKGISLDKMAQQLGVE*" + } + ], + "YKR008W": [ + { + "revision": "110203", + "new_alignment": "MVVKKRKLATEAGGSDERPKYLPGKHPKNQEKTPHVDYNAPLNPKSELFLDDWHIPKFNRFISFTLDVLIDKYKDIFKDFIKLPSRKFHPQYYYKIQQPMSINEIKSRDYEYEDGPSNFLLDVELLTKNCQAYNEYDSLIVKNSMQVVMLIEFEVLKAKNLKRNYLINSEVKAKLLHYLNKLVDATEKKINQALLGASSPKNLDDKVKLSEPFMELVDKDELPEYYEIVHSPMALSIVKQNLEIGQYSKIYDFIIDMLLVFQNAHIFNDPSALIYKDATTLTNYFNYLIQKEFFPELQDLNERGEINLEFDKFEFENYLAIGGGGPAAAGALAISALDNDIEPESNREDLIDQADYDFNHFEGLGNGYNRSLLTEDYLLNPNNFKKLIAKPETVQSEVKNERSTTSDIEKTNSLESEHLKIPKYNVIKSMQKEMQSLSEQHTMEYKPYKLIQQIYIFSSKNLYSQATKPLLGSRPSCNQNWVEYIFNGNELSQNENAFSFMLQPMQTFLTLQSHLTSSLKDTETLLTINKEPVKSRTSNVNSNLSQPQQQENDVIGNDTKQDIENLTIGGGNNNDIVGNDNDKRNNITEIFDIRLSEGLNHLMFRCEDKISHETEFMNFWINVLP*", + "old_alignment": "MVVKKRKLATEAGGSDERPKYLPGKHPKNQEKTPHVDYNAPLNPKSELFLDDWHIPKFNRFISFTLDVLIDKYKDIFKDFIKLPSRKFHPQYYYKIQQPMSINEIKSRDYEYEDGPSNFLLDVELLTKNCQAYNEYDSLIVKNSMQVVMLIEFEVLKAKNLKRNYLINSEVKAKLLHYLNKLVDATEKKINQALLGASSPKNLDDKVKLSEPFMELVDKDELPEYYEIVHSPMALSIVKQNLEIGQYSKIYDFIIDMLLVFQNAHIFNDPSALIYKDATTLTNYFNYLIQKEFFPELQDLNERGEINLEFDKFEFENYLAIGGGGPAAAGALAISALDNDIEPESNREDLIDQADYDFNHFEGLGNGYNRSLLTEDYLLNPNNFKKLIAIPETVQSEVKNERSTTSDIEKTNSLESEHLKIPKYNVIKSMQKEMQSLSEQHTMEYKPYKLIQQIYIFSSKNLYSQATKPLLGSRPSCNQNWVEYIFNGNELSQNENAFSFMLQPMQTFLTLQSHLTSSLKDTETLLTINKEPVKSRTSNVNSNLSQPQQQENDVIGNDTKQDIENLTIGGGNNNDIVGNDNDKRNNITEIFDIRLSEGLNHLMFRCEDKISHETEFMNFWINVLP*" + } + ], + "YKR012C": [ + { + "revision": "110203", + "new_alignment": "MNVVRVWPFSTRTIPCTTTVAAWWTCCVTVTATGADKATDADAASSETLENFIFVSFIKGMVLFYDGLFRGTMIPRANRSITAICNTLRQAYIYTKIKSIAFERRLCFKNITYREVREIHEMYCK*", + "old_alignment": "MNVVRVWPFSTRTIPCTTTVAAWWTCCVTVTATGADKATDADAASSETLENFIFVSFIKGMVLFYDGLFRGTMIPRANRSITAICNTLRQAYIYTKIQSIAFERRLCFQNITYREVREIHEMYCK*" + } + ], + "YKR028W": [ + { + "revision": "110203", + "new_alignment": "MSGSFWKFGQDYSIESPVSKILNSAFIKINKDQDDDVPTGTCEENIADDEDNSSHDYAASEDNVVNENEEKEEENTLPTTESEYENYRPNLDVLDDLLDDDELYTELMCSNFKLLIFLKYPDVLSKLIEYVTNEKILDEETDSAKKPEIIEGVNDHPILIERDRKDKKEDAEEGGDSEETTNDSDHDSGDERSVDSEETSITLPPESEEQVETRRARIAAEILSADVWPISAAIMQNKDLLGRLWSILDHPAPLPIPASTYFMKINERLLDMDITGMLEFILSRDSLVARFLTHVDNPSLMDFLLKVISTDKPDSPTGVIKILKSQELIPKLLDHLNPEYGISTQSAAGDFIKAFVTLSTNSSNELASGIGPNELTRQLVSEEMIEKLIKIMLKGGTSLSNGVGIIIELIRKNNSDYDFIQLVYTTLESHPPTDRDPIHLIHLVKLFAKHMPDFADMLDKTKLPLMEMPFGNIEPLGFERFKICELIAELLHCSNMTLLNEPNGEMIAQERDIERAKELETSTEKENITAIVDNKSSYYDKDCVEKDITENLGALQINNQGSEEDELNDTGVSSVKLDVKSDAKVVEGLENDASGVELYDETLSDTESVRECLREKPLVGDRLKIALEDTKILISILDMFTEFPWNNFLHNVIFDIAQQIFNGPLKTGYNRFLLKDYLVDAYLTKKIVDADKACQDYEKKTGLRYGYMGHLTLVAEEISKFKEYIDEMKLTFCNTAVSDRLEEPFWKEYSETILADTREKYNTVLGDFGNDQESDDDVIRNSDSEDIIGDTEGNENYGNGENDELLSNGHDSGNMDLYYNFNNNENEENEEDYAEYSDVDNKNYYNNVETNDDDYDSDDGKSKSAESEFTDKISEHRDGNSLYNEDNDENGSDKWTSGTSLFPPDHFPSRSQPSDPKLQDQNIFHHQFDFEGVGDDDDYMDPNDDGQSYARPGNPLYTTPKTPPRPKTILFNSLSALDNNGEDEEVALGTSVDDRMDNEISSDEEDSEDEDEENDMGNEEGYSLYRSRSKEAF*-------------------------------------------------------------------------------------------", + "old_alignment": "MSGSFWKFGQDYSIESPVSKILNSAFIKINKDQDDDVPTGTCEENIADDEDNSSHDYAASEDNVVNENEEKEEENTLPTTESEYENYRPNLDVLDDLLDDDELYTELMCSNFKLLIFLKYPDVLSKLIEYVTNEKILDEETDSAKKPEIIEGVNDHPILIERDRKDKKEDAEEGGDSEETTNDSDHDSGDERSVDSEETSITLPPESEEQVETRRARIAAEILSADVWPISAAIMQNKDLLGRLWSILDHPAPLPIPASTYFMKINERLLDMDITGMLEFILSRDSLVARFLTHVDNPSLMDFLLKVISTDKPDSPTGVIKILKSQELIPKLLDHLNPEYGISTQSAAGDFIKAFVTLSTNSSNELASGIGPNELTRQLVSEEMIEKLIKIMLKGGTSLSNGVGIIIELIRKNNSDYDFIQLVYTTLESHPPTDRDPIHLIHLVKLFAKHMPDFADMLDKTKLPLMEMPFGNIEPLGFERFKICELIAELLHCSNMTLLNEPNGEMIAQERDIERAKELETSTEKENITAIVDNKSSYYDKDCVEKDITENLGALQINNQGSEEDELNDTGVSSVKLDVKSDAKVVEGLENDASGVELYDETLSDTESVRECLREKPLVGDRLKIALEDTKILISILDMFTEFPWNNFLHNVIFDIAQQIFNGPLKTGYNRFLLKDYLVDAYLTKKIVDADKACQDYEKKTGLRYGYMGHLTLVAEEISKFKEYIDEMKLTFCNTAVSDRLEEPFWKEYSETILADTREKYNTVLGDFGNDQESDDDVIRNSDSEDIIGDTEGNENYGNGENDELLSNGHDSGNMDLYYNFNNNENEENEEDYAEYSDVDNKNYYNNVETNDDDYDSDDGKSKSAESEFTDKISEHRDGNSLYNEDNDENGSDKWTSGTSLFPPDHFPSRSQPSDPKLQDQNIFHHQFDFEGVGDDDDYMDPNDDGQSYARPGNPLYTTPKTPPRPKTILFNSLSALDNNGEDEEVALGTSVDDRMDNEISSDEEDSE--------------------------MKMKRMIWAMRRATHYIGQEVKKLSELKHSHCHIFTLYSSIFYCSTFFAYRSFIIHQIYTFLIEACNLILTEYNLIKNNEYSLLNILKFI*" + } + ], + "YKR036C": [ + { + "revision": "110203", + "new_alignment": "MGSGDTRGESSLVAKPIEIILNKLPHAILAQQQFQKYITSPIYRYLSKLLLFREVAWPESTKDTQKGQVGIFSFQNNYADSATTFRILAHLDEQRYPLPNGAAEKNLPSLFEGFKATVSIIQQRLLLDNVDGATNSDKEKYVQLPDINTGFVNKTYSRIDLTHLLEDVETNVENLSINKTLEMDELTRLDSMINELESRKLKILERVKHIDSKSTNLENDVTLIKDRINFIEEYNLEADREQSLRKQMEEERSSEASSFTQNEEAISSLCDVESKDTRLKDFYKMPHEKSHDKNRQIISETYSRNTTAFRMTIPHGEHGNSITALDFDTPWGTLCSSSYQDRIVKVWDLNHGIQVGELPGHLATVNCMQIDKKNYNMLITGSKDATLKLWDLNLSREIYLDHSPLKEKTEEIVTPCIHNFELHKDEITALSFDSEALVSGSRDKKIFHWDLTTGKCIQQLDLIFTPTHSDIKMPARSLNNGACLLGTEAPMIGALQCYNSALATGTKDGIVRLWDLRVGKPVRLLEGHTDGITSLKFDSEKLVTGSMDNSVRIWDLRTSSILDVIAYDLPVSSLDFDGKLITVGANEGGVNVFNMERDEHWMTPEPPHSLDGDELSRRIAIVKYKDGFLINGHNDGDINVWTL*", + "old_alignment": "MGSGDTRGESSLVAKPIEIILNKLPHAILAQQQFQKYITSPIYRYLSKLLLFREVAWPESTKDTQKGQVGIFSFQNNYADSATTFRILAHLDEHGYPLPNGAAEKNLPSLFEGFKATVSIIQQRLLLDNVDGATNSDKEKYVQLPDINTGFVNKTYSRIDLTHLLEDVETNVENLSINKTLEMDELTRLDSMINELESRKLKILERVKHIDSKSTNLENDVTLIKDRINFIEEYNLEADREQSLRKQMEEERSSEASSFTQNEEAISSLCDVESKDTRLKDFYKMPHEKSHDKNRQIISETYSRNTTAFRMTIPHGEHGNSITALDFDTPWGTLCSSSYQDRIVKVWDLNHGIQVGELPGHLATVNCMQIDKKNYNMLITGSKDATLKLWDLNLSREIYLDHSPLKEKTEEIVTPCIHNFELHKDEITALSFDSEALVSGSRDKKIFHWDLTTGKCIQQLDLIFTPTHSDIKMPARSLNNGACLLGTEAPMIGALQCYNSALATGTKDGIVRLWDLRVGKPVRLLEGHTDGITSLKFDSEKLVTGSMDNSVRIWDLRTSSILDVIAYDLPVSSLDFDGKLITVGANEGGVNVFNMERDEHWMTPEPPHSLDGDELSRRIAIVKYKDGFLINGHNDGDINVWTL*" + }, + { + "revision": "060512", + "new_alignment": "----------------MGSGDTRGESSLVAKPIEIILNKLPHAILAQQQFQKYITSPIYRYLSKLLLFREVAWPESTKDTQKGQVGIFSFQNNYADSATTFRILAHLDEQRYPLPNGAAEKNLPSLFEGFKATVSIIQQRLLLDNVDGATNSDKEKYVQLPDINTGFVNKTYSRIDLTHLLEDVETNVENLSINKTLEMDELTRLDSMINELESRKLKILERVKHIDSKSTNLENDVTLIKDRINFIEEYNLEADREQSLRKQMEEERSSEASSFTQNEEAISSLCDVESKDTRLKDFYKMPHEKSHDKNRQIISETYSRNTTAFRMTIPHGEHGNSITALDFDTPWGTLCSSSYQDRIVKVWDLNHGIQVGELPGHLATVNCMQIDKKNYNMLITGSKDATLKLWDLNLSREIYLDHSPLKEKTEEIVTPCIHNFELHKDEITALSFDSEALVSGSRDKKIFHWDLTTGKCIQQLDLIFTPTHSDIKMPARSLNNGACLLGTEAPMIGALQCYNSALATGTKDGIVRLWDLRVGKPVRLLEGHTDGITSLKFDSEKLVTGSMDNSVRIWDLRTSSILDVIAYDLPVSSLDFDGKLITVGANEGGVNVFNMERDEHWMTPEPPHSLDGDELSRRIAIVKYKDGFLINGHNDGDINVWTL*", + "old_alignment": "MTYKITTSESKKEYLYMGSGDTRGESSLVAKPIEIILNKLPHAILAQQQFQKYITSPIYRYLSKLLLFREVAWPESTKDTQKGQVGIFSFQNNYADSATTFRILAHLDEHGYPLPNGAAEKNLPSLFEGFKATVSIIQQRLLLDNVDGATNSDKEKYVQLPDINTGFVNKTYSRIDLTHLLEDVETNVENLSINKTLEMDELTRLDSMINELESRKLKILERVKHIDSKSTNLENDVTLIKDRINFIEEYNLEADREQSLRKQMEEERSSEASSFTQNEEAISSLCDVESKDTRLKDFYKMPHEKSHDKNRQIISETYSRNTTAFRMTIPHGEHGNSITALDFDTPWGTLCSSSYQDRIVKVWDLNHGIQVGELPGHLATVNCMQIDKKNYNMLITGSKDATLKLWDLNLSREIYLDHSPLKEKTEEIVTPCIHNFELHKDEITALSFDSEALVSGSRDKKIFHWDLTTGKCIQQLDLIFTPTHSDIKMPARSLNNGACLLGTEAPMIGALQCYNSALATGTKDGIVRLWDLRVGKPVRLLEGHTDGITSLKFDSEKLVTGSMDNSVRIWDLRTSSILDVIAYDLPVSSLDFDGKLITVGANEGGVNVFNMERDEHWMTPEPPHSLDGDELSRRIAIVKYKDGFLINGHNDGDINVWTL*" + } + ], + "YKR042W": [ + { + "revision": "051103", + "new_alignment": "-------------------------------------------------------------------------------------MKLSALLALSASTAVLAAPAVHHSDNHHHNDKRAVVTVTQYVNADGAVVIPAATTATSAAADGKVESVAAATTTLSSTAAAATTSAAASSSSSSSSSSSSSSSVGSGDFEDGTISCSDFPSGQGAVSLDWLGLGGWASIMDMNGNTATSCQDGYYCSYACSPGYAKTQWPSEQPSDGRSVGGLYCKNGKLYRSNTDTNSLCVEGQGSAQAVNKVSGSIAICGTDYPGSENMVVPTVVGAGSSQPINVIKEDSYYQWQGKKTSAQYYVNNAGVSVEDGCIWGTEGSGVGNWAPVVLGAGYTDGITYLSIIPNPNNKEAPNFNIKIVATDGSTVNGACSYENGVYSGSGSDGCTVSVTSGSANFVFY*", + "old_alignment": "MCFLLETSASPRSKLSKDFKPQFTLLSSVTKKKKKKVRPHNFQCIHSLNFVYFLFIHSFLFEYNQLLVLPLNKNLPSLNFSRNSSMKLSALLALSASTAVLAAPAVHHSDNHHHNDKRAVVTVTQYVNADGAVVIPAATTATSAAADGKVESVAAATTTLSSTAAAATTSAAASSSSSSSSSSSSSSSVGSGDFEDGTISCSDFPSGQGAVSLDWLGLGGWASIMDMNGNTATSCQDGYYCSYACSPGYAKTQWPSEQPSDGRSVGGLYCKNGKLYRSNTDTNSLCVEGQGSAQAVNKVSGSIAICGTDYPGSENMVVPTVVGAGSSQPINVIKEDSYYQWQGKKTSAQYYVNNAGVSVEDGCIWGTEGSGVGNWAPVVLGAGYTDGITYLSIIPNPNNKEAPNFNIKIVATDGSTVNGACSYENGVYSGSGSDGCTVSVTSGSANFVFY*" + } + ], + "YKR056W": [ + { + "revision": "040305", + "new_alignment": "MYEQFEFSFFFFENSDNKVKYKAHLISSIKRWSIITCMRCFWTVQKSIFKARFFACRNFVKKHNYKLISTMTGSTEMVPPTMKHTVDNKRLSSPLTDSGNRRTKKPKLRKYKAKKVETTSPMGVLEFEVNDLLKSQNLSREQVLNDVTSILNDKSSTDGPIVLQYHREVKNVKVLEITSNGNGLALIDNPVETEKKQVVIIPFGLPGDVVNIKVFKTHPYYVESDLLDVVEKSPMRRDDLIRDKYFGKSSGSQLEFLTYDDQLELKRKTIMNAYKFFAPRLVAEKLLPPFDTTVASPLQFGYRTKITPHFDMPKRKQKELSVRPPLGFGQKGRPQWRKDTLDIGGHGSILDIDECVLATEVLNKGLTNERRKFEQEFKNYKKGATILLRENTTILDPSKPTLEQLTEEASRDENGDISYVEVEDKKNNVRLAKTCVTNPRQIVTEYVDGYTFNFSAGEFFQNNNSILPIVTKYVRDNLQAPAKGDDNKTKFLVDAYCGSGLFSICSSKGVDKVIGVEISADSVSFAEKNAKANGVENCRFIVGKAEKLFESIDTPSENTSVILDPPRKGCDELFLKQLAAYNPAKIIYISCNVHSQARDVEYFLKETENGSAHQIESIRGFDFFPQTHHVESVCIMKRI*-------------------------------------", + "old_alignment": "MYEQFEFSFFFFENSDNKVKYKAHLISSIKRWSIITCMRCFWTVQKSIFKARFFACRNFVKKHNYKLISTMTGSTEMVPPTMKHTVDNKRLSSPLTDSGNRRTKKPKLRKYKAKKVETTSPMGVLEFEVNDLLKSQNLSREQVLNDVTSILNDKSSTDGPIVLQYHREVKNVKVLEITSNGNGLALIDNPVETEKKQVVIIPFGLPGDVVNIKVFKTHPYYVESDLLDVVEKSPMRRDDLIRDKYFGKSSGSQLEFLTYDDQLELKRKTIMNAYKFFAPRLVAEKLLPPFDTTVASPLQFGYRTKITPHFDMPKRKQKELSVRPPLGFGQKGRPQWRKDTLDIGGHGSILDIDECVLATEVLNKGLTNERRKFEQEFKNYKKGATILLRENTTILDPSKPTLEQLTEEASRDENGDISYVEVEDKKNNVRLAKTCVTNPRQIVTEYVDGYTFNFSAGEFFQNNNSILPIVTKYVRDNLQAPAKGDDNKTKFLVDAYCGSGLFSICSSKGVDKVIGVEISADSVSFAEKNAKANGVENCRFIVGKAEKLFESIDTPSENTSVILDPPRKGCDELFLKQLAAY-----------------------------------------------------------IQPRLFTYRVMSIPRHVMSSTSSKKQKTVPPTRLKA*" + } + ], + "YKR058W": [ + { + "revision": "051202", + "new_alignment": "MYKKLAIATLLYSADYLPGVFALGHQVNKLLEEAGKKGDIETCLIVTTSLFNGTLSELAKNILQSIYTKIVLVEPLNCQEESIQKNSENLALLERPELSFALIKARLWELTQFEQVLYLDSDTLPLNKEFLKLFDIMSKQTTSQVGAIADIGWPDMFNSGVMMLIPDADTASVLQNYIFENTSIDGSDQGILNQFFNQNCCTDELVKDSFSREWVQLSFTYNVTIPNLGYQSSPAMNYFKPSIKLIHFIGKHKPWSLWSQKNFIKNEYHDQWNEVYEEFKEEHQLNNEVSKPKISDSDKTETPETITPVDAPPSNEPTTNQEIDTISTVEENVDNQNAEPVPNSDHSPAPNPVPLDFTKWLTTFINKDHLTNQPVNESREYSKENDNNIINSSSNRDQESPPNSTQELNSSYSVVSTQADSDEHQNAEEEDSTTDNASNSGEESHLDDISTAASSNNNVSNQPDGKNFSNSKENNISVESSPSNPEQKRSTDNIQKPSVSTNDLPDDVEPHTSVDDNIQYLEKDKEGYEEFLPDVYESNAIDNEEEFFDDDARDATEGETKTSAVADKQEDMKLTAEETNQPQQEMPNFKFDWEDSDYLSKVERCFPDDIFEYAVE*", + "old_alignment": "----------------------------------------------------------------------------------------------------------------------------------------MSKQTTSQVGAIADIGWPDMFNSGVMMLIPDADTASVLQNYIFENTSIDGSDQGILNQFFNQNCCTDELVKDSFSREWVQLSFTYNVTIPNLGYQSSPAMNYFKPSIKLIHFIGKHKPWSLWSQKNFIKNEYHDQWNEVYEEFKEEHQLNNEVSKPKISDSDKTETPETITPVDAPPSNEPTTNQEIDTISTVEENVDNQNAEPVPNSDHSPAPNPVPLDFTKWLTTFINKDHLTNQPVNESREYSKENDNNIINSSSNRDQESPPNSTQELNSSYSVVSTQADSDEHQNAEEEDSTTDNASNSGEESHLDDISTAASSNNNVSNQPDGKNFSNSKENNISVESSPSNPEQKRSTDNIQKPSVSTNDLPDDVEPHTSVDDNIQYLEKDKEGYEEFLPDVYESNAIDNEEEFFDDDARDATEGETKTSAVADKQEDMKLTAEETNQPQQEMPNFKFDWEDSDYLSKVERCFPDDIFEYAVE*" + } + ], + "YKR087C": [ + { + "revision": "040723", + "new_alignment": "MLRNIIRFKGFGKGTSGGFLKPVSFRVQLTRCY--RYDNGPSYRRFNNGEYSQKSSFKSILLDKSSRKYLALLFGGCSLFYYTHLDKAPVSDRSRFIWVSRPLELTIGNYTYKSIWRQTQQEILPPQHPLSIKIENIFMKIVEAAYKDPSVDNSLLDGIKWEIHVVNDPTASPNAFVLPGGKVFIFSSILPICANDDGIATVLAHEFAHQLARHTAENLSKAPIYSLLGLVLYTVTGAHAINNILLDGFLRMPASRQMETEADYIGLMIMSRACFQPQESIKVWERMANFEKQMNRGGVVNMEFLSTHPASTRRIENMSKWLPKANEIYEQSDCSSMGNYYKSFFSM*", + "old_alignment": "---------------------------------MFRYDNGPSYRRFNNGEYSQKSSFKSILLDKSSRKYLALLFGGCSLFYYTHLDKAPVSDRSRFIWVSRPLELTIGNYTYKSIWRQTQQEILPPQHPLSIKIENIFMKIVEAAYKDPSVDNSLLDGIKWEIHVVNDPTASPNAFVLPGGKVFIFSSILPICANDDGIATVLAHEFAHQLARHTAENLSKAPIYSLLGLVLYTVTGAHAINNILLDGFLRMPASRQMETEADYIGLMIMSRACFQPQESIKVWERMANFEKQMNRGGVVNMEFLSTHPASTRRIENMSKWLPKANEIYEQSDCSSMGNYYKSFFSM*" + } + ], + "YKR090W": [ + { + "revision": "110203", + "new_alignment": "MYNSIYGSPFPKINPKVRYKTALERAGFDTKPRNPFSSQRNASTGSLQASVKSPPITRQRNVSAAPSVPVTMKSAYTASSKSAYSSVKGESDIYPPPVLENSERRSVTPPKNSNFTSSRPSDISRSISRPSERASQEDPFRFERDLDRQAEQYAASRHTCKSPANKEFQAADNFPFNFEQEDAGNTEREQDLSPIERSFMMLTQNDTASVVNSMNQTDNRGVLDQKLGKEQQKEESSIEYESEGQQEDENDIESLNFEPDPKLQMNLENEPLQDDFPEAKQEEKNTEPKIPEINVTRESNTPSLTMNALDSKIYPDDNFSGLESSKEQKSPGVSSSSTKVEDLSLDGLNEKRLSITSSENVETPYTATNLQVEQLIAQLDDVSLSRNAKLDMNGNCLNAVDRKASRFKKSSAYLSGYPSMDIPVTQQTSIVQNSNTNLSRQTILVDKGDVDEDAPSESTTNGGTPIFYKFKQSNVEYSNNEGMGSQETFRTKLPTIEALQLQHKRNITDLREEIDNSKSNDSHVLPNGGTTRYSSDADYKETEPIEFKYPPGEGPCRACGLEVTGKRMFSKKENELSGQWHRECFKCIECGIKFNKHVPCYILGDEPYCQKHYHEENHSICKVCSNFIEGECLENDKVERFHVDCLNCFLCKTAITNDYYIFNGEIPLCGNHDMEALLKEGIDNATSSNDKNNTLSKRRTRLINFN*", + "old_alignment": "MYNSIYGSPFPKINPKVRYKTALERAGFDTKPRNPFSSQRNASTGSLQASVKSPPITRQRNVSAAPSVPVTMKSAYTASSKSAYSSVKGESDIYPPPVLENSERRSVTPPKNSNFTSSRPSDISRSISRPSERASQEDPFRFERDLDRQAEQYAASRHTCKSPANKEFQAADNFPFNFEQEDAGNTEREQDLSPIERSFMMLTQNDTASVVNSMNQTDNRGVLDQKLGKEQQKEESSIEYESEGQQEDENDIESLNFEPDPKLQMNLENEPLQDDFPEAKQEEKNTEPKIPEINVTRESNTPSLTMNALDSKIYPDDNFSGLESSKEQKSPGVSSSSTKVEDLSLDGLNEKRLSITSSENVETPYTATNLQVEQLIAQLDDVSLSRNAKLDMNGNCLNAVDRKASRFKKSSAYLSGYPSMDIPVTQQTSIVQNSNTNLSRQTILVDKGDVDEDAPSESTTNGGTPIFYKFKQSNVEYSNNEGMGSQETFRTKLPTIEALQLQHKRNITDLREEIDNSKSNDSHVLPNGGTTRYSSDADYKETEPIEFKYPPGEGPCRACGLEVTGKRMFSKKENELSGQWHRECFKCIECGIKFNKHVPCYILGDEPYCQKHYHEENHSICKVCSNFIEGECLENDKVERFHVDCLNCFLCKTAITNDYYIFNGEIPLCGNHDMEALLKEGIDNATSTNDKNNTLSKRRTRLINFN*" + } + ], + "YKR091W": [ + { + "revision": "040723", + "new_alignment": "MFLKTPNWETVNETPKSRVLTINELISPNLDTESNSLLATPARKYFKTSISEAQDSPTSAPSPDGNEDPTYQYNVQFHFPGPITPTTPRSKNAEMFPSPTPPLVSPTAVIEEENDDSVREFSRTLKSRLNCAMVKLSKEHEQVALIPPPPTEKIRKGSYSNKFAAKHRRCHSLDESKKFLSSLEDSSAHAAFLKAISSKHAKSNRVDNVNVSPLRWSSHRRTQSTQENSLQEVVAIDTLLKMSSSD*", + "old_alignment": "----------------------------------------------------------------------------------------------MFPSPTPPLVSPTAVIEEENDDSVREFSRTLKSRLNCAMVKLSKEHEQVALIPPPPTEKIRKGSYSNKFAAKHRRCHSLDESKKFLSSLEDSSAHAAFLKAISSKHAKSNRVDNVNVSPLRWSSHRRTQSTQENSLQEVVAIDTLLKMSSSD*" + } + ], + "YKR095W-A": [ + { + "revision": "040206", + "new_alignment": "MTSKREKSLDHT-------LELKIPFETERQATIATKVLSPDPILKPQDFQVDYSSEKNVMLVQFRSIDDRVLRVGVSSIIDSIKTIVEAMDVLS*", + "old_alignment": "------------MNLTVCVLELKIPFETERQATIATKVLSPDPILKPQDFQVDYSSEKNVMLVQFRSIDDRVLRVGVSSIIDSIKTIVEAMDVLS*" + }, + { + "revision": "040402", + "new_alignment": "MTSKREKSLDHTLELKIPFETERQATIATKVLSPDPILKPQDFQVDYSSEKNVMLVQFRSIDDRVLRVGVSSIIDSIKTIVEAMDVLS*", + "old_alignment": "MTSKREKS-----ELKIPFETERQATIATKVLSPDPILKPQDFQVDYSSEKNVMLVQFRSIDDRVLRVGVSSIIDSIKTIVEAMDVLS*" + } + ], + "YKR100C": [ + { + "revision": "040305", + "new_alignment": "MTASTSVAVGCAVGIPVGVGIIIAVCFWFNLQKRYKREEQDDRELERAIYDESGFVSFDNFGPLRDSKDEAALASSELKNPDHTSGSSEGSAHPEEKDGKSRDQEKPLGKKNSKYYVPAYRRKINLLQVRNNNYGNNARQKSVVDLPSINNSSNVSLSSSQRHITKRQISVYDQMVPVISDEGPNFFADPSSDTNTSNDQNKASMIELKHNTRQSSNENLIRNLQNQDFGSYYPRRASSSFLNGNISNASFHTRNSSITSVNKRDALEDVFATPKSAAQSQLPNTFDKDNEGMDADHSVKDSRSAITDKDKDLYKLQNNYDVGNIGEIAEEDQYENEFTNYSQSKREFIESLRPK*---------", + "old_alignment": "MTASTSVAVGCAVGIPVGVGIIIAVCFWFNLQKRYKREEQDDRELERAIYDESGFVSFDNFGPLRDSKDEAALASSELKNPDHTSGSSEGSAHPEEKDGKSRDQEKPLGKKNSKYYVPAYRRKINLLQVRNNNYGNNARQKSVVDLPSINNSSNVSLSSSQRHITKRQISVYDQMVPVISDEGPNFFADPSSDTNTSNDQNKASMIELKHNTRQSSNENLIRNLQNQDFGSYY---------------------------------------------------------------------------------------------------------------------------QGELHPRF*" + } + ], + "YKR101W": [ + { + "revision": "090220", + "new_alignment": "------------------------MLQINSRLAVIDGWLVDTVKRKPINFRSPEVRLLLPNDDDYKKLSQQNLVDWTRLKKDSNSVLVGVKSMELFKHIKLVLREFFLLEDGRIILKRIRSKLRYKVVKKLTCKCCRLYLPKWGTVYIHPMLKDKEKPLAGVCEFSLDVNPDREYPLIEINVSHQYIIIEGFLLYLNERRLYRWNDNNLRSQVGLTKWAHLRKTYNPVSLDILYSLNSNFYFVKDDLLFQLLGKRVFVKFCKVMENGKCGKAPLWYRVKRTTTAKATHIAYAISNSTAPDSFKSKNNDYRFIVREKPIVENTISNLDYSDIKKQQFTEAEVVKRKISADISQIENVHTQFNSQKEKNNIRVNKVSSEVLDQISKFPVSRVTLLLMSAGQDKNYIELVEELARRLEKICIEKTTQSLEEIRDTFQANPEMQASFDKEYYQSIEEYKITLELIKEDLLITLIKQMENMWAAEKKFSTEEEYVSPRFLVADGFLIDLAEEKPINPKDPRLLTLLKDHQRAMIDQMNLVKWNDFKKYQDPIPLKAKTLFKFCKQIKKKFLRGADFKLHTLPTEANLKYEPERMTVLCSCVPILLDDQTVQYLYDDSIIPEFEATSSYATKQSKCGRKMSLQMEPDLLFQEAIRRMRHLTAYDVLRRNYIAAFEELYMGNCND*", + "old_alignment": "MRTIMSIITRRYKQLKNYKIISKKMLQINSRLAVIDGWLVDTVKRKPINFRSPEVRLLLPNDDDYKKLSQQNLVDWTRLKKDSNSVLVGVKSMELFKHIKLVLREFFLLEDGRIILKRIRSKLRYKVVKKLTCKCCRLYLPKWGTVYIHPMLKDKEKPLAGVCEFSLDVNPDREYPLIEINVSHQYIIIEGFLLYLNERRLYRWNDNNLRSQVGLTKWAHLRKTYNPVSLDILYSLNSNFYFVKDDLLFQLLGKRVFVKFCKVMENGKCGKAPLWYRVKRTTTAKATHIAYAISNSTAPDSFKSKNNDYRFIVREKPIVENTISNLDYSDIKKQQFTEAEVVKRKISADISQIENVHTQFNSQKEKNNIRVNKVSSEVLDQISKFPVSRVTLLLMSAGQDKNYIELVEELARRLEKICIEKTTQSLEEIRDTFQANPEMQASFDKEYYQSIEEYKITLELIKEDLLITLIKQMENMWAAEKKFSTEEEYVSPRFLVADGFLIDLAEEKPINPKDPRLLTLLKDHQRAMIDQMNLVKWNDFKKYQDPIPLKAKTLFKFCKQIKKKFLRGADFKLHTLPTEANLKYEPERMTVLCSCVPILLDDQTVQYLYDDSIIPEFEATSSYATKQSKCGRKMSLQMEPDLLFQEAIRRMRHLTAYDVLRRNYIAAFEELYMGNCND*" + } + ], + "YLL054C": [ + { + "revision": "110203", + "new_alignment": "MSIASQKKVKPSFVCLRCKQRKIKCDKLWPTCSKCKASSSICSYEVEPGRINKSPTIENAPHRDIRNITPASMSASGSFTSILNPSTKDWEMKNFAMNLSNAHDKLVVMNNTTIVDSPFAFHSILQHDLYAKALTTCIHERILIDVERHRENVSANNKKRELNLTIGDIGPLFFIDKAALKFIENTSKTSKLYPPIDFLYNTYDYEQAHPEENNDKISINILLEELSKYFLNKNEVDGLIVDFYKTIYPVYPLLEISLFEDNIRELLQLNEFNGYNIVFAGKDSRRKLETITLLTIILAFSYRRLSLSTSHSFKESFGVKSNNLTLLAHKLLALMNVFQYVNEHTLCCLLYFFILRYLNPDQADMYPTHSDILNLKFLENVAIKLGLNEEPFQYTRYVSESDDYPRLFNLRRKLWLGVQFLKFGILIPEGDSDILSLEYLRSFMKTDESLPELFERNYASTNNLDLSLMATAENIYHLHLSLQVLLTSCFPINGPSYLKEVLDNIDKTKDFLNQKFPLILSSLGEPRMKSLHINVPSSLANEESFDFSTFEENETFIANVISYTCTMNIYDSLSLHFENQCFKNALEYKTYYHRFTFTAIQDYLTLLKLISEYFNGSLLHLREPFGFATQKVVRFSIHRLLIFQATLLVRLFYKKDTCDRSSAAMGMLNDRNGRLSRVIEKMIKLMSYHMKLLVEIVISKLEKSYLGSFISVSIFRYIIYLVDTDALSAFISDYWKSDAVMDERYSRIHRIVGLKWGMGRDKSFSFTSKLNNPQFLGSLDLEILEELEKLISAQEFSRNFTEDVDESLQSEIDLMNYDNEALNQLMAIDLDKLLGIFPNLSNF*---", + "old_alignment": "MSIASQKKVKPSFVCLRCKQRKIKCDKLWPTCSKCKASSSICSYEVEPGRINKSPTIENAPHRDIRNITPASMSASGSFTSILNPSTKDWEMKNFAMNLSNAHDKLVVMNNTTIVDSPFAFHSILQHDLYAKALTTCIHERILIDVERHRENVSANNKKRELNLTIGDIGPLFFIDKAALKFIENTSKTSKLYPPIDFLYNTYDYEQAHPEENNDKISINILLEELSKYFLNKNEVDGLIVDFYKTIYPVYPLLEISLFEDNIRELLQLNEFNGYNIVFAGKDSRRKLETITLLTIILAFSYRRLSLSTSHSFKESFGVKSNNLTLLAHKLLALMNVFQYVNEHTLCCLLYFFILRYLNPDQADMYPTHSDILNLKFLENVAIKLGLNEEPFQYTRYVSESDDYPRLFNLRRKLWLGVQFLKFGILIPEGDSDILSLEYLRSFMKTDESLPELFERNYASTNNLDLSLMATAENIYHLHLSLQVLLTSCFPINGPSYLKEVLDNIDKTKDFLNQKFPLILSSLGEPRMKSLHINVPSSLANEESFDFSTFEENETFIANVISYTCTMNIYDSLSLHFENQCFKNALEYKTYYHRFTFTAIQDYLTLLKLISEYFNGSLLHLREPFGFATQKVVRFSIHRLLIFQATLLVRLFYKKDTCDRSSAAMGMLNDRNGRLSRVIEKMIKLMSYHMKLLVEIVISKLEKSYLGSFISVSIFRYIIYLVDTDALSAFISDYWKSDAVMDERYSRIHRIVGLKWGMGRDKSFSFT-----------------------------------------------------------------------------QN*" + } + ], + "YLR154W-A": [ + { + "revision": "051103", + "new_alignment": "MVCIHTENQNQGGFYPFVLLEISVLHEPPLGHLRYRLTDVPPQPNSPPDNVFNPDQPRMGP*-----------------------------------------------------------------------------------------------------------------------------", + "old_alignment": "--------------------------------------------------------------MRDSPTHKEQRAQNTMSDQMPFPFNNFTYFFTLFSKFFSSFHHCTCSLSVSRQYLALDGIYHPLRAAFPNNSTLRRHFTKNRTPRHTGFSPSMTSCSKEHRQGTAPKLPSPNYNSGTEGTRFQI*" + } + ], + "YLR154W-C": [ + { + "revision": "051103", + "new_alignment": "MRDSPTHKEQRAQNTMSDQMPFPFNNFTYFFTLFSKFFSSFHHCTCSLSVSRQYLALDGIYHPLRAAFPNNSTLRRHFTKNRTPRHTGFSPSMTSCSKEHRQGTAPKLPSPNYNSGTEGTRFQI*--------------------------------------------------------------", + "old_alignment": "-----------------------------------------------------------------------------------------------------------------------------MVCIHTENQNQGGFYPFVLLEISVLHEPPLGHLRYRLTDVPPQPNSPPDNVFNPDQPRMGP*" + } + ], + "YLR205C": [ + { + "revision": "040206", + "new_alignment": "MEDSSNTIIPSPTDVGALANRINFQTRDAHNKINTFMGIKMAIAMRHGFIYRQGILAYYYVFDAIEQEIDRLLNDPVTEEELQTSTILKQFWLEDFRRSTQIYKDLKLLYSNTFKSTESLNEFLATFQKPPLLQQFINNIHENIHKEPCTILSYCHVLYLALFAGGKLIRSNLYRRLGLFPNFEKLSQKELVKKGTNFFTFSDLGPTEETRLKWEYKKNYELATRTELTEAQKLQIISVAEGIFDWNFNIVAEIGELNRRELMGKFSFKCITYLYEEWMFNKDSATRRALHTVMLLVLSIIAIWVLYFLVKSFLSIV*", + "old_alignment": "--------------------------------------------MRHGFIYRQGILAYYYVFDAIEQEIDRLLNDPVTEEELQTSTILKQFWLEDFRRSTQIYKDLKLLYSNTFKSTESLNEFLATFQKPPLLQQFINNIHENIHKEPCTILSYCHVLYLALFAGGKLIRSNLYRRLGLFPNFEKLSQKELVKKGTNFFTFSDLGPTEETRLKWEYKKNYELATRTELTEAQKLQIISVAEGIFDWNFNIVAEIGELNRRELMGKFSFKCITYLYEEWMFNKDSATRRALHTVMLLVLSIIAIWVLYFLVKSFLSIV*" + } + ], + "YLR312W-A": [ + { + "revision": "061006", + "new_alignment": "MENSMMFISRSLRRPVTALNCNLQSVRTV----------IYLHKGPRINGLRRDPESYLRNPSGVLFTEVNAKECQDKVRSILQLPKYGINLSNELILQCLTHKSFAHGSKPYNEKLNLLGAQFLKLQTCIHSLKNGSPAESCENGQLSLQFSNLGTKFAKELTSKNTACTFVKLHNLDPFIFWKMRDPIKDGHINGETTIFASVLNAFIGAILSTNGSEKAAKFIQGSLLDKEDLHSLVNIANENVASAKAKISDKENKAFL*", + "old_alignment": "-----------------------------MGSVGKLAYIIYLHKGPRINGLRRDPESYLRNPSGVLFTEVNAKECQDKVRSILQLPKYGINLSNELILQCLTHKSFAHGSKPYNEKLNLLGAQFLKLQTCIHSLKNGSPAESCENGQLSLQFSNLGTKFAKELTSKNTACTFVKLHNLDPFIFWKMRDPIKDGHINGETTIFASVLNAFIGAILSTNGSEKAAKFIQGSLLDKEDLHSLVNIANENVASAKAKISDKENKAFL*" + } + ], + "YLR313C": [ + { + "revision": "040206", + "new_alignment": "MISSELTNDQIIDLISDYKNFKRIIEASVPEDDRRRNQNRQNRNKDLTKLSNVQFWQLTTDVNDELMKRLTDSGADASLNDLDLKRGKAQSKLSRLKDAKFHKLILDIFTEIERRNLHHLDMGTHNNGLDEGDLNFYLNDTLFESFKINDDFMSVNGIISIEVFRELKTQFTLYFQNTLHRIDPVDTTTTRLPILLETIIKIAKLIGDLLPVLSSVSLQSSLENEIVYLKSALSHAITSTRYFLTYGDLIPRIVAQSSISEVIFAFCNIAQIVKIKSTSRDDISRNEGELSDIEAGMKPLKIIEKVKNEKNGKDISSLGDSGSTAVSFPSSGKPITKKSDMPVVVASPSISIIEKSESSIRESGKVRNNTSGETNLASVSPLKNTKNSSRITSEPSPREGLPLKVVSNSRSPSPQGNTLPLIGKFRQDYQASPPKKVITKPVAETAKPYANIPPAADVLYSPTVTKMRKFREKVQKFAPNSGLGLRISTSEENLNNSDVNSTTHNANINNLVEFVESKSMVVLPMAGRAF*", + "old_alignment": "MISSELTNDQIIDLISDYKNFKRIIEASVPEDDRRRNQNRQNRNKDLTKLSNVQFWQLTTDVNDELMKRLTDSGADASLNDLDLKRGKAQSKLSRLKDAKFHKLILDIFTEIERRNLHHLDMGTHNNGLDEGDLNFYLNDTLFESFKINDDFMSVNGIISIEVFRELKTQFTLYFQNTLHRIDPVDTTTTRLPILLETIIKIAKLIGDLLPVLSSVSLQSSLENEIVYLKSALSHAITSTRYFLTYGDLIPRIVAQSSISEVIFAFCNIAQIVKIKSTSRDDISRNEGELSDIEAGMKPLKIIEKVKNEKNGKDISSLGDSGSTAVSFPSSGKPITKKSDMPVVVASPSISIIEKSESSIRESGKVRNNTSGETNLASVSPLKNTKNSSRITSEPSPREGLPLKVVSNSRSPSPQGNTLPLIGKFRQDYQASPPKKVITKPVAETAKPYANIPPAADVLYSPTVTKMRKFREKVQKFAPNSGLGLRISTSEENLNNSDVNSTTHNANINNLVEFVESKSMVVLPMAGRAF*" + }, + { + "revision": "110203", + "new_alignment": "MISSELTNDQIIDLISDYKNFKRIIEASVPEDDRRRNQNRQNRNKDLTKLSNVQFWQLTTDVNDELMKRLTDSGADASLNDLDLKRGKAQSKLSRLKDAKFHKLILDIFTEIERRNLHHLDMGTHNNGLDEGDLNFYLNDTLFESFKINDDFMSVNGIISIEVFRELKTQFTLYFQNTLHRIDPVDTTTTRLPILLETIIKIAKLIGDLLPVLSSVSLQSSLENEIVYLKSALSHAITSTRYFLTYGDLIPRIVAQSSISEVIFAFCNIAQIVKIKSTSRDDISRNEGELSDIEAGMKPLKIIEKVKNEKNGKDISSLGDSGSTAVSFPSSGKPITKKSDMPVVVASPSISIIEKSESSIRESGKVRNNTSGETNLASVSPLKNTKNSSRITSEPSPREGLPLKVVSNSRSPSPQGNTLPLIGKFRQDYQASPPKKVITKPVAETAKPYANIPPAADVLYSPTVTKMRKFREKVQKFAPNSGLGLRISTSEENLNNSDVNSTTHNANINNLVEFVESKSMVVLPMAGRAF*----------------------------------------------------------------------------------------------------------------------------------------", + "old_alignment": "MISSELTNDQIIDLISDYKNFKRIIEASVPEDDRRRNQNRQNRNKDLTKLSNVQFWQLTTDVNDELMKRLTDSGADASLNDLDLKRGKAQSKLSRLKDAKFHKLILDIFTEIERRNLHHLDMGTHNNGLDEGDLNFYLNDTLFESFKINDDFMSVNGIISIEVFRELKTQFTLYFQNTLHRIDPVDTTTTRLPILLETIIKIAKLIGDLLPVLSSVSLQSSLENEIVYLKSALSHAITSTRYFLTYGDLIPRIVAQSSISEVIFAFCNIAQIVKIKSTSRDDISRNEGELSDIEAGMKPLKIIEKVKNEKNGKDISSLGDSGSTAVSFPSSGKPITKKSDMPVVVASPSISIIEKSESSIRESGKVRNNTSGETNLASVSPLKNTKNSSRITSEPSPREGLPLKVVSNSRSPSPQGNTLPLIGKFRQDYQASPPKKVITKPVAETAKPYANIPPAADVLYSPTVTKMRKFREKVQKFAPNSGLGLRISTSEENLNNSDVNSTTHNANINNLVEFVESKSMVVLPMA-----QGILNDVQASKSKLFKSARSVSRLCQNSIEIIPILESVIDMTTKAMVQKSFKLDLGEHCKEIIERLTDCSQKLSELCTYGCDSTKLGKKRFYQKLADILMEVTKRTRELVECVKMANRQTLSQDLSSFFNYRSVQ*" + } + ], + "YLR314C": [ + { + "revision": "110203", + "new_alignment": "MSLKEEQVSIKQDPEQEERQHDQFNDVQIKQESQDHDGVDSQYTNGTQNDDSERFEAAESDVKVEPGLGMGITSSQSEKGQVLPDQPEIKFIRRQINGYVGFANLPKQWHRRSIKNGFSFNLLCVGPDGIGKTTLMKTLFNNDDIEANLVKDYEEELANDQEEEEGQGEGHENQSQEQRHKVKIKSYESVIEENGVKLNLNVIDTEGFGDFLNNDQKSWDPIIKEIDSRFDQYLDAENKINRHSINDKRIHACLYFIEPTGHYLKPLDLKFMQSVYEKCNLIPVIAKSDILTDEEILSFKKTIMNQLIQSNIELFKPPIYSNDDAENSHLSERLFSSLPYAVIGSNDIVENYSGNQVRGRSYPWGVIEVDNDNHSDFNLLKNLLIKQFMEELKERTSKILYENYRSSKLAKLGIKQDNSVFKEFDPISKQQEEKTLHEAKLAKLEIEMKTVFQQKVSEKEKKLQKSETELFARHKEMKEKLTKQLKALEDKKKQLELSINSASPNVNHSPVPTKKKGFLR*", + "old_alignment": "MSLKEEQVSIKQDPEQEERQHDQFNDVQIKQESQDHDGVDSQYTNGTQNDDSERFEAAESDVKVEPGLGMGITSSQSEKGQVLPDQPEIKFIRRQINGYVGFANLPKQWHRRSIKNGFSFNLLCVGPDGIGKTTLMKTLFNNDDIEANLVKDYEEELANDQEEEEGQGEGHENQSQEQRHKVKIKSYESVIEENGVKLNLNVIDTEGFGDFLNNDQKSWDPIIKEIDSRFDQYLDAENKINRHSINDKRIHACLYFIEPTGHYLKPLDLKFMQSVYEKCNLIPVIAKSDILTDEEILSFKKTIMNQLIQSNIELFKPPIYSNDDAENSHLSERLFSSLPYAVIGSNDIVENYSGNQVRGRSYPWGVIEVDNDNHSDFNLLKNLLIKQFMEELKERTSKILYENYRSSKLAKLGIKQDNSVFKEFDPISKQLEEKTLHEAKLAKLEIEMKTVFQQKVSEKEKKLQKSETELFARHKEMKEKLTKQLKALEDKKKQLELSINSASPNVNHSPVPTKKKGFLR*" + } + ], + "YLR318W": [ + { + "revision": "110203", + "new_alignment": "MKILFEFIQDKLDIDLQTNSTYKENLKCGHFNGLDEILTTCFALPNSRKIALPCLPGDLSHKAVIDHCIIYLLTGELYNNVLTFGYKIARNEDVNNSLFCHSANVNVTLLKGAAWKMFHSLVGTYAFVDLLINYTVIQFNGQFFTQIVGNRCNEPHLPPKWAQRSSSSSATAAQIKQLTEPVTNKQFLHKLNINSSSFFPYSKILPSSSSIKKLTDLREAIFPTNLVKIPQRLKVRINLTLQKLLKRHKRLNYVSILNSICPPLEGTVLDLSHLSRQSPKERVLKFIIVILQKLLPQEMFGSKKNKGKIIKNLNLLLSLPLNGYLPFDSLLKKLRLKDFRWLFISDIWFTKHNFENLNQLAICFISWLFRQLIPKIIQTFFYCTEISSTVTIVYFRHDTWNKLITPFIVEYFKTYLVENNVCRNHNSYTLSNFNHSKMRIIPKKSNNEFRIIAIPCRGADEEEFTIYKENHKNAIQPTQKILEYLRNKRPTSFTKIYSPTQIADRIKEFKQRLLKKFNNVLPELYFMKFDVKSCYDSIPRMECMRILKDALKNENGFFVRSQYFFNTNTGVLKLFNVVNASRVPKPYELYIDNVRTVHLSNQDVINVVEMEIFKTALWVEDKCYIREDGLFQGSSLSAPIVDLVYDDLLEFYSEFKASPSQDTLILKLADDFLIISTDQQQVINIKKLAMGGFQKYNAKANRDKILAVSSQSDDDTVIQFCAMHIFVKELEVWKHSSTMNNFHIRSKSSKGIFRSLIALFNTRISYKTIDTNLNSTNTVLMQIDHVVKNISECYKSAFKDLSINVTQNMQFHSFLQRIIEMTVSGCPITKCDPLIEYEVRFTILNGFLESLSSNTSKFKDNIILLRKEIQHLQAYIYIYIHIVN*", + "old_alignment": "MKILFEFIQDKLDIDLQTNSTYKENLKCGHFNGLDEILTTCFALPNSRKIALPCLPGDLSHKAVIDHCIIYLLTGELYNNVLTFGYKIARNEDVNNSLFCHSANVNVTLLKGAAWKMFHSLVGTYAFVDLLINYTVIQFNGQFFTQIVGNRCNEPHLPPKWVQRSSSSSATAAQIKQLTEPVTNKQFLHKLNINSSSFFPYSKILPSSSSIKKLTDLREAIFPTNLVKIPQRLKVRINLTLQKLLKRHKRLNYVSILNSICPPLEGTVLDLSHLSRQSPKERVLKFIIVILQKLLPQEMFGSKKNKGKIIKNLNLLLSLPLNGYLPFDSLLKKLRLKDFRWLFISDIWFTKHNFENLNQLAICFISWLFRQLIPKIIQTFFYCTEISSTVTIVYFRHDTWNKLITPFIVEYFKTYLVENNVCRNHNSYTLSNFNHSKMRIIPKKSNNEFRIIAIPCRGADEEEFTIYKENHKNAIQPTQKILEYLRNKRPTSFTKIYSPTQIADRIKEFKQRLLKKFNNVLPELYFMKFDVKSCYDSIPRMECMRILKDALKNENGFFVRSQYFFNTNTGVLKLFNVVNASRVPKPYELYIDNVRTVHLSNQDVINVVEMEIFKTALWVEDKCYIREDGLFQGSSLSAPIVDLVYDDLLEFYSEFKASPSQDTLILKLADDFLIISTDQQQVINIKKLAMGGFQKYNAKANRDKILAVSSQSDDDTVIQFCAMHIFVKELEVWKHSSTMNNFHIRSKSSKGIFRSLIALFNTRISYKTIDTNLNSTNTVLMQIDHVVKNISECYKSAFKDLSINVTQNMQFHSFLQRIIEMTVSGCPITKCDPLIEYEVRFTILNGFLESLSSNTSKFKDNIILLRKEIQHLQAYIYIYIHIVN*" + } + ], + "YLR329W": [ + { + "revision": "060113", + "new_alignment": "MARDITFLTVFLESCGAVNNDEAGKLLSAWTSTVRIEGPESTDSNSLYIPLLPPGMLKIKLNFKMNDRLVTEEQELFTKLREIVGSSIRFWEEQLFYQVQDVSTIENHVILSLKCTILTDAQISTFISKPRELHTHAKGYPEIYYLSELSTTVNFFSKEGNYVEISQVIPHFNEYFSSLIVSQLEFEYPMVFSMISRLRLKWQQSSLAPISYALTSNSVLLPIMLNMIAQDKSSTTAYQILCRRRGPPIQNFQIFSLPAVTYNK*", + "old_alignment": "----------------------------------------------------------------MNDRLVTEEQELFTKLREIVGSSIRFWEEQLFYQVQDVSTIENHVILSLKCTILTDAQISTFISKPRELHTHAKGYPEIYYLSELSTTVNFFSKEGNYVEISQVIPHFNEYFSSLIVSQLEFEYPMVFSMISRLRLKWQQSSLAPISYALTSNSVLLPIMLNMIAQDKSSTTAYQILCRRRGPPIQNFQIFSLPAVTYNK*" + } + ], + "YLR389C": [ + { + "revision": "040206", + "new_alignment": "MGVSLLASSSAFVTKPLLTQLVHLSPISLNFTVRRFKPFTCLSRYYTTNPYNMTSNFKTFNLDFLKPDLDERSYRFIELPNKLKALLIQDPKADKAAASLDVNIGAFEDPKNLPGLAHFCEHLLFMGSEKFPDENEYSSYLSKHGGSSNAYTASQNTNYFFEVNHQHLFGALDRFSGFFSCPLFNKDSTDKEINAVNSENKKNLQNDIWRIYQLDKSLTNTKHPYHKFSTGNIETLGTLPKENGLNVRDELLKFHKNFYSANLMKLCILGREDLDTLSDWTYDLFKDVANNGREVPLYAEPIMQPEHLQKIIQVRPVKDLKKLEISFTVPDMEEHWESKPPRILSHLIGHEGSGSLLAHLKKLGWANELSAGGHTVSKGNAFFAVDIDLTDNGLTHYRDVIVLIFQYIEMLKNSLPQKWIFNELQDISNATFKFKQAGSPSSTVSSLAKCLEKDYIPVSRILAMGLLTKYEPDLLTQYTDALVPENSRVTLISRSLETDSAEKWYGTAYKVVDYPADLIKNMKSPGLNPALTLPRPNEFVSTNFKVDKIDGIKPLDEPVLLLSDDVSKLWYKKDDRFWQPRGYIYLSFKLPHTHASIINSMLSTLYTQLANDALKDVQYDAACADLRISFNKTNQGLAITASGFNEKLIILLTRFLQGVNSFEPKKDRFEILKDKTIRHLKNLLYEVPYSQMSNYYNAIINERSWSTAEKLQVFEKLTFEQLINFIPTIYEGVYFETLIHGNIKHEEALEVDSLIKSLIPNNIHNLQVSNNRLRSYLLPKGKTFRYETALKDSQNVNSCIQHVTQLDVYSEDLSALSGLFAQLIHEPCFDTLRTKEQLGYVVFSSSLNNHGTANIRILIQSEHTTPYLEWRINNFYETFGQVLRDMPEEDFEKHKEALCNSLLQKFKNMAEESARYTAAIYLGDYNFTHRQKKAKLVANITKQQMIDFYENYIMSENASKLILHLKSQVENKELNENELDTAKYPTGQLIEDVGAFKSTLFVAPVRQPMKDFEISAPPKLNNSSESE*-------------------", + "old_alignment": "MGVSLLASSSAFVTKPLLTQLVHLSPISLNFTVRRFKPFTCLSRYYTTNPYNMTSNFKTFNLDFLKPDLDERSYRFIELPNKLKALLIQDPKADKAAASLDVNIGAFEDPKNLPGLAHFCEHLLFMGSEKFPDENEYSSYLSKHGGSSNAYTASQNTNYFFEVNHQHLFGALDRFSGFFSCPLFNKDSTDKEINAVNSENKKNLQNDIWRIYQLDKSLTNTKHPYHKFSTGNIETLGTLPKENGLNVRDELLKFHKNFYSANLMKLCILGREDLDTLSDWTYDLFKDVANNGREVPLYAEPIMQPEHLQKIIQVRPVKDLKKLEISFTVPDMEEHWESKPPRILSHLIGHEGSGSLLAHLKKLGWANELSAGGHTVSKGNAFFAVDIDLTDNGLTHYRDVIVLIFQYIEMLKNSLPQKWIFNELQDISNATFKFKQAGSPSSTVSSLAKCLEKDYIPVSRILAMGLLTKYEPDLLTQYTDALVPENSRVTLISRSLETDSAEKWYGTAYKVVDYPADLIKNMKSPGLNPALTLPRPNEFVSTNFKVDKIDGIKPLDEPVLLLSDDVSKLWYKKDDRFWQPRGYIYLSFKLPHTHASIINSMLSTLYTQLANDALKDVQYDAACADLRISFNKTNQGLAITASGFNEKLIILLTRFLQGVNSFEPKKDRFEILKDKTIRHLKNLLYEVPYSQMSNYYNAIINERSWSTAEKLQVFEKLTFEQLINFIPTIYEGVYFETLIHGNIKHEEALEVDSLIKSLIPNNIHNLQVSNNRLRSYLLPKGKTFRYETALKDSQNVNSCIQHVTQLDVYSEDLSALSGLFAQLIHEPCFDTLRTKEQLGYVVFSSSLNNHGTANIRILIQSEHTTPYLEWRINNFYETFGQVLRDMPEEDFEKHKEALCNSLLQKFKNMAEESARYTAAIYLGDYNFTHRQKKAKLVANITKQQMIDFYENYIMSENASKLILHLKSQVE----------------------------------------------------------TKSSMKMNWTPLSIQLAS*" + } + ], + "YLR401C": [ + { + "revision": "060113", + "new_alignment": "MEQNAEKRSIVGDDNSTVKRQDTSPSKGIAHIKPEYIVPLKQNENQKVAIYDEEMSSDRMTNEFAGGTNKKNKNGRGKKRGQNKNRDNRQVKEQNVLCPRLIHGDISKCSFGDNCRFVHDINLYLSTKKPEVESNIFPSCPVFNSLGFCPMGFKCRFLSSHLNKEDNILISKKEIDPDAQTIWSVKGEVNHISPERKLDLIKRRFPFTKSNEILEIIDSFQQECRDSMKPEEEVESTPQLKKQDPDVEQPVAPQVEQRNKELSEHRMKQREVYLKYKDTRYFAQEKKPLDLYHKKIVSPLTTVGNLPYRRLMRKLGADVTYSEMALAVPLIQGTNSEWALPKAHTSEFPGFGVQVACSKAWQAAKAAEALANSVSEISEINLNSGCPIDLLYRQGSGSALLDNPARMIRCLNAMNYVSKDIPITVKIRTGTKEGHPIAEGLVKRLVNETDVAAITLHGRSRQQRYTKSADWDYVSQVADTLRSAEADFIETEQGKEGRDSKNRIQFVGNGDVNNFEDWYRYLNGNENIDSVMVARGALIKPWIFEEVESQQYLDKTSTERLDILRDYAQFSMEHWGTDEYGISQCRRFFCEFMSFFHRYVPMGICERYPVKLNERPPNWCGRDELETLMGSTDVNDWIKLSDLFFGKTDENFVFVPKHKSSSYANRDS*---------", + "old_alignment": "MEQNAEKRSIVGDDNSTVKRQDTSPSKGIAHIKPEYIVPLKQNENQKVAIYDEEMSSDRMTNEFAGGTNKKNKNGRGKKRGQNKNRDNRQVKEQNVLCPRLIHGDISKCSFGDNCRFVHDINLYLSTKKPEVESNIFPSCPVFNSLGFCPMGFKCRFLSSHLNKEDNILISKKEIDPDAQTIWSVKGEVNHISPERKLDLIKRRFPFTKSNEILEIIDSFQQECRDSMKPEEEVESTPQLKKQDPDVEQPVAPQVEQRNKELSEHRMKQREVYLKYKDTRYFAQEKKPLDLYHKKIVSPLTTVGNLPYRRLMRKLGADVTYSEMALAVPLIQGTNSEWALPKAHTSEFPGFGVQVACSKAWQAAKAAEALANSVSEISEINLNSGCPIDLLYRQGSGSALLDNPARMIRCLNAMNYVSKDIPITVKIRTGTKEGHPIAEGLVKRLVNETDVAAITLHGRSRQQRYTKSADWDYVSQVADTLRSAEADFIETEQGKEGRDSKNRIQFVGNGDVNNFEDWYRYLNGNENIDSVMVARGALIKPWIFEEVESQQYLDKTSTERLDILRDYAQFSMEHWGTDEYGISQCRRFFCEFMSFFHRYVP--------------------------------------------------------------------WVFVKDTL*" + } + ], + "YLR402W": [ + { + "revision": "110203", + "new_alignment": "------------------------------------------------------------------------------------------------------------MHSLKGDFVSNNVTISHCHLPLSPATAIAIIICFRIVTDLKLSRLTYAFYLPGPISFLPVIPI*", + "old_alignment": "MKLFKNGARAFCILNFPSLFGATIPLPGLSALSLFIPCTITRQFLRHVLWNDGTGGDWVPNSAAFPCARWSAVGKRNKTRLRRARGQDFVSYIIRSNFESIEIWNKWAMHSLKGDFVSNNVTISHCHLPLSPATAIAIIICFRIVTDLKLSRLTYAFYLPGPISFLPVIPI*" + } + ], + "YLR407W": [ + { + "revision": "110203", + "new_alignment": "MTVSTSKTPKKNIKYTLTHTLQKWKETLKKITHETLSSIDDSSGSDEKIEALFTVSQPAVVASKGIDRDSGASMSQVGGGVNSTLEMKLTDESEESSSANNTTTTASHTLSNSKKSTQNFENYNVVEERIKLAQKSKAPFCNAEKIWKRRRQLWTQPTEQSESANNDGVTRREIFQAIPQEYYARVYKKLVVDDKPLREPLNLEDALQVINAGWTETRKWANAAKGMP*-----", + "old_alignment": "MTVSTSKTPKKNIKYTLTHTLQKWKETLKKITHETLSSIDDSSGSDEKIEALFTVSQPAVVASKGIDRDSGASMSQVGGGVNSTLEMKLTDESEESSSANNTTTTASHTLSNSKKSTQNFENYNVVEERIKLAQKSKAPFCNAEKIWKRRRQLWTQPTEQSESANNDGVTRREIFQAIPQEYYARVYKKLVVDDKPLREPLNLEDALQVINAGWTETRKWANAAK----ACHD*" + } + ], + "YLR445W": [ + { + "revision": "040206", + "new_alignment": "MSDTTEVPRQSSENDQDNNLERTNSLKSPDVTNNIPSLFKLAAEWQINNPQETFQNHILENDVLKKINEITHLIRESYKDLSSQDGMMSKQQQEKMDWDLFCTVPVNIIEQYTKDMDEIYEKMERLAKQQRLWCESAFQIDVERCGDSILNAETWMKKKERHLEYKNIEMERSANEIKETIQRLTDDR*-------", + "old_alignment": "MSDTTEVPRQSSENDQDNNLERTNSLKSPDVTNNIPSLFKLAAEWQINNPQETFQNHILENDVLKKINEITHLIRESYKDLSSQDGMMSKQQQEKMDWDLFCTVPVNIIEQYTKDMDEIYEKMERLAK-------------------------------------------------------------VSIGRN*" + } + ], + "YML036W": [ + { + "revision": "070713", + "new_alignment": "MVVSIIPQFPDIKVSLALFEQVKNAKEIRSKMSELSTSFAFIDPRLVCSGEQMYSAIYKTLIEVKYNKMRTRNLNSECVLCLSPTSNISDAFLKFGIKDDSSQLICLKFHTNTDDVDKEQLRTIMTSIVKGQEIEFNDDNLSRFYDEALIRKIYKLSDDFKPQDVNGLSRALVDAIQLRGV*--------------------------------------", + "old_alignment": "MVVSIIPQFPDIKVSLALFEQVKNAKEIRSKMSELSTSFAFIDPRLVCSGEQMYSAIYKTLIEVKYNKMRTRNLNSECVLCLSPTSNISDAFLKFGIKDDSSQLICLKFHTNTDDVDKEQLRTIMTSIVKGQEIEFNDDNLSRFYDEALIRK------------------------------VCFNNKFEVKTSTASPETHCTNFTFVFLLFCFYLLDL*" + } + ], + "YML017W": [ + { + "revision": "040206", + "new_alignment": "MGTNNTSNNNGTTKKMSLEEFLGNDTLGESVWDEEDINLDAISNTTNIDILKQTKAGEHQRDGHQQHPHGGHGPMNRSRFSNAGPFGGGSMGDFANHHHPLQHQQGPPYIVKFSDLPPRFSNFDIEDLFQAKFTKFIKFKLFWEINKNPSISTLKSGSIFDQNFKRDSKVAFVELYTSRDMDKILNYWTTPLKEIYHITTAPAEFEDFKDYSTKVKLLTDPKDDAGKPFITKTQRSKSNPFGSAKPVDTQSKILDIEEKMENLHVEDTTTLRASLIPSSDSMATTATGSKITILKKQTPTEEESHSATPTPKPLSYSEVVERSVVNETSKKGTPLSKLDSPALELQSKPDKSDEFKGGDEQGFEKGGDDKAQLDVSNDKDKGSETDVDKQFTFKNVEREHSMSRTKYNGNHNNNNGNFRGSNRYRGGPNGSSYKGGHNNRGNRGGYRGGSSYNNNNNNTNDNNNNNNNSSSNNNNGSRYHDRQNNEEGLTSDSSLDASGNKKNDFTNSTSNTQQYSIFKPASGFLGQGNNDSIRNNGRGNYNSSGMNGGSRGRGFGRGRGFGRGAYNNRGSRGGRGSSGNYSNYNNRTTDMPL*", + "old_alignment": "---------------MSLEEFLGNDTLGESVWDEEDINLDAISNTTNIDILKQTKAGEHQRDGHQQHPHGGHGPMNRSRFSNAGPFGGGSMGDFANHHHPLQHQQGPPYIVKFSDLPPRFSNFDIEDLFQAKFTKFIKFKLFWEINKNPSISTLKSGSIFDQNFKRDSKVAFVELYTSRDMDKILNYWTTPLKEIYHITTAPAEFEDFKDYSTKVKLLTDPKDDAGKPFITKTQRSKSNPFGSAKPVDTQSKILDIEEKMENLHVEDTTTLRASLIPSSDSMATTATGSKITILKKQTPTEEESHSATPTPKPLSYSEVVERSVVNETSKKGTPLSKLDSPALELQSKPDKSDEFKGGDEQGFEKGGDDKAQLDVSNDKDKGSETDVDKQFTFKNVEREHSMSRTKYNGNHNNNNGNFRGSNRYRGGPNGSSYKGGHNNRGNRGGYRGGSSYNNNNNNTNDNNNNNNNSSSNNNNGSRYHDRQNNEEGLTSDSSLDASGNKKNDFTNSTSNTQQYSIFKPASGFLGQGNNDSIRNNGRGNYNSSGMNGGSRGRGFGRGRGFGRGAYNNRGSRGGRGSSGNYSNYNNRTTDMPL*" + } + ], + "YMR059W": [ + { + "revision": "060512", + "new_alignment": "--------------------MATTDIISLVKNNLLYFQMWTEVEILQDDLSWKGNSLRLLRGRPPHKLSNDVDTEHENSLSSPRPLEFILPINMSQYKENFLTLECLSQTFTHLCSPSTERILLAIINDDGTIVYYFVYKGVRKPKRN*", + "old_alignment": "MKDIINCRREITSRRLRKIRMATTDIISLVKNNLLYFQMWTEVEILQDDLSWKGNSLRLLRGRPPHKLSNDVDTEHENSLSSPRPLEFILPINMSQYKENFLTLECLSQTFTHLCSPSTERILLAIINDDGTIVYYFVYKGVRKPKRN*" + } + ], + "YMR147W": [ + { + "revision": "210421", + "new_alignment": "MAARNRRKNNKKKSLLVTSAAQEKNATYVLVAEELHKKTIDLNMGTETPLTENHENPIPAKEFKHQQKLEPIDEHDDGEDELSIKFKSMTKSSGPITEAEVQKLLLSYAFTSAAIQEDENEKESRHYPIKPPSPSASSLSAYFQSFVEKCKQVFYNFSLQTVEKLNALQNSLYEVFWIIFIYLNYWFPNVGDYVSNTFGQQDSIIIRISLSKSHFRALREKSSQKVQQAVKNIYFCFQEKPYLTAFKVSFAIGLVIPCSLLFLIMVSTATFFFFVYLTLFVVIGFFSSLFIIPLLGISFVFAIGVVSFGFCSNMSFKMAQLIYVRADAFLKKVLDKMALQTQPAQLQEPQEPLSTLRPVSNPTIPSPLRQTARPSKFVTEEDVIFEPVSAQSAIARSLETTANKAGNKFQLS*------------------------------", + "old_alignment": "MAARNRRKNNKKKSLLVTSAAQEKNATYVLVAEELHKKTIDLNMGTETPLTENHENPIPAKEFKHQQKLEPIDEHDDGEDELSIKFKSMTKSSGPITEAEVQKLLLSYAFTSAAIQEDENEKESRHYPIKPPSPSASSLSAYFQSFVEKCKQVFYNFSLQTVEKLNALQNSLYEVFWIIFIYLNYWFPNVGDYV---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------RYVCRSFSRHNEIAQLLTRIFTYNINHLH*" + } + ], + "YMR242C": [ + { + "revision": "070713", + "new_alignment": "------MAHFKEYQVIGRRLPTESVPEPKLFRMRIFASNEVIAKSRYWYFLQKLHKVKKASGEIVSINQINEAHPTKVKNFGVWVRYDSRSGTHNMYKEIRDVSRVAAVETLYQDMAARHRARFRSIHILKVAEIEKTADVKRQYVKQFLTKDLKFPLPHRVQKSTKTFSYKRPSTFY*", + "old_alignment": "MPQKWKMAHFKEYQVIGRRLPTESVPEPKLFRMRIFASNEVIAKSRYWYFLQKLHKVKKASGEIVSINQINEAHPTKVKNFGVWVRYDSRSGTHNMYKEIRDVSRVAAVETLYQDMAARHRARFRSIHILKVAEIEKTADVKRQYVKQFLTKDLKFPLPHRVQKSTKTFSYKRPSTFY*" + } + ], + "YMR262W": [ + { + "revision": "110203", + "new_alignment": "MNKLVDAHCHVITDPDNTFCGDDGGSQGTLRCVMSSNPYDWNNLKKLAGRSTSKNDICVGFGVHPWYSHLFYVGSRRDKVSHYQDVLEYKNEEQFDSLVQVLPEPLDLEEYIKREFNDTLVSVIGEIGLDKLFRLPANGFYMQNEKARLTTVKVKLSHQETVFRRFCRLARHTSKPISIHDVKCHGKLNDICNEELLTYHSVKICLHSYTGSKETLLGQWLKKFPPDRIFVSLSKWINFKDPEEGDALVRSLPSTCILTETDYPIDNPDPSYQKALTEQLQYLNAQIARAWDETLDASQAALRVYENFQKFIK*", + "old_alignment": "MNKLVDAHCHVITDPDNTFCGDDGGSQGTLRCVMSSNPYDWNNLKKLAGRSTSKNDICVGFGVHPWYSHLFYVGSRRDKVSHYQDVLEYKNEEQFDSLVQVLPEPLDLEEYIKREFNDTLVSVIGEIGLDKLFRLPANGFYMQNEKARLTTVKVKLSHQETVFRRFWRLARHTSKPISIHDVKCHGKLNDICNEELLTYHSVKICLHSYTGSKETLLGQWLKKFPPDRIFVSLSKWINFKDPEEGDALVRSLPSTCILTETDYPIDNPDPSYQKALTEQLQYLNAQIARAWDETLDASQAALRVYENFQKFIK*" + } + ], + "YMR269W": [ + { + "revision": "040305", + "new_alignment": "MDSKEYLISYGWKEGEAFREGGLKRPILVKHKRDKKGLGNAPGGNDGEAWWERLFDGHLKNLDVSTDSNNGSIKFT-------QNEAVATAVSKSSSPLYRWFVKGEGLKGTITNLGKKEEASFVVSSASSSKGKKRRRRDEDDNKVKRKKLKKDKKTSNDSESKKKKKKKSKKESKKGKKSKHSSDEGDKSKHKKSKKSKKHKKEESSARRDRKEHI*", + "old_alignment": "----------------------------------------------------------------------------MAVLNLLQNEAVATAVSKSSSPLYRWFVKGEGLKGTITNLGKKEEASFVVSSASSSKGKKRRRRDEDDNKVKRKKLKKDKKTSNDSESKKKKKKKSKKESKKGKKSKHSSDEGDKSKHKKSKKSKKHKKEESSARRDRKEHI*" + } + ], + "YMR290W-A": [ + { + "revision": "110203", + "new_alignment": "MAFKVGCDNFSSSNFSTQVVCSPSGAALFCFEVLFSSTTGSSVDSESLERLFDGVAILLLLILLSLSNYYSIQLSNSYVLKYRVYTIKSHLIAKANIEKKKKKKKKKQIKNFQFG*", + "old_alignment": "MAFKVGCDNFSSSNFSTQVVCSPSGAALFCFEVLFSSTTGSSVDSESLERLFDGVAILLLLILLSLSNYYSIQLSNSYVLKYRVYTIKSHLIAKANIEKKKKKKRKRQIKNFQFG*" + } + ], + "YMR299C": [ + { + "revision": "110203", + "new_alignment": "MDNCNAWDKLLSQNESTINSTETATITAIIYSPSSKTLHQFINICFPEGSNSILDTTLINYATIGWTNDLKENYSVDVYTLIRNTDDALDLLKPFLQEHSSKVRWLILLDWTLNDQKLWLNELSYAFNKIKQLNDDNEFSVWCLNSGEILNLQRHTTVWQSVHIDFILQTLRSFCYFNDSSLFYICEDHTEEKREEAQRLKYQELLKHFCEDRDMKDHIEMVKRSEILIPKGCDSIGLIKTVDERFEPTEVKEQHFLARYMDFIPTIDKIREDRKTTSGIDLDKLYPLEVFKVNIQEELGKMFAKYRENSRI*", + "old_alignment": "MDNCNAWDKLLSQNESTINSTETATITAIIYSPSSKTLHQFINICFPEGSNSILDTTLINYATIGWTNDLKENYSVDVYTLIRNTDDALDLLKPFLQEHSSKVRWLILLDWTLNDQKLWLNELSYAFNKIKQLNDDNEFSVWCLNSGEILNLQRHTTVWQSVHIDFILQTLRSFCYFNDSSLFYICEDHTEEKREEAQRLKYQELLKHFCEDRDMKDHIEMVTRSEILIPKGCDSIGLIKTVDERFEPTEVKEQHFLARYMDFIPTIDKIREDRKTTSGIDLDKLYPLEVFKVNIQEELGKMFAKYRENSRI*" + } + ], + "YMR317W": [ + { + "revision": "110203", + "new_alignment": "MGSSGSKSTTATTTSHSSTTTTSSTTSTTTPTTTSTTSTTSTKVTTSPEIIVSSSSTLVSSVVPEFTSSSSLSSDTIASILSSESLVSIFSSLSYTSSDISSTSVNDVESSTSGPSNSYSALSSTNAQLSSSTTETDSISSSAIQTSSPQTSSSNGGGSSSEPLGKSSVLETTASSSDTTAVTSSTFTTLTDVSSSPKISSSGSAVTSVGTTSDASKEVFSSSTSDVSSLLSSTSSPASSTISETLPFSSTILSITSSPVSSEAPSATSS-VISSEASWATSSSVSSEAPLATSSVVSSEAPSSTSSVVSSEAPSSTSSSVSSEISSTTSSSVSSEAPLATSSVVSSEAPSSTSSSVSSEISSTTSSSVSSEAPLATSSVVSSEAPSSTSSSVSSEAPSSTSSSVSSEAPSSTSSSVSSEISSTKSSVMSSEVSSATSSLVSSEAPSAISSLASSRLFSSKNTSVTSTLVATEASSVTSSLRPSSETLASNSIIESSLSTGYNSTVSTTTSAASSTLGSKVSSSNSRMATSKTSSTSSDLSKSSVIFGNSSTVTTSPSASISLTASPLPSVWSDITSSEASSISSNLASSSAPSDNNSTIASASLIVTKTKNSVVSSIVSSITSSETTNESNLATSSTSLLSNKATARSLSTSNATSASNVPTGTFSSMSSHTSVITPGFSTSSASLAINSTVVSSSLAGYSFSTPESSPTTSTLVTSEAPSTVSSMTTSAPFINNSTSARPSPSTASFITESTSSISSVPLASGDVTSSLAAHNLTTFSAPSTSSAQLVSKSTTSSSILVTPRIDRSGNSSTASRIATSLPNKTTFVSSLSSTSAHARNIFNSTVLATAKQIETLTSTVNCSNPTPNYNITKTVIVSRETTAIGTVTSCSGGCTKNRKSTTLITITDIDASTVTTCPEKEVTSTTSGDEAEHTTSTKISNFETSTFSESFKDMKTSQETKKAKPGSETVRSSSSFVEKTSPTTKASPSTSPSESKAAGNTSVATNASPSTSPSESQGTGSTSVEGAKSKSTKNSEGVSTTKAKNTSTVAKSSTESPIGRGETTLETIIVSSQKSLLTSQLSSSTEKVNRSTTKPTAAIHGTSSSAKQSTTYTVSTAKENTGASLNINMKAFVIGAIALVA*", + "old_alignment": "MGSSGSKSTTATTTSHSSTTTTSSTTSTTTPTTTSTTSTTSTKVTTSPEIIVSSSSTLVSSVVPEFTSSSSLSSDTIASILSSESLVSIFSSLSYTSSDISSTSVNDVESSTSGPSNSYSALSSTNAQLSSSTTETDSISSSAIQTSSPQTSSSNGGGSSSEPLGKSSVLETTASSSDTTAVTSSTFTTLTDVSSSPKISSSGSAVTSVGTTSDASKEVFSSSTSDVSSLLSSTSSPASSTISETLPFSSTILSITSSPVSSEAPSATSSSV-SSEASSSTSSSVSSEAPLATSSVVSSEAPSSTSSVVSSEAPSSTSSSVSSEISSTTSSSVSSEAPLATSSVVSSEAPSSTSSSVSSEISSTTSSSVSSEAPLATSSVVSSEAPSSTSSSVSSEAPSSTSSSVSSEAPSSTSSSVSSEISSTKSSVMSSEVSSATSSLVSSEAPSAISSLASSRLFSSKNTSVTSTLVATEASSVTSSLRPSSETLASNSIIESSLSTGYNSTVSTTTSAASSTLGSKVSSSNSRMATSKTSSTSSDLSKSSVIFGNSSTVTTSPSASISLTASPLPSVWSDITSSEASSISSNLASSSAPSDNNSTIASASLIVTKTKNSVVSSIVSSITSSETTNESNLATSSTSLLSNKATARSLSTSNATSASNVPTGTFSSMSSHTSVITPGFSTSSASLAINSTVVSSSLAGYSFSTPESSPTTSTLVTSEAPSTVSSMTTSAPFINNSTSARPSPSTASFITESTSSISSVPLASGDVTSSLAAHNLTTFSAPSTSSAQLVSKSTTSSSILVTPRIDRSGNSSTASRIATSLPNKTTFVSSLSSTSAHARNIFNSTVLATAKQIETLTSTVNCSNPTPNYNITKTVIVSRETTAIGTVTSCSGGCTKNRKSTTLITITDIDASTVTTCPEKEVTSTTSGDEAEHTTSTKISNFETSTFSESFKDMKTSQETKKAKPGSETVRSSSSFVEKTSPTTKASPSTSPSESKAAGNTSVATNASPSTSPSESQGTGSTSVEGAKSKSTKNSEGVSTTKAKNTSTVAKSSTESPIGRGETTLETIIVSSQKSLLTSQLSSSTEKVNRSTTKPTAAIHGTSSSAKQSTTYTVSTAKENTGASLNINMKAFVIGAIALVA*" + } + ], + "YNL327W": [ + { + "revision": "110203", + "new_alignment": "MNKLLLHLVRVISILGLANALTQTQPILKDIQITDSYTKTKECTDPDHWFIIEGQLSIPKGSQQNITFQVPDAFSSFPQEPFSIKHNSNSVATISRPDKSTNNFTISIPEKSSEDITTTFNFLAQLTSDAKSKVTEPKSIVYSFYSENTMFNDVIDYVAKNTSAITTDGGIYKTNNTAWFTVDLPMRTFRNPVYLTSQTSSSSDYVFDTSLTKFEVVTAVDSFNEPINAIPYTTVHDYSTEDEIRCLFNSTISGGLYFRVTYFTKKLSTSSISNTVELTYPDEGTSVRLLGKRDTSTTLASELYSESAANIDSTTSDDTTSSDAAITPTYSNSTLSSYTSQSSAIPEVAVTASLSSGILSSTVDGASTSADASMSAVSTVSSSSEQASSSSISLSAPSSSNSTFTTPSSSLSATETYSIISSASISVTQASYIDNSTTTAVTQSTSTIAVSSAEKLSSTLSYTSNVTISVSSATQHTTTPSYVSNSTTLSSSSVLESVISSPYLANTTVSGASSASQSTNPPYVSNSTTSSATQLATIAPFAINITGTSISSSITNTSSVSSTTSSLSSGPFVSNTTVASGSYILTTTTESAQLTEIGSLIPISTITTSTTTSGTDKTGSNKVASSTEIAQSIVNNSSLSVSTINTNAATAAANARNATFTHATHSGSLQPSYHSSSLLSSTIDTKVTTATTSTSRDGSSSLAFTTGLNQSVVTGTDKSDTYSVISSTESAQVTEYDSLLPISTLKPTVVTGTSRNSTFSMVSSTKLTEATATDKGDAYSVISSTQSAQVTEYGSMLPISTLETPTVIMSTDESGYFTLTTCTESGQATEYGSLIPISTLDGSVIYTFTGESVVVGYSTTVGAAQYAQHTSLVPVSTIKGSKTSLSTEESVVAGYSTTVGAAQYAQHTSLVPVSTIKGSKTSLSTEESVVAGYSTTVDSAQYAEHTNLVAIDTLKTSTFQKATATEVCVTCTALSSPHSATLDAGTTISLPTSSSTSLSTIITWYSSSTIKPPSISTYSGAAGQLTIRIGSLLLGLISFLL*", + "old_alignment": "MNKLLLHLVRVISILGLANALTQTQPILKDIQITDSYTKTKECTDPDHWFIIEGQLSIPKGSQQNITFQVPDAFSSFPQEPFSIKHNSNSVATISRPDKSTNNFTISIPEKSSEDITTTFNFLAQLTSDAKSKVTEPKSIVYSFYSENTMFNDVIDYVAKNTSAITTDGGIYKTNNTAWFTVDLPMRTFRNPVYLTSQTSSSSDYVFDTSLTKFEVVTAVDSFNEPINAIPYTTVHDYSTEDEIRCLFNSTISGGLYFRVTYFTKKLSTSSISNTVELTYPDEGTSVRLLGKRDTSTTLASELYSESAANIDSTTSDDTTSSDAAITPTYSNSTLSSYTSQSSAIPEVAVTASLSSGILSSTVDGASTSADASMSAVSTVSSSSEQASSSSISLSAPSSSNSTFTTPSSSLSATETYSIISSASISVTQASYIDNSTTTAVTQSTSTIAVSSAEKLSSTLSYTSNVTISVSSATQHTTTPSYVSNSTTLSSSSVLESVISSPYLANTTVSGASSASQSTNPPYVSNSTTSSATQLATIAPFAINITGTSISSSITNTSSVSSTTSSLSSGPFVSNTAVASGSYILTTTTESAQLTEIGSLIPISTITTSTTTSGTDKTGSNKVASSTEIAQSIVNNSSLSVSTINTNAATAAANARNATFTHATHSGSLQPSYHSSSLLSSTIDTKVTTATTSTSRDGSSSLAFTTGLNQSVVTGTDKSDTYSVISSTESAQVTEYDSLLPISTLKPTVVTGTSRNSTFSMVSSTKLTEATATDKGDAYSVISSTQSAQVTEYGSMLPISTLETPTVIMSTDESGYFTLTTCTESGQATEYGSLIPISTLDGSVIYTFTGESVVVGYSTTVGAAQYAQHTSLVPVSTIKGSKTSLSTEESVVAGYSTTVGAAQYAQHTSLVPVSTIKGSKTSLSTEESVVAGYSTTVDSAQYAEHTNLVAIDTLKTSTFQKATATEVCVTCTALSSPHSATLDAGTTISLPTSSSTSLSTIITWYSSSTIKPPSISTYSGAAGQLTIRIGSLLLGLISFLL*" + } + ], + "YNL310C": [ + { + "revision": "060512", + "new_alignment": "-------------------------------MIPRTRTLLQSKIPITRYFARCWAPRVRYNVCRTLPAAALHTNIIAHNEVKKDDKKVHLGSFKVDKPKMMIAFTCKKCNTRSSHTMSKQAYEKGTVLISCPHCKVRHLIADHLKIFHDHHVTVEQLMKANGEQVSQDVGDLEFEDIPDSLKDVLGKYAKNNSENASQLPHPSQK*", + "old_alignment": "MRGKVKERHVGFKGSAILKQHRCNWNIKRLNMIPRTRTLLQSKIPITRYFARCWAPRVRYNVCRTLPAAALHTNIIAHNEVKKDDKKVHLGSFKVDKPKMMIAFTCKKCNTRSSHTMSKQAYEKGTVLISCPHCKVRHLIADHLKIFHDHHVTVEQLMKANGEQVSQDVGDLEFEDIPDSLKDVLGKYAKNNSENASQLPHPSQK*" + } + ], + "YNL304W": [ + { + "revision": "051111", + "new_alignment": "MSQRKRYSLNVVTSPSIPSPTPSAPIRTNESNWEAASPASAASSFLPNVHHGGTVLNPGLGIMRSPSLNKSGAFGRSGSSGSSTVIEPSNIKLLLIGDANVGKTAMILSYCRELLTRAEMSRSARLRHQQQQQHKDLGLKKTVVNHRLSMKEKRKRYSSNDFEKEFKDINHFADETSDFGNPNIGDDNNHEMADPNEIVIETRSTIGIDIKTNLVNIDNRFFNVILWDTAGQERYQNAIIPSLYKKTNAVILTYDITNAKSFQSCMERWIVQALENFSSQDLLKARFFLVGNKIDLYKERQVTHYDVVQMVQEMQLKHGIKISGNFEVSCKWVNVVERTMNMIILDLVENGCFENNDPCVSITTSDDVQGHEQEFHDTVEEPFNFTRQRQHQLEKNNTVDITKPNDDIANNQSICCV*", + "old_alignment": "--------------------------------------------------------------MRSPSLNKSGAFGRSGSSGSSTVIEPSNIKLLLIGDANVGKTAMILSYCRELLTRAEMSRSARLRHQQQQQHKDLGLKKTVVNHRLSMKEKRKRYSSNDFEKEFKDINHFADETSDFGNPNIGDDNNHEMADPNEIVIETRSTIGIDIKTNLVNIDNRFFNVILWDTAGQERYQNAIIPSLYKKTNAVILTYDITNAKSFQSCMERWIVQALENFSSQDLLKARFFLVGNKIDLYKERQVTHYDVVQMVQEMQLKHGIKISGNFEVSCKWVNVVERTMNMIILDLVENGCFENNDPCVSITTSDDVQGHEQEFHDTVEEPFNFTRQRQHQLEKNNTVDITKPNDDIANNQSICCV*" + } + ], + "YNL299W": [ + { + "revision": "051103", + "new_alignment": "MTRLKAKYSPTKGKRKEDKHTKRMRKSSFTRTQKMLEVFNDNRSHFNKYESLAIDVEDDDTFGNLVLMENDKSDVDIPVIEEVTSSEDEQRAESSKRNNSLEDNQDFIAFSDSSEDETEQIKEDDDERSSFLLTDEHEVSKLTSQQSLNTESACNVEYPWIRNHCHSKQRRIADWLTSEIKDFVHYISPSKNEIKCRNRTIDKLRRAVKELWSDADLHVFGSFATDLYLPGSDIDCVVNSRNRDKEDRNYIYELARHLKNKGLAIRMEVIVKTRVPIIKFIEPQSQLHIDVSFERTNGLEAAKLIREWLRDSPGLRELVLIIKQFLHSRRLNNVHTGGLGGFTVICLVYSFLNMHPRIKSNDIDVLDNLGVLLIDFFELYGKNFGYDDVAISISDGYASYIPKSCWRTLEPSRSKFSLAIQDPGDPNNNISRGSFNMKDIKKAFAGAFELLVNKCWELNSATFKDRVGKSILGNVIKYRGQKRDFNDERDLVQNKAIIENERYHKRRTRIVQEDLFINDTEDLPVEEIYKLDEPAKKKQKAKKDKREGEIKKSAIPSPPPDFGVSRSKLKRKVKKTDQGSLLHQNNLSIDDLMGLSENDQESDQDQKGRDTPSGQDEKSPLETKTVDAQTRRDYWLSKGQAL*---------------", + "old_alignment": "MTRLKAKYSPTKGKRKEDKHTKRMRKSSFTRTQKMLEVFNDNRSHFNKYESLAIDVEDDDTFGNLVLMENDKSDVDIPVIEEVTSSEDEQRAESSKRNNSLEDNQDFIAFSDSSEDETEQIKEDDDERSSFLLTDEHEVSKLTSQQSLNTESACNVEYPWIRNHCHSKQRRIADWLTSEIKDFVHYISPSKNEIKCRNRTIDKLRRAVKELWSDADLHVFGSFATDLYLPGSDIDCVVNSRNRDKEDRNYIYELARHLKNKGLAIRMEVIVKTRVPIIKFIEPQSQLHIDVSFERTNGLEAAKLIREWLRDSPGLRELVLIIKQFLHSRRLNNVHTGGLGGFTVICLVYSFLNMHPRIKSNDIDVLDNLGVLLIDFFELYGKNFGYDDVAISISDGYASYIPKSCWRTLEPSRSKFSLAIQDPGDPNNNISRGSFNMKDIKKAFAGAFELLVNKCWELNSATFKDRVGKSILGNVIKYRGQKRDFNDERDLVQNKAIIENERYHKRRTRIVQEDLFINDTEDLPVEEIYKLDEPAKKKQKAKKDKREGEIKKSAIPSPPPDFGVSRSKLKRKVKKTDQGSLLHQNNLSIDDLMGLSENDQESDQDQKGRDT--------------------------------LRDKMRNHHWKLRQ*" + } + ], + "YNL271C": [ + { + "revision": "110203", + "new_alignment": "MLKNSGSKHSNSKESHSNSSSGIFQNLKRLANSNATNSNTGSPTYASQQQHSPVGNEVSTSPASSSSFRKLNAPSRSTSTEARPLNKKSTLNTQNLSQYMNGKLSGDVPVSSQHARSHSMQSKYSYSKRNSSQASNKLTRQHTGQSHSASSLLSQGSLTNLSKFTTPDGKIYLEMPSDPYEVEVLFEDIMYKRNIFQSLSEDKQEALMGYSIEKKWLIVKQDLQNELKKMRANTTSSSTASRTSMASDHHPILTANSSLSSPKSVLMTSASSPTSTVYSNSLNHSTTLSSVGTSTSKGKKLVSGSLKKQPSLNNIYRGGAENNTSASTLPGDRTNRPPIHYVQRILADKLTSDEMKDLWVTLRTEQLDWVDAFIDHQGHIAMANVLMNSIYKTAPRENLTKELLEKENSFFKCFRVLSMLSQGLYEFSTHRLMTDTVAEGLFSTKLATRKMATEIFVCMLEKKNKSRFEAVLTSLDKKFRIGQNLHMIQNFKKMPQYFSHLTLESHLKIIQAWLFAVEQTLDGRGKMGSLVGASDEFKNGGGENAILEYCQWTMVFINHLCSCSDNINQRMLLRTKLENCGILRIMNKIKLLDYDKVIDQIELYDNNKLDDFNVKLEANNKAFNVDLHDPLSLLKNLWDICKGTENEKLLVSLVQHLFLSSSKLIEENQNSSKLTKQLKLMDSLVTNVSVASTSDEETNMNMAIQRLYDAMQTDEVARRAILESRALTKKLEEIQAERDSLSEKLSKAEHGLVGQLEDELHERDRILAKNQRVMQQLEAELEELKKKHLLEKHQQEVELRKMLTILNSRPEESFNKNEGTRGMNSSLNSSEKANIQKVLQDGLSRAKKDYKDDSKKFGMTLQPNKRLKMLRMQMENIENEARQLEMTNFAEFEKDRLEPPIHIKKPKVKKMKNKDRKPLVKPQEADVNKLNDLRRALAEIQMESNDISKFNVEERVNELFNEKKSLALKRLKELETKYKGFGIDFNVDEIMDSPKKNTGDVETEEDANYASLDPKTYQKKLDEINRITDQLLDIQTQTEHEIQVEEDGESDLSSSSSDDESEEIYQDASPTQELRSEHSELSSGSGPGSFLDALSQKYGTGQNVTASAAFGENNNGSGIGPLHSKVEKTFMNRLRKSTVSSAPYLEELTQKVNKVEPYEQNEDEGLDKKSLPENSTASAASAFDKAEKDMRQHVENGKQGRVVNHEEDKTADFSAVSKLNNTDGAEDLSTQSSVLSSQPPPPPPPPPPVPAKLFGESLEKEKKSEDDTVKQETTGDSPAPPPPPPPPPPPPMALFGKPKGETPPPPPLPSVLSSSTDGVIPPAPPMMPASQIKSAVTSPLLPQSPSLFEKYPRPHKKLKQLHWEKLDCTDNSIWGTGKAEKFADDLYEKGVLADLEKAFAAREIKSLASKRKEDLQKITFLSRDISQQFGINLHMYSSLSVADLVKKILNCDRDFLQTPSVVEFLSKSEIIEVSVNLARNYAPYSTDWEGVRNLEDAKPPEKDPNDLQRADQIYLQLMVNLESYWGSRMRALTVVTSYEREYNELLAKLRKVDKAVSALQESDNLRNVFNVILAVGNFMNDTSKQAQGFKLSTLQRLTFIKDTTNSMTFLNYVEKIVRLNYPSFNDFLSELEPVLDVVKVSIEQLVNDCKDFSQSIVNVERSVEIGNLSDSSKFHPLDKVLIKTLPVLPEARKKGDLLEDEVKLTIMEFESLMHTYGEDSGDKFAKISFFKKFADFINEYKKAQAQNLAAEEEERLYIKHKKIVEEQQKRAQEKEKQKENSNSPSSEGNEEDEAEDRRAVMDKLLEQLKNAGPAKSDPSSARKRALVRKKYLSEKDNAPQLLNDLDTEEGSILYSPEAMDPTADTVIHAESPTPLATRGVMNTSEDLPSPSKTSALEDQEEISDRARMLLKELRGSDTPVKQNSILDEHLEKLRARKERSIGEASTGNRLSFK*", + "old_alignment": "MLKNSGSKHSNSKESHSNSSSGIFQNLKRLANSNATNSNTGSPTYASQQQHSPVGNEVSTSPASSSSFRKLNAPSRSTSTEARPLNKKSTLNTQNLSQYMNGKLSGDVPVSSQHARSHSMQSKYSYSKRNSSQASNKLTRQHTGQSHSASSLLSQGSLTNLSKFTTPDGKIYLEMPSDPYEVEVLFEDIMYKRNIFQSLSEDKQEALMGYSIEKKWLIVKQDLQNELKKMRANTTSSSTASRTSMASDHHPILTANSSLSSPKSVLMTSASSPTSTVYSNSLNHSTTLSSVGTSTSKGKKLVSGSLKKQPSLNNIYRGGAENNTSASTLPGDRTNRPPIHYVQRILADKLTSDEMKDLWVTLRTEQLDWVDAFIDHQGHIAMANVLMNSIYKTAPRENLTKELLEKENSFFKCFRVLSMLSQGLYEFSTHRLMTDTVAEGLFSTKLATRKMATEIFVCMLEKKNKSRFEAVLTSLDKKFRIGQNLHMIQNFKKMPQYFSHLTLESHLKIIQAWLFAVEQTLDGRGKMGSLVGASDEFKNGGGENAILEYCQWTMVFINHLCSCSDNINQRMLLRTKLENCGILRIMNKIKLLDYDKVIDQIELYDNNKLDDFNVKLEANNKAFNVDLHDPLSLLKNLWDICKGTENEKLLVSLVQHLFLSSSKLIEENQNSSKLTKQLKLMDSLVTNVSVASTSDEETNMNMAIQRLYDAMQTDEVARRAILESRALTKKLEEIQAERDSLSEKLSKAEHGLVGQLEDELHERDRILAKNQRVMQQLEAELEELKKKHLLEKHQQEVELRKMLTILNSRPEESFNKNEGTRGMNSSLNSSEKANIQKVLQDGLSRAKKDYKDDSKKFGMTLQPNKRLKMLRMQMENIENEARQLEMTNFAEFEKDRLEPPIHIKKPKVKKMKNKDRKPLVKPQEADVNKLNDLRRALTEIQMESNDISKFNVEERVNELFNEKKSLALKRLKELETKYKGFGIDFNVDEIMDSPKKNTGDVETEEDANYASLDPKTYQKKLDEINRITDQLLDIQTQTEHEIQVEEDGESDLSSSSSDDESEEIYQDASPTQELRSEHSELSSGSGPGSFLDALSQKYGTGQNVTASAAFGENNNGSGIGPLHSKVEKTFMNRLRKSTVSSAPYLEELTQKVNKVEPYEQNEDEGLDKKSLPENSTASAASAFDKAEKDMRQHVENGKQGRVVNHEEDKTADFSAVSKLNNTDGAEDLSTQSSVLSSQPPPPPPPPPPVPAKLFGESLEKEKKSEDDTVKQETTGDSPAPPPPPPPPPPPPMALFGKPKGETPPPPPLPSVLSSSTDGVIPPAPPMMPASQIKSAVTSPLLPQSPSLFEKYPRPHKKLKQLHWEKLDCTDNSIWGTGKAEKFADDLYEKGVLADLEKAFAAREIKSLASKRKEDLQKITFLSRDISQQFGINLHMYSSLSVADLVKKILNCDRDFLQTPSVVEFLSKSEIIEVSVNLARNYAPYSTDWEGVRNLEDAKPPEKDPNDLQRADQIYLQLMVNLESYWGSRMRALTVVTSYEREYNELLAKLRKVDKAVSALQESDNLRNVFNVILAVGNFMNDTSKQAQGFKLSTLQRLTFIKDTTNSMTFLNYVEKIVRLNYPSFNDFLSELEPVLDVVKVSIEQLVNDCKDFSQSIVNVERSVEIGNLSDSSKFHPLDKVLIKTLPVLPEARKKGDLLEDEVKLTIMEFESLMHTYGEDSGDKFAKISFFKKFADFINEYKKAQAQNLAAEEEERLYIKHKKIVEEQQKRAQEKEKQKENSNSPSSEGNEEDEAEDRRAVMDKLLEQLKNAGPAKSDPSSARKRALVRKKYLSEKDNAPQLLNDLDTEEGSILYSPEAMDPTADTVIHAESPTPLATRGVMNTSEDLPSPSKTSALEDQEEISDRARMLLKELRGSDTPVKQNSILDEHLEKLRARKERSIGEASTGNRLSFK*" + } + ], + "YNL260C": [ + { + "revision": "210421", + "new_alignment": "------------------------------------MDFDNLLNLEEQYYQEGFLEGQNENIKQSFLEGKQYGLQVGFQRFTLLGQMEGLCDVIESYGLHSPTLEKNIHTIRTLMKGLKMNNDDESVMEFERVLIKLKNKFRTILITLHRLVKDKRTPTVTFEVFEDVSRAIAGEIRGFVENEDIAKNKTKQNQAQSW*", + "old_alignment": "MVRNRFIRKMKKNLFKSNHLSYLKSKWKVKITGQIKMDFDNLLNLEEQYYQEGFLEGQNENIKQSFLEGKQYGLQVGFQRFTLLGQMEGLCDVIESYGLHSPTLEKNIHTIRTLMKGLKMNNDDESVMEFERVLIKLKNKFRTILITLHRLVKDKRTPTVTFEVFEDVSRAIAGEIRGFVENEDIAKNKTKQNQAQSW*" + } + ], + "YNL243W": [ + { + "revision": "110203", + "new_alignment": "MSRIDSDLQKALKKACSVEETAPKRKHVRACIVYTWDHQSSKAVFTTLKTLPLANDEVQLFKMLIVLHKIIQEGHPSALAEAIRDRDWIRSLGRVHSGGSSYSKLIREYVRYLVLKLDFHAHHRGFNNGTFEYEEYVSLVSVSDPDEGYETILDLMSLQDSLDEFSQIIFASIQSERRNTECKISALIPLIAESYGIYKFITSMLRAMHRQLNDAEGDAALQPLKERYELQHARLFEFYADCSSVKYLTTLVTIPKLPVDAPDVFLINDVDESKEIKFKKREPSVTPARTPARTPTPTPPVVAEPAISPRPVSQRTTSTPTGYLQTMPTGATTGMMIPTATGAANAIFPQATAQMQPDFWANQQAQFANEQNRLEQERVQQLQQQQAQQELFQQQLQKAQQDMMNMQLQQQNQHQNDLIALTNQYEKDQALLQQYDQRVQQLESEITTMDSTASKQLANKDEQLTALQDQLDVWERKYESLAKLYSQLRQEHLNLLPRFKKLQLKVNSAQESIQKKEQLEHKLKQKDLQMAELVKDRDRARLELERSINNAEADSAAATAAAETMTQDKMNPILDAILESGINTIQESVYNLDSPLSWSGPLTPPTFLLSLLESTSENATEFATSFNNLIVDGLAHGDQTEVIHCVSDFSTSMATLVTNSKAYAVTTLPQEQSDQILTLVKRCAREAQYFFEDLMSENLNQVGDEEKTDIVINANVDMQEKLQELSLAIEPLLNIQSVKSNKETNPHSELVATADKIVKSSEHLRVDVPKPLLSLALMIIDAVVALVKAAIQCQNEIATTTSIPLNQFYLKNSRWTEGLISAAKAVAGATNVLITTASKLITSEDNENTSPEQFIVASKEVAASTIQLVAASRVKTSIHSKAQDKLEHCSKDVTDACRSLGNHVMGMIEDDHSTSQQQQPLDFTSEHTLKTAEMEQQVEILKLEQSLSNARKRLGEIRRHAYYNQDDD*", + "old_alignment": "MSRIDSDLQKALKKACSVEETAPKRKHVRACIVYTWDHQSSKAVFTTLKTLPLANDEVQLFKMLIVLHKIIQEGHPSALAEAIRDRDWIRSLGRVHSGGSSYSKLIREYVRYLVLKLDFHAHHRGFNNGTFEYEEYVSLVSVSDPDEGYETILDLMSLQDSLDEFSQIIFASIQSERRNTECKISALIPLIAESYGIYKFITSMLRAMHRQLNDAEGDAALQPLKERYELQHARLFEFYADCSSVKYLTTLVTIPKLPVDAPDVFLINDVDESKEIKFKKREPSVTPARTPARTPTPTPPVVAEPAISPRPVSQRTTSTPTGYLQTMPTGATTGMMIPTATGARNAIFPQATAQMQPDFWANQQAQFANEQNRLEQERVQQLQQQQAQQELFQQQLQKAQQDMMNMQLQQQNQHQNDLIALTNQYEKDQALLQQYDQRVQQLESEITTMDSTASKQLANKDEQLTALQDQLDVWERKYESLAKLYSQLRQEHLNLLPRFKKLQLKVNSAQESIQKKEQLEHKLKQKDLQMAELVKDRDRARLELERSINNAEADSAAATAAAETMTQDKMNPILDAILESGINTIQESVYNLDSPLSWSGPLTPPTFLLSLLESTSENATEFATSFNNLIVDGLAHGDQTEVIHCVSDFSTSMATLVTNSKAYAVTTLPQEQSDQILTLVKRCAREAQYFFEDLMSENLNQVGDEEKTDIVINANVDMQEKLQELSLAIEPLLNIQSVKSNKETNPHSELVATADKIVKSSEHLRVDVPKPLLSLALMIIDAVVALVKAAIQCQNEIATTTSIPLNQFYLKNSRWTEGLISAAKAVAGATNVLITTASKLITSEDNENTSPEQFIVASKEVAASTIQLVAASRVKTSIHSKAQDKLEHCSKDVTDACRSLGNHVMGMIEDDHSTSQQQQPLDFTSEHTLKTAEMEQQVEILKLEQSLSNARKRLGEIRRHAYYNQDDD*" + } + ], + "YNL208W": [ + { + "revision": "040305", + "new_alignment": "MSANEFYSSGQQGQYNQQNNQERTGAPNNGQYGADNGNPNGERGLFSTIVGGSAGAYAGSKVSNNHSKLSGVLGAIGGAFLANKISDERKEHKQQEQYGNSNFGGAPQGGHNNHHRQDNNNNNGGFGGPGGPGGQGFGRQGPQGFGGPGPQEFGGPGGQGFGGPNPQEFGGPGGQGFGGPNPQEFGGQGRQGFNGGSRW*----------------------------------------------------------------------------------------", + "old_alignment": "MSANEFYSSGQQGQYNQQNNQERTGAPNNGQYGADNGNPNGERGLFSTIVGGSAGAYAGSKVSNNHSKLSGVLGAIGGAFLANKISDERKEHKQQEQYGNSNFGGAPQGGHNNHHRQ-----------------------------------------------------------------------------------TITTITVDLAVQAALAVKVSEDKAHKDLEVLVHKSLVVQVAKDSVVQILKNSAARWPRIRWSKPSGIRGPRSSRIQWRFTLVNGSTE*" + } + ], + "YNL202W": [ + { + "revision": "060512", + "new_alignment": "---MNTANTLDGKFVTEGSWRPDLFKGKVAFVTGGAGTICRVQTEALVLLGCKAAIVGRDQERTEQAAKGISQLAKDKDAVLAIANVDVRNFEQVENAVKKTVEKFGKIDFVIAGAAGNFVCDFANLSPNAFKSVVDIDLLGSFNTAKACLKELKKSKGSILFVSATFHYYGVPFQGHVGAAKAGIDALAKNLAVELGPLGIRSNCIAPGAIDNTEGLKRLAGKKYKEKALAKIPLQRLGSTRDIAESTVYIFSPAASYVTGTVLVVDGGMWHLGTYFGHELYPEALIKSMTSKL*", + "old_alignment": "MDTMNTANTLDGKFVTEGSWRPDLFKGKVAFVTGGAGTICRVQTEALVLLGCKAAIVGRDQERTEQAAKGISQLAKDKDAVLAIANVDVRNFEQVENAVKKTVEKFGKIDFVIAGAAGNFVCDFANLSPNAFKSVVDIDLLGSFNTAKACLKELKKSKGSILFVSATFHYYGVPFQGHVGAAKAGIDALAKNLAVELGPLGIRSNCIAPGAIDNTEGLKRLAGKKYKEKALAKIPLQRLGSTRDIAESTVYIFSPAASYVTGTVLVVDGGMWHLGTYFGHELYPEALIKSMTSKL*" + } + ], + "YNL195C": [ + { + "revision": "040305", + "new_alignment": "MLGLGQSAQAYASDDALNMNQAKDKTYSVPGCGRASDLKYPHRDGHSSSHEQRSGILPTECPGPTLNTGAGSIGIPGCGKVTNRVVSDYNKNARSTLANFDSSKMTEARMNSKNVPIGCQDTSDPHFNGPIDQHVPGAGSPQSQPHHIDAWNSVSSRRADNNNQDMMDPQTASSDRYNEKMMREENSGVSASSYTTKVQGYPASIPSFNQETEEKETYAYGVGDRHNVPRNQIMDETNPSANVLNATDHSISHPENKVLHK*-------------------------", + "old_alignment": "MLGLGQSAQAYASDDALNMNQAKDKTYSVPGCGRASDLKYPHRDGHSSSHEQRSGILPTECPGPTLNTGAGSIGIPGCGKVTNRVVSDYNKNARSTLANFDSSKMTEARMNSKNVPIGCQDTSDPHFNGPIDQHVPGAGSPQSQPHHIDAWNSVSSRRADNNNQDMMDPQTASSDRYNEKMMREENSGVSASSYTTKVQGYPASIPSFNQETEEKETYA-------------------------------------------TVWVIGTMSQETKLWMRLILRLTF*" + } + ], + "YNL193W": [ + { + "revision": "110203", + "new_alignment": "MGPPKNFKHFSKSNKHKKEQKALITQEDFYLAAIDCEEQADRWLLSDIKKCLRFYLKALEHYENGLTALDSTQEGKYNIYYNETRLFLQIYTDYLANNGYINILQYVKMDDMPDLSNLVLSLPQIIQRFEIVYETFPEQRTWDLQFNLLTCYLTLIESLDDTVSPTVAMEGADILTLTNKYIEIFQHLVNYLLQELQNWSENAEQDSDDTDTELQRDTLDEDAMQVTRDGSGIRTNGPVQPPAEVMDVSEQVTPSSLTEVLANSLKFNHALMELVIESKISIEKNVETKILNPIQINFLEDTTNKFYLQLRDIIDSISAAIPLDLKEIGLAKTLIEGLNIISSGTFESLQDFVLQTVSFTDLLDEKDVQGKIDLSLIRVDIVEFAILCLNDYSSDASWKLSGLLTKVLTEARTLLTDYRNQILFLKNQTLNEQLSHVVFQLCDVLVNSSDNELRRYAIKESTEKSQKTPGGAHTLNILMKNANVFLNNAVAISSKQCGLQETIIDKLKRNYIHNQAKERLLFLQRLEQKSNEDDGTSASPTAMTFDMPPEHPFYSHYR*", + "old_alignment": "MGPPKNFKHFSKSNKHKKEQKALITQEDFYLAAIDCEEQADRWLLSDIKKCLRFYLKALEHYENGLTALDSTQEGKYNIYYNETRLFLQIYTDYLANNGYINILQYVKMDDMPDLSNLVLSVPQIIQRFEIVYETFPEQRTWDLQFNLLTCYLTLIESLDDTVSPTVAMEGADILTLTNKYIEIFQHLVNYLLQELQNWSENAEQDSDDTDTELQRDTLDEDAMQVTRDGSGIRTNGPVQPPAEVMDVSEQVTPSSLTEVLANSLKFNHALMELVIESKISIEKNVETKILNPIQINFLEDTTNKFYLQLRDIIDSISAAIPLDLKEIGLAKTLIEGLNIISSGTFESLQDFVLQTVSFTDLLDEKDVQGKIDLSLIRVDIVEFAILCLNDYSSDASWKLSGLLTKVLTEARTLLTDYRNQILFLKNQTLNEQLSHVVFQLCDVLVNSSDNELRRYAIKESTEKSQKTPGGAHTLNILMKNANVFLNNAVAISSKQCGLQETIIDKLKRNYIHNQAKERLLFLQRLEQKSNEDDGTSASPTAMTFDMPPEHPFYSHYR*" + } + ], + "YNL192W": [ + { + "revision": "110203", + "new_alignment": "MSDQNNRSRNEYHSNRKNEPSYELQNAHSGLFHSSNEELTNRNQRYTNQNASMGSFTPVQSLQFPEQSQQTNMLYNGDDGNNNTINDNERDIYGGFVNHHRQRPPPATAEYNDVFNTNSQQLPSEHQYNNVPSYPLPSINVIQTTPELIHNGSQTMATPIERPFFNENDYYYNNRNSRTSPSIASSSDGYADQEARPILEQPNNNMNSGNIPQYHDQPFGYNNGYHGLQAKDYYDDPEGGYIDQRGDDYQINSYLGRNGEMVDPYDYENSLRHMTPMERREYLHDDSRPVNDGKEELDSVKSGYSHRDLGEYDKDDFSRDDEYDDLNTIDKLQFQANGVPASSSVSSIGSKESDIIVSNDNLTANRALKRSGTEIRKFKLWNGNFVFDSPISKTLLDQYATTTENANTLPNEFKFMRYQAVTCEPNQLAEKNFTVRQLKYLTPRETELMLVVTMYNEDHILLGRTLKGIMDNVKYMVKKKNSSTWGPDAWKKIVVCIISDGRSKINERSLALLSSLGCYQDGFAKDEINEKKVAMHVYEHTTMINITNISESEVSLECNQGTVPIQLLFCLKEQNQKKINSHRWAFEGFAELLRPNIVTLLDAGTMPGKDSIYQLWREFRNPNVGGACGEIRTDLGKRFVKLLNPLVASQNFEYKMSNILDKTTESNFGFITVLPGAFSAYRFEAVRGQPLQKYFYGEIMENEGFHFFSSNMYLAEDRILCFEVVTKKNCNWILKYCRSSYASTDVPERVPEFILQRRRWLNGSFFASVYSFCHFYRVWSSGHNIGRKLLLTVEFFYLFFNTLISWFSLSSFFLVFRILTVSIALAYHSAFNVLSVIFLWLYGICTLSTFILSLGNKPKSTEKFYVLTCVIFAVMMIYMIFCSIFMSVKSFQNILKNDTISFEGLITTEAFRDIVISLGSTYCLYLISSIIYLQPWHMLTSFIQYILLSPSYINVLNIYAFCNVHDLSWGTKGAMANPLGKINTTEDGTFKMEVLVSSSEIQANYDKYLKVLNDFDPKSESRPTEPSYDEKKTGYYANVRSLVIIFWVITNFIIVAVVLETGGIADYIAMKSISTDDTLETAKKAEIPLMTSKASIYFNVILWLVALSALIRFIGCSIYMIVRFFKKVTFR*", + "old_alignment": "MSDQNNRSRNEYHSNRKNEPSYELQNAHSGLFHSSNEELTNRNQRYTNQNASMGSFTPVQSLQFPEQSQQTNMLYNGDDGNNNTINDNERDIYGGFVNHHRQRPPPATAEYNDVFNTNSQQLPSEHQYNNVPSYPLPSINVIQTTPELIHNGSQTMATPIERPFFNENDYYYNNRNSRTSPSIASSSDGYADQEARPILEQPNNNMNSGNIPQYHDQPFGYNNGYHGLQAKDYYDDPEGGYIDQRGDDYQINSYLGRNGEMVDPYDYENSLRHMTPMERREYLHDDSRPVNDGKEELDSVKSGYSHRDLGEYDKDDFSRDDEYDDLNTIDKLQFQANGVPASSSVSSIGSKESDIIVSNDNLTANRALKRSGTEIRKFKLWNGNFVFDSPISKTLLDQYATTTENANTLPNEFKFMRYQAVTCEPNQLAEKNFTVRQLKYLTPRETELMLVVTMYNEDHILLGRTLKGIMDNVKYMVKKKNSSTWGPDAWKKIVVCIISDGRSKINERSLALLSSLGCYQDGFAKDEINEKKVAMHVYEHTTMINITNISESEVSLECNQGTVPIQLLFCLKEQNQKKINSHRWAFEGFAELLRPNIVTLLDAGTMPGKDSIYQLWREFRNPNVGGACGEIRTDLGKRFVKLLNPLVASQNFEYKMSNILDKTTESNFGFITVLPGAFSAYRFEAVRGQPLQKYFYGEIMENEGFHFFSSNMYLAEDRILCFEVVTKKNCNWILKYCRSSYASTDVPERVPEFILQRRRWLNGSFFASVYSFCHFYRVWSSGHNIGRKLLLTVEFFYLFFNTLISWFSLSSFFLFFRILTVSIALAYHSAFNVLSVIFLWLYGICTLSTFILSLGNKPKSTEKFYVLTCVIFAVMMIYMIFCSIFMSVKSFQNILKNDTISFEGLITTEAFRDIVISLGSTYCLYLISSIIYLQPWHMLTSFIQYILLSPSYINVLNIYAFCNVHDLSWGTKGAMANPLGKINTTEDGTFKMEVLVSSSEIQANYDKYLKVLNDFDPKSESRPTEPSYDEKKTGYYANVRSLVIIFWVITNFIIVAVVLETGGIADYIAMKSISTDDTLETAKKAEIPLMTSKASIYFNVILWLVALSALIRFIGCSIYMIVRFFKKVTFR*" + } + ], + "YNL186W": [ + { + "revision": "110203", + "new_alignment": "MTTQESIKPLVDRILSNPLQFNAAMISNKSNNNDTSAAPENSSYIVIGKQHNNNSNSTAIAATAESKQIKENNLIDRPNGKKTNTVPKSMAEALLLYTSKNDKDAADATGAKKSAELSTELSTEPPSSSSEDDKVGKEEEEEGEIFHEARDYVEPRKASLKERDNADKGDGEDIGEDIGEDIGEDIGEDIGEDIGENLGSPLATIDDSSNENEKEKRKELSTSISSDDEIEDDEDEDDMDYDSSAMEKELPEEEENDSSSKISEGEKKSLYQDLMENSTVEVNRYEPVNNTKENGNRNPKGEEEEEEEEELKHKSRSITPPVTISNLSNFYQFNENINDRGSLNSTRIVKNWGDKFTNLKPRGLLNHGVTCYTNAAVQAMLHIPSIQHYLFDILMGKYDSTISKNSVSYTLAETSKKMWLPVSKNPRKNVSASYINPKHLISRLDDINCMMSEWQQEDSHEYFMSLMSRLQEDSVPKGHKLIESIIYDIFGGLLKQIVTCKSCGSISKTEQPFYDLSLHLKGKKKLDPNSDLSSDSINGTSATTSTTTSNAATKPSLSSSSSVNLNNGSPFAAASDLSSANRRFSIEKSIKDFFNPELIKVDKEQKGYVCEKCHKTTNAVKHSSILRAPETLLVHLKKFRFNGTSSSKMKQAVSYPMFLDLTEYCESKELPVKYQLLSVVVHEGRSLSSGHYIAHCKQPDGSWATYDDEYINIISERDVLKEPNAYYLLYTRLTPKSVPLPLAKSAMATGNVTSKSKQEQAVNEPNNRPLKINSKKNNRKKWKKNKKRKFTK*", + "old_alignment": "MTTQESIKPLVDRILSNPLQFNAAMISNKSNNNDTSAAPENSSYIVIGKQHNNNSNSTAIAATAESKQIKENNLIDRPNGKKTNTVPKSMAEALLLYTSKNDKDAADATGAKKSAELSTELSTEPPSSSSEDDKVGKEEEEEGEIFHEARDYVEPRKASLKERDNADKGDGEDIGEDIGEDIGEDIGEDIGEDIGENLGSPLATIDDSSNENEKEKRKELSTSISSDDEIEDDEDEDDMDYDSSAMEKELPEEEENDSSSKISEGEKKSLYQDLMENSTVEVNRYEPVNNTKENGNRNPKGEEEEEEEEDLKHKSRSITPPVTISNLSNFYQFNENINDRGSLNSTRIVKNWGDKFTNLKPRGLLNHGVTCYTNAAVQAMLHIPSIQHYLFDILMGKYDSTISKNSVSYTLAETSKKMWLPVSKNPRKNVSASYINPKHLISRLDDINCMMSEWQQEDSHEYFMSLMSRLQEDSVPKGHKLIESIIYDIFGGLLKQIVTCKSCGSISKTEQPFYDLSLHLKGKKKLDPNSDLSSDSINGTSATTSTTTSNAATKPSLSSSSSVNLNNGSPFAAASDLSSANRRFSIEKSIKDFFNPELIKVDKEQKGYVCEKCHKTTNAVKHSSILRAPETLLVHLKKFRFNGTSSSKMKQAVSYPMFLDLTEYCESKELPVKYQLLSVVVHEGRSLSSGHYIAHCKQPDGSWATYDDEYINIISERDVLKEPNAYYLLYTRLTPKSVPLPLAKSAMATGNVTSKSKQEQAVNEPNNRPLKINSKKNNRKKWKKNKKRKFTK*" + } + ], + "YNL181W": [ + { + "revision": "110203", + "new_alignment": "MPLNIIGTALLDGTDKIPYYQTIKKVAPYVLATGAIKYWSRGPSNTWERKLHGKVYLVTGATSQGMGTSVAYKMAELGAQLIILTREVDEWVTEWCEELREKTKNELIFVEKCDLSNLWEIRKFATSWLDNSPPRRLDGVIVMSGDMEPWGIPKISLPQRRSSKDGLELQIATNYVAIFHLLNLLQPSFKAQPPDRDVRIILATCWLQVVGDINIEDPLWQNAKYKSALKFFASSKLQLGLSMMELQRRLTEDIKNQKTNGAERTGKNVTITMVQPGTMRSNSLRRVISNGSVVLLIILYCILLYPILWLFTKSGRRGDQSFLYALMTPELEEVNLKDTKVKYISDCSIVKFARKEFDDEELQKKLFDNTERDILQLEKKVAAKRNANKTGNQNSKKKSQNKSRKDD*", + "old_alignment": "MPLNIIGTALLDGTDKIPYYQTIKKVAPYVLATGAIKYWSRGPSNTWERKLHGKVYLVTGATSQGMGTSVAYKMAELGAQLIILTREVDEWVTEWCEELREKTKNELIFVEKCDLSNLWEIRKFATSWLDNSPPRRLDGVIVMSGDMEPWGIPKISLPQRRSSKDGLELQIATNYVAIFHLLNLLQPSFKAQPPDRDVRIILATCWLQVVGDINIEDPLWQNAKYKSALKFFASSKLQLGLSMMELQRRLTEDIKNQKTNGPERTGKNVTITMVQPGTMRSNSLRRVISNGSVVLLIILYCILLYPILWLFTKSGRRGDQSFLYALMTPELEEVNLKDTKVKYISDCSIVKFARKEFDDEELQKKLFDNTERDILQLEKKVAAKRNANKTGNQNSKKKSQNKSRKDD*" + } + ], + "YNL177C": [ + { + "revision": "110203", + "new_alignment": "MNFHTARISQVGVISRALLSSVSRRWIHVTPISLNNSGGSLFGSITENKPKEGKNRGDEDAGSFSNRLAIASDSSGEAPEVNRDSITIENDKLLQQHIISLQQPEQLASQSLLSPLKREIYEANCKINGGFYKKDTIVKLPNSSERYKLKLTKREIEVLEPSVYAQSYRIKSSMKKATLLLRLLGGLDVMKAISQCHFSNKKIAREVAELLQKGVKDGQKLGLKPEDLYISQIWTGSDGFWRKRVEFKARTRIGIISHPYIHVRCILRTKSVTKRRLAYEAHLKEQKRAPWVQLGDKPIRGVTGGVYKW*", + "old_alignment": "MNFHTARISQVGVISRALLSSVSRRWIHVTPISLNNSGGSLFGSITENKPKEGKNRGDEDAGSFSNRLAIASDSSGEAPEVNRDSITIENDKLLQQHIISLQQPEQLASQSLLSPLKREIYEANCKINGGFYKKDTIVKLPNSSERYKLKFTKREIEVLEPSVYAQSYRIKSSMKKATLLLRLLGGLDVMKAISQCHFSNKKIAREVAELLQKGVKDGQKLGLKPEDLYISQIWTGSDGFWRKRVEFKARTRIGIISHPYIHVRCILRTKSVTKRRLAYEAHLKEQKRAPWVQLGDKPIRGVTGGVYKW*" + } + ], + "YNL176C": [ + { + "revision": "110203", + "new_alignment": "MNSNSTIGRTTLGESDTISLSFSEPSSSLNSRSTDVVFASTSTLVPQQGSLTSLPPVSSTATPTYYSTSLTYDETLHTSIDVSSTSTLVSSTDSSSSSEQDTYSSQYDPATSSYSIITPSMSIFSSTSPMSSSSSITSEWSSLTSTTPTLSSSATSLSSSWSSLSSPSSLLVSSSLSLSLSSSYSDTKLFSFDSRSSIFSPSTPTVISPSYTYLSSISATSFQISTTSELSSSWFSTISSPSTISNKDTTFPSSSRNTSTSFYSSSLSSTNDFSTISKSSKLSPSASSSTVSISTISVPTSSSVSSSSSKVPSNRPSSSSSSDDTTSAYSSTYTFQSLQSTTSSSIPPTTQTPSTSTISTSPIPTSSQVFNTVAISSSEDSKTIYYFYTQTYDITDSSTTFVTGLPTTIAVAKSEVTSFSAPSSTITADMSFYQHWLDGSLDNNKNQGTSKTNTGTIVGSVVGSVGGILICVLVVWFMLVRKRKAKRHFKENDSFCHEIGRRTGFPTTAQAKEASLQAQDSGSQQRNTETASANNPFSNEFNFKARGNPPPVPPPRNVTAMNGSFQNMRSNFMDQENRFSYGSSFTYSSLGSSTQGGFSTLSSNSIRLGRGLDNDISHDERNTVQNNSQGFLREII*", + "old_alignment": "MNSNSTIGRTTLGESDTISLSFSEPSSSLNSRSTDVVFASTSTLVPQQGSLTSLPPVSSTATPTYYSTSLTYDETLHTSIDVSSTSTLVSSTDSSSSSEQDTYSSQYDPATSSYSIITPSMSIFSSTSPMSSSSSITSEWSSLTSTTPTLSSSATSLSSSWSSLSSPSSLLVSSSLSLSLSSSYSDTKLFSFDSRSSIFSPSTPTVISPSYTYLSSISATSFQISTTSELSSSWFSTISSPSTISNKDTTCPSSSRNTSTSFYSSSLSSTNDFSTISKSSKLSPSASSSTVSISTISVPTSSSVSSSSSKVPSNRPSSSSSSDDTTSAYSSTYTFQSLQSTTSSSIPPTTQTPSTSTISTSPIPTSSQVFNTVAISSSEDSKTIYYFYTQTYDITDSSTTFVTGLPTTIAVAKSEVTSFSAPSSTITADMSFYQHWLDGSLDNNKNQGTSKTNTGTIVGSVVGSVGGILICVLVVWFMLVRKRKAKRHFKENDSFCHEIGRRTGFPTTAQAKEASLQAQDSGSQQRNTETASANNPFSNEFNFKARGNPPPVPPPRNVTAMNGSFQNMRSNFMDQENRFSYGSSFTYSSLGSSTQGGFSTLSSNSIRLGRGLDNDISHDERNTVQNNSQGFLREII*" + } + ], + "YNL175C": [ + { + "revision": "110203", + "new_alignment": "MSETELSKEDAVTKKDNEEQVKKALLDPTKKRKAEDEIEIDLKSSIPLSKKQKRLLRRGKVTLEELNAKYNIDPKSIEEYKEDAEKKKSGASEKDAQGEESTINTPTGDESGEVVKKKKKDENKYGVWIGNLSFDTTKDDLVRFFIAKTKDNEDEKSRVTEQDITRLSMPRVAAKNSNAMKNKGFCYMFFKNVEQMKAVLELSESHLNGRNMLIKDSENYSGRPDKDDLVAMSKNPPSRILFVGNLSFDVTDDLLRKHFQHCGDIVKIRMATFEDSGKCKGFAFIDFKNEEGSTNALKDKSCRKIAGRPLRMEYGEDRSKRQVRKKVENVSRNNSSSFDISNNKGYDRAGQDNGSKPEYKRSNANRRPPVDSNNRTKSSVALATAQRGSAAIVPSQGKKVKFD*", + "old_alignment": "MSETELSKEDAVTKKDNEEQVKKALLDPTKKRKAEDEIEIDLKSSIPLSKKQKRLLRRGKVTLEELNAKYNIDPKSIEEYKEDAEKKKSGASEKDAQGEESTINTPTGDESGEVVKKKKKDENKYGVWIGNLSFDTTKDDLVRFFIAKTKDNEDEKSRVTEQDITRLSMPRVAAKNSNAMKNKGFCYMFFKNVEQMKAVLELSESHLNGRNMLIKDSENYSGRPDKDDLVAMSKNPPSRILFVGNLSFDVTDDLLRKHFQHCGDIVKIRMATFEDSGKCKGFAFIDFKNEEGSTNELKDKSCRKIAGRPLRMEYGEDRSKRQVRKKVENVSRNNSSSFDISNNKGYDRAGQDNGSKPEYKRSNANRRPPVDSNNRTKSSVALATAQRGSAAIVPSQGKKVKFD*" + } + ], + "YNL172W": [ + { + "revision": "110203", + "new_alignment": "MTSKPSTRNDYLPRETHNGEYTGDSPEWQLQINITNKIGGINGDIWLSRDGRSVKWCIEDQCLRQFTYNQKIIKAGYIDFEKTPDCFVVVLSDIAHVYMLKNGGSTTVCFPFQIGNAFWYANGVILERETSASFMDGGYDLKPIEFDLKHKYITLTDPMAPFGLISITNTFKGGINSASGNKTDILQDFQLVLFPSDKDKCIAVFLDRNSKVLRFYYSRILSSDQSRKGELTISSTKKTGLDAAGNSQKSGGISKDLRKFSHLTRRSTSINSNSHDFNAAERVLSGNVGNASGRTDIFALPSSCSRRSLSATLDRMGNNIAPTNRAAPSGFFDSSSANTATHSNITPVSQPMQQQQQEYLNQTATSSKDIVLTEISSLKLPDDIIFTSRRLSSILSKLKFLSLRFERREGLLIFHEPTHFCKIWLIDLLPDVLDSIPFKIYGNSPQNMIRLENLKLKEPSRIQAMYIHELLESCLILVSEGQNKEEYKACLYDPFVKITSPSKNISEELTKQNSLPSLQKLFPYPETSFTKLCFEAVKYITSPAFNISFIFLWQSAYSILLSRANDDVVGGLKMEHDAFSLVLSLLILPIPSSSAQEYQEYKEIYERDLFQHLKQDSEITSSVLPRIVIGLHLIREEYSLNVLCRNEHALLGQFLRFATAAMGWPDLWQSYYVPKMDSESKTFLHPREQNSTFFHPLDEPPSITKSLYSITENSSIPLCPFISFSRLVATDTQVELRITPRSFKILGLYELVHSPNFLPDYVLGILSSFKVDKDELQTYPLGILVPLQNILKILEDKLSEVRDNLELLDRADLQRCSAIINSIRSDSKEVLKRGQRDSYMLCKVPLAKNRSSLSKKPSDIYSILSEIVKSASQVPLDGSAMRMSNIQDDEDIDEGRSLKLNAGLIFSEDKRFTHVVSLLAYYRPTKTQFFTTKTEYAQILAQKKYFAKIMALRTCTNGVGWGAVAYATEKPISTQKWVIQPLNLISVFPDDTKITVKAPEDIAHDIVEWGQFHAGVSSGLRISKKATGITGSWIAFNKPKELDAYHGGFLLGLGLNGHLKNLEEWHIYNYLSPRNTHISIGLLLGMSSSMKGSMDSKLIKVISVHLVAFLPSGSSDLNIDLKLQTAGIIGMGMLYLNSRHKRMSDSIFAQLVSLLNVNDEMVADEEYRLAAGISLGLINLGAGQTKLRKWDSSLLGLGDDLPEDVYDSSDVEQNVMYEDLTTKLLEIVTSTYDVENDWIPENSQIGAVIAIMFLFLKSNNFGISNMLKVDLKEILKANINTRPELLMYREWASNMILWEFIGDDLSFIMKDVDIGVKFSELNTDLLPIYYTMAGRILAMGIRFASTGNLKIRNILLSLVDKFLPLYQYPGKQNLDFRLTISVINVLTNVIVVSLSMVMCASGDLEVLRRVKYLHEVASGPYSDLFQEIPSSKSDVSGVTQVTSNTNTPGNSDRERVDETAASLDDERSSNGSDISDPTAYLEDKKDIDDHYGKFISTNLALGFLFLGSGQYALNTSTLESIAFLSMSVLPTYTTPHPLQELKHFWSMAVEPRCLVIKDISTGDAVNNVPIELVVEEDVEKEEVIREISTPCLLPDFSKIKSIRVKMHGYFPLEVNFTKDYSASDFFSGGTIIYIQRKSESVFENKASFRNVEDIHVALKRKAAESKNYSRLNLKNEQGNTTSSQLVESLGIQDLTMVELDTLLSAGNNTALTDSESYNLGLLCSDKNSGDILDCQLELWYKSFGPHDE*", + "old_alignment": "MTSKPSTRNDYLPRETHNGEYTGDSPEWQLQINITNKIGGINGDIWLSRDGRSVKWCIEDQCLRQFTYNQKIIKAGYIDFEKTPDCFVVVLSDIAHVYMLKNGGSTTVCFPFQIGNAFWYANGVILERETSASFMDGGYDLKPIEFDLKHKYITLTDPMAPFGLISITNTFKGGINSASGNKTDILQDFQLVLFPSDKDKCIAVFLDRNSKVLRFYYSRILSSDQSRKGELTISSTKKTGLDAAGNSQKSGGISKDLRKFSHLTRRSTSINSNSHDFNAAERVLSGNVGNASGRTDIFALPSSCSRRSLSATLDRMGNNIAPTNRAAPSGFFDSSSANTATHSNITPVSQPMQQQQQEYLNQTATSSKDIVLTEISSLKLPDDIIFTSRRLSSILSKLKFLSLRFERREGLLIFHEPTHFCKIWLIDLLPDVLDSIPFKIYGNSPQNMIRLENLKLKEPSRIQAMYIHELLESCLILVSEGQNKEEYKACLYDPFVKITSPSKNISEELTKQNSLPSLQKLFPYPETSFTKLCFEAVKYITSPAFNISFIFLWQSAYSILLSRANDDVVGGLKMEHDAFSLVLSLLILPIPSSSAQEYQEYKEIYERDLFQHLKQDSEITSSVLPRIVIGLHLIREEYSLNVLCRNEHALLGQFLRFATAAMGWPDLWQSYYVPKMDSESKTFLHPREQNSTFFHPLDEPPSITKSLYSITENSSIPLCPFISFSRLVATDTQVELRITPRSFKILGLYELVHSPNFLPDYVLGILSSFKVDKDELQTYPLGILVPLQNILKILEDKLSEVRDNLELLDRADLQRCSAIINSIRSDSKEVLKRGQRDSYMLCKVPLAKNRSSLSKKPSDIYSILSEIVKSASQVPLDGSAMRMSNIQDDEDIDEGRSLKLNAGLIFSEDKRFTHVVSLLAYYRPTKTQFFTTKTEYAQILAQKKYFAKIMALRTCTNGVGWGAVAYATEKPISTQKWVIQPLNLISVFPDDTKITVKAPEDIAHDIVEWGQFHAGVSSGLRISKKATGITGSWIAFNKPKELDAYHGGFLLGLGLNGHLKNLEEWHIYNYLSPRNTHISIGLLLGMSSSMKGSMDSKLIKVISVHLVAFLPSGSSDLNIDLKLQTAGIIGMGMLYLNSRHKRMSDSIFAQLVSLLNVNDEMVADEEYRLAAGISLGLINLGAGQTKLRKWDSSLLGLGDDLPEDVYDSSDVEQNVMYEDLTTKLLEIVTSTYDVENDWIPENSQIGAVIAIMFLFLKSNNFGISNMLKVDLKEILKANINTRPELLMYREWASNMILWEFIGDDLSFIMKDVDIGVKFSELNTDLLPIYYTMAGRILAMGIRFASTGNLKIRNILLSLVDKFLPLYQYPGKQNLDFRLTISVINVLTNVIVVSLSMVMCASGDLEVLRRVKYLHEVASGPYSDLFQEIPSSKSDVSGVTQVTSNTNTPGNSDRERVDETAASLDDERSSNGSDISDPTAYLEDKKDIDDHYGKFISTNLALGFLFLGSGQYALNTSTLESIAFLSMSVLPTYTTPHPLQELKHFWSIAVEPRCLVIKDISTGDAVNNVPIELVVEEDVEKEEVIREISTPCLLPDFSKIKSIRVKMHGYFPLEVNFTKDYSASDFFSGGTIIYIQRKSESVFENKASFRNVEDIHVALKRKAAESKNYSRLNLKNEQGNTTSSQLVESLGIQDLTMVELDTLLSAGNNTALTDSESYNLGLLCSDKNSGDILDCQLELWYKSFGPHDE*" + } + ], + "YNL147W": [ + { + "revision": "070906", + "new_alignment": "MHQQHSKSENKPQQQRKKFEGPKREAILDLAKYKDSKIRVKLMGGKLVIGVLKGYDQLMNLVLDDTVEYMSNPDDENNTELISKNARKLGLTVIRGTILVSLSSAEGSDVLYMQK*", + "old_alignment": "MHQQHS--------QRKKFEGPKREAILDLAKYKDSKIRVKLMGGKLVIGVLKGYDQLMNLVLDDTVEYMSNPDDENNTELISKNARKLGLTVIRGTILVSLSSAEGSDVLYMQK*" + } + ], + "YNL130C": [ + { + "revision": "040402", + "new_alignment": "MGFFIPQSSLGNLKLYK---------------------------------------------------------------------------------------------------------------------------------YQSDDRSFLSNHVLRPFWRKFATIFPLWMAPNLVTLLGFCFIIFNVLTTLYYDPYFDQESPRWTYFSYAIGLFLYQTFDACDGMHARRTGQQGPLGELFDHCIDSINTTLSMIPVCSMTGMGYTYMTIFSQFAILCSFYLSTWEEYHTHKLYLAEFCGPVEGIIVLCISFIAVGIYGPQTIWHTKVAQFSWQDFVFDVETVHLMYAFCTGALIFNIVTAHTNVVRYYESQSTKSATPSKTAENISKAVNGLLPFFAYFSSIFTLVLIQPSFISLALILSIGFSVAFVVGRMIIAHLTMQPFPMVNFPFLIPTIQLVLYAFMVYVLDYQKGSIVSALVWMGLGLTLAIHGMFINDIIYDITTFLDIYALSIKHPKEI*", + "old_alignment": "MGFFIPQSS--------FCQ*FLSVP*QVWVTHI*PFFHNLRYCAAFT*AHGKSITPTNFI*LNSAVLLKVLLFCVFLSLQSEFTDLKPSGTLK*RNSPGKILCLMLKPFI*CMHFAQEH*YLILSQLIQTS*GITNPNRPNLQLQYQSDDRSFLSNHVLRPFWRKFATIFPLWMAPNLVTLLGFCFIIFNVLTTLYYDPYFDQESPRWTYFSYAIGLFLYQTFDACDGMHARRTGQQGPLGELFDHCIDSINTTLSMIPVCSMTGMGYTYMTIFSQFAILCSFYLSTWEEYHTHKLYLAEFCGPVEGIIVLCISFIAVGIYGPQTIWHTKVAQFSWQDFVFDVETVHLMYAFCTGALIFNIVTAHTNVVRYYESQSTKSATPSKTAENISKAVNGLLPFFAYFSSIFTLVLIQPSFISLALILSIGFSVAFVVGRMIIAHLTMQPFPMVNFPFLIPTIQLVLYAFMVYVLDYQKGSIVSALVWMGLGLTLAIHGMFINDIIYDITTFLDIYALSIKHPKEI*" + }, + { + "revision": "040206", + "new_alignment": "MGFFIPQSSLGNLKLYK----------YQSDDRSFLSNHVLRPFWRKFATIFPLWMAPNLVTLLGFCFIIFNVLTTLYYDPYFDQESPRWTYFSYAIGLFLYQTFDACDGMHARRTGQQGPLGELFDHCIDSINTTLSMIPVCSMTGMGYTYMTIFSQFAILCSFYLSTWEEYHTHKLYLAEFCGPVEGIIVLCISFIAVGIYGPQTIWHTKVAQFSWQDFVFDVETVHLMYAFCTGALIFNIVTAHTNVVRYYESQSTKSATPSKTAENISKAVNGLLPFFAYFSSIFTLVLIQPSFISLALILSIGFSVAFVVGRMIIAHLTMQPFPMVNFPFLIPTIQLVLYAFMVYVLDYQKGSIVSALVWMGLGLTLAIHGMFINDIIYDITTFLDIYALSIKHPKEI*", + "old_alignment": "-----------------MRIARIVKHLYQSDDRSFLSNHVLRPFWRKFATIFPLWMAPNLVTLLGFCFIIFNVLTTLYYDPYFDQESPRWTYFSYAIGLFLYQTFDACDGMHARRTGQQGPLGELFDHCIDSINTTLSMIPVCSMTGMGYTYMTIFSQFAILCSFYLSTWEEYHTHKLYLAEFCGPVEGIIVLCISFIAVGIYGPQTIWHTKVAQFSWQDFVFDVETVHLMYAFCTGALIFNIVTAHTNVVRYYESQSTKSATPSKTAENISKAVNGLLPFFAYFSSIFTLVLIQPSFISLALILSIGFSVAFVVGRMIIAHLTMQPFPMVNFPFLIPTIQLVLYAFMVYVLDYQKGSIVSALVWMGLGLTLAIHGMFINDIIYDITTFLDIYALSIKHPKEI*" + } + ], + "YNL103W": [ + { + "revision": "061110", + "new_alignment": "MKQEQSHEGDSYSTEFINLFGKDTATHPSSNNGANNNGMGSTNSLDQFVATASSSSSLVTSSENRRPLIGDVTNRGNTNLYDHAVTPEILLEQLAYVDNFIPSLDNEFSNVDWNVNTTHNNANNNGADTFSSINANPFDLDEQLAIELSAFADDSFIFPDEDKPSNNNNNSNNGNDDHSNHDVLHEDPSTNNRQRNPHFLTQRRNTFLTSQYDQSKSRFSSKNKRNGNNGETNNFGDNMQNNHPFEPNFMGSPSQFPADATNMTSIDHGGFTNVDITSTENNTTGDNGVDALSNLLHRTTHTPNRSSPLSNVTSAQNSSSQQRKHSESKVDSNSDNNSSNKAPNITVPDYSIIPTSVLVTLLPRVNVPNGAYNSLISAGFDNDQIDAIAAIMAYHHQKKIRENNSNNNKNINTNDSQEAPILKNINELLSVLIPPSPAETAAPTTLSTSPSFNEHGVVAEASFLSSILELGIKHPKSNNIHNQRQPSRNDHKISRESDGNNGNDNVHHNNAVIKSSTTRGDEIAKIRSEPTLNASSSDHKENSLKRSHSGDLKNKKVPVDRKYSDNEDDEYDDADLHGFEKKQLIKKELGDDDEDLLIQSKKSHQKKKLKEKELESSIHELTEIAASLQKRIHTLETENKLLKNLVLSSGETEGIKKAESLKKQIFEKVQKE*", + "old_alignment": "MKQEQSHEGDSYSTEFINLFGKDTATHPSSNNGANNNGMGSTNSLDQFVATASSSSSLVTSSENRRPLIGDVTNRGNTNLYDHAVTPEILLEQLAYVDNFIPSLDNEFSNVDWNVNTTHNNANNNGADTFSSINANPFDLDEQLAIELSAFADDSFIFPDEDKPSNNNNNSNNGNDDHSNHDVLHEDPSTNNRQRNPHFLTQRRNTFLTSQYDQSKSRFSSKNKRNGNNGETNNFGDNMQNNHPFEPNFMGSPSQFPADATNMTSIDHGGFTNVDITSTENNTTGDNGVDALSNLLHRTTHTPNRSSPLSNVTSAQNSSSQQRKHSESKVDSNSDNNSSNKAPNITVPDYSIIPTSVLVTLLPRVNVPNGAYNSLISAGFDNDQIDAIAAIMAYHHQKKIRENNSNNNKNINTNDSQEAPILKNINELLSVLIPPSPAETRGPTTLSTSPSFNEHGVVAEASFLSSILELGIKHPKSNNIHNQRQPSRNDHKISRESDGNNGNDNVHHNNAVIKSSTTRGDEIAKIRSEPTLNASSSDHKENSLKRSHSGDLKNKKVPVDRKYSDNEDDEYDDADLHGFEKKQLIKKELGDDDEDLLIQSKKSHQKKKLKEKELESSIHELTEIAASLQKRIHTLETENKLLKNLVLSSGETEGIKKAESLKKQIFEKVQKE*" + } + ], + "YNL083W": [ + { + "revision": "100105", + "new_alignment": "MLLKNCETDKQRDIRYACLFKELDVKGNGQVTLDNLISAFEKNDHPLKGNDEAIKMLFTAMDVNKDSVVDLSDFKKYASNAESQIWNGFQRIDLDHDGKIGINEINRYLSDLDNQSICNNELNHELSNEKMNKFSRFFEWAFPKRKANIALRGQASHKKNTDNDRSKKTTDSDLYVTYDQWRDFLLLVPRKQGSRLHTAYSYFYLFNEDVDLSSEGDVTLINDFIRGFGFFIAGGISGVISRTCTAPFDRLKVFLIARTDLSSILLNSKTDLLAKNPNADINKISSPLAKAVKSLYRQGGIKAFYVGNGLNVIKVFPESSIKFGSFEVTKKIMTKLEGCRDTKDLSKFSTYIAGGLAGMAAQFSVYPIDTLKFRVQCAPLDTKLKGNNLLFQTAKDMFREGGGQIILQRCHSRYSGHISLCCIRFGDFFCLKKMVYCQTGKDPEPTTRSGHSKQPGCTSNGCIQWNCRSFCCLSNQSFKNKTTSPRNICTSLCV*------------------------------------------------------------------------------------------------------------------------------------------------", + "old_alignment": "MLLKNCETDKQRDIRYACLFKELDVKGNGQVTLDNLISAFEKNDHPLKGNDEAIKMLFTAMDVNKDSVVDLSDFKKYASNAESQIWNGFQRIDLDHDGKIGINEINRYLSDLDNQSICNNELNHELSNEKMNKFSRFFEWAFPKRKANIALRGQASHKKNTDNDRSKKTTDSDLYVTYDQWRDFLLLVPRKQGSRLHTAYSYFYLFNEDVDLSSEGDVTLINDFIRGFGFFIAGGISGVISRTCTAPFDRLKVFLIARTDLSSILLNSKTDLLAKNPNADINKISSPLAKAVKSLYRQGGIKAFYVGNGLNVIKVFPESSIKFGSFEVTKKIMTKLEGCRDTKDLSKFSTYIAGGLAGMAAQFSVYPIDTLKFRVQCAPLDTKLKGNNLLFQTAKDMFREGG---------------------------------------------------------------------------------------------LRLFYRGVTVGIVGIFPYAALDLGTFSALKKWYIAKQAKTLNLPQDQVTLSNLVVLPMGAFSGTVGASVVYPINLLRTRLQAQGTYAHPYVYNGFKDVLLKTLEREGYQGLFKGLVPTLAKVCPAVSISYLCYENLKKFMNLE*" + }, + { + "revision": "040305", + "new_alignment": "MLLKNCETDKQRDIRYACLFKELDVKGNGQVTLDNLISAFEKNDHPLKGNDEAIKMLFTAMDVNKDSVVDLSDFKKYASNAESQIWNGFQRIDLDHDGKIGINEINRYLSDLDNQSICNNELNHELSNEKMNKFSRFFEWAFPKRKANIALRGQASHKKNTDNDRSKKTTDSDLYVTYDQWRDFLLLVPRKQGSRLHTAYSYFYLFNEDVDLSSEGDVTLINDFIRGFGFFIAGGISGVISRTCTAPFDRLKVFLIARTDLSSILLNSKTDLLAKNPNADINKISSPLAKAVKSLYRQGGIKAFYVGNGLNVIKVFPESSIKFGSFEVTKKIMTKLEGCRDTKDLSKFSTYIAGGLAGMAAQFSVYPIDTLKFRVQCAPLDTKLKGNNLLFQTAKDMFREGGGQIILQRCHSRYSGHISLCCIRFGDFFCLKKMVYCQTGKDPEPTTRSGHSKQPGCTSNGCIQWNCRSFCCLSNQSFKNKTTSPRNICTSLCV*", + "old_alignment": "MLLKNCETDKQRDIRYACLFKELDVKGNGQVTLDNLISAFEKNDHPLKGNDEAIKMLFTAMDVNKDSVVDLSDFKKYASNAESQIWNGFQRIDLDHDGKIGINEINRYLSDLDNQSICNNELNHELSNEKVNKFSRFFEWAFPKRKANIALRGQASHKKNTDNDRSKKTTDSDLYVTYDQWRDFLLLVPRKQGSRLHTAYSYFYLFNEDVDLSSEGDVTLINDFIRGFGFFIAGGISGVISRTCTAPFDRLKVFLIARTDLSSILLNSKTDLLAKNPNADINKISSPLAKAVKSLYRQGGIKAFYVGNGLNVIKVFPESSIKFGSFEVTKKIMTKLEGCRDTKDLSKFSTYIAGGLAGMAAQFSVYPIDTLKFRVQCAPLDTKLKGNNLLFQTAKDMFREGGGQIILQRCHSRYSGHISLCCIRFGDFFCLKKMVYCQTGKDPEPTTRSGHSKQPGCTSNGCIQWNCRSFCCLSNQSFKNKTTSPRNICTSLCV*" + } + ], + "YNL082W": [ + { + "revision": "040709", + "new_alignment": "-------------------------------MTQIHQINDIDVHRITSGQVITDLTTAVKELVDNSIDANANQIEIIFKDYGLESIECSDNGDGIDPSNYEFLALKHYTSKIAKFQDVAKVQTLGFRGEALSSLCGIAKLSVITTTSPPKADKLEYDMVGHITSKTTTSRNKGTTVLVSQLFHNLPVRQKEFSKTFKRQFTKCLTVIQGYAIINAAIKFSVWNITPKGKKNLILSTMRNSSMRKNISSVFGAGGMRGLEEVDLVLDLNPFKNRMLGKYTDDPDFLDLDYKIRVKGYISQNSFGCGRNSKDRQFIYVNKRPVEYSTLLKCCNEVYKTFNNVQFPAVFLNLELPMSLIDVNVTPDKRVILLHNERAVIDIFKTTLSDYYNRQELALPKRMCSQSEQQAQKRLKTEVFDDRSTTHESDNENYHTARSESNQSNHAHFNSTTGVIDKSNGTELTSVMDGNYTNVTDVIGSECEVSVDSSVVLDEGNSSTPTKKLPSIKTDSQNLSDLNLNNFSNPEFQNITSPDKARSLEKVVEEPVYFDIDGEKFQEKAVLSQADGLVFVDNECHEHTNDCCHQERRGSTDTEQDDEADSIYAEIEPVEINVRTPLKNSRKSISKDNYRSLSDGLTHRKFEDEILEYNLSTKNFKEISKNGKQMSSIISKRKSEAQENIIKNKDELEDFEQGEKYLTLTVSKNDFKKMEVVGQFNLGFIIVTRKVDNKYDLFIVDQHASDEKYNFETLQAVTVFKSQKLIIPQPVELSVIDELVVLDNLPVFEKNGFKLKIDEEEEFGSRVKLLSLPTSKQTLFDLGDFNELIHLIKEDGGLRRDNIRCSKIRSMFAMRACRSSIMIGKPLNKKTMTRVVHNLSELDKPWNCPHGRPTMRHLMELRDWSSFSKDYEI*", + "old_alignment": "MFHHIENLLIETEKRCKQKEQRYIPVKYLFSMTQIHQINDIDVHRITSGQVITDLTTAVKELVDNSIDANANQIEIIFKDYGLESIECSDNGDGIDPSNYEFLALKHYTSKIAKFQDVAKVQTLGFRGEALSSLCGIAKLSVITTTSPPKADKLEYDMVGHITSKTTTSRNKGTTVLVSQLFHNLPVRQKEFSKTFKRQFTKCLTVIQGYAIINAAIKFSVWNITPKGKKNLILSTMRNSSMRKNISSVFGAGGMRGLEEVDLVLDLNPFKNRMLGKYTDDPDFLDLDYKIRVKGYISQNSFGCGRNSKDRQFIYVNKRPVEYSTLLKCCNEVYKTFNNVQFPAVFLNLELPMSLIDVNVTPDKRVILLHNERAVIDIFKTTLSDYYNRQELALPKRMCSQSEQQAQKRLKTEVFDDRSTTHESDNENYHTARSESNQSNHAHFNSTTGVIDKSNGTELTSVMDGNYTNVTDVIGSECEVSVDSSVVLDEGNSSTPTKKLPSIKTDSQNLSDLNLNNFSNPEFQNITSPDKARSLEKVVEEPVYFDIDGEKFQEKAVLSQADGLVFVDNECHEHTNDCCHQERRGSTDTEQDDEADSIYAEIEPVEINVRTPLKNSRKSISKDNYRSLSDGLTHRKFEDEILEYNLSTKNFKEISKNGKQMSSIISKRKSEAQENIIKNKDELEDFEQGEKYLTLTVSKNDFKKMEVVGQFNLGFIIVTRKVDNKYDLFIVDQHASDEKYNFETLQAVTVFKSQKLIIPQPVELSVIDELVVLDNLPVFEKNGFKLKIDEEEEFGSRVKLLSLPTSKQTLFDLGDFNELIHLIKEDGGLRRDNIRCSKIRSMFAMRACRSSIMIGKPLNKKTMTRVVHNLSELDKPWNCPHGRPTMRHLMELRDWSSFSKDYEI*" + } + ], + "YNL008C": [ + { + "revision": "110203", + "new_alignment": "MSTNILQHVKQLLHN--------RDVFSFFHNKTGNLNYLDNTTQKPEVFVSPNSTIVSAPTLDSFQALMEKGNFTTLQLAKVGIRMFFSYSVSKYAVLCFSTAIILNRLTVMSSLRSNSTNIRLPLWSKTLLHLVATLSLVKALLQILSQFGLMHELHVSDTDFYALSVYLFVALSDCIEIFISSTTNVPSLICSDFSIWGLSLNLYIISKMPAGQQHIGDNVELLGAVFHRLVIHLVELFHIRAYRLCGEVILNAGFFTAFVTRTYLNGLDFINICLIHNYFPGFFYISTILLASIGIFLKALFTSNPFRSLYSRYKNLEKWWRSNNYNGEEEFNEIALSLCLLLTSNDYKIFKKSDNVKSVDEVAAFSNSYVVSGHLNQLQSTPEDLLSRKEMTTDSQLPGFARTYLGLFELVRTIILTYSRLLKNLLWSKNFESSIDKKPRVGKRKKRDLNKYVTEKNYKKFLYKPDVKELNIESDLRSLELLLPEDDSSKDYFPPRKIDESVSDEEFDSDMESQLIIDEEKELTHLSSNAVDSDDLEEIAWNISMWSILNYEMDVHNKVNGPLTRSQYGKRNPQGVLVDVVIERLLHHTNSRYMYKRLNMKDDDKLEFKFDFAFDSCDEVEEMDLSCLICKVNKRNIVTWPCRCLALCDDCRISLGYKGFATCVSCDSEVKGYSKLNIV*", + "old_alignment": "---------------MLSNCSITRDVFSFFHNKTGNLNYLDNTTQKPEVFVSPNSTIVSAPTLDSFQALMEKGNFTTLQLAKVGIRMFFSYSVSKYAVLCFSTAIILNRLTVMSSLRSNSTNIRLPLWSKTLLHLVATLSLVKALLQILSQFGLMHELHVSDTDFYALSVYLFVALSDCIEIFISSTTNVPSLICSDFSIWGLSLNLYIISKMPAGQQHIGDNVELLGAVFHRLVIHLVELFHIRAYRLCGEVILNAGFFTAFVTRTYLNGLDFINICLIHNYFPGFFYISTILLASIGIFLKALFTSNPFRSLYSRYKNLEKWWRSNNYNGEEEFNEIALSLCLLLTSNDYKIFKKSDNVKSVDEVAAFSNSYVVSGHLNQLQSTPEDLLSRKEMTTDSQLPGFARTYLGLFELVRTIILTYSRLLKNLLWSKNFESSIDKKPRVGKRKKRDLNKYVTEKNYKKFLYKPDVKELNIESDLRSLELLLPEDDSSKDYFPPRKIDESVSDEEFDSDMESQLIIDEEKELTHLSSNAVDSDDLEEIAWNISMWSILNYEMDVHNKVNGPLTRSQYGKRNPQGVLVDVVIERLLHHTNSRYMYKRLNMKDDDKLEFKFDFAFDSCDEVEEMDLSCLICKVNKRNIVTWPCRCLALCDDCRISLGYKGFATCVSCDSEVKGYSKLNIV*" + } + ], + "YNL004W": [ + { + "revision": "070713", + "new_alignment": "MSDQERGSENNNRSRSRSRSPVRRRMSDDHGYERDNHLSRRSGNYNGRRKFADTYRGSRDRGEYRGGRERSDYRERERFNNRDNPRSRDRYDDRRRGRDVTGRYGNRRDDYPRSFRSRHNTRDDSRRGGFGSSGARGDYGPLLARELDSTYEEKVNRNYSNSIFVGNLTYDSTPEDLTEFFSQIGKVVRADIITSRGHHRGMGTVEFTNSDDVDRAIRQYDGAFFMDRKIFVRQDNPPPSNNIKERKALDRGELRHNRKTHEVIVKNLPASVNWQALKDIFKECGNVAHADVELDGDGVSTGSGTVSFYDIKDLHRAIEKYNGYSIEGNVLDVKSKESVHNHSDGDDVDIPMDDSPVNEEARKFTENVVGGGERNRLIYCSNLPFSTAKSDLYDLFETIGKVNNAELRYDSKGAPTGIAVVEYDNVDDADVCIERLNNYNYGGCDLDISYAKRL*", + "old_alignment": "-------------------------MSDDHGYERDNHLSRRSGNYNGRRKFADTYRGSRDRGEYRGGRERSDYRERERFNNRDNPRSRDRYDDRRRGRDVTGRYGNRRDDYPRSFRSRHNTRDDSRRGGFGSSGARGDYGPLLARELDSTYEEKVNRNYSNSIFVGNLTYDSTPEDLTEFFSQIGKVVRADIITSRGHHRGMGTVEFTNSDDVDRAIRQYDGAFFMDRKIFVRQDNPPPSNNIKERKALDRGELRHNRKTHEVIVKNLPASVNWQALKDIFKECGNVAHADVELDGDGVSTGSGTVSFYDIKDLHRAIEKYNGYSIEGNVLDVKSKESVHNHSDGDDVDIPMDDSPVNEEARKFTENVVGGGERNRLIYCSNLPFSTAKSDLYDLFETIGKVNNAELRYDSKGAPTGIAVVEYDNVDDADVCIERLNNYNYGGCDLDISYAKRL*" + } + ], + "YOL152W": [ + { + "revision": "060106", + "new_alignment": "MIEERDLVLSNGIHCIADIHSELYARLKKESQAATPWVYQKQYGKFVTYFVAVIIFLSLIKKLAFMYYDSSEEFLPEKKNSPTTPSVFLARIMTKLVAFNRYICYRKFPTLIFSYLGIPTSVGTFLVVMATTLYTLLYCFVPHPFYRPCAGFGSPPLSVRAGIMAISLVPFVFSLSGKINVIGWLVGLSYEKINIYHQWASILCLFFSWVHVIPFLRQARHEGGYERMHQRWKASDMWRSGVPPILFLNLLWLSSLPIARRHFYEIFLQLHWILAVGFYISLFYHVYPELNSHMYLVATIVVWFAQLFYRLAVKGYLRPGRSFMASTIANVSIVGEGCVELIVKDVEMAYSPGQHIFVRTIDKGIISNHPFSIFPSAKYPGGIKMLIRAQKGFSKRLYESNDDMKKILIDGPYGGIERDIRSFTNVYLICSGSGISTCLPFLQKYGPILHKTNLEVITLDWVVRHREDISWIRDEMCTLSNNLRQLFLDGKIVVRIYVCSDSTVPGIIKTFPQTIDTASDQSDLAKREKDTEFGQDDTESNSTFDKSNNEYKGLITIIPSKPDLNQVINDYQIGFRNCFICSGSDSLRYTVGNSVAGLQAKVFSNKNVEECYLHSESFGY*----------------------------------", + "old_alignment": "MIEERDLVLSNGIHCIADIHSELYARLKKESQAATPWVYQKQYGKFVTYFVAVIIFLSLIKKLAFMYYDSSEEFLPEKKNSPTTPSVFLARIMTKLVAFNRYICYRKFPTLIFSYLGIPTSVGTFLVVMATTLYTLLYCFVPHPFYRPCAGFGSPPLSVRAGIMAISLVPFVFSLSGKINVIGWLVGLSYEKINIYHQWASILCLFFSWVHVIPFLRQARHEGGYERMHQRWKASDMWRSGVPPILFLNLLWLSSLPIARRHFYEIFLQLHWILAVGFYISLFYHVYPELNSHMYLVATIVVWFAQLFYRLAVKGYLRPGRSFMASTIANVSIVGEGCVELIVKDVEMAYSPGQHIFVRTIDKGIISNHPFSIFPSAKYPGGIKMLIRAQKGFSKRLYESNDDMKKILIDGPYGGIERDIRSFTNVYLICSGSGISTCLPFLQKYGPILHKTNLEVITLDWVVRHREDISWIRDEMCTLSNNLRQLFLDGKIVVRIYVCSDSTVPGIIKTFPQTIDTASDQSDLAKREKDTEFGQDDTESNSTFDKSNNEYKGLITIIPSKPDLNQVINDYQIGFRNCFICSGSDSLRYTVGNSVA-------------------------VYRPRFFLTKMSKSAIYTARVLATSRKQMASTM*" + } + ], + "YOL145C": [ + { + "revision": "110203", + "new_alignment": "MTNAMKVEGYPSMEWPTSLDIPLKASEELVGIDLETDLPDDPTDLKTLLVEENSEKEHWLTIALAYCNHGKTNEGIKLIEMALDVFQNSERASLHTFLTWAHLNLAKGQSLSVETKEHELTQAELNLKDAIGFDPTWIGNMLATVELYYQRGHYDKALETSDLFVKSIHAEDHRSGRQSKPNCLFLLLRAKLLYQKKNYMASLKIFQELLVINPVLQPDPRIGIGLCFWQLKDSKMAIKSWQRALQLNPKNTSASILVLLGEFRESFTNSTNDKTFKEAFTKALSDLNNIFSENQHNPVLLTLLQTYYYFKGDYQTVLDIYHHRILKMSPMIAKIVLSESSFWCGRAHYALGDYRKSFIMFQESLKKNEDNLLAKLGLGQTQIKNNLLEESIITFENLYKTNESLQELNYILGMLYAGKAFDAKTAKNTSAKEQSNLNEKALKYLERYLKLTLATKNQLVISRAYLVISQLYELQNQYKTSLDYLSKALEEMEFIKKEIPLEVLNNLACYHFINGDFIKADDLFKQAKAKVSDKDESVNITLEYNIARTNEKNDCEKSESIYSQVTSLHPAYIAARIRNLYLKFAQSKIEDSDMSTEMNKLLDLNKSDLEIRSFYGWYLKNSKERKNNEKSTTHNKETLVKYNSHDAYALISLANLYVTIARDGKKSRNPKEQEKSKHSYLKAIQLYQKVLQVDPFNIFAAQGLAIIFAESKRLGPALEILRKVRDSLDNEDVQLNLAHCYLEMREYGKAIENYELVLKKFDNEKTRPHILNLLGRAWYARAIKERSVNFYQKALENAKTALDLFVKESSKSKFIHSVKFNIALLHFQIAETLRRSNPKFRTVQQIKDSLEGLKEGLELFRELNDLKEFNMIPKEELEQRIQLGETTMKSALERSLNEQEEFEKEQSAKIDEARKILEENELKEQGWMKQEEEARRLKLEKQAEEYRKLQDEAQKLI-QEREAMAISEHNVKDDSDLSDKDNEYDEEKPRQKRKRSTKTKNSGESKRRKAAKKTLSDSDEDDDDVVKKPSHNKGKKSQLSNEFIEDSDEEEAQMSGSEQNKNDDNDENNDNDDNDGLF*", + "old_alignment": "MTNAMKVEGYPSMEWPTSLDIPLKASEELVGIDLETDLPDDPTDLKTLLVEENSEKEHWLTIALAYCNHGKTNEGIKLIEMALDVFQNSERASLHTFLTWAHLNLAKGQSLSVETKEHELTQAELNLKDAIGFDPTWIGNMLATVELYYQRGHYDKALETSDLFVKSIHAEDHRSGRQSKPNCLFLLLRAKLLYQKENYMASLKIFQELLVINPVLQPDPRIGIGLCFWQLKDSKMAIKSWQRALQLNPKNTSASILVLLGEFRESFTNSTNDKTFKEAFTKALSDLNNIFSENQHNPVLLTLLQTYYYFKGDYQTVLDIYHHRILKMSPMIAKIVLSESSFWCGRAHYALGDYRKSFIMFQESLKKNEDNLLAKLGLGQTQIKNNLLEESIITFENLYKTNESLQELNYILGMLYAGKAFDAKTAKNTSAKEQSNLNEKALKYLERYLKLTLATKNQLVISRAYLVISQLYELQNQYKTSLDYLSKALEEMEFIKKEIPLEVLNNLACYHFINGDFIKADDLFKQAKAKVSDKDESVNITLEYNIARTNEKNDCEKSESIYSQVTSLHPAYIAARIRNLYLKFAQSKIEDSDMSTEMNKLLDLNKSDLEIRSFYGWYLKNSKERKNNEKSTTHNKETLVKYNSHDAYALISLANLYVTIARDGKKSRNPKEQGKSKHSYLKAIQLYQKVLQVDPFNIFAAQGLAIIFAESKRLGPALEILRKVRDSLDNEDVQLNLAHCYLEMREYGKAIENYELVLKKFDNEKTRPHILNLLGRAWYARAIKETSVNFYQKALENAKTALDLFVKESSKSKFIHSVKFNIALLHFQIAETLRRSNPKFRTVQQIKDSLEGLKEGLELFRELNDLKEFNMIPKEELEQRIQLGETTMKSALERSLNEQEEFKKEQRAKIDEARKILEENELKEQGWMKQEEEARRLKLEKQAEEYRKLQDEAQK-IFQVREAMAISEHNVKDDSDLSDKDNEYDEEQPRQKRKRSTKTKNSGESKRRKAAKKTLSDSDEDDDDVVKKPSHNKGKKSQLSNEFIEDSDEEEAQMSGSEQNKNDDNDENNDNDDNDGLF*" + } + ], + "YOL142W": [ + { + "revision": "110203", + "new_alignment": "MSTFIFPGDSFPVDPTTPVKLGPGIYCDPNTQEIRPVNTGVLHVSAKGKSGVQTAYIDYSSKRYIPSVNDFVIGVIIGTFSDSYKVSLQNFSSSVSLSYMAFPNASKKNRPTLQVGDLVYARVCTAEKELEAEIECFDSTTGRDAGFGILEDGMIIDVNLNFARQLLFNNDFPLLKVLAAHTKFEVAIGLNGKIWVKCEELSNTLACYRTIMECCQKNDTAAFKDIAKRQFKEILTVKEE*", + "old_alignment": "MSTFIFPGDSFPVDPTTPVKLGPGIYCDPNTQEIRPVNTGVLHVSAKGKSGVQTAYIDYSSKRYIPSVNDFVIGVIIGTFSDSYKVSLQNFSSSVSLSYMAFPNASKKNRPTLQVGDLVYARVCTAEKELEAEIECFDSTTGRDAGFGILEDGMIIDVNFNFARQLLFNNDFPLLKVLAAHTKFEVAIGLNGKIWVKCEELSNTLACYRTIMECCQKNDTAAFKDIAKRQFKEILTVKEE*" + } + ], + "YOL141W": [ + { + "revision": "110203", + "new_alignment": "MKNLTTIKQTNKNVKQERRKKYADLAIQGTNNSSIASKRSVELLYLPKLSSANNFQMDKNNKLLEYFKFFVPKKIKRSPCINRGYWLRLFAIRSRLNSIIEQTPQDKKIVVVNLGCGYDPLPFQLLDTNNIQSQQYHDRVSFIDIDYSDLLKIKIELIKTIPELSKIIGLSEDKDYVDDSNVDFLTTPKYLARPCDLNDSKMFSTLLNECQLYDPNVVKVFVAEVSLAYMKPERSDSIIEATSKMENSHFIILEQLIPKGPFEPFSKQMLAHFKRNDSPLQSVLKYNTIESQVQRFNKLGFAYVNVGDMFQLWESADEATKKELLKVEPFDELEEFHLFCHHYVLCHATNYKEFAFTQGFLFDRSISEINLTVDEDYQLLECECPINRKFGDVDVAGNDVFYMGGSNPYRVNEILQLSIHYDKIDMKNIEVSSSEVPVARMCHTFTTISRNNQLLLIGGRKAPHQGLSDNWIFDMKTREWSMIKSLSHTRFRHSACSLPDGNVLILGGVTEGPAMLLYNVTEEIFKDVTPKDEFFQNSLVSAGLEFDPVSKQGIILGGGFMDQTTVSDKAIIFKYDAENATEPITVIKKLQHPLFQRYGSQIKYITPRKLLIVGGTSPSGLFDRTNSIISLDPLSETLTSIPISRRIWEDHSLMLAGFSLVSTSMGTIHIIGGGATCYGFGSVTNVGLKLIAIAK*", + "old_alignment": "MKNLTTIKQTNKNVKQERRKKYADLAIQGTNNSSIASKRSVELLYLPKLSSANNFQMDKNNKLLEYFKFFVPKKIKRSPCINRGYWLRLFAIRSRLNSIIEQTPQDKKIVVVNLGCGYDPLPFQLLDTNNIQSQQYHDRVSFIDIDYSDLLKIKIELIKTIPELSKIIGLSEDKDYVDDSNVDFLTTPKYLARPCDLNDSKMFSTLLNECQLYDPNVVKVFVAEVSLAYMKPERSDSIIEATSKMENSHFIILEQLIPKGPFEPFSKQMLAHFKRNDSPLQSVLKYNTIESQVQRFNKLGFAYVNVGDMFQLWESADEATKKELLKVEPFDELEEFHLFCHHYVLCHATNYKEFAFTQGFLFDRSISEINLTVDEDYQLLECECPINRKFGDVDVAGNDVFYMGGSNPYRVNEILQMSIHYDKIDMKNIEVSSSEVPVARMCHTFTTISRNNQLLLIGGRKAPHQGLSDNWIFDMKTREWSMIKSLSHTRFRHSACSLPDGNVLILGGVTEGPAMLLYNVTEEIFKDVTPKDEFFQNSLVSAGLEFDPVSKQGIILGGGFMDQTTVSDKAIIFKYDAENATEPITVIKKLQHPLFQRYGSQIKYITPRKLLIVGGTSPSGLFDRTNSIISLDPLSETLTSIPISRRIWEDHSLMLAGFSLVSTSMGTIHIIGGGATCYGFGSVTNVGLKLIAIAK*" + } + ], + "YOL138C": [ + { + "revision": "110203", + "new_alignment": "MSLSPHVENASIPKGSTPIPKNRNVSSIGKGEFLGSSSSNNSSFRMNHYSNSGQPSVLDSIRRPNLTPTFSYSNGVYMPESHRTSSFNDSYLPYDKNPYAKTTGSMSNKSNMKIKTKKNAINTNTRKSSGLIYTTKVDKELSSIDKVNDPNINGLVCAGKTHLGLYKFSPSDRSIKCVHDFITPNSNTSTRGTTSLLPKLSKRTRQNKFSTIADVKTGFNNYKNCIAVCNNSTAISIYDLNKSSSIDNPLITSLCEHTRSINSFDFNMVESNLIISGGQDSCVKIWDLRSNKSKSSNRSDISINTASDSIRDVKWMPGYNFASKNDQGSSTYGNLKSGYKFASIHDSGYLLKFDLRQPAQYEKKLNAHTGPGLCLNWHPNQEYIATGGRDGKCCLWFVGDNANAAENTVLNYGNSPSLHAPNTSLNNSGSLAFPKLTINTGYPVTKLKFKPAYSSNIYNSLLGISSMGDEAEVRIYSLARKYIPKHVLLSETPSLGLVWWDENLIFNIDKGTRINGWDINKEPTVLENLSKNTTTWRDLDGNGLLSVDQEIGSYEVVEPELQPTSSTTCKKHPGTIKNPKNGNPENQGIIGGIKKGFSHTGLTSFTPERPPTLKAGPTFSTKSLTLASGASSFNSSSASLTSLTPQTENREEIAIEPPCIITLDIPQIFNNIRLTKIAHSRKKNVISESSSMKNSPVEKFKYLARQLKFSYIREHNVSDSADTAYKNDIENIDVVKNATETHGDNTTTTNNNDDGDDDDDDDDDDKIIESHLLKKYNFPENNTWATLMNEKVNNKKSKRNSSSSREFDEKDVRSSISSISASRQSHDRARKIDKNVEAELQEKIQTLVDLISIATHNASVYLSIDDLTNFKIWILIRDSLLWDLKWMTSSQISSDNASNMDANESSDFEAGENLKTGKEFPEEDGAGTSGAESLVEERPQAFRANSDEPSDAEKKPVSKLKEQLKNTEIIPYAQPNEDSDEVLTKLKELQNQRLESRTKMGETVSDDVIIEEDEHEHQEEEQPHDSPTKSAQFHASPIAKSIPILQKREHRKSFIDTFMLHSPNGYNGDTDIGNEDDNISPRFTYNSVSPRSKVSSLQSYATTTSQLETFKKLSSHTAPIIGSPRHAPSRPDSIGREQLSSSLTKKLAKCKKIIADPPWDTKKLIKQLYNQATETGNVVLTVNILFLFQTIYQITEIDIAKDAIAHFLLLLHRYELFGIAADVLKYCPFEDIMGSEGDQSSIRLFCERCGELITNESSKEKLRAEAQQTGNKKIMDKFGYWYCDSCKKKNTSCVLCERPLKKLTMVILPCGHEGHFQCIQEWFLDENEQECPGGCPGVAFI*", + "old_alignment": "MSLSPHVENASIPKGSTPIPKNRNVSSIGKGEFLGSSSSNNSSFRMNHYSNSGQPSVLDSIRRPNLTPTFSYSNGVYMPESHRTSSFNDSYLPYDKNPYAKTTGSMSNKSNMKIKTKKNAINTNTRKSSGLIYTTKVDKELSSIDKVNDPNINGLVCAGKTHLGLYKFSPSDRSIKCVHDFITPNSNTSTRGTTSLLPKLSKRTRQNKFSTIADVKTGFNNYKNCIAVCNNSTAISIYDLNKSSSIDNPLITSLCEHTRSINSFDFNMVESNLIISGGQDSCVKIWDLRSNKSKSSNRSDISINTASDSIRDVKWMPGYNFASKNDQGSSTYGNLKSGYKFASIHDSGYLLKFDLRQPAQYEKKLNAHTGPGLCLNWHPNQEYIATGGRDGKSCLWFVGDNANAAENTVLNYGNSPSLHAPNTSLNNSGSLAFPKLTINTGYPVTKLKFKPAYSSNIYNSLLGISSMGDEAEVRIYSLARKYIPKHVLLSETPSLGLVWWDENLIFNIDKGTRINGWDINKEPTVLENLSKNTTTWRDLDGNGLLSVGQEIGSYEVVEPELQPTSSTTCKKHPGTIKNPKNGNPENQGIIGGIKKGFSHTGLTSFTPERPPTLKAGPTFSTKSLTLASGASSFNSSSASLTSLTPQTENREEIAIEPPCIITLDIPQIFNNIRLTKIAHSRKKNVISESSSMKNSPVEKFKYLARQLKFSYIREHNVSDSADTAYKNDIENIDVVKNATETHGDNTTTTNNNDDGDDDDDDDDDDKIIESHLLKKYNFPENNTWATLMNEKVNNKKSKRNSSSSREFDEKDVRSSISSISASRQSHDRARKIDKNVEAELQEKIQTLVDLISIATHNASVYLSIDDLTNFKIWILIRDSLLWDLKWMTSSQISSDNASNMDANESSDFEAGENLKTGKEFPEEDGAGTSGAESLVEERPQAFRANSDEPSDAEKKPVSKLKEQLKNTEIIPYAQPNEDSDEVLTKLKELQNQRLESRTKMGETVSDDVIIEEDEHEHQEEEQPHDSPTKSAQFHASPIAKSIPILQKREHRKSFIDTFMLHSPNGYNGDTDIGNEDDNISPRFTYNSVSPRSKVSSLQSYATTTSQLETFKKLSSHTAPIIGSPRHAPSRPDSIGREQLSSSLTKKLAKCKKIIADPPWDTKKLIKQLYNQATETGNVVLTVNILFLFQTIYQITEIDIAKDAIAHFLLLLHRYELFGIAADVLKYCPFEDIMGSEGDQSSIRLFCERCGELITNESSKEKLRAEAQQTGNKKIMDKFGYWYCDSCKKKNTSCVLCERPLKKLTMVILPCGHEGHFQCIQEWFLDENEQECPGGCPGVAFI*" + } + ], + "YOL126C": [ + { + "revision": "061006", + "new_alignment": "----------------------------------------------MPHSVTPSIEQDSLKIAILGAAGGIGQSLSLLLKAQLQYQLKESNRSVTHIHLALYDVNQEAINGVTADLSHIDTPISVSSHSPAGGIENCLHNASIVVIPAGVPRKPGMTRDDLFNVNAGIISQLGDSIAECCDLSKVFVLVISNPVNSLVPVMVSNILKNHPQSRNSGIERRIMGVTKLDIVRASTFLREINIESGLTPRVNSMPDVPVIGGHSGETIIPLFSQSNFLSRLNEDQLKYLIHRVQYGGDEVVKAKNGKGSATLSMAHAGYKCVVQFVSLLLGNIEQIHGTYYVPLKDANNFPIAPGADQLLPLVDGADYFAIPLTITTKGVSYVDYDIVNRMNDMERNQMLPICVSQLKKNIDKGLEFVASRSASS*", + "old_alignment": "MILLLILFPCIYFLPFCINRTVRSSPEYSAADYYKSSIQYHKSYSNMPHSVTPSIEQDSLKIAILGAAGGIGQSLSLLLKAQLQYQLKESNRSVTHIHLALYDVNQEAINGVTADLSHIDTPISVSSHSPAGGIENCLHNASIVVIPAGVPRKPGMTRDDLFNVNAGIISQLGDSIAECCDLSKVFVLVISNPVNSLVPVMVSNILKNHPQSRNSGIERRIMGVTKLDIVRASTFLREINIESGLTPRVNSMPDVPVIGGHSGETIIPLFSQSNFLSRLNEDQLKYLIHRVQYGGDEVVKAKNGKGSATLSMAHAGYKCVVQFVSLLLGNIEQIHGTYYVPLKDANNFPIAPGADQLLPLVDGADYFAIPLTITTKGVSYVDYDIVNRMNDMERNQMLPICVSQLKKNIDKGLEFVASRSASS*" + } + ], + "YOL077C": [ + { + "revision": "110203", + "new_alignment": "MSSIYKALAGKSKDNKSEKKQGNVKQFMNKQRTLLISSRGVNYRHRHLIQDLSGLLPHSRKEPKLDTKKDLQQLNEIAELYNCNNVLFFEARKHQDLYLWLSKPPNGPTIKFYIQNLHTMDELNFTGNCLKGSRPVLSFDQRFESSPHYQLIKELLVHNFGVPPNARKSKPFIDHVMSFSIVDDKIWVRTYEISHSTKNKEEYEDGEEDISLVEIGPRFVMTVILILEGSFGGPKIYENKQYVSPNVVRAQIKQQAAEEAKSRAEAAVERKIKRRENVLAADPLSNDALFK*", + "old_alignment": "MSSIYKALAGKSKDNKSEKKQGNVKQFMNKQRTLLISSRGVNYRHRHLIQDLSGLLPHSRKEPKLDTKKDLQQLNEIAELYNCNNVLFFEARKHQDLYLWLSKPPNGPTIKFYIQNLHTMDELNFTGNCLKGSRPVLSFDQRFESSPHYQLIKELLVHNFCVPPNARKSKPFIDHVMSFSIVDDKIWVRTYEISHSTKNKEEYEDGEEDISLVEIGPRFVMTVILILEGSFGGPKIYENKQYVSPNVVRAQIKQQAAEEAKSRAEAAVERKIKRRENVLAADPLSNDALFK*" + } + ], + "YOL075C": [ + { + "revision": "110203", + "new_alignment": "MSQQENGDVATELIENRLSFSRIPRISLHVRDLSIVASKTNTTLVNTFSMDLPSGSVMAVMGGSGSGKTTLLNVLASKISGGLTHNGSIRYVLEDTGSEPNETEPKRAHLDGQDHPIQKHVIMAYLPQQDVLSPRLTCRETLKFAADLKLNSSERTKKLMVEQLIEELGLKDCADTLVGDNSHRGLSGGEKRRLSIGTQMISNPSIMFLDEPTTGLDAYSAFLVIKTLKKLAKEDGRTFIMSIHQPRSDILFLLDQVCILSKGNVVYCDKMDNTIPYFESIGYHVPQLVNPADYFIDLSSVDSRSDKEEAATQSRLNSLIDHWHDYERTHLQLQAESYISNATEIQIQNMTTRLPFWKQVTVLTRRNFKLNFSDYVTLISTFAEPLIIGTVCGWIYYKPDKSSIGGLRTTTACLYASTILQCYLYLLFDTYRLCEQDIALYDRERAEGSVTPLAFIVARKISLFLSDDFAMTMIFVSITYFMFGLEADARKFFYQFAVVFLCQLSCSGLSMLSVAVSRDFSKASLVGNMTFTVLSMGCGFFVNAKVMPVYVRWIKYIAFTWYSFGTLMSSTFTNSYCTTDNLDECLGNQILEVYGFPRNWITVPAVVLLCWSVGYFVVGAIILYLHKIDITLQNEVKSKQKKIKKKSPTGMKPEIQLLDDVYHQKDLEAEKGKNIHITIKLEDIDLRVIFSAPFSNWKEGNFHHETKEILQSVNAIFKPGMINAIMGPSGSGKSSLLNLISGRLKSSVFAKFDTSGSIMFNDIQVSELMFKNVCSYVSQDDDHLLAALTVKETLKYAAALRLHHLTEAERMERTDNLIRSLGLKHCENNIIGNEFVKGISGGEKRRVTMGVQLLNDPPILLLDEPTSGLDSFTSATILEILEKLCREQGKTIIITIHQPRSELFKRFGNVLLLAKSGRTAFNGSPDEMIAYFTELGYNCPSFTNVADFFLDLISVNTQNEQNEISSRARVEKILSAWKANMDNESLSPTPISEKQQYSQESFFTEYSEFVRKPANLVLAYIVNVKRQFTTTRRSFDSLMARIAQIPGLGVIFALFFAPVKHNYTSISNRLGLAQESTALYFVGMLGNLACYPTERDYFYEEYNDNVYGIAPFFLAYMTLELPLSALASVLYAVFTVLACGLPRTAGNFFATVYCSFIVTCCGEALGIMTNTFFERPGFVVNCISIILSIGTQMSGLMSLGMSRVLKGFNYLNPVGYTSMIIINFAFPGNLKLTCEDGGKNSDGTCEFANGHDVLVSYGLVRNTQKYLGIIVCVAIIYRLIAFFILKAKLEWIKW*", + "old_alignment": "MSQQENGDVATELIENRLSFSRIPRISLHVRDLSIVASKTNTTLVNTFSMDLPSGSVMAVMGGSGSGKTTLLNVLASKISGGLTHNGSIRYVLEDTGSEPNETEPKRAHLDGQDHPIQKHVIMAYLPQQDVLSPRLTCRETLKFAADLKLNSSERTKKLMVEQLIEELGLKDCADTLVGDNSHRGLSGGEKRRLSIGTQMISNPSIMFLDEPTTGLDAYSAFLVIKTLKKLAKEDGRTFIMSIHQPRSDILFLLDQVCILSKGNVVYCDKMDNTIPYFESIGYHVPQLVNPADYFIDLSSVDSRSDKEEAATQSRLNSLIDHWHDYERTHLQLQAESYISNATEIQIQNMTTRLPFWKQVTVLTRRNFKLNFSDYVTLISTFAEPLIIGTVCGWIYYKPDKSSIGGLRTTTACLYASTILQCYLYLLFDTYRLCEQDIALYDRERAEGSVTPLAFIVARKISLFLSDDFAMTMIFVSITYFMFGLEADARKFFYQFAVVFLCQLSCSGLSMLSVAVSRDFSKASLVGNMTFTVLSMGCGFFVNAKVMPVYVRWIKYIAFTWYSFGTLMSSTFTNSYCTTDNLDECLGNQILEVYGFPRNWITVPAVVLLCWSVGYFVVGAIILYLHKIDITLQNEVKSKQKKIKKKSPTGMKPEIQLLDDVYHQKDLEAEKGKNIHITIKLEDIDLRVIFSAPFSNWKEGNFHHETKEILQSVNAIFKPGMINAIMGPSGSGKSSLLNLISGRLKSSVFAKFDTSGSIMFNDIQVSELMFKNVCSYVSQDDDHLLAALTVKETLKYAAALRLHHLTEAERMERTDNLIRSLGLKHCENNIIGNEFVKGISGGEKRRVTMGVQLLNDPPILLLDEPTSGLDSFTSATILEILEKLCREQGKTIIITIHQPRSELFKRFGNVLLLAKSGRTAFNGSPDEMIAYFTELGYNCPSFTNVADFFLDLISVNTQNEQNEISSRARVEKILSAWKANMDNESLSPTPISEKQQYSQESFFTEYSEFVRKPANLVLAYIVNVKRQFTTTRRSFDSLMARIAQIPGLGVIFALFFAPVKHNYTSISNRLGLAQESTALYFVGMLGNLACYPTERDYFYEEYNDNVYGIAPFFLAYMTLELPLSALASVLYAVFTVLACGLPRTAGNFFATVYCSFIVTCCGERLGIMTNTFFERPGFVVNCISIILSIGTQMSGLMSLGMSRVLKGFNYLNPVGYTSMIIINFAFPGNLKLTCEDGGKNSDGTCEFANGHDVLVSYGLVRNTQKYLGIIVCVAIIYRLIAFFILKAKLEWIKW*" + } + ], + "YOL058W": [ + { + "revision": "110203", + "new_alignment": "MSKGKVCLAYSGGLDTSVILAWLLDQGYEVVAFMANVGQEEDFDAAKEKALKIGACKFVCVDCREDFVKDILFPAVQVNAVYEDVYLLGTSLARPVIAKAQIDVAKQEGCFAVSHGCTGKGNDQIRFELSFYALKPDVKCITPWRMPEFFERFAGRKDLLDYAAQKGIPVAQTKAKPWSTDENQAHISYEAGILEDPDTTPPKDMWKLIVDPMDAPDQPQDLTIDFERGLPVKLTYTDNKTSKEVSVTKPLDVFLAASNLARANGVGRIDIVEDRYINLKSRGCYEQAPLTVLRKAHVDLEGLTLDKEVRQLRDSFVTPNYSRLIYNGSYFT----PECEYIRSMIQPSQNSVNGTVRVRLYKGNVIILGRSTKTEKLYDPTESSMDELTGFLPTDTTGFIAIQAIRIKKYGESKKTKGEELTL*", + "old_alignment": "MSKGKVCLAYSGGLDTSVILAWLLDQGYEVVAFMANVGQEEDFDAAKEKALKIGACKFVCVDCREDFVKDILFPAVQVNAVYEDVYLLGTSLARPVIAKAQIDVAKQEGCFAVSHGCTGKGNDQIRFELSFYALKPDVKCITPWRMPEFFERFAGRKDLLDYAAQKGIPVAQTKAKPWSTDENQAHISYEAGILEDPDTTPPKDMWKLIVDPMDAPDQPQDLTIDFERGLPVKLTYTDNKTSKEVSVTKPLDVFLAASNLARANGVGRIDIVEDRYINLKSRGCYEQAPLTVLRKAHVDLEGLTLDKEVRQLRDSFVTPNYSRLIYNG----FLLHPECEYIRSMIQPSQNSVNGTVRVRLYKGNVIILGRSTKTEKLYDPTESSMDELTGFLPTDTTGFIAIQAIRIKKYGESKKTKGEELTL*" + } + ], + "YOL013W-B": [ + { + "revision": "051103", + "new_alignment": "-MSDFEIIVGISSLLQVIILNIQNMLEVLLEYIGIHKRRVDISTYYDNVYFFFHFICYHLLSYCIINLRISASFICDSCSLIIMSPSYAVCDNILVT*----------------------------------------------------------", + "old_alignment": "MM-------------------------------------------------------------CIIN-------------------------------SESFHGSQKRSGVWSSGMILALGDFLINRGTKHARGPGFNSQLAPFFTIEKYSVRRS*" + } + ], + "YOL013W-A": [ + { + "revision": "051103", + "new_alignment": "MM-------------------------------------------------------------CIINSESFHGSQKRSGVWSSGMILALGDFLINRGTKHARGPGFNSQLAPFFTIEKYSVRRS*-------------------------------", + "old_alignment": "-MSDFEIIVGISSLLQVIILNIQNMLEVLLEYIGIHKRRVDISTYYDNVYFFFHFICYHLLSYCIIN----------------------------------------------------------LRISASFICDSCSLIIMSPSYAVCDNILVT*" + } + ], + "YOR069W": [ + { + "revision": "040709", + "new_alignment": "MDYEDNLEAPVWDELNHEGDKTQSLVSNSIESIGQISTNEERKDNELLETTASFADKIDLDSAPEWKDPGLSVAGNPQLEEHDNSKADDLINSLAPEQDPIADLKNSTTQFIATRESGGALFTGNANSPLVFDDTIYDANTSPNTSKSISGRRSGKPRILFDSARAQRNSKRNHSLKAKRTTASDDTIKTPFTDPLKKAEKENEFVEEPLDDRNERRENNEGKFTASVEKNILEQVDRPLYNLPQTGANISSPAEVEENSEKFGKTKIGSKVPPTEKAVAFKVEVKDPVKVGELTSIHVEYTVISESSLLELKYAQVSRRYRDFRWLYRQLQNNHWGKVIPPPPEKQSVGSFKENFIENRRFQMESMLKKICQDPVLQKDKDFLLFLTSDDFSSESKKRAFLTGSGAINDSNDLSEVRISEIQLLGAEDAAEVLKNGGIDAESHKGFMSISFSSLPKYNEADEFFIEKKQKIDELEDNLKKLSKSLEMVDTSRNTLAASTEEFSSMVETLASLNVSEPNSELLNNFADVHKSIKSSLERSSLQETLTMGVMLDDYIRSLASVKAIFNQRSKLGYFLVVIENDMNKKHSQLGKLGQNIHSEKFREMRKEFQTLERRYNLTKKQWQAVGDKIKDEFQGFSTDKIREFRNGMEISLEAAIESQKECIELWETFYQTNL*", + "old_alignment": "---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------MESMLKKICQDPVLQKDKDFLLFLTSDDFSSESKKRAFLTGSGAINDSNDLSEVRISEIQLLGAEDAAEVLKNGGIDAESHKGFMSISFSSLPKYNEADEFFIEKKQKIDELEDNLKKLSKSLEMVDTSRNTLAASTEEFSSMVETLASLNVSEPNSELLNNFADVHKSIKSSLERSSLQETLTMGVMLDDYIRSLASVKAIFNQRSKLGYFLVVIENDMNKKHSQLGKLGQNIHSEKFREMRKEFQTLERRYNLTKKQWQAVGDKIKDEFQGFSTDKIREFRNGMEISLEAAIESQKECIELWETFYQTNL*" + } + ], + "YOR074C": [ + { + "revision": "051202", + "new_alignment": "MTMDGKNKEEEQYLDLCKRIIDEGEFRPDRTGTGTLSLFAPPQLRFSLRDDTFPLLTTKKVFTRGIILELLWFLAGDTDANLLSEQGVKIWDGNGSREYLDKMGFKDRKVGDLGPVYGFQWRHFGAKYKTCDDDYTGQGIDQLKQVIHKLKTNPYDRRIIMSAWNPADFDKMALPPCHIFSQFYVSFPKEGEGSGKPRLSCLLYQRSCDMGLGVPFNIASYALLTRMIAKVVDMEPGEFIHTLGDAHVYKDHIDALKEQITRNPRPFPKLKIKRDVKDIDDFKLTDFEIEDYNPHPRIQMKMSV*", + "old_alignment": "MTMDGKNKEEEQYLDLCKRIIDEGEFRPDRTG---------------------------------------------TDANLLSEQGVKIWDGNGSREYLDKMGFKDRKVGDLGPVYGFQWRHFGAKYKTCDDDYTGQGIDQLKQVIHKLKTNPYDRRIIMSAWNPADFDKMALPPCHIFSQFYVSFPKEGEGSGKPRLSCLLYQRSCDMGLGVPFNIASYALLTRMIAKVVDMEPGEFIHTLGDAHVYKDHIDALKEQITRNPRPFPKLKIKRDVKDIDDFKLTDFEIEDYNPHPRIQMKMSV*" + } + ], + "YOR080W": [ + { + "revision": "100105", + "new_alignment": "--------------MSSPGNSGVAIDSTVLKAIELGTRLFKSGEYLQAKRIFTNALRVCDSYSQEQIMRIRNAYQLDTARPDNKRLYHPRYIKILDNICACYEKLNDLKSCLDVSQRLLKLEPGNIKCYIRCTRTLIKLKDWKRAYKTCSRGLQLCNNDSNHLRQQKQFIKNNMVQKQDGKRSYIDPLEETKIAKKKKNNNVLESLPKKKIKGSTKKTDLVGNLPIEILPIIFQRFTTKELVTLSLVCNKWRDKILYHLDCFQEFNLAPINFKNFVKFMDFLQQNFTRTYRKYILSQVKVSSRITSEELRITQLLFSKMPKCINIERLILSMPTLTTTQIFKLMVRGGTDFFTRLLELSLMITYRPDKQHELEILQTCPLLKKIELIFVNSLVPIFDGNNSVGRDGSFNVMARHTNMQISTADNDEQGIVEEKVIYSELEKITLICDKKKIKNFPLCRALLRGQFPLLQKLTITGVTFPMNNQDIMNFQWLLNFPDLKELWIEDNDNCELSKFLQLLKFSNVWKNLEKLTFRENKLYPIVNLDEDQPVTNDDEVPSMLFYKENLQNLEKLDLMGTSISGSALTRLCEQEYLDGRKLRSLNIGNCPNIQFPNNHAHTARMILDVNAVLKRLSKLEEINLSHLSSLNDSTMKSFIINVPFLENLKRLDISHNFEITGISIYEFLKKFQMDHDNEAGGQPLAYLNIDGCSQVSHITVNMIRAQNLVTQVDCVYERDVWRKFGINSYSYS*", + "old_alignment": "MSYKFITKNKKYTPMSSPGNSGVAIDSTVLKAIELGTRLFKSGEYLQAKRIFTNALRVCDSYSQEQIMRIRNAYQLDTARPDNKRLYHPRYIKILDNICACYEKLNDLKSCLDVSQRLLKLEPGNIKCYIRCTRTLIKLKDWKRAYKTCSRGLQLCNNDSNHLRQQKQFIKNNMVQKQDGKRSYIDPLEETKIAKKKKNNNVLESLPKKKIKGSTKKTDLVGNLPIEILPIIFQRFTTKELVTLSLVCNKWRDKILYHLDCFQEFNLAPINFKNFVKFMDFLQQNFTRTYRKYILSQVKVSSRITSEELRITQLLFSKMPKCINIERLILSMPTLTTTQIFKLMVRGGTDFFTRLLELSLMITYRPDKQHELEILQTCPLLKKIELIFVNSLVPIFDGNNSVGRDGSFNVMARHTNMQISTADNDEQGIVEEKVIYSELEKITLICDKKKIKNFPLCRALLRGQFPLLQKLTITGVTFPMNNQDIMNFQWLLNFPDLKELWIEDNDNCELSKFLQLLKFSNVWKNLEKLTFRENKLYPIVNLDEDQPVTNDDEVPSMLFYKENLQNLEKLDLMGTSISGSALTRLCEQEYLDGRKLRSLNIGNCPNIQFPNNHAHTARMILDVNAVLKRLSKLEEINLSHLSSLNDSTMKSFIINVPFLENLKRLDISHNFEITGISIYEFLKKFQMDHDNEAGGQPLAYLNIDGCSQVSHITVNMIRAQNLVTQVDCVYERDVWRKFGINSYSYS*" + } + ], + "YOR091W": [ + { + "revision": "051202", + "new_alignment": "--------------------------------------------------------MPPKKGKQAQAAGKKKDNVDKTFGMKNKNRSTKVQKYIKQVQSQSDPKKEEMRLKKLEEKKRREAEEAERRALFNPVADQRVRAGVDPKSMVCALFKLGNCNKGAKCKFSHDLNVGRRMEKKDLYQDTRSEKENDTMDNWDEEKLRKVILSKHGNPKTTTDKVCKYFIEAVENGKYGWFWICPNGGDKCMYRHSLPEGFVLKTNEQKRLERESLEKQPKITLEEFIETERGKLDKSKLTPITIANFAQWKKDHVIAKINAEKKLSSKRKPTGREIILKMSAENKSFETDNADMPDDVTQGSAWDLTEFTDALKKADHQDDGGIKDYGDGSNPTFDIKKANSATLA*", + "old_alignment": "MIMKKFLFPSDELVKIDNISFFNQCVLLFLESKGSHSISKPLGFTHIKSQESYISKMPPKKGKQAQAAGKKKDNVDKTFGMKNKNRSTKVQKYIKQVQSQSDPKKEEMRLKKLEEKKRREAEEAERRALFNPVADQRVRAGVDPKSMVCALFKLGNCNKGAKCKFSHDLNVGRRMEKKDLYQDTRSEKENDTMDNWDEEKLRKVILSKHGNPKTTTDKVCKYFIEAVENGKYGWFWICPNGGDKCMYRHSLPEGFVLKTNEQKRLERESLEKQPKITLEEFIETERGKLDKSKLTPITIANFAQWKKDHVIAKINAEKKLSSKRKPTGREIILKMSAENKSFETDNADMPDDVTQGSAWDLTEFTDALKKADHQDDGGIKDYGDGSNPTFDIKKANSATLA*" + } + ], + "YOR130C": [ + { + "revision": "110203", + "new_alignment": "MEDSKKKGLIEGAILDIINGSIAGACGKVIEFPFDTVKVRLQTQASNVFPTTWSCIKFTYQNEGIARGFFQGIASPLVGACLENATLFVSYNQCSKFLEKHTNVSPLGQILISGGVAGSCASLVLTPVELVKCKLQVANLQVASAKTKHTKVLPTIKAIITERGLAGLWQGQSGTFIRESFGGVAWFATYEIVKKSLKDRHSLDDPKRDESKIWELLISGGSAGLAFNASIFPADTVKSVMQTEHISLTNAVKKIFGKFGLKGFYRGLGITLFRAVPANAAVFYIFETLSAL*", + "old_alignment": "MEDSKKKGLIEGAILDIINGSIAGACGKVIEFPFDTVKVRLQTQASNVFPTTWSCIKFTYQNEGIARGFFQGIASPLVGACLENATLFVSYNQCSKFLEKHTNVFPLGQILISGGVAGSCASLVLTPVELVKCKLQVANLQVASAKTKHTKVLPTIKAIITERGLAGLWQGQSGTFIRESFGGVAWFATYEIVKKSLKDRHSLDDPKRDESKIWELLISGGSAGLAFNASIFPADTVKSVMQTEHISLTNAVKKIFGKFGLKGFYRGLGITLFRAVPANAAVFYIFETLSAL*" + } + ], + "YOR140W": [ + { + "revision": "110203", + "new_alignment": "MSEEETVSAPAPASTPAPAGTDVGSGGAAAGIANAGAEGGDGAEDVKKHGSKMLVGPRPPQNAIFIHKLYQILEDESLHDLIWWTPSGLSFMIKPVERFSKALATYFKHTNITSFVRQLNIYGFHKVSHDHSSNDANSGDDANTNDDSNTHDDNSGNKNSSGDENTGGGVQEKEKSNPTKIWEFKHSSGIFKKGDIEGLKHIKRRASSRNNSSINSRKNSSNQNYDIDSGARVRPSSIQDPSTSSNSFGNFVPQIPGANNSIPEYFNNSHVTYENANHAPLESNNPEMQEQNRPPNFQDETLKHLKEINFDMVKIIESMQHFISLQHSFCSQSFTFKNVSKKKSENIVKDHQKQLQAFESDMLTFKQHVMSRAHRTIDSLCAVNAAATAASVAPAPAPTSTSAYAPKSQYEMMVPPGNQYVPQKSSSTTNIPSRFNTASVPPSQLFVQYQPQSQ---------QHVTYAKQPAHVPNFINQPIPIQQLPPQYADTFSTPQMMHNPFASKNNNKPGNTKRTNSVLMDPLTPAASVGVQGPLNYPIMNINPSVRDYNKPVPQNMAPSPIYPINEPTTRLYSQPKMRSLGSTSSLPNDRRNSPLKLTPRSSLNEDSLYPKPRNSLKSSISGTSLSSSFTLVANNPAPIRYSQQGLLRSLNKAANCAPDSVTPLDSSVLTGPPPKNMDNLPAVSSNLINSPMNVEHSSSLSQAEPAPQIELPQPSLPTTSTTKNTGEADNSKRKGSGVYSLLNQEDSSTSSADPKTEDKAAPALKKVKM*", + "old_alignment": "MSEEETVSAPAPASTPAPAGTDVGSGGAAAGIANAGAEGGDGAEDVKKHGSKMLVGPRPPQNAIFIHKLYQILEDESLHDLIWWTPSGLSFMIKPVERFSKALATYFKHTNITSFVRQLNIYGFHKVSHDHSSNDANSGDDANTNDDSNTHDDNSGNKNSSGDENTGGGVQEKEKSNPTKIWEFKHSSGIFKKGDIEGLKHIKRRASSRNNSSINSRKNSSNQNYDIDSGARVRPSSIQDPSTSSNSFGNFVPQIPGANNSIPEYFNNSHVTYENANHAPLESNNPEMQEQNRPPNFQDETLKHLKEINFDMVKIIESMQHFISLQHSFCSQSFTFKNVSKKKSENIVKDHQKQLQAFESDMLTFKQHVMSRAHRTIDSLCAVNAAATAASVAPAPAPTSTSAYAPKSQYEMMVPPGNQYVPQKSSSTTNIPSRFNTASVPPSQL---------LYNTNRSRNQHVTYASEPAHVPNFINQPIPIQQLPPQYADTFSTPQMMHNPFASKNNNKPGNTKRTNSVLMDPLTPAASVGVQGPLNYPIMNINPSVRDYNKPVPQNMAPSPIYPINEPTTRLYSQPKMRSLGSTSSLPNDRRNSPLKLTPRSSLNEDSLYPKPRNSLKSSISGTSLSSSFTLVANNPAPIRYSQQGLLRSLNKAANCAPDSVTPLDSSVLTGPPPKNMDNLPAVSSNLINSPMNVEHSSSLSQAEPAPQIELPQPSLPTTSTTKNTGEADNSKRKGSGVYSLLNQEDSSTSSADPKTEDKAAPALKKVKM*" + } + ], + "YOR147W": [ + { + "revision": "051202", + "new_alignment": "-------------------------------MLITRLRVPTIKRPLLPITSHLVRHCIRTYVATNHGNVRPFITPYKSSLPVRCLIAQRHIRTFPSNDKFTTKASNIETILLRKNNEREFKQSLLADAKNFQERFKINLKWILIKNNRPFSLNEISIIASWLILSQILWLILSTTTFISFYLFVINSVFSQEYIHEKKIYERLLKWLLKDHKCSNQDLEITFSPEDKASMLVLSPDWESNSILIKRLNVRDEILDLDLKFHHINLNVSLKNWLLGRGLITNVSIYGIRGCLNLSNFINLVNSFQGDQKTENFLKTLNNVEITDSEILLKQSLSAQETPSLKFSIYNLSLPRLRLNHFISDILSAKTFSGSINNSLFNLFKRQQKLTAVIENNNKNRMASSKFDFTDNNQENYRTVTHQDDPNYVTTLRLNFININDLKFNGDGKFNWLKDGQVEILADIMLTNSTSHLSSESKYAVVDLKVTCRDLKTTFPQEPPVLSTGDSIVSLDELKPIITFINSYEGMANPILKDFSENERLTNSIIWNSPNVSINRQRKSYPLTTKVTSNSTKEIIKFHNQPNTNANEIVLRCKMVKNLSDLQLININQILDQITMELYVDLTKIVEDWEFKNKNDWMKQWGTTFASQLLLFGFGAMV*", + "old_alignment": "MHIKVDSRFASRSIKTKGTYRLSGGGRFIKFMLITRLRVPTIKRPLLPITSHLVRHCIRTYVATNHGNVRPFITPYKSSLPVRCLIAQRHIRTFPSNDKFTTKASNIETILLRKNNEREFKQSLLADAKNFQERFKINLKWILIKNNRPFSLNEISIIASWLILSQILWLILSTTTFISFYLFVINSVFSQEYIHEKKIYERLLKWLLKDHKCSNQDLEITFSPEDKASMLVLSPDWESNSILIKRLNVRDEILDLDLKFHHINLNVSLKNWLLGRGLITNVSIYGIRGCLNLSNFINLVNSFQGDQKTENFLKTLNNVEITDSEILLKQSLSAQETPSLKFSIYNLSLPRLRLNHFISDILSAKTFSGSINNSLFNLFKRQQKLTAVIENNNKNRMASSKFDFTDNNQENYRTVTHQDDPNYVTTLRLNFININDLKFNGDGKFNWLKDGQVEILADIMLTNSTSHLSSESKYAVVDLKVTCRDLKTTFPQEPPVLSTGDSIVSLDELKPIITFINSYEGMANPILKDFSENERLTNSIIWNSPNVSINRQRKSYPLTTKVTSNSTKEIIKFHNQPNTNANEIVLRCKMVKNLSDLQLININQILDQITMELYVDLTKIVEDWEFKNKNDWMKQWGTTFASQLLLFGFGAMV*" + } + ], + "YOR149C": [ + { + "revision": "110203", + "new_alignment": "MMRYQWWLYLVYAIGLMLCLGPSYIHPDEHFQCIEILAMQFMKVKGTIPWEFKSKFAARSYGPLLLVYGPLFTILESFPEIQDNPALILYSMRLQNYVMYLLCYHFLIPKLIRDERKAVQFIKKSLLLTSYVTWTYQTHTFSNSIETLALISTLTVMEDMVNEKNIQRSNFKNSVILGLIFSFGVFNRVTFPAFIFLPCLILFWKFYRVHWKSFSLLLLSFSFSSCLFVLIDTNIYNNGKGFVITPLNNLKYNLNVQNLQVHGLHPRYTHLLVNLPQIVGPVLLLAIFSGYKLDKLSTYAIISGLLFLSFFQHQELRFLVPLVPLLVTNLNWTPLSSTLVNKKIFKGTWLLFNIIMAFIMGISHQAGIIQFLGDYFHFRTEQMGVHIWWKTYSPPTWMYMSNNLTVSSLINTQDGIESIDEVAFSVGNHHVIDLKGCDLPLLTETIRRLRLNGSITPLTLVTPNSMTSELKKLKRDGTINLIPKRNYLFHLDLDHLDFNDFTTFKPGLTVYSIELL*", + "old_alignment": "MMRYQWWLYLVYAIGLMLCLGPSYIHPDEHFQCIEILAMQFMKVKGTIPWEFKSKFAARSYGPLLLVYGPLFTILESFPEIQDNPALILYSMRLQNYVMYLLCYHFLIPKLIRDERKAVQFMQKSLLLTSYVTWTYQTHTFSNSIETLALISTLTVMEDMVNEKNIQRSNFKNSVILGLIFSFGVFNRVTFPAFIFLPCLILFWKFYRVHWKSFSLLLLSFSFSSCLFVLIDTNIYNNGKGFVITPLNNLKYNLNVQNLQVHGLHPRYTHLLVNLPQIVGPVLLLAIFSGYKLDKLSTYAIISGLLFLSFFQHQELRFLVPLVPLLVTNLNWTPLSSTLVNKKIFKGTWLLFNIIMAFIMGISHQAGIIQFLGDYFHFRTEQMGVHIWWKTYSPPTWMYMSNNLTVSSLINTQDGIESIDEVAFSVGNHHVIDLKGCDLPLLTETIRRLRLNGSITPLTLVTPNSMTSELKKLKRDGTINLIPKRNYLFHLDLDHLDFNDFTTFKPGLTVYSIELL*" + } + ], + "YOR173W": [ + { + "revision": "061006", + "new_alignment": "--------------------------------------------MGSQDLASLIGRFKYVRVLDSNPHTKVISLLGSIDGKDAVLTAEKTHFIFDETVRRPSQSGRSTPIFFHREIDEYSFLNGITDLKELTSNDIYYWGLSVLKQHILHNPTAKVNLIWPASQFHIKGYDQQDLHVVRETPDMYRNIVVPFIQEMCTSERMKWVNNILYEGAEDDRVVYKEYSSRNKEDGFVILPDMKWDGINIDSLYLVAIVYRDDIKSLRDLNPNHRDWLIRLNKKIKTIIPQHYDYNVNPDELRVFIHYQPSYYHFHVHIVNIRHPGVGEERGSGMTILLEDVIEALGFLGPEGYMKKTLTYVIGENHDLWKKGFKEEVEKQLKHDGIATSPEKGSGFNTNLG*", + "old_alignment": "MSIKAERRETEARGFRLVFKYMLGRYLFIAKLKRFERVKVKKYMMGSQDLASLIGRFKYVRVLDSNPHTKVISLLGSIDGKDAVLTAEKTHFIFDETVRRPSQSGRSTPIFFHREIDEYSFLNGITDLKELTSNDIYYWGLSVLKQHILHNPTAKVNLIWPASQFHIKGYDQQDLHVVRETPDMYRNIVVPFIQEMCTSERMKWVNNILYEGAEDDRVVYKEYSSRNKEDGFVILPDMKWDGINIDSLYLVAIVYRDDIKSLRDLNPNHRDWLIRLNKKIKTIIPQHYDYNVNPDELRVFIHYQPSYYHFHVHIVNIRHPGVGEERGSGMTILLEDVIEALGFLGPEGYMKKTLTYVIGENHDLWKKGFKEEVEKQLKHDGIATSPEKGSGFNTNLG*" + } + ], + "YOR197W": [ + { + "revision": "060512", + "new_alignment": "---------------------MYPGSGRYTYNNAGGNNGYQRPMAPPPNQQYGQQYGQQYEQQYGQQYGQQNDQQFSQQYAPPPGPPPMAYNRPVYPPPQFQQEQAKAQLSNGYNNPNVNASNMYGPPQNMSLPPPQTQTIQGTDQPYQYSQCTGRRKALIIGINYIGSKNQLRGCINDAHNIFNFLTNGYGYSSDDIVILTDDQNDLVRVPTRANMIRAMQWLVKDAQPNDSLFLHYSGHGGQTEDLDGDEEDGMDDVIYPVDFETQGPIIDDEMHDIMVKPLQQGVRLTALFDSCHSGTVLDLPYTYSTKGIIKEPNIWKDVGQDGLQAAISYATGNRAALIGSLGSIFKTVKGGMGNNVDRERVRQIKFSAADVVMLSGSKDNQTSADAVEDGQNTGAMSHAFIKVMTLQPQQSYLSLLQNMRKELAGKYSQKPQLSSSHPIDVNLQFIM*", + "old_alignment": "MKMSLEVYLNYHQRRPTRFTIMYPGSGRYTYNNAGGNNGYQRPMAPPPNQQYGQQYGQQYEQQYGQQYGQQNDQQFSQQYAPPPGPPPMAYNRPVYPPPQFQQEQAKAQLSNGYNNPNVNASNMYGPPQNMSLPPPQTQTIQGTDQPYQYSQCTGRRKALIIGINYIGSKNQLRGCINDAHNIFNFLTNGYGYSSDDIVILTDDQNDLVRVPTRANMIRAMQWLVKDAQPNDSLFLHYSGHGGQTEDLDGDEEDGMDDVIYPVDFETQGPIIDDEMHDIMVKPLQQGVRLTALFDSCHSGTVLDLPYTYSTKGIIKEPNIWKDVGQDGLQAAISYATGNRAALIGSLGSIFKTVKGGMGNNVDRERVRQIKFSAADVVMLSGSKDNQTSADAVEDGQNTGAMSHAFIKVMTLQPQQSYLSLLQNMRKELAGKYSQKPQLSSSHPIDVNLQFIM*" + } + ], + "YOR211C": [ + { + "revision": "061006", + "new_alignment": "---------------------MNASPVRLLILRRQLATHPAILYSSPYIKSPLVHLHSRMSNVHRSAHANALSFVITRRSISHFPKIISKIIRLPIYVGGGMAAAGSYIAYKMEEASSFTKDKLDRIKDLGESMKEKFNKMFSGDKSQDGGHGNDGTVPTATLIAATSLDDDESKRQGDPKDDDDEDDDDEDDENDSVDTTQDEMLNLTKQMIEIRTILNKVDSSSAHLTLPSIVVIGSQSSGKSSVLESIVGREFLPKGSNMVTRRPIELTLVNTPNSNNVTADFPSMRLYNIKDFKEVKRMLMELNMAVPTSEAVSEEPIQLTIKSSRVPDLSLVDLPGYIQVEAADQPIELKTKIRDLCEKYLTAPNIILAISAADVDLANSSALKASKAADPKGLRTIGVITKLDLVDPEKARSILNNKKYPLSMGYVGVITKTPSSINRKHLGLFGEAPSSSLSGIFSKGQHGQSSGEENTNGLKQIVSHQFEKAYFKENKKYFTNCQVSTKKLREKLIKILEISMSNALEPTSTLIQQELDDTSYLFKVEFNDRHLTPKSYLLNNIDVLKLGIKEFQEKFHRNELKSILRAELDQKVLDVLATRYWKDDNLQDLSSSKLESDTDMLYWHKKLELASSGLTKMGIGRLSTMLTTNAILKELDNILESTQLKNHELIKDLVSNTAINVLNSKYYSTADQVENCIKPFKYEIDLEERDWSLARQHSINLIKEELRQCNSRYQAIKNAVGSKKLANVMGYLENESNLQKETLGMSKLLLERGSEAIFLDKRCKVLSFRLKMLKNKCHSTIEKDRCPEVFLSAVSDKLTSTAVLFLNVELLSDFFYNFPIELDRRLTLLGDEQVEMFAKEDPKISRHIELQKRKELLELALEKIDSILVFKKSYKGVSKNL*", + "old_alignment": "MSNSTSLRAIPRVANYNTLVRMNASPVRLLILRRQLATHPAILYSSPYIKSPLVHLHSRMSNVHRSAHANALSFVITRRSISHFPKIISKIIRLPIYVGGGMAAAGSYIAYKMEEASSFTKDKLDRIKDLGESMKEKFNKMFSGDKSQDGGHGNDGTVPTATLIAATSLDDDESKRQGDPKDDDDEDDDDEDDENDSVDTTQDEMLNLTKQMIEIRTILNKVDSSSAHLTLPSIVVIGSQSSGKSSVLESIVGREFLPKGSNMVTRRPIELTLVNTPNSNNVTADFPSMRLYNIKDFKEVKRMLMELNMAVPTSEAVSEEPIQLTIKSSRVPDLSLVDLPGYIQVEAADQPIELKTKIRDLCEKYLTAPNIILAISAADVDLANSSALKASKAADPKGLRTIGVITKLDLVDPEKARSILNNKKYPLSMGYVGVITKTPSSINRKHLGLFGEAPSSSLSGIFSKGQHGQSSGEENTNGLKQIVSHQFEKAYFKENKKYFTNCQVSTKKLREKLIKILEISMSNALEPTSTLIQQELDDTSYLFKVEFNDRHLTPKSYLLNNIDVLKLGIKEFQEKFHRNELKSILRAELDQKVLDVLATRYWKDDNLQDLSSSKLESDTDMLYWHKKLELASSGLTKMGIGRLSTMLTTNAILKELDNILESTQLKNHELIKDLVSNTAINVLNSKYYSTADQVENCIKPFKYEIDLEERDWSLARQHSINLIKEELRQCNSRYQAIKNAVGSKKLANVMGYLENESNLQKETLGMSKLLLERGSEAIFLDKRCKVLSFRLKMLKNKCHSTIEKDRCPEVFLSAVSDKLTSTAVLFLNVELLSDFFYNFPIELDRRLTLLGDEQVEMFAKEDPKISRHIELQKRKELLELALEKIDSILVFKKSYKGVSKNL*" + } + ], + "YOR221C": [ + { + "revision": "051202", + "new_alignment": "MKLLTFPG--------------------------------QGTSISISILKAIIRNKSREFQTILSQNGKESNDLLQYIFQNPSSPGSIAVCSNLFYQLYQILSNPSDPQDQAPKNMTKIDSPDKKDNEQCYLLGHSLGELTCLSVNSLFSLKDLFDIANFRNKLMVTSTEKYLVAHNINRSNKFEMWALSSPRATDLPQEVQKLLNSPNLLSSSQNTISVANANSVKQCVVTGLVDDLESLRTELNLRFPRLRITELTNPYNIPFHNSTVLRPVQEPLYDYIWDILKKNGTHTLMELNHPIIANLDGNISYYIHHALDRFVKCSSRTVQFTMCYDTINSGTPVEIDKSICFGPGNVIYNLIRRNCPQVDTIEYTSLATIDAYHKAAEENKD*", + "old_alignment": "--------MLVLRKLEENYRPLNILKMQKVSSSYMAFFGRQGTSISISILKAIIRNKSREFQTILSQNGKESNDLLQYIFQNPSSPGSIAVCSNLFYQLYQILSNPSDPQDQAPKNMTKIDSPDKKDNEQCYLLGHSLGELTCLSVNSLFSLKDLFDIANFRNKLMVTSTEKYLVAHNINRSNKFEMWALSSPRATDLPQEVQKLLNSPNLLSSSQNTISVANANSVKQCVVTGLVDDLESLRTELNLRFPRLRITELTNPYNIPFHNSTVLRPVQEPLYDYIWDILKKNGTHTLMELNHPIIANLDGNISYYIHHALDRFVKCSSRTVQFTMCYDTINSGTPVEIDKSICFGPGNVIYNLIRRNCPQVDTIEYTSLATIDAYHKAAEENKD*" + } + ], + "YOR252W": [ + { + "revision": "060106", + "new_alignment": "MPVTKSLSKLQKNLSKKGKNITVHPKGRKYEKLVRATMREDKIAAKKKLHQDKRVHELARVKFMQDVVNSDTFKGQPIFDHAHTREFIQSFIERDDTELDELKKKRRSNRPPSNRQVLLQQRRDQELKEFKAGFLCPDLSDAKNMEFLRNWNGTFGLLNTLRLIRINDKGEQVVGGNE*", + "old_alignment": "-------------------------------------MREDKIAAKKKLHQDKRVHELARVKFMQDVVNSDTFKGQPIFDHAHTREFIQSFIERDDTELDELKKKRRSNRPPSNRQVLLQQRRDQELKEFKAGFLCPDLSDAKNMEFLRNWNGTFGLLNTLRLIRINDKGEQVVGGNE*" + } + ], + "YOR297C": [ + { + "revision": "110203", + "new_alignment": "MLLFPGLKPVLNASTVIVNPVRAVFPGLVLSTKRSFYSINRLNAENKINDIANTSKEASSSVQMFKPPEFSQFKDSYQKDYERIAKYTLIPLTMVPFYASFTGGVINPLLDASLSSIFLIYLQYGFTSCIIDYIPKEKYPRWHKLALYCLYGGSMLSLYGIYELETKNNGFVDLVKKLWNENDDHLYIFGRN*", + "old_alignment": "MLLFPGLKPVLNASTVIVNPVRAVFPGLVLSTKRSFYSINRLNAENKINDIANTSKEASSSVQMFKPPEFSQFKDSYQKDYERIAKYTLIPLTMVPFYASFTGGVINPLLDASLSSIFLIYLQYGFTSCIIDYIPKGKYPRWHKLALYCLYGGSMLSLYGIYELETKNNGFVDLVKKLWNENDDHLYIFGRN*" + } + ], + "YOR298C-A": [ + { + "revision": "040305", + "new_alignment": "MSDWDTNTIIGSRARAGGSGPRANVARSQGQINAARRQGLVVSVDKKYGSTNTRGDNEGQRLTKVDRETDIVKPKKLDPNVGRAISRARTDKKMSQKDLATKINEKPTVVNDYEAARAIPNQQVLSKLERALGVKLRGNNIGSPLGAPKKK*", + "old_alignment": "---------------------------------------------------------------------------------------------MSQKDLATKINEKPTVVNDYEAARAIPNQQVLSKLERALGVKLRGNNIGSPLGAPKKK*" + } + ], + "YOR306C": [ + { + "revision": "110203", + "new_alignment": "MSSDSLTPKDTIVPEEQTNQLRQPDLDEDSIHYDPEADDLESLETTASYASTSVSAKVYTKKEVNKGTDIESQPHWGENTSSTHDSDKEEDSNEEIESFPEGGFKAWVVTFGCFLGLIACFGLLNSTGVIESHLQDNQLSSESVSTIGWLFSLFLFVCSASCIISGTYFDRNGFRTIMIVGTVFHVAGLFATANSTKYWHFILSFAIVCGFGNGIVLSPLVSVPAHYFFKRRGTALAMATIGGSVGGVVFPIMLRSFFSMKSDTDPTYGFVWGIRTLGFLDLALLTLSIILVKERLPHVIENSKDGESRWRYILRVYILQCFDAKAFLDMKYLFCVLGTVFSELSINSALTYYGSYATSHGISANDAYTLIMIINVCGIPGRWVPGYLSDKFGRFNVAIATLLTLFIVMFVGWLPFGTNLTNMYVISALYGFCSGSVFSLLPVCCGQISKTEEFGKRYSTMYFVVGFGTLVGIPITGAIISIKTTADYQHYIIFCGLATFVSAVCYIISRAYCVGFKWVRF*", + "old_alignment": "MSSDSLTPKDTIVPEEQTNQLRQPDLDEDSIHYDPEADDLESLETTASYASTSVSAKVYTKKEVNKGTDIESQPHWGENTSSTHDSDKEEDSNEEIESFPEGGFKAWVVTFGCFLGLIACFGLLNSTGVIESHLQDNQLSSESVSTIGWLFSLFLFVCSASCIISGTYFDRNGFRTIMIVGTVFHVAGLFATANSTKYWHFILSFAIVCGFGNGIVLSPLVSVPAHYFFKRRGTALAMATIGGSVGGVVFPIMLRSFFSMKSDTDPTYGFVWGIRTLGFLDLALLTLSIILVKERLPHVIENSKDGESRWRYILRVYILQCFDAKAFLDMKYLFCVLGTVFSELSINSALTYYGSYATSHGISANDAYTLIMIINVCGIPGRWVPGYLSDKFGRFNVAIATLLTLFIVMFVGWLPFGTNLTNMYVISALYGFCSGSVFSLLPVCCGQISKTEEFGKRYSTMYFVVGFGTLVGIPITGAIISIKTTADYQHYIIFSGLATFVSAVCYIISRAYCVGFKWVRF*" + } + ], + "YOR312C": [ + { + "revision": "070713", + "new_alignment": "M--AHFKEYQVIGRRLPTESVPEPKLFRMRIFASNEVIAKSRYWYFLQKLHKVKKASGEIVSINQINEAHPTKVKNFGVWVRYDSRSGTHNMYKEIRDVSRVAAVETLYQDMAARHRARFRSIHILKVAEIEKTADVKRQYVKQFLTKDLKFPLPHRVQKSTKTFSYKRPSTFY*", + "old_alignment": "MYLAHFKEYQVIGRRLPTESVPEPKLFRMRIFASNEVIAKSRYWYFLQKLHKVKKASGEIVSINQINEAHPTKVKNFGVWVRYDSRSGTHNMYKEIRDVSRVAAVETLYQDMAARHRARFRSIHILKVAEIEKTADVKRQYVKQFLTKDLKFPLPHRVQKSTKTFSYKRPSTFY*" + } + ], + "YOR330C": [ + { + "revision": "051202", + "new_alignment": "--------------------------MTKLMVRSECMLRMVRRRPLRVQFCARWFSTKKNTAEAPRINPVGIQYLGESLQRQVFGSCGGKDEVEQSDKLMELSKKSLKDHGLWGKKTLITDPISFPLPPLQGRSLDEHFQKIGRFNSEPYKSFCEDKFTEMVARPAEWLRKPGWVKYVPGMAPVEVAYPDEELVVFDVETLYNVSDYPTLATALSSTAWYLWCSPFICGGDDPAALIPLNTLNKEQVIIGHNVAYDRARVLEEYNFRDSKAFFLDTQSLHIASFGLCSRQRPMFMKNNKKKEAEVESEVHPEISIEDYDDPWLNVSALNSLKDVAKFHCKIDLDKTDRDFFASTDKSTIIENFQKLVNYCATDVTATSQVFDEIFPVFLKKCPHPVSFAGLKSLSKCILPTKLNDWNDYLNSSESLYQQSKVQIESKIVQIIKDIVLLKDKPDFYLKDPWLSQLDWTTKPLRLTKKGVPAKCQKLPGFPEWYRQLFPSKDTVEPKITIKSRIIPILFKLSWENSPVIWSKESGWCFNVPHEQVETYKAKNYVLADSVSQEEEEIRTHNLGLQCTGVLFKVPHPNGPTFNCTNLLTKSYNHFFEKGVLKSESELAHQALQINSSGSYWMSARERIQSQFVVPSCKFPNEFQSLSAKSSLNNEKTNDLAIIIPKIVPMGTITRRAVENAWLTASNAKANRIGSELKTQVKAPPGYCFVGADVDSEELWIASLVGDSIFNVHGGTAIGWMCLEGTKNEGTDLHTKTAQILGCSRNEAKIFNYGRIYGAGAKFASQLLKRFNPSLTDEETKKIANKLYENTKGKTKRSKLFKKFWYGGSESILFNKLESIAEQETPKTPVLGCGITYSLMKKNLRANSFLPSRINWAIQSSGVDYLHLLCCSMEYIIKKYNLEARLCISIHDEIRFLVSEKDKYRAAMALQISNIWTRAMFCQQMGINELPQNCAFFSQVDIDSVIRKEVNMDCITPSNKTAIPHGEALDINQLLDKSNSKLGKPNLDIDSKVSQYAYNYREPVFEEYNKSYTPEFLKYFLAMQVQSDKRDVNRLEDEYLRECTSKEYARDGNTAEYSLLDYIKDVEKGKRTKVRIMGSNFLDGTKNAKADQRIRLPVNMPDYPTLHKIANDSAIPEKQLLENRRKKENRIDDENKKKLTRKKNTTPMERKYKRVYGGRKAFEAFYECANKPLDYTLETEKQFFNIPIDGVIDDVLNDKSNYKKKPSQARTASSSPIRKTAKAVHSKKLPARKSSTTNRNLVELERDITISREY*", + "old_alignment": "MDYERTVLKKRSRWGLYVVVEQRGTSMTKLMVRSECMLRMVRRRPLRVQFCARWFSTKKNTAEAPRINPVGIQYLGESLQRQVFGSCGGKDEVEQSDKLMELSKKSLKDHGLWGKKTLITDPISFPLPPLQGRSLDEHFQKIGRFNSEPYKSFCEDKFTEMVARPAEWLRKPGWVKYVPGMAPVEVAYPDEELVVFDVETLYNVSDYPTLATALSSTAWYLWCSPFICGGDDPAALIPLNTLNKEQVIIGHNVAYDRARVLEEYNFRDSKAFFLDTQSLHIASFGLCSRQRPMFMKNNKKKEAEVESEVHPEISIEDYDDPWLNVSALNSLKDVAKFHCKIDLDKTDRDFFASTDKSTIIENFQKLVNYCATDVTATSQVFDEIFPVFLKKCPHPVSFAGLKSLSKCILPTKLNDWNDYLNSSESLYQQSKVQIESKIVQIIKDIVLLKDKPDFYLKDPWLSQLDWTTKPLRLTKKGVPAKCQKLPGFPEWYRQLFPSKDTVEPKITIKSRIIPILFKLSWENSPVIWSKESGWCFNVPHEQVETYKAKNYVLADSVSQEEEEIRTHNLGLQCTGVLFKVPHPNGPTFNCTNLLTKSYNHFFEKGVLKSESELAHQALQINSSGSYWMSARERIQSQFVVPSCKFPNEFQSLSAKSSLNNEKTNDLAIIIPKIVPMGTITRRAVENAWLTASNAKANRIGSELKTQVKAPPGYCFVGADVDSEELWIASLVGDSIFNVHGGTAIGWMCLEGTKNEGTDLHTKTAQILGCSRNEAKIFNYGRIYGAGAKFASQLLKRFNPSLTDEETKKIANKLYENTKGKTKRSKLFKKFWYGGSESILFNKLESIAEQETPKTPVLGCGITYSLMKKNLRANSFLPSRINWAIQSSGVDYLHLLCCSMEYIIKKYNLEARLCISIHDEIRFLVSEKDKYRAAMALQISNIWTRAMFCQQMGINELPQNCAFFSQVDIDSVIRKEVNMDCITPSNKTAIPHGEALDINQLLDKSNSKLGKPNLDIDSKVSQYAYNYREPVFEEYNKSYTPEFLKYFLAMQVQSDKRDVNRLEDEYLRECTSKEYARDGNTAEYSLLDYIKDVEKGKRTKVRIMGSNFLDGTKNAKADQRIRLPVNMPDYPTLHKIANDSAIPEKQLLENRRKKENRIDDENKKKLTRKKNTTPMERKYKRVYGGRKAFEAFYECANKPLDYTLETEKQFFNIPIDGVIDDVLNDKSNYKKKPSQARTASSSPIRKTAKAVHSKKLPARKSSTTNRNLVELERDITISREY*" + } + ], + "YOR396W": [ + { + "revision": "070209", + "new_alignment": "MKVSDRRKFEKANFDEFESALNNKNDLVHCPSITLFESIPTEVRSFYEDEKSGLIKVVKFRTGAMDRKRSFEKIVISVMVGKNVQKFLTFVEDEPDFQGGPIPSKYLIPKKINLMVYTLFQVHTLKFNRKDYDTLSLFYLNRGYYNELSFRVLERCHEIASARPNDSSTMRTFTDFVSGAPIVRSLQKSTIRKYGYNLAPYMFLLLHVDELSIFSAYQASLPGEKKVDTERLKRDLCPRKPIEIKYFSQICNDMMNKKDRLGDILHIILRACALNFGAGPRGGAGDEEDRSITNEEPIIPSVDEHGLKVCKLRSPNTPRRLRKTLDAVKALLVSSCACTARDLDIFDDTNGVAMWKWIKILYHEVAQETTLKDSYRITLVPSSDGISVCGKLFNREYVRGFYFACKAQFDNLWGELNNCFYMPTVVDIASLILRNREVLFREPKRGIDEYLENDSFLQMIPVKYREIVLPKLRRDTNKMTAALKNKVTVAIDELTVPLMWMVHFAVGYPYRYPELQLLAFAGPQRNVYVDDTTRRIQLYTDYNKNGSSEPRLKTLDGLTSDYVFYFVTVLRQMQICALGNSYDAFNHDPWMDVVGFEDPDQVTNRDISRIVLYSYMFLNTAKGCLVEYATFRQYMRELPKNAPQKLNFREMRQGLIALGRHCVGSRFETDLYESATSELMANHSVQTGRNIYGVDSFSLTSVSGTTATLLQERASERWIQWLGLESDYHCSFSSTRNAEDVVAGEAASSDHDQKISRVTRKRPREPKSTNDILVAGQKLFGSSFEFRDLHQLRLCHEIYMADTPSVAVQAPPGYGKTELFHLPLIALASKGDVKYVSFLFVPYTVLLANCMIRLSRCGCLNVAPVRNFIEEGCDGVTDLYVGIYDDLASTNFTDRIAAWENIVECTFRTNNVKLGYLIVDEFHNFETEVYRQSQFGGITNLDFDAFEKAIFLSGTAPEAVADAALQRIGLTGLAKKSMDINELKRSEDLSRGLSSYPTRMFNLIKEKSEVPLGHVHKIWKKVESQPEEALKLLLALFEIEPESKAIVVASTTNEVEELACSWRKYFRVVWIHGKLGAAEKVSRTKEFVTDGSMRVLIGTKLVTEGIDIKQLMMVIMLDNRLNIIELIQGVGRLRDGGLCYLLSRKNSWAARNRKGELPPIKEGCITEQVREFYGLESKKGKKGQHVGCCGSRTDLSADTVELIERMDRLAEKQATASMSIIALPSSFQESNSSDRCRKYCSSDEDSDTCIHGSANASTNATTNSSTNATTTASTNVRTSATTTASINVRTSAITTESTNSSTNATTTASTNVRTSATTTASINVRTSATTTESTNSNTSATTTESTDSNTSATTTESTDSNTSATTTASTNSSTNATTTASTNSSTNATTTESTNASAKEDANKDGNAEDNRFHPVTDINKESYKRKGSQMVLLERKKLKAQFPNTSENMNVLQFLGFRSDEIKHLFLYGIDVYFCPEGVFTQYGLCKGCQKMFELCVCWAGQKVSYRRMAWEALAVERMLRNDEEYKEYLEDIEPYHGDPVGYLKYFSVKRGEIYSQIQRNYAWYLAITRRRETISVLDSTRGKQGSQVFRMSGRQIKELYYKVWSNLRESKTEVLQYFLNWDEKKCREEWEAKDDTVFVEALEKVGVFQRLRSMTSAGLQGPQYVKLQFSRHHRQLRSRYELSLGMHLRDQLALGVTPSKVPHWTAFLSMLIGLFYNKTFRQKLEYLLEQISEVWLLPHWLDLANVEVLAADNTRVPLYMLMVAVHKELDSDDVPDGRFDIILLCRDSSREVGE*", + "old_alignment": "--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------MQICALGNSYDAFNHDPWMDVVGFEDPDQVTNRDISRIVLYSYMFLNTAKGCLVEYATFRQYMRELPKNAPQKLNFREMRQGLIALGRHCVGSRFETDLYESATSELMANHSVQTGRNIYGVDSFSLTSVSGTTATLLQERASERWIQWLGLESDYHCSFSSTRNAEDVVAGEAASSDHDQKISRVTRKRPREPKSTNDILVAGQKLFGSSFEFRDLHQLRLCHEIYMADTPSVAVQAPPGYGKTELFHLPLIALASKGDVKYVSFLFVPYTVLLANCMIRLSRCGCLNVAPVRNFIEEGCDGVTDLYVGIYDDLASTNFTDRIAAWENIVECTFRTNNVKLGYLIVDEFHNFETEVYRQSQFGGITNLDFDAFEKAIFLSGTAPEAVADAALQRIGLTGLAKKSMDINELKRSEDLSRGLSSYPTRMFNLIKEKSEVPLGHVHKIWKKVESQPEEALKLLLALFEIEPESKAIVVASTTNEVEELACSWRKYFRVVWIHGKLGAAEKVSRTKEFVTDGSMRVLIGTKLVTEGIDIKQLMMVIMLDNRLNIIELIQGVGRLRDGGLCYLLSRKNSWAARNRKGELPPIKEGCITEQVREFYGLESKKGKKGQHVGCCGSRTDLSADTVELIERMDRLAEKQATASMSIIALPSSFQESNSSDRCRKYCSSDEDSDTCIHGSANASTNATTNSSTNATTTASTNVRTSATTTASINVRTSAITTESTNSSTNATTTASTNVRTSATTTASINVRTSATTTESTNSNTSATTTESTDSNTSATTTESTDSNTSATTTASTNSSTNATTTASTNSSTNATTTESTNASAKEDANKDGNAEDNRFHPVTDINKESYKRKGSQMVLLERKKLKAQFPNTSENMNVLQFLGFRSDEIKHLFLYGIDVYFCPEGVFTQYGLCKGCQKMFELCVCWAGQKVSYRRMAWEALAVERMLRNDEEYKEYLEDIEPYHGDPVGYLKYFSVKRGEIYSQIQRNYAWYLAITRRRETISVLDSTRGKQGSQVFRMSGRQIKELYYKVWSNLRESKTEVLQYFLNWDEKKCREEWEAKDDTVFVEALEKVGVFQRLRSMTSAGLQGPQYVKLQFSRHHRQLRSRYELSLGMHLRDQLALGVTPSKVPHWTAFLSMLIGLFYNKTFRQKLEYLLEQISEVWLLPHWLDLANVEVLAADNTRVPLYMLMVAVHKELDSDDVPDGRFDIILLCRDSSREVGE*" + } + ], + "YPL224C": [ + { + "revision": "110203", + "new_alignment": "MLRISIDSIKQFGSFVPGYNNTSYHAAGRAIRTSSLYSTMISANPRRCLHSSKLLNKEGQEEGYNEQLISKMSSQNGSNSRQNESEGKKEGKASSVKSLLQHTHSHSHTHMHDNPLLSLNVQQIKKNPGVRITWIGLASNVGMAVGKFVGGITFHSQALLADSVHALSDLVSDFLTLFSVQYASRKPTSEYPYGYGKVETVGSLAVSTILAMAGISIGWSSLCAIVGPVIPHAILESMAGLIGETHSHSQSLTQQATNVNAVWIAAGSILVKEWVFQATKKVAIQTNSNVLMANAWHHRVDSLTSLVALVAITSSYFFNIQSLDNLGGLVVSGLIIKTGGQGILSSLKELVDQSIPPTDPRYLEIESVIKDSIGSLKTDLDLKQSLHVRDLTILASGPNLRATTTLEVPVLHSGQEVGIRFLENAISTIREDLRMKVPNVGKVDVEFVDVTSDSKGDLEHSHDTKSTNHTHTHSDSADTHTHKH*---------", + "old_alignment": "MLRISIDSIKQFGSFVTGYNNTSYHAAGRAIRTSSLYSTMISANPRRCLHSSKLLNKEGQEEGYNEQLISKMSSQNGSNSRQNESEGKKEGKASSVKSLLQHTHSHSHTHMHDNPLLSLNVQQIKKNPGVRITWIGLASNVGMAVGKFVGGITFHSQALLADSVHALSDLVSDFLTLFSVQYASRKPTSEYPYGYGKVETVGSLAVSTILAMAGISIGWSSLCAIVGPVIPHAILESMAGLIGETHSHSQSLTQQATNVNAVWIAAGSILVKEWVFQATKKVAIQTNSNVLMANAWHHRVDSLTSLVALVAITSSYFFNIQSLDNLGGLVVSGLIIKTGGQGILSSLKELVDQSIPPTDPRYLEIESVIKDSIGSLKTDLDLKQSLHVRDLTILASGPNLRATTTLEVPVLHSGQEVGIRFLENAISTIREDLRMKVPNVG--------------------------------------------RWTSSLLM*" + } + ], + "YPL109C": [ + { + "revision": "040723", + "new_alignment": "MSFLKFAYRNSWRYYSKSTRHFHKIPIRQFIIPTSIAFYLTQNSFPKQNCLIYNDSLKPDPKGDTFEMGLYVSSENELQEKLKSFRSAKITESRNKLIRYLRIFWFGFNDNIVEPVCTILRFLEISAIFLPLLLLYPISWFGHKLKITDTNITETRGSLIWCQLLRKALELAGPSFIKLGQWAGSRTDIFSHALCHELGKLHSNVTAHSLSFTLEKLSQALKVDKIEDAFDEFNRTPIGVGSIAQVYVGELSQKYIDKYDNIQIGKDGNRWCAIKILHPNVRSQIRRDLKIMKFCADAINWIPTMEWLSLPSEVDQFSILMNIQLDLRIEALNLERFNENFKNSIQVKFPKPFLPLSNRDVMFEEHVYGLSMEKFLSTKKQINDVELCKKVSDPFVDAFLQMLILDDFVHADLHPGNVIIRFVKTNKYGTNIISSELESYRITHDLRKKIEEDQDQDFVGKLKSVLTNYTPQICFIDTGIITELNEKNRINFIALFNALARFDGYRAGELMIERSRTPETAIDKEVFAFKVEKLVDKVKQRTFTLGTVSIGDLLDQMLSMVRSHHVRMESDFVSVVVAILLLEGIGRQLDPNLDLFESSLPILREFGFKREAKSLLKDASTLSMLKIWVGLEVRQLMHLSMKQIYDLVRTDQLCPNY*", + "old_alignment": "-------------------------------------------------------------------MGLYVSSENELQEKLKSFRSAKITESRNKLIRYLRIFWFGFNDNIVEPVCTILRFLEISAIFLPLLLLYPISWFGHKLKITDTNITETRGSLIWCQLLRKALELAGPSFIKLGQWAGSRTDIFSHALCHELGKLHSNVTAHSLSFTLEKLSQALKVDKIEDAFDEFNRTPIGVGSIAQVYVGELSQKYIDKYDNIQIGKDGNRWCAIKILHPNVRSQIRRDLKIMKFCADAINWIPTMEWLSLPSEVDQFSILMNIQLDLRIEALNLERFNENFKNSIQVKFPKPFLPLSNRDVMFEEHVYGLSMEKFLSTKKQINDVELCKKVSDPFVDAFLQMLILDDFVHADLHPGNVIIRFVKTNKYGTNIISSELESYRITHDLRKKIEEDQDQDFVGKLKSVLTNYTPQICFIDTGIITELNEKNRINFIALFNALARFDGYRAGELMIERSRTPETAIDKEVFAFKVEKLVDKVKQRTFTLGTVSIGDLLDQMLSMVRSHHVRMESDFVSVVVAILLLEGIGRQLDPNLDLFESSLPILREFGFKREAKSLLKDASTLSMLKIWVGLEVRQLMHLSMKQIYDLVRTDQLCPNY*" + } + ], + "YPL094C": [ + { + "revision": "040112", + "new_alignment": "---------MSAVGPGSNAGASVNGGSATAIATLLRNHKELKQRQGLFQAKQTDFFRYKRFVRALHSEEYANKSARQPEIYPTIPSNKIEDQLKSREIFIQLIKAQMVIPVKKLHSQECKEHGLKPSKDFPHLIVSNKAQLEADEYFVWNYNPRTYMDYLIVIGVVSIILALVCYPLWPRSMRRGSYYVSLGAFGILAGFFAVAILRLILYVLSLIVYKDVGGFWIFPNLFEDCGVLESFKPLYGFGEKDTYSYKKKLKRMKKKQAKRESNKKKAINEKAEQN*", + "old_alignment": "MVAEQTQENMSAVGPGSNAGASVNGGSATAIATLLRNHKELKQRQGLFQAKQTDFFRYKRFVRALHSEEYANKSARQPEIYPTIPSNKIEDQLKSREIFIQLIKAQMVIPVKKLHSQECKEHGLKPSKDFPHLIVSNKAQLEADEYFVWNYNPRTYMDYLIVIGVVSIILALVCYPLWPRSMRRGSYYVSLGAFGILAGFFAVAILRLILYVLSLIVYKDVGGFWIFPNLFEDCGVLESFKPLYGFGEKDTYSYKKKLKRMKKKQAKRESNKKKAINEKAEQN*" + } + ], + "YPL060C-A": [ + { + "revision": "141118", + "new_alignment": "MATPVRDETRNVIDDNISARIQSKVKTNDTVRQTPSSLRKVSIKDEQVKQYQRNLNRFKTILNGLKAEEEKLSETDDIQMLAEKLLKLGETIDKVENRIVDLVEKIQLLETNENNNILHEHIDATGTYYLFDTLTSTNKRFYPKDCVFDYRTNNVENIPILLNNFKKFIKKYQFDDVFENDIIEIDPRENEILCKIIKEGLGESLDIMNTNTTDIFRIIDGLKNKYRSLHGRDVRIRAWEKVLVDTTCRNSALLMNKLQKLVLMEKWIFSKCCQDCPNLKDYLQEAIMGTLHESLRNSVKQRLYNIPHNVGINHEEFLINTVIETVIDLSPIADDQIENSCMYCKSVFHCSINCKKKPNRELRPDSTNFSKTYYLQGAQRQQQLKSSAKEQKSWNKTQKKSNKVYNSKKLVIIDTGSGVNITNDKTLLHNYEDSNRSTRFFGIGKNSSVSVKGYGYIKIKNGHNNTDNKCLLTYYVPEEESTIISCYDLAKKTKMVLSRKYTRLGNKIIKIKTKIVNGVIHVKMNELIERPSDDSKINAIKPTSSPGFKLNKRSITLEDAHKRMGHTGIQQIENSIKHNHYEESLDLIKEPNEFWCQTCKISKATKRNHYTGSMNNHSTDHEPGSSWCMDIFGPVSSSNADTKRYMLIMVDNNTRYCMTSTHFNKNAETILAQIRKNIQYVETQFDRKVREINSDRGTEFTNDQIEEYFISKGIHHILTSTQDHAANGRAERYIRTIVTDATTLLRQSNLRVKFWEYAVTSATNIRNCLEHKSTGKLPLKAISRQPVTVRLMSFLPFGEKGIIWNHNHKKLKPSGLPSIILCKDPNSYGYKFFIPSKNKIVTSDNYTIPNYTMDGRVRNTQNIYKSHQFSSHNDNEEDQIETVTNLCEALENYEDDNKPITRLEDLFTEEELSQIDSNAKYPSPSNNLEGDLDYVFSDVEESGDYDVESELSTTNTSISTDKNKILSNKDFNSELASTEISISEIDKKGLINTSHIDEDKYDEKVHRIPSIIQEKLVGSKNTIKINDENRISDRIRSKNIGSILNTGLSRCVDITDESITNKDESMHNAKPELIQEQFNKTNHETSFPKEGSIGTKCKIPKYRQWISLKTGDTSLPIKTLESINNHHSNDYSTNKVEKFEKENHHPPPIEDIVDMSDQTDMESNCQDGNNLKELKVTDKNVPTDNGTNVSPRLEQNIEASGSPVQTVNKSAFLNKEFSSLNMKRKRKRHDKNNSLTSYELERDKKRSKRNRVKLIPDNMETVSAQKIRAIYYNEAISKNPDLKEKHEYKQAYHKELQNLKDMKVFDVDVKYSRSEIPDNLIVPTNTIFTKKRNGIYKARIVCRGDTQSPDTYSVITTESLNHNHIKIFLMIANNRNMFMKTLDINHAFLYAKLEEEIYIPHPHDRRCVVKLNKALYGLKQSPKEWNDHLRQYLNGIGLKDNSYTPGLYQTEDKNLMIAVYVDDCVIAASNEQRLDEFINKLKSNFELKITGTLIDDVLDTDILGMDLVYNKRLGTIDLTLKSFINRMDKKYNEELKKIRKSSIPHMSTYKIDPKKDVLQMSEEEFRQGVLKLQQLLGELNYVRHKCRYDINFAVKKVARLVNYPHERVFYMIYKIIQYLVRYKDIGIHYDRDCNKDKKVIAITDASVGSEYDAQSRIGVILWYGMNIFNVYSNKSTNRCVSSTEAELHAIYEGYADSETLKVTLKELGEGDNNDIVMITDSKPAIQGLNRSYQQPKEKFTWIKTEIIKEKIKEKSIKLLKITGKGNIADLLTKPVSASDFKRFIQVLKNKITSQDILASTDY*", + "old_alignment": "MATPVRDETRNVIDDNISARIQSKVKTNDTVRQTPSSLRKVSIKDEQVKQYQRNLNRFKTILNGLKAEEEKLSETDDIQMLAEKLLKLGETIDKVENRIVDLVEKIQLLETNENNNILHEHIDATGTYYLFDTLTSTNKRFYPKDCVFDYRTNNVENIPILLNNFKKFIKKYQFDDVFENDIIEIDPRENEILCKIIKEGLGESLDIMNTNTTDIFRIIDGLKNKYRSLHGRDVRIRAWEKVLVDTTCRNSALLMNKLQKLVLMEKWIFSKCCQDCPNLKDYLQEAIMGTLHESLRNSVKQRLYNIPHNVGINHEEFLINTVIETVIDLSPIADDQIENSCMYCKSVFHCSINCKKKPNRELRPDSTNFSKTYYLQGAQRQQQLKSSAKEQKSWNKTQKKSNKVYNSKKLVIIDTGSGVNITNDKTLLHNYEDSNRSTRFFGIGKNSSVSVKGYGYIKIKNGHNNTDNKCLLTYYVPEEESTIISCYDLAKKTKMVLSRKYTRLGNKIIKIKTKIVNGVIHVKMNELIERPSDDSKINAIKPTSSPGFKLNKRSITLEDAHKRMGHTGIQQIENSIKHNHYEESLDLIKEPNEFWCQTCKISKATKRNHYTGSMNNHSTDHEPGSSWCMDIFGPVSSSNADTKRYMLIMVDNNTRYCMTSTHFNKNAETILAQIRKNIQYVETQFDRKVREINSDRGTEFTNDQIEEYFISKGIHHILTSTQDHAANGRAERYIRTIVTDATTLLRQSNLRVKFWEYAVTSATNIRNCLEHKSTGKLPLKAISRQPVTVRLMSFLPFGEKGIIWNHNHKKLKPSGLPSIILCKDPNSYGYKFFIPSKNKIVTSDNYTIPNYTMDGRVRNTQNIYKSHQFSSHNDNEEDQIETVTNLCEALENYEDDNKPITRLEDLFTEEELSQIDSNAKYPSPSNNLEGDLDYVFSDVEESGDYDVESELSTTNTSISTDKNKILSNKDFNSELASTEISISEIDKKGLINTSHIDEDKYDEKVHRIPSIIQEKLVGSKNTIKINDENRISDRIRSKNIGSILNTGLSRCVDITDESITNKDESMHNAKPELIQEQFNKTNHETSFPKEGSIGTKCKIPKYRQ--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*" + }, + { + "revision": "150113", + "new_alignment": "MATPVRDETRNVIDDNISARIQSKVKTNDTVRQTPSSLRKVSIKDEQVKQYQRNLNRFKTILNGLKAEEEKLSETDDIQMLAEKLLKLGETIDKVENRIVDLVEKIQLLETNENNNILHEHIDATGTYYLFDTLTSTNKRFYPKDCVFDYRTNNVENIPILLNNFKKFIKKYQFDDVFENDIIEIDPRENEILCKIIKEGLGESLDIMNTNTTDIFRIIDGLKNKYRSLHGRDVRIRAWEKVLVDTTCRNSALLMNKLQKLVLMEKWIFSKCCQDCPNLKDYLQEAIMGTLHESLRNSVKQRLYNIPHNVGINHEEFLINTVIETVIDLSPIADDQIENSCMYCKSVFHCSINCKKKPNRELRPDSTNFSKTYYLQGAQRQQQLKSSAKEQKSWNKTQKKSNKVYNSKKLVIIDTGSGVNITNDKTLLHNYEDSNRSTRFFGIGKNSSVSVKGYGYIKIKNGHNNTDNKCLLTYYVPEEESTIISCYDLAKKTKMVLSRKYTRLGNKIIKIKTKIVNGVIHVKMNELIERPSDDSKINAIKPTSSPGFKLNKRSITLEDAHKRMGHTGIQQIENSIKHNHYEESLDLIKEPNEFWCQTCKISKATKRNHYTGSMNNHSTDHEPGSSWCMDIFGPVSSSNADTKRYMLIMVDNNTRYCMTSTHFNKNAETILAQIRKNIQYVETQFDRKVREINSDRGTEFTNDQIEEYFISKGIHHILTSTQDHAANGRAERYIRTIVTDATTLLRQSNLRVKFWEYAVTSATNIRNCLEHKSTGKLPLKAISRQPVTVRLMSFLPFGEKGIIWNHNHKKLKPSGLPSIILCKDPNSYGYKFFIPSKNKIVTSDNYTIPNYTMDGRVRNTQNIYKSHQFSSHNDNEEDQIETVTNLCEALENYEDDNKPITRLEDLFTEEELSQIDSNAKYPSPSNNLEGDLDYVFSDVEESGDYDVESELSTTNTSISTDKNKILSNKDFNSELASTEISISEIDKKGLINTSHIDEDKYDEKVHRIPSIIQEKLVGSKNTIKINDENRISDRIRSKNIGSILNTGLSRCVDITDESITNKDESMHNAKPELIQEQFNKTNHETSFPKEGSIGTKCKIPKYRQWISLKTGDTSLPIKTLESINNHHSNDYSTNKVEKFEKENHHPPPIEDIVDMSDQTDMESNCQDGNNLKELKVTDKNVPTDNGTNVSPRLEQNIEASGSPVQTVNKSAFLNKEFSSLNMKRKRKRHDKNNSLTSYELERDKKRSKRNRVKLIPDNMETVSAQKIRAIYYNEAISKNPDLKEKHEYKQAYHKELQNLKDMKVFDVDVKYSRSEIPDNLIVPTNTIFTKKRNGIYKARIVCRGDTQSPDTYSVITTESLNHNHIKIFLMIANNRNMFMKTLDINHAFLYAKLEEEIYIPHPHDRRCVVKLNKALYGLKQSPKEWNDHLRQYLNGIGLKDNSYTPGLYQTEDKNLMIAVYVDDCVIAASNEQRLDEFINKLKSNFELKITGTLIDDVLDTDILGMDLVYNKRLGTIDLTLKSFINRMDKKYNEELKKIRKSSIPHMSTYKIDPKKDVLQMSEEEFRQGVLKLQQLLGELNYVRHKCRYDINFAVKKVARLVNYPHERVFYMIYKIIQYLVRYKDIGIHYDRDCNKDKKVIAITDASVGSEYDAQSRIGVILWYGMNIFNVYSNKSTNRCVSSTEAELHAIYEGYADSETLKVTLKELGEGDNNDIVMITDSKPAIQGLNRSYQQPKEKFTWIKTEIIKEKIKEKSIKLLKITGKGNIADLLTKPVSASDFKRFIQVLKNKITSQDILASTDY*", + "old_alignment": "MATPVRDETRNVIDDNISARIQSKVKTNDTVRQTPSSLRKVSIKDEQVKQYQRNLNRFKTILNGLKAEEEKLSETDDIQMLAEKLLKLGETIDKVENRIVDLVEKIQLLETNENNNILHEHIDATGTYYLFDTLTSTNKRFYPKDCVFDYRTNNVENIPILLNNFKKFIKKYQFDDVFENDIIEIDPRENEILCKIIKEGLGESLDIMNTNTTDIFRIIDGLKNKYRSLHGRDVRIRAWEKVLVDTTCRNSALLMNKLQKLVLMEKWIFSKCCQDCPNLKDYLQEAIMGTLHESLRNSVKQRLYNIPHNVGINHEEFLINTVIETVIDLSPIADDQIENSCMYCKSVFHCSINCKKKPNRELRPDSTNFSKTYYLQGAQRQQQLKSSAKEQKSWNKTQKKSNKVYNSKKLVIIDTGSGVNITNDKTLLHNYEDSNRSTRFFGIGKNSSVSVKGYGYIKIKNGHNNTDNKCLLTYYVPEEESTIISCYDLAKKTKMVLSRKYTRLGNKIIKIKTKIVNGVIHVKMNELIERPSDDSKINAIKPTSSPGFKLNKRSITLEDAHKRMGHTGIQQIENSIKHNHYEESLDLIKEPNEFWCQTCKISKATKRNHYTGSMNNHSTDHEPGSSWCMDIFGPVSSSNADTKRYMLIMVDNNTRYCMTSTHFNKNAETILAQIRKNIQYVETQFDRKVREINSDRGTEFTNDQIEEYFISKGIHHILTSTQDHAANGRAERYIRTIVTDATTLLRQSNLRVKFWEYAVTSATNIRNCLEHKSTGKLPLKAISRQPVTVRLMSFLPFGEKGIIWNHNHKKLKPSGLPSIILCKDPNSYGYKFFIPSKNKIVTSDNYTIPNYTMDGRVRNTQNIYKSHQFSSHNDNEEDQIETVTNLCEALENYEDDNKPITRLEDLFTEEELSQIDSNAKYPSPSNNLEGDLDYVFSDVEESGDYDVESELSTTNTSISTDKNKILSNKDFNSELASTEISISEIDKKGLINTSHIDEDKYDEKVHRIPSIIQEKLVGSKNTIKINDENRISDRIRSKNIGSILNTGLSRCVDITDESITNKDESMHNAKPELIQEQFNKTNHETSFPKEGSIGTKCKIPKYRQ*ISLKTGDTSLPIKTLESINNHHSNDYSTNKVEKFEKENHHPPPIEDIVDMSDQTDMESNCQDGNNLKELKVTDKNVPTDNGTNVSPRLEQNIEASGSPVQTVNKSAFLNKEFSSLNMKRKRKRHDKNNSLTSYELERDKKRSKRNRVKLIPDNMETVSAQKIRAIYYNEAISKNPDLKEKHEYKQAYHKELQNLKDMKVFDVDVKYSRSEIPDNLIVPTNTIFTKKRNGIYKARIVCRGDTQSPDTYSVITTESLNHNHIKIFLMIANNRNMFMKTLDINHAFLYAKLEEEIYIPHPHDRRCVVKLNKALYGLKQSPKEWNDHLRQYLNGIGLKDNSYTPGLYQTEDKNLMIAVYVDDCVIAASNEQRLDEFINKLKSNFELKITGTLIDDVLDTDILGMDLVYNKRLGTIDLTLKSFINRMDKKYNEELKKIRKSSIPHMSTYKIDPKKDVLQMSEEEFRQGVLKLQQLLGELNYVRHKCRYDINFAVKKVARLVNYPHERVFYMIYKIIQYLVRYKDIGIHYDRDCNKDKKVIAITDASVGSEYDAQSRIGVILWYGMNIFNVYSNKSTNRCVSSTEAELHAIYEGYADSETLKVTLKELGEGDNNDIVMITDSKPAIQGLNRSYQQPKEKFTWIKTEIIKEKIKEKSIKLLKITGKGNIADLLTKPVSASDFKRFIQVLKNKITSQDILASTDY-" + } + ], + "YPL052W": [ + { + "revision": "051216", + "new_alignment": "MYEVIQKRKTKIINVLQSPELMRLIEDPSNLGISLHFPVSSLLKSNKCTPMPKLSTYSLASGGFKDWCADIPLDVPPEIDIIDFYWDVILCMESQFILDYNVPSKNKGNNQKSVAKLLKNKLVNDMKTTLKRLIYNENTKQYKNNNSHDGYNWRKLGSQYFILYLPLFTQELIWCKLNENYFHVVLPSLLNSRNVHDNHSTYINKDWLLALLELTSNLNQNFKFEYMKLRLYILRDDLINNGLDLLKNLNWVGGKLIKNEDREVLLNSTDLATDSISHLLGDENFVILEFEC*", + "old_alignment": "-------------------------------------------------------------------------------------------MESQFILDYNVPSKNKGNNQKSVAKLLKNKLVNDMKTTLKRLIYNENTKQYKNNNSHDGYNWRKLGSQYFILYLPLFTQELIWCKLNENYFHVVLPSLLNSRNVHDNHSTYINKDWLLALLELTSNLNQNFKFEYMKLRLYILRDDLINNGLDLLKNLNWVGGKLIKNEDREVLLNSTDLATDSISHLLGDENFVILEFEC*" + } + ], + "YPR035W": [ + { + "revision": "110203", + "new_alignment": "MAEASIEKTQILQKYLELDQRGRIIAEYVWIDGTGNLRSKGRTLKKRITSIDQLPEWNFDGSSTNQAPGHDSDIYLKPVAYYPDPFRRGDNIVVLAACYNNDGTPNKFNHRHEAAKLFAAHKDEEIWFGLEQEYTLFDMYDDVYGWPKGGYPAPQGPYYCGVGAGKVYARDMIEAHYRACLYAGLEISGINAEVMPSQWEFQVGPCTGIDMGDQLWMARYFLHRVAEEFGIKISFHPKPLKGDWNGAGCHTNVSTKEMRQPGGMKYIEQAIEKLSKRHAEHIKLYGSDNDMRLTGRHETASMTAFSSGVANRGSSIRIPRSVAKEGYGYFEDRRPASNIDPYLVTGIMCETVCGAIDNADMTKEFERESS*", + "old_alignment": "MAEASIEKTQILQKYLELDQRGRIIAEYVWIDGTGNLRSKGRTLKKRITSIDQLPEWNFDGSSTNQAPGHDSDIYLKPVAYYPDPFRRGDNIVVLAACYNNDGTPNKFNHRHEAAKLFAAHKDEEIWFGLEQEYTLFDMYDDVYGWPKGGYPAPQGPYYCGVGAGKVYARDMIEAHYRACLYAGLEISGINAEVMPSQWEFQVGPCTGIDMGDQLWMARYFLHRVAEEFGIKISFHPKPLKGDWNGAGCHANVSTKEMRQPGGTKYIEQAIEKLSKRHAEHIKLYGSDNDMRLTGRHETASMTAFSSGVANRGSSIRIPRSVAKEGYGYFEDRRPASNIDPYLVTGIMCETVCGAIDNADMTKEFERESS*" + } + ], + "YPR097W": [ + { + "revision": "110203", + "new_alignment": "MITQDTPALNPTEEHYLKRELLRCQLDYEIGKLNDQFALRKFGYPFSPNDPTAPQPISNNDSSPVLGGKGHFSVNYPMLSYVLQEFISTFPLLSTNLLVDEKFWQSKVQVFFEHFMSLGFSESYDREEASKRKKVSKKLSKVILLLFNSGVGSFQEQAYYNEDKFVLQSGQARKRSNIEKFAMPTRENLENLLTNESVFINGWDVNIISVFNKNSRKCTESVDNDKSSKSTPTSSPKSHAIKSFASTSKWMKNAFNNTINSTINSMPESSASLFSKLSLGVPSTKSKQSRKHHYFLIKIKKQDDDDQDNSNEENSNLDHHAGYFYVTRTYSDFKKLSHDLKSEFPGKKCPRLPHRNKKVTSMITKTEVLHNGQTKSAAREKIVNTFDTDLQSASESDNSSFLQTTNELSATETVLTEKETETLRKNILNEIKEEDNIDEDEYEEEGEGEESDFDEYKDASDSKINTLVGEKMRTSLRQYLRTLCKDAEVSQSSSIRRFFLSGPNLDIKDINPKIADDIRNRALIDVSNLENQIRFQQMALEKSLKLQDSMKDFKTSLLKDEKYLMSLLVEIKDNTKVEDLSPLLQDFVEWCKIYISSMIYQMFLGNDNSYELYTQIRRLHKLMPYTVMGQIMKFTNPIAIMRGMIELFMAQPFGGHSLLQTMFSTILTDDLKTQKVAIKELERKIAEMDPGASVVTKCLKDFVFNNDTKDEHDTKLFTMDAVNAESESMNMPVPLIVLMKSAAANLIPDEVVAGLIESYSSWKLQKEDTDALNVTSEDQSGIYFTHVKDLWQLYIKEHDKQLMRQLWQDPELTQMLKAIVTMIYEPMVKIFKVARMDVALKNFEKFMSDLIRLVDDVINGQLGVSTQFDVVEEIHNLVTKHQDAFFEFIHDVYLNDSEGIFEGFITWITTIVKFLQKSKFGGPSERIDFNKLICRDDIDIDVKLLKVQVNNVLNKKIGARKIYKKLLDLKVKQGTKQNNKHAAGILQKNWSDINSLVMPSSSGSFGLGDGDLVDLDLDTGDYDFLHKENEVELEKQYKDLLNLVVDESEIDKLRSQVFAQELKNYLEAQIAKK*", + "old_alignment": "MITQDTPALNPTEEHYLKRELLRCQLDYEIGKLNDQFALRKFGYPFSPNDPTAPQPISNNDSSPVLGGKGHFSVNYPMLSYVLQEFISTFPLLSTNLLVDEKFWQSKVQVFFEHFMSLGFSESYDREEASKRKKVSKKLSKVILLLFNSGVGSFQEQAYYNEDKFVLQSGQARKRSNIEKFAMPTRENLENLLTNESVFINGWDVNIISVFNKNSRKCTESVDNDKSSKSTPTSSPKSHAIKSFASTSKWMKNAFNNTINSTINSMPESSASLFSKLSLGVPSTKSKQSRKHHYFLIKIKKQDDDDQDNSNEENSNLDHHAGYFYVTRTYSDFKKLSHDLKSEFPGKKCPRLPHRNKKVTSMITKTEVLHNGQTKSAAREKIVNTFDTDLQSASESDNSSFLQTTNELSATETVLTEKETETLRKNILNEIKEEDNIDEDEYEEEGEGEESDFDEYKDASDSKINTLVGEKMRTSLRQYLRTLCKDAEVSQSSSIRRFFLSGPNLDIKDINPKIADDIRNRALIDVSNLENQIRFQQMALEKSLKLQDSMKDFKTSLLKDEKYLMSLLVEIKDNTKVEDLSPLLQDFVEWCKIYISSMIYQMFLGNDNSYELYTQIRRLHKLMPYTVMGQIMKFTNPIAIMRGMIELFMAQPFGGHSLLQTMFSTILTDDLKTQKVAIKELERKIAEMDPGASVVTKCLKDFVFNNDTKDEHDTKLFTMDAVNAESESMNMPVPLIVLMKSAAANLIPDEVVAGLIESYSSWKLQKEDTDALNVTSEDQSGIYFTHVKDLWQLYIKEHDKQLMRQLWQDPELTQMLKAIVTMIYEPMVKIFKVARMDVALKNFEKFMGDLIRLVDDVINGQLGVSTQFDVVEEIHNLVTKHQDAFFEFIHDVYLNDSEGIFEGFITWITTIVKFLQKSKFGGPSERIDFNKLICRDDIDIDVKLLKVQVNNVLNKKIGARKIYKKLLDLKVKQGTKQNNKHAAGILQKNWSDINSLVMPSSSGSFGLGDGDLVDLDLDTGDYDFLHKENEVELEKQYKDLLNLVVDESEIDKLRSQVFAQELKNYLEAQIAKK*" + } + ], + "YPR121W": [ + { + "revision": "110203", + "new_alignment": "MVIILLGLCTLGFPRTAFCPSIMTNSTVSINTPPPYLTLACNEKLPTVMSIAGSDSSGGAGVEADIKTITAHRCYAMTCVTTLTAQTPVKVYGAQNIPKKMVSQILDANLQDMKCNVIKTGMLTVDAIEVLHEKLLQLGENRPKLVIDPVLCAASDSSPTGKDVVSLIIEKISPFADILTPNISDCFMLLGENREVSKLQDVLEIAKDLSRITNCSNILVKGGHIPCDDGKEKHITDVLYLGAEQKFITFKGQFVNTTRTHGAGCTLASAIASNLARGYSLSQSVYGGIEYVQNAIAIGCDVTKKAVKVGPINHVYAVEIPLEKMLTDECFTASDAVPKKPIEGSLDKIPGGSFFNYLINHPKVKPHWDAYVNHEFVKRVADGTLERKKFQFFIEQDYLYLIDYVRVCCVTGSKSPTLEDLEKDLVIADCARNELNEHERRLREEFGVKDPDYLQKIKRGPALRAYCRYLIDISRRGNWQEIVVALNPCLMGYVYAVDKVKDKITAAEGSIYSEWCDTCASSFCYQAVLEGERLMNHILETYPPDQLDSLVTIFARGCELETNFWTAAMEYE*", + "old_alignment": "MVIILLGLCTLGFPRTAFCPSIMTNSTVSINTPPPYLTLACNEKLPTVMSIAGSDSSGGAGVEADIKTITAHRCYAMTCVTTLTAQTPVKVYGAHNIPKKMVSQILDANLQDMKCNVIKTGMLTVDAIEVLHEKLLQLGENRPKLVIDPVLCAASDSSPTGKDVVSLIIEKISPFADILTPNISDCFMLLGENREVSKLQDVLEIAKDLSRITNCSNILVKGGHIPCDDGKEKHITDVLYLGAEQKFITFKGQFVNTTRTHGAGCTLASAIASNLARGYSLSQSVYGGIEYVQNAIAIGCDVTKKAVKVGPINHVYAVEIPLEKMLTDECFTASDAVPKKPIEGSLDKIPGGSFFNYLINHPKVKPHWDAYVNHEFVKRVADGTLERKKFQFFIEQDYLYLIDYVRVCCVTGSKSPTLEDLEKDLVIADCARNELNEHERRLREEFGVKDPDYLQKIKRGPALRAYCRYLIDISRRGNWQEIVVALNPCLMGYVYAVDKVKDKITAAEGSIYSEWCDTCASSFCYQAVLEGERLMNHILETYPPDQLDSLVTIFARGCELETNFWTAAMEYE*" + } + ], + "YPR153W": [ + { + "revision": "070713", + "new_alignment": "M----RSFVTNNDIPVGYVTPKFPSLYWPINNSKYNTAFLYYISDIWKFSLYWTLIFNGAFYVTAGVYASLTHRKKAGSVWIFVMYVLYGGVQGLTTGTVMGFLIGAIYRSGLFSMSTWVPLCCAVVQILFDVVLSYSMVGSVM*", + "old_alignment": "MFPVLRSFVTNNDIPVGYVTPKFPSLYWPINNSKYNTAFLYYISDIWKFSLYWTLIFNGAFYVTAGVYASLTHRKKAGSVWIFVMYVLYGGVQGLTTGTVMGFLIGAIYRSGLFSMSTWVPLCCAVVQILFDVVLSYSMVGSVM*" + } + ], + "YPR169W": [ + { + "revision": "051202", + "new_alignment": "----------------------MAKSKKKTDVVDSTNLPILELLSLKAPIFQSLLHPELPIIITGFGTGHIVCHRYDPAKLQSHLDRRRRIDTATTGKDAKKGVCPWIRLDIDLETGDLKFVDIEEQQQQKQTGKDEDLGVKTLWKTKRHKGSVRAMCFDSKGDNIFSVGSDNVLKKANTMTGKVVKKVNLSSLFNSEEKKNDKFTKLCASQTHPFILIGDESGNIHVINSENLALSNSIRSIHFGDSINDIFHFDKRSAYKFISLGQTTLAYFDVRDKDAKPNVAGNEDGKILISDDQEDEVLCGCFVDPEVADTLLCGMGEGIVTVWKPNKNDLEDQMSRIKISKDESIDCIVPTLQDDNCVWCGCSNGNIYKVNAKLGKVVEIRNHSELDEVSFVDLDFEYRVVSGGLENIKIWELSSDDVEENASVESDSDEPLSHSDEDLSDDTSSDDETTLVGLSKEELLDELDKDLKEDHQEEKESNSKSVKKRKIMKENNKKKDLYEHGIKKFDDL*", + "old_alignment": "MASSPQLEEEAAGKLETIHASAMAKSKKKTDVVDSTNLPILELLSLKAPIFQSLLHPELPIIITGFGTGHIVCHRYDPAKLQSHLDRRRRIDTATTGKDAKKGVCPWIRLDIDLETGDLKFVDIEEQQQQKQTGKDEDLGVKTLWKTKRHKGSVRAMCFDSKGDNIFSVGSDNVLKKANTMTGKVVKKVNLSSLFNSEEKKNDKFTKLCASQTHPFILIGDESGNIHVINSENLALSNSIRSIHFGDSINDIFHFDKRSAYKFISLGQTTLAYFDVRDKDAKPNVAGNEDGKILISDDQEDEVLCGCFVDPEVADTLLCGMGEGIVTVWKPNKNDLEDQMSRIKISKDESIDCIVPTLQDDNCVWCGCSNGNIYKVNAKLGKVVEIRNHSELDEVSFVDLDFEYRVVSGGLENIKIWELSSDDVEENASVESDSDEPLSHSDEDLSDDTSSDDETTLVGLSKEELLDELDKDLKEDHQEEKESNSKSVKKRKIMKENNKKKDLYEHGIKKFDDL*" + } + ], + "Q0060": [ + { + "revision": "060113", + "new_alignment": "MVQRWLYSTNAKDIAVLYFMLAIFSGMAGTAMSLIIRLELAAPGSQYLHGNSQLFNVLVVGHAVLMIFFLVMPALIGGFGNQKRYESNNNNNQVMENKEYNLKLNYDKLGPYLAGLIEGDGTITVQNSSSMKKSKYRPLIVVVFKLEDLELANYLCNLTKCGKVYKKINRNYVLWTIHDLKGVYTLLNIINGYMRTPKYEAFVRGAEFMNNYINSTTITHNKLKNMDNIKIKPLDTSDIGSNAWLAGMTDADGNFSINLMNGKNRSSRAMPYYCLELRQNYQKNSNNNNINFSYFYIMSAIATYFNVNLYSRERNLNLLVSTNNTYKTYYSYKVMVANTYKNIKVMEYFNKYSLLSSKHLDFLDWSKLVILINNEGQSMKTNGSWELGMNLRKDYNKTRTTFTWSHLKNTYLENK*", + "old_alignment": "MVQRWLYSTNAKDIAVLYFMLAIFSGMAGTAMSLIIRLELAAPGSQYLHGNSQLFNV------------LVMPALIGGFGNQKRYESNNNNNQVMENKEYNLKLNYDKLGPYLAGLIEGDGTITVQNSSSMKKSKYRPLIVVVFKLEDLELANYLCNLTKCGKVYKKINRNYVLWTIHDLKGVYTLLNIINGYMRTPKYEAFVRGAEFMNNYINSTTITHNKLKNMDNIKIKPLDTSDIGSNAWLAGMTDADGNFSINLMNGKNRSSRAMPYYCLELRQNYQKNSNNNNINFSYFYIMSAIATYFNVNLYSRERNLNLLVSTNNTYKTYYSYKVMVANTYKNIKVMEYFNKYSLLSSKHLDFLDWSKLVILINNEGQSMKTNGSWELGMNLRKDYNKTRTTFTWSHLKNTYLENK*" + } + ], + "Q0065": [ + { + "revision": "060113", + "new_alignment": "MVQRWLYSTNAKDIAVLYFMLAIFSGMAGTAMSLIIRLELAAPGSQYLHGNSQLFNVLVVGHAVLMIFFLVMPALIGGFGNYLLPLMIGATDTAFPRINNIAFWVLPMGLVCLVTSTLVESGAGTGWTVYPPLSSIQAHSGPSVDLAIFALHLTSISSLLGAINFIVTTLNMRTNGMTMHKLPLFVWSIFITAFLLLLSLPVLSAGITMLLLDRNFNTSFFEVSGGGDPILYEHLFWFFGQTVATIIMLMMYNDMHFSKCWKLLKKWITNIMSTLFKALFVKMFMSYNNQQDKMMNNTMLKKDNIKRSSETTRKMLNNSMNKKFNQWLAGLIDGDGYFGIVSKKYVSLEITVALEDEMALKEIQNKFGGSIKLRSGVKAIRYRLTNKTGMIKLINAVNGNIRNTKRLVQFNKVCILLGIDFIYPIKLTKDNSWFVGFFDADGTINYSFKNNHPQLTISVTNKYLQDVQEYKNILGGNIYFDKSQNGYYKWSIQSKDMVLNFINDYIKMNPSRTTKMNKLYLSKEFYNLKELKAYNKSSDSMQYKAWLNFENKWKNK*", + "old_alignment": "MVQRWLYSTNAKDIAVLYFMLAIFSGMAGTAMSLIIRLELAAPGSQYLHGNSQLFNV------------LVMPALIGGFGNYLLPLMIGATDTAFPRINNIAFWVLPMGLVCLVTSTLVESGAGTGWTVYPPLSSIQAHSGPSVDLAIFALHLTSISSLLGAINFIVTTLNMRTNGMTMHKLPLFVWSIFITAFLLLLSLPVLSAGITMLLLDRNFNTSFFEVSGGGDPILYEHLFWFFGQTVATIIMLMMYNDMHFSKCWKLLKKWITNIMSTLFKALFVKMFMSYNNQQDKMMNNTMLKKDNIKRSSETTRKMLNNSMNKKFNQWLAGLIDGDGYFGIVSKKYVSLEITVALEDEMALKEIQNKFGGSIKLRSGVKAIRYRLTNKTGMIKLINAVNGNIRNTKRLVQFNKVCILLGIDFIYPIKLTKDNSWFVGFFDADGTINYSFKNNHPQLTISVTNKYLQDVQEYKNILGGNIYFDKSQNGYYKWSIQSKDMVLNFINDYIKMNPSRTTKMNKLYLSKEFYNLKELKAYNKSSDSMQYKAWLNFENKWKNK*" + } + ] +} \ No newline at end of file diff --git a/data/sgd/features.gtf b/data/sgd/features.gtf new file mode 100644 index 0000000..c870f33 --- /dev/null +++ b/data/sgd/features.gtf @@ -0,0 +1,30898 @@ +chrI SGD gene 335 649 . + . gene_id "YAL069W"; gene_biotype "protein_coding"; +chrI SGD transcript 335 649 . + . transcript_id "YAL069W_mRNA"; gene_id "YAL069W"; transcript_biotype "protein_coding"; +chrI SGD CDS 335 649 . + 0 transcript_id "YAL069W_mRNA"; gene_id "YAL069W"; +chrI SGD gene 538 792 . + . gene_id "YAL068W-A"; gene_biotype "protein_coding"; +chrI SGD transcript 538 792 . + . transcript_id "YAL068W-A_mRNA"; gene_id "YAL068W-A"; transcript_biotype "protein_coding"; +chrI SGD CDS 538 792 . + 0 transcript_id "YAL068W-A_mRNA"; gene_id "YAL068W-A"; +chrI SGD gene 1807 2169 . - . gene_id "YAL068C"; gene_biotype "protein_coding"; +chrI SGD transcript 1807 2169 . - . transcript_id "YAL068C_mRNA"; gene_id "YAL068C"; gene_name "PAU8"; transcript_biotype "protein_coding"; +chrI SGD CDS 1807 2169 . - 0 transcript_id "YAL068C_mRNA"; gene_name "PAU8"; gene_id "YAL068C"; +chrI SGD gene 2480 2707 . + . gene_id "YAL067W-A"; gene_biotype "protein_coding"; +chrI SGD transcript 2480 2707 . + . transcript_id "YAL067W-A_mRNA"; gene_id "YAL067W-A"; transcript_biotype "protein_coding"; +chrI SGD CDS 2480 2707 . + 0 transcript_id "YAL067W-A_mRNA"; gene_id "YAL067W-A"; +chrI SGD gene 7235 9016 . - . gene_id "YAL067C"; gene_biotype "protein_coding"; +chrI SGD transcript 7235 9016 . - . transcript_id "YAL067C_id001"; gene_id "YAL067C"; gene_name "SEO1"; transcript_biotype "protein_coding"; +chrI SGD exon 7235 9016 . - 0 transcript_id "YAL067C_id001"; gene_name "SEO1"; gene_id "YAL067C"; +chrI SGD gene 10091 10399 . + . gene_id "YAL066W"; gene_biotype "protein_coding"; +chrI SGD transcript 10091 10399 . + . transcript_id "YAL066W_id001"; gene_id "YAL066W"; transcript_biotype "protein_coding"; +chrI SGD exon 10091 10399 . + 0 transcript_id "YAL066W_id001"; gene_id "YAL066W"; +chrI SGD gene 11565 11951 . - . gene_id "YAL065C"; gene_biotype "protein_coding"; +chrI SGD transcript 11565 11951 . - . transcript_id "YAL065C_mRNA"; gene_id "YAL065C"; transcript_biotype "protein_coding"; +chrI SGD CDS 11565 11951 . - 0 transcript_id "YAL065C_mRNA"; gene_id "YAL065C"; +chrI SGD gene 12046 12426 . + . gene_id "YAL064W-B"; gene_biotype "protein_coding"; +chrI SGD transcript 12046 12426 . + . transcript_id "YAL064W-B_id001"; gene_id "YAL064W-B"; transcript_biotype "protein_coding"; +chrI SGD exon 12046 12426 . + 0 transcript_id "YAL064W-B_id001"; gene_id "YAL064W-B"; +chrI SGD gene 13363 13743 . - . gene_id "YAL064C-A"; gene_biotype "protein_coding"; +chrI SGD transcript 13363 13743 . - . transcript_id "YAL064C-A_mRNA"; gene_id "YAL064C-A"; gene_name "TDA8"; transcript_biotype "protein_coding"; +chrI SGD CDS 13363 13743 . - 0 transcript_id "YAL064C-A_mRNA"; gene_name "TDA8"; gene_id "YAL064C-A"; +chrI SGD gene 21566 21850 . + . gene_id "YAL064W"; gene_biotype "protein_coding"; +chrI SGD transcript 21566 21850 . + . transcript_id "YAL064W_mRNA"; gene_id "YAL064W"; transcript_biotype "protein_coding"; +chrI SGD CDS 21566 21850 . + 0 transcript_id "YAL064W_mRNA"; gene_id "YAL064W"; +chrI SGD gene 22051 23617 . - . gene_id "YAL063C-A"; gene_biotype "protein_coding"; +chrI SGD transcript 22051 23617 . - . transcript_id "YAL063C-A_id001"; gene_id "YAL063C-A"; transcript_biotype "protein_coding"; +chrI SGD exon 22051 23617 . - . transcript_id "YAL063C-A_id001"; gene_id "YAL063C-A"; +chrI SGD transcript 22395 22685 . - . transcript_id "YAL063C-A_id006"; gene_id "YAL063C-A"; transcript_biotype "protein_coding"; +chrI SGD exon 22395 22685 . - 0 transcript_id "YAL063C-A_id006"; gene_id "YAL063C-A"; +chrI SGD gene 24000 27968 . - . gene_id "YAL063C"; gene_biotype "protein_coding"; +chrI SGD transcript 24000 27968 . - . transcript_id "YAL063C_mRNA"; gene_id "YAL063C"; gene_name "FLO9"; transcript_biotype "protein_coding"; +chrI SGD CDS 24000 27968 . - 0 transcript_id "YAL063C_mRNA"; gene_name "FLO9"; gene_id "YAL063C"; +chrI SGD gene 31527 33039 . + . gene_id "YAL062W"; gene_biotype "protein_coding"; +chrI SGD transcript 31527 33039 . + . transcript_id "YAL062W_id001"; gene_id "YAL062W"; gene_name "GDH3"; transcript_biotype "protein_coding"; +chrI SGD exon 31527 33039 . + . transcript_id "YAL062W_id001"; gene_id "YAL062W"; gene_name "GDH3"; +chrI SGD transcript 31567 32940 . + . transcript_id "YAL062W_id003"; gene_id "YAL062W"; gene_name "GDH3"; transcript_biotype "protein_coding"; +chrI SGD exon 31567 32940 . + 0 transcript_id "YAL062W_id003"; gene_name "GDH3"; gene_id "YAL062W"; +chrI SGD gene 33345 35018 . + . gene_id "YAL061W"; gene_biotype "protein_coding"; +chrI SGD transcript 33345 35018 . + . transcript_id "YAL061W_id003"; gene_id "YAL061W"; gene_name "BDH2"; transcript_biotype "protein_coding"; +chrI SGD exon 33345 35018 . + . transcript_id "YAL061W_id003"; gene_id "YAL061W"; gene_name "BDH2"; +chrI SGD transcript 33448 34701 . + . transcript_id "YAL061W_id001"; gene_id "YAL061W"; gene_name "BDH2"; transcript_biotype "protein_coding"; +chrI SGD exon 33448 34701 . + 0 transcript_id "YAL061W_id001"; gene_name "BDH2"; gene_id "YAL061W"; +chrI SGD gene 35107 36433 . + . gene_id "YAL060W"; gene_biotype "protein_coding"; +chrI SGD transcript 35107 36433 . + . transcript_id "YAL060W_id014"; gene_id "YAL060W"; gene_name "BDH1"; transcript_biotype "protein_coding"; +chrI SGD exon 35107 36433 . + . transcript_id "YAL060W_id014"; gene_id "YAL060W"; gene_name "BDH1"; +chrI SGD transcript 35155 36303 . + . transcript_id "YAL060W_id001"; gene_id "YAL060W"; gene_name "BDH1"; transcript_biotype "protein_coding"; +chrI SGD exon 35155 36303 . + 0 transcript_id "YAL060W_id001"; gene_name "BDH1"; gene_id "YAL060W"; +chrI SGD gene 36466 37344 . + . gene_id "YAL059W"; gene_biotype "protein_coding"; +chrI SGD transcript 36466 37344 . + . transcript_id "YAL059W_id002"; gene_id "YAL059W"; gene_name "ECM1"; transcript_biotype "protein_coding"; +chrI SGD exon 36466 37344 . + . transcript_id "YAL059W_id002"; gene_id "YAL059W"; gene_name "ECM1"; +chrI SGD gene 36496 36918 . - . gene_id "YAL059C-A"; gene_biotype "protein_coding"; +chrI SGD transcript 36496 36918 . - . transcript_id "YAL059C-A_mRNA"; gene_id "YAL059C-A"; transcript_biotype "protein_coding"; +chrI SGD CDS 36496 36918 . - 0 transcript_id "YAL059C-A_mRNA"; gene_id "YAL059C-A"; +chrI SGD transcript 36509 37147 . + . transcript_id "YAL059W_id001"; gene_id "YAL059W"; gene_name "ECM1"; transcript_biotype "protein_coding"; +chrI SGD exon 36509 37147 . + 0 transcript_id "YAL059W_id001"; gene_name "ECM1"; gene_id "YAL059W"; +chrI SGD gene 37405 39163 . + . gene_id "YAL058W"; gene_biotype "protein_coding"; +chrI SGD transcript 37405 39163 . + . transcript_id "YAL058W_id001"; gene_id "YAL058W"; gene_name "CNE1"; transcript_biotype "protein_coding"; +chrI SGD exon 37405 39163 . + . transcript_id "YAL058W_id001"; gene_id "YAL058W"; gene_name "CNE1"; +chrI SGD transcript 37464 38972 . + . transcript_id "YAL058W_id003"; gene_id "YAL058W"; gene_name "CNE1"; transcript_biotype "protein_coding"; +chrI SGD exon 37464 38972 . + 0 transcript_id "YAL058W_id003"; gene_name "CNE1"; gene_id "YAL058W"; +chrI SGD gene 38696 39046 . - . gene_id "YAL056C-A"; gene_biotype "protein_coding"; +chrI SGD transcript 38696 39046 . - . transcript_id "YAL056C-A_mRNA"; gene_id "YAL056C-A"; transcript_biotype "protein_coding"; +chrI SGD CDS 38696 39046 . - 0 transcript_id "YAL056C-A_mRNA"; gene_id "YAL056C-A"; +chrI SGD gene 39234 42040 . + . gene_id "YAL056W"; gene_biotype "protein_coding"; +chrI SGD transcript 39234 42040 . + . transcript_id "YAL056W_id006"; gene_id "YAL056W"; gene_name "GPB2"; transcript_biotype "protein_coding"; +chrI SGD exon 39234 42040 . + . transcript_id "YAL056W_id006"; gene_id "YAL056W"; gene_name "GPB2"; +chrI SGD transcript 39259 41901 . + . transcript_id "YAL056W_id001"; gene_id "YAL056W"; gene_name "GPB2"; transcript_biotype "protein_coding"; +chrI SGD exon 39259 41901 . + 0 transcript_id "YAL056W_id001"; gene_name "GPB2"; gene_id "YAL056W"; +chrI SGD gene 42142 42838 . + . gene_id "YAL055W"; gene_biotype "protein_coding"; +chrI SGD transcript 42142 42838 . + . transcript_id "YAL055W_id003"; gene_id "YAL055W"; gene_name "PEX22"; transcript_biotype "protein_coding"; +chrI SGD exon 42142 42838 . + . transcript_id "YAL055W_id003"; gene_id "YAL055W"; gene_name "PEX22"; +chrI SGD transcript 42177 42719 . + . transcript_id "YAL055W_id001"; gene_id "YAL055W"; gene_name "PEX22"; transcript_biotype "protein_coding"; +chrI SGD exon 42177 42719 . + 0 transcript_id "YAL055W_id001"; gene_name "PEX22"; gene_id "YAL055W"; +chrI SGD gene 42881 45022 . - . gene_id "YAL054C"; gene_biotype "protein_coding"; +chrI SGD transcript 42881 45022 . - . transcript_id "YAL054C_id001"; gene_id "YAL054C"; gene_name "ACS1"; transcript_biotype "protein_coding"; +chrI SGD exon 42881 45022 . - 0 transcript_id "YAL054C_id001"; gene_name "ACS1"; gene_id "YAL054C"; +chrI SGD gene 45728 48310 . + . gene_id "YAL053W"; gene_biotype "protein_coding"; +chrI SGD transcript 45728 48310 . + . transcript_id "YAL053W_id003"; gene_id "YAL053W"; gene_name "FLC2"; transcript_biotype "protein_coding"; +chrI SGD exon 45728 48310 . + . transcript_id "YAL053W_id003"; gene_id "YAL053W"; gene_name "FLC2"; +chrI SGD transcript 45899 48250 . + . transcript_id "YAL053W_id001"; gene_id "YAL053W"; gene_name "FLC2"; transcript_biotype "protein_coding"; +chrI SGD exon 45899 48250 . + 0 transcript_id "YAL053W_id001"; gene_name "FLC2"; gene_id "YAL053W"; +chrI SGD gene 48564 51707 . + . gene_id "YAL051W"; gene_biotype "protein_coding"; +chrI SGD transcript 48564 51707 . + . transcript_id "YAL051W_mRNA"; gene_id "YAL051W"; gene_name "OAF1"; transcript_biotype "protein_coding"; +chrI SGD CDS 48564 51707 . + 0 transcript_id "YAL051W_mRNA"; gene_name "OAF1"; gene_id "YAL051W"; +chrI SGD gene 51691 54082 . - . gene_id "YAL049C"; gene_biotype "protein_coding"; +chrI SGD transcript 51691 54082 . - . transcript_id "YAL049C_id001"; gene_id "YAL049C"; gene_name "AIM2"; transcript_biotype "protein_coding"; +chrI SGD exon 51691 54082 . - . transcript_id "YAL049C_id001"; gene_id "YAL049C"; gene_name "AIM2"; +chrI SGD transcript 51855 52595 . - . transcript_id "YAL049C_id002"; gene_id "YAL049C"; gene_name "AIM2"; transcript_biotype "protein_coding"; +chrI SGD exon 51855 52595 . - 0 transcript_id "YAL049C_id002"; gene_name "AIM2"; gene_id "YAL049C"; +chrI SGD gene 52801 54789 . - . gene_id "YAL048C"; gene_biotype "protein_coding"; +chrI SGD transcript 52801 54789 . - . transcript_id "YAL048C_mRNA"; gene_id "YAL048C"; gene_name "GEM1"; transcript_biotype "protein_coding"; +chrI SGD CDS 52801 54789 . - 0 transcript_id "YAL048C_mRNA"; gene_name "GEM1"; gene_id "YAL048C"; +chrI SGD gene 54209 55063 . + . gene_id "YAL047W-A"; gene_biotype "protein_coding"; +chrI SGD transcript 54209 55063 . + . transcript_id "YAL047W-A_id001"; gene_id "YAL047W-A"; transcript_biotype "protein_coding"; +chrI SGD exon 54209 55063 . + . transcript_id "YAL047W-A_id001"; gene_id "YAL047W-A"; +chrI SGD transcript 54584 54913 . + . transcript_id "YAL047W-A_id002"; gene_id "YAL047W-A"; transcript_biotype "protein_coding"; +chrI SGD exon 54584 54913 . + 0 transcript_id "YAL047W-A_id002"; gene_id "YAL047W-A"; +chrI SGD gene 54931 56886 . - . gene_id "YAL047C"; gene_biotype "protein_coding"; +chrI SGD transcript 54931 56886 . - . transcript_id "YAL047C_id001"; gene_id "YAL047C"; gene_name "SPC72"; transcript_biotype "protein_coding"; +chrI SGD exon 54931 56886 . - . transcript_id "YAL047C_id001"; gene_id "YAL047C"; gene_name "SPC72"; +chrI SGD transcript 54989 56857 . - . transcript_id "YAL047C_id002"; gene_id "YAL047C"; gene_name "SPC72"; transcript_biotype "protein_coding"; +chrI SGD exon 54989 56857 . - 0 transcript_id "YAL047C_id002"; gene_name "SPC72"; gene_id "YAL047C"; +chrI SGD gene 56907 57544 . - . gene_id "YAL046C"; gene_biotype "protein_coding"; +chrI SGD transcript 56907 57544 . - . transcript_id "YAL046C_id001"; gene_id "YAL046C"; gene_name "BOL3"; transcript_biotype "protein_coding"; +chrI SGD exon 56907 57544 . - . transcript_id "YAL046C_id001"; gene_id "YAL046C"; gene_name "BOL3"; +chrI SGD gene 56973 57958 . + . gene_id "YAL044W-A"; gene_biotype "protein_coding"; +chrI SGD transcript 56973 57958 . + . transcript_id "YAL044W-A_id004"; gene_id "YAL044W-A"; gene_name "BOL1"; transcript_biotype "protein_coding"; +chrI SGD exon 56973 57958 . + . transcript_id "YAL044W-A_id004"; gene_id "YAL044W-A"; gene_name "BOL1"; +chrI SGD transcript 57029 57385 . - . transcript_id "YAL046C_id002"; gene_id "YAL046C"; gene_name "BOL3"; transcript_biotype "protein_coding"; +chrI SGD exon 57029 57385 . - 0 transcript_id "YAL046C_id002"; gene_name "BOL3"; gene_id "YAL046C"; +chrI SGD gene 57488 57796 . - . gene_id "YAL045C"; gene_biotype "protein_coding"; +chrI SGD transcript 57488 57796 . - . transcript_id "YAL045C_mRNA"; gene_id "YAL045C"; transcript_biotype "protein_coding"; +chrI SGD CDS 57488 57796 . - 0 transcript_id "YAL045C_mRNA"; gene_id "YAL045C"; +chrI SGD transcript 57518 57850 . + . transcript_id "YAL044W-A_id001"; gene_id "YAL044W-A"; gene_name "BOL1"; transcript_biotype "protein_coding"; +chrI SGD exon 57518 57850 . + 0 transcript_id "YAL044W-A_id001"; gene_name "BOL1"; gene_id "YAL044W-A"; +chrI SGD gene 57756 58476 . - . gene_id "YAL044C"; gene_biotype "protein_coding"; +chrI SGD transcript 57756 58476 . - . transcript_id "YAL044C_id002"; gene_id "YAL044C"; gene_name "GCV3"; transcript_biotype "protein_coding"; +chrI SGD exon 57756 58476 . - . transcript_id "YAL044C_id002"; gene_id "YAL044C"; gene_name "GCV3"; +chrI SGD transcript 57950 58462 . - . transcript_id "YAL044C_id001"; gene_id "YAL044C"; gene_name "GCV3"; transcript_biotype "protein_coding"; +chrI SGD exon 57950 58462 . - 0 transcript_id "YAL044C_id001"; gene_name "GCV3"; gene_id "YAL044C"; +chrI SGD gene 58499 61068 . - . gene_id "YAL043C"; gene_biotype "protein_coding"; +chrI SGD transcript 58499 61068 . - . transcript_id "YAL043C_id001"; gene_id "YAL043C"; gene_name "PTA1"; transcript_biotype "protein_coding"; +chrI SGD exon 58499 61068 . - . transcript_id "YAL043C_id001"; gene_id "YAL043C"; gene_name "PTA1"; +chrI SGD transcript 58695 61052 . - . transcript_id "YAL043C_id002"; gene_id "YAL043C"; gene_name "PTA1"; transcript_biotype "protein_coding"; +chrI SGD exon 58695 61052 . - 0 transcript_id "YAL043C_id002"; gene_name "PTA1"; gene_id "YAL043C"; +chrI SGD gene 61231 61608 . - . gene_id "YAL042C-A"; gene_biotype "protein_coding"; +chrI SGD transcript 61231 61608 . - . transcript_id "YAL042C-A_mRNA"; gene_id "YAL042C-A"; transcript_biotype "protein_coding"; +chrI SGD CDS 61231 61608 . - 0 transcript_id "YAL042C-A_mRNA"; gene_id "YAL042C-A"; +chrI SGD gene 61269 62680 . + . gene_id "YAL042W"; gene_biotype "protein_coding"; +chrI SGD transcript 61269 62680 . + . transcript_id "YAL042W_id001"; gene_id "YAL042W"; gene_name "ERV46"; transcript_biotype "protein_coding"; +chrI SGD exon 61269 62680 . + . transcript_id "YAL042W_id001"; gene_id "YAL042W"; gene_name "ERV46"; +chrI SGD transcript 61316 62563 . + . transcript_id "YAL042W_id005"; gene_id "YAL042W"; gene_name "ERV46"; transcript_biotype "protein_coding"; +chrI SGD exon 61316 62563 . + 0 transcript_id "YAL042W_id005"; gene_name "ERV46"; gene_id "YAL042W"; +chrI SGD gene 62773 65463 . + . gene_id "YAL041W"; gene_biotype "protein_coding"; +chrI SGD transcript 62773 65463 . + . transcript_id "YAL041W_id003"; gene_id "YAL041W"; gene_name "CDC24"; transcript_biotype "protein_coding"; +chrI SGD exon 62773 65463 . + . transcript_id "YAL041W_id003"; gene_id "YAL041W"; gene_name "CDC24"; +chrI SGD transcript 62840 65404 . + . transcript_id "YAL041W_id001"; gene_id "YAL041W"; gene_name "CDC24"; transcript_biotype "protein_coding"; +chrI SGD exon 62840 65404 . + 0 transcript_id "YAL041W_id001"; gene_name "CDC24"; gene_id "YAL041W"; +chrI SGD gene 65596 67848 . - . gene_id "YAL040C"; gene_biotype "protein_coding"; +chrI SGD transcript 65596 67848 . - . transcript_id "YAL040C_id003"; gene_id "YAL040C"; gene_name "CLN3"; transcript_biotype "protein_coding"; +chrI SGD exon 65596 67848 . - . transcript_id "YAL040C_id003"; gene_id "YAL040C"; gene_name "CLN3"; +chrI SGD transcript 65778 67836 . - . transcript_id "YAL040C_id001"; gene_id "YAL040C"; gene_name "CLN3"; transcript_biotype "protein_coding"; +chrI SGD exon 65778 67520 . - . transcript_id "YAL040C_id001"; gene_name "CLN3"; gene_id "YAL040C"; +chrI SGD exon 67825 67836 . - . transcript_id "YAL040C_id001"; gene_name "CLN3"; gene_id "YAL040C"; +chrI SGD exon 65778 67520 . - 0 transcript_id "YAL040C_id001"; gene_name "CLN3"; gene_id "YAL040C"; +chrI SGD gene 68629 69642 . - . gene_id "YAL039C"; gene_biotype "protein_coding"; +chrI SGD transcript 68629 69642 . - . transcript_id "YAL039C_id002"; gene_id "YAL039C"; gene_name "CYC3"; transcript_biotype "protein_coding"; +chrI SGD exon 68629 69642 . - . transcript_id "YAL039C_id002"; gene_id "YAL039C"; gene_name "CYC3"; +chrI SGD transcript 68716 69525 . - . transcript_id "YAL039C_id001"; gene_id "YAL039C"; gene_name "CYC3"; transcript_biotype "protein_coding"; +chrI SGD exon 68716 69525 . - 0 transcript_id "YAL039C_id001"; gene_name "CYC3"; gene_id "YAL039C"; +chrI SGD gene 71644 73448 . + . gene_id "YAL038W"; gene_biotype "protein_coding"; +chrI SGD transcript 71644 73448 . + . transcript_id "YAL038W_id004"; gene_id "YAL038W"; gene_name "CDC19"; transcript_biotype "protein_coding"; +chrI SGD exon 71644 73448 . + . transcript_id "YAL038W_id004"; gene_id "YAL038W"; gene_name "CDC19"; +chrI SGD transcript 71786 73288 . + . transcript_id "YAL038W_id001"; gene_id "YAL038W"; gene_name "CDC19"; transcript_biotype "protein_coding"; +chrI SGD exon 71786 73288 . + 0 transcript_id "YAL038W_id001"; gene_name "CDC19"; gene_id "YAL038W"; +chrI SGD gene 72326 73300 . - . gene_id "YAL037C-B"; gene_biotype "protein_coding"; +chrI SGD transcript 72326 73300 . - . transcript_id "YAL037C-B_mRNA"; gene_id "YAL037C-B"; transcript_biotype "protein_coding"; +chrI SGD CDS 72326 73300 . - 0 transcript_id "YAL037C-B_mRNA"; gene_id "YAL037C-B"; +chrI SGD gene 73426 73518 . - . gene_id "YAL037C-A"; gene_biotype "protein_coding"; +chrI SGD transcript 73426 73518 . - . transcript_id "YAL037C-A_id001"; gene_id "YAL037C-A"; transcript_biotype "protein_coding"; +chrI SGD exon 73426 73518 . - 0 transcript_id "YAL037C-A_id001"; gene_id "YAL037C-A"; +chrI SGD gene 73453 76400 . + . gene_id "YAL037W"; gene_biotype "protein_coding"; +chrI SGD transcript 73453 76400 . + . transcript_id "YAL037W_id001"; gene_id "YAL037W"; transcript_biotype "protein_coding"; +chrI SGD exon 73453 76400 . + . transcript_id "YAL037W_id001"; gene_id "YAL037W"; +chrI SGD transcript 74020 74823 . + . transcript_id "YAL037W_id002"; gene_id "YAL037W"; transcript_biotype "protein_coding"; +chrI SGD exon 74020 74823 . + 0 transcript_id "YAL037W_id002"; gene_id "YAL037W"; +chrI SGD gene 74778 76207 . - . gene_id "YAL036C"; gene_biotype "protein_coding"; +chrI SGD transcript 74778 76207 . - . transcript_id "YAL036C_id004"; gene_id "YAL036C"; gene_name "RBG1"; transcript_biotype "protein_coding"; +chrI SGD exon 74778 76207 . - . transcript_id "YAL036C_id004"; gene_id "YAL036C"; gene_name "RBG1"; +chrI SGD transcript 75043 76152 . - . transcript_id "YAL036C_id001"; gene_id "YAL036C"; gene_name "RBG1"; transcript_biotype "protein_coding"; +chrI SGD exon 75043 76152 . - 0 transcript_id "YAL036C_id001"; gene_name "RBG1"; gene_id "YAL036C"; +chrI SGD gene 76365 79559 . + . gene_id "YAL035W"; gene_biotype "protein_coding"; +chrI SGD transcript 76365 79559 . + . transcript_id "YAL035W_id001"; gene_id "YAL035W"; gene_name "FUN12"; transcript_biotype "protein_coding"; +chrI SGD exon 76365 79559 . + . transcript_id "YAL035W_id001"; gene_id "YAL035W"; gene_name "FUN12"; +chrI SGD transcript 76427 79435 . + . transcript_id "YAL035W_id002"; gene_id "YAL035W"; gene_name "FUN12"; transcript_biotype "protein_coding"; +chrI SGD exon 76427 79435 . + 0 transcript_id "YAL035W_id002"; gene_name "FUN12"; gene_id "YAL035W"; +chrI SGD gene 79489 79842 . - . gene_id "YAL034C-B"; gene_biotype "protein_coding"; +chrI SGD transcript 79489 79842 . - . transcript_id "YAL034C-B_id001"; gene_id "YAL034C-B"; transcript_biotype "protein_coding"; +chrI SGD exon 79489 79842 . - 0 transcript_id "YAL034C-B_id001"; gene_id "YAL034C-B"; +chrI SGD gene 79674 80744 . + . gene_id "YAL034W-A"; gene_biotype "protein_coding"; +chrI SGD transcript 79674 80744 . + . transcript_id "YAL034W-A_id001"; gene_id "YAL034W-A"; gene_name "MTW1"; transcript_biotype "protein_coding"; +chrI SGD exon 79674 80744 . + . transcript_id "YAL034W-A_id001"; gene_id "YAL034W-A"; gene_name "MTW1"; +chrI SGD transcript 79718 80587 . + . transcript_id "YAL034W-A_id002"; gene_id "YAL034W-A"; gene_name "MTW1"; transcript_biotype "protein_coding"; +chrI SGD exon 79718 80587 . + 0 transcript_id "YAL034W-A_id002"; gene_name "MTW1"; gene_id "YAL034W-A"; +chrI SGD gene 80549 82586 . - . gene_id "YAL034C"; gene_biotype "protein_coding"; +chrI SGD transcript 80549 82586 . - . transcript_id "YAL034C_id002"; gene_id "YAL034C"; gene_name "FUN19"; transcript_biotype "protein_coding"; +chrI SGD exon 80549 82586 . - . transcript_id "YAL034C_id002"; gene_id "YAL034C"; gene_name "FUN19"; +chrI SGD transcript 80710 81951 . - . transcript_id "YAL034C_id001"; gene_id "YAL034C"; gene_name "FUN19"; transcript_biotype "protein_coding"; +chrI SGD exon 80710 81951 . - 0 transcript_id "YAL034C_id001"; gene_name "FUN19"; gene_id "YAL034C"; +chrI SGD gene 82701 83397 . + . gene_id "YAL033W"; gene_biotype "protein_coding"; +chrI SGD transcript 82701 83397 . + . transcript_id "YAL033W_id003"; gene_id "YAL033W"; gene_name "POP5"; transcript_biotype "protein_coding"; +chrI SGD exon 82701 83397 . + . transcript_id "YAL033W_id003"; gene_id "YAL033W"; gene_name "POP5"; +chrI SGD transcript 82706 83227 . + . transcript_id "YAL033W_id001"; gene_id "YAL033W"; gene_name "POP5"; transcript_biotype "protein_coding"; +chrI SGD exon 82706 83227 . + 0 transcript_id "YAL033W_id001"; gene_name "POP5"; gene_id "YAL033W"; +chrI SGD gene 83192 84504 . - . gene_id "YAL032C"; gene_biotype "protein_coding"; +chrI SGD transcript 83192 84504 . - . transcript_id "YAL032C_id008"; gene_id "YAL032C"; gene_name "PRP45"; transcript_biotype "protein_coding"; +chrI SGD exon 83192 84504 . - . transcript_id "YAL032C_id008"; gene_id "YAL032C"; gene_name "PRP45"; +chrI SGD transcript 83335 84474 . - . transcript_id "YAL032C_id001"; gene_id "YAL032C"; gene_name "PRP45"; transcript_biotype "protein_coding"; +chrI SGD exon 83335 84474 . - 0 transcript_id "YAL032C_id001"; gene_name "PRP45"; gene_id "YAL032C"; +chrI SGD gene 84587 87031 . - . gene_id "YAL031C"; gene_biotype "protein_coding"; +chrI SGD transcript 84587 87031 . - . transcript_id "YAL031C_id003"; gene_id "YAL031C"; gene_name "GIP4"; transcript_biotype "protein_coding"; +chrI SGD exon 84587 87031 . - . transcript_id "YAL031C_id003"; gene_id "YAL031C"; gene_name "GIP4"; +chrI SGD gene 84669 84977 . + . gene_id "YAL031W-A"; gene_biotype "protein_coding"; +chrI SGD transcript 84669 84977 . + . transcript_id "YAL031W-A_mRNA"; gene_id "YAL031W-A"; transcript_biotype "protein_coding"; +chrI SGD CDS 84669 84977 . + 0 transcript_id "YAL031W-A_mRNA"; gene_id "YAL031W-A"; +chrI SGD transcript 84749 87031 . - . transcript_id "YAL031C_id001"; gene_id "YAL031C"; gene_name "GIP4"; transcript_biotype "protein_coding"; +chrI SGD exon 84749 87031 . - 0 transcript_id "YAL031C_id001"; gene_name "GIP4"; gene_id "YAL031C"; +chrI SGD gene 87264 88013 . + . gene_id "YAL030W"; gene_biotype "protein_coding"; +chrI SGD transcript 87264 88013 . + . transcript_id "YAL030W_id002"; gene_id "YAL030W"; gene_name "SNC1"; transcript_biotype "protein_coding"; +chrI SGD exon 87264 88013 . + . transcript_id "YAL030W_id002"; gene_id "YAL030W"; gene_name "SNC1"; +chrI SGD transcript 87286 87752 . + . transcript_id "YAL030W_id001"; gene_id "YAL030W"; gene_name "SNC1"; transcript_biotype "protein_coding"; +chrI SGD exon 87286 87387 . + 0 transcript_id "YAL030W_id001"; gene_name "SNC1"; gene_id "YAL030W"; +chrI SGD exon 87501 87752 . + 0 transcript_id "YAL030W_id001"; gene_name "SNC1"; gene_id "YAL030W"; +chrI SGD gene 87855 92270 . - . gene_id "YAL029C"; gene_biotype "protein_coding"; +chrI SGD transcript 87855 92270 . - . transcript_id "YAL029C_mRNA"; gene_id "YAL029C"; gene_name "MYO4"; transcript_biotype "protein_coding"; +chrI SGD CDS 87855 92270 . - 0 transcript_id "YAL029C_mRNA"; gene_name "MYO4"; gene_id "YAL029C"; +chrI SGD gene 92852 94566 . + . gene_id "YAL028W"; gene_biotype "protein_coding"; +chrI SGD transcript 92852 94566 . + . transcript_id "YAL028W_id005"; gene_id "YAL028W"; gene_name "FRT2"; transcript_biotype "protein_coding"; +chrI SGD exon 92852 94566 . + . transcript_id "YAL028W_id005"; gene_id "YAL028W"; gene_name "FRT2"; +chrI SGD transcript 92900 94486 . + . transcript_id "YAL028W_id001"; gene_id "YAL028W"; gene_name "FRT2"; transcript_biotype "protein_coding"; +chrI SGD exon 92900 94486 . + 0 transcript_id "YAL028W_id001"; gene_name "FRT2"; gene_id "YAL028W"; +chrI SGD gene 94595 95583 . + . gene_id "YAL027W"; gene_biotype "protein_coding"; +chrI SGD transcript 94595 95583 . + . transcript_id "YAL027W_id001"; gene_id "YAL027W"; gene_name "SAW1"; transcript_biotype "protein_coding"; +chrI SGD exon 94595 95583 . + . transcript_id "YAL027W_id001"; gene_id "YAL027W"; gene_name "SAW1"; +chrI SGD transcript 94687 95472 . + . transcript_id "YAL027W_id002"; gene_id "YAL027W"; gene_name "SAW1"; transcript_biotype "protein_coding"; +chrI SGD exon 94687 95472 . + 0 transcript_id "YAL027W_id002"; gene_name "SAW1"; gene_id "YAL027W"; +chrI SGD gene 95386 95823 . - . gene_id "YAL026C-A"; gene_biotype "protein_coding"; +chrI SGD transcript 95386 95823 . - . transcript_id "YAL026C-A_mRNA"; gene_id "YAL026C-A"; transcript_biotype "protein_coding"; +chrI SGD CDS 95386 95823 . - 0 transcript_id "YAL026C-A_mRNA"; gene_id "YAL026C-A"; +chrI SGD gene 95630 99697 . - . gene_id "YAL026C"; gene_biotype "protein_coding"; +chrI SGD transcript 95630 99697 . - . transcript_id "YAL026C_mRNA"; gene_id "YAL026C"; gene_name "DRS2"; transcript_biotype "protein_coding"; +chrI SGD CDS 95630 99697 . - 0 transcript_id "YAL026C_mRNA"; gene_name "DRS2"; gene_id "YAL026C"; +chrI SGD gene 99305 99868 . + . gene_id "YNCA0001W"; gene_biotype "ncRNA"; +chrI SGD transcript 99305 99868 . + . transcript_id "YNCA0001W_ncRNA"; gene_id "YNCA0001W"; gene_name "HRA1"; transcript_biotype "ncRNA"; +chrI SGD exon 99305 99868 . + . transcript_id "YNCA0001W_ncRNA"; gene_name "HRA1"; gene_id "YNCA0001W"; +chrI SGD gene 99939 101168 . - . gene_id "YAL025C"; gene_biotype "protein_coding"; +chrI SGD transcript 99939 101168 . - . transcript_id "YAL025C_id001"; gene_id "YAL025C"; gene_name "MAK16"; transcript_biotype "protein_coding"; +chrI SGD exon 99939 101168 . - . transcript_id "YAL025C_id001"; gene_id "YAL025C"; gene_name "MAK16"; +chrI SGD transcript 100225 101145 . - . transcript_id "YAL025C_id002"; gene_id "YAL025C"; gene_name "MAK16"; transcript_biotype "protein_coding"; +chrI SGD exon 100225 101145 . - 0 transcript_id "YAL025C_id002"; gene_name "MAK16"; gene_id "YAL025C"; +chrI SGD gene 101565 105872 . - . gene_id "YAL024C"; gene_biotype "protein_coding"; +chrI SGD transcript 101565 105872 . - . transcript_id "YAL024C_mRNA"; gene_id "YAL024C"; gene_name "LTE1"; transcript_biotype "protein_coding"; +chrI SGD CDS 101565 105872 . - 0 transcript_id "YAL024C_mRNA"; gene_name "LTE1"; gene_id "YAL024C"; +chrI SGD gene 106143 108671 . - . gene_id "YAL023C"; gene_biotype "protein_coding"; +chrI SGD transcript 106143 108671 . - . transcript_id "YAL023C_id006"; gene_id "YAL023C"; gene_name "PMT2"; transcript_biotype "protein_coding"; +chrI SGD exon 106143 108671 . - . transcript_id "YAL023C_id006"; gene_id "YAL023C"; gene_name "PMT2"; +chrI SGD transcript 106272 108551 . - . transcript_id "YAL023C_id001"; gene_id "YAL023C"; gene_name "PMT2"; transcript_biotype "protein_coding"; +chrI SGD exon 106272 108551 . - 0 transcript_id "YAL023C_id001"; gene_name "PMT2"; gene_id "YAL023C"; +chrI SGD gene 108732 110471 . - . gene_id "YAL022C"; gene_biotype "protein_coding"; +chrI SGD transcript 108732 110471 . - . transcript_id "YAL022C_id001"; gene_id "YAL022C"; gene_name "FUN26"; transcript_biotype "protein_coding"; +chrI SGD exon 108732 110471 . - . transcript_id "YAL022C_id001"; gene_id "YAL022C"; gene_name "FUN26"; +chrI SGD transcript 108877 110430 . - . transcript_id "YAL022C_id002"; gene_id "YAL022C"; gene_name "FUN26"; transcript_biotype "protein_coding"; +chrI SGD exon 108877 110430 . - 0 transcript_id "YAL022C_id002"; gene_name "FUN26"; gene_id "YAL022C"; +chrI SGD gene 110536 113403 . - . gene_id "YAL021C"; gene_biotype "protein_coding"; +chrI SGD transcript 110536 113403 . - . transcript_id "YAL021C_id002"; gene_id "YAL021C"; gene_name "CCR4"; transcript_biotype "protein_coding"; +chrI SGD exon 110536 113403 . - . transcript_id "YAL021C_id002"; gene_id "YAL021C"; gene_name "CCR4"; +chrI SGD transcript 110846 113359 . - . transcript_id "YAL021C_id001"; gene_id "YAL021C"; gene_name "CCR4"; transcript_biotype "protein_coding"; +chrI SGD exon 110846 113359 . - 0 transcript_id "YAL021C_id001"; gene_name "CCR4"; gene_id "YAL021C"; +chrI SGD gene 113468 114624 . - . gene_id "YAL020C"; gene_biotype "protein_coding"; +chrI SGD transcript 113468 114624 . - . transcript_id "YAL020C_id001"; gene_id "YAL020C"; gene_name "ATS1"; transcript_biotype "protein_coding"; +chrI SGD exon 113468 114624 . - . transcript_id "YAL020C_id001"; gene_id "YAL020C"; gene_name "ATS1"; +chrI SGD transcript 113614 114615 . - . transcript_id "YAL020C_id002"; gene_id "YAL020C"; gene_name "ATS1"; transcript_biotype "protein_coding"; +chrI SGD exon 113614 114615 . - 0 transcript_id "YAL020C_id002"; gene_name "ATS1"; gene_id "YAL020C"; +chrI SGD gene 114250 114819 . + . gene_id "YAL019W-A"; gene_biotype "protein_coding"; +chrI SGD transcript 114250 114819 . + . transcript_id "YAL019W-A_mRNA"; gene_id "YAL019W-A"; transcript_biotype "protein_coding"; +chrI SGD CDS 114250 114819 . + 0 transcript_id "YAL019W-A_mRNA"; gene_id "YAL019W-A"; +chrI SGD gene 114919 118314 . + . gene_id "YAL019W"; gene_biotype "protein_coding"; +chrI SGD transcript 114919 118314 . + . transcript_id "YAL019W_id001"; gene_id "YAL019W"; gene_name "FUN30"; transcript_biotype "protein_coding"; +chrI SGD exon 114919 118314 . + 0 transcript_id "YAL019W_id001"; gene_name "FUN30"; gene_id "YAL019W"; +chrI SGD gene 118564 119541 . - . gene_id "YAL018C"; gene_biotype "protein_coding"; +chrI SGD transcript 118564 119541 . - . transcript_id "YAL018C_id001"; gene_id "YAL018C"; gene_name "LDS1"; transcript_biotype "protein_coding"; +chrI SGD exon 118564 119541 . - 0 transcript_id "YAL018C_id001"; gene_name "LDS1"; gene_id "YAL018C"; +chrI SGD gene 120225 124295 . + . gene_id "YAL017W"; gene_biotype "protein_coding"; +chrI SGD transcript 120225 124295 . + . transcript_id "YAL017W_mRNA"; gene_id "YAL017W"; gene_name "PSK1"; transcript_biotype "protein_coding"; +chrI SGD CDS 120225 124295 . + 0 transcript_id "YAL017W_mRNA"; gene_name "PSK1"; gene_id "YAL017W"; +chrI SGD gene 124307 124492 . - . gene_id "YAL016C-B"; gene_biotype "protein_coding"; +chrI SGD transcript 124307 124492 . - . transcript_id "YAL016C-B_mRNA"; gene_id "YAL016C-B"; transcript_biotype "protein_coding"; +chrI SGD CDS 124307 124492 . - 0 transcript_id "YAL016C-B_mRNA"; gene_id "YAL016C-B"; +chrI SGD gene 124755 125069 . - . gene_id "YAL016C-A"; gene_biotype "protein_coding"; +chrI SGD transcript 124755 125069 . - . transcript_id "YAL016C-A_mRNA"; gene_id "YAL016C-A"; transcript_biotype "protein_coding"; +chrI SGD CDS 124755 125069 . - 0 transcript_id "YAL016C-A_mRNA"; gene_id "YAL016C-A"; +chrI SGD gene 124786 126883 . + . gene_id "YAL016W"; gene_biotype "protein_coding"; +chrI SGD transcript 124786 126883 . + . transcript_id "YAL016W_id001"; gene_id "YAL016W"; gene_name "TPD3"; transcript_biotype "protein_coding"; +chrI SGD exon 124786 126883 . + . transcript_id "YAL016W_id001"; gene_id "YAL016W"; gene_name "TPD3"; +chrI SGD transcript 124879 126786 . + . transcript_id "YAL016W_id002"; gene_id "YAL016W"; gene_name "TPD3"; transcript_biotype "protein_coding"; +chrI SGD exon 124879 126786 . + 0 transcript_id "YAL016W_id002"; gene_name "TPD3"; gene_id "YAL016W"; +chrI SGD gene 126756 128110 . - . gene_id "YAL015C"; gene_biotype "protein_coding"; +chrI SGD transcript 126756 128110 . - . transcript_id "YAL015C_id001"; gene_id "YAL015C"; gene_name "NTG1"; transcript_biotype "protein_coding"; +chrI SGD exon 126756 128110 . - . transcript_id "YAL015C_id001"; gene_id "YAL015C"; gene_name "NTG1"; +chrI SGD transcript 126903 128102 . - . transcript_id "YAL015C_id002"; gene_id "YAL015C"; gene_name "NTG1"; transcript_biotype "protein_coding"; +chrI SGD exon 126903 128102 . - 0 transcript_id "YAL015C_id002"; gene_name "NTG1"; gene_id "YAL015C"; +chrI SGD gene 128031 129072 . - . gene_id "YAL014C"; gene_biotype "protein_coding"; +chrI SGD transcript 128031 129072 . - . transcript_id "YAL014C_id001"; gene_id "YAL014C"; gene_name "SYN8"; transcript_biotype "protein_coding"; +chrI SGD exon 128031 129072 . - . transcript_id "YAL014C_id001"; gene_id "YAL014C"; gene_name "SYN8"; +chrI SGD transcript 128252 129019 . - . transcript_id "YAL014C_id005"; gene_id "YAL014C"; gene_name "SYN8"; transcript_biotype "protein_coding"; +chrI SGD exon 128252 129019 . - 0 transcript_id "YAL014C_id005"; gene_name "SYN8"; gene_id "YAL014C"; +chrI SGD gene 129194 130583 . + . gene_id "YAL013W"; gene_biotype "protein_coding"; +chrI SGD transcript 129194 130583 . + . transcript_id "YAL013W_id001"; gene_id "YAL013W"; gene_name "DEP1"; transcript_biotype "protein_coding"; +chrI SGD exon 129194 130583 . + . transcript_id "YAL013W_id001"; gene_id "YAL013W"; gene_name "DEP1"; +chrI SGD transcript 129270 130487 . + . transcript_id "YAL013W_id002"; gene_id "YAL013W"; gene_name "DEP1"; transcript_biotype "protein_coding"; +chrI SGD exon 129270 130487 . + 0 transcript_id "YAL013W_id002"; gene_name "DEP1"; gene_id "YAL013W"; +chrI SGD gene 130686 132100 . + . gene_id "YAL012W"; gene_biotype "protein_coding"; +chrI SGD transcript 130686 132100 . + . transcript_id "YAL012W_id002"; gene_id "YAL012W"; gene_name "CYS3"; transcript_biotype "protein_coding"; +chrI SGD exon 130686 132100 . + . transcript_id "YAL012W_id002"; gene_id "YAL012W"; gene_name "CYS3"; +chrI SGD transcript 130799 131983 . + . transcript_id "YAL012W_id001"; gene_id "YAL012W"; gene_name "CYS3"; transcript_biotype "protein_coding"; +chrI SGD exon 130799 131983 . + 0 transcript_id "YAL012W_id001"; gene_name "CYS3"; gene_id "YAL012W"; +chrI SGD gene 132169 134210 . + . gene_id "YAL011W"; gene_biotype "protein_coding"; +chrI SGD transcript 132169 134210 . + . transcript_id "YAL011W_id001"; gene_id "YAL011W"; gene_name "SWC3"; transcript_biotype "protein_coding"; +chrI SGD exon 132169 134210 . + . transcript_id "YAL011W_id001"; gene_id "YAL011W"; gene_name "SWC3"; +chrI SGD transcript 132199 134076 . + . transcript_id "YAL011W_id003"; gene_id "YAL011W"; gene_name "SWC3"; transcript_biotype "protein_coding"; +chrI SGD exon 132199 134076 . + 0 transcript_id "YAL011W_id003"; gene_name "SWC3"; gene_id "YAL011W"; +chrI SGD gene 134001 135688 . - . gene_id "YAL010C"; gene_biotype "protein_coding"; +chrI SGD transcript 134001 135688 . - . transcript_id "YAL010C_id001"; gene_id "YAL010C"; gene_name "MDM10"; transcript_biotype "protein_coding"; +chrI SGD exon 134001 135688 . - . transcript_id "YAL010C_id001"; gene_id "YAL010C"; gene_name "MDM10"; +chrI SGD transcript 134184 135665 . - . transcript_id "YAL010C_id004"; gene_id "YAL010C"; gene_name "MDM10"; transcript_biotype "protein_coding"; +chrI SGD exon 134184 135665 . - 0 transcript_id "YAL010C_id004"; gene_name "MDM10"; gene_id "YAL010C"; +chrI SGD gene 135408 136766 . + . gene_id "YAL009W"; gene_biotype "protein_coding"; +chrI SGD transcript 135408 136766 . + . transcript_id "YAL009W_id001"; gene_id "YAL009W"; gene_name "SPO7"; transcript_biotype "protein_coding"; +chrI SGD exon 135408 136766 . + . transcript_id "YAL009W_id001"; gene_id "YAL009W"; gene_name "SPO7"; +chrI SGD transcript 135854 136633 . + . transcript_id "YAL009W_id006"; gene_id "YAL009W"; gene_name "SPO7"; transcript_biotype "protein_coding"; +chrI SGD exon 135854 136633 . + 0 transcript_id "YAL009W_id006"; gene_name "SPO7"; gene_id "YAL009W"; +chrI SGD gene 136815 137718 . + . gene_id "YAL008W"; gene_biotype "protein_coding"; +chrI SGD transcript 136815 137718 . + . transcript_id "YAL008W_id005"; gene_id "YAL008W"; gene_name "FUN14"; transcript_biotype "protein_coding"; +chrI SGD exon 136815 137718 . + . transcript_id "YAL008W_id005"; gene_id "YAL008W"; gene_name "FUN14"; +chrI SGD transcript 136914 137510 . + . transcript_id "YAL008W_id001"; gene_id "YAL008W"; gene_name "FUN14"; transcript_biotype "protein_coding"; +chrI SGD exon 136914 137510 . + 0 transcript_id "YAL008W_id001"; gene_name "FUN14"; gene_id "YAL008W"; +chrI SGD gene 137408 138414 . - . gene_id "YAL007C"; gene_biotype "protein_coding"; +chrI SGD transcript 137408 138414 . - . transcript_id "YAL007C_id002"; gene_id "YAL007C"; gene_name "ERP2"; transcript_biotype "protein_coding"; +chrI SGD exon 137408 138414 . - . transcript_id "YAL007C_id002"; gene_id "YAL007C"; gene_name "ERP2"; +chrI SGD gene 137649 142140 . + . gene_id "YAL004W"; gene_biotype "protein_coding"; +chrI SGD transcript 137649 142140 . + . transcript_id "YAL004W_id001"; gene_id "YAL004W"; transcript_biotype "protein_coding"; +chrI SGD exon 137649 142140 . + . transcript_id "YAL004W_id001"; gene_id "YAL004W"; +chrI SGD transcript 137698 138345 . - . transcript_id "YAL007C_id001"; gene_id "YAL007C"; gene_name "ERP2"; transcript_biotype "protein_coding"; +chrI SGD exon 137698 138345 . - 0 transcript_id "YAL007C_id001"; gene_name "ERP2"; gene_id "YAL007C"; +chrI SGD gene 139152 139254 . + . gene_id "YNCA0002W"; gene_biotype "ncRNA"; +chrI SGD transcript 139152 139254 . + . transcript_id "YNCA0002W_tRNA"; gene_id "YNCA0002W"; gene_name "TRN1"; transcript_biotype "ncRNA"; +chrI SGD exon 139152 139187 . + . transcript_id "YNCA0002W_tRNA"; gene_name "TRN1"; gene_id "YNCA0002W"; +chrI SGD exon 139219 139254 . + . transcript_id "YNCA0002W_tRNA"; gene_name "TRN1"; gene_id "YNCA0002W"; +chrI SGD gene 139381 141684 . - . gene_id "YAL005C"; gene_biotype "protein_coding"; +chrI SGD transcript 139381 141684 . - . transcript_id "YAL005C_id002"; gene_id "YAL005C"; gene_name "SSA1"; transcript_biotype "protein_coding"; +chrI SGD exon 139381 141684 . - . transcript_id "YAL005C_id002"; gene_id "YAL005C"; gene_name "SSA1"; +chrI SGD transcript 139503 141431 . - . transcript_id "YAL005C_id001"; gene_id "YAL005C"; gene_name "SSA1"; transcript_biotype "protein_coding"; +chrI SGD exon 139503 141431 . - 0 transcript_id "YAL005C_id001"; gene_name "SSA1"; gene_id "YAL005C"; +chrI SGD transcript 140760 141407 . + . transcript_id "YAL004W_id002"; gene_id "YAL004W"; transcript_biotype "protein_coding"; +chrI SGD exon 140760 141407 . + 0 transcript_id "YAL004W_id002"; gene_id "YAL004W"; +chrI SGD gene 142141 143496 . + . gene_id "YAL003W"; gene_biotype "protein_coding"; +chrI SGD transcript 142141 143496 . + . transcript_id "YAL003W_id003"; gene_id "YAL003W"; gene_name "EFB1"; transcript_biotype "protein_coding"; +chrI SGD exon 142141 143496 . + . transcript_id "YAL003W_id003"; gene_id "YAL003W"; gene_name "EFB1"; +chrI SGD transcript 142174 143160 . + . transcript_id "YAL003W_id001"; gene_id "YAL003W"; gene_name "EFB1"; transcript_biotype "protein_coding"; +chrI SGD exon 142174 142253 . + 0 transcript_id "YAL003W_id001"; gene_name "EFB1"; gene_id "YAL003W"; +chrI SGD exon 142620 143160 . + 1 transcript_id "YAL003W_id001"; gene_name "EFB1"; gene_id "YAL003W"; +chrI SGD gene 142367 142468 . + . gene_id "YNCA0003W"; gene_biotype "ncRNA"; +chrI SGD transcript 142367 142468 . + . transcript_id "YNCA0003W_snoRNA"; gene_id "YNCA0003W"; gene_name "SNR18"; transcript_biotype "ncRNA"; +chrI SGD exon 142367 142468 . + . transcript_id "YNCA0003W_snoRNA"; gene_name "SNR18"; gene_id "YNCA0003W"; +chrI SGD gene 143707 147531 . + . gene_id "YAL002W"; gene_biotype "protein_coding"; +chrI SGD transcript 143707 147531 . + . transcript_id "YAL002W_id001"; gene_id "YAL002W"; gene_name "VPS8"; transcript_biotype "protein_coding"; +chrI SGD exon 143707 147531 . + 0 transcript_id "YAL002W_id001"; gene_name "VPS8"; gene_id "YAL002W"; +chrI SGD gene 147594 151166 . - . gene_id "YAL001C"; gene_biotype "protein_coding"; +chrI SGD transcript 147594 151166 . - . transcript_id "YAL001C_mRNA"; gene_id "YAL001C"; gene_name "TFC3"; transcript_biotype "protein_coding"; +chrI SGD CDS 147594 151006 . - 2 transcript_id "YAL001C_mRNA"; gene_name "TFC3"; gene_id "YAL001C"; +chrI SGD CDS 151097 151166 . - 0 transcript_id "YAL001C_mRNA"; gene_name "TFC3"; gene_id "YAL001C"; +chrI SGD gene 152215 154114 . + . gene_id "YAR002W"; gene_biotype "protein_coding"; +chrI SGD transcript 152215 154114 . + . transcript_id "YAR002W_id001"; gene_id "YAR002W"; gene_name "NUP60"; transcript_biotype "protein_coding"; +chrI SGD exon 152215 154114 . + . transcript_id "YAR002W_id001"; gene_id "YAR002W"; gene_name "NUP60"; +chrI SGD transcript 152257 153876 . + . transcript_id "YAR002W_id002"; gene_id "YAR002W"; gene_name "NUP60"; transcript_biotype "protein_coding"; +chrI SGD exon 152257 153876 . + 0 transcript_id "YAR002W_id002"; gene_name "NUP60"; gene_id "YAR002W"; +chrI SGD gene 153808 154750 . - . gene_id "YAR002C-A"; gene_biotype "protein_coding"; +chrI SGD transcript 153808 154750 . - . transcript_id "YAR002C-A_id004"; gene_id "YAR002C-A"; gene_name "ERP1"; transcript_biotype "protein_coding"; +chrI SGD exon 153808 154750 . - . transcript_id "YAR002C-A_id004"; gene_id "YAR002C-A"; gene_name "ERP1"; +chrI SGD transcript 154065 154724 . - . transcript_id "YAR002C-A_id001"; gene_id "YAR002C-A"; gene_name "ERP1"; transcript_biotype "protein_coding"; +chrI SGD exon 154065 154724 . - 0 transcript_id "YAR002C-A_id001"; gene_name "ERP1"; gene_id "YAR002C-A"; +chrI SGD gene 154958 156909 . + . gene_id "YAR003W"; gene_biotype "protein_coding"; +chrI SGD transcript 154958 156909 . + . transcript_id "YAR003W_id001"; gene_id "YAR003W"; gene_name "SWD1"; transcript_biotype "protein_coding"; +chrI SGD exon 154958 156909 . + . transcript_id "YAR003W_id001"; gene_id "YAR003W"; gene_name "SWD1"; +chrI SGD transcript 155005 156285 . + . transcript_id "YAR003W_id002"; gene_id "YAR003W"; gene_name "SWD1"; transcript_biotype "protein_coding"; +chrI SGD exon 155005 156285 . + 0 transcript_id "YAR003W_id002"; gene_name "SWD1"; gene_id "YAR003W"; +chrI SGD gene 156681 158698 . - . gene_id "YAR007C"; gene_biotype "protein_coding"; +chrI SGD transcript 156681 158698 . - . transcript_id "YAR007C_id002"; gene_id "YAR007C"; gene_name "RFA1"; transcript_biotype "protein_coding"; +chrI SGD exon 156681 158698 . - . transcript_id "YAR007C_id002"; gene_id "YAR007C"; gene_name "RFA1"; +chrI SGD transcript 156754 158619 . - . transcript_id "YAR007C_id001"; gene_id "YAR007C"; gene_name "RFA1"; transcript_biotype "protein_coding"; +chrI SGD exon 156754 158619 . - 0 transcript_id "YAR007C_id001"; gene_name "RFA1"; gene_id "YAR007C"; +chrI SGD gene 158847 159916 . + . gene_id "YAR008W"; gene_biotype "protein_coding"; +chrI SGD transcript 158847 159916 . + . transcript_id "YAR008W_id002"; gene_id "YAR008W"; gene_name "SEN34"; transcript_biotype "protein_coding"; +chrI SGD exon 158847 159916 . + . transcript_id "YAR008W_id002"; gene_id "YAR008W"; gene_name "SEN34"; +chrI SGD transcript 158966 159793 . + . transcript_id "YAR008W_id001"; gene_id "YAR008W"; gene_name "SEN34"; transcript_biotype "protein_coding"; +chrI SGD exon 158966 159793 . + 0 transcript_id "YAR008W_id001"; gene_name "SEN34"; gene_id "YAR008W"; +chrI SGD gene 160597 164187 . - . gene_id "YAR009C"; gene_biotype "protein_coding"; +chrI SGD transcript 160597 164187 . - . transcript_id "YAR009C_dummy"; gene_id "YAR009C"; transcript_biotype "protein_coding"; +chrI SGD exon 160597 164187 . - 0 transcript_id "YAR009C_dummy"; gene_id "YAR009C"; +chrI SGD gene 164544 165866 . - . gene_id "YAR010C"; gene_biotype "protein_coding"; +chrI SGD transcript 164544 165866 . - . transcript_id "YAR010C_dummy"; gene_id "YAR010C"; transcript_biotype "protein_coding"; +chrI SGD exon 164544 165866 . - 0 transcript_id "YAR010C_dummy"; gene_id "YAR010C"; +chrI SGD gene 166267 166339 . + . gene_id "YNCA0004W"; gene_biotype "ncRNA"; +chrI SGD transcript 166267 166339 . + . transcript_id "YNCA0004W_tRNA"; gene_id "YNCA0004W"; gene_name "TGA1"; transcript_biotype "ncRNA"; +chrI SGD exon 166267 166339 . + . transcript_id "YNCA0004W_tRNA"; gene_name "TGA1"; gene_id "YNCA0004W"; +chrI SGD gene 166565 169019 . - . gene_id "YAR014C"; gene_biotype "protein_coding"; +chrI SGD transcript 166565 169019 . - . transcript_id "YAR014C_id002"; gene_id "YAR014C"; gene_name "BUD14"; transcript_biotype "protein_coding"; +chrI SGD exon 166565 169019 . - . transcript_id "YAR014C_id002"; gene_id "YAR014C"; gene_name "BUD14"; +chrI SGD transcript 166742 168871 . - . transcript_id "YAR014C_id001"; gene_id "YAR014C"; gene_name "BUD14"; transcript_biotype "protein_coding"; +chrI SGD exon 166742 168871 . - 0 transcript_id "YAR014C_id001"; gene_name "BUD14"; gene_id "YAR014C"; +chrI SGD gene 169272 170638 . + . gene_id "YAR015W"; gene_biotype "protein_coding"; +chrI SGD transcript 169272 170638 . + . transcript_id "YAR015W_id003"; gene_id "YAR015W"; gene_name "ADE1"; transcript_biotype "protein_coding"; +chrI SGD exon 169272 170638 . + . transcript_id "YAR015W_id003"; gene_id "YAR015W"; gene_name "ADE1"; +chrI SGD transcript 169375 170295 . + . transcript_id "YAR015W_id001"; gene_id "YAR015W"; gene_name "ADE1"; transcript_biotype "protein_coding"; +chrI SGD exon 169375 170295 . + 0 transcript_id "YAR015W_id001"; gene_name "ADE1"; gene_id "YAR015W"; +chrI SGD gene 170177 171715 . - . gene_id "YAR018C"; gene_biotype "protein_coding"; +chrI SGD transcript 170177 171715 . - . transcript_id "YAR018C_id002"; gene_id "YAR018C"; gene_name "KIN3"; transcript_biotype "protein_coding"; +chrI SGD exon 170177 171715 . - . transcript_id "YAR018C_id002"; gene_id "YAR018C"; gene_name "KIN3"; +chrI SGD transcript 170396 171703 . - . transcript_id "YAR018C_id001"; gene_id "YAR018C"; gene_name "KIN3"; transcript_biotype "protein_coding"; +chrI SGD exon 170396 171703 . - 0 transcript_id "YAR018C_id001"; gene_name "KIN3"; gene_id "YAR018C"; +chrI SGD gene 172211 175135 . - . gene_id "YAR019C"; gene_biotype "protein_coding"; +chrI SGD transcript 172211 175135 . - . transcript_id "YAR019C_id001"; gene_id "YAR019C"; gene_name "CDC15"; transcript_biotype "protein_coding"; +chrI SGD exon 172211 175135 . - 0 transcript_id "YAR019C_id001"; gene_name "CDC15"; gene_id "YAR019C"; +chrI SGD gene 174998 175330 . + . gene_id "YAR019W-A"; gene_biotype "protein_coding"; +chrI SGD transcript 174998 175330 . + . transcript_id "YAR019W-A_mRNA"; gene_id "YAR019W-A"; transcript_biotype "protein_coding"; +chrI SGD CDS 174998 175330 . + 0 transcript_id "YAR019W-A_mRNA"; gene_id "YAR019W-A"; +chrI SGD gene 176856 177023 . - . gene_id "YAR020C"; gene_biotype "protein_coding"; +chrI SGD transcript 176856 177023 . - . transcript_id "YAR020C_mRNA"; gene_id "YAR020C"; gene_name "PAU7"; transcript_biotype "protein_coding"; +chrI SGD CDS 176856 177023 . - 0 transcript_id "YAR020C_mRNA"; gene_name "PAU7"; gene_id "YAR020C"; +chrI SGD gene 179245 180697 . - . gene_id "YAR023C"; gene_biotype "protein_coding"; +chrI SGD transcript 179245 180697 . - . transcript_id "YAR023C_id001"; gene_id "YAR023C"; gene_name "DFP1"; transcript_biotype "protein_coding"; +chrI SGD exon 179245 180697 . - . transcript_id "YAR023C_id001"; gene_id "YAR023C"; gene_name "DFP1"; +chrI SGD transcript 179281 179820 . - . transcript_id "YAR023C_id002"; gene_id "YAR023C"; gene_name "DFP1"; transcript_biotype "protein_coding"; +chrI SGD exon 179281 179820 . - 0 transcript_id "YAR023C_id002"; gene_name "DFP1"; gene_id "YAR023C"; +chrI SGD gene 181141 181254 . + . gene_id "YNCA0005W"; gene_biotype "ncRNA"; +chrI SGD transcript 181141 181254 . + . transcript_id "YNCA0005W_tRNA"; gene_id "YNCA0005W"; gene_name "SUP56"; transcript_biotype "ncRNA"; +chrI SGD exon 181141 181178 . + . transcript_id "YNCA0005W_tRNA"; gene_name "SUP56"; gene_id "YNCA0005W"; +chrI SGD exon 181211 181254 . + . transcript_id "YNCA0005W_tRNA"; gene_name "SUP56"; gene_id "YNCA0005W"; +chrI SGD gene 182522 182603 . - . gene_id "YNCA0006C"; gene_biotype "ncRNA"; +chrI SGD transcript 182522 182603 . - . transcript_id "YNCA0006C_tRNA"; gene_id "YNCA0006C"; transcript_biotype "ncRNA"; +chrI SGD exon 182522 182603 . - . transcript_id "YNCA0006C_tRNA"; gene_id "YNCA0006C"; +chrI SGD gene 183671 184687 . + . gene_id "YAR027W"; gene_biotype "protein_coding"; +chrI SGD transcript 183671 184687 . + . transcript_id "YAR027W_id001"; gene_id "YAR027W"; gene_name "UIP3"; transcript_biotype "protein_coding"; +chrI SGD exon 183671 184687 . + . transcript_id "YAR027W_id001"; gene_id "YAR027W"; gene_name "UIP3"; +chrI SGD transcript 183770 184477 . + . transcript_id "YAR027W_id003"; gene_id "YAR027W"; gene_name "UIP3"; transcript_biotype "protein_coding"; +chrI SGD exon 183770 184477 . + 0 transcript_id "YAR027W_id003"; gene_name "UIP3"; gene_id "YAR027W"; +chrI SGD gene 184832 185977 . + . gene_id "YAR028W"; gene_biotype "protein_coding"; +chrI SGD transcript 184832 185977 . + . transcript_id "YAR028W_id001"; gene_id "YAR028W"; gene_name "KTD1"; transcript_biotype "protein_coding"; +chrI SGD exon 184832 185977 . + . transcript_id "YAR028W_id001"; gene_id "YAR028W"; gene_name "KTD1"; +chrI SGD transcript 184892 185596 . + . transcript_id "YAR028W_id002"; gene_id "YAR028W"; gene_name "KTD1"; transcript_biotype "protein_coding"; +chrI SGD exon 184892 185596 . + 0 transcript_id "YAR028W_id002"; gene_name "KTD1"; gene_id "YAR028W"; +chrI SGD gene 185009 186754 . + . gene_id "YAR029W"; gene_biotype "protein_coding"; +chrI SGD transcript 185009 186754 . + . transcript_id "YAR029W_id001"; gene_id "YAR029W"; gene_name "DFP2"; transcript_biotype "protein_coding"; +chrI SGD exon 185009 186754 . + . transcript_id "YAR029W_id001"; gene_id "YAR029W"; gene_name "DFP2"; +chrI SGD transcript 186321 186545 . + . transcript_id "YAR029W_id003"; gene_id "YAR029W"; gene_name "DFP2"; transcript_biotype "protein_coding"; +chrI SGD exon 186321 186545 . + 0 transcript_id "YAR029W_id003"; gene_name "DFP2"; gene_id "YAR029W"; +chrI SGD gene 186512 186853 . - . gene_id "YAR030C"; gene_biotype "protein_coding"; +chrI SGD transcript 186512 186853 . - . transcript_id "YAR030C_id001"; gene_id "YAR030C"; transcript_biotype "protein_coding"; +chrI SGD exon 186512 186853 . - 0 transcript_id "YAR030C_id001"; gene_id "YAR030C"; +chrI SGD gene 186836 187732 . + . gene_id "YAR031W"; gene_biotype "protein_coding"; +chrI SGD transcript 186836 187732 . + . transcript_id "YAR031W_mRNA"; gene_id "YAR031W"; gene_name "PRM9"; transcript_biotype "protein_coding"; +chrI SGD CDS 186836 187732 . + 0 transcript_id "YAR031W_mRNA"; gene_name "PRM9"; gene_id "YAR031W"; +chrI SGD gene 188043 189258 . + . gene_id "YAR033W"; gene_biotype "protein_coding"; +chrI SGD transcript 188043 189258 . + . transcript_id "YAR033W_id001"; gene_id "YAR033W"; gene_name "MST28"; transcript_biotype "protein_coding"; +chrI SGD exon 188043 189258 . + . transcript_id "YAR033W_id001"; gene_id "YAR033W"; gene_name "MST28"; +chrI SGD transcript 188107 188811 . + . transcript_id "YAR033W_id003"; gene_id "YAR033W"; gene_name "MST28"; transcript_biotype "protein_coding"; +chrI SGD exon 188107 188811 . + 0 transcript_id "YAR033W_id003"; gene_name "MST28"; gene_id "YAR033W"; +chrI SGD gene 190193 192256 . + . gene_id "YAR035W"; gene_biotype "protein_coding"; +chrI SGD transcript 190193 192256 . + . transcript_id "YAR035W_id001"; gene_id "YAR035W"; gene_name "YAT1"; transcript_biotype "protein_coding"; +chrI SGD exon 190193 192256 . + 0 transcript_id "YAR035W_id001"; gene_name "YAT1"; gene_id "YAR035W"; +chrI SGD gene 192337 192417 . - . gene_id "YAR035C-A"; gene_biotype "protein_coding"; +chrI SGD transcript 192337 192417 . - . transcript_id "YAR035C-A_mRNA"; gene_id "YAR035C-A"; transcript_biotype "protein_coding"; +chrI SGD CDS 192337 192417 . - 0 transcript_id "YAR035C-A_mRNA"; gene_id "YAR035C-A"; +chrI SGD gene 192583 196349 . + . gene_id "YAR042W"; gene_biotype "protein_coding"; +chrI SGD transcript 192583 196349 . + . transcript_id "YAR042W_id001"; gene_id "YAR042W"; gene_name "SWH1"; transcript_biotype "protein_coding"; +chrI SGD exon 192583 196349 . + . transcript_id "YAR042W_id001"; gene_id "YAR042W"; gene_name "SWH1"; +chrI SGD transcript 192619 196185 . + . transcript_id "YAR042W_id002"; gene_id "YAR042W"; gene_name "SWH1"; transcript_biotype "protein_coding"; +chrI SGD exon 192619 196185 . + 0 transcript_id "YAR042W_id002"; gene_name "SWH1"; gene_id "YAR042W"; +chrI SGD gene 201467 201787 . - . gene_id "YAR047C"; gene_biotype "protein_coding"; +chrI SGD transcript 201467 201787 . - . transcript_id "YAR047C_mRNA"; gene_id "YAR047C"; transcript_biotype "protein_coding"; +chrI SGD CDS 201467 201787 . - 0 transcript_id "YAR047C_mRNA"; gene_id "YAR047C"; +chrI SGD gene 203403 208016 . + . gene_id "YAR050W"; gene_biotype "protein_coding"; +chrI SGD transcript 203403 208016 . + . transcript_id "YAR050W_mRNA"; gene_id "YAR050W"; gene_name "FLO1"; transcript_biotype "protein_coding"; +chrI SGD CDS 203403 208016 . + 0 transcript_id "YAR050W_mRNA"; gene_name "FLO1"; gene_id "YAR050W"; +chrI SGD gene 208367 208663 . + . gene_id "YAR053W"; gene_biotype "protein_coding"; +chrI SGD transcript 208367 208663 . + . transcript_id "YAR053W_id001"; gene_id "YAR053W"; transcript_biotype "protein_coding"; +chrI SGD exon 208367 208663 . + 0 transcript_id "YAR053W_id001"; gene_id "YAR053W"; +chrI SGD gene 217157 217492 . - . gene_id "YAR060C"; gene_biotype "protein_coding"; +chrI SGD transcript 217157 217492 . - . transcript_id "YAR060C_mRNA"; gene_id "YAR060C"; transcript_biotype "protein_coding"; +chrI SGD CDS 217157 217492 . - 0 transcript_id "YAR060C_mRNA"; gene_id "YAR060C"; +chrI SGD gene 220198 220497 . + . gene_id "YAR064W"; gene_biotype "protein_coding"; +chrI SGD transcript 220198 220497 . + . transcript_id "YAR064W_mRNA"; gene_id "YAR064W"; transcript_biotype "protein_coding"; +chrI SGD CDS 220198 220497 . + 0 transcript_id "YAR064W_mRNA"; gene_id "YAR064W"; +chrI SGD gene 221049 221660 . + . gene_id "YAR066W"; gene_biotype "protein_coding"; +chrI SGD transcript 221049 221660 . + . transcript_id "YAR066W_mRNA"; gene_id "YAR066W"; transcript_biotype "protein_coding"; +chrI SGD CDS 221049 221660 . + 0 transcript_id "YAR066W_mRNA"; gene_id "YAR066W"; +chrI SGD gene 222406 222891 . + . gene_id "YAR068W"; gene_biotype "protein_coding"; +chrI SGD transcript 222406 222891 . + . transcript_id "YAR068W_mRNA"; gene_id "YAR068W"; transcript_biotype "protein_coding"; +chrI SGD CDS 222406 222891 . + 0 transcript_id "YAR068W_mRNA"; gene_id "YAR068W"; +chrI SGD gene 224011 224304 . - . gene_id "YAR069C"; gene_biotype "protein_coding"; +chrI SGD transcript 224011 224304 . - . transcript_id "YAR069C_mRNA"; gene_id "YAR069C"; transcript_biotype "protein_coding"; +chrI SGD CDS 224011 224304 . - 0 transcript_id "YAR069C_mRNA"; gene_id "YAR069C"; +chrI SGD gene 224563 224862 . - . gene_id "YAR070C"; gene_biotype "protein_coding"; +chrI SGD transcript 224563 224862 . - . transcript_id "YAR070C_mRNA"; gene_id "YAR070C"; transcript_biotype "protein_coding"; +chrI SGD CDS 224563 224862 . - 0 transcript_id "YAR070C_mRNA"; gene_id "YAR070C"; +chrI SGD gene 225460 226863 . + . gene_id "YAR071W"; gene_biotype "protein_coding"; +chrI SGD transcript 225460 226863 . + . transcript_id "YAR071W_mRNA"; gene_id "YAR071W"; gene_name "PHO11"; transcript_biotype "protein_coding"; +chrI SGD CDS 225460 226863 . + 0 transcript_id "YAR071W_mRNA"; gene_name "PHO11"; gene_id "YAR071W"; +chrI SGD gene 227742 228953 . + . gene_id "YAR073W"; gene_biotype "protein_coding"; +chrI SGD transcript 227742 228953 . + . transcript_id "YAR073W_mRNA"; gene_id "YAR073W"; gene_name "IMD1"; transcript_biotype "protein_coding"; +chrI SGD CDS 227742 228953 . + 0 transcript_id "YAR073W_mRNA"; gene_name "IMD1"; gene_id "YAR073W"; +chrI SGD gene 228844 229317 . + . gene_id "YAR075W"; gene_biotype "protein_coding"; +chrI SGD transcript 228844 229317 . + . transcript_id "YAR075W_mRNA"; gene_id "YAR075W"; transcript_biotype "protein_coding"; +chrI SGD CDS 228844 229317 . + 0 transcript_id "YAR075W_mRNA"; gene_id "YAR075W"; +chrII SGD gene 280 2658 . - . gene_id "YBL113C"; gene_biotype "protein_coding"; +chrII SGD transcript 280 2658 . - . transcript_id "YBL113C_mRNA"; gene_id "YBL113C"; transcript_biotype "protein_coding"; +chrII SGD CDS 280 2658 . - 0 transcript_id "YBL113C_mRNA"; gene_id "YBL113C"; +chrII SGD gene 646 1128 . + . gene_id "YBL113W-A"; gene_biotype "protein_coding"; +chrII SGD transcript 646 1128 . + . transcript_id "YBL113W-A_mRNA"; gene_id "YBL113W-A"; transcript_biotype "protein_coding"; +chrII SGD CDS 646 1128 . + 0 transcript_id "YBL113W-A_mRNA"; gene_id "YBL113W-A"; +chrII SGD gene 2582 2899 . - . gene_id "YBL112C"; gene_biotype "protein_coding"; +chrII SGD transcript 2582 2899 . - . transcript_id "YBL112C_mRNA"; gene_id "YBL112C"; transcript_biotype "protein_coding"; +chrII SGD CDS 2582 2899 . - 0 transcript_id "YBL112C_mRNA"; gene_id "YBL112C"; +chrII SGD gene 2907 5009 . - . gene_id "YBL111C"; gene_biotype "protein_coding"; +chrII SGD transcript 2907 5009 . - . transcript_id "YBL111C_mRNA"; gene_id "YBL111C"; transcript_biotype "protein_coding"; +chrII SGD CDS 2907 4116 . - 1 transcript_id "YBL111C_mRNA"; gene_id "YBL111C"; +chrII SGD CDS 4216 5009 . - 0 transcript_id "YBL111C_mRNA"; gene_id "YBL111C"; +chrII SGD gene 5790 6125 . + . gene_id "YBL109W"; gene_biotype "protein_coding"; +chrII SGD transcript 5790 6125 . + . transcript_id "YBL109W_mRNA"; gene_id "YBL109W"; transcript_biotype "protein_coding"; +chrII SGD CDS 5790 6125 . + 0 transcript_id "YBL109W_mRNA"; gene_id "YBL109W"; +chrII SGD gene 7605 7733 . - . gene_id "YBL108C-A"; gene_biotype "protein_coding"; +chrII SGD transcript 7605 7733 . - . transcript_id "YBL108C-A_mRNA"; gene_id "YBL108C-A"; gene_name "PAU9"; transcript_biotype "protein_coding"; +chrII SGD CDS 7605 7733 . - 0 transcript_id "YBL108C-A_mRNA"; gene_name "PAU9"; gene_id "YBL108C-A"; +chrII SGD gene 8177 8482 . + . gene_id "YBL108W"; gene_biotype "protein_coding"; +chrII SGD transcript 8177 8482 . + . transcript_id "YBL108W_mRNA"; gene_id "YBL108W"; transcript_biotype "protein_coding"; +chrII SGD CDS 8177 8482 . + 0 transcript_id "YBL108W_mRNA"; gene_id "YBL108W"; +chrII SGD gene 9268 9372 . + . gene_id "YBL107W-A"; gene_biotype "protein_coding"; +chrII SGD transcript 9268 9372 . + . transcript_id "YBL107W-A_mRNA"; gene_id "YBL107W-A"; transcript_biotype "protein_coding"; +chrII SGD CDS 9268 9372 . + 0 transcript_id "YBL107W-A_mRNA"; gene_id "YBL107W-A"; +chrII SGD gene 9583 9666 . + . gene_id "YNCB0001W"; gene_biotype "ncRNA"; +chrII SGD transcript 9583 9666 . + . transcript_id "YNCB0001W_tRNA"; gene_id "YNCB0001W"; transcript_biotype "ncRNA"; +chrII SGD exon 9583 9666 . + . transcript_id "YNCB0001W_tRNA"; gene_id "YNCB0001W"; +chrII SGD gene 9730 10551 . - . gene_id "YBL107C"; gene_biotype "protein_coding"; +chrII SGD transcript 9730 10551 . - . transcript_id "YBL107C_id002"; gene_id "YBL107C"; gene_name "MIX23"; transcript_biotype "protein_coding"; +chrII SGD exon 9730 10551 . - . transcript_id "YBL107C_id002"; gene_id "YBL107C"; gene_name "MIX23"; +chrII SGD transcript 9961 10551 . - . transcript_id "YBL107C_id001"; gene_id "YBL107C"; gene_name "MIX23"; transcript_biotype "protein_coding"; +chrII SGD exon 9961 10551 . - 0 transcript_id "YBL107C_id001"; gene_name "MIX23"; gene_id "YBL107C"; +chrII SGD gene 10847 13879 . - . gene_id "YBL106C"; gene_biotype "protein_coding"; +chrII SGD transcript 10847 13879 . - . transcript_id "YBL106C_mRNA"; gene_id "YBL106C"; gene_name "SRO77"; transcript_biotype "protein_coding"; +chrII SGD CDS 10847 13879 . - 0 transcript_id "YBL106C_mRNA"; gene_name "SRO77"; gene_id "YBL106C"; +chrII SGD gene 14104 17962 . - . gene_id "YBL105C"; gene_biotype "protein_coding"; +chrII SGD transcript 14104 17962 . - . transcript_id "YBL105C_id002"; gene_id "YBL105C"; gene_name "PKC1"; transcript_biotype "protein_coding"; +chrII SGD exon 14104 17962 . - . transcript_id "YBL105C_id002"; gene_id "YBL105C"; gene_name "PKC1"; +chrII SGD transcript 14241 17696 . - . transcript_id "YBL105C_id001"; gene_id "YBL105C"; gene_name "PKC1"; transcript_biotype "protein_coding"; +chrII SGD exon 14241 17696 . - 0 transcript_id "YBL105C_id001"; gene_name "PKC1"; gene_id "YBL105C"; +chrII SGD gene 18177 21293 . - . gene_id "YBL104C"; gene_biotype "protein_coding"; +chrII SGD transcript 18177 21293 . - . transcript_id "YBL104C_id001"; gene_id "YBL104C"; gene_name "SEA4"; transcript_biotype "protein_coding"; +chrII SGD exon 18177 21293 . - 0 transcript_id "YBL104C_id001"; gene_name "SEA4"; gene_id "YBL104C"; +chrII SGD gene 21573 23790 . - . gene_id "YBL103C"; gene_biotype "protein_coding"; +chrII SGD transcript 21573 23790 . - . transcript_id "YBL103C_id001"; gene_id "YBL103C"; gene_name "RTG3"; transcript_biotype "protein_coding"; +chrII SGD exon 21573 23790 . - . transcript_id "YBL103C_id001"; gene_id "YBL103C"; gene_name "RTG3"; +chrII SGD transcript 22076 23536 . - . transcript_id "YBL103C_id003"; gene_id "YBL103C"; gene_name "RTG3"; transcript_biotype "protein_coding"; +chrII SGD exon 22076 23536 . - 0 transcript_id "YBL103C_id003"; gene_name "RTG3"; gene_id "YBL103C"; +chrII SGD gene 23879 24938 . + . gene_id "YBL102W"; gene_biotype "protein_coding"; +chrII SGD transcript 23879 24938 . + . transcript_id "YBL102W_id001"; gene_id "YBL102W"; gene_name "SFT2"; transcript_biotype "protein_coding"; +chrII SGD exon 23879 24938 . + . transcript_id "YBL102W_id001"; gene_id "YBL102W"; gene_name "SFT2"; +chrII SGD transcript 24098 24745 . + . transcript_id "YBL102W_id002"; gene_id "YBL102W"; gene_name "SFT2"; transcript_biotype "protein_coding"; +chrII SGD exon 24098 24745 . + 0 transcript_id "YBL102W_id002"; gene_name "SFT2"; gene_id "YBL102W"; +chrII SGD gene 24946 28299 . - . gene_id "YBL101C"; gene_biotype "protein_coding"; +chrII SGD transcript 24946 28299 . - . transcript_id "YBL101C_id001"; gene_id "YBL101C"; gene_name "ECM21"; transcript_biotype "protein_coding"; +chrII SGD exon 24946 28299 . - 0 transcript_id "YBL101C_id001"; gene_name "ECM21"; gene_id "YBL101C"; +chrII SGD gene 28427 28546 . + . gene_id "YBL100W-C"; gene_biotype "protein_coding"; +chrII SGD transcript 28427 28546 . + . transcript_id "YBL100W-C_id001"; gene_id "YBL100W-C"; transcript_biotype "protein_coding"; +chrII SGD exon 28427 28546 . + 0 transcript_id "YBL100W-C_id001"; gene_id "YBL100W-C"; +chrII SGD gene 29935 31251 . + . gene_id "YBL100W-A"; gene_biotype "protein_coding"; +chrII SGD transcript 29935 31251 . + . transcript_id "YBL100W-A_dummy"; gene_id "YBL100W-A"; transcript_biotype "protein_coding"; +chrII SGD exon 29935 31251 . + 0 transcript_id "YBL100W-A_dummy"; gene_id "YBL100W-A"; +chrII SGD gene 29935 35248 . + . gene_id "YBL100W-B"; gene_biotype "protein_coding"; +chrII SGD transcript 29935 35248 . + . transcript_id "YBL100W-B_dummy"; gene_id "YBL100W-B"; transcript_biotype "protein_coding"; +chrII SGD exon 29935 31227 . + 0 transcript_id "YBL100W-B_dummy"; gene_id "YBL100W-B"; +chrII SGD exon 31229 35248 . + 0 transcript_id "YBL100W-B_dummy"; gene_id "YBL100W-B"; +chrII SGD gene 36398 36488 . + . gene_id "YNCB0002W"; gene_biotype "ncRNA"; +chrII SGD transcript 36398 36488 . + . transcript_id "YNCB0002W_tRNA"; gene_id "YNCB0002W"; transcript_biotype "ncRNA"; +chrII SGD exon 36398 36434 . + . transcript_id "YNCB0002W_tRNA"; gene_id "YNCB0002W"; +chrII SGD exon 36453 36488 . + . transcript_id "YNCB0002W_tRNA"; gene_id "YNCB0002W"; +chrII SGD gene 36702 38982 . + . gene_id "YBL099W"; gene_biotype "protein_coding"; +chrII SGD transcript 36702 38982 . + . transcript_id "YBL099W_id002"; gene_id "YBL099W"; gene_name "ATP1"; transcript_biotype "protein_coding"; +chrII SGD exon 36702 38982 . + . transcript_id "YBL099W_id002"; gene_id "YBL099W"; gene_name "ATP1"; +chrII SGD gene 36989 37303 . - . gene_id "YBL100C"; gene_biotype "protein_coding"; +chrII SGD transcript 36989 37303 . - . transcript_id "YBL100C_mRNA"; gene_id "YBL100C"; transcript_biotype "protein_coding"; +chrII SGD CDS 36989 37303 . - 0 transcript_id "YBL100C_mRNA"; gene_id "YBL100C"; +chrII SGD transcript 37053 38690 . + . transcript_id "YBL099W_id001"; gene_id "YBL099W"; gene_name "ATP1"; transcript_biotype "protein_coding"; +chrII SGD exon 37053 38690 . + 0 transcript_id "YBL099W_id001"; gene_name "ATP1"; gene_id "YBL099W"; +chrII SGD gene 39145 40527 . + . gene_id "YBL098W"; gene_biotype "protein_coding"; +chrII SGD transcript 39145 40527 . + . transcript_id "YBL098W_mRNA"; gene_id "YBL098W"; gene_name "BNA4"; transcript_biotype "protein_coding"; +chrII SGD CDS 39145 40527 . + 0 transcript_id "YBL098W_mRNA"; gene_name "BNA4"; gene_id "YBL098W"; +chrII SGD gene 40831 43095 . + . gene_id "YBL097W"; gene_biotype "protein_coding"; +chrII SGD transcript 40831 43095 . + . transcript_id "YBL097W_mRNA"; gene_id "YBL097W"; gene_name "BRN1"; transcript_biotype "protein_coding"; +chrII SGD CDS 40831 43095 . + 0 transcript_id "YBL097W_mRNA"; gene_name "BRN1"; gene_id "YBL097W"; +chrII SGD gene 43174 43482 . - . gene_id "YBL096C"; gene_biotype "protein_coding"; +chrII SGD transcript 43174 43482 . - . transcript_id "YBL096C_id001"; gene_id "YBL096C"; transcript_biotype "protein_coding"; +chrII SGD exon 43174 43482 . - 0 transcript_id "YBL096C_id001"; gene_id "YBL096C"; +chrII SGD gene 43277 44341 . + . gene_id "YBL095W"; gene_biotype "protein_coding"; +chrII SGD transcript 43277 44089 . + . transcript_id "YBL095W_id001"; gene_id "YBL095W"; gene_name "MRX3"; transcript_biotype "protein_coding"; +chrII SGD exon 43277 44089 . + 0 transcript_id "YBL095W_id001"; gene_name "MRX3"; gene_id "YBL095W"; +chrII SGD transcript 43277 44341 . + . transcript_id "YBL095W_id003"; gene_id "YBL095W"; gene_name "MRX3"; transcript_biotype "protein_coding"; +chrII SGD exon 43277 44341 . + . transcript_id "YBL095W_id003"; gene_id "YBL095W"; gene_name "MRX3"; +chrII SGD gene 43765 44097 . - . gene_id "YBL094C"; gene_biotype "protein_coding"; +chrII SGD transcript 43765 44097 . - . transcript_id "YBL094C_mRNA"; gene_id "YBL094C"; transcript_biotype "protein_coding"; +chrII SGD CDS 43765 44097 . - 0 transcript_id "YBL094C_mRNA"; gene_id "YBL094C"; +chrII SGD gene 43818 44998 . - . gene_id "YBL093C"; gene_biotype "protein_coding"; +chrII SGD transcript 43818 44998 . - . transcript_id "YBL093C_id002"; gene_id "YBL093C"; gene_name "ROX3"; transcript_biotype "protein_coding"; +chrII SGD exon 43818 44998 . - . transcript_id "YBL093C_id002"; gene_id "YBL093C"; gene_name "ROX3"; +chrII SGD transcript 44256 44918 . - . transcript_id "YBL093C_id001"; gene_id "YBL093C"; gene_name "ROX3"; transcript_biotype "protein_coding"; +chrII SGD exon 44256 44918 . - 0 transcript_id "YBL093C_id001"; gene_name "ROX3"; gene_id "YBL093C"; +chrII SGD gene 45281 46514 . + . gene_id "YBL092W"; gene_biotype "protein_coding"; +chrII SGD transcript 45281 46514 . + . transcript_id "YBL092W_id001"; gene_id "YBL092W"; gene_name "RPL32"; transcript_biotype "protein_coding"; +chrII SGD exon 45281 46514 . + . transcript_id "YBL092W_id001"; gene_id "YBL092W"; gene_name "RPL32"; +chrII SGD transcript 45645 46370 . + . transcript_id "YBL092W_id002"; gene_id "YBL092W"; gene_name "RPL32"; transcript_biotype "protein_coding"; +chrII SGD exon 45645 46370 . + . transcript_id "YBL092W_id002"; gene_name "RPL32"; gene_id "YBL092W"; +chrII SGD exon 45978 46370 . + 0 transcript_id "YBL092W_id002"; gene_name "RPL32"; gene_id "YBL092W"; +chrII SGD gene 46322 47185 . - . gene_id "YBL091C-A"; gene_biotype "protein_coding"; +chrII SGD transcript 46322 47185 . - . transcript_id "YBL091C-A_id001"; gene_id "YBL091C-A"; gene_name "SCS22"; transcript_biotype "protein_coding"; +chrII SGD exon 46322 47185 . - . transcript_id "YBL091C-A_id001"; gene_id "YBL091C-A"; gene_name "SCS22"; +chrII SGD transcript 46565 47180 . - . transcript_id "YBL091C-A_id002"; gene_id "YBL091C-A"; gene_name "SCS22"; transcript_biotype "protein_coding"; +chrII SGD exon 46565 47058 . - 2 transcript_id "YBL091C-A_id002"; gene_name "SCS22"; gene_id "YBL091C-A"; +chrII SGD exon 47147 47180 . - 0 transcript_id "YBL091C-A_id002"; gene_name "SCS22"; gene_id "YBL091C-A"; +chrII SGD gene 47010 48636 . - . gene_id "YBL091C"; gene_biotype "protein_coding"; +chrII SGD transcript 47010 48636 . - . transcript_id "YBL091C_id001"; gene_id "YBL091C"; gene_name "MAP2"; transcript_biotype "protein_coding"; +chrII SGD exon 47010 48636 . - . transcript_id "YBL091C_id001"; gene_id "YBL091C"; gene_name "MAP2"; +chrII SGD transcript 47363 48628 . - . transcript_id "YBL091C_id002"; gene_id "YBL091C"; gene_name "MAP2"; transcript_biotype "protein_coding"; +chrII SGD exon 47363 48628 . - 0 transcript_id "YBL091C_id002"; gene_name "MAP2"; gene_id "YBL091C"; +chrII SGD gene 48785 49577 . + . gene_id "YBL090W"; gene_biotype "protein_coding"; +chrII SGD transcript 48785 49577 . + . transcript_id "YBL090W_id003"; gene_id "YBL090W"; gene_name "MRP21"; transcript_biotype "protein_coding"; +chrII SGD exon 48785 49577 . + . transcript_id "YBL090W_id003"; gene_id "YBL090W"; gene_name "MRP21"; +chrII SGD transcript 48825 49358 . + . transcript_id "YBL090W_id001"; gene_id "YBL090W"; gene_name "MRP21"; transcript_biotype "protein_coding"; +chrII SGD exon 48825 49358 . + 0 transcript_id "YBL090W_id001"; gene_name "MRP21"; gene_id "YBL090W"; +chrII SGD gene 49558 51234 . + . gene_id "YBL089W"; gene_biotype "protein_coding"; +chrII SGD transcript 49558 51234 . + . transcript_id "YBL089W_id004"; gene_id "YBL089W"; gene_name "AVT5"; transcript_biotype "protein_coding"; +chrII SGD exon 49558 51234 . + . transcript_id "YBL089W_id004"; gene_id "YBL089W"; gene_name "AVT5"; +chrII SGD transcript 49574 50953 . + . transcript_id "YBL089W_id001"; gene_id "YBL089W"; gene_name "AVT5"; transcript_biotype "protein_coding"; +chrII SGD exon 49574 50953 . + 0 transcript_id "YBL089W_id001"; gene_name "AVT5"; gene_id "YBL089W"; +chrII SGD gene 51019 59382 . - . gene_id "YBL088C"; gene_biotype "protein_coding"; +chrII SGD transcript 51019 59382 . - . transcript_id "YBL088C_mRNA"; gene_id "YBL088C"; gene_name "TEL1"; transcript_biotype "protein_coding"; +chrII SGD CDS 51019 59382 . - 0 transcript_id "YBL088C_mRNA"; gene_name "TEL1"; gene_id "YBL088C"; +chrII SGD gene 59593 60845 . - . gene_id "YBL087C"; gene_biotype "protein_coding"; +chrII SGD transcript 59593 60845 . - . transcript_id "YBL087C_id001"; gene_id "YBL087C"; gene_name "RPL23A"; transcript_biotype "protein_coding"; +chrII SGD exon 59593 60845 . - . transcript_id "YBL087C_id001"; gene_id "YBL087C"; gene_name "RPL23A"; +chrII SGD transcript 59822 60739 . - . transcript_id "YBL087C_id002"; gene_id "YBL087C"; gene_name "RPL23A"; transcript_biotype "protein_coding"; +chrII SGD exon 59822 60193 . - 0 transcript_id "YBL087C_id002"; gene_name "RPL23A"; gene_id "YBL087C"; +chrII SGD exon 60698 60739 . - 0 transcript_id "YBL087C_id002"; gene_name "RPL23A"; gene_id "YBL087C"; +chrII SGD gene 61202 62602 . - . gene_id "YBL086C"; gene_biotype "protein_coding"; +chrII SGD transcript 61202 62602 . - . transcript_id "YBL086C_id001"; gene_id "YBL086C"; transcript_biotype "protein_coding"; +chrII SGD exon 61202 62602 . - 0 transcript_id "YBL086C_id001"; gene_id "YBL086C"; +chrII SGD gene 63674 66938 . + . gene_id "YBL085W"; gene_biotype "protein_coding"; +chrII SGD transcript 63674 66938 . + . transcript_id "YBL085W_id001"; gene_id "YBL085W"; gene_name "BOI1"; transcript_biotype "protein_coding"; +chrII SGD exon 63674 66938 . + . transcript_id "YBL085W_id001"; gene_id "YBL085W"; gene_name "BOI1"; +chrII SGD transcript 63876 66818 . + . transcript_id "YBL085W_id002"; gene_id "YBL085W"; gene_name "BOI1"; transcript_biotype "protein_coding"; +chrII SGD exon 63876 66818 . + 0 transcript_id "YBL085W_id002"; gene_name "BOI1"; gene_id "YBL085W"; +chrII SGD gene 67169 69445 . - . gene_id "YBL084C"; gene_biotype "protein_coding"; +chrII SGD transcript 67169 69445 . - . transcript_id "YBL084C_mRNA"; gene_id "YBL084C"; gene_name "CDC27"; transcript_biotype "protein_coding"; +chrII SGD CDS 67169 69445 . - 0 transcript_id "YBL084C_mRNA"; gene_name "CDC27"; gene_id "YBL084C"; +chrII SGD gene 69698 71093 . - . gene_id "YBL083C"; gene_biotype "protein_coding"; +chrII SGD transcript 69698 71093 . - . transcript_id "YBL083C_id001"; gene_id "YBL083C"; transcript_biotype "protein_coding"; +chrII SGD exon 69698 71093 . - . transcript_id "YBL083C_id001"; gene_id "YBL083C"; +chrII SGD transcript 69713 70138 . - . transcript_id "YBL083C_id002"; gene_id "YBL083C"; transcript_biotype "protein_coding"; +chrII SGD exon 69713 70138 . - 0 transcript_id "YBL083C_id002"; gene_id "YBL083C"; +chrII SGD gene 69715 71173 . - . gene_id "YBL082C"; gene_biotype "protein_coding"; +chrII SGD transcript 69715 71173 . - . transcript_id "YBL082C_id003"; gene_id "YBL082C"; gene_name "ALG3"; transcript_biotype "protein_coding"; +chrII SGD exon 69715 71173 . - . transcript_id "YBL082C_id003"; gene_id "YBL082C"; gene_name "ALG3"; +chrII SGD transcript 69751 71127 . - . transcript_id "YBL082C_id001"; gene_id "YBL082C"; gene_name "ALG3"; transcript_biotype "protein_coding"; +chrII SGD exon 69751 71127 . - 0 transcript_id "YBL082C_id001"; gene_name "ALG3"; gene_id "YBL082C"; +chrII SGD gene 71317 73109 . + . gene_id "YBL081W"; gene_biotype "protein_coding"; +chrII SGD transcript 71317 73109 . + . transcript_id "YBL081W_id001"; gene_id "YBL081W"; transcript_biotype "protein_coding"; +chrII SGD exon 71317 73109 . + . transcript_id "YBL081W_id001"; gene_id "YBL081W"; +chrII SGD transcript 71866 72972 . + . transcript_id "YBL081W_id002"; gene_id "YBL081W"; transcript_biotype "protein_coding"; +chrII SGD exon 71866 72972 . + 0 transcript_id "YBL081W_id002"; gene_id "YBL081W"; +chrII SGD gene 72946 74748 . - . gene_id "YBL080C"; gene_biotype "protein_coding"; +chrII SGD transcript 72946 74748 . - . transcript_id "YBL080C_id001"; gene_id "YBL080C"; gene_name "PET112"; transcript_biotype "protein_coding"; +chrII SGD exon 72946 74748 . - . transcript_id "YBL080C_id001"; gene_id "YBL080C"; gene_name "PET112"; +chrII SGD transcript 73070 74695 . - . transcript_id "YBL080C_id002"; gene_id "YBL080C"; gene_name "PET112"; transcript_biotype "protein_coding"; +chrII SGD exon 73070 74695 . - 0 transcript_id "YBL080C_id002"; gene_name "PET112"; gene_id "YBL080C"; +chrII SGD gene 75259 79767 . + . gene_id "YBL079W"; gene_biotype "protein_coding"; +chrII SGD transcript 75259 79767 . + . transcript_id "YBL079W_mRNA"; gene_id "YBL079W"; gene_name "NUP170"; transcript_biotype "protein_coding"; +chrII SGD CDS 75259 79767 . + 0 transcript_id "YBL079W_mRNA"; gene_name "NUP170"; gene_id "YBL079W"; +chrII SGD gene 79897 80775 . - . gene_id "YBL078C"; gene_biotype "protein_coding"; +chrII SGD transcript 79897 80775 . - . transcript_id "YBL078C_id016"; gene_id "YBL078C"; gene_name "ATG8"; transcript_biotype "protein_coding"; +chrII SGD exon 79897 80775 . - . transcript_id "YBL078C_id016"; gene_id "YBL078C"; gene_name "ATG8"; +chrII SGD transcript 80378 80731 . - . transcript_id "YBL078C_id001"; gene_id "YBL078C"; gene_name "ATG8"; transcript_biotype "protein_coding"; +chrII SGD exon 80378 80731 . - 0 transcript_id "YBL078C_id001"; gene_name "ATG8"; gene_id "YBL078C"; +chrII SGD gene 80897 81328 . + . gene_id "YBL077W"; gene_biotype "protein_coding"; +chrII SGD transcript 80897 81328 . + . transcript_id "YBL077W_mRNA"; gene_id "YBL077W"; transcript_biotype "protein_coding"; +chrII SGD CDS 80897 81328 . + 0 transcript_id "YBL077W_mRNA"; gene_id "YBL077W"; +chrII SGD gene 80947 84307 . - . gene_id "YBL076C"; gene_biotype "protein_coding"; +chrII SGD transcript 80947 84307 . - . transcript_id "YBL076C_id002"; gene_id "YBL076C"; gene_name "ILS1"; transcript_biotype "protein_coding"; +chrII SGD exon 80947 84307 . - . transcript_id "YBL076C_id002"; gene_id "YBL076C"; gene_name "ILS1"; +chrII SGD transcript 81043 84261 . - . transcript_id "YBL076C_id001"; gene_id "YBL076C"; gene_name "ILS1"; transcript_biotype "protein_coding"; +chrII SGD exon 81043 84261 . - 0 transcript_id "YBL076C_id001"; gene_name "ILS1"; gene_id "YBL076C"; +chrII SGD gene 84418 86984 . - . gene_id "YBL075C"; gene_biotype "protein_coding"; +chrII SGD transcript 84418 86984 . - . transcript_id "YBL075C_id001"; gene_id "YBL075C"; gene_name "SSA3"; transcript_biotype "protein_coding"; +chrII SGD exon 84418 86984 . - . transcript_id "YBL075C_id001"; gene_id "YBL075C"; gene_name "SSA3"; +chrII SGD transcript 84499 86448 . - . transcript_id "YBL075C_id002"; gene_id "YBL075C"; gene_name "SSA3"; transcript_biotype "protein_coding"; +chrII SGD exon 84499 86448 . - 0 transcript_id "YBL075C_id002"; gene_name "SSA3"; gene_id "YBL075C"; +chrII SGD gene 86433 87808 . - . gene_id "YBL074C"; gene_biotype "protein_coding"; +chrII SGD transcript 86433 87808 . - . transcript_id "YBL074C_id001"; gene_id "YBL074C"; gene_name "AAR2"; transcript_biotype "protein_coding"; +chrII SGD exon 86433 87808 . - . transcript_id "YBL074C_id001"; gene_id "YBL074C"; gene_name "AAR2"; +chrII SGD transcript 86722 87789 . - . transcript_id "YBL074C_id002"; gene_id "YBL074C"; gene_name "AAR2"; transcript_biotype "protein_coding"; +chrII SGD exon 86722 87789 . - 0 transcript_id "YBL074C_id002"; gene_name "AAR2"; gene_id "YBL074C"; +chrII SGD gene 87646 87957 . + . gene_id "YBL073W"; gene_biotype "protein_coding"; +chrII SGD transcript 87646 87957 . + . transcript_id "YBL073W_mRNA"; gene_id "YBL073W"; transcript_biotype "protein_coding"; +chrII SGD CDS 87646 87957 . + 0 transcript_id "YBL073W_mRNA"; gene_id "YBL073W"; +chrII SGD gene 88190 88277 . + . gene_id "YNCB0003W"; gene_biotype "ncRNA"; +chrII SGD transcript 88190 88277 . + . transcript_id "YNCB0003W_snoRNA"; gene_id "YNCB0003W"; gene_name "SNR56"; transcript_biotype "ncRNA"; +chrII SGD exon 88190 88277 . + . transcript_id "YNCB0003W_snoRNA"; gene_name "SNR56"; gene_id "YNCB0003W"; +chrII SGD gene 88246 89465 . - . gene_id "YBL072C"; gene_biotype "protein_coding"; +chrII SGD transcript 88246 89465 . - . transcript_id "YBL072C_id002"; gene_id "YBL072C"; gene_name "RPS8A"; transcript_biotype "protein_coding"; +chrII SGD exon 88246 89465 . - . transcript_id "YBL072C_id002"; gene_id "YBL072C"; gene_name "RPS8A"; +chrII SGD transcript 88523 89440 . - . transcript_id "YBL072C_id001"; gene_id "YBL072C"; gene_name "RPS8A"; transcript_biotype "protein_coding"; +chrII SGD exon 88523 89125 . - . transcript_id "YBL072C_id001"; gene_name "RPS8A"; gene_id "YBL072C"; +chrII SGD exon 89133 89440 . - . transcript_id "YBL072C_id001"; gene_name "RPS8A"; gene_id "YBL072C"; +chrII SGD exon 88523 89125 . - 0 transcript_id "YBL072C_id001"; gene_name "RPS8A"; gene_id "YBL072C"; +chrII SGD gene 89458 89556 . - . gene_id "YBL071C-B"; gene_biotype "protein_coding"; +chrII SGD transcript 89458 89556 . - . transcript_id "YBL071C-B_mRNA"; gene_id "YBL071C-B"; transcript_biotype "protein_coding"; +chrII SGD CDS 89458 89556 . - 0 transcript_id "YBL071C-B_mRNA"; gene_id "YBL071C-B"; +chrII SGD gene 89935 90746 . + . gene_id "YBL071W-A"; gene_biotype "protein_coding"; +chrII SGD transcript 89935 90746 . + . transcript_id "YBL071W-A_id001"; gene_id "YBL071W-A"; gene_name "KTI11"; transcript_biotype "protein_coding"; +chrII SGD exon 89935 90746 . + . transcript_id "YBL071W-A_id001"; gene_id "YBL071W-A"; gene_name "KTI11"; +chrII SGD transcript 89978 90226 . + . transcript_id "YBL071W-A_id003"; gene_id "YBL071W-A"; gene_name "KTI11"; transcript_biotype "protein_coding"; +chrII SGD exon 89978 90226 . + 0 transcript_id "YBL071W-A_id003"; gene_name "KTI11"; gene_id "YBL071W-A"; +chrII SGD gene 90223 90531 . - . gene_id "YBL071C"; gene_biotype "protein_coding"; +chrII SGD transcript 90223 90531 . - . transcript_id "YBL071C_id001"; gene_id "YBL071C"; transcript_biotype "protein_coding"; +chrII SGD exon 90223 90531 . - 0 transcript_id "YBL071C_id001"; gene_id "YBL071C"; +chrII SGD gene 90605 90925 . - . gene_id "YBL070C"; gene_biotype "protein_coding"; +chrII SGD transcript 90605 90925 . - . transcript_id "YBL070C_mRNA"; gene_id "YBL070C"; transcript_biotype "protein_coding"; +chrII SGD CDS 90605 90925 . - 0 transcript_id "YBL070C_mRNA"; gene_id "YBL070C"; +chrII SGD gene 90741 92030 . + . gene_id "YBL069W"; gene_biotype "protein_coding"; +chrII SGD transcript 90741 92030 . + . transcript_id "YBL069W_id001"; gene_id "YBL069W"; gene_name "AST1"; transcript_biotype "protein_coding"; +chrII SGD exon 90741 92030 . + 0 transcript_id "YBL069W_id001"; gene_name "AST1"; gene_id "YBL069W"; +chrII SGD gene 91120 92228 . + . gene_id "YBL068W-A"; gene_biotype "protein_coding"; +chrII SGD transcript 91120 92228 . + . transcript_id "YBL068W-A_id002"; gene_id "YBL068W-A"; transcript_biotype "protein_coding"; +chrII SGD exon 91120 92228 . + . transcript_id "YBL068W-A_id002"; gene_id "YBL068W-A"; +chrII SGD transcript 91794 92030 . + . transcript_id "YBL068W-A_id001"; gene_id "YBL068W-A"; transcript_biotype "protein_coding"; +chrII SGD exon 91794 92030 . + 0 transcript_id "YBL068W-A_id001"; gene_id "YBL068W-A"; +chrII SGD gene 92356 93912 . + . gene_id "YBL068W"; gene_biotype "protein_coding"; +chrII SGD transcript 92356 93912 . + . transcript_id "YBL068W_id001"; gene_id "YBL068W"; gene_name "PRS4"; transcript_biotype "protein_coding"; +chrII SGD exon 92356 93912 . + . transcript_id "YBL068W_id001"; gene_id "YBL068W"; gene_name "PRS4"; +chrII SGD transcript 92414 93394 . + . transcript_id "YBL068W_id002"; gene_id "YBL068W"; gene_name "PRS4"; transcript_biotype "protein_coding"; +chrII SGD exon 92414 93394 . + 0 transcript_id "YBL068W_id002"; gene_name "PRS4"; gene_id "YBL068W"; +chrII SGD gene 93639 95882 . - . gene_id "YBL067C"; gene_biotype "protein_coding"; +chrII SGD transcript 93639 95882 . - . transcript_id "YBL067C_mRNA"; gene_id "YBL067C"; gene_name "UBP13"; transcript_biotype "protein_coding"; +chrII SGD CDS 93639 95882 . - 0 transcript_id "YBL067C_mRNA"; gene_name "UBP13"; gene_id "YBL067C"; +chrII SGD gene 96669 100115 . - . gene_id "YBL066C"; gene_biotype "protein_coding"; +chrII SGD transcript 96669 100115 . - . transcript_id "YBL066C_mRNA"; gene_id "YBL066C"; gene_name "SEF1"; transcript_biotype "protein_coding"; +chrII SGD CDS 96669 100115 . - 0 transcript_id "YBL066C_mRNA"; gene_name "SEF1"; gene_id "YBL066C"; +chrII SGD gene 99963 100307 . + . gene_id "YBL065W"; gene_biotype "protein_coding"; +chrII SGD transcript 99963 100307 . + . transcript_id "YBL065W_mRNA"; gene_id "YBL065W"; transcript_biotype "protein_coding"; +chrII SGD CDS 99963 100307 . + 0 transcript_id "YBL065W_mRNA"; gene_id "YBL065W"; +chrII SGD gene 100306 101420 . - . gene_id "YBL064C"; gene_biotype "protein_coding"; +chrII SGD transcript 100306 101420 . - . transcript_id "YBL064C_id001"; gene_id "YBL064C"; gene_name "PRX1"; transcript_biotype "protein_coding"; +chrII SGD exon 100306 101420 . - . transcript_id "YBL064C_id001"; gene_id "YBL064C"; gene_name "PRX1"; +chrII SGD transcript 100371 101156 . - . transcript_id "YBL064C_id002"; gene_id "YBL064C"; gene_name "PRX1"; transcript_biotype "protein_coding"; +chrII SGD exon 100371 101156 . - 0 transcript_id "YBL064C_id002"; gene_name "PRX1"; gene_id "YBL064C"; +chrII SGD gene 101886 105221 . + . gene_id "YBL063W"; gene_biotype "protein_coding"; +chrII SGD transcript 101886 105221 . + . transcript_id "YBL063W_mRNA"; gene_id "YBL063W"; gene_name "KIP1"; transcript_biotype "protein_coding"; +chrII SGD CDS 101886 105221 . + 0 transcript_id "YBL063W_mRNA"; gene_name "KIP1"; gene_id "YBL063W"; +chrII SGD gene 105195 107514 . - . gene_id "YBL061C"; gene_biotype "protein_coding"; +chrII SGD transcript 105195 107514 . - . transcript_id "YBL061C_id001"; gene_id "YBL061C"; gene_name "SKT5"; transcript_biotype "protein_coding"; +chrII SGD exon 105195 107514 . - . transcript_id "YBL061C_id001"; gene_id "YBL061C"; gene_name "SKT5"; +chrII SGD gene 105308 105688 . + . gene_id "YBL062W"; gene_biotype "protein_coding"; +chrII SGD transcript 105308 105688 . + . transcript_id "YBL062W_mRNA"; gene_id "YBL062W"; transcript_biotype "protein_coding"; +chrII SGD CDS 105308 105688 . + 0 transcript_id "YBL062W_mRNA"; gene_id "YBL062W"; +chrII SGD transcript 105316 107406 . - . transcript_id "YBL061C_id002"; gene_id "YBL061C"; gene_name "SKT5"; transcript_biotype "protein_coding"; +chrII SGD exon 105316 107406 . - 0 transcript_id "YBL061C_id002"; gene_name "SKT5"; gene_id "YBL061C"; +chrII SGD gene 107701 110033 . + . gene_id "YBL060W"; gene_biotype "protein_coding"; +chrII SGD transcript 107701 110033 . + . transcript_id "YBL060W_id001"; gene_id "YBL060W"; gene_name "YEL1"; transcript_biotype "protein_coding"; +chrII SGD exon 107701 110033 . + . transcript_id "YBL060W_id001"; gene_id "YBL060W"; gene_name "YEL1"; +chrII SGD transcript 107932 109995 . + . transcript_id "YBL060W_id004"; gene_id "YBL060W"; gene_name "YEL1"; transcript_biotype "protein_coding"; +chrII SGD exon 107932 109995 . + 0 transcript_id "YBL060W_id004"; gene_name "YEL1"; gene_id "YBL060W"; +chrII SGD gene 109917 111201 . - . gene_id "YBL059C-A"; gene_biotype "protein_coding"; +chrII SGD transcript 109917 111201 . - . transcript_id "YBL059C-A_id004"; gene_id "YBL059C-A"; gene_name "CMC2"; transcript_biotype "protein_coding"; +chrII SGD exon 109917 111201 . - . transcript_id "YBL059C-A_id004"; gene_id "YBL059C-A"; gene_name "CMC2"; +chrII SGD transcript 110125 110539 . - . transcript_id "YBL059C-A_id001"; gene_id "YBL059C-A"; gene_name "CMC2"; transcript_biotype "protein_coding"; +chrII SGD exon 110125 110420 . - 2 transcript_id "YBL059C-A_id001"; gene_name "CMC2"; gene_id "YBL059C-A"; +chrII SGD exon 110506 110539 . - 0 transcript_id "YBL059C-A_id001"; gene_name "CMC2"; gene_id "YBL059C-A"; +chrII SGD gene 110594 111244 . + . gene_id "YBL059W"; gene_biotype "protein_coding"; +chrII SGD transcript 110594 111244 . + . transcript_id "YBL059W_mRNA"; gene_id "YBL059W"; gene_name "IAI11"; transcript_biotype "protein_coding"; +chrII SGD CDS 110594 110879 . + 0 transcript_id "YBL059W_mRNA"; gene_name "IAI11"; gene_id "YBL059W"; +chrII SGD CDS 110949 111244 . + 2 transcript_id "YBL059W_mRNA"; gene_name "IAI11"; gene_id "YBL059W"; +chrII SGD gene 111437 112708 . + . gene_id "YBL058W"; gene_biotype "protein_coding"; +chrII SGD transcript 111437 112708 . + . transcript_id "YBL058W_id001"; gene_id "YBL058W"; gene_name "SHP1"; transcript_biotype "protein_coding"; +chrII SGD exon 111437 112708 . + 0 transcript_id "YBL058W_id001"; gene_name "SHP1"; gene_id "YBL058W"; +chrII SGD gene 112277 113442 . - . gene_id "YBL057C"; gene_biotype "protein_coding"; +chrII SGD transcript 112277 113442 . - . transcript_id "YBL057C_id002"; gene_id "YBL057C"; gene_name "PTH2"; transcript_biotype "protein_coding"; +chrII SGD exon 112277 113442 . - . transcript_id "YBL057C_id002"; gene_id "YBL057C"; gene_name "PTH2"; +chrII SGD transcript 112801 113427 . - . transcript_id "YBL057C_id001"; gene_id "YBL057C"; gene_name "PTH2"; transcript_biotype "protein_coding"; +chrII SGD exon 112801 113427 . - 0 transcript_id "YBL057C_id001"; gene_name "PTH2"; gene_id "YBL057C"; +chrII SGD gene 113626 115581 . + . gene_id "YBL056W"; gene_biotype "protein_coding"; +chrII SGD transcript 113626 115581 . + . transcript_id "YBL056W_id003"; gene_id "YBL056W"; gene_name "PTC3"; transcript_biotype "protein_coding"; +chrII SGD exon 113626 115581 . + . transcript_id "YBL056W_id003"; gene_id "YBL056W"; gene_name "PTC3"; +chrII SGD transcript 113762 115168 . + . transcript_id "YBL056W_id001"; gene_id "YBL056W"; gene_name "PTC3"; transcript_biotype "protein_coding"; +chrII SGD exon 113762 115168 . + 0 transcript_id "YBL056W_id001"; gene_name "PTC3"; gene_id "YBL056W"; +chrII SGD gene 115477 117224 . - . gene_id "YBL055C"; gene_biotype "protein_coding"; +chrII SGD transcript 115477 117224 . - . transcript_id "YBL055C_id001"; gene_id "YBL055C"; transcript_biotype "protein_coding"; +chrII SGD exon 115477 117224 . - . transcript_id "YBL055C_id001"; gene_id "YBL055C"; +chrII SGD transcript 115573 116829 . - . transcript_id "YBL055C_id003"; gene_id "YBL055C"; transcript_biotype "protein_coding"; +chrII SGD exon 115573 116829 . - 0 transcript_id "YBL055C_id003"; gene_id "YBL055C"; +chrII SGD gene 117412 119359 . + . gene_id "YBL054W"; gene_biotype "protein_coding"; +chrII SGD transcript 117412 119359 . + . transcript_id "YBL054W_id002"; gene_id "YBL054W"; gene_name "TOD6"; transcript_biotype "protein_coding"; +chrII SGD exon 117412 119359 . + . transcript_id "YBL054W_id002"; gene_id "YBL054W"; gene_name "TOD6"; +chrII SGD transcript 117589 119166 . + . transcript_id "YBL054W_id001"; gene_id "YBL054W"; gene_name "TOD6"; transcript_biotype "protein_coding"; +chrII SGD exon 117589 119166 . + 0 transcript_id "YBL054W_id001"; gene_name "TOD6"; gene_id "YBL054W"; +chrII SGD gene 119335 119709 . + . gene_id "YBL053W"; gene_biotype "protein_coding"; +chrII SGD transcript 119335 119709 . + . transcript_id "YBL053W_mRNA"; gene_id "YBL053W"; transcript_biotype "protein_coding"; +chrII SGD CDS 119335 119709 . + 0 transcript_id "YBL053W_mRNA"; gene_id "YBL053W"; +chrII SGD gene 119379 121874 . - . gene_id "YBL052C"; gene_biotype "protein_coding"; +chrII SGD transcript 119379 121874 . - . transcript_id "YBL052C_id001"; gene_id "YBL052C"; gene_name "SAS3"; transcript_biotype "protein_coding"; +chrII SGD exon 119379 121874 . - 0 transcript_id "YBL052C_id001"; gene_name "SAS3"; gene_id "YBL052C"; +chrII SGD gene 122304 124824 . - . gene_id "YBL051C"; gene_biotype "protein_coding"; +chrII SGD transcript 122304 124824 . - . transcript_id "YBL051C_id004"; gene_id "YBL051C"; gene_name "PIN4"; transcript_biotype "protein_coding"; +chrII SGD exon 122304 124824 . - . transcript_id "YBL051C_id004"; gene_id "YBL051C"; gene_name "PIN4"; +chrII SGD transcript 122753 124759 . - . transcript_id "YBL051C_id001"; gene_id "YBL051C"; gene_name "PIN4"; transcript_biotype "protein_coding"; +chrII SGD exon 122753 124759 . - 0 transcript_id "YBL051C_id001"; gene_name "PIN4"; gene_id "YBL051C"; +chrII SGD gene 125048 126230 . + . gene_id "YBL050W"; gene_biotype "protein_coding"; +chrII SGD transcript 125048 126230 . + . transcript_id "YBL050W_id001"; gene_id "YBL050W"; gene_name "SEC17"; transcript_biotype "protein_coding"; +chrII SGD exon 125048 126230 . + . transcript_id "YBL050W_id001"; gene_id "YBL050W"; gene_name "SEC17"; +chrII SGD transcript 125125 126119 . + . transcript_id "YBL050W_id002"; gene_id "YBL050W"; gene_name "SEC17"; transcript_biotype "protein_coding"; +chrII SGD exon 125125 125154 . + 0 transcript_id "YBL050W_id002"; gene_name "SEC17"; gene_id "YBL050W"; +chrII SGD exon 125271 126119 . + 0 transcript_id "YBL050W_id002"; gene_name "SEC17"; gene_id "YBL050W"; +chrII SGD gene 126828 127244 . + . gene_id "YBL049W"; gene_biotype "protein_coding"; +chrII SGD transcript 126828 127244 . + . transcript_id "YBL049W_id001"; gene_id "YBL049W"; gene_name "MOH1"; transcript_biotype "protein_coding"; +chrII SGD exon 126828 127244 . + 0 transcript_id "YBL049W_id001"; gene_name "MOH1"; gene_id "YBL049W"; +chrII SGD gene 127299 127610 . + . gene_id "YBL048W"; gene_biotype "protein_coding"; +chrII SGD transcript 127299 127610 . + . transcript_id "YBL048W_mRNA"; gene_id "YBL048W"; gene_name "RRT1"; transcript_biotype "protein_coding"; +chrII SGD CDS 127299 127610 . + 0 transcript_id "YBL048W_mRNA"; gene_name "RRT1"; gene_id "YBL048W"; +chrII SGD gene 127672 132169 . - . gene_id "YBL047C"; gene_biotype "protein_coding"; +chrII SGD transcript 127672 132169 . - . transcript_id "YBL047C_id001"; gene_id "YBL047C"; gene_name "EDE1"; transcript_biotype "protein_coding"; +chrII SGD exon 127672 132169 . - . transcript_id "YBL047C_id001"; gene_id "YBL047C"; gene_name "EDE1"; +chrII SGD transcript 127895 132040 . - . transcript_id "YBL047C_id002"; gene_id "YBL047C"; gene_name "EDE1"; transcript_biotype "protein_coding"; +chrII SGD exon 127895 132040 . - 0 transcript_id "YBL047C_id002"; gene_name "EDE1"; gene_id "YBL047C"; +chrII SGD gene 132406 133937 . + . gene_id "YBL046W"; gene_biotype "protein_coding"; +chrII SGD transcript 132406 133937 . + . transcript_id "YBL046W_id001"; gene_id "YBL046W"; gene_name "PSY4"; transcript_biotype "protein_coding"; +chrII SGD exon 132406 133937 . + . transcript_id "YBL046W_id001"; gene_id "YBL046W"; gene_name "PSY4"; +chrII SGD transcript 132424 133749 . + . transcript_id "YBL046W_id003"; gene_id "YBL046W"; gene_name "PSY4"; transcript_biotype "protein_coding"; +chrII SGD exon 132424 133749 . + 0 transcript_id "YBL046W_id003"; gene_name "PSY4"; gene_id "YBL046W"; +chrII SGD gene 133932 135777 . - . gene_id "YBL045C"; gene_biotype "protein_coding"; +chrII SGD transcript 133932 135777 . - . transcript_id "YBL045C_id003"; gene_id "YBL045C"; gene_name "COR1"; transcript_biotype "protein_coding"; +chrII SGD exon 133932 135777 . - . transcript_id "YBL045C_id003"; gene_id "YBL045C"; gene_name "COR1"; +chrII SGD transcript 134143 135516 . - . transcript_id "YBL045C_id001"; gene_id "YBL045C"; gene_name "COR1"; transcript_biotype "protein_coding"; +chrII SGD exon 134143 135516 . - 0 transcript_id "YBL045C_id001"; gene_name "COR1"; gene_id "YBL045C"; +chrII SGD gene 135998 136366 . + . gene_id "YBL044W"; gene_biotype "protein_coding"; +chrII SGD transcript 135998 136366 . + . transcript_id "YBL044W_mRNA"; gene_id "YBL044W"; transcript_biotype "protein_coding"; +chrII SGD CDS 135998 136366 . + 0 transcript_id "YBL044W_mRNA"; gene_id "YBL044W"; +chrII SGD gene 136557 137655 . + . gene_id "YBL043W"; gene_biotype "protein_coding"; +chrII SGD transcript 136557 137655 . + . transcript_id "YBL043W_id003"; gene_id "YBL043W"; gene_name "ECM13"; transcript_biotype "protein_coding"; +chrII SGD exon 136557 137655 . + . transcript_id "YBL043W_id003"; gene_id "YBL043W"; gene_name "ECM13"; +chrII SGD transcript 136688 137461 . + . transcript_id "YBL043W_id001"; gene_id "YBL043W"; gene_name "ECM13"; transcript_biotype "protein_coding"; +chrII SGD exon 136688 137461 . + 0 transcript_id "YBL043W_id001"; gene_name "ECM13"; gene_id "YBL043W"; +chrII SGD gene 138180 140319 . - . gene_id "YBL042C"; gene_biotype "protein_coding"; +chrII SGD transcript 138180 140319 . - . transcript_id "YBL042C_id005"; gene_id "YBL042C"; gene_name "FUI1"; transcript_biotype "protein_coding"; +chrII SGD exon 138180 140319 . - . transcript_id "YBL042C_id005"; gene_id "YBL042C"; gene_name "FUI1"; +chrII SGD transcript 138341 140260 . - . transcript_id "YBL042C_id001"; gene_id "YBL042C"; gene_name "FUI1"; transcript_biotype "protein_coding"; +chrII SGD exon 138341 140260 . - 0 transcript_id "YBL042C_id001"; gene_name "FUI1"; gene_id "YBL042C"; +chrII SGD gene 141010 142040 . + . gene_id "YBL041W"; gene_biotype "protein_coding"; +chrII SGD transcript 141010 142040 . + . transcript_id "YBL041W_id015"; gene_id "YBL041W"; gene_name "PRE7"; transcript_biotype "protein_coding"; +chrII SGD exon 141010 142040 . + . transcript_id "YBL041W_id015"; gene_id "YBL041W"; gene_name "PRE7"; +chrII SGD transcript 141247 141972 . + . transcript_id "YBL041W_id001"; gene_id "YBL041W"; gene_name "PRE7"; transcript_biotype "protein_coding"; +chrII SGD exon 141247 141972 . + 0 transcript_id "YBL041W_id001"; gene_name "PRE7"; gene_id "YBL041W"; +chrII SGD gene 142012 143165 . - . gene_id "YBL040C"; gene_biotype "protein_coding"; +chrII SGD transcript 142012 143165 . - . transcript_id "YBL040C_id002"; gene_id "YBL040C"; gene_name "ERD2"; transcript_biotype "protein_coding"; +chrII SGD exon 142012 143165 . - . transcript_id "YBL040C_id002"; gene_id "YBL040C"; gene_name "ERD2"; +chrII SGD transcript 142112 142868 . - . transcript_id "YBL040C_id001"; gene_id "YBL040C"; gene_name "ERD2"; transcript_biotype "protein_coding"; +chrII SGD exon 142112 142749 . - 2 transcript_id "YBL040C_id001"; gene_name "ERD2"; gene_id "YBL040C"; +chrII SGD exon 142847 142868 . - 0 transcript_id "YBL040C_id001"; gene_name "ERD2"; gene_id "YBL040C"; +chrII SGD gene 143099 143749 . + . gene_id "YBL039W-B"; gene_biotype "protein_coding"; +chrII SGD transcript 143099 143749 . + . transcript_id "YBL039W-B_id001"; gene_id "YBL039W-B"; gene_name "MIN6"; transcript_biotype "protein_coding"; +chrII SGD exon 143099 143749 . + . transcript_id "YBL039W-B_id001"; gene_id "YBL039W-B"; gene_name "MIN6"; +chrII SGD transcript 143393 143572 . + . transcript_id "YBL039W-B_id002"; gene_id "YBL039W-B"; gene_name "MIN6"; transcript_biotype "protein_coding"; +chrII SGD exon 143393 143572 . + 0 transcript_id "YBL039W-B_id002"; gene_name "MIN6"; gene_id "YBL039W-B"; +chrII SGD gene 143808 145725 . - . gene_id "YBL039C-A"; gene_biotype "protein_coding"; +chrII SGD transcript 143808 145725 . - . transcript_id "YBL039C-A_id001"; gene_id "YBL039C-A"; transcript_biotype "protein_coding"; +chrII SGD exon 143808 145725 . - . transcript_id "YBL039C-A_id001"; gene_id "YBL039C-A"; +chrII SGD gene 143989 145728 . - . gene_id "YBL039C"; gene_biotype "protein_coding"; +chrII SGD transcript 143989 145728 . - . transcript_id "YBL039C_id001"; gene_id "YBL039C"; gene_name "URA7"; transcript_biotype "protein_coding"; +chrII SGD exon 143989 145728 . - 0 transcript_id "YBL039C_id001"; gene_name "URA7"; gene_id "YBL039C"; +chrII SGD transcript 144948 145031 . - . transcript_id "YBL039C-A_id002"; gene_id "YBL039C-A"; transcript_biotype "protein_coding"; +chrII SGD exon 144948 145031 . - 0 transcript_id "YBL039C-A_id002"; gene_id "YBL039C-A"; +chrII SGD gene 146187 146885 . + . gene_id "YBL038W"; gene_biotype "protein_coding"; +chrII SGD transcript 146187 146885 . + . transcript_id "YBL038W_id001"; gene_id "YBL038W"; gene_name "MRPL16"; transcript_biotype "protein_coding"; +chrII SGD exon 146187 146885 . + 0 transcript_id "YBL038W_id001"; gene_name "MRPL16"; gene_id "YBL038W"; +chrII SGD gene 147209 150286 . + . gene_id "YBL037W"; gene_biotype "protein_coding"; +chrII SGD transcript 147209 150286 . + . transcript_id "YBL037W_mRNA"; gene_id "YBL037W"; gene_name "APL3"; transcript_biotype "protein_coding"; +chrII SGD CDS 147209 150286 . + 0 transcript_id "YBL037W_mRNA"; gene_name "APL3"; gene_id "YBL037W"; +chrII SGD gene 150310 152281 . - . gene_id "YBL036C"; gene_biotype "protein_coding"; +chrII SGD transcript 150310 152281 . - . transcript_id "YBL036C_id001"; gene_id "YBL036C"; transcript_biotype "protein_coding"; +chrII SGD exon 150310 152281 . - . transcript_id "YBL036C_id001"; gene_id "YBL036C"; +chrII SGD transcript 150447 151220 . - . transcript_id "YBL036C_id002"; gene_id "YBL036C"; transcript_biotype "protein_coding"; +chrII SGD exon 150447 151220 . - 0 transcript_id "YBL036C_id002"; gene_id "YBL036C"; +chrII SGD gene 151364 153703 . - . gene_id "YBL035C"; gene_biotype "protein_coding"; +chrII SGD transcript 151364 153703 . - . transcript_id "YBL035C_id001"; gene_id "YBL035C"; gene_name "POL12"; transcript_biotype "protein_coding"; +chrII SGD exon 151364 153703 . - . transcript_id "YBL035C_id001"; gene_id "YBL035C"; gene_name "POL12"; +chrII SGD transcript 151493 153610 . - . transcript_id "YBL035C_id002"; gene_id "YBL035C"; gene_name "POL12"; transcript_biotype "protein_coding"; +chrII SGD exon 151493 153610 . - 0 transcript_id "YBL035C_id002"; gene_name "POL12"; gene_id "YBL035C"; +chrII SGD gene 153848 158389 . - . gene_id "YBL034C"; gene_biotype "protein_coding"; +chrII SGD transcript 153848 158389 . - . transcript_id "YBL034C_mRNA"; gene_id "YBL034C"; gene_name "STU1"; transcript_biotype "protein_coding"; +chrII SGD CDS 153848 158389 . - 0 transcript_id "YBL034C_mRNA"; gene_name "STU1"; gene_id "YBL034C"; +chrII SGD gene 158656 159693 . - . gene_id "YBL033C"; gene_biotype "protein_coding"; +chrII SGD transcript 158656 159693 . - . transcript_id "YBL033C_id001"; gene_id "YBL033C"; gene_name "RIB1"; transcript_biotype "protein_coding"; +chrII SGD exon 158656 159693 . - 0 transcript_id "YBL033C_id001"; gene_name "RIB1"; gene_id "YBL033C"; +chrII SGD gene 160086 161535 . + . gene_id "YBL032W"; gene_biotype "protein_coding"; +chrII SGD transcript 160086 161535 . + . transcript_id "YBL032W_id003"; gene_id "YBL032W"; gene_name "HEK2"; transcript_biotype "protein_coding"; +chrII SGD exon 160086 161535 . + . transcript_id "YBL032W_id003"; gene_id "YBL032W"; gene_name "HEK2"; +chrII SGD transcript 160184 161329 . + . transcript_id "YBL032W_id001"; gene_id "YBL032W"; gene_name "HEK2"; transcript_biotype "protein_coding"; +chrII SGD exon 160184 161329 . + 0 transcript_id "YBL032W_id001"; gene_name "HEK2"; gene_id "YBL032W"; +chrII SGD gene 161665 162887 . + . gene_id "YBL031W"; gene_biotype "protein_coding"; +chrII SGD transcript 161665 162887 . + . transcript_id "YBL031W_id001"; gene_id "YBL031W"; gene_name "SHE1"; transcript_biotype "protein_coding"; +chrII SGD exon 161665 162887 . + . transcript_id "YBL031W_id001"; gene_id "YBL031W"; gene_name "SHE1"; +chrII SGD transcript 161699 162715 . + . transcript_id "YBL031W_id002"; gene_id "YBL031W"; gene_name "SHE1"; transcript_biotype "protein_coding"; +chrII SGD exon 161699 162715 . + 0 transcript_id "YBL031W_id002"; gene_name "SHE1"; gene_id "YBL031W"; +chrII SGD gene 162718 164145 . - . gene_id "YBL030C"; gene_biotype "protein_coding"; +chrII SGD transcript 162718 164145 . - . transcript_id "YBL030C_id009"; gene_id "YBL030C"; gene_name "PET9"; transcript_biotype "protein_coding"; +chrII SGD exon 162718 164145 . - . transcript_id "YBL030C_id009"; gene_id "YBL030C"; gene_name "PET9"; +chrII SGD transcript 163041 163997 . - . transcript_id "YBL030C_id001"; gene_id "YBL030C"; gene_name "PET9"; transcript_biotype "protein_coding"; +chrII SGD exon 163041 163997 . - 0 transcript_id "YBL030C_id001"; gene_name "PET9"; gene_id "YBL030C"; +chrII SGD gene 164358 166047 . - . gene_id "YBL029C-A"; gene_biotype "protein_coding"; +chrII SGD transcript 164358 166047 . - . transcript_id "YBL029C-A_id001"; gene_id "YBL029C-A"; transcript_biotype "protein_coding"; +chrII SGD exon 164358 166047 . - . transcript_id "YBL029C-A_id001"; gene_id "YBL029C-A"; +chrII SGD transcript 164488 164772 . - . transcript_id "YBL029C-A_id002"; gene_id "YBL029C-A"; transcript_biotype "protein_coding"; +chrII SGD exon 164488 164772 . - 0 transcript_id "YBL029C-A_id002"; gene_id "YBL029C-A"; +chrII SGD gene 166134 167264 . + . gene_id "YBL029W"; gene_biotype "protein_coding"; +chrII SGD transcript 166134 167264 . + . transcript_id "YBL029W_mRNA"; gene_id "YBL029W"; transcript_biotype "protein_coding"; +chrII SGD CDS 166134 167264 . + 0 transcript_id "YBL029W_mRNA"; gene_id "YBL029W"; +chrII SGD gene 167221 167885 . - . gene_id "YBL028C"; gene_biotype "protein_coding"; +chrII SGD transcript 167221 167885 . - . transcript_id "YBL028C_id001"; gene_id "YBL028C"; transcript_biotype "protein_coding"; +chrII SGD exon 167221 167885 . - . transcript_id "YBL028C_id001"; gene_id "YBL028C"; +chrII SGD transcript 167518 167838 . - . transcript_id "YBL028C_id002"; gene_id "YBL028C"; transcript_biotype "protein_coding"; +chrII SGD exon 167518 167838 . - 0 transcript_id "YBL028C_id002"; gene_id "YBL028C"; +chrII SGD gene 168404 169761 . + . gene_id "YBL027W"; gene_biotype "protein_coding"; +chrII SGD transcript 168404 169761 . + . transcript_id "YBL027W_id005"; gene_id "YBL027W"; gene_name "RPL19B"; transcript_biotype "protein_coding"; +chrII SGD exon 168404 169761 . + . transcript_id "YBL027W_id005"; gene_id "YBL027W"; gene_name "RPL19B"; +chrII SGD transcript 168423 169376 . + . transcript_id "YBL027W_id001"; gene_id "YBL027W"; gene_name "RPL19B"; transcript_biotype "protein_coding"; +chrII SGD exon 168423 168424 . + 0 transcript_id "YBL027W_id001"; gene_name "RPL19B"; gene_id "YBL027W"; +chrII SGD exon 168809 169376 . + 1 transcript_id "YBL027W_id001"; gene_name "RPL19B"; gene_id "YBL027W"; +chrII SGD gene 170581 171530 . + . gene_id "YBL026W"; gene_biotype "protein_coding"; +chrII SGD transcript 170581 171530 . + . transcript_id "YBL026W_id001"; gene_id "YBL026W"; gene_name "LSM2"; transcript_biotype "protein_coding"; +chrII SGD exon 170581 171530 . + . transcript_id "YBL026W_id001"; gene_id "YBL026W"; gene_name "LSM2"; +chrII SGD transcript 170623 171038 . + . transcript_id "YBL026W_id002"; gene_id "YBL026W"; gene_name "LSM2"; transcript_biotype "protein_coding"; +chrII SGD exon 170623 170676 . + 0 transcript_id "YBL026W_id002"; gene_name "LSM2"; gene_id "YBL026W"; +chrII SGD exon 170805 171038 . + 0 transcript_id "YBL026W_id002"; gene_name "LSM2"; gene_id "YBL026W"; +chrII SGD gene 171423 172503 . + . gene_id "YBL025W"; gene_biotype "protein_coding"; +chrII SGD transcript 171423 172503 . + . transcript_id "YBL025W_id002"; gene_id "YBL025W"; gene_name "RRN10"; transcript_biotype "protein_coding"; +chrII SGD exon 171423 172503 . + . transcript_id "YBL025W_id002"; gene_id "YBL025W"; gene_name "RRN10"; +chrII SGD transcript 171481 171918 . + . transcript_id "YBL025W_id001"; gene_id "YBL025W"; gene_name "RRN10"; transcript_biotype "protein_coding"; +chrII SGD exon 171481 171918 . + 0 transcript_id "YBL025W_id001"; gene_name "RRN10"; gene_id "YBL025W"; +chrII SGD gene 172504 174868 . + . gene_id "YBL024W"; gene_biotype "protein_coding"; +chrII SGD transcript 172504 174868 . + . transcript_id "YBL024W_id001"; gene_id "YBL024W"; gene_name "NCL1"; transcript_biotype "protein_coding"; +chrII SGD exon 172504 174868 . + . transcript_id "YBL024W_id001"; gene_id "YBL024W"; gene_name "NCL1"; +chrII SGD transcript 172534 174588 . + . transcript_id "YBL024W_id002"; gene_id "YBL024W"; gene_name "NCL1"; transcript_biotype "protein_coding"; +chrII SGD exon 172534 174588 . + 0 transcript_id "YBL024W_id002"; gene_name "NCL1"; gene_id "YBL024W"; +chrII SGD gene 174746 177643 . - . gene_id "YBL023C"; gene_biotype "protein_coding"; +chrII SGD transcript 174746 177643 . - . transcript_id "YBL023C_id001"; gene_id "YBL023C"; gene_name "MCM2"; transcript_biotype "protein_coding"; +chrII SGD exon 174746 177643 . - . transcript_id "YBL023C_id001"; gene_id "YBL023C"; gene_name "MCM2"; +chrII SGD transcript 174920 177526 . - . transcript_id "YBL023C_id002"; gene_id "YBL023C"; gene_name "MCM2"; transcript_biotype "protein_coding"; +chrII SGD exon 174920 177526 . - 0 transcript_id "YBL023C_id002"; gene_name "MCM2"; gene_id "YBL023C"; +chrII SGD gene 177798 181408 . - . gene_id "YBL022C"; gene_biotype "protein_coding"; +chrII SGD transcript 177798 181408 . - . transcript_id "YBL022C_id001"; gene_id "YBL022C"; gene_name "PIM1"; transcript_biotype "protein_coding"; +chrII SGD exon 177798 181408 . - . transcript_id "YBL022C_id001"; gene_id "YBL022C"; gene_name "PIM1"; +chrII SGD transcript 177874 181275 . - . transcript_id "YBL022C_id006"; gene_id "YBL022C"; gene_name "PIM1"; transcript_biotype "protein_coding"; +chrII SGD exon 177874 181275 . - 0 transcript_id "YBL022C_id006"; gene_name "PIM1"; gene_id "YBL022C"; +chrII SGD gene 181490 182524 . - . gene_id "YBL021C"; gene_biotype "protein_coding"; +chrII SGD transcript 181490 182524 . - . transcript_id "YBL021C_id001"; gene_id "YBL021C"; gene_name "HAP3"; transcript_biotype "protein_coding"; +chrII SGD exon 181490 182524 . - . transcript_id "YBL021C_id001"; gene_id "YBL021C"; gene_name "HAP3"; +chrII SGD transcript 181660 182094 . - . transcript_id "YBL021C_id003"; gene_id "YBL021C"; gene_name "HAP3"; transcript_biotype "protein_coding"; +chrII SGD exon 181660 182094 . - 0 transcript_id "YBL021C_id003"; gene_name "HAP3"; gene_id "YBL021C"; +chrII SGD gene 182322 184205 . + . gene_id "YBL020W"; gene_biotype "protein_coding"; +chrII SGD transcript 182322 184205 . + . transcript_id "YBL020W_id005"; gene_id "YBL020W"; gene_name "RFT1"; transcript_biotype "protein_coding"; +chrII SGD exon 182322 184205 . + . transcript_id "YBL020W_id005"; gene_id "YBL020W"; gene_name "RFT1"; +chrII SGD transcript 182401 184125 . + . transcript_id "YBL020W_id001"; gene_id "YBL020W"; gene_name "RFT1"; transcript_biotype "protein_coding"; +chrII SGD exon 182401 184125 . + 0 transcript_id "YBL020W_id001"; gene_name "RFT1"; gene_id "YBL020W"; +chrII SGD gene 184283 186031 . + . gene_id "YBL019W"; gene_biotype "protein_coding"; +chrII SGD transcript 184283 186031 . + . transcript_id "YBL019W_id001"; gene_id "YBL019W"; gene_name "APN2"; transcript_biotype "protein_coding"; +chrII SGD exon 184283 186031 . + . transcript_id "YBL019W_id001"; gene_id "YBL019W"; gene_name "APN2"; +chrII SGD transcript 184353 185915 . + . transcript_id "YBL019W_id002"; gene_id "YBL019W"; gene_name "APN2"; transcript_biotype "protein_coding"; +chrII SGD exon 184353 185915 . + 0 transcript_id "YBL019W_id002"; gene_name "APN2"; gene_id "YBL019W"; +chrII SGD gene 185668 186507 . - . gene_id "YBL018C"; gene_biotype "protein_coding"; +chrII SGD transcript 185668 186507 . - . transcript_id "YBL018C_id005"; gene_id "YBL018C"; gene_name "POP8"; transcript_biotype "protein_coding"; +chrII SGD exon 185668 186507 . - . transcript_id "YBL018C_id005"; gene_id "YBL018C"; gene_name "POP8"; +chrII SGD transcript 185998 186474 . - . transcript_id "YBL018C_id001"; gene_id "YBL018C"; gene_name "POP8"; transcript_biotype "protein_coding"; +chrII SGD exon 185998 186352 . - 1 transcript_id "YBL018C_id001"; gene_name "POP8"; gene_id "YBL018C"; +chrII SGD exon 186428 186474 . - 0 transcript_id "YBL018C_id001"; gene_name "POP8"; gene_id "YBL018C"; +chrII SGD gene 186844 191583 . - . gene_id "YBL017C"; gene_biotype "protein_coding"; +chrII SGD transcript 186844 191583 . - . transcript_id "YBL017C_mRNA"; gene_id "YBL017C"; gene_name "PEP1"; transcript_biotype "protein_coding"; +chrII SGD CDS 186844 191583 . - 0 transcript_id "YBL017C_mRNA"; gene_name "PEP1"; gene_id "YBL017C"; +chrII SGD gene 192451 193512 . + . gene_id "YBL016W"; gene_biotype "protein_coding"; +chrII SGD transcript 192451 193512 . + . transcript_id "YBL016W_id001"; gene_id "YBL016W"; gene_name "FUS3"; transcript_biotype "protein_coding"; +chrII SGD exon 192451 193512 . + 0 transcript_id "YBL016W_id001"; gene_name "FUS3"; gene_id "YBL016W"; +chrII SGD gene 193953 195980 . + . gene_id "YBL015W"; gene_biotype "protein_coding"; +chrII SGD transcript 193953 195980 . + . transcript_id "YBL015W_id001"; gene_id "YBL015W"; gene_name "ACH1"; transcript_biotype "protein_coding"; +chrII SGD exon 193953 195980 . + . transcript_id "YBL015W_id001"; gene_id "YBL015W"; gene_name "ACH1"; +chrII SGD transcript 194122 195702 . + . transcript_id "YBL015W_id002"; gene_id "YBL015W"; gene_name "ACH1"; transcript_biotype "protein_coding"; +chrII SGD exon 194122 195702 . + 0 transcript_id "YBL015W_id002"; gene_name "ACH1"; gene_id "YBL015W"; +chrII SGD gene 197494 197567 . + . gene_id "YNCB0004W"; gene_biotype "ncRNA"; +chrII SGD transcript 197494 197567 . + . transcript_id "YNCB0004W_tRNA"; gene_id "YNCB0004W"; transcript_biotype "ncRNA"; +chrII SGD exon 197494 197567 . + . transcript_id "YNCB0004W_tRNA"; gene_id "YNCB0004W"; +chrII SGD gene 197629 197699 . - . gene_id "YNCB0005C"; gene_biotype "ncRNA"; +chrII SGD transcript 197629 197699 . - . transcript_id "YNCB0005C_tRNA"; gene_id "YNCB0005C"; transcript_biotype "ncRNA"; +chrII SGD exon 197629 197699 . - . transcript_id "YNCB0005C_tRNA"; gene_id "YNCB0005C"; +chrII SGD gene 198923 201777 . - . gene_id "YBL014C"; gene_biotype "protein_coding"; +chrII SGD transcript 198923 201777 . - . transcript_id "YBL014C_id003"; gene_id "YBL014C"; gene_name "RRN6"; transcript_biotype "protein_coding"; +chrII SGD exon 198923 201777 . - . transcript_id "YBL014C_id003"; gene_id "YBL014C"; gene_name "RRN6"; +chrII SGD transcript 199064 201748 . - . transcript_id "YBL014C_id001"; gene_id "YBL014C"; gene_name "RRN6"; transcript_biotype "protein_coding"; +chrII SGD exon 199064 201748 . - 0 transcript_id "YBL014C_id001"; gene_name "RRN6"; gene_id "YBL014C"; +chrII SGD gene 202056 203261 . + . gene_id "YBL013W"; gene_biotype "protein_coding"; +chrII SGD transcript 202056 203261 . + . transcript_id "YBL013W_mRNA"; gene_id "YBL013W"; gene_name "FMT1"; transcript_biotype "protein_coding"; +chrII SGD CDS 202056 203261 . + 0 transcript_id "YBL013W_mRNA"; gene_name "FMT1"; gene_id "YBL013W"; +chrII SGD gene 202814 206022 . + . gene_id "YBL011W"; gene_biotype "protein_coding"; +chrII SGD transcript 202814 206022 . + . transcript_id "YBL011W_id001"; gene_id "YBL011W"; gene_name "SCT1"; transcript_biotype "protein_coding"; +chrII SGD exon 202814 206022 . + . transcript_id "YBL011W_id001"; gene_id "YBL011W"; gene_name "SCT1"; +chrII SGD gene 203406 203807 . - . gene_id "YBL012C"; gene_biotype "protein_coding"; +chrII SGD transcript 203406 203807 . - . transcript_id "YBL012C_mRNA"; gene_id "YBL012C"; transcript_biotype "protein_coding"; +chrII SGD CDS 203406 203807 . - 0 transcript_id "YBL012C_mRNA"; gene_id "YBL012C"; +chrII SGD transcript 203538 205817 . + . transcript_id "YBL011W_id002"; gene_id "YBL011W"; gene_name "SCT1"; transcript_biotype "protein_coding"; +chrII SGD exon 203538 205817 . + 0 transcript_id "YBL011W_id002"; gene_name "SCT1"; gene_id "YBL011W"; +chrII SGD gene 205803 207017 . - . gene_id "YBL010C"; gene_biotype "protein_coding"; +chrII SGD transcript 205803 207017 . - . transcript_id "YBL010C_id001"; gene_id "YBL010C"; gene_name "LAA2"; transcript_biotype "protein_coding"; +chrII SGD exon 205803 207017 . - . transcript_id "YBL010C_id001"; gene_id "YBL010C"; gene_name "LAA2"; +chrII SGD transcript 206107 206949 . - . transcript_id "YBL010C_id003"; gene_id "YBL010C"; gene_name "LAA2"; transcript_biotype "protein_coding"; +chrII SGD exon 206107 206949 . - 0 transcript_id "YBL010C_id003"; gene_name "LAA2"; gene_id "YBL010C"; +chrII SGD gene 207141 209350 . + . gene_id "YBL009W"; gene_biotype "protein_coding"; +chrII SGD transcript 207141 209350 . + . transcript_id "YBL009W_id002"; gene_id "YBL009W"; gene_name "ALK2"; transcript_biotype "protein_coding"; +chrII SGD exon 207141 209350 . + . transcript_id "YBL009W_id002"; gene_id "YBL009W"; gene_name "ALK2"; +chrII SGD transcript 207194 209224 . + . transcript_id "YBL009W_id001"; gene_id "YBL009W"; gene_name "ALK2"; transcript_biotype "protein_coding"; +chrII SGD exon 207194 209224 . + 0 transcript_id "YBL009W_id001"; gene_name "ALK2"; gene_id "YBL009W"; +chrII SGD gene 209409 209648 . + . gene_id "YBL008W-A"; gene_biotype "protein_coding"; +chrII SGD transcript 209409 209648 . + . transcript_id "YBL008W-A_mRNA"; gene_id "YBL008W-A"; transcript_biotype "protein_coding"; +chrII SGD CDS 209409 209648 . + 0 transcript_id "YBL008W-A_mRNA"; gene_id "YBL008W-A"; +chrII SGD gene 209587 212279 . + . gene_id "YBL008W"; gene_biotype "protein_coding"; +chrII SGD transcript 209587 212279 . + . transcript_id "YBL008W_id002"; gene_id "YBL008W"; gene_name "HIR1"; transcript_biotype "protein_coding"; +chrII SGD exon 209587 212279 . + . transcript_id "YBL008W_id002"; gene_id "YBL008W"; gene_name "HIR1"; +chrII SGD transcript 209653 212175 . + . transcript_id "YBL008W_id001"; gene_id "YBL008W"; gene_name "HIR1"; transcript_biotype "protein_coding"; +chrII SGD exon 209653 212175 . + 0 transcript_id "YBL008W_id001"; gene_name "HIR1"; gene_id "YBL008W"; +chrII SGD gene 212467 216436 . - . gene_id "YBL007C"; gene_biotype "protein_coding"; +chrII SGD transcript 212467 216436 . - . transcript_id "YBL007C_id001"; gene_id "YBL007C"; gene_name "SLA1"; transcript_biotype "protein_coding"; +chrII SGD exon 212467 216436 . - . transcript_id "YBL007C_id001"; gene_id "YBL007C"; gene_name "SLA1"; +chrII SGD transcript 212632 216366 . - . transcript_id "YBL007C_id003"; gene_id "YBL007C"; gene_name "SLA1"; transcript_biotype "protein_coding"; +chrII SGD exon 212632 216366 . - 0 transcript_id "YBL007C_id003"; gene_name "SLA1"; gene_id "YBL007C"; +chrII SGD gene 216354 217163 . - . gene_id "YBL006C"; gene_biotype "protein_coding"; +chrII SGD transcript 216354 217163 . - . transcript_id "YBL006C_id002"; gene_id "YBL006C"; gene_name "LDB7"; transcript_biotype "protein_coding"; +chrII SGD exon 216354 217163 . - . transcript_id "YBL006C_id002"; gene_id "YBL006C"; gene_name "LDB7"; +chrII SGD transcript 216587 217129 . - . transcript_id "YBL006C_id001"; gene_id "YBL006C"; gene_name "LDB7"; transcript_biotype "protein_coding"; +chrII SGD exon 216587 217129 . - 0 transcript_id "YBL006C_id001"; gene_name "LDB7"; gene_id "YBL006C"; +chrII SGD gene 216711 216860 . + . gene_id "YBL006W-A"; gene_biotype "protein_coding"; +chrII SGD transcript 216711 216860 . + . transcript_id "YBL006W-A_id001"; gene_id "YBL006W-A"; transcript_biotype "protein_coding"; +chrII SGD exon 216711 216860 . + 0 transcript_id "YBL006W-A_id001"; gene_id "YBL006W-A"; +chrII SGD gene 217470 220400 . + . gene_id "YBL005W"; gene_biotype "protein_coding"; +chrII SGD transcript 217470 220400 . + . transcript_id "YBL005W_id001"; gene_id "YBL005W"; gene_name "PDR3"; transcript_biotype "protein_coding"; +chrII SGD exon 217470 220400 . + 0 transcript_id "YBL005W_id001"; gene_name "PDR3"; gene_id "YBL005W"; +chrII SGD gene 221330 222652 . + . gene_id "YBL005W-A"; gene_biotype "protein_coding"; +chrII SGD transcript 221330 222652 . + . transcript_id "YBL005W-A_dummy"; gene_id "YBL005W-A"; transcript_biotype "protein_coding"; +chrII SGD exon 221330 222652 . + 0 transcript_id "YBL005W-A_dummy"; gene_id "YBL005W-A"; +chrII SGD gene 221330 226598 . + . gene_id "YBL005W-B"; gene_biotype "protein_coding"; +chrII SGD transcript 221330 226598 . + . transcript_id "YBL005W-B_dummy"; gene_id "YBL005W-B"; transcript_biotype "protein_coding"; +chrII SGD exon 221330 222634 . + 0 transcript_id "YBL005W-B_dummy"; gene_id "YBL005W-B"; +chrII SGD exon 222636 226598 . + 0 transcript_id "YBL005W-B_dummy"; gene_id "YBL005W-B"; +chrII SGD gene 227075 227156 . + . gene_id "YNCB0006W"; gene_biotype "ncRNA"; +chrII SGD transcript 227075 227156 . + . transcript_id "YNCB0006W_tRNA"; gene_id "YNCB0006W"; transcript_biotype "ncRNA"; +chrII SGD exon 227075 227156 . + . transcript_id "YNCB0006W_tRNA"; gene_id "YNCB0006W"; +chrII SGD gene 227636 235117 . + . gene_id "YBL004W"; gene_biotype "protein_coding"; +chrII SGD transcript 227636 235117 . + . transcript_id "YBL004W_mRNA"; gene_id "YBL004W"; gene_name "UTP20"; transcript_biotype "protein_coding"; +chrII SGD CDS 227636 235117 . + 0 transcript_id "YBL004W_mRNA"; gene_name "UTP20"; gene_id "YBL004W"; +chrII SGD gene 234898 235856 . - . gene_id "YBL003C"; gene_biotype "protein_coding"; +chrII SGD transcript 234898 235856 . - . transcript_id "YBL003C_id004"; gene_id "YBL003C"; gene_name "HTA2"; transcript_biotype "protein_coding"; +chrII SGD exon 234898 235856 . - . transcript_id "YBL003C_id004"; gene_id "YBL003C"; gene_name "HTA2"; +chrII SGD transcript 235394 235792 . - . transcript_id "YBL003C_id001"; gene_id "YBL003C"; gene_name "HTA2"; transcript_biotype "protein_coding"; +chrII SGD exon 235394 235792 . - 0 transcript_id "YBL003C_id001"; gene_name "HTA2"; gene_id "YBL003C"; +chrII SGD gene 235789 237079 . + . gene_id "YBL002W"; gene_biotype "protein_coding"; +chrII SGD transcript 235789 237079 . + . transcript_id "YBL002W_id001"; gene_id "YBL002W"; gene_name "HTB2"; transcript_biotype "protein_coding"; +chrII SGD exon 235789 237079 . + . transcript_id "YBL002W_id001"; gene_id "YBL002W"; gene_name "HTB2"; +chrII SGD transcript 236492 236887 . + . transcript_id "YBL002W_id009"; gene_id "YBL002W"; gene_name "HTB2"; transcript_biotype "protein_coding"; +chrII SGD exon 236492 236887 . + 0 transcript_id "YBL002W_id009"; gene_name "HTB2"; gene_id "YBL002W"; +chrII SGD gene 236907 237698 . - . gene_id "YBL001C"; gene_biotype "protein_coding"; +chrII SGD transcript 236907 237698 . - . transcript_id "YBL001C_id001"; gene_id "YBL001C"; gene_name "ECM15"; transcript_biotype "protein_coding"; +chrII SGD exon 236907 237698 . - . transcript_id "YBL001C_id001"; gene_id "YBL001C"; gene_name "ECM15"; +chrII SGD transcript 237153 237467 . - . transcript_id "YBL001C_id002"; gene_id "YBL001C"; gene_name "ECM15"; transcript_biotype "protein_coding"; +chrII SGD exon 237153 237467 . - 0 transcript_id "YBL001C_id002"; gene_name "ECM15"; gene_id "YBL001C"; +chrII SGD gene 238783 241433 . - . gene_id "YBR001C"; gene_biotype "protein_coding"; +chrII SGD transcript 238783 241433 . - . transcript_id "YBR001C_id003"; gene_id "YBR001C"; gene_name "NTH2"; transcript_biotype "protein_coding"; +chrII SGD exon 238783 241433 . - . transcript_id "YBR001C_id003"; gene_id "YBR001C"; gene_name "NTH2"; +chrII SGD transcript 238941 241283 . - . transcript_id "YBR001C_id001"; gene_id "YBR001C"; gene_name "NTH2"; transcript_biotype "protein_coding"; +chrII SGD exon 238941 241283 . - 0 transcript_id "YBR001C_id001"; gene_name "NTH2"; gene_id "YBR001C"; +chrII SGD gene 241456 242584 . - . gene_id "YBR002C"; gene_biotype "protein_coding"; +chrII SGD transcript 241456 242584 . - . transcript_id "YBR002C_id002"; gene_id "YBR002C"; gene_name "RER2"; transcript_biotype "protein_coding"; +chrII SGD exon 241456 242584 . - . transcript_id "YBR002C_id002"; gene_id "YBR002C"; gene_name "RER2"; +chrII SGD transcript 241708 242568 . - . transcript_id "YBR002C_id001"; gene_id "YBR002C"; gene_name "RER2"; transcript_biotype "protein_coding"; +chrII SGD exon 241708 242568 . - 0 transcript_id "YBR002C_id001"; gene_name "RER2"; gene_id "YBR002C"; +chrII SGD gene 242780 244364 . + . gene_id "YBR003W"; gene_biotype "protein_coding"; +chrII SGD transcript 242780 244364 . + . transcript_id "YBR003W_id007"; gene_id "YBR003W"; gene_name "COQ1"; transcript_biotype "protein_coding"; +chrII SGD exon 242780 244364 . + . transcript_id "YBR003W_id007"; gene_id "YBR003W"; gene_name "COQ1"; +chrII SGD transcript 242809 244230 . + . transcript_id "YBR003W_id001"; gene_id "YBR003W"; gene_name "COQ1"; transcript_biotype "protein_coding"; +chrII SGD exon 242809 244230 . + 0 transcript_id "YBR003W_id001"; gene_name "COQ1"; gene_id "YBR003W"; +chrII SGD gene 244272 246715 . - . gene_id "YBR004C"; gene_biotype "protein_coding"; +chrII SGD transcript 244272 246715 . - . transcript_id "YBR004C_id001"; gene_id "YBR004C"; gene_name "GPI18"; transcript_biotype "protein_coding"; +chrII SGD exon 244272 246715 . - . transcript_id "YBR004C_id001"; gene_id "YBR004C"; gene_name "GPI18"; +chrII SGD transcript 244366 245667 . - . transcript_id "YBR004C_id002"; gene_id "YBR004C"; gene_name "GPI18"; transcript_biotype "protein_coding"; +chrII SGD exon 244366 245667 . - 0 transcript_id "YBR004C_id002"; gene_name "GPI18"; gene_id "YBR004C"; +chrII SGD gene 245842 246920 . + . gene_id "YBR005W"; gene_biotype "protein_coding"; +chrII SGD transcript 245842 246920 . + . transcript_id "YBR005W_id004"; gene_id "YBR005W"; gene_name "RCR1"; transcript_biotype "protein_coding"; +chrII SGD exon 245842 246920 . + . transcript_id "YBR005W_id004"; gene_id "YBR005W"; gene_name "RCR1"; +chrII SGD transcript 245906 246547 . + . transcript_id "YBR005W_id001"; gene_id "YBR005W"; gene_name "RCR1"; transcript_biotype "protein_coding"; +chrII SGD exon 245906 246547 . + 0 transcript_id "YBR005W_id001"; gene_name "RCR1"; gene_id "YBR005W"; +chrII SGD gene 246879 248649 . + . gene_id "YBR006W"; gene_biotype "protein_coding"; +chrII SGD transcript 246879 248649 . + . transcript_id "YBR006W_id002"; gene_id "YBR006W"; gene_name "UGA2"; transcript_biotype "protein_coding"; +chrII SGD exon 246879 248649 . + . transcript_id "YBR006W_id002"; gene_id "YBR006W"; gene_name "UGA2"; +chrII SGD transcript 247010 248503 . + . transcript_id "YBR006W_id001"; gene_id "YBR006W"; gene_name "UGA2"; transcript_biotype "protein_coding"; +chrII SGD exon 247010 248503 . + 0 transcript_id "YBR006W_id001"; gene_name "UGA2"; gene_id "YBR006W"; +chrII SGD gene 248623 251106 . - . gene_id "YBR007C"; gene_biotype "protein_coding"; +chrII SGD transcript 248623 251106 . - . transcript_id "YBR007C_id001"; gene_id "YBR007C"; gene_name "DSF2"; transcript_biotype "protein_coding"; +chrII SGD exon 248623 251106 . - . transcript_id "YBR007C_id001"; gene_id "YBR007C"; gene_name "DSF2"; +chrII SGD transcript 248806 251016 . - . transcript_id "YBR007C_id002"; gene_id "YBR007C"; gene_name "DSF2"; transcript_biotype "protein_coding"; +chrII SGD exon 248806 251016 . - 0 transcript_id "YBR007C_id002"; gene_name "DSF2"; gene_id "YBR007C"; +chrII SGD gene 252403 254835 . - . gene_id "YBR008C"; gene_biotype "protein_coding"; +chrII SGD transcript 252403 254835 . - . transcript_id "YBR008C_id005"; gene_id "YBR008C"; gene_name "FLR1"; transcript_biotype "protein_coding"; +chrII SGD exon 252403 254835 . - . transcript_id "YBR008C_id005"; gene_id "YBR008C"; gene_name "FLR1"; +chrII SGD transcript 252563 254209 . - . transcript_id "YBR008C_id001"; gene_id "YBR008C"; gene_name "FLR1"; transcript_biotype "protein_coding"; +chrII SGD exon 252563 254209 . - 0 transcript_id "YBR008C_id001"; gene_name "FLR1"; gene_id "YBR008C"; +chrII SGD gene 255209 256209 . - . gene_id "YBR009C"; gene_biotype "protein_coding"; +chrII SGD transcript 255209 256209 . - . transcript_id "YBR009C_id002"; gene_id "YBR009C"; gene_name "HHF1"; transcript_biotype "protein_coding"; +chrII SGD exon 255209 256209 . - . transcript_id "YBR009C_id002"; gene_id "YBR009C"; gene_name "HHF1"; +chrII SGD transcript 255373 255684 . - . transcript_id "YBR009C_id001"; gene_id "YBR009C"; gene_name "HHF1"; transcript_biotype "protein_coding"; +chrII SGD exon 255373 255684 . - 0 transcript_id "YBR009C_id001"; gene_name "HHF1"; gene_id "YBR009C"; +chrII SGD gene 256303 257098 . + . gene_id "YBR010W"; gene_biotype "protein_coding"; +chrII SGD transcript 256303 257098 . + . transcript_id "YBR010W_id001"; gene_id "YBR010W"; gene_name "HHT1"; transcript_biotype "protein_coding"; +chrII SGD exon 256303 257098 . + . transcript_id "YBR010W_id001"; gene_id "YBR010W"; gene_name "HHT1"; +chrII SGD transcript 256331 256741 . + . transcript_id "YBR010W_id008"; gene_id "YBR010W"; gene_name "HHT1"; transcript_biotype "protein_coding"; +chrII SGD exon 256331 256741 . + 0 transcript_id "YBR010W_id008"; gene_name "HHT1"; gene_id "YBR010W"; +chrII SGD gene 256892 258006 . - . gene_id "YBR011C"; gene_biotype "protein_coding"; +chrII SGD transcript 256892 258006 . - . transcript_id "YBR011C_id002"; gene_id "YBR011C"; gene_name "IPP1"; transcript_biotype "protein_coding"; +chrII SGD exon 256892 258006 . - . transcript_id "YBR011C_id002"; gene_id "YBR011C"; gene_name "IPP1"; +chrII SGD transcript 257112 257975 . - . transcript_id "YBR011C_id001"; gene_id "YBR011C"; gene_name "IPP1"; transcript_biotype "protein_coding"; +chrII SGD exon 257112 257975 . - 0 transcript_id "YBR011C_id001"; gene_name "IPP1"; gene_id "YBR011C"; +chrII SGD gene 259147 259566 . - . gene_id "YBR012C"; gene_biotype "protein_coding"; +chrII SGD transcript 259147 259566 . - . transcript_id "YBR012C_id001"; gene_id "YBR012C"; transcript_biotype "protein_coding"; +chrII SGD exon 259147 259566 . - 0 transcript_id "YBR012C_id001"; gene_id "YBR012C"; +chrII SGD gene 259869 261191 . + . gene_id "YBR012W-A"; gene_biotype "protein_coding"; +chrII SGD transcript 259869 261191 . + . transcript_id "YBR012W-A_dummy"; gene_id "YBR012W-A"; transcript_biotype "protein_coding"; +chrII SGD exon 259869 261191 . + 0 transcript_id "YBR012W-A_dummy"; gene_id "YBR012W-A"; +chrII SGD gene 259869 265140 . + . gene_id "YBR012W-B"; gene_biotype "protein_coding"; +chrII SGD transcript 259869 265140 . + . transcript_id "YBR012W-B_dummy"; gene_id "YBR012W-B"; transcript_biotype "protein_coding"; +chrII SGD exon 259869 261173 . + 0 transcript_id "YBR012W-B_dummy"; gene_id "YBR012W-B"; +chrII SGD exon 261175 265140 . + 0 transcript_id "YBR012W-B_dummy"; gene_id "YBR012W-B"; +chrII SGD gene 265492 265881 . - . gene_id "YBR013C"; gene_biotype "protein_coding"; +chrII SGD transcript 265492 265881 . - . transcript_id "YBR013C_mRNA"; gene_id "YBR013C"; transcript_biotype "protein_coding"; +chrII SGD CDS 265492 265881 . - 0 transcript_id "YBR013C_mRNA"; gene_id "YBR013C"; +chrII SGD gene 266378 266450 . + . gene_id "YNCB0007W"; gene_biotype "ncRNA"; +chrII SGD transcript 266378 266450 . + . transcript_id "YNCB0007W_tRNA"; gene_id "YNCB0007W"; transcript_biotype "ncRNA"; +chrII SGD exon 266378 266450 . + . transcript_id "YNCB0007W_tRNA"; gene_id "YNCB0007W"; +chrII SGD gene 266601 267515 . - . gene_id "YBR014C"; gene_biotype "protein_coding"; +chrII SGD transcript 266601 267515 . - . transcript_id "YBR014C_id008"; gene_id "YBR014C"; gene_name "GRX7"; transcript_biotype "protein_coding"; +chrII SGD exon 266601 267515 . - . transcript_id "YBR014C_id008"; gene_id "YBR014C"; gene_name "GRX7"; +chrII SGD transcript 266725 267336 . - . transcript_id "YBR014C_id001"; gene_id "YBR014C"; gene_name "GRX7"; transcript_biotype "protein_coding"; +chrII SGD exon 266725 267336 . - 0 transcript_id "YBR014C_id001"; gene_name "GRX7"; gene_id "YBR014C"; +chrII SGD gene 267569 269912 . - . gene_id "YBR015C"; gene_biotype "protein_coding"; +chrII SGD transcript 267569 269912 . - . transcript_id "YBR015C_id002"; gene_id "YBR015C"; gene_name "MNN2"; transcript_biotype "protein_coding"; +chrII SGD exon 267569 269912 . - . transcript_id "YBR015C_id002"; gene_id "YBR015C"; gene_name "MNN2"; +chrII SGD transcript 267710 269503 . - . transcript_id "YBR015C_id001"; gene_id "YBR015C"; gene_name "MNN2"; transcript_biotype "protein_coding"; +chrII SGD exon 267710 269503 . - 0 transcript_id "YBR015C_id001"; gene_name "MNN2"; gene_id "YBR015C"; +chrII SGD gene 269749 270846 . + . gene_id "YBR016W"; gene_biotype "protein_coding"; +chrII SGD transcript 269749 270846 . + . transcript_id "YBR016W_id001"; gene_id "YBR016W"; transcript_biotype "protein_coding"; +chrII SGD exon 269749 270846 . + . transcript_id "YBR016W_id001"; gene_id "YBR016W"; +chrII SGD transcript 270247 270633 . + . transcript_id "YBR016W_id005"; gene_id "YBR016W"; transcript_biotype "protein_coding"; +chrII SGD exon 270247 270633 . + 0 transcript_id "YBR016W_id005"; gene_id "YBR016W"; +chrII SGD gene 270760 273772 . - . gene_id "YBR017C"; gene_biotype "protein_coding"; +chrII SGD transcript 270760 273772 . - . transcript_id "YBR017C_id002"; gene_id "YBR017C"; gene_name "KAP104"; transcript_biotype "protein_coding"; +chrII SGD exon 270760 273772 . - . transcript_id "YBR017C_id002"; gene_id "YBR017C"; gene_name "KAP104"; +chrII SGD transcript 270947 273703 . - . transcript_id "YBR017C_id001"; gene_id "YBR017C"; gene_name "KAP104"; transcript_biotype "protein_coding"; +chrII SGD exon 270947 273703 . - 0 transcript_id "YBR017C_id001"; gene_name "KAP104"; gene_id "YBR017C"; +chrII SGD gene 274427 275527 . - . gene_id "YBR018C"; gene_biotype "protein_coding"; +chrII SGD transcript 274427 275527 . - . transcript_id "YBR018C_id001"; gene_id "YBR018C"; gene_name "GAL7"; transcript_biotype "protein_coding"; +chrII SGD exon 274427 275527 . - 0 transcript_id "YBR018C_id001"; gene_name "GAL7"; gene_id "YBR018C"; +chrII SGD gene 276253 278352 . - . gene_id "YBR019C"; gene_biotype "protein_coding"; +chrII SGD transcript 276253 278352 . - . transcript_id "YBR019C_id001"; gene_id "YBR019C"; gene_name "GAL10"; transcript_biotype "protein_coding"; +chrII SGD exon 276253 278352 . - 0 transcript_id "YBR019C_id001"; gene_name "GAL10"; gene_id "YBR019C"; +chrII SGD gene 276805 280645 . + . gene_id "YNCB0008W"; gene_biotype "ncRNA"; +chrII SGD transcript 276805 280645 . + . transcript_id "YNCB0008W_ncRNA"; gene_id "YNCB0008W"; transcript_biotype "ncRNA"; +chrII SGD exon 276805 280645 . + . transcript_id "YNCB0008W_ncRNA"; gene_id "YNCB0008W"; +chrII SGD gene 279021 280607 . + . gene_id "YBR020W"; gene_biotype "protein_coding"; +chrII SGD transcript 279021 280607 . + . transcript_id "YBR020W_id001"; gene_id "YBR020W"; gene_name "GAL1"; transcript_biotype "protein_coding"; +chrII SGD exon 279021 280607 . + 0 transcript_id "YBR020W_id001"; gene_name "GAL1"; gene_id "YBR020W"; +chrII SGD gene 281307 283531 . + . gene_id "YBR021W"; gene_biotype "protein_coding"; +chrII SGD transcript 281307 283531 . + . transcript_id "YBR021W_id011"; gene_id "YBR021W"; gene_name "FUR4"; transcript_biotype "protein_coding"; +chrII SGD exon 281307 283531 . + . transcript_id "YBR021W_id011"; gene_id "YBR021W"; gene_name "FUR4"; +chrII SGD transcript 281443 283344 . + . transcript_id "YBR021W_id001"; gene_id "YBR021W"; gene_name "FUR4"; transcript_biotype "protein_coding"; +chrII SGD exon 281443 283344 . + 0 transcript_id "YBR021W_id001"; gene_name "FUR4"; gene_id "YBR021W"; +chrII SGD gene 283490 284400 . + . gene_id "YBR022W"; gene_biotype "protein_coding"; +chrII SGD transcript 283490 284400 . + . transcript_id "YBR022W_id002"; gene_id "YBR022W"; gene_name "POA1"; transcript_biotype "protein_coding"; +chrII SGD exon 283490 284400 . + . transcript_id "YBR022W_id002"; gene_id "YBR022W"; gene_name "POA1"; +chrII SGD transcript 283738 284271 . + . transcript_id "YBR022W_id001"; gene_id "YBR022W"; gene_name "POA1"; transcript_biotype "protein_coding"; +chrII SGD exon 283738 284271 . + 0 transcript_id "YBR022W_id001"; gene_name "POA1"; gene_id "YBR022W"; +chrII SGD gene 284226 288054 . - . gene_id "YBR023C"; gene_biotype "protein_coding"; +chrII SGD transcript 284226 288054 . - . transcript_id "YBR023C_id001"; gene_id "YBR023C"; gene_name "CHS3"; transcript_biotype "protein_coding"; +chrII SGD exon 284226 288054 . - . transcript_id "YBR023C_id001"; gene_id "YBR023C"; gene_name "CHS3"; +chrII SGD transcript 284428 287925 . - . transcript_id "YBR023C_id003"; gene_id "YBR023C"; gene_name "CHS3"; transcript_biotype "protein_coding"; +chrII SGD exon 284428 287925 . - 0 transcript_id "YBR023C_id003"; gene_name "CHS3"; gene_id "YBR023C"; +chrII SGD gene 289106 290455 . + . gene_id "YBR024W"; gene_biotype "protein_coding"; +chrII SGD transcript 289106 290455 . + . transcript_id "YBR024W_id004"; gene_id "YBR024W"; gene_name "SCO2"; transcript_biotype "protein_coding"; +chrII SGD exon 289106 290455 . + . transcript_id "YBR024W_id004"; gene_id "YBR024W"; gene_name "SCO2"; +chrII SGD transcript 289445 290350 . + . transcript_id "YBR024W_id001"; gene_id "YBR024W"; gene_name "SCO2"; transcript_biotype "protein_coding"; +chrII SGD exon 289445 290350 . + 0 transcript_id "YBR024W_id001"; gene_name "SCO2"; gene_id "YBR024W"; +chrII SGD gene 289931 291896 . - . gene_id "YBR025C"; gene_biotype "protein_coding"; +chrII SGD transcript 289931 291896 . - . transcript_id "YBR025C_id001"; gene_id "YBR025C"; gene_name "OLA1"; transcript_biotype "protein_coding"; +chrII SGD exon 289931 291896 . - . transcript_id "YBR025C_id001"; gene_id "YBR025C"; gene_name "OLA1"; +chrII SGD transcript 290681 291865 . - . transcript_id "YBR025C_id002"; gene_id "YBR025C"; gene_name "OLA1"; transcript_biotype "protein_coding"; +chrII SGD exon 290681 291865 . - 0 transcript_id "YBR025C_id002"; gene_name "OLA1"; gene_id "YBR025C"; +chrII SGD gene 292747 294102 . - . gene_id "YBR026C"; gene_biotype "protein_coding"; +chrII SGD transcript 292747 294102 . - . transcript_id "YBR026C_id006"; gene_id "YBR026C"; gene_name "ETR1"; transcript_biotype "protein_coding"; +chrII SGD exon 292747 294102 . - . transcript_id "YBR026C_id006"; gene_id "YBR026C"; gene_name "ETR1"; +chrII SGD transcript 292877 294019 . - . transcript_id "YBR026C_id001"; gene_id "YBR026C"; gene_name "ETR1"; transcript_biotype "protein_coding"; +chrII SGD exon 292877 294019 . - 0 transcript_id "YBR026C_id001"; gene_name "ETR1"; gene_id "YBR026C"; +chrII SGD gene 294024 294356 . - . gene_id "YBR027C"; gene_biotype "protein_coding"; +chrII SGD transcript 294024 294356 . - . transcript_id "YBR027C_mRNA"; gene_id "YBR027C"; transcript_biotype "protein_coding"; +chrII SGD CDS 294024 294356 . - 0 transcript_id "YBR027C_mRNA"; gene_id "YBR027C"; +chrII SGD gene 294249 296062 . - . gene_id "YBR028C"; gene_biotype "protein_coding"; +chrII SGD transcript 294249 296062 . - . transcript_id "YBR028C_id007"; gene_id "YBR028C"; gene_name "YPK3"; transcript_biotype "protein_coding"; +chrII SGD exon 294249 296062 . - . transcript_id "YBR028C_id007"; gene_id "YBR028C"; gene_name "YPK3"; +chrII SGD transcript 294425 296002 . - . transcript_id "YBR028C_id001"; gene_id "YBR028C"; gene_name "YPK3"; transcript_biotype "protein_coding"; +chrII SGD exon 294425 296002 . - 0 transcript_id "YBR028C_id001"; gene_name "YPK3"; gene_id "YBR028C"; +chrII SGD gene 296227 297853 . - . gene_id "YBR029C"; gene_biotype "protein_coding"; +chrII SGD transcript 296227 297853 . - . transcript_id "YBR029C_id003"; gene_id "YBR029C"; gene_name "CDS1"; transcript_biotype "protein_coding"; +chrII SGD exon 296227 297853 . - . transcript_id "YBR029C_id003"; gene_id "YBR029C"; gene_name "CDS1"; +chrII SGD transcript 296369 297742 . - . transcript_id "YBR029C_id001"; gene_id "YBR029C"; gene_name "CDS1"; transcript_biotype "protein_coding"; +chrII SGD exon 296369 297742 . - 0 transcript_id "YBR029C_id001"; gene_name "CDS1"; gene_id "YBR029C"; +chrII SGD gene 298020 300071 . + . gene_id "YBR030W"; gene_biotype "protein_coding"; +chrII SGD transcript 298020 300071 . + . transcript_id "YBR030W_id001"; gene_id "YBR030W"; gene_name "RKM3"; transcript_biotype "protein_coding"; +chrII SGD exon 298020 300071 . + . transcript_id "YBR030W_id001"; gene_id "YBR030W"; gene_name "RKM3"; +chrII SGD transcript 298292 299950 . + . transcript_id "YBR030W_id003"; gene_id "YBR030W"; gene_name "RKM3"; transcript_biotype "protein_coding"; +chrII SGD exon 298292 299950 . + 0 transcript_id "YBR030W_id003"; gene_name "RKM3"; gene_id "YBR030W"; +chrII SGD gene 300145 301451 . + . gene_id "YBR031W"; gene_biotype "protein_coding"; +chrII SGD transcript 300145 301451 . + . transcript_id "YBR031W_id001"; gene_id "YBR031W"; gene_name "RPL4A"; transcript_biotype "protein_coding"; +chrII SGD exon 300145 301451 . + . transcript_id "YBR031W_id001"; gene_id "YBR031W"; gene_name "RPL4A"; +chrII SGD transcript 300166 301254 . + . transcript_id "YBR031W_id004"; gene_id "YBR031W"; gene_name "RPL4A"; transcript_biotype "protein_coding"; +chrII SGD exon 300166 301254 . + 0 transcript_id "YBR031W_id004"; gene_name "RPL4A"; gene_id "YBR031W"; +chrII SGD gene 301519 301821 . + . gene_id "YBR032W"; gene_biotype "protein_coding"; +chrII SGD transcript 301519 301821 . + . transcript_id "YBR032W_id001"; gene_id "YBR032W"; transcript_biotype "protein_coding"; +chrII SGD exon 301519 301821 . + 0 transcript_id "YBR032W_id001"; gene_id "YBR032W"; +chrII SGD gene 301944 304703 . + . gene_id "YBR033W"; gene_biotype "protein_coding"; +chrII SGD transcript 301944 304703 . + . transcript_id "YBR033W_id001"; gene_id "YBR033W"; gene_name "EDS1"; transcript_biotype "protein_coding"; +chrII SGD exon 301944 304703 . + 0 transcript_id "YBR033W_id001"; gene_name "EDS1"; gene_id "YBR033W"; +chrII SGD gene 304383 306037 . - . gene_id "YBR034C"; gene_biotype "protein_coding"; +chrII SGD transcript 304383 306037 . - . transcript_id "YBR034C_id001"; gene_id "YBR034C"; gene_name "HMT1"; transcript_biotype "protein_coding"; +chrII SGD exon 304383 306037 . - . transcript_id "YBR034C_id001"; gene_id "YBR034C"; gene_name "HMT1"; +chrII SGD transcript 304930 305976 . - . transcript_id "YBR034C_id005"; gene_id "YBR034C"; gene_name "HMT1"; transcript_biotype "protein_coding"; +chrII SGD exon 304930 305976 . - 0 transcript_id "YBR034C_id005"; gene_name "HMT1"; gene_id "YBR034C"; +chrII SGD gene 306136 307334 . - . gene_id "YBR035C"; gene_biotype "protein_coding"; +chrII SGD transcript 306136 307334 . - . transcript_id "YBR035C_id001"; gene_id "YBR035C"; gene_name "PDX3"; transcript_biotype "protein_coding"; +chrII SGD exon 306136 307334 . - . transcript_id "YBR035C_id001"; gene_id "YBR035C"; gene_name "PDX3"; +chrII SGD transcript 306269 306955 . - . transcript_id "YBR035C_id003"; gene_id "YBR035C"; gene_name "PDX3"; transcript_biotype "protein_coding"; +chrII SGD exon 306269 306955 . - 0 transcript_id "YBR035C_id003"; gene_name "PDX3"; gene_id "YBR035C"; +chrII SGD gene 307185 307345 . - . gene_id "YNCB0009C"; gene_biotype "ncRNA"; +chrII SGD transcript 307185 307345 . - . transcript_id "YNCB0009C_snoRNA"; gene_id "YNCB0009C"; gene_name "SNR161"; transcript_biotype "ncRNA"; +chrII SGD exon 307185 307345 . - . transcript_id "YNCB0009C_snoRNA"; gene_name "SNR161"; gene_id "YNCB0009C"; +chrII SGD gene 307587 308887 . + . gene_id "YNCB0010W"; gene_biotype "ncRNA"; +chrII SGD transcript 307587 308887 . + . transcript_id "YNCB0010W_telomerase_RNA"; gene_id "YNCB0010W"; gene_name "TLC1"; transcript_biotype "ncRNA"; +chrII SGD exon 307587 308887 . + . transcript_id "YNCB0010W_telomerase_RNA"; gene_name "TLC1"; gene_id "YNCB0010W"; +chrII SGD gene 308745 310355 . - . gene_id "YBR036C"; gene_biotype "protein_coding"; +chrII SGD transcript 308745 310355 . - . transcript_id "YBR036C_id001"; gene_id "YBR036C"; gene_name "CSG2"; transcript_biotype "protein_coding"; +chrII SGD exon 308745 310355 . - . transcript_id "YBR036C_id001"; gene_id "YBR036C"; gene_name "CSG2"; +chrII SGD transcript 309081 310313 . - . transcript_id "YBR036C_id003"; gene_id "YBR036C"; gene_name "CSG2"; transcript_biotype "protein_coding"; +chrII SGD exon 309081 310313 . - 0 transcript_id "YBR036C_id003"; gene_name "CSG2"; gene_id "YBR036C"; +chrII SGD gene 310492 311512 . - . gene_id "YBR037C"; gene_biotype "protein_coding"; +chrII SGD transcript 310492 311512 . - . transcript_id "YBR037C_id005"; gene_id "YBR037C"; gene_name "SCO1"; transcript_biotype "protein_coding"; +chrII SGD exon 310492 311512 . - . transcript_id "YBR037C_id005"; gene_id "YBR037C"; gene_name "SCO1"; +chrII SGD transcript 310565 311452 . - . transcript_id "YBR037C_id001"; gene_id "YBR037C"; gene_name "SCO1"; transcript_biotype "protein_coding"; +chrII SGD exon 310565 311452 . - 0 transcript_id "YBR037C_id001"; gene_name "SCO1"; gene_id "YBR037C"; +chrII SGD gene 311857 314979 . + . gene_id "YBR038W"; gene_biotype "protein_coding"; +chrII SGD transcript 311857 314979 . + . transcript_id "YBR038W_id003"; gene_id "YBR038W"; gene_name "CHS2"; transcript_biotype "protein_coding"; +chrII SGD exon 311857 314979 . + . transcript_id "YBR038W_id003"; gene_id "YBR038W"; gene_name "CHS2"; +chrII SGD transcript 311898 314789 . + . transcript_id "YBR038W_id001"; gene_id "YBR038W"; gene_name "CHS2"; transcript_biotype "protein_coding"; +chrII SGD exon 311898 314789 . + 0 transcript_id "YBR038W_id001"; gene_name "CHS2"; gene_id "YBR038W"; +chrII SGD gene 315484 316949 . + . gene_id "YBR039W"; gene_biotype "protein_coding"; +chrII SGD transcript 315484 316949 . + . transcript_id "YBR039W_id001"; gene_id "YBR039W"; gene_name "ATP3"; transcript_biotype "protein_coding"; +chrII SGD exon 315484 316949 . + . transcript_id "YBR039W_id001"; gene_id "YBR039W"; gene_name "ATP3"; +chrII SGD transcript 315575 316510 . + . transcript_id "YBR039W_id002"; gene_id "YBR039W"; gene_name "ATP3"; transcript_biotype "protein_coding"; +chrII SGD exon 315575 316510 . + 0 transcript_id "YBR039W_id002"; gene_name "ATP3"; gene_id "YBR039W"; +chrII SGD gene 316968 317864 . + . gene_id "YBR040W"; gene_biotype "protein_coding"; +chrII SGD transcript 316968 317864 . + . transcript_id "YBR040W_mRNA"; gene_id "YBR040W"; gene_name "FIG1"; transcript_biotype "protein_coding"; +chrII SGD CDS 316968 317864 . + 0 transcript_id "YBR040W_mRNA"; gene_name "FIG1"; gene_id "YBR040W"; +chrII SGD gene 318157 320417 . + . gene_id "YBR041W"; gene_biotype "protein_coding"; +chrII SGD transcript 318157 320417 . + . transcript_id "YBR041W_id001"; gene_id "YBR041W"; gene_name "FAT1"; transcript_biotype "protein_coding"; +chrII SGD exon 318157 320417 . + . transcript_id "YBR041W_id001"; gene_id "YBR041W"; gene_name "FAT1"; +chrII SGD transcript 318266 320275 . + . transcript_id "YBR041W_id003"; gene_id "YBR041W"; gene_name "FAT1"; transcript_biotype "protein_coding"; +chrII SGD exon 318266 320275 . + 0 transcript_id "YBR041W_id003"; gene_name "FAT1"; gene_id "YBR041W"; +chrII SGD gene 320279 321656 . - . gene_id "YBR042C"; gene_biotype "protein_coding"; +chrII SGD transcript 320279 321656 . - . transcript_id "YBR042C_id002"; gene_id "YBR042C"; gene_name "CST26"; transcript_biotype "protein_coding"; +chrII SGD exon 320279 321656 . - . transcript_id "YBR042C_id002"; gene_id "YBR042C"; gene_name "CST26"; +chrII SGD transcript 320416 321609 . - . transcript_id "YBR042C_id001"; gene_id "YBR042C"; gene_name "CST26"; transcript_biotype "protein_coding"; +chrII SGD exon 320416 321609 . - 0 transcript_id "YBR042C_id001"; gene_name "CST26"; gene_id "YBR042C"; +chrII SGD gene 321721 324094 . - . gene_id "YBR043C"; gene_biotype "protein_coding"; +chrII SGD transcript 321721 324094 . - . transcript_id "YBR043C_id001"; gene_id "YBR043C"; gene_name "QDR3"; transcript_biotype "protein_coding"; +chrII SGD exon 321721 324094 . - . transcript_id "YBR043C_id001"; gene_id "YBR043C"; gene_name "QDR3"; +chrII SGD transcript 321876 323945 . - . transcript_id "YBR043C_id002"; gene_id "YBR043C"; gene_name "QDR3"; transcript_biotype "protein_coding"; +chrII SGD exon 321876 323945 . - 0 transcript_id "YBR043C_id002"; gene_name "QDR3"; gene_id "YBR043C"; +chrII SGD gene 324341 326059 . - . gene_id "YBR044C"; gene_biotype "protein_coding"; +chrII SGD transcript 324341 326059 . - . transcript_id "YBR044C_id001"; gene_id "YBR044C"; gene_name "TCM62"; transcript_biotype "protein_coding"; +chrII SGD exon 324341 326059 . - 0 transcript_id "YBR044C_id001"; gene_name "TCM62"; gene_id "YBR044C"; +chrII SGD gene 326792 326865 . - . gene_id "YNCB0011C"; gene_biotype "ncRNA"; +chrII SGD transcript 326792 326865 . - . transcript_id "YNCB0011C_tRNA"; gene_id "YNCB0011C"; transcript_biotype "ncRNA"; +chrII SGD exon 326792 326865 . - . transcript_id "YNCB0011C_tRNA"; gene_id "YNCB0011C"; +chrII SGD gene 328173 330092 . - . gene_id "YBR045C"; gene_biotype "protein_coding"; +chrII SGD transcript 328173 330092 . - . transcript_id "YBR045C_mRNA"; gene_id "YBR045C"; gene_name "GIP1"; transcript_biotype "protein_coding"; +chrII SGD CDS 328173 330092 . - 0 transcript_id "YBR045C_mRNA"; gene_name "GIP1"; gene_id "YBR045C"; +chrII SGD gene 330073 331552 . - . gene_id "YBR046C"; gene_biotype "protein_coding"; +chrII SGD transcript 330073 331552 . - . transcript_id "YBR046C_id001"; gene_id "YBR046C"; gene_name "ZTA1"; transcript_biotype "protein_coding"; +chrII SGD exon 330073 331552 . - . transcript_id "YBR046C_id001"; gene_id "YBR046C"; gene_name "ZTA1"; +chrII SGD transcript 330507 331511 . - . transcript_id "YBR046C_id002"; gene_id "YBR046C"; gene_name "ZTA1"; transcript_biotype "protein_coding"; +chrII SGD exon 330507 331511 . - 0 transcript_id "YBR046C_id002"; gene_name "ZTA1"; gene_id "YBR046C"; +chrII SGD gene 331288 332494 . + . gene_id "YBR047W"; gene_biotype "protein_coding"; +chrII SGD transcript 331288 332494 . + . transcript_id "YBR047W_id001"; gene_id "YBR047W"; gene_name "FMP23"; transcript_biotype "protein_coding"; +chrII SGD exon 331288 332494 . + . transcript_id "YBR047W_id001"; gene_id "YBR047W"; gene_name "FMP23"; +chrII SGD transcript 331833 332360 . + . transcript_id "YBR047W_id002"; gene_id "YBR047W"; gene_name "FMP23"; transcript_biotype "protein_coding"; +chrII SGD exon 331833 332360 . + 0 transcript_id "YBR047W_id002"; gene_name "FMP23"; gene_id "YBR047W"; +chrII SGD gene 332816 334238 . + . gene_id "YBR048W"; gene_biotype "protein_coding"; +chrII SGD transcript 332816 334238 . + . transcript_id "YBR048W_id005"; gene_id "YBR048W"; gene_name "RPS11B"; transcript_biotype "protein_coding"; +chrII SGD exon 332816 334238 . + . transcript_id "YBR048W_id005"; gene_id "YBR048W"; gene_name "RPS11B"; +chrII SGD transcript 332831 333812 . + . transcript_id "YBR048W_id001"; gene_id "YBR048W"; gene_name "RPS11B"; transcript_biotype "protein_coding"; +chrII SGD exon 332831 332875 . + 0 transcript_id "YBR048W_id001"; gene_name "RPS11B"; gene_id "YBR048W"; +chrII SGD exon 333387 333812 . + 0 transcript_id "YBR048W_id001"; gene_name "RPS11B"; gene_id "YBR048W"; +chrII SGD gene 334140 336967 . - . gene_id "YBR049C"; gene_biotype "protein_coding"; +chrII SGD transcript 334140 336967 . - . transcript_id "YBR049C_id003"; gene_id "YBR049C"; gene_name "REB1"; transcript_biotype "protein_coding"; +chrII SGD exon 334140 336967 . - . transcript_id "YBR049C_id003"; gene_id "YBR049C"; gene_name "REB1"; +chrII SGD transcript 334386 336818 . - . transcript_id "YBR049C_id001"; gene_id "YBR049C"; gene_name "REB1"; transcript_biotype "protein_coding"; +chrII SGD exon 334386 336818 . - 0 transcript_id "YBR049C_id001"; gene_name "REB1"; gene_id "YBR049C"; +chrII SGD gene 337145 338460 . - . gene_id "YBR050C"; gene_biotype "protein_coding"; +chrII SGD transcript 337145 338460 . - . transcript_id "YBR050C_id001"; gene_id "YBR050C"; gene_name "REG2"; transcript_biotype "protein_coding"; +chrII SGD exon 337145 338460 . - . transcript_id "YBR050C_id001"; gene_id "YBR050C"; gene_name "REG2"; +chrII SGD transcript 337183 338199 . - . transcript_id "YBR050C_id002"; gene_id "YBR050C"; gene_name "REG2"; transcript_biotype "protein_coding"; +chrII SGD exon 337183 338199 . - 0 transcript_id "YBR050C_id002"; gene_name "REG2"; gene_id "YBR050C"; +chrII SGD gene 337988 338338 . + . gene_id "YBR051W"; gene_biotype "protein_coding"; +chrII SGD transcript 337988 338338 . + . transcript_id "YBR051W_mRNA"; gene_id "YBR051W"; transcript_biotype "protein_coding"; +chrII SGD CDS 337988 338338 . + 0 transcript_id "YBR051W_mRNA"; gene_id "YBR051W"; +chrII SGD gene 338532 339423 . - . gene_id "YBR052C"; gene_biotype "protein_coding"; +chrII SGD transcript 338532 339423 . - . transcript_id "YBR052C_id004"; gene_id "YBR052C"; gene_name "RFS1"; transcript_biotype "protein_coding"; +chrII SGD exon 338532 339423 . - . transcript_id "YBR052C_id004"; gene_id "YBR052C"; gene_name "RFS1"; +chrII SGD transcript 338720 339352 . - . transcript_id "YBR052C_id001"; gene_id "YBR052C"; gene_name "RFS1"; transcript_biotype "protein_coding"; +chrII SGD exon 338720 339352 . - 0 transcript_id "YBR052C_id001"; gene_name "RFS1"; gene_id "YBR052C"; +chrII SGD gene 339332 340763 . - . gene_id "YBR053C"; gene_biotype "protein_coding"; +chrII SGD transcript 339332 340763 . - . transcript_id "YBR053C_id001"; gene_id "YBR053C"; transcript_biotype "protein_coding"; +chrII SGD exon 339332 340763 . - . transcript_id "YBR053C_id001"; gene_id "YBR053C"; +chrII SGD transcript 339675 340751 . - . transcript_id "YBR053C_id002"; gene_id "YBR053C"; transcript_biotype "protein_coding"; +chrII SGD exon 339675 340751 . - 0 transcript_id "YBR053C_id002"; gene_id "YBR053C"; +chrII SGD gene 342781 344584 . + . gene_id "YBR054W"; gene_biotype "protein_coding"; +chrII SGD transcript 342781 344584 . + . transcript_id "YBR054W_id001"; gene_id "YBR054W"; gene_name "YRO2"; transcript_biotype "protein_coding"; +chrII SGD exon 342781 344584 . + . transcript_id "YBR054W_id001"; gene_id "YBR054W"; gene_name "YRO2"; +chrII SGD transcript 343101 344135 . + . transcript_id "YBR054W_id008"; gene_id "YBR054W"; gene_name "YRO2"; transcript_biotype "protein_coding"; +chrII SGD exon 343101 344135 . + 0 transcript_id "YBR054W_id008"; gene_name "YRO2"; gene_id "YBR054W"; +chrII SGD gene 344489 347322 . - . gene_id "YBR055C"; gene_biotype "protein_coding"; +chrII SGD transcript 344489 347322 . - . transcript_id "YBR055C_id001"; gene_id "YBR055C"; gene_name "PRP6"; transcript_biotype "protein_coding"; +chrII SGD exon 344489 347322 . - . transcript_id "YBR055C_id001"; gene_id "YBR055C"; gene_name "PRP6"; +chrII SGD transcript 344602 347301 . - . transcript_id "YBR055C_id002"; gene_id "YBR055C"; gene_name "PRP6"; transcript_biotype "protein_coding"; +chrII SGD exon 344602 347301 . - 0 transcript_id "YBR055C_id002"; gene_name "PRP6"; gene_id "YBR055C"; +chrII SGD gene 347603 347686 . + . gene_id "YNCB0012W"; gene_biotype "ncRNA"; +chrII SGD transcript 347603 347686 . + . transcript_id "YNCB0012W_tRNA"; gene_id "YNCB0012W"; transcript_biotype "ncRNA"; +chrII SGD exon 347603 347686 . + . transcript_id "YNCB0012W_tRNA"; gene_id "YNCB0012W"; +chrII SGD gene 347809 349433 . + . gene_id "YBR056W"; gene_biotype "protein_coding"; +chrII SGD transcript 347809 349433 . + . transcript_id "YBR056W_id008"; gene_id "YBR056W"; gene_name "MRX18"; transcript_biotype "protein_coding"; +chrII SGD exon 347809 349433 . + . transcript_id "YBR056W_id008"; gene_id "YBR056W"; gene_name "MRX18"; +chrII SGD transcript 347879 349384 . + . transcript_id "YBR056W_id001"; gene_id "YBR056W"; gene_name "MRX18"; transcript_biotype "protein_coding"; +chrII SGD exon 347879 349384 . + 0 transcript_id "YBR056W_id001"; gene_name "MRX18"; gene_id "YBR056W"; +chrII SGD gene 350827 350898 . + . gene_id "YNCB0013W"; gene_biotype "ncRNA"; +chrII SGD transcript 350827 350898 . + . transcript_id "YNCB0013W_tRNA"; gene_id "YNCB0013W"; transcript_biotype "ncRNA"; +chrII SGD exon 350827 350898 . + . transcript_id "YNCB0013W_tRNA"; gene_id "YNCB0013W"; +chrII SGD gene 351095 351881 . + . gene_id "YBR056W-A"; gene_biotype "protein_coding"; +chrII SGD transcript 351095 351881 . + . transcript_id "YBR056W-A_id003"; gene_id "YBR056W-A"; gene_name "MNC1"; transcript_biotype "protein_coding"; +chrII SGD exon 351095 351881 . + . transcript_id "YBR056W-A_id003"; gene_id "YBR056W-A"; gene_name "MNC1"; +chrII SGD transcript 351255 351455 . + . transcript_id "YBR056W-A_id001"; gene_id "YBR056W-A"; gene_name "MNC1"; transcript_biotype "protein_coding"; +chrII SGD exon 351255 351455 . + 0 transcript_id "YBR056W-A_id001"; gene_name "MNC1"; gene_id "YBR056W-A"; +chrII SGD gene 351293 351451 . - . gene_id "YBR056C-B"; gene_biotype "protein_coding"; +chrII SGD transcript 351293 351451 . - . transcript_id "YBR056C-B_id001"; gene_id "YBR056C-B"; transcript_biotype "protein_coding"; +chrII SGD exon 351293 351451 . - 0 transcript_id "YBR056C-B_id001"; gene_id "YBR056C-B"; +chrII SGD gene 352055 353405 . - . gene_id "YBR057C"; gene_biotype "protein_coding"; +chrII SGD transcript 352055 353405 . - . transcript_id "YBR057C_id002"; gene_id "YBR057C"; gene_name "MUM2"; transcript_biotype "protein_coding"; +chrII SGD exon 352055 353405 . - . transcript_id "YBR057C_id002"; gene_id "YBR057C"; gene_name "MUM2"; +chrII SGD transcript 352193 353293 . - . transcript_id "YBR057C_id001"; gene_id "YBR057C"; gene_name "MUM2"; transcript_biotype "protein_coding"; +chrII SGD exon 352193 353293 . - 0 transcript_id "YBR057C_id001"; gene_name "MUM2"; gene_id "YBR057C"; +chrII SGD gene 353656 356091 . - . gene_id "YBR058C"; gene_biotype "protein_coding"; +chrII SGD transcript 353656 356091 . - . transcript_id "YBR058C_id002"; gene_id "YBR058C"; gene_name "UBP14"; transcript_biotype "protein_coding"; +chrII SGD exon 353656 356091 . - . transcript_id "YBR058C_id002"; gene_id "YBR058C"; gene_name "UBP14"; +chrII SGD transcript 353672 356017 . - . transcript_id "YBR058C_id001"; gene_id "YBR058C"; gene_name "UBP14"; transcript_biotype "protein_coding"; +chrII SGD exon 353672 356017 . - 0 transcript_id "YBR058C_id001"; gene_name "UBP14"; gene_id "YBR058C"; +chrII SGD gene 356079 356625 . - . gene_id "YBR058C-A"; gene_biotype "protein_coding"; +chrII SGD transcript 356079 356625 . - . transcript_id "YBR058C-A_id007"; gene_id "YBR058C-A"; gene_name "TSC3"; transcript_biotype "protein_coding"; +chrII SGD exon 356079 356625 . - . transcript_id "YBR058C-A_id007"; gene_id "YBR058C-A"; gene_name "TSC3"; +chrII SGD transcript 356324 356566 . - . transcript_id "YBR058C-A_id001"; gene_id "YBR058C-A"; gene_name "TSC3"; transcript_biotype "protein_coding"; +chrII SGD exon 356324 356566 . - 0 transcript_id "YBR058C-A_id001"; gene_name "TSC3"; gene_id "YBR058C-A"; +chrII SGD gene 356762 360234 . - . gene_id "YBR059C"; gene_biotype "protein_coding"; +chrII SGD transcript 356762 360234 . - . transcript_id "YBR059C_id004"; gene_id "YBR059C"; gene_name "AKL1"; transcript_biotype "protein_coding"; +chrII SGD exon 356762 360234 . - . transcript_id "YBR059C_id004"; gene_id "YBR059C"; gene_name "AKL1"; +chrII SGD transcript 356861 360187 . - . transcript_id "YBR059C_id001"; gene_id "YBR059C"; gene_name "AKL1"; transcript_biotype "protein_coding"; +chrII SGD exon 356861 360187 . - 0 transcript_id "YBR059C_id001"; gene_name "AKL1"; gene_id "YBR059C"; +chrII SGD gene 360589 362638 . - . gene_id "YBR060C"; gene_biotype "protein_coding"; +chrII SGD transcript 360589 362638 . - . transcript_id "YBR060C_id001"; gene_id "YBR060C"; gene_name "ORC2"; transcript_biotype "protein_coding"; +chrII SGD exon 360589 362638 . - . transcript_id "YBR060C_id001"; gene_id "YBR060C"; gene_name "ORC2"; +chrII SGD transcript 360652 362514 . - . transcript_id "YBR060C_id002"; gene_id "YBR060C"; gene_name "ORC2"; transcript_biotype "protein_coding"; +chrII SGD exon 360652 362514 . - 0 transcript_id "YBR060C_id002"; gene_name "ORC2"; gene_id "YBR060C"; +chrII SGD gene 364175 365726 . - . gene_id "YBR061C"; gene_biotype "protein_coding"; +chrII SGD transcript 364175 365726 . - . transcript_id "YBR061C_id003"; gene_id "YBR061C"; gene_name "TRM7"; transcript_biotype "protein_coding"; +chrII SGD exon 364175 365726 . - . transcript_id "YBR061C_id003"; gene_id "YBR061C"; gene_name "TRM7"; +chrII SGD transcript 364787 365719 . - . transcript_id "YBR061C_id001"; gene_id "YBR061C"; gene_name "TRM7"; transcript_biotype "protein_coding"; +chrII SGD exon 364787 365719 . - 0 transcript_id "YBR061C_id001"; gene_name "TRM7"; gene_id "YBR061C"; +chrII SGD gene 365896 366673 . - . gene_id "YBR062C"; gene_biotype "protein_coding"; +chrII SGD transcript 365896 366673 . - . transcript_id "YBR062C_id003"; gene_id "YBR062C"; transcript_biotype "protein_coding"; +chrII SGD exon 365896 366673 . - . transcript_id "YBR062C_id003"; gene_id "YBR062C"; +chrII SGD transcript 365976 366600 . - . transcript_id "YBR062C_id001"; gene_id "YBR062C"; transcript_biotype "protein_coding"; +chrII SGD exon 365976 366502 . - 2 transcript_id "YBR062C_id001"; gene_id "YBR062C"; +chrII SGD exon 366585 366600 . - 0 transcript_id "YBR062C_id001"; gene_id "YBR062C"; +chrII SGD gene 366913 369557 . - . gene_id "YBR063C"; gene_biotype "protein_coding"; +chrII SGD transcript 366913 369557 . - . transcript_id "YBR063C_id001"; gene_id "YBR063C"; gene_name "CNM1"; transcript_biotype "protein_coding"; +chrII SGD exon 366913 369557 . - . transcript_id "YBR063C_id001"; gene_id "YBR063C"; gene_name "CNM1"; +chrII SGD transcript 366970 368184 . - . transcript_id "YBR063C_id003"; gene_id "YBR063C"; gene_name "CNM1"; transcript_biotype "protein_coding"; +chrII SGD exon 366970 368184 . - 0 transcript_id "YBR063C_id003"; gene_name "CNM1"; gene_id "YBR063C"; +chrII SGD gene 367763 368191 . + . gene_id "YBR064W"; gene_biotype "protein_coding"; +chrII SGD transcript 367763 368191 . + . transcript_id "YBR064W_mRNA"; gene_id "YBR064W"; transcript_biotype "protein_coding"; +chrII SGD CDS 367763 368191 . + 0 transcript_id "YBR064W_mRNA"; gene_id "YBR064W"; +chrII SGD gene 367999 369713 . - . gene_id "YBR065C"; gene_biotype "protein_coding"; +chrII SGD transcript 367999 369713 . - . transcript_id "YBR065C_id001"; gene_id "YBR065C"; gene_name "ECM2"; transcript_biotype "protein_coding"; +chrII SGD exon 367999 369713 . - . transcript_id "YBR065C_id001"; gene_id "YBR065C"; gene_name "ECM2"; +chrII SGD transcript 368584 369678 . - . transcript_id "YBR065C_id002"; gene_id "YBR065C"; gene_name "ECM2"; transcript_biotype "protein_coding"; +chrII SGD exon 368584 369678 . - 0 transcript_id "YBR065C_id002"; gene_name "ECM2"; gene_id "YBR065C"; +chrII SGD gene 369932 371004 . - . gene_id "YBR066C"; gene_biotype "protein_coding"; +chrII SGD transcript 369932 371004 . - . transcript_id "YBR066C_id001"; gene_id "YBR066C"; gene_name "NRG2"; transcript_biotype "protein_coding"; +chrII SGD exon 369932 371004 . - . transcript_id "YBR066C_id001"; gene_id "YBR066C"; gene_name "NRG2"; +chrII SGD transcript 370037 370699 . - . transcript_id "YBR066C_id002"; gene_id "YBR066C"; gene_name "NRG2"; transcript_biotype "protein_coding"; +chrII SGD exon 370037 370699 . - 0 transcript_id "YBR066C_id002"; gene_name "NRG2"; gene_id "YBR066C"; +chrII SGD gene 371965 373120 . - . gene_id "YBR067C"; gene_biotype "protein_coding"; +chrII SGD transcript 371965 373120 . - . transcript_id "YBR067C_id001"; gene_id "YBR067C"; gene_name "TIP1"; transcript_biotype "protein_coding"; +chrII SGD exon 371965 373120 . - . transcript_id "YBR067C_id001"; gene_id "YBR067C"; gene_name "TIP1"; +chrII SGD transcript 372103 372735 . - . transcript_id "YBR067C_id002"; gene_id "YBR067C"; gene_name "TIP1"; transcript_biotype "protein_coding"; +chrII SGD exon 372103 372735 . - 0 transcript_id "YBR067C_id002"; gene_name "TIP1"; gene_id "YBR067C"; +chrII SGD gene 373642 375767 . - . gene_id "YBR068C"; gene_biotype "protein_coding"; +chrII SGD transcript 373642 375767 . - . transcript_id "YBR068C_id002"; gene_id "YBR068C"; gene_name "BAP2"; transcript_biotype "protein_coding"; +chrII SGD exon 373642 375767 . - . transcript_id "YBR068C_id002"; gene_id "YBR068C"; gene_name "BAP2"; +chrII SGD transcript 373861 375690 . - . transcript_id "YBR068C_id001"; gene_id "YBR068C"; gene_name "BAP2"; transcript_biotype "protein_coding"; +chrII SGD exon 373861 375690 . - 0 transcript_id "YBR068C_id001"; gene_name "BAP2"; gene_id "YBR068C"; +chrII SGD gene 376414 378602 . - . gene_id "YBR069C"; gene_biotype "protein_coding"; +chrII SGD transcript 376414 378602 . - . transcript_id "YBR069C_id006"; gene_id "YBR069C"; gene_name "TAT1"; transcript_biotype "protein_coding"; +chrII SGD exon 376414 378602 . - . transcript_id "YBR069C_id006"; gene_id "YBR069C"; gene_name "TAT1"; +chrII SGD transcript 376574 378433 . - . transcript_id "YBR069C_id001"; gene_id "YBR069C"; gene_name "TAT1"; transcript_biotype "protein_coding"; +chrII SGD exon 376574 378433 . - 0 transcript_id "YBR069C_id001"; gene_name "TAT1"; gene_id "YBR069C"; +chrII SGD gene 376610 378633 . + . gene_id "YNCB0014W"; gene_biotype "ncRNA"; +chrII SGD transcript 376610 378633 . + . transcript_id "YNCB0014W_ncRNA"; gene_id "YNCB0014W"; gene_name "TBRT"; transcript_biotype "ncRNA"; +chrII SGD exon 376610 378633 . + . transcript_id "YNCB0014W_ncRNA"; gene_name "TBRT"; gene_id "YNCB0014W"; +chrII SGD gene 379101 379980 . - . gene_id "YBR070C"; gene_biotype "protein_coding"; +chrII SGD transcript 379101 379980 . - . transcript_id "YBR070C_id002"; gene_id "YBR070C"; gene_name "ALG14"; transcript_biotype "protein_coding"; +chrII SGD exon 379101 379980 . - . transcript_id "YBR070C_id002"; gene_id "YBR070C"; gene_name "ALG14"; +chrII SGD transcript 379221 379934 . - . transcript_id "YBR070C_id001"; gene_id "YBR070C"; gene_name "ALG14"; transcript_biotype "protein_coding"; +chrII SGD exon 379221 379934 . - 0 transcript_id "YBR070C_id001"; gene_name "ALG14"; gene_id "YBR070C"; +chrII SGD gene 380195 381322 . + . gene_id "YBR071W"; gene_biotype "protein_coding"; +chrII SGD transcript 380195 381322 . + . transcript_id "YBR071W_id001"; gene_id "YBR071W"; transcript_biotype "protein_coding"; +chrII SGD exon 380195 381322 . + . transcript_id "YBR071W_id001"; gene_id "YBR071W"; +chrII SGD transcript 380411 381046 . + . transcript_id "YBR071W_id002"; gene_id "YBR071W"; transcript_biotype "protein_coding"; +chrII SGD exon 380411 381046 . + 0 transcript_id "YBR071W_id002"; gene_id "YBR071W"; +chrII SGD gene 381848 382838 . + . gene_id "YBR072W"; gene_biotype "protein_coding"; +chrII SGD transcript 381848 382838 . + . transcript_id "YBR072W_id001"; gene_id "YBR072W"; gene_name "HSP26"; transcript_biotype "protein_coding"; +chrII SGD exon 381848 382838 . + . transcript_id "YBR072W_id001"; gene_id "YBR072W"; gene_name "HSP26"; +chrII SGD transcript 382030 382674 . + . transcript_id "YBR072W_id002"; gene_id "YBR072W"; gene_name "HSP26"; transcript_biotype "protein_coding"; +chrII SGD exon 382030 382674 . + 0 transcript_id "YBR072W_id002"; gene_name "HSP26"; gene_id "YBR072W"; +chrII SGD gene 382860 383021 . - . gene_id "YBR072C-A"; gene_biotype "protein_coding"; +chrII SGD transcript 382860 383021 . - . transcript_id "YBR072C-A_mRNA"; gene_id "YBR072C-A"; transcript_biotype "protein_coding"; +chrII SGD CDS 382860 383021 . - 0 transcript_id "YBR072C-A_mRNA"; gene_id "YBR072C-A"; +chrII SGD gene 383112 385988 . + . gene_id "YBR073W"; gene_biotype "protein_coding"; +chrII SGD transcript 383112 385988 . + . transcript_id "YBR073W_mRNA"; gene_id "YBR073W"; gene_name "RDH54"; transcript_biotype "protein_coding"; +chrII SGD CDS 383112 385988 . + 0 transcript_id "YBR073W_mRNA"; gene_name "RDH54"; gene_id "YBR073W"; +chrII SGD gene 386281 389331 . + . gene_id "YBR074W"; gene_biotype "protein_coding"; +chrII SGD transcript 386281 389331 . + . transcript_id "YBR074W_id001"; gene_id "YBR074W"; gene_name "PFF1"; transcript_biotype "protein_coding"; +chrII SGD exon 386281 389331 . + . transcript_id "YBR074W_id001"; gene_id "YBR074W"; gene_name "PFF1"; +chrII SGD transcript 386286 389216 . + . transcript_id "YBR074W_id002"; gene_id "YBR074W"; gene_name "PFF1"; transcript_biotype "protein_coding"; +chrII SGD exon 386286 389216 . + 0 transcript_id "YBR074W_id002"; gene_name "PFF1"; gene_id "YBR074W"; +chrII SGD gene 390129 391670 . - . gene_id "YBR076C-A"; gene_biotype "protein_coding"; +chrII SGD transcript 390129 391670 . - . transcript_id "YBR076C-A_id001"; gene_id "YBR076C-A"; transcript_biotype "protein_coding"; +chrII SGD exon 390129 391670 . - . transcript_id "YBR076C-A_id001"; gene_id "YBR076C-A"; +chrII SGD gene 390227 391291 . + . gene_id "YBR076W"; gene_biotype "protein_coding"; +chrII SGD transcript 390227 391291 . + . transcript_id "YBR076W_mRNA"; gene_id "YBR076W"; gene_name "ECM8"; transcript_biotype "protein_coding"; +chrII SGD CDS 390227 391291 . + 0 transcript_id "YBR076W_mRNA"; gene_name "ECM8"; gene_id "YBR076W"; +chrII SGD transcript 391351 391617 . - . transcript_id "YBR076C-A_id011"; gene_id "YBR076C-A"; transcript_biotype "protein_coding"; +chrII SGD exon 391351 391617 . - 0 transcript_id "YBR076C-A_id011"; gene_id "YBR076C-A"; +chrII SGD gene 391588 392834 . - . gene_id "YBR077C"; gene_biotype "protein_coding"; +chrII SGD transcript 391588 392834 . - . transcript_id "YBR077C_id001"; gene_id "YBR077C"; gene_name "SLM4"; transcript_biotype "protein_coding"; +chrII SGD exon 391588 392834 . - . transcript_id "YBR077C_id001"; gene_id "YBR077C"; gene_name "SLM4"; +chrII SGD transcript 391805 392293 . - . transcript_id "YBR077C_id002"; gene_id "YBR077C"; gene_name "SLM4"; transcript_biotype "protein_coding"; +chrII SGD exon 391805 392293 . - 0 transcript_id "YBR077C_id002"; gene_name "SLM4"; gene_id "YBR077C"; +chrII SGD gene 392947 395384 . + . gene_id "YBR078W"; gene_biotype "protein_coding"; +chrII SGD transcript 392947 395384 . + . transcript_id "YBR078W_id003"; gene_id "YBR078W"; gene_name "ECM33"; transcript_biotype "protein_coding"; +chrII SGD exon 392947 395384 . + . transcript_id "YBR078W_id003"; gene_id "YBR078W"; gene_name "ECM33"; +chrII SGD transcript 393123 394742 . + . transcript_id "YBR078W_id001"; gene_id "YBR078W"; gene_name "ECM33"; transcript_biotype "protein_coding"; +chrII SGD exon 393123 393180 . + 0 transcript_id "YBR078W_id001"; gene_name "ECM33"; gene_id "YBR078W"; +chrII SGD exon 393511 394742 . + 2 transcript_id "YBR078W_id001"; gene_name "ECM33"; gene_id "YBR078W"; +chrII SGD gene 395231 398302 . - . gene_id "YBR079C"; gene_biotype "protein_coding"; +chrII SGD transcript 395231 398302 . - . transcript_id "YBR079C_id003"; gene_id "YBR079C"; gene_name "RPG1"; transcript_biotype "protein_coding"; +chrII SGD exon 395231 398302 . - . transcript_id "YBR079C_id003"; gene_id "YBR079C"; gene_name "RPG1"; +chrII SGD transcript 395383 398277 . - . transcript_id "YBR079C_id001"; gene_id "YBR079C"; gene_name "RPG1"; transcript_biotype "protein_coding"; +chrII SGD exon 395383 398277 . - 0 transcript_id "YBR079C_id001"; gene_name "RPG1"; gene_id "YBR079C"; +chrII SGD gene 398464 400926 . - . gene_id "YBR080C"; gene_biotype "protein_coding"; +chrII SGD transcript 398464 400926 . - . transcript_id "YBR080C_id002"; gene_id "YBR080C"; gene_name "SEC18"; transcript_biotype "protein_coding"; +chrII SGD exon 398464 400926 . - . transcript_id "YBR080C_id002"; gene_id "YBR080C"; gene_name "SEC18"; +chrII SGD transcript 398614 400890 . - . transcript_id "YBR080C_id001"; gene_id "YBR080C"; gene_name "SEC18"; transcript_biotype "protein_coding"; +chrII SGD exon 398614 400890 . - 0 transcript_id "YBR080C_id001"; gene_name "SEC18"; gene_id "YBR080C"; +chrII SGD gene 401253 405251 . - . gene_id "YBR081C"; gene_biotype "protein_coding"; +chrII SGD transcript 401253 405251 . - . transcript_id "YBR081C_mRNA"; gene_id "YBR081C"; gene_name "SPT7"; transcript_biotype "protein_coding"; +chrII SGD CDS 401253 405251 . - 0 transcript_id "YBR081C_mRNA"; gene_name "SPT7"; gene_id "YBR081C"; +chrII SGD gene 405878 405949 . + . gene_id "YNCB0015W"; gene_biotype "ncRNA"; +chrII SGD transcript 405878 405949 . + . transcript_id "YNCB0015W_tRNA"; gene_id "YNCB0015W"; transcript_biotype "ncRNA"; +chrII SGD exon 405878 405949 . + . transcript_id "YNCB0015W_tRNA"; gene_id "YNCB0015W"; +chrII SGD gene 405960 406031 . + . gene_id "YNCB0016W"; gene_biotype "ncRNA"; +chrII SGD transcript 405960 406031 . + . transcript_id "YNCB0016W_tRNA"; gene_id "YNCB0016W"; transcript_biotype "ncRNA"; +chrII SGD exon 405960 406031 . + . transcript_id "YNCB0016W_tRNA"; gene_id "YNCB0016W"; +chrII SGD gene 406101 407208 . - . gene_id "YBR082C"; gene_biotype "protein_coding"; +chrII SGD transcript 406101 407208 . - . transcript_id "YBR082C_id002"; gene_id "YBR082C"; gene_name "UBC4"; transcript_biotype "protein_coding"; +chrII SGD exon 406101 407208 . - . transcript_id "YBR082C_id002"; gene_id "YBR082C"; gene_name "UBC4"; +chrII SGD transcript 406628 407169 . - . transcript_id "YBR082C_id001"; gene_id "YBR082C"; gene_name "UBC4"; transcript_biotype "protein_coding"; +chrII SGD exon 406628 407027 . - 1 transcript_id "YBR082C_id001"; gene_name "UBC4"; gene_id "YBR082C"; +chrII SGD exon 407123 407169 . - 0 transcript_id "YBR082C_id001"; gene_name "UBC4"; gene_id "YBR082C"; +chrII SGD gene 408947 410708 . + . gene_id "YBR083W"; gene_biotype "protein_coding"; +chrII SGD transcript 408947 410708 . + . transcript_id "YBR083W_id002"; gene_id "YBR083W"; gene_name "TEC1"; transcript_biotype "protein_coding"; +chrII SGD exon 408947 410708 . + . transcript_id "YBR083W_id002"; gene_id "YBR083W"; gene_name "TEC1"; +chrII SGD transcript 409169 410629 . + . transcript_id "YBR083W_id001"; gene_id "YBR083W"; gene_name "TEC1"; transcript_biotype "protein_coding"; +chrII SGD exon 409169 410629 . + 0 transcript_id "YBR083W_id001"; gene_name "TEC1"; gene_id "YBR083W"; +chrII SGD gene 410992 414180 . + . gene_id "YBR084W"; gene_biotype "protein_coding"; +chrII SGD transcript 410992 414180 . + . transcript_id "YBR084W_id002"; gene_id "YBR084W"; gene_name "MIS1"; transcript_biotype "protein_coding"; +chrII SGD exon 410992 414180 . + . transcript_id "YBR084W_id002"; gene_id "YBR084W"; gene_name "MIS1"; +chrII SGD transcript 411054 413981 . + . transcript_id "YBR084W_id001"; gene_id "YBR084W"; gene_name "MIS1"; transcript_biotype "protein_coding"; +chrII SGD exon 411054 413981 . + 0 transcript_id "YBR084W_id001"; gene_name "MIS1"; gene_id "YBR084W"; +chrII SGD gene 414063 415462 . - . gene_id "YBR084C-A"; gene_biotype "protein_coding"; +chrII SGD transcript 414063 415462 . - . transcript_id "YBR084C-A_id004"; gene_id "YBR084C-A"; gene_name "RPL19A"; transcript_biotype "protein_coding"; +chrII SGD exon 414063 415462 . - . transcript_id "YBR084C-A_id004"; gene_id "YBR084C-A"; gene_name "RPL19A"; +chrII SGD transcript 414186 415261 . - . transcript_id "YBR084C-A_id001"; gene_id "YBR084C-A"; gene_name "RPL19A"; transcript_biotype "protein_coding"; +chrII SGD exon 414186 414753 . - 1 transcript_id "YBR084C-A_id001"; gene_name "RPL19A"; gene_id "YBR084C-A"; +chrII SGD exon 415260 415261 . - 0 transcript_id "YBR084C-A_id001"; gene_name "RPL19A"; gene_id "YBR084C-A"; +chrII SGD gene 415428 417068 . + . gene_id "YBR085W"; gene_biotype "protein_coding"; +chrII SGD transcript 415428 417068 . + . transcript_id "YBR085W_id001"; gene_id "YBR085W"; gene_name "AAC3"; transcript_biotype "protein_coding"; +chrII SGD exon 415428 417068 . + . transcript_id "YBR085W_id001"; gene_id "YBR085W"; gene_name "AAC3"; +chrII SGD transcript 415983 416906 . + . transcript_id "YBR085W_id011"; gene_id "YBR085W"; gene_name "AAC3"; transcript_biotype "protein_coding"; +chrII SGD exon 415983 416906 . + 0 transcript_id "YBR085W_id011"; gene_name "AAC3"; gene_id "YBR085W"; +chrII SGD gene 418530 419738 . - . gene_id "YBR085C-A"; gene_biotype "protein_coding"; +chrII SGD transcript 418530 419738 . - . transcript_id "YBR085C-A_id001"; gene_id "YBR085C-A"; transcript_biotype "protein_coding"; +chrII SGD exon 418530 419738 . - . transcript_id "YBR085C-A_id001"; gene_id "YBR085C-A"; +chrII SGD transcript 418907 419164 . - . transcript_id "YBR085C-A_id004"; gene_id "YBR085C-A"; transcript_biotype "protein_coding"; +chrII SGD exon 418907 419164 . - 0 transcript_id "YBR085C-A_id004"; gene_id "YBR085C-A"; +chrII SGD gene 420076 423360 . - . gene_id "YBR086C"; gene_biotype "protein_coding"; +chrII SGD transcript 420076 423360 . - . transcript_id "YBR086C_id001"; gene_id "YBR086C"; gene_name "IST2"; transcript_biotype "protein_coding"; +chrII SGD exon 420076 423360 . - . transcript_id "YBR086C_id001"; gene_id "YBR086C"; gene_name "IST2"; +chrII SGD transcript 420201 423041 . - . transcript_id "YBR086C_id002"; gene_id "YBR086C"; gene_name "IST2"; transcript_biotype "protein_coding"; +chrII SGD exon 420201 423041 . - 0 transcript_id "YBR086C_id002"; gene_name "IST2"; gene_id "YBR086C"; +chrII SGD gene 423602 424879 . + . gene_id "YBR087W"; gene_biotype "protein_coding"; +chrII SGD transcript 423602 424879 . + . transcript_id "YBR087W_id001"; gene_id "YBR087W"; gene_name "RFC5"; transcript_biotype "protein_coding"; +chrII SGD exon 423602 424879 . + . transcript_id "YBR087W_id001"; gene_id "YBR087W"; gene_name "RFC5"; +chrII SGD transcript 423765 424829 . + . transcript_id "YBR087W_id003"; gene_id "YBR087W"; gene_name "RFC5"; transcript_biotype "protein_coding"; +chrII SGD exon 423765 424829 . + 0 transcript_id "YBR087W_id003"; gene_name "RFC5"; gene_id "YBR087W"; +chrII SGD gene 424790 425809 . - . gene_id "YBR088C"; gene_biotype "protein_coding"; +chrII SGD transcript 424790 425809 . - . transcript_id "YBR088C_id002"; gene_id "YBR088C"; gene_name "POL30"; transcript_biotype "protein_coding"; +chrII SGD exon 424790 425809 . - . transcript_id "YBR088C_id002"; gene_id "YBR088C"; gene_name "POL30"; +chrII SGD transcript 424990 425766 . - . transcript_id "YBR088C_id001"; gene_id "YBR088C"; gene_name "POL30"; transcript_biotype "protein_coding"; +chrII SGD exon 424990 425766 . - 0 transcript_id "YBR088C_id001"; gene_name "POL30"; gene_id "YBR088C"; +chrII SGD gene 425028 426037 . + . gene_id "YBR089W"; gene_biotype "protein_coding"; +chrII SGD transcript 425028 426037 . + . transcript_id "YBR089W_id001"; gene_id "YBR089W"; transcript_biotype "protein_coding"; +chrII SGD exon 425028 426037 . + . transcript_id "YBR089W_id001"; gene_id "YBR089W"; +chrII SGD transcript 425183 425782 . + . transcript_id "YBR089W_id002"; gene_id "YBR089W"; transcript_biotype "protein_coding"; +chrII SGD exon 425183 425782 . + 0 transcript_id "YBR089W_id002"; gene_id "YBR089W"; +chrII SGD gene 425946 426921 . - . gene_id "YBR089C-A"; gene_biotype "protein_coding"; +chrII SGD transcript 425946 426921 . - . transcript_id "YBR089C-A_id001"; gene_id "YBR089C-A"; gene_name "NHP6B"; transcript_biotype "protein_coding"; +chrII SGD exon 425946 426921 . - . transcript_id "YBR089C-A_id001"; gene_id "YBR089C-A"; gene_name "NHP6B"; +chrII SGD transcript 426190 426873 . - . transcript_id "YBR089C-A_id002"; gene_id "YBR089C-A"; gene_name "NHP6B"; transcript_biotype "protein_coding"; +chrII SGD exon 426190 426489 . - . transcript_id "YBR089C-A_id002"; gene_name "NHP6B"; gene_id "YBR089C-A"; +chrII SGD exon 426517 426873 . - . transcript_id "YBR089C-A_id002"; gene_name "NHP6B"; gene_id "YBR089C-A"; +chrII SGD exon 426190 426489 . - 0 transcript_id "YBR089C-A_id002"; gene_name "NHP6B"; gene_id "YBR089C-A"; +chrII SGD gene 426333 427058 . - . gene_id "YBR090C"; gene_biotype "protein_coding"; +chrII SGD transcript 426333 427058 . - . transcript_id "YBR090C_mRNA"; gene_id "YBR090C"; transcript_biotype "protein_coding"; +chrII SGD CDS 426333 426516 . - 1 transcript_id "YBR090C_mRNA"; gene_id "YBR090C"; +chrII SGD CDS 426874 427058 . - 0 transcript_id "YBR090C_mRNA"; gene_id "YBR090C"; +chrII SGD gene 426969 427525 . - . gene_id "YBR091C"; gene_biotype "protein_coding"; +chrII SGD transcript 426969 427525 . - . transcript_id "YBR091C_id001"; gene_id "YBR091C"; gene_name "TIM12"; transcript_biotype "protein_coding"; +chrII SGD exon 426969 427525 . - . transcript_id "YBR091C_id001"; gene_id "YBR091C"; gene_name "TIM12"; +chrII SGD transcript 427155 427484 . - . transcript_id "YBR091C_id004"; gene_id "YBR091C"; gene_name "TIM12"; transcript_biotype "protein_coding"; +chrII SGD exon 427155 427484 . - 0 transcript_id "YBR091C_id004"; gene_name "TIM12"; gene_id "YBR091C"; +chrII SGD gene 427647 430844 . - . gene_id "YBR092C"; gene_biotype "protein_coding"; +chrII SGD transcript 427647 430844 . - . transcript_id "YBR092C_id001"; gene_id "YBR092C"; gene_name "PHO3"; transcript_biotype "protein_coding"; +chrII SGD exon 427647 430844 . - . transcript_id "YBR092C_id001"; gene_id "YBR092C"; gene_name "PHO3"; +chrII SGD transcript 427698 429101 . - . transcript_id "YBR092C_id002"; gene_id "YBR092C"; gene_name "PHO3"; transcript_biotype "protein_coding"; +chrII SGD exon 427698 429101 . - 0 transcript_id "YBR092C_id002"; gene_name "PHO3"; gene_id "YBR092C"; +chrII SGD gene 429492 431417 . - . gene_id "YBR093C"; gene_biotype "protein_coding"; +chrII SGD transcript 429492 431417 . - . transcript_id "YBR093C_id001"; gene_id "YBR093C"; gene_name "PHO5"; transcript_biotype "protein_coding"; +chrII SGD exon 429492 431417 . - . transcript_id "YBR093C_id001"; gene_id "YBR093C"; gene_name "PHO5"; +chrII SGD transcript 429548 430951 . - . transcript_id "YBR093C_id002"; gene_id "YBR093C"; gene_name "PHO5"; transcript_biotype "protein_coding"; +chrII SGD exon 429548 430951 . - 0 transcript_id "YBR093C_id002"; gene_name "PHO5"; gene_id "YBR093C"; +chrII SGD gene 431970 434419 . + . gene_id "YBR094W"; gene_biotype "protein_coding"; +chrII SGD transcript 431970 434419 . + . transcript_id "YBR094W_id001"; gene_id "YBR094W"; gene_name "PBY1"; transcript_biotype "protein_coding"; +chrII SGD exon 431970 434419 . + . transcript_id "YBR094W_id001"; gene_id "YBR094W"; gene_name "PBY1"; +chrII SGD transcript 432036 434297 . + . transcript_id "YBR094W_id003"; gene_id "YBR094W"; gene_name "PBY1"; transcript_biotype "protein_coding"; +chrII SGD exon 432036 434297 . + 0 transcript_id "YBR094W_id003"; gene_name "PBY1"; gene_id "YBR094W"; +chrII SGD gene 434314 435772 . - . gene_id "YBR095C"; gene_biotype "protein_coding"; +chrII SGD transcript 434314 435772 . - . transcript_id "YBR095C_id001"; gene_id "YBR095C"; gene_name "RXT2"; transcript_biotype "protein_coding"; +chrII SGD exon 434314 435772 . - . transcript_id "YBR095C_id001"; gene_id "YBR095C"; gene_name "RXT2"; +chrII SGD transcript 434406 435698 . - . transcript_id "YBR095C_id003"; gene_id "YBR095C"; gene_name "RXT2"; transcript_biotype "protein_coding"; +chrII SGD exon 434406 435698 . - 0 transcript_id "YBR095C_id003"; gene_name "RXT2"; gene_id "YBR095C"; +chrII SGD gene 435960 436876 . + . gene_id "YBR096W"; gene_biotype "protein_coding"; +chrII SGD transcript 435960 436876 . + . transcript_id "YBR096W_id002"; gene_id "YBR096W"; transcript_biotype "protein_coding"; +chrII SGD exon 435960 436876 . + . transcript_id "YBR096W_id002"; gene_id "YBR096W"; +chrII SGD transcript 436021 436713 . + . transcript_id "YBR096W_id001"; gene_id "YBR096W"; transcript_biotype "protein_coding"; +chrII SGD exon 436021 436713 . + 0 transcript_id "YBR096W_id001"; gene_id "YBR096W"; +chrII SGD gene 436951 441315 . + . gene_id "YBR097W"; gene_biotype "protein_coding"; +chrII SGD transcript 436951 441315 . + . transcript_id "YBR097W_mRNA"; gene_id "YBR097W"; gene_name "VPS15"; transcript_biotype "protein_coding"; +chrII SGD CDS 436951 441315 . + 0 transcript_id "YBR097W_mRNA"; gene_name "VPS15"; gene_id "YBR097W"; +chrII SGD gene 441495 443742 . + . gene_id "YBR098W"; gene_biotype "protein_coding"; +chrII SGD transcript 441495 443742 . + . transcript_id "YBR098W_id002"; gene_id "YBR098W"; gene_name "MMS4"; transcript_biotype "protein_coding"; +chrII SGD exon 441495 443742 . + . transcript_id "YBR098W_id002"; gene_id "YBR098W"; gene_name "MMS4"; +chrII SGD transcript 441515 443590 . + . transcript_id "YBR098W_id001"; gene_id "YBR098W"; gene_name "MMS4"; transcript_biotype "protein_coding"; +chrII SGD exon 441515 443590 . + 0 transcript_id "YBR098W_id001"; gene_name "MMS4"; gene_id "YBR098W"; +chrII SGD gene 442924 443307 . - . gene_id "YBR099C"; gene_biotype "protein_coding"; +chrII SGD transcript 442924 443307 . - . transcript_id "YBR099C_id001"; gene_id "YBR099C"; transcript_biotype "protein_coding"; +chrII SGD exon 442924 443307 . - 0 transcript_id "YBR099C_id001"; gene_id "YBR099C"; +chrII SGD gene 442980 444743 . - . gene_id "YBR101C"; gene_biotype "protein_coding"; +chrII SGD transcript 442980 444743 . - . transcript_id "YBR101C_id003"; gene_id "YBR101C"; gene_name "FES1"; transcript_biotype "protein_coding"; +chrII SGD exon 442980 444743 . - . transcript_id "YBR101C_id003"; gene_id "YBR101C"; gene_name "FES1"; +chrII SGD transcript 443821 444693 . - . transcript_id "YBR101C_id001"; gene_id "YBR101C"; gene_name "FES1"; transcript_biotype "protein_coding"; +chrII SGD exon 443821 444693 . - 0 transcript_id "YBR101C_id001"; gene_name "FES1"; gene_id "YBR101C"; +chrII SGD gene 444928 447358 . - . gene_id "YBR102C"; gene_biotype "protein_coding"; +chrII SGD transcript 444928 447358 . - . transcript_id "YBR102C_id003"; gene_id "YBR102C"; gene_name "EXO84"; transcript_biotype "protein_coding"; +chrII SGD exon 444928 447358 . - . transcript_id "YBR102C_id003"; gene_id "YBR102C"; gene_name "EXO84"; +chrII SGD transcript 445062 447323 . - . transcript_id "YBR102C_id001"; gene_id "YBR102C"; gene_name "EXO84"; transcript_biotype "protein_coding"; +chrII SGD exon 445062 447323 . - 0 transcript_id "YBR102C_id001"; gene_name "EXO84"; gene_id "YBR102C"; +chrII SGD gene 447496 449378 . + . gene_id "YBR103W"; gene_biotype "protein_coding"; +chrII SGD transcript 447496 449378 . + . transcript_id "YBR103W_id001"; gene_id "YBR103W"; gene_name "SIF2"; transcript_biotype "protein_coding"; +chrII SGD exon 447496 449378 . + . transcript_id "YBR103W_id001"; gene_id "YBR103W"; gene_name "SIF2"; +chrII SGD transcript 447709 449316 . + . transcript_id "YBR103W_id002"; gene_id "YBR103W"; gene_name "SIF2"; transcript_biotype "protein_coding"; +chrII SGD exon 447709 449316 . + 0 transcript_id "YBR103W_id002"; gene_name "SIF2"; gene_id "YBR103W"; +chrII SGD gene 449320 449463 . - . gene_id "YBR103C-A"; gene_biotype "protein_coding"; +chrII SGD transcript 449320 449463 . - . transcript_id "YBR103C-A_id001"; gene_id "YBR103C-A"; transcript_biotype "protein_coding"; +chrII SGD exon 449320 449463 . - 0 transcript_id "YBR103C-A_id001"; gene_id "YBR103C-A"; +chrII SGD gene 449557 451125 . + . gene_id "YBR104W"; gene_biotype "protein_coding"; +chrII SGD transcript 449557 451125 . + . transcript_id "YBR104W_id002"; gene_id "YBR104W"; gene_name "YMC2"; transcript_biotype "protein_coding"; +chrII SGD exon 449557 451125 . + . transcript_id "YBR104W_id002"; gene_id "YBR104W"; gene_name "YMC2"; +chrII SGD transcript 449667 450656 . + . transcript_id "YBR104W_id001"; gene_id "YBR104W"; gene_name "YMC2"; transcript_biotype "protein_coding"; +chrII SGD exon 449667 450656 . + 0 transcript_id "YBR104W_id001"; gene_name "YMC2"; gene_id "YBR104W"; +chrII SGD gene 450721 452105 . - . gene_id "YBR105C"; gene_biotype "protein_coding"; +chrII SGD transcript 450721 452105 . - . transcript_id "YBR105C_id002"; gene_id "YBR105C"; gene_name "VID24"; transcript_biotype "protein_coding"; +chrII SGD exon 450721 452105 . - . transcript_id "YBR105C_id002"; gene_id "YBR105C"; gene_name "VID24"; +chrII SGD transcript 450881 451969 . - . transcript_id "YBR105C_id001"; gene_id "YBR105C"; gene_name "VID24"; transcript_biotype "protein_coding"; +chrII SGD exon 450881 451969 . - 0 transcript_id "YBR105C_id001"; gene_name "VID24"; gene_id "YBR105C"; +chrII SGD gene 452652 453825 . + . gene_id "YBR106W"; gene_biotype "protein_coding"; +chrII SGD transcript 452652 453825 . + . transcript_id "YBR106W_id003"; gene_id "YBR106W"; gene_name "SND3"; transcript_biotype "protein_coding"; +chrII SGD exon 452652 453825 . + . transcript_id "YBR106W_id003"; gene_id "YBR106W"; gene_name "SND3"; +chrII SGD transcript 452658 453224 . + . transcript_id "YBR106W_id001"; gene_id "YBR106W"; gene_name "SND3"; transcript_biotype "protein_coding"; +chrII SGD exon 452658 453224 . + 0 transcript_id "YBR106W_id001"; gene_name "SND3"; gene_id "YBR106W"; +chrII SGD gene 453227 454579 . - . gene_id "YBR107C"; gene_biotype "protein_coding"; +chrII SGD transcript 453227 454579 . - . transcript_id "YBR107C_id005"; gene_id "YBR107C"; gene_name "IML3"; transcript_biotype "protein_coding"; +chrII SGD exon 453227 454579 . - . transcript_id "YBR107C_id005"; gene_id "YBR107C"; gene_name "IML3"; +chrII SGD transcript 453793 454530 . - . transcript_id "YBR107C_id001"; gene_id "YBR107C"; gene_name "IML3"; transcript_biotype "protein_coding"; +chrII SGD exon 453793 454530 . - 0 transcript_id "YBR107C_id001"; gene_name "IML3"; gene_id "YBR107C"; +chrII SGD gene 454743 457862 . + . gene_id "YBR108W"; gene_biotype "protein_coding"; +chrII SGD transcript 454743 457862 . + . transcript_id "YBR108W_id001"; gene_id "YBR108W"; gene_name "AIM3"; transcript_biotype "protein_coding"; +chrII SGD exon 454743 457862 . + . transcript_id "YBR108W_id001"; gene_id "YBR108W"; gene_name "AIM3"; +chrII SGD transcript 454822 457665 . + . transcript_id "YBR108W_id003"; gene_id "YBR108W"; gene_name "AIM3"; transcript_biotype "protein_coding"; +chrII SGD exon 454822 457665 . + 0 transcript_id "YBR108W_id003"; gene_name "AIM3"; gene_id "YBR108W"; +chrII SGD gene 457579 458407 . - . gene_id "YBR109C"; gene_biotype "protein_coding"; +chrII SGD transcript 457579 458407 . - . transcript_id "YBR109C_id006"; gene_id "YBR109C"; gene_name "CMD1"; transcript_biotype "protein_coding"; +chrII SGD exon 457579 458407 . - . transcript_id "YBR109C_id006"; gene_id "YBR109C"; gene_name "CMD1"; +chrII SGD transcript 457919 458362 . - . transcript_id "YBR109C_id001"; gene_id "YBR109C"; gene_name "CMD1"; transcript_biotype "protein_coding"; +chrII SGD exon 457919 458362 . - 0 transcript_id "YBR109C_id001"; gene_name "CMD1"; gene_id "YBR109C"; +chrII SGD gene 458498 459155 . + . gene_id "YBR109W-A"; gene_biotype "protein_coding"; +chrII SGD transcript 458498 459155 . + . transcript_id "YBR109W-A_id001"; gene_id "YBR109W-A"; transcript_biotype "protein_coding"; +chrII SGD exon 458498 459155 . + . transcript_id "YBR109W-A_id001"; gene_id "YBR109W-A"; +chrII SGD transcript 458608 458832 . + . transcript_id "YBR109W-A_id002"; gene_id "YBR109W-A"; transcript_biotype "protein_coding"; +chrII SGD exon 458608 458832 . + 0 transcript_id "YBR109W-A_id002"; gene_id "YBR109W-A"; +chrII SGD gene 458614 460347 . + . gene_id "YBR110W"; gene_biotype "protein_coding"; +chrII SGD transcript 458614 460347 . + . transcript_id "YBR110W_id001"; gene_id "YBR110W"; gene_name "ALG1"; transcript_biotype "protein_coding"; +chrII SGD exon 458614 460347 . + . transcript_id "YBR110W_id001"; gene_id "YBR110W"; gene_name "ALG1"; +chrII SGD transcript 458872 460221 . + . transcript_id "YBR110W_id002"; gene_id "YBR110W"; gene_name "ALG1"; transcript_biotype "protein_coding"; +chrII SGD exon 458872 460221 . + 0 transcript_id "YBR110W_id002"; gene_name "ALG1"; gene_id "YBR110W"; +chrII SGD gene 461178 461873 . - . gene_id "YBR111C"; gene_biotype "protein_coding"; +chrII SGD transcript 461178 461873 . - . transcript_id "YBR111C_id001"; gene_id "YBR111C"; gene_name "YSA1"; transcript_biotype "protein_coding"; +chrII SGD exon 461178 461873 . - 0 transcript_id "YBR111C_id001"; gene_name "YSA1"; gene_id "YBR111C"; +chrII SGD gene 462105 462757 . + . gene_id "YBR111W-A"; gene_biotype "protein_coding"; +chrII SGD transcript 462105 462757 . + . transcript_id "YBR111W-A_id005"; gene_id "YBR111W-A"; gene_name "SUS1"; transcript_biotype "protein_coding"; +chrII SGD exon 462105 462757 . + . transcript_id "YBR111W-A_id005"; gene_id "YBR111W-A"; gene_name "SUS1"; +chrII SGD transcript 462139 462579 . + . transcript_id "YBR111W-A_id001"; gene_id "YBR111W-A"; gene_name "SUS1"; transcript_biotype "protein_coding"; +chrII SGD exon 462139 462209 . + 0 transcript_id "YBR111W-A_id001"; gene_name "SUS1"; gene_id "YBR111W-A"; +chrII SGD exon 462290 462429 . + 1 transcript_id "YBR111W-A_id001"; gene_name "SUS1"; gene_id "YBR111W-A"; +chrII SGD exon 462500 462579 . + 2 transcript_id "YBR111W-A_id001"; gene_name "SUS1"; gene_id "YBR111W-A"; +chrII SGD gene 462616 465945 . - . gene_id "YBR112C"; gene_biotype "protein_coding"; +chrII SGD transcript 462616 465945 . - . transcript_id "YBR112C_id001"; gene_id "YBR112C"; gene_name "CYC8"; transcript_biotype "protein_coding"; +chrII SGD exon 462616 465945 . - . transcript_id "YBR112C_id001"; gene_id "YBR112C"; gene_name "CYC8"; +chrII SGD transcript 462870 465770 . - . transcript_id "YBR112C_id002"; gene_id "YBR112C"; gene_name "CYC8"; transcript_biotype "protein_coding"; +chrII SGD exon 462870 465770 . - 0 transcript_id "YBR112C_id002"; gene_name "CYC8"; gene_id "YBR112C"; +chrII SGD gene 465566 466048 . + . gene_id "YBR113W"; gene_biotype "protein_coding"; +chrII SGD transcript 465566 466048 . + . transcript_id "YBR113W_mRNA"; gene_id "YBR113W"; transcript_biotype "protein_coding"; +chrII SGD CDS 465566 466048 . + 0 transcript_id "YBR113W_mRNA"; gene_id "YBR113W"; +chrII SGD gene 467160 469792 . + . gene_id "YBR114W"; gene_biotype "protein_coding"; +chrII SGD transcript 467160 469792 . + . transcript_id "YBR114W_id002"; gene_id "YBR114W"; gene_name "RAD16"; transcript_biotype "protein_coding"; +chrII SGD exon 467160 469792 . + . transcript_id "YBR114W_id002"; gene_id "YBR114W"; gene_name "RAD16"; +chrII SGD transcript 467248 469620 . + . transcript_id "YBR114W_id001"; gene_id "YBR114W"; gene_name "RAD16"; transcript_biotype "protein_coding"; +chrII SGD exon 467248 469620 . + 0 transcript_id "YBR114W_id001"; gene_name "RAD16"; gene_id "YBR114W"; +chrII SGD gene 469748 473926 . - . gene_id "YBR115C"; gene_biotype "protein_coding"; +chrII SGD transcript 469748 473926 . - . transcript_id "YBR115C_id001"; gene_id "YBR115C"; gene_name "LYS2"; transcript_biotype "protein_coding"; +chrII SGD exon 469748 473926 . - 0 transcript_id "YBR115C_id001"; gene_name "LYS2"; gene_id "YBR115C"; +chrII SGD gene 474199 474726 . - . gene_id "YBR116C"; gene_biotype "protein_coding"; +chrII SGD transcript 474199 474726 . - . transcript_id "YBR116C_mRNA"; gene_id "YBR116C"; transcript_biotype "protein_coding"; +chrII SGD CDS 474199 474726 . - 0 transcript_id "YBR116C_mRNA"; gene_id "YBR116C"; +chrII SGD gene 474392 476437 . - . gene_id "YBR117C"; gene_biotype "protein_coding"; +chrII SGD transcript 474392 476437 . - . transcript_id "YBR117C_mRNA"; gene_id "YBR117C"; gene_name "TKL2"; transcript_biotype "protein_coding"; +chrII SGD CDS 474392 476437 . - 0 transcript_id "YBR117C_mRNA"; gene_name "TKL2"; gene_id "YBR117C"; +chrII SGD gene 477464 479148 . + . gene_id "YBR118W"; gene_biotype "protein_coding"; +chrII SGD transcript 477464 479148 . + . transcript_id "YBR118W_id002"; gene_id "YBR118W"; gene_name "TEF2"; transcript_biotype "protein_coding"; +chrII SGD exon 477464 479148 . + . transcript_id "YBR118W_id002"; gene_id "YBR118W"; gene_name "TEF2"; +chrII SGD transcript 477671 479047 . + . transcript_id "YBR118W_id001"; gene_id "YBR118W"; gene_name "TEF2"; transcript_biotype "protein_coding"; +chrII SGD exon 477671 479047 . + 0 transcript_id "YBR118W_id001"; gene_name "TEF2"; gene_id "YBR118W"; +chrII SGD gene 479273 480588 . + . gene_id "YBR119W"; gene_biotype "protein_coding"; +chrII SGD transcript 479273 480588 . + . transcript_id "YBR119W_id001"; gene_id "YBR119W"; gene_name "MUD1"; transcript_biotype "protein_coding"; +chrII SGD exon 479273 480588 . + . transcript_id "YBR119W_id001"; gene_id "YBR119W"; gene_name "MUD1"; +chrII SGD transcript 479338 480323 . + . transcript_id "YBR119W_id003"; gene_id "YBR119W"; gene_name "MUD1"; transcript_biotype "protein_coding"; +chrII SGD exon 479338 479345 . + 0 transcript_id "YBR119W_id003"; gene_name "MUD1"; gene_id "YBR119W"; +chrII SGD exon 479435 480323 . + 1 transcript_id "YBR119W_id003"; gene_name "MUD1"; gene_id "YBR119W"; +chrII SGD gene 480191 481071 . - . gene_id "YBR120C"; gene_biotype "protein_coding"; +chrII SGD transcript 480191 481071 . - . transcript_id "YBR120C_id001"; gene_id "YBR120C"; gene_name "CBP6"; transcript_biotype "protein_coding"; +chrII SGD exon 480191 481071 . - . transcript_id "YBR120C_id001"; gene_id "YBR120C"; gene_name "CBP6"; +chrII SGD transcript 480435 480923 . - . transcript_id "YBR120C_id002"; gene_id "YBR120C"; gene_name "CBP6"; transcript_biotype "protein_coding"; +chrII SGD exon 480435 480923 . - 0 transcript_id "YBR120C_id002"; gene_name "CBP6"; gene_id "YBR120C"; +chrII SGD gene 481250 483355 . - . gene_id "YBR121C-A"; gene_biotype "protein_coding"; +chrII SGD transcript 481250 483355 . - . transcript_id "YBR121C-A_id002"; gene_id "YBR121C-A"; transcript_biotype "protein_coding"; +chrII SGD exon 481250 483355 . - . transcript_id "YBR121C-A_id002"; gene_id "YBR121C-A"; +chrII SGD gene 481364 483367 . - . gene_id "YBR121C"; gene_biotype "protein_coding"; +chrII SGD transcript 481364 483367 . - . transcript_id "YBR121C_id001"; gene_id "YBR121C"; gene_name "GRS1"; transcript_biotype "protein_coding"; +chrII SGD exon 481364 483367 . - 0 transcript_id "YBR121C_id001"; gene_name "GRS1"; gene_id "YBR121C"; +chrII SGD transcript 482326 482484 . - . transcript_id "YBR121C-A_id001"; gene_id "YBR121C-A"; transcript_biotype "protein_coding"; +chrII SGD exon 482326 482484 . - 0 transcript_id "YBR121C-A_id001"; gene_id "YBR121C-A"; +chrII SGD gene 483768 485061 . - . gene_id "YBR122C"; gene_biotype "protein_coding"; +chrII SGD transcript 483768 485061 . - . transcript_id "YBR122C_id004"; gene_id "YBR122C"; gene_name "MRPL36"; transcript_biotype "protein_coding"; +chrII SGD exon 483768 485061 . - . transcript_id "YBR122C_id004"; gene_id "YBR122C"; gene_name "MRPL36"; +chrII SGD transcript 483970 484503 . - . transcript_id "YBR122C_id001"; gene_id "YBR122C"; gene_name "MRPL36"; transcript_biotype "protein_coding"; +chrII SGD exon 483970 484503 . - 0 transcript_id "YBR122C_id001"; gene_name "MRPL36"; gene_id "YBR122C"; +chrII SGD gene 484670 486754 . - . gene_id "YBR123C"; gene_biotype "protein_coding"; +chrII SGD transcript 484670 486754 . - . transcript_id "YBR123C_id002"; gene_id "YBR123C"; gene_name "TFC1"; transcript_biotype "protein_coding"; +chrII SGD exon 484670 486754 . - . transcript_id "YBR123C_id002"; gene_id "YBR123C"; gene_name "TFC1"; +chrII SGD transcript 484742 486691 . - . transcript_id "YBR123C_id001"; gene_id "YBR123C"; gene_name "TFC1"; transcript_biotype "protein_coding"; +chrII SGD exon 484742 486691 . - 0 transcript_id "YBR123C_id001"; gene_name "TFC1"; gene_id "YBR123C"; +chrII SGD gene 486507 486866 . + . gene_id "YBR124W"; gene_biotype "protein_coding"; +chrII SGD transcript 486507 486866 . + . transcript_id "YBR124W_mRNA"; gene_id "YBR124W"; transcript_biotype "protein_coding"; +chrII SGD CDS 486507 486866 . + 0 transcript_id "YBR124W_mRNA"; gene_id "YBR124W"; +chrII SGD gene 487061 488576 . - . gene_id "YBR125C"; gene_biotype "protein_coding"; +chrII SGD transcript 487061 488576 . - . transcript_id "YBR125C_id001"; gene_id "YBR125C"; gene_name "PTC4"; transcript_biotype "protein_coding"; +chrII SGD exon 487061 488576 . - . transcript_id "YBR125C_id001"; gene_id "YBR125C"; gene_name "PTC4"; +chrII SGD transcript 487199 488380 . - . transcript_id "YBR125C_id002"; gene_id "YBR125C"; gene_name "PTC4"; transcript_biotype "protein_coding"; +chrII SGD exon 487199 488380 . - 0 transcript_id "YBR125C_id002"; gene_name "PTC4"; gene_id "YBR125C"; +chrII SGD gene 488770 490552 . - . gene_id "YBR126C"; gene_biotype "protein_coding"; +chrII SGD transcript 488770 490552 . - . transcript_id "YBR126C_id001"; gene_id "YBR126C"; gene_name "TPS1"; transcript_biotype "protein_coding"; +chrII SGD exon 488770 490552 . - . transcript_id "YBR126C_id001"; gene_id "YBR126C"; gene_name "TPS1"; +chrII SGD transcript 488905 490392 . - . transcript_id "YBR126C_id004"; gene_id "YBR126C"; gene_name "TPS1"; transcript_biotype "protein_coding"; +chrII SGD exon 488905 490392 . - 0 transcript_id "YBR126C_id004"; gene_name "TPS1"; gene_id "YBR126C"; +chrII SGD gene 490850 491056 . + . gene_id "YBR126W-A"; gene_biotype "protein_coding"; +chrII SGD transcript 490850 491056 . + . transcript_id "YBR126W-A_mRNA"; gene_id "YBR126W-A"; gene_name "MEO1"; transcript_biotype "protein_coding"; +chrII SGD CDS 490850 491056 . + 0 transcript_id "YBR126W-A_mRNA"; gene_name "MEO1"; gene_id "YBR126W-A"; +chrII SGD gene 490913 491294 . + . gene_id "YBR126W-B"; gene_biotype "protein_coding"; +chrII SGD transcript 490913 491294 . + . transcript_id "YBR126W-B_id001"; gene_id "YBR126W-B"; transcript_biotype "protein_coding"; +chrII SGD exon 490913 491294 . + . transcript_id "YBR126W-B_id001"; gene_id "YBR126W-B"; +chrII SGD transcript 490927 491070 . + . transcript_id "YBR126W-B_id002"; gene_id "YBR126W-B"; transcript_biotype "protein_coding"; +chrII SGD exon 490927 491070 . + 0 transcript_id "YBR126W-B_id002"; gene_id "YBR126W-B"; +chrII SGD gene 491103 492986 . - . gene_id "YBR127C"; gene_biotype "protein_coding"; +chrII SGD transcript 491103 492986 . - . transcript_id "YBR127C_id002"; gene_id "YBR127C"; gene_name "VMA2"; transcript_biotype "protein_coding"; +chrII SGD exon 491103 492986 . - . transcript_id "YBR127C_id002"; gene_id "YBR127C"; gene_name "VMA2"; +chrII SGD transcript 491269 492822 . - . transcript_id "YBR127C_id001"; gene_id "YBR127C"; gene_name "VMA2"; transcript_biotype "protein_coding"; +chrII SGD exon 491269 492822 . - 0 transcript_id "YBR127C_id001"; gene_name "VMA2"; gene_id "YBR127C"; +chrII SGD gene 493007 494168 . - . gene_id "YBR128C"; gene_biotype "protein_coding"; +chrII SGD transcript 493007 494168 . - . transcript_id "YBR128C_id002"; gene_id "YBR128C"; gene_name "ATG14"; transcript_biotype "protein_coding"; +chrII SGD exon 493007 494168 . - . transcript_id "YBR128C_id002"; gene_id "YBR128C"; gene_name "ATG14"; +chrII SGD transcript 493081 494115 . - . transcript_id "YBR128C_id001"; gene_id "YBR128C"; gene_name "ATG14"; transcript_biotype "protein_coding"; +chrII SGD exon 493081 494115 . - 0 transcript_id "YBR128C_id001"; gene_name "ATG14"; gene_id "YBR128C"; +chrII SGD gene 494193 495384 . - . gene_id "YBR129C"; gene_biotype "protein_coding"; +chrII SGD transcript 494193 495384 . - . transcript_id "YBR129C_id001"; gene_id "YBR129C"; gene_name "OPY1"; transcript_biotype "protein_coding"; +chrII SGD exon 494193 495384 . - . transcript_id "YBR129C_id001"; gene_id "YBR129C"; gene_name "OPY1"; +chrII SGD transcript 494353 495339 . - . transcript_id "YBR129C_id006"; gene_id "YBR129C"; gene_name "OPY1"; transcript_biotype "protein_coding"; +chrII SGD exon 494353 495339 . - 0 transcript_id "YBR129C_id006"; gene_name "OPY1"; gene_id "YBR129C"; +chrII SGD gene 495479 496938 . - . gene_id "YBR130C"; gene_biotype "protein_coding"; +chrII SGD transcript 495479 496938 . - . transcript_id "YBR130C_id002"; gene_id "YBR130C"; gene_name "SHE3"; transcript_biotype "protein_coding"; +chrII SGD exon 495479 496938 . - . transcript_id "YBR130C_id002"; gene_id "YBR130C"; gene_name "SHE3"; +chrII SGD transcript 495592 496869 . - . transcript_id "YBR130C_id001"; gene_id "YBR130C"; gene_name "SHE3"; transcript_biotype "protein_coding"; +chrII SGD exon 495592 496869 . - 0 transcript_id "YBR130C_id001"; gene_name "SHE3"; gene_id "YBR130C"; +chrII SGD gene 497133 499503 . + . gene_id "YBR131W"; gene_biotype "protein_coding"; +chrII SGD transcript 497133 499503 . + . transcript_id "YBR131W_id001"; gene_id "YBR131W"; gene_name "CCZ1"; transcript_biotype "protein_coding"; +chrII SGD exon 497133 499503 . + . transcript_id "YBR131W_id001"; gene_id "YBR131W"; gene_name "CCZ1"; +chrII SGD transcript 497163 499277 . + . transcript_id "YBR131W_id002"; gene_id "YBR131W"; gene_name "CCZ1"; transcript_biotype "protein_coding"; +chrII SGD exon 497163 499277 . + 0 transcript_id "YBR131W_id002"; gene_name "CCZ1"; gene_id "YBR131W"; +chrII SGD gene 497650 497739 . - . gene_id "YBR131C-A"; gene_biotype "protein_coding"; +chrII SGD transcript 497650 497739 . - . transcript_id "YBR131C-A_mRNA"; gene_id "YBR131C-A"; transcript_biotype "protein_coding"; +chrII SGD CDS 497650 497739 . - 0 transcript_id "YBR131C-A_mRNA"; gene_id "YBR131C-A"; +chrII SGD gene 499349 501850 . - . gene_id "YBR132C"; gene_biotype "protein_coding"; +chrII SGD transcript 499349 501850 . - . transcript_id "YBR132C_id001"; gene_id "YBR132C"; gene_name "AGP2"; transcript_biotype "protein_coding"; +chrII SGD exon 499349 501850 . - . transcript_id "YBR132C_id001"; gene_id "YBR132C"; gene_name "AGP2"; +chrII SGD transcript 499652 501442 . - . transcript_id "YBR132C_id002"; gene_id "YBR132C"; gene_name "AGP2"; transcript_biotype "protein_coding"; +chrII SGD exon 499652 501442 . - 0 transcript_id "YBR132C_id002"; gene_name "AGP2"; gene_id "YBR132C"; +chrII SGD gene 501498 504446 . - . gene_id "YBR133C"; gene_biotype "protein_coding"; +chrII SGD transcript 501498 504446 . - . transcript_id "YBR133C_id001"; gene_id "YBR133C"; gene_name "HSL7"; transcript_biotype "protein_coding"; +chrII SGD exon 501498 504446 . - . transcript_id "YBR133C_id001"; gene_id "YBR133C"; gene_name "HSL7"; +chrII SGD transcript 501804 504287 . - . transcript_id "YBR133C_id006"; gene_id "YBR133C"; gene_name "HSL7"; transcript_biotype "protein_coding"; +chrII SGD exon 501804 504287 . - 0 transcript_id "YBR133C_id006"; gene_name "HSL7"; gene_id "YBR133C"; +chrII SGD gene 504243 504644 . + . gene_id "YBR134W"; gene_biotype "protein_coding"; +chrII SGD transcript 504243 504644 . + . transcript_id "YBR134W_mRNA"; gene_id "YBR134W"; transcript_biotype "protein_coding"; +chrII SGD CDS 504243 504644 . + 0 transcript_id "YBR134W_mRNA"; gene_id "YBR134W"; +chrII SGD gene 504751 505580 . + . gene_id "YBR135W"; gene_biotype "protein_coding"; +chrII SGD transcript 504751 505580 . + . transcript_id "YBR135W_id002"; gene_id "YBR135W"; gene_name "CKS1"; transcript_biotype "protein_coding"; +chrII SGD exon 504751 505580 . + . transcript_id "YBR135W_id002"; gene_id "YBR135W"; gene_name "CKS1"; +chrII SGD transcript 504854 505306 . + . transcript_id "YBR135W_id001"; gene_id "YBR135W"; gene_name "CKS1"; transcript_biotype "protein_coding"; +chrII SGD exon 504854 505306 . + 0 transcript_id "YBR135W_id001"; gene_name "CKS1"; gene_id "YBR135W"; +chrII SGD gene 505668 512774 . + . gene_id "YBR136W"; gene_biotype "protein_coding"; +chrII SGD transcript 505668 512774 . + . transcript_id "YBR136W_mRNA"; gene_id "YBR136W"; gene_name "MEC1"; transcript_biotype "protein_coding"; +chrII SGD CDS 505668 512774 . + 0 transcript_id "YBR136W_mRNA"; gene_name "MEC1"; gene_id "YBR136W"; +chrII SGD gene 512966 513801 . + . gene_id "YBR137W"; gene_biotype "protein_coding"; +chrII SGD transcript 512966 513801 . + . transcript_id "YBR137W_id004"; gene_id "YBR137W"; transcript_biotype "protein_coding"; +chrII SGD exon 512966 513801 . + . transcript_id "YBR137W_id004"; gene_id "YBR137W"; +chrII SGD transcript 513044 513583 . + . transcript_id "YBR137W_id001"; gene_id "YBR137W"; transcript_biotype "protein_coding"; +chrII SGD exon 513044 513583 . + 0 transcript_id "YBR137W_id001"; gene_id "YBR137W"; +chrII SGD gene 513762 515336 . - . gene_id "YBR138C"; gene_biotype "protein_coding"; +chrII SGD transcript 513762 515336 . - . transcript_id "YBR138C_id001"; gene_id "YBR138C"; transcript_biotype "protein_coding"; +chrII SGD exon 513762 515336 . - 0 transcript_id "YBR138C_id001"; gene_id "YBR138C"; +chrII SGD gene 515658 517400 . + . gene_id "YBR139W"; gene_biotype "protein_coding"; +chrII SGD transcript 515658 517400 . + . transcript_id "YBR139W_id004"; gene_id "YBR139W"; gene_name "ATG42"; transcript_biotype "protein_coding"; +chrII SGD exon 515658 517400 . + . transcript_id "YBR139W_id004"; gene_id "YBR139W"; gene_name "ATG42"; +chrII SGD transcript 515664 517190 . + . transcript_id "YBR139W_id001"; gene_id "YBR139W"; gene_name "ATG42"; transcript_biotype "protein_coding"; +chrII SGD exon 515664 517190 . + 0 transcript_id "YBR139W_id001"; gene_name "ATG42"; gene_id "YBR139W"; +chrII SGD gene 517350 526628 . - . gene_id "YBR140C"; gene_biotype "protein_coding"; +chrII SGD transcript 517350 526628 . - . transcript_id "YBR140C_mRNA"; gene_id "YBR140C"; gene_name "IRA1"; transcript_biotype "protein_coding"; +chrII SGD CDS 517350 526628 . - 0 transcript_id "YBR140C_mRNA"; gene_name "IRA1"; gene_id "YBR140C"; +chrII SGD gene 526857 528083 . - . gene_id "YBR141C"; gene_biotype "protein_coding"; +chrII SGD transcript 526857 528083 . - . transcript_id "YBR141C_id003"; gene_id "YBR141C"; gene_name "BMT2"; transcript_biotype "protein_coding"; +chrII SGD exon 526857 528083 . - . transcript_id "YBR141C_id003"; gene_id "YBR141C"; gene_name "BMT2"; +chrII SGD gene 526948 527723 . + . gene_id "YBR141W-A"; gene_biotype "protein_coding"; +chrII SGD transcript 526948 527723 . + . transcript_id "YBR141W-A_id001"; gene_id "YBR141W-A"; transcript_biotype "protein_coding"; +chrII SGD exon 526948 527723 . + . transcript_id "YBR141W-A_id001"; gene_id "YBR141W-A"; +chrII SGD transcript 527025 528038 . - . transcript_id "YBR141C_id001"; gene_id "YBR141C"; gene_name "BMT2"; transcript_biotype "protein_coding"; +chrII SGD exon 527025 528038 . - 0 transcript_id "YBR141C_id001"; gene_name "BMT2"; gene_id "YBR141C"; +chrII SGD transcript 527167 527262 . + . transcript_id "YBR141W-A_id002"; gene_id "YBR141W-A"; transcript_biotype "protein_coding"; +chrII SGD exon 527167 527262 . + 0 transcript_id "YBR141W-A_id002"; gene_id "YBR141W-A"; +chrII SGD gene 528234 530843 . + . gene_id "YBR142W"; gene_biotype "protein_coding"; +chrII SGD transcript 528234 530843 . + . transcript_id "YBR142W_id003"; gene_id "YBR142W"; gene_name "MAK5"; transcript_biotype "protein_coding"; +chrII SGD exon 528234 530843 . + . transcript_id "YBR142W_id003"; gene_id "YBR142W"; gene_name "MAK5"; +chrII SGD transcript 528317 530638 . + . transcript_id "YBR142W_id001"; gene_id "YBR142W"; gene_name "MAK5"; transcript_biotype "protein_coding"; +chrII SGD exon 528317 530638 . + 0 transcript_id "YBR142W_id001"; gene_name "MAK5"; gene_id "YBR142W"; +chrII SGD gene 530665 532285 . - . gene_id "YBR143C"; gene_biotype "protein_coding"; +chrII SGD transcript 530665 532285 . - . transcript_id "YBR143C_id002"; gene_id "YBR143C"; gene_name "SUP45"; transcript_biotype "protein_coding"; +chrII SGD exon 530665 532285 . - . transcript_id "YBR143C_id002"; gene_id "YBR143C"; gene_name "SUP45"; +chrII SGD transcript 530869 532182 . - . transcript_id "YBR143C_id001"; gene_id "YBR143C"; gene_name "SUP45"; transcript_biotype "protein_coding"; +chrII SGD exon 530869 532182 . - 0 transcript_id "YBR143C_id001"; gene_name "SUP45"; gene_id "YBR143C"; +chrII SGD gene 533235 533549 . - . gene_id "YBR144C"; gene_biotype "protein_coding"; +chrII SGD transcript 533235 533549 . - . transcript_id "YBR144C_mRNA"; gene_id "YBR144C"; transcript_biotype "protein_coding"; +chrII SGD CDS 533235 533549 . - 0 transcript_id "YBR144C_mRNA"; gene_id "YBR144C"; +chrII SGD gene 533721 535122 . + . gene_id "YBR145W"; gene_biotype "protein_coding"; +chrII SGD transcript 533721 535122 . + . transcript_id "YBR145W_id001"; gene_id "YBR145W"; gene_name "ADH5"; transcript_biotype "protein_coding"; +chrII SGD exon 533721 535122 . + . transcript_id "YBR145W_id001"; gene_id "YBR145W"; gene_name "ADH5"; +chrII SGD transcript 533762 534817 . + . transcript_id "YBR145W_id004"; gene_id "YBR145W"; gene_name "ADH5"; transcript_biotype "protein_coding"; +chrII SGD exon 533762 534817 . + 0 transcript_id "YBR145W_id004"; gene_name "ADH5"; gene_id "YBR145W"; +chrII SGD gene 535197 536563 . + . gene_id "YBR146W"; gene_biotype "protein_coding"; +chrII SGD transcript 535197 536563 . + . transcript_id "YBR146W_id001"; gene_id "YBR146W"; gene_name "MRPS9"; transcript_biotype "protein_coding"; +chrII SGD exon 535197 536563 . + . transcript_id "YBR146W_id001"; gene_id "YBR146W"; gene_name "MRPS9"; +chrII SGD transcript 535260 536096 . + . transcript_id "YBR146W_id002"; gene_id "YBR146W"; gene_name "MRPS9"; transcript_biotype "protein_coding"; +chrII SGD exon 535260 536096 . + 0 transcript_id "YBR146W_id002"; gene_name "MRPS9"; gene_id "YBR146W"; +chrII SGD gene 536427 537883 . + . gene_id "YBR147W"; gene_biotype "protein_coding"; +chrII SGD transcript 536427 537883 . + . transcript_id "YBR147W_id001"; gene_id "YBR147W"; gene_name "RTC2"; transcript_biotype "protein_coding"; +chrII SGD exon 536427 537883 . + . transcript_id "YBR147W_id001"; gene_id "YBR147W"; gene_name "RTC2"; +chrII SGD transcript 536575 537465 . + . transcript_id "YBR147W_id003"; gene_id "YBR147W"; gene_name "RTC2"; transcript_biotype "protein_coding"; +chrII SGD exon 536575 537465 . + 0 transcript_id "YBR147W_id003"; gene_name "RTC2"; gene_id "YBR147W"; +chrII SGD gene 537876 539705 . + . gene_id "YBR148W"; gene_biotype "protein_coding"; +chrII SGD transcript 537876 539705 . + . transcript_id "YBR148W_mRNA"; gene_id "YBR148W"; gene_name "YSW1"; transcript_biotype "protein_coding"; +chrII SGD CDS 537876 539705 . + 0 transcript_id "YBR148W_mRNA"; gene_name "YSW1"; gene_id "YBR148W"; +chrII SGD gene 539956 541302 . + . gene_id "YBR149W"; gene_biotype "protein_coding"; +chrII SGD transcript 539956 541302 . + . transcript_id "YBR149W_id004"; gene_id "YBR149W"; gene_name "ARA1"; transcript_biotype "protein_coding"; +chrII SGD exon 539956 541302 . + . transcript_id "YBR149W_id004"; gene_id "YBR149W"; gene_name "ARA1"; +chrII SGD transcript 539987 541021 . + . transcript_id "YBR149W_id001"; gene_id "YBR149W"; gene_name "ARA1"; transcript_biotype "protein_coding"; +chrII SGD exon 539987 541021 . + 0 transcript_id "YBR149W_id001"; gene_name "ARA1"; gene_id "YBR149W"; +chrII SGD gene 541209 544493 . - . gene_id "YBR150C"; gene_biotype "protein_coding"; +chrII SGD transcript 541209 544493 . - . transcript_id "YBR150C_mRNA"; gene_id "YBR150C"; gene_name "TBS1"; transcript_biotype "protein_coding"; +chrII SGD CDS 541209 544493 . - 0 transcript_id "YBR150C_mRNA"; gene_name "TBS1"; gene_id "YBR150C"; +chrII SGD gene 544879 546206 . + . gene_id "YBR151W"; gene_biotype "protein_coding"; +chrII SGD transcript 544879 546206 . + . transcript_id "YBR151W_id003"; gene_id "YBR151W"; gene_name "APD1"; transcript_biotype "protein_coding"; +chrII SGD exon 544879 546206 . + . transcript_id "YBR151W_id003"; gene_id "YBR151W"; gene_name "APD1"; +chrII SGD transcript 545028 545978 . + . transcript_id "YBR151W_id001"; gene_id "YBR151W"; gene_name "APD1"; transcript_biotype "protein_coding"; +chrII SGD exon 545028 545978 . + 0 transcript_id "YBR151W_id001"; gene_name "APD1"; gene_id "YBR151W"; +chrII SGD gene 546376 547251 . + . gene_id "YBR152W"; gene_biotype "protein_coding"; +chrII SGD transcript 546376 547251 . + . transcript_id "YBR152W_mRNA"; gene_id "YBR152W"; gene_name "SPP381"; transcript_biotype "protein_coding"; +chrII SGD CDS 546376 547251 . + 0 transcript_id "YBR152W_mRNA"; gene_name "SPP381"; gene_id "YBR152W"; +chrII SGD gene 546851 548416 . + . gene_id "YBR153W"; gene_biotype "protein_coding"; +chrII SGD transcript 546851 548416 . + . transcript_id "YBR153W_id004"; gene_id "YBR153W"; gene_name "RIB7"; transcript_biotype "protein_coding"; +chrII SGD exon 546851 548416 . + . transcript_id "YBR153W_id004"; gene_id "YBR153W"; gene_name "RIB7"; +chrII SGD transcript 547460 548194 . + . transcript_id "YBR153W_id001"; gene_id "YBR153W"; gene_name "RIB7"; transcript_biotype "protein_coding"; +chrII SGD exon 547460 548194 . + 0 transcript_id "YBR153W_id001"; gene_name "RIB7"; gene_id "YBR153W"; +chrII SGD gene 548266 549150 . - . gene_id "YBR154C"; gene_biotype "protein_coding"; +chrII SGD transcript 548266 549150 . - . transcript_id "YBR154C_id002"; gene_id "YBR154C"; gene_name "RPB5"; transcript_biotype "protein_coding"; +chrII SGD exon 548266 549150 . - . transcript_id "YBR154C_id002"; gene_id "YBR154C"; gene_name "RPB5"; +chrII SGD transcript 548362 549009 . - . transcript_id "YBR154C_id001"; gene_id "YBR154C"; gene_name "RPB5"; transcript_biotype "protein_coding"; +chrII SGD exon 548362 549009 . - 0 transcript_id "YBR154C_id001"; gene_name "RPB5"; gene_id "YBR154C"; +chrII SGD gene 549259 551018 . + . gene_id "YBR155W"; gene_biotype "protein_coding"; +chrII SGD transcript 549259 551018 . + . transcript_id "YBR155W_id001"; gene_id "YBR155W"; gene_name "CNS1"; transcript_biotype "protein_coding"; +chrII SGD exon 549259 551018 . + . transcript_id "YBR155W_id001"; gene_id "YBR155W"; gene_name "CNS1"; +chrII SGD transcript 549771 550928 . + . transcript_id "YBR155W_id007"; gene_id "YBR155W"; gene_name "CNS1"; transcript_biotype "protein_coding"; +chrII SGD exon 549771 550928 . + 0 transcript_id "YBR155W_id007"; gene_name "CNS1"; gene_id "YBR155W"; +chrII SGD gene 550925 553278 . - . gene_id "YBR156C"; gene_biotype "protein_coding"; +chrII SGD transcript 550925 553278 . - . transcript_id "YBR156C_id001"; gene_id "YBR156C"; gene_name "SLI15"; transcript_biotype "protein_coding"; +chrII SGD exon 550925 553278 . - . transcript_id "YBR156C_id001"; gene_id "YBR156C"; gene_name "SLI15"; +chrII SGD transcript 551104 553200 . - . transcript_id "YBR156C_id002"; gene_id "YBR156C"; gene_name "SLI15"; transcript_biotype "protein_coding"; +chrII SGD exon 551104 553200 . - 0 transcript_id "YBR156C_id002"; gene_name "SLI15"; gene_id "YBR156C"; +chrII SGD gene 553414 555160 . - . gene_id "YBR157C"; gene_biotype "protein_coding"; +chrII SGD transcript 553414 555160 . - . transcript_id "YBR157C_id001"; gene_id "YBR157C"; gene_name "ICS2"; transcript_biotype "protein_coding"; +chrII SGD exon 553414 555160 . - . transcript_id "YBR157C_id001"; gene_id "YBR157C"; gene_name "ICS2"; +chrII SGD transcript 553543 554310 . - . transcript_id "YBR157C_id002"; gene_id "YBR157C"; gene_name "ICS2"; transcript_biotype "protein_coding"; +chrII SGD exon 553543 554310 . - 0 transcript_id "YBR157C_id002"; gene_name "ICS2"; gene_id "YBR157C"; +chrII SGD gene 556286 558353 . + . gene_id "YBR158W"; gene_biotype "protein_coding"; +chrII SGD transcript 556286 558353 . + . transcript_id "YBR158W_id003"; gene_id "YBR158W"; gene_name "AMN1"; transcript_biotype "protein_coding"; +chrII SGD exon 556286 558353 . + . transcript_id "YBR158W_id003"; gene_id "YBR158W"; gene_name "AMN1"; +chrII SGD transcript 556549 558198 . + . transcript_id "YBR158W_id001"; gene_id "YBR158W"; gene_name "AMN1"; transcript_biotype "protein_coding"; +chrII SGD exon 556549 558198 . + 0 transcript_id "YBR158W_id001"; gene_name "AMN1"; gene_id "YBR158W"; +chrII SGD gene 558632 559894 . + . gene_id "YBR159W"; gene_biotype "protein_coding"; +chrII SGD transcript 558632 559894 . + . transcript_id "YBR159W_id001"; gene_id "YBR159W"; gene_name "IFA38"; transcript_biotype "protein_coding"; +chrII SGD exon 558632 559894 . + . transcript_id "YBR159W_id001"; gene_id "YBR159W"; gene_name "IFA38"; +chrII SGD transcript 558685 559728 . + . transcript_id "YBR159W_id002"; gene_id "YBR159W"; gene_name "IFA38"; transcript_biotype "protein_coding"; +chrII SGD exon 558685 559728 . + 0 transcript_id "YBR159W_id002"; gene_name "IFA38"; gene_id "YBR159W"; +chrII SGD gene 559931 561577 . + . gene_id "YBR160W"; gene_biotype "protein_coding"; +chrII SGD transcript 559931 561577 . + . transcript_id "YBR160W_id001"; gene_id "YBR160W"; gene_name "CDC28"; transcript_biotype "protein_coding"; +chrII SGD exon 559931 561577 . + . transcript_id "YBR160W_id001"; gene_id "YBR160W"; gene_name "CDC28"; +chrII SGD transcript 560078 560974 . + . transcript_id "YBR160W_id002"; gene_id "YBR160W"; gene_name "CDC28"; transcript_biotype "protein_coding"; +chrII SGD exon 560078 560974 . + 0 transcript_id "YBR160W_id002"; gene_name "CDC28"; gene_id "YBR160W"; +chrII SGD gene 561405 563003 . + . gene_id "YBR161W"; gene_biotype "protein_coding"; +chrII SGD transcript 561405 563003 . + . transcript_id "YBR161W_id001"; gene_id "YBR161W"; gene_name "CSH1"; transcript_biotype "protein_coding"; +chrII SGD exon 561405 563003 . + . transcript_id "YBR161W_id001"; gene_id "YBR161W"; gene_name "CSH1"; +chrII SGD transcript 561634 562764 . + . transcript_id "YBR161W_id002"; gene_id "YBR161W"; gene_name "CSH1"; transcript_biotype "protein_coding"; +chrII SGD exon 561634 562764 . + 0 transcript_id "YBR161W_id002"; gene_name "CSH1"; gene_id "YBR161W"; +chrII SGD gene 562831 564808 . - . gene_id "YBR162C"; gene_biotype "protein_coding"; +chrII SGD transcript 562831 564808 . - . transcript_id "YBR162C_id004"; gene_id "YBR162C"; gene_name "TOS1"; transcript_biotype "protein_coding"; +chrII SGD exon 562831 564808 . - . transcript_id "YBR162C_id004"; gene_id "YBR162C"; gene_name "TOS1"; +chrII SGD transcript 563203 564570 . - . transcript_id "YBR162C_id001"; gene_id "YBR162C"; gene_name "TOS1"; transcript_biotype "protein_coding"; +chrII SGD exon 563203 564570 . - 0 transcript_id "YBR162C_id001"; gene_name "TOS1"; gene_id "YBR162C"; +chrII SGD gene 564860 565513 . + . gene_id "YBR162W-A"; gene_biotype "protein_coding"; +chrII SGD transcript 564860 565513 . + . transcript_id "YBR162W-A_id009"; gene_id "YBR162W-A"; gene_name "YSY6"; transcript_biotype "protein_coding"; +chrII SGD exon 564860 565513 . + . transcript_id "YBR162W-A_id009"; gene_id "YBR162W-A"; gene_name "YSY6"; +chrII SGD transcript 565231 565428 . + . transcript_id "YBR162W-A_id001"; gene_id "YBR162W-A"; gene_name "YSY6"; transcript_biotype "protein_coding"; +chrII SGD exon 565231 565428 . + 0 transcript_id "YBR162W-A_id001"; gene_name "YSY6"; gene_id "YBR162W-A"; +chrII SGD gene 565611 567538 . + . gene_id "YBR163W"; gene_biotype "protein_coding"; +chrII SGD transcript 565611 567538 . + . transcript_id "YBR163W_id005"; gene_id "YBR163W"; gene_name "EXO5"; transcript_biotype "protein_coding"; +chrII SGD exon 565611 567538 . + . transcript_id "YBR163W_id005"; gene_id "YBR163W"; gene_name "EXO5"; +chrII SGD transcript 565723 567480 . + . transcript_id "YBR163W_id001"; gene_id "YBR163W"; gene_name "EXO5"; transcript_biotype "protein_coding"; +chrII SGD exon 565723 567480 . + 0 transcript_id "YBR163W_id001"; gene_name "EXO5"; gene_id "YBR163W"; +chrII SGD gene 567430 568548 . - . gene_id "YBR164C"; gene_biotype "protein_coding"; +chrII SGD transcript 567430 568548 . - . transcript_id "YBR164C_id001"; gene_id "YBR164C"; gene_name "ARL1"; transcript_biotype "protein_coding"; +chrII SGD exon 567430 568548 . - . transcript_id "YBR164C_id001"; gene_id "YBR164C"; gene_name "ARL1"; +chrII SGD transcript 567875 568426 . - . transcript_id "YBR164C_id002"; gene_id "YBR164C"; gene_name "ARL1"; transcript_biotype "protein_coding"; +chrII SGD exon 567875 568426 . - 0 transcript_id "YBR164C_id002"; gene_name "ARL1"; gene_id "YBR164C"; +chrII SGD gene 568741 569837 . + . gene_id "YBR165W"; gene_biotype "protein_coding"; +chrII SGD transcript 568741 569837 . + . transcript_id "YBR165W_id001"; gene_id "YBR165W"; gene_name "UBS1"; transcript_biotype "protein_coding"; +chrII SGD exon 568741 569837 . + . transcript_id "YBR165W_id001"; gene_id "YBR165W"; gene_name "UBS1"; +chrII SGD transcript 568852 569685 . + . transcript_id "YBR165W_id005"; gene_id "YBR165W"; gene_name "UBS1"; transcript_biotype "protein_coding"; +chrII SGD exon 568852 569685 . + 0 transcript_id "YBR165W_id005"; gene_name "UBS1"; gene_id "YBR165W"; +chrII SGD gene 569732 571279 . - . gene_id "YBR166C"; gene_biotype "protein_coding"; +chrII SGD transcript 569732 571279 . - . transcript_id "YBR166C_id003"; gene_id "YBR166C"; gene_name "TYR1"; transcript_biotype "protein_coding"; +chrII SGD exon 569732 571279 . - . transcript_id "YBR166C_id003"; gene_id "YBR166C"; gene_name "TYR1"; +chrII SGD transcript 569842 571200 . - . transcript_id "YBR166C_id001"; gene_id "YBR166C"; gene_name "TYR1"; transcript_biotype "protein_coding"; +chrII SGD exon 569842 571200 . - 0 transcript_id "YBR166C_id001"; gene_name "TYR1"; gene_id "YBR166C"; +chrII SGD gene 571447 572502 . - . gene_id "YBR167C"; gene_biotype "protein_coding"; +chrII SGD transcript 571447 572502 . - . transcript_id "YBR167C_id002"; gene_id "YBR167C"; gene_name "POP7"; transcript_biotype "protein_coding"; +chrII SGD exon 571447 572502 . - . transcript_id "YBR167C_id002"; gene_id "YBR167C"; gene_name "POP7"; +chrII SGD transcript 571468 571890 . - . transcript_id "YBR167C_id001"; gene_id "YBR167C"; gene_name "POP7"; transcript_biotype "protein_coding"; +chrII SGD exon 571468 571890 . - 0 transcript_id "YBR167C_id001"; gene_name "POP7"; gene_id "YBR167C"; +chrII SGD gene 572371 573612 . + . gene_id "YBR168W"; gene_biotype "protein_coding"; +chrII SGD transcript 572371 573612 . + . transcript_id "YBR168W_id001"; gene_id "YBR168W"; gene_name "PEX32"; transcript_biotype "protein_coding"; +chrII SGD exon 572371 573612 . + 0 transcript_id "YBR168W_id001"; gene_name "PEX32"; gene_id "YBR168W"; +chrII SGD gene 573750 576124 . - . gene_id "YBR169C"; gene_biotype "protein_coding"; +chrII SGD transcript 573750 576124 . - . transcript_id "YBR169C_id002"; gene_id "YBR169C"; gene_name "SSE2"; transcript_biotype "protein_coding"; +chrII SGD exon 573750 576124 . - . transcript_id "YBR169C_id002"; gene_id "YBR169C"; gene_name "SSE2"; +chrII SGD transcript 573915 575996 . - . transcript_id "YBR169C_id001"; gene_id "YBR169C"; gene_name "SSE2"; transcript_biotype "protein_coding"; +chrII SGD exon 573915 575996 . - 0 transcript_id "YBR169C_id001"; gene_name "SSE2"; gene_id "YBR169C"; +chrII SGD gene 576057 578112 . - . gene_id "YBR170C"; gene_biotype "protein_coding"; +chrII SGD transcript 576057 578112 . - . transcript_id "YBR170C_id001"; gene_id "YBR170C"; gene_name "NPL4"; transcript_biotype "protein_coding"; +chrII SGD exon 576057 578112 . - . transcript_id "YBR170C_id001"; gene_id "YBR170C"; gene_name "NPL4"; +chrII SGD transcript 576344 578086 . - . transcript_id "YBR170C_id002"; gene_id "YBR170C"; gene_name "NPL4"; transcript_biotype "protein_coding"; +chrII SGD exon 576344 578086 . - 0 transcript_id "YBR170C_id002"; gene_name "NPL4"; gene_id "YBR170C"; +chrII SGD gene 578330 579177 . + . gene_id "YBR171W"; gene_biotype "protein_coding"; +chrII SGD transcript 578330 579177 . + . transcript_id "YBR171W_id003"; gene_id "YBR171W"; gene_name "SEC66"; transcript_biotype "protein_coding"; +chrII SGD exon 578330 579177 . + . transcript_id "YBR171W_id003"; gene_id "YBR171W"; gene_name "SEC66"; +chrII SGD transcript 578364 578984 . + . transcript_id "YBR171W_id001"; gene_id "YBR171W"; gene_name "SEC66"; transcript_biotype "protein_coding"; +chrII SGD exon 578364 578984 . + 0 transcript_id "YBR171W_id001"; gene_name "SEC66"; gene_id "YBR171W"; +chrII SGD gene 579150 581372 . - . gene_id "YBR172C"; gene_biotype "protein_coding"; +chrII SGD transcript 579150 581372 . - . transcript_id "YBR172C_id001"; gene_id "YBR172C"; gene_name "SMY2"; transcript_biotype "protein_coding"; +chrII SGD exon 579150 581372 . - 0 transcript_id "YBR172C_id001"; gene_name "SMY2"; gene_id "YBR172C"; +chrII SGD gene 581500 582203 . - . gene_id "YBR173C"; gene_biotype "protein_coding"; +chrII SGD transcript 581500 582203 . - . transcript_id "YBR173C_id002"; gene_id "YBR173C"; gene_name "UMP1"; transcript_biotype "protein_coding"; +chrII SGD exon 581500 582203 . - . transcript_id "YBR173C_id002"; gene_id "YBR173C"; gene_name "UMP1"; +chrII SGD transcript 581726 582172 . - . transcript_id "YBR173C_id001"; gene_id "YBR173C"; gene_name "UMP1"; transcript_biotype "protein_coding"; +chrII SGD exon 581726 582172 . - 0 transcript_id "YBR173C_id001"; gene_name "UMP1"; gene_id "YBR173C"; +chrII SGD gene 581736 583462 . + . gene_id "YBR175W"; gene_biotype "protein_coding"; +chrII SGD transcript 581736 583462 . + . transcript_id "YBR175W_id001"; gene_id "YBR175W"; gene_name "SWD3"; transcript_biotype "protein_coding"; +chrII SGD exon 581736 583462 . + . transcript_id "YBR175W_id001"; gene_id "YBR175W"; gene_name "SWD3"; +chrII SGD gene 582338 582652 . - . gene_id "YBR174C"; gene_biotype "protein_coding"; +chrII SGD transcript 582338 582652 . - . transcript_id "YBR174C_id001"; gene_id "YBR174C"; transcript_biotype "protein_coding"; +chrII SGD exon 582338 582652 . - 0 transcript_id "YBR174C_id001"; gene_id "YBR174C"; +chrII SGD transcript 582408 583355 . + . transcript_id "YBR175W_id002"; gene_id "YBR175W"; gene_name "SWD3"; transcript_biotype "protein_coding"; +chrII SGD exon 582408 583355 . + 0 transcript_id "YBR175W_id002"; gene_name "SWD3"; gene_id "YBR175W"; +chrII SGD gene 583604 584821 . + . gene_id "YBR176W"; gene_biotype "protein_coding"; +chrII SGD transcript 583604 584821 . + . transcript_id "YBR176W_id002"; gene_id "YBR176W"; gene_name "ECM31"; transcript_biotype "protein_coding"; +chrII SGD exon 583604 584821 . + . transcript_id "YBR176W_id002"; gene_id "YBR176W"; gene_name "ECM31"; +chrII SGD transcript 583720 584658 . + . transcript_id "YBR176W_id001"; gene_id "YBR176W"; gene_name "ECM31"; transcript_biotype "protein_coding"; +chrII SGD exon 583720 584658 . + 0 transcript_id "YBR176W_id001"; gene_name "ECM31"; gene_id "YBR176W"; +chrII SGD gene 584563 586208 . - . gene_id "YBR177C"; gene_biotype "protein_coding"; +chrII SGD transcript 584563 586208 . - . transcript_id "YBR177C_id004"; gene_id "YBR177C"; gene_name "EHT1"; transcript_biotype "protein_coding"; +chrII SGD exon 584563 586208 . - . transcript_id "YBR177C_id004"; gene_id "YBR177C"; gene_name "EHT1"; +chrII SGD transcript 584807 586162 . - . transcript_id "YBR177C_id001"; gene_id "YBR177C"; gene_name "EHT1"; transcript_biotype "protein_coding"; +chrII SGD exon 584807 586162 . - 0 transcript_id "YBR177C_id001"; gene_name "EHT1"; gene_id "YBR177C"; +chrII SGD gene 586071 586445 . + . gene_id "YBR178W"; gene_biotype "protein_coding"; +chrII SGD transcript 586071 586445 . + . transcript_id "YBR178W_id001"; gene_id "YBR178W"; transcript_biotype "protein_coding"; +chrII SGD exon 586071 586445 . + 0 transcript_id "YBR178W_id001"; gene_id "YBR178W"; +chrII SGD gene 586471 589179 . - . gene_id "YBR179C"; gene_biotype "protein_coding"; +chrII SGD transcript 586471 589179 . - . transcript_id "YBR179C_id008"; gene_id "YBR179C"; gene_name "FZO1"; transcript_biotype "protein_coding"; +chrII SGD exon 586471 589179 . - . transcript_id "YBR179C_id008"; gene_id "YBR179C"; gene_name "FZO1"; +chrII SGD transcript 586547 589114 . - . transcript_id "YBR179C_id001"; gene_id "YBR179C"; gene_name "FZO1"; transcript_biotype "protein_coding"; +chrII SGD exon 586547 589114 . - 0 transcript_id "YBR179C_id001"; gene_name "FZO1"; gene_id "YBR179C"; +chrII SGD gene 589741 591459 . + . gene_id "YBR180W"; gene_biotype "protein_coding"; +chrII SGD transcript 589741 591459 . + . transcript_id "YBR180W_mRNA"; gene_id "YBR180W"; gene_name "DTR1"; transcript_biotype "protein_coding"; +chrII SGD CDS 589741 591459 . + 0 transcript_id "YBR180W_mRNA"; gene_name "DTR1"; gene_id "YBR180W"; +chrII SGD gene 591476 592813 . - . gene_id "YBR181C"; gene_biotype "protein_coding"; +chrII SGD transcript 591476 592813 . - . transcript_id "YBR181C_id002"; gene_id "YBR181C"; gene_name "RPS6B"; transcript_biotype "protein_coding"; +chrII SGD exon 591476 592813 . - . transcript_id "YBR181C_id002"; gene_id "YBR181C"; gene_name "RPS6B"; +chrII SGD transcript 591712 592774 . - . transcript_id "YBR181C_id001"; gene_id "YBR181C"; gene_name "RPS6B"; transcript_biotype "protein_coding"; +chrII SGD exon 591712 592416 . - 0 transcript_id "YBR181C_id001"; gene_name "RPS6B"; gene_id "YBR181C"; +chrII SGD exon 592769 592774 . - 0 transcript_id "YBR181C_id001"; gene_name "RPS6B"; gene_id "YBR181C"; +chrII SGD gene 593506 594864 . - . gene_id "YBR182C"; gene_biotype "protein_coding"; +chrII SGD transcript 593506 594864 . - . transcript_id "YBR182C_mRNA"; gene_id "YBR182C"; gene_name "SMP1"; transcript_biotype "protein_coding"; +chrII SGD CDS 593506 594864 . - 0 transcript_id "YBR182C_mRNA"; gene_name "SMP1"; gene_id "YBR182C"; +chrII SGD gene 595361 595555 . - . gene_id "YBR182C-A"; gene_biotype "protein_coding"; +chrII SGD transcript 595361 595555 . - . transcript_id "YBR182C-A_id001"; gene_id "YBR182C-A"; transcript_biotype "protein_coding"; +chrII SGD exon 595361 595555 . - 0 transcript_id "YBR182C-A_id001"; gene_id "YBR182C-A"; +chrII SGD gene 596016 597191 . + . gene_id "YBR183W"; gene_biotype "protein_coding"; +chrII SGD transcript 596016 597191 . + . transcript_id "YBR183W_id003"; gene_id "YBR183W"; gene_name "YPC1"; transcript_biotype "protein_coding"; +chrII SGD exon 596016 597191 . + . transcript_id "YBR183W_id003"; gene_id "YBR183W"; gene_name "YPC1"; +chrII SGD transcript 596115 597065 . + . transcript_id "YBR183W_id001"; gene_id "YBR183W"; gene_name "YPC1"; transcript_biotype "protein_coding"; +chrII SGD exon 596115 597065 . + 0 transcript_id "YBR183W_id001"; gene_name "YPC1"; gene_id "YBR183W"; +chrII SGD gene 597363 598934 . + . gene_id "YBR184W"; gene_biotype "protein_coding"; +chrII SGD transcript 597363 598934 . + . transcript_id "YBR184W_mRNA"; gene_id "YBR184W"; transcript_biotype "protein_coding"; +chrII SGD CDS 597363 598934 . + 0 transcript_id "YBR184W_mRNA"; gene_id "YBR184W"; +chrII SGD gene 598938 600017 . - . gene_id "YBR185C"; gene_biotype "protein_coding"; +chrII SGD transcript 598938 600017 . - . transcript_id "YBR185C_id004"; gene_id "YBR185C"; gene_name "MBA1"; transcript_biotype "protein_coding"; +chrII SGD exon 598938 600017 . - . transcript_id "YBR185C_id004"; gene_id "YBR185C"; gene_name "MBA1"; +chrII SGD transcript 599123 599959 . - . transcript_id "YBR185C_id001"; gene_id "YBR185C"; gene_name "MBA1"; transcript_biotype "protein_coding"; +chrII SGD exon 599123 599959 . - 0 transcript_id "YBR185C_id001"; gene_name "MBA1"; gene_id "YBR185C"; +chrII SGD gene 600553 602360 . + . gene_id "YBR186W"; gene_biotype "protein_coding"; +chrII SGD transcript 600553 602360 . + . transcript_id "YBR186W_mRNA"; gene_id "YBR186W"; gene_name "PCH2"; transcript_biotype "protein_coding"; +chrII SGD CDS 600553 602103 . + 0 transcript_id "YBR186W_mRNA"; gene_name "PCH2"; gene_id "YBR186W"; +chrII SGD CDS 602217 602360 . + 0 transcript_id "YBR186W_mRNA"; gene_name "PCH2"; gene_id "YBR186W"; +chrII SGD gene 601659 603598 . + . gene_id "YBR187W"; gene_biotype "protein_coding"; +chrII SGD transcript 601659 603598 . + . transcript_id "YBR187W_id001"; gene_id "YBR187W"; gene_name "GDT1"; transcript_biotype "protein_coding"; +chrII SGD exon 601659 603598 . + . transcript_id "YBR187W_id001"; gene_id "YBR187W"; gene_name "GDT1"; +chrII SGD gene 602521 604187 . - . gene_id "YBR188C"; gene_biotype "protein_coding"; +chrII SGD transcript 602521 604187 . - . transcript_id "YBR188C_id001"; gene_id "YBR188C"; gene_name "NTC20"; transcript_biotype "protein_coding"; +chrII SGD exon 602521 604187 . - . transcript_id "YBR188C_id001"; gene_id "YBR188C"; gene_name "NTC20"; +chrII SGD transcript 602634 603476 . + . transcript_id "YBR187W_id007"; gene_id "YBR187W"; gene_name "GDT1"; transcript_biotype "protein_coding"; +chrII SGD exon 602634 603476 . + 0 transcript_id "YBR187W_id007"; gene_name "GDT1"; gene_id "YBR187W"; +chrII SGD transcript 603685 604107 . - . transcript_id "YBR188C_id002"; gene_id "YBR188C"; gene_name "NTC20"; transcript_biotype "protein_coding"; +chrII SGD exon 603685 604107 . - 0 transcript_id "YBR188C_id002"; gene_name "NTC20"; gene_id "YBR188C"; +chrII SGD gene 604482 605915 . + . gene_id "YBR189W"; gene_biotype "protein_coding"; +chrII SGD transcript 604482 605915 . + . transcript_id "YBR189W_id002"; gene_id "YBR189W"; gene_name "RPS9B"; transcript_biotype "protein_coding"; +chrII SGD exon 604482 605915 . + . transcript_id "YBR189W_id002"; gene_id "YBR189W"; gene_name "RPS9B"; +chrII SGD transcript 604508 605508 . + . transcript_id "YBR189W_id001"; gene_id "YBR189W"; gene_name "RPS9B"; transcript_biotype "protein_coding"; +chrII SGD exon 604508 604514 . + 0 transcript_id "YBR189W_id001"; gene_name "RPS9B"; gene_id "YBR189W"; +chrII SGD exon 604928 605508 . + 2 transcript_id "YBR189W_id001"; gene_name "RPS9B"; gene_id "YBR189W"; +chrII SGD gene 605966 606277 . + . gene_id "YBR190W"; gene_biotype "protein_coding"; +chrII SGD transcript 605966 606277 . + . transcript_id "YBR190W_mRNA"; gene_id "YBR190W"; transcript_biotype "protein_coding"; +chrII SGD CDS 605966 606277 . + 0 transcript_id "YBR190W_mRNA"; gene_id "YBR190W"; +chrII SGD gene 606248 607191 . + . gene_id "YBR191W"; gene_biotype "protein_coding"; +chrII SGD transcript 606248 607191 . + . transcript_id "YBR191W_id001"; gene_id "YBR191W"; gene_name "RPL21A"; transcript_biotype "protein_coding"; +chrII SGD exon 606248 607191 . + . transcript_id "YBR191W_id001"; gene_id "YBR191W"; gene_name "RPL21A"; +chrII SGD transcript 606270 607140 . + . transcript_id "YBR191W_id002"; gene_id "YBR191W"; gene_name "RPL21A"; transcript_biotype "protein_coding"; +chrII SGD exon 606270 606280 . + 0 transcript_id "YBR191W_id002"; gene_name "RPL21A"; gene_id "YBR191W"; +chrII SGD exon 606669 607140 . + 1 transcript_id "YBR191W_id002"; gene_name "RPL21A"; gene_id "YBR191W"; +chrII SGD gene 606300 607280 . + . gene_id "YBR191W-A"; gene_biotype "protein_coding"; +chrII SGD transcript 606300 607280 . + . transcript_id "YBR191W-A_id001"; gene_id "YBR191W-A"; transcript_biotype "protein_coding"; +chrII SGD exon 606300 607280 . + . transcript_id "YBR191W-A_id001"; gene_id "YBR191W-A"; +chrII SGD transcript 607149 607223 . + . transcript_id "YBR191W-A_id008"; gene_id "YBR191W-A"; transcript_biotype "protein_coding"; +chrII SGD exon 607149 607223 . + 0 transcript_id "YBR191W-A_id008"; gene_id "YBR191W-A"; +chrII SGD gene 607438 609063 . + . gene_id "YBR192W"; gene_biotype "protein_coding"; +chrII SGD transcript 607438 609063 . + . transcript_id "YBR192W_id003"; gene_id "YBR192W"; gene_name "RIM2"; transcript_biotype "protein_coding"; +chrII SGD exon 607438 609063 . + . transcript_id "YBR192W_id003"; gene_id "YBR192W"; gene_name "RIM2"; +chrII SGD transcript 607652 608785 . + . transcript_id "YBR192W_id001"; gene_id "YBR192W"; gene_name "RIM2"; transcript_biotype "protein_coding"; +chrII SGD exon 607652 608785 . + 0 transcript_id "YBR192W_id001"; gene_name "RIM2"; gene_id "YBR192W"; +chrII SGD gene 608609 609938 . - . gene_id "YBR193C"; gene_biotype "protein_coding"; +chrII SGD transcript 608609 609938 . - . transcript_id "YBR193C_id006"; gene_id "YBR193C"; gene_name "MED8"; transcript_biotype "protein_coding"; +chrII SGD exon 608609 609938 . - . transcript_id "YBR193C_id006"; gene_id "YBR193C"; gene_name "MED8"; +chrII SGD transcript 609082 609753 . - . transcript_id "YBR193C_id001"; gene_id "YBR193C"; gene_name "MED8"; transcript_biotype "protein_coding"; +chrII SGD exon 609082 609753 . - 0 transcript_id "YBR193C_id001"; gene_name "MED8"; gene_id "YBR193C"; +chrII SGD gene 609916 610648 . + . gene_id "YBR194W"; gene_biotype "protein_coding"; +chrII SGD transcript 609916 610648 . + . transcript_id "YBR194W_id003"; gene_id "YBR194W"; gene_name "AIM4"; transcript_biotype "protein_coding"; +chrII SGD exon 609916 610648 . + . transcript_id "YBR194W_id003"; gene_id "YBR194W"; gene_name "AIM4"; +chrII SGD transcript 610038 610409 . + . transcript_id "YBR194W_id001"; gene_id "YBR194W"; gene_name "AIM4"; transcript_biotype "protein_coding"; +chrII SGD exon 610038 610409 . + 0 transcript_id "YBR194W_id001"; gene_name "AIM4"; gene_id "YBR194W"; +chrII SGD gene 610470 611950 . - . gene_id "YBR195C"; gene_biotype "protein_coding"; +chrII SGD transcript 610470 611950 . - . transcript_id "YBR195C_id002"; gene_id "YBR195C"; gene_name "MSI1"; transcript_biotype "protein_coding"; +chrII SGD exon 610470 611950 . - . transcript_id "YBR195C_id002"; gene_id "YBR195C"; gene_name "MSI1"; +chrII SGD transcript 610614 611882 . - . transcript_id "YBR195C_id001"; gene_id "YBR195C"; gene_name "MSI1"; transcript_biotype "protein_coding"; +chrII SGD exon 610614 611882 . - 0 transcript_id "YBR195C_id001"; gene_name "MSI1"; gene_id "YBR195C"; +chrII SGD gene 612043 613994 . - . gene_id "YBR196C"; gene_biotype "protein_coding"; +chrII SGD transcript 612043 613994 . - . transcript_id "YBR196C_id001"; gene_id "YBR196C"; gene_name "PGI1"; transcript_biotype "protein_coding"; +chrII SGD exon 612043 613994 . - . transcript_id "YBR196C_id001"; gene_id "YBR196C"; gene_name "PGI1"; +chrII SGD transcript 612236 613900 . - . transcript_id "YBR196C_id002"; gene_id "YBR196C"; gene_name "PGI1"; transcript_biotype "protein_coding"; +chrII SGD exon 612236 613900 . - 0 transcript_id "YBR196C_id002"; gene_name "PGI1"; gene_id "YBR196C"; +chrII SGD gene 613915 614587 . - . gene_id "YBR196C-A"; gene_biotype "protein_coding"; +chrII SGD transcript 613915 614587 . - . transcript_id "YBR196C-A_id001"; gene_id "YBR196C-A"; transcript_biotype "protein_coding"; +chrII SGD exon 613915 614587 . - . transcript_id "YBR196C-A_id001"; gene_id "YBR196C-A"; +chrII SGD transcript 614024 614173 . - . transcript_id "YBR196C-A_id005"; gene_id "YBR196C-A"; transcript_biotype "protein_coding"; +chrII SGD exon 614024 614173 . - 0 transcript_id "YBR196C-A_id005"; gene_id "YBR196C-A"; +chrII SGD gene 614526 614630 . - . gene_id "YBR196C-B"; gene_biotype "protein_coding"; +chrII SGD transcript 614526 614630 . - . transcript_id "YBR196C-B_mRNA"; gene_id "YBR196C-B"; transcript_biotype "protein_coding"; +chrII SGD CDS 614526 614630 . - 0 transcript_id "YBR196C-B_mRNA"; gene_id "YBR196C-B"; +chrII SGD gene 614771 617352 . - . gene_id "YBR197C"; gene_biotype "protein_coding"; +chrII SGD transcript 614771 617352 . - . transcript_id "YBR197C_id001"; gene_id "YBR197C"; transcript_biotype "protein_coding"; +chrII SGD exon 614771 617352 . - . transcript_id "YBR197C_id001"; gene_id "YBR197C"; +chrII SGD transcript 615203 615856 . - . transcript_id "YBR197C_id004"; gene_id "YBR197C"; transcript_biotype "protein_coding"; +chrII SGD exon 615203 615856 . - 0 transcript_id "YBR197C_id004"; gene_id "YBR197C"; +chrII SGD gene 616031 618609 . - . gene_id "YBR198C"; gene_biotype "protein_coding"; +chrII SGD transcript 616031 618609 . - . transcript_id "YBR198C_id001"; gene_id "YBR198C"; gene_name "TAF5"; transcript_biotype "protein_coding"; +chrII SGD exon 616031 618609 . - . transcript_id "YBR198C_id001"; gene_id "YBR198C"; gene_name "TAF5"; +chrII SGD transcript 616127 618523 . - . transcript_id "YBR198C_id004"; gene_id "YBR198C"; gene_name "TAF5"; transcript_biotype "protein_coding"; +chrII SGD exon 616127 618523 . - 0 transcript_id "YBR198C_id004"; gene_name "TAF5"; gene_id "YBR198C"; +chrII SGD gene 618810 620607 . + . gene_id "YBR199W"; gene_biotype "protein_coding"; +chrII SGD transcript 618810 620607 . + . transcript_id "YBR199W_id002"; gene_id "YBR199W"; gene_name "KTR4"; transcript_biotype "protein_coding"; +chrII SGD exon 618810 620607 . + . transcript_id "YBR199W_id002"; gene_id "YBR199W"; gene_name "KTR4"; +chrII SGD transcript 618909 620303 . + . transcript_id "YBR199W_id001"; gene_id "YBR199W"; gene_name "KTR4"; transcript_biotype "protein_coding"; +chrII SGD exon 618909 620303 . + 0 transcript_id "YBR199W_id001"; gene_name "KTR4"; gene_id "YBR199W"; +chrII SGD gene 620809 622776 . + . gene_id "YBR200W"; gene_biotype "protein_coding"; +chrII SGD transcript 620809 622776 . + . transcript_id "YBR200W_id002"; gene_id "YBR200W"; gene_name "BEM1"; transcript_biotype "protein_coding"; +chrII SGD exon 620809 622776 . + . transcript_id "YBR200W_id002"; gene_id "YBR200W"; gene_name "BEM1"; +chrII SGD transcript 620872 622527 . + . transcript_id "YBR200W_id001"; gene_id "YBR200W"; gene_name "BEM1"; transcript_biotype "protein_coding"; +chrII SGD exon 620872 622527 . + 0 transcript_id "YBR200W_id001"; gene_name "BEM1"; gene_id "YBR200W"; +chrII SGD gene 622983 623147 . + . gene_id "YBR200W-A"; gene_biotype "protein_coding"; +chrII SGD transcript 622983 623147 . + . transcript_id "YBR200W-A_mRNA"; gene_id "YBR200W-A"; transcript_biotype "protein_coding"; +chrII SGD CDS 622983 623147 . + 0 transcript_id "YBR200W-A_mRNA"; gene_id "YBR200W-A"; +chrII SGD gene 623433 624921 . + . gene_id "YBR201W"; gene_biotype "protein_coding"; +chrII SGD transcript 623433 624921 . + . transcript_id "YBR201W_id001"; gene_id "YBR201W"; gene_name "DER1"; transcript_biotype "protein_coding"; +chrII SGD exon 623433 624921 . + . transcript_id "YBR201W_id001"; gene_id "YBR201W"; gene_name "DER1"; +chrII SGD transcript 623576 624211 . + . transcript_id "YBR201W_id003"; gene_id "YBR201W"; gene_name "DER1"; transcript_biotype "protein_coding"; +chrII SGD exon 623576 624211 . + 0 transcript_id "YBR201W_id003"; gene_name "DER1"; gene_id "YBR201W"; +chrII SGD gene 624305 625418 . - . gene_id "YBR201C-A"; gene_biotype "protein_coding"; +chrII SGD transcript 624305 625418 . - . transcript_id "YBR201C-A_id001"; gene_id "YBR201C-A"; gene_name "MIN7"; transcript_biotype "protein_coding"; +chrII SGD exon 624305 625418 . - . transcript_id "YBR201C-A_id001"; gene_id "YBR201C-A"; gene_name "MIN7"; +chrII SGD transcript 624493 624696 . - . transcript_id "YBR201C-A_id005"; gene_id "YBR201C-A"; gene_name "MIN7"; transcript_biotype "protein_coding"; +chrII SGD exon 624493 624696 . - 0 transcript_id "YBR201C-A_id005"; gene_name "MIN7"; gene_id "YBR201C-A"; +chrII SGD gene 625676 628486 . + . gene_id "YBR202W"; gene_biotype "protein_coding"; +chrII SGD transcript 625676 628486 . + . transcript_id "YBR202W_id002"; gene_id "YBR202W"; gene_name "MCM7"; transcript_biotype "protein_coding"; +chrII SGD exon 625676 628486 . + . transcript_id "YBR202W_id002"; gene_id "YBR202W"; gene_name "MCM7"; +chrII SGD transcript 625772 628309 . + . transcript_id "YBR202W_id001"; gene_id "YBR202W"; gene_name "MCM7"; transcript_biotype "protein_coding"; +chrII SGD exon 625772 628309 . + 0 transcript_id "YBR202W_id001"; gene_name "MCM7"; gene_id "YBR202W"; +chrII SGD gene 629168 631942 . + . gene_id "YBR203W"; gene_biotype "protein_coding"; +chrII SGD transcript 629168 631942 . + . transcript_id "YBR203W_id001"; gene_id "YBR203W"; gene_name "COS111"; transcript_biotype "protein_coding"; +chrII SGD exon 629168 631942 . + 0 transcript_id "YBR203W_id001"; gene_name "COS111"; gene_id "YBR203W"; +chrII SGD gene 631999 633449 . - . gene_id "YBR204C"; gene_biotype "protein_coding"; +chrII SGD transcript 631999 633449 . - . transcript_id "YBR204C_id003"; gene_id "YBR204C"; gene_name "LDH1"; transcript_biotype "protein_coding"; +chrII SGD exon 631999 633449 . - . transcript_id "YBR204C_id003"; gene_id "YBR204C"; gene_name "LDH1"; +chrII SGD transcript 632254 633381 . - . transcript_id "YBR204C_id001"; gene_id "YBR204C"; gene_name "LDH1"; transcript_biotype "protein_coding"; +chrII SGD exon 632254 633381 . - 0 transcript_id "YBR204C_id001"; gene_name "LDH1"; gene_id "YBR204C"; +chrII SGD gene 633622 634836 . + . gene_id "YBR205W"; gene_biotype "protein_coding"; +chrII SGD transcript 633622 634836 . + . transcript_id "YBR205W_mRNA"; gene_id "YBR205W"; gene_name "KTR3"; transcript_biotype "protein_coding"; +chrII SGD CDS 633622 634836 . + 0 transcript_id "YBR205W_mRNA"; gene_name "KTR3"; gene_id "YBR205W"; +chrII SGD gene 633637 635026 . + . gene_id "YBR206W"; gene_biotype "protein_coding"; +chrII SGD transcript 633637 635026 . + . transcript_id "YBR206W_id001"; gene_id "YBR206W"; transcript_biotype "protein_coding"; +chrII SGD exon 633637 635026 . + . transcript_id "YBR206W_id001"; gene_id "YBR206W"; +chrII SGD transcript 634601 634924 . + . transcript_id "YBR206W_id004"; gene_id "YBR206W"; transcript_biotype "protein_coding"; +chrII SGD exon 634601 634924 . + 0 transcript_id "YBR206W_id004"; gene_id "YBR206W"; +chrII SGD gene 635061 636738 . + . gene_id "YBR207W"; gene_biotype "protein_coding"; +chrII SGD transcript 635061 636738 . + . transcript_id "YBR207W_id002"; gene_id "YBR207W"; gene_name "FTH1"; transcript_biotype "protein_coding"; +chrII SGD exon 635061 636738 . + . transcript_id "YBR207W_id002"; gene_id "YBR207W"; gene_name "FTH1"; +chrII SGD transcript 635146 636543 . + . transcript_id "YBR207W_id001"; gene_id "YBR207W"; gene_name "FTH1"; transcript_biotype "protein_coding"; +chrII SGD exon 635146 636543 . + 0 transcript_id "YBR207W_id001"; gene_name "FTH1"; gene_id "YBR207W"; +chrII SGD gene 636703 642210 . - . gene_id "YBR208C"; gene_biotype "protein_coding"; +chrII SGD transcript 636703 642210 . - . transcript_id "YBR208C_mRNA"; gene_id "YBR208C"; gene_name "DUR12"; transcript_biotype "protein_coding"; +chrII SGD CDS 636703 642210 . - 0 transcript_id "YBR208C_mRNA"; gene_name "DUR12"; gene_id "YBR208C"; +chrII SGD gene 642583 642900 . + . gene_id "YBR209W"; gene_biotype "protein_coding"; +chrII SGD transcript 642583 642900 . + . transcript_id "YBR209W_id001"; gene_id "YBR209W"; transcript_biotype "protein_coding"; +chrII SGD exon 642583 642900 . + 0 transcript_id "YBR209W_id001"; gene_id "YBR209W"; +chrII SGD gene 643007 643078 . - . gene_id "YNCB0017C"; gene_biotype "ncRNA"; +chrII SGD transcript 643007 643078 . - . transcript_id "YNCB0017C_tRNA"; gene_id "YNCB0017C"; transcript_biotype "ncRNA"; +chrII SGD exon 643007 643078 . - . transcript_id "YNCB0017C_tRNA"; gene_id "YNCB0017C"; +chrII SGD gene 645167 645238 . + . gene_id "YNCB0018W"; gene_biotype "ncRNA"; +chrII SGD transcript 645167 645238 . + . transcript_id "YNCB0018W_tRNA"; gene_id "YNCB0018W"; transcript_biotype "ncRNA"; +chrII SGD exon 645167 645238 . + . transcript_id "YNCB0018W_tRNA"; gene_id "YNCB0018W"; +chrII SGD gene 645330 645990 . + . gene_id "YBR210W"; gene_biotype "protein_coding"; +chrII SGD transcript 645330 645990 . + . transcript_id "YBR210W_id001"; gene_id "YBR210W"; gene_name "ERV15"; transcript_biotype "protein_coding"; +chrII SGD exon 645330 645990 . + . transcript_id "YBR210W_id001"; gene_id "YBR210W"; gene_name "ERV15"; +chrII SGD transcript 645550 645978 . + . transcript_id "YBR210W_id004"; gene_id "YBR210W"; gene_name "ERV15"; transcript_biotype "protein_coding"; +chrII SGD exon 645550 645978 . + 0 transcript_id "YBR210W_id004"; gene_name "ERV15"; gene_id "YBR210W"; +chrII SGD gene 646158 647132 . - . gene_id "YBR211C"; gene_biotype "protein_coding"; +chrII SGD transcript 646158 647132 . - . transcript_id "YBR211C_mRNA"; gene_id "YBR211C"; gene_name "AME1"; transcript_biotype "protein_coding"; +chrII SGD CDS 646158 647132 . - 0 transcript_id "YBR211C_mRNA"; gene_name "AME1"; gene_id "YBR211C"; +chrII SGD gene 647886 649904 . + . gene_id "YBR212W"; gene_biotype "protein_coding"; +chrII SGD transcript 647886 649904 . + . transcript_id "YBR212W_id001"; gene_id "YBR212W"; gene_name "NGR1"; transcript_biotype "protein_coding"; +chrII SGD exon 647886 649904 . + 0 transcript_id "YBR212W_id001"; gene_name "NGR1"; gene_id "YBR212W"; +chrII SGD gene 650250 651388 . + . gene_id "YBR213W"; gene_biotype "protein_coding"; +chrII SGD transcript 650250 651388 . + . transcript_id "YBR213W_id003"; gene_id "YBR213W"; gene_name "MET8"; transcript_biotype "protein_coding"; +chrII SGD exon 650250 651388 . + . transcript_id "YBR213W_id003"; gene_id "YBR213W"; gene_name "MET8"; +chrII SGD transcript 650368 651192 . + . transcript_id "YBR213W_id001"; gene_id "YBR213W"; gene_name "MET8"; transcript_biotype "protein_coding"; +chrII SGD exon 650368 651192 . + 0 transcript_id "YBR213W_id001"; gene_name "MET8"; gene_id "YBR213W"; +chrII SGD gene 651305 653191 . + . gene_id "YBR214W"; gene_biotype "protein_coding"; +chrII SGD transcript 651305 653191 . + . transcript_id "YBR214W_id002"; gene_id "YBR214W"; gene_name "SDS24"; transcript_biotype "protein_coding"; +chrII SGD exon 651305 653191 . + . transcript_id "YBR214W_id002"; gene_id "YBR214W"; gene_name "SDS24"; +chrII SGD transcript 651415 652998 . + . transcript_id "YBR214W_id001"; gene_id "YBR214W"; gene_name "SDS24"; transcript_biotype "protein_coding"; +chrII SGD exon 651415 652998 . + 0 transcript_id "YBR214W_id001"; gene_name "SDS24"; gene_id "YBR214W"; +chrII SGD gene 653315 655782 . + . gene_id "YBR215W"; gene_biotype "protein_coding"; +chrII SGD transcript 653315 655782 . + . transcript_id "YBR215W_id001"; gene_id "YBR215W"; gene_name "HPC2"; transcript_biotype "protein_coding"; +chrII SGD exon 653315 655782 . + . transcript_id "YBR215W_id001"; gene_id "YBR215W"; gene_name "HPC2"; +chrII SGD transcript 653356 655317 . + . transcript_id "YBR215W_id003"; gene_id "YBR215W"; gene_name "HPC2"; transcript_biotype "protein_coding"; +chrII SGD exon 653356 653368 . + 0 transcript_id "YBR215W_id003"; gene_name "HPC2"; gene_id "YBR215W"; +chrII SGD exon 653453 655317 . + 2 transcript_id "YBR215W_id003"; gene_name "HPC2"; gene_id "YBR215W"; +chrII SGD gene 655282 657647 . - . gene_id "YBR216C"; gene_biotype "protein_coding"; +chrII SGD transcript 655282 657647 . - . transcript_id "YBR216C_id001"; gene_id "YBR216C"; gene_name "YBP1"; transcript_biotype "protein_coding"; +chrII SGD exon 655282 657647 . - . transcript_id "YBR216C_id001"; gene_id "YBR216C"; gene_name "YBP1"; +chrII SGD transcript 655576 657600 . - . transcript_id "YBR216C_id002"; gene_id "YBR216C"; gene_name "YBP1"; transcript_biotype "protein_coding"; +chrII SGD exon 655576 657600 . - 0 transcript_id "YBR216C_id002"; gene_name "YBP1"; gene_id "YBR216C"; +chrII SGD gene 657768 658720 . + . gene_id "YBR217W"; gene_biotype "protein_coding"; +chrII SGD transcript 657768 658720 . + . transcript_id "YBR217W_id001"; gene_id "YBR217W"; gene_name "ATG12"; transcript_biotype "protein_coding"; +chrII SGD exon 657768 658720 . + . transcript_id "YBR217W_id001"; gene_id "YBR217W"; gene_name "ATG12"; +chrII SGD transcript 657832 658392 . + . transcript_id "YBR217W_id002"; gene_id "YBR217W"; gene_name "ATG12"; transcript_biotype "protein_coding"; +chrII SGD exon 657832 658392 . + 0 transcript_id "YBR217W_id002"; gene_name "ATG12"; gene_id "YBR217W"; +chrII SGD gene 658591 662399 . - . gene_id "YBR218C"; gene_biotype "protein_coding"; +chrII SGD transcript 658591 662399 . - . transcript_id "YBR218C_id001"; gene_id "YBR218C"; gene_name "PYC2"; transcript_biotype "protein_coding"; +chrII SGD exon 658591 662399 . - . transcript_id "YBR218C_id001"; gene_id "YBR218C"; gene_name "PYC2"; +chrII SGD transcript 658707 662249 . - . transcript_id "YBR218C_id002"; gene_id "YBR218C"; gene_name "PYC2"; transcript_biotype "protein_coding"; +chrII SGD exon 658707 662249 . - 0 transcript_id "YBR218C_id002"; gene_name "PYC2"; gene_id "YBR218C"; +chrII SGD gene 662499 663303 . - . gene_id "YBR219C"; gene_biotype "protein_coding"; +chrII SGD transcript 662499 663303 . - . transcript_id "YBR219C_mRNA"; gene_id "YBR219C"; transcript_biotype "protein_coding"; +chrII SGD CDS 662499 662581 . - 2 transcript_id "YBR219C_mRNA"; gene_id "YBR219C"; +chrII SGD CDS 663003 663303 . - 0 transcript_id "YBR219C_mRNA"; gene_id "YBR219C"; +chrII SGD gene 662734 664744 . - . gene_id "YBR220C"; gene_biotype "protein_coding"; +chrII SGD transcript 662734 664744 . - . transcript_id "YBR220C_id004"; gene_id "YBR220C"; transcript_biotype "protein_coding"; +chrII SGD exon 662734 664744 . - . transcript_id "YBR220C_id004"; gene_id "YBR220C"; +chrII SGD transcript 662995 664677 . - . transcript_id "YBR220C_id001"; gene_id "YBR220C"; transcript_biotype "protein_coding"; +chrII SGD exon 662995 664677 . - 0 transcript_id "YBR220C_id001"; gene_id "YBR220C"; +chrII SGD gene 664844 666471 . - . gene_id "YBR221C"; gene_biotype "protein_coding"; +chrII SGD transcript 664844 666471 . - . transcript_id "YBR221C_id001"; gene_id "YBR221C"; gene_name "PDB1"; transcript_biotype "protein_coding"; +chrII SGD exon 664844 666471 . - . transcript_id "YBR221C_id001"; gene_id "YBR221C"; gene_name "PDB1"; +chrII SGD transcript 665153 666253 . - . transcript_id "YBR221C_id006"; gene_id "YBR221C"; gene_name "PDB1"; transcript_biotype "protein_coding"; +chrII SGD exon 665153 666253 . - 0 transcript_id "YBR221C_id006"; gene_name "PDB1"; gene_id "YBR221C"; +chrII SGD gene 666538 666642 . + . gene_id "YBR221W-A"; gene_biotype "protein_coding"; +chrII SGD transcript 666538 666642 . + . transcript_id "YBR221W-A_mRNA"; gene_id "YBR221W-A"; transcript_biotype "protein_coding"; +chrII SGD CDS 666538 666642 . + 0 transcript_id "YBR221W-A_mRNA"; gene_id "YBR221W-A"; +chrII SGD gene 666606 668403 . - . gene_id "YBR222C"; gene_biotype "protein_coding"; +chrII SGD transcript 666606 668403 . - . transcript_id "YBR222C_id009"; gene_id "YBR222C"; gene_name "PCS60"; transcript_biotype "protein_coding"; +chrII SGD exon 666606 668403 . - . transcript_id "YBR222C_id009"; gene_id "YBR222C"; gene_name "PCS60"; +chrII SGD transcript 666720 668351 . - . transcript_id "YBR222C_id001"; gene_id "YBR222C"; gene_name "PCS60"; transcript_biotype "protein_coding"; +chrII SGD exon 666720 668351 . - 0 transcript_id "YBR222C_id001"; gene_name "PCS60"; gene_id "YBR222C"; +chrII SGD gene 668403 670320 . - . gene_id "YBR223C"; gene_biotype "protein_coding"; +chrII SGD transcript 668403 670320 . - . transcript_id "YBR223C_id001"; gene_id "YBR223C"; gene_name "TDP1"; transcript_biotype "protein_coding"; +chrII SGD exon 668403 670320 . - . transcript_id "YBR223C_id001"; gene_id "YBR223C"; gene_name "TDP1"; +chrII SGD transcript 668663 670297 . - . transcript_id "YBR223C_id003"; gene_id "YBR223C"; gene_name "TDP1"; transcript_biotype "protein_coding"; +chrII SGD exon 668663 670297 . - 0 transcript_id "YBR223C_id003"; gene_name "TDP1"; gene_id "YBR223C"; +chrII SGD gene 668721 668840 . + . gene_id "YBR223W-A"; gene_biotype "protein_coding"; +chrII SGD transcript 668721 668840 . + . transcript_id "YBR223W-A_mRNA"; gene_id "YBR223W-A"; transcript_biotype "protein_coding"; +chrII SGD CDS 668721 668840 . + 0 transcript_id "YBR223W-A_mRNA"; gene_id "YBR223W-A"; +chrII SGD gene 670125 670640 . + . gene_id "YBR224W"; gene_biotype "protein_coding"; +chrII SGD transcript 670125 670640 . + . transcript_id "YBR224W_mRNA"; gene_id "YBR224W"; transcript_biotype "protein_coding"; +chrII SGD CDS 670125 670640 . + 0 transcript_id "YBR224W_mRNA"; gene_id "YBR224W"; +chrII SGD gene 670627 673329 . + . gene_id "YBR225W"; gene_biotype "protein_coding"; +chrII SGD transcript 670627 673329 . + . transcript_id "YBR225W_mRNA"; gene_id "YBR225W"; transcript_biotype "protein_coding"; +chrII SGD CDS 670627 673329 . + 0 transcript_id "YBR225W_mRNA"; gene_id "YBR225W"; +chrII SGD gene 673155 673565 . - . gene_id "YBR226C"; gene_biotype "protein_coding"; +chrII SGD transcript 673155 673565 . - . transcript_id "YBR226C_mRNA"; gene_id "YBR226C"; transcript_biotype "protein_coding"; +chrII SGD CDS 673155 673565 . - 0 transcript_id "YBR226C_mRNA"; gene_id "YBR226C"; +chrII SGD gene 673572 675134 . - . gene_id "YBR227C"; gene_biotype "protein_coding"; +chrII SGD transcript 673572 675134 . - . transcript_id "YBR227C_id001"; gene_id "YBR227C"; gene_name "MCX1"; transcript_biotype "protein_coding"; +chrII SGD exon 673572 675134 . - 0 transcript_id "YBR227C_id001"; gene_name "MCX1"; gene_id "YBR227C"; +chrII SGD gene 675313 676380 . + . gene_id "YBR228W"; gene_biotype "protein_coding"; +chrII SGD transcript 675313 676227 . + . transcript_id "YBR228W_id001"; gene_id "YBR228W"; gene_name "SLX1"; transcript_biotype "protein_coding"; +chrII SGD exon 675313 676227 . + 0 transcript_id "YBR228W_id001"; gene_name "SLX1"; gene_id "YBR228W"; +chrII SGD transcript 675313 676380 . + . transcript_id "YBR228W_id004"; gene_id "YBR228W"; gene_name "SLX1"; transcript_biotype "protein_coding"; +chrII SGD exon 675313 676380 . + . transcript_id "YBR228W_id004"; gene_id "YBR228W"; gene_name "SLX1"; +chrII SGD gene 676226 679250 . - . gene_id "YBR229C"; gene_biotype "protein_coding"; +chrII SGD transcript 676226 679250 . - . transcript_id "YBR229C_id001"; gene_id "YBR229C"; gene_name "ROT2"; transcript_biotype "protein_coding"; +chrII SGD exon 676226 679250 . - . transcript_id "YBR229C_id001"; gene_id "YBR229C"; gene_name "ROT2"; +chrII SGD transcript 676357 679221 . - . transcript_id "YBR229C_id003"; gene_id "YBR229C"; gene_name "ROT2"; transcript_biotype "protein_coding"; +chrII SGD exon 676357 679221 . - 0 transcript_id "YBR229C_id003"; gene_name "ROT2"; gene_id "YBR229C"; +chrII SGD gene 679514 680271 . - . gene_id "YBR230C"; gene_biotype "protein_coding"; +chrII SGD transcript 679514 680271 . - . transcript_id "YBR230C_id003"; gene_id "YBR230C"; gene_name "OM14"; transcript_biotype "protein_coding"; +chrII SGD exon 679514 680271 . - . transcript_id "YBR230C_id003"; gene_id "YBR230C"; gene_name "OM14"; +chrII SGD transcript 679549 680050 . - . transcript_id "YBR230C_id001"; gene_id "YBR230C"; gene_name "OM14"; transcript_biotype "protein_coding"; +chrII SGD exon 679549 679942 . - 1 transcript_id "YBR230C_id001"; gene_name "OM14"; gene_id "YBR230C"; +chrII SGD exon 680040 680050 . - 0 transcript_id "YBR230C_id001"; gene_name "OM14"; gene_id "YBR230C"; +chrII SGD gene 679951 680694 . + . gene_id "YBR230W-A"; gene_biotype "protein_coding"; +chrII SGD transcript 679951 680694 . + . transcript_id "YBR230W-A_id002"; gene_id "YBR230W-A"; gene_name "COQ21"; transcript_biotype "protein_coding"; +chrII SGD exon 679951 680694 . + . transcript_id "YBR230W-A_id002"; gene_id "YBR230W-A"; gene_name "COQ21"; +chrII SGD transcript 680362 680562 . + . transcript_id "YBR230W-A_id001"; gene_id "YBR230W-A"; gene_name "COQ21"; transcript_biotype "protein_coding"; +chrII SGD exon 680362 680562 . + 0 transcript_id "YBR230W-A_id001"; gene_name "COQ21"; gene_id "YBR230W-A"; +chrII SGD gene 680688 681862 . - . gene_id "YNCB0019C"; gene_biotype "ncRNA"; +chrII SGD transcript 680688 681862 . - . transcript_id "YNCB0019C_snRNA"; gene_id "YNCB0019C"; gene_name "LSR1"; transcript_biotype "ncRNA"; +chrII SGD exon 680688 681862 . - . transcript_id "YNCB0019C_snRNA"; gene_name "LSR1"; gene_id "YNCB0019C"; +chrII SGD gene 681897 683145 . - . gene_id "YBR231C"; gene_biotype "protein_coding"; +chrII SGD transcript 681897 683145 . - . transcript_id "YBR231C_id001"; gene_id "YBR231C"; gene_name "SWC5"; transcript_biotype "protein_coding"; +chrII SGD exon 681897 683145 . - . transcript_id "YBR231C_id001"; gene_id "YBR231C"; gene_name "SWC5"; +chrII SGD transcript 682179 683090 . - . transcript_id "YBR231C_id002"; gene_id "YBR231C"; gene_name "SWC5"; transcript_biotype "protein_coding"; +chrII SGD exon 682179 683090 . - 0 transcript_id "YBR231C_id002"; gene_name "SWC5"; gene_id "YBR231C"; +chrII SGD gene 683285 684819 . + . gene_id "YBR233W"; gene_biotype "protein_coding"; +chrII SGD transcript 683285 684819 . + . transcript_id "YBR233W_id003"; gene_id "YBR233W"; gene_name "PBP2"; transcript_biotype "protein_coding"; +chrII SGD exon 683285 684819 . + . transcript_id "YBR233W_id003"; gene_id "YBR233W"; gene_name "PBP2"; +chrII SGD gene 683373 683732 . - . gene_id "YBR232C"; gene_biotype "protein_coding"; +chrII SGD transcript 683373 683732 . - . transcript_id "YBR232C_mRNA"; gene_id "YBR232C"; transcript_biotype "protein_coding"; +chrII SGD CDS 683373 683732 . - 0 transcript_id "YBR232C_mRNA"; gene_id "YBR232C"; +chrII SGD transcript 683428 684669 . + . transcript_id "YBR233W_id001"; gene_id "YBR233W"; gene_name "PBP2"; transcript_biotype "protein_coding"; +chrII SGD exon 683428 684669 . + 0 transcript_id "YBR233W_id001"; gene_name "PBP2"; gene_id "YBR233W"; +chrII SGD gene 684934 685613 . + . gene_id "YBR233W-A"; gene_biotype "protein_coding"; +chrII SGD transcript 684934 685613 . + . transcript_id "YBR233W-A_id002"; gene_id "YBR233W-A"; gene_name "DAD3"; transcript_biotype "protein_coding"; +chrII SGD exon 684934 685613 . + . transcript_id "YBR233W-A_id002"; gene_id "YBR233W-A"; gene_name "DAD3"; +chrII SGD transcript 684977 685261 . + . transcript_id "YBR233W-A_id001"; gene_id "YBR233W-A"; gene_name "DAD3"; transcript_biotype "protein_coding"; +chrII SGD exon 684977 685261 . + 0 transcript_id "YBR233W-A_id001"; gene_name "DAD3"; gene_id "YBR233W-A"; +chrII SGD gene 685281 686654 . - . gene_id "YBR234C"; gene_biotype "protein_coding"; +chrII SGD transcript 685281 686654 . - . transcript_id "YBR234C_id001"; gene_id "YBR234C"; gene_name "ARC40"; transcript_biotype "protein_coding"; +chrII SGD exon 685281 686654 . - . transcript_id "YBR234C_id001"; gene_id "YBR234C"; gene_name "ARC40"; +chrII SGD transcript 685438 686592 . - . transcript_id "YBR234C_id002"; gene_id "YBR234C"; gene_name "ARC40"; transcript_biotype "protein_coding"; +chrII SGD exon 685438 686592 . - 0 transcript_id "YBR234C_id002"; gene_name "ARC40"; gene_id "YBR234C"; +chrII SGD gene 686833 690334 . + . gene_id "YBR235W"; gene_biotype "protein_coding"; +chrII SGD transcript 686833 690334 . + . transcript_id "YBR235W_id003"; gene_id "YBR235W"; gene_name "VHC1"; transcript_biotype "protein_coding"; +chrII SGD exon 686833 690334 . + . transcript_id "YBR235W_id003"; gene_id "YBR235W"; gene_name "VHC1"; +chrII SGD transcript 686901 690263 . + . transcript_id "YBR235W_id001"; gene_id "YBR235W"; gene_name "VHC1"; transcript_biotype "protein_coding"; +chrII SGD exon 686901 690263 . + 0 transcript_id "YBR235W_id001"; gene_name "VHC1"; gene_id "YBR235W"; +chrII SGD gene 690158 691740 . - . gene_id "YBR236C"; gene_biotype "protein_coding"; +chrII SGD transcript 690158 691740 . - . transcript_id "YBR236C_id002"; gene_id "YBR236C"; gene_name "ABD1"; transcript_biotype "protein_coding"; +chrII SGD exon 690158 691740 . - . transcript_id "YBR236C_id002"; gene_id "YBR236C"; gene_name "ABD1"; +chrII SGD transcript 690383 691693 . - . transcript_id "YBR236C_id001"; gene_id "YBR236C"; gene_name "ABD1"; transcript_biotype "protein_coding"; +chrII SGD exon 690383 691693 . - 0 transcript_id "YBR236C_id001"; gene_name "ABD1"; gene_id "YBR236C"; +chrII SGD gene 691916 694608 . + . gene_id "YBR237W"; gene_biotype "protein_coding"; +chrII SGD transcript 691916 694608 . + . transcript_id "YBR237W_id001"; gene_id "YBR237W"; gene_name "PRP5"; transcript_biotype "protein_coding"; +chrII SGD exon 691916 694608 . + . transcript_id "YBR237W_id001"; gene_id "YBR237W"; gene_name "PRP5"; +chrII SGD transcript 691969 694518 . + . transcript_id "YBR237W_id003"; gene_id "YBR237W"; gene_name "PRP5"; transcript_biotype "protein_coding"; +chrII SGD exon 691969 694518 . + 0 transcript_id "YBR237W_id003"; gene_name "PRP5"; gene_id "YBR237W"; +chrII SGD gene 694607 697375 . - . gene_id "YBR238C"; gene_biotype "protein_coding"; +chrII SGD transcript 694607 697375 . - . transcript_id "YBR238C_id001"; gene_id "YBR238C"; transcript_biotype "protein_coding"; +chrII SGD exon 694607 697375 . - . transcript_id "YBR238C_id001"; gene_id "YBR238C"; +chrII SGD transcript 695107 697302 . - . transcript_id "YBR238C_id002"; gene_id "YBR238C"; transcript_biotype "protein_coding"; +chrII SGD exon 695107 697302 . - 0 transcript_id "YBR238C_id002"; gene_id "YBR238C"; +chrII SGD gene 698243 700105 . - . gene_id "YBR239C"; gene_biotype "protein_coding"; +chrII SGD transcript 698243 700105 . - . transcript_id "YBR239C_id001"; gene_id "YBR239C"; gene_name "ERT1"; transcript_biotype "protein_coding"; +chrII SGD exon 698243 700105 . - . transcript_id "YBR239C_id001"; gene_id "YBR239C"; gene_name "ERT1"; +chrII SGD transcript 698354 699943 . - . transcript_id "YBR239C_id002"; gene_id "YBR239C"; gene_name "ERT1"; transcript_biotype "protein_coding"; +chrII SGD exon 698354 699943 . - 0 transcript_id "YBR239C_id002"; gene_name "ERT1"; gene_id "YBR239C"; +chrII SGD gene 700490 701842 . - . gene_id "YBR240C"; gene_biotype "protein_coding"; +chrII SGD transcript 700490 701842 . - . transcript_id "YBR240C_mRNA"; gene_id "YBR240C"; gene_name "THI2"; transcript_biotype "protein_coding"; +chrII SGD CDS 700490 701842 . - 0 transcript_id "YBR240C_mRNA"; gene_name "THI2"; gene_id "YBR240C"; +chrII SGD gene 702432 704174 . - . gene_id "YBR241C"; gene_biotype "protein_coding"; +chrII SGD transcript 702432 704174 . - . transcript_id "YBR241C_id001"; gene_id "YBR241C"; gene_name "VVS1"; transcript_biotype "protein_coding"; +chrII SGD exon 702432 704174 . - . transcript_id "YBR241C_id001"; gene_id "YBR241C"; gene_name "VVS1"; +chrII SGD transcript 702589 704055 . - . transcript_id "YBR241C_id002"; gene_id "YBR241C"; gene_name "VVS1"; transcript_biotype "protein_coding"; +chrII SGD exon 702589 704055 . - 0 transcript_id "YBR241C_id002"; gene_name "VVS1"; gene_id "YBR241C"; +chrII SGD gene 704521 705647 . + . gene_id "YBR242W"; gene_biotype "protein_coding"; +chrII SGD transcript 704521 705647 . + . transcript_id "YBR242W_id002"; gene_id "YBR242W"; transcript_biotype "protein_coding"; +chrII SGD exon 704521 705647 . + . transcript_id "YBR242W_id002"; gene_id "YBR242W"; +chrII SGD transcript 704670 705386 . + . transcript_id "YBR242W_id001"; gene_id "YBR242W"; transcript_biotype "protein_coding"; +chrII SGD exon 704670 705386 . + 0 transcript_id "YBR242W_id001"; gene_id "YBR242W"; +chrII SGD gene 704854 706846 . - . gene_id "YBR243C"; gene_biotype "protein_coding"; +chrII SGD transcript 704854 706846 . - . transcript_id "YBR243C_id001"; gene_id "YBR243C"; gene_name "ALG7"; transcript_biotype "protein_coding"; +chrII SGD exon 704854 706846 . - . transcript_id "YBR243C_id001"; gene_id "YBR243C"; gene_name "ALG7"; +chrII SGD transcript 705447 706793 . - . transcript_id "YBR243C_id002"; gene_id "YBR243C"; gene_name "ALG7"; transcript_biotype "protein_coding"; +chrII SGD exon 705447 706793 . - 0 transcript_id "YBR243C_id002"; gene_name "ALG7"; gene_id "YBR243C"; +chrII SGD gene 706948 708102 . + . gene_id "YBR244W"; gene_biotype "protein_coding"; +chrII SGD transcript 706948 708102 . + . transcript_id "YBR244W_id003"; gene_id "YBR244W"; gene_name "GPX2"; transcript_biotype "protein_coding"; +chrII SGD exon 706948 708102 . + . transcript_id "YBR244W_id003"; gene_id "YBR244W"; gene_name "GPX2"; +chrII SGD transcript 707528 708016 . + . transcript_id "YBR244W_id001"; gene_id "YBR244W"; gene_name "GPX2"; transcript_biotype "protein_coding"; +chrII SGD exon 707528 708016 . + 0 transcript_id "YBR244W_id001"; gene_name "GPX2"; gene_id "YBR244W"; +chrII SGD gene 708150 711539 . - . gene_id "YBR245C"; gene_biotype "protein_coding"; +chrII SGD transcript 708150 711539 . - . transcript_id "YBR245C_mRNA"; gene_id "YBR245C"; gene_name "ISW1"; transcript_biotype "protein_coding"; +chrII SGD CDS 708150 711539 . - 0 transcript_id "YBR245C_mRNA"; gene_name "ISW1"; gene_id "YBR245C"; +chrII SGD gene 711533 712897 . + . gene_id "YBR246W"; gene_biotype "protein_coding"; +chrII SGD transcript 711533 712897 . + . transcript_id "YBR246W_id001"; gene_id "YBR246W"; gene_name "RRT2"; transcript_biotype "protein_coding"; +chrII SGD exon 711533 712897 . + . transcript_id "YBR246W_id001"; gene_id "YBR246W"; gene_name "RRT2"; +chrII SGD transcript 711591 712754 . + . transcript_id "YBR246W_id002"; gene_id "YBR246W"; gene_name "RRT2"; transcript_biotype "protein_coding"; +chrII SGD exon 711591 712754 . + 0 transcript_id "YBR246W_id002"; gene_name "RRT2"; gene_id "YBR246W"; +chrII SGD gene 712724 714488 . - . gene_id "YBR247C"; gene_biotype "protein_coding"; +chrII SGD transcript 712724 714488 . - . transcript_id "YBR247C_id005"; gene_id "YBR247C"; gene_name "ENP1"; transcript_biotype "protein_coding"; +chrII SGD exon 712724 714488 . - . transcript_id "YBR247C_id005"; gene_id "YBR247C"; gene_name "ENP1"; +chrII SGD transcript 713004 714455 . - . transcript_id "YBR247C_id001"; gene_id "YBR247C"; gene_name "ENP1"; transcript_biotype "protein_coding"; +chrII SGD exon 713004 714455 . - 0 transcript_id "YBR247C_id001"; gene_name "ENP1"; gene_id "YBR247C"; +chrII SGD gene 714623 716570 . - . gene_id "YBR248C"; gene_biotype "protein_coding"; +chrII SGD transcript 714623 716570 . - . transcript_id "YBR248C_id001"; gene_id "YBR248C"; gene_name "HIS7"; transcript_biotype "protein_coding"; +chrII SGD exon 714623 716570 . - . transcript_id "YBR248C_id001"; gene_id "YBR248C"; gene_name "HIS7"; +chrII SGD transcript 714807 716465 . - . transcript_id "YBR248C_id002"; gene_id "YBR248C"; gene_name "HIS7"; transcript_biotype "protein_coding"; +chrII SGD exon 714807 716465 . - 0 transcript_id "YBR248C_id002"; gene_name "HIS7"; gene_id "YBR248C"; +chrII SGD gene 716597 718107 . - . gene_id "YBR249C"; gene_biotype "protein_coding"; +chrII SGD transcript 716597 718107 . - . transcript_id "YBR249C_id001"; gene_id "YBR249C"; gene_name "ARO4"; transcript_biotype "protein_coding"; +chrII SGD exon 716597 718107 . - . transcript_id "YBR249C_id001"; gene_id "YBR249C"; gene_name "ARO4"; +chrII SGD transcript 716882 717994 . - . transcript_id "YBR249C_id004"; gene_id "YBR249C"; gene_name "ARO4"; transcript_biotype "protein_coding"; +chrII SGD exon 716882 717994 . - 0 transcript_id "YBR249C_id004"; gene_name "ARO4"; gene_id "YBR249C"; +chrII SGD gene 719033 720604 . + . gene_id "YBR250W"; gene_biotype "protein_coding"; +chrII SGD transcript 719033 720604 . + . transcript_id "YBR250W_mRNA"; gene_id "YBR250W"; gene_name "SPO23"; transcript_biotype "protein_coding"; +chrII SGD CDS 719033 720604 . + 0 transcript_id "YBR250W_mRNA"; gene_name "SPO23"; gene_id "YBR250W"; +chrII SGD gene 721310 722462 . + . gene_id "YBR251W"; gene_biotype "protein_coding"; +chrII SGD transcript 721310 722462 . + . transcript_id "YBR251W_id001"; gene_id "YBR251W"; gene_name "MRPS5"; transcript_biotype "protein_coding"; +chrII SGD exon 721310 722462 . + . transcript_id "YBR251W_id001"; gene_id "YBR251W"; gene_name "MRPS5"; +chrII SGD transcript 721390 722313 . + . transcript_id "YBR251W_id002"; gene_id "YBR251W"; gene_name "MRPS5"; transcript_biotype "protein_coding"; +chrII SGD exon 721390 722313 . + 0 transcript_id "YBR251W_id002"; gene_name "MRPS5"; gene_id "YBR251W"; +chrII SGD gene 722593 723353 . + . gene_id "YBR252W"; gene_biotype "protein_coding"; +chrII SGD transcript 722593 723353 . + . transcript_id "YBR252W_id001"; gene_id "YBR252W"; gene_name "DUT1"; transcript_biotype "protein_coding"; +chrII SGD exon 722593 723353 . + . transcript_id "YBR252W_id001"; gene_id "YBR252W"; gene_name "DUT1"; +chrII SGD transcript 722611 723054 . + . transcript_id "YBR252W_id002"; gene_id "YBR252W"; gene_name "DUT1"; transcript_biotype "protein_coding"; +chrII SGD exon 722611 723054 . + 0 transcript_id "YBR252W_id002"; gene_name "DUT1"; gene_id "YBR252W"; +chrII SGD gene 723200 723734 . + . gene_id "YBR253W"; gene_biotype "protein_coding"; +chrII SGD transcript 723200 723734 . + . transcript_id "YBR253W_id006"; gene_id "YBR253W"; gene_name "SRB6"; transcript_biotype "protein_coding"; +chrII SGD exon 723200 723734 . + . transcript_id "YBR253W_id006"; gene_id "YBR253W"; gene_name "SRB6"; +chrII SGD transcript 723270 723635 . + . transcript_id "YBR253W_id001"; gene_id "YBR253W"; gene_name "SRB6"; transcript_biotype "protein_coding"; +chrII SGD exon 723270 723635 . + 0 transcript_id "YBR253W_id001"; gene_name "SRB6"; gene_id "YBR253W"; +chrII SGD gene 723541 724276 . - . gene_id "YBR254C"; gene_biotype "protein_coding"; +chrII SGD transcript 723541 724276 . - . transcript_id "YBR254C_id001"; gene_id "YBR254C"; gene_name "TRS20"; transcript_biotype "protein_coding"; +chrII SGD exon 723541 724276 . - . transcript_id "YBR254C_id001"; gene_id "YBR254C"; gene_name "TRS20"; +chrII SGD transcript 723736 724263 . - . transcript_id "YBR254C_id008"; gene_id "YBR254C"; gene_name "TRS20"; transcript_biotype "protein_coding"; +chrII SGD exon 723736 724263 . - 0 transcript_id "YBR254C_id008"; gene_name "TRS20"; gene_id "YBR254C"; +chrII SGD gene 724420 726687 . + . gene_id "YBR255W"; gene_biotype "protein_coding"; +chrII SGD transcript 724420 726687 . + . transcript_id "YBR255W_id004"; gene_id "YBR255W"; gene_name "MTC4"; transcript_biotype "protein_coding"; +chrII SGD exon 724420 726687 . + . transcript_id "YBR255W_id004"; gene_id "YBR255W"; gene_name "MTC4"; +chrII SGD transcript 724456 726540 . + . transcript_id "YBR255W_id001"; gene_id "YBR255W"; gene_name "MTC4"; transcript_biotype "protein_coding"; +chrII SGD exon 724456 726540 . + 0 transcript_id "YBR255W_id001"; gene_name "MTC4"; gene_id "YBR255W"; +chrII SGD gene 726484 727134 . - . gene_id "YBR255C-A"; gene_biotype "protein_coding"; +chrII SGD transcript 726484 727134 . - . transcript_id "YBR255C-A_id004"; gene_id "YBR255C-A"; gene_name "RCF3"; transcript_biotype "protein_coding"; +chrII SGD exon 726484 727134 . - . transcript_id "YBR255C-A_id004"; gene_id "YBR255C-A"; gene_name "RCF3"; +chrII SGD transcript 726618 727074 . - . transcript_id "YBR255C-A_id001"; gene_id "YBR255C-A"; gene_name "RCF3"; transcript_biotype "protein_coding"; +chrII SGD exon 726618 726917 . - 0 transcript_id "YBR255C-A_id001"; gene_name "RCF3"; gene_id "YBR255C-A"; +chrII SGD exon 727012 727074 . - 0 transcript_id "YBR255C-A_id001"; gene_name "RCF3"; gene_id "YBR255C-A"; +chrII SGD gene 726918 728114 . - . gene_id "YBR256C"; gene_biotype "protein_coding"; +chrII SGD transcript 726918 728114 . - . transcript_id "YBR256C_id001"; gene_id "YBR256C"; gene_name "RIB5"; transcript_biotype "protein_coding"; +chrII SGD exon 726918 728114 . - . transcript_id "YBR256C_id001"; gene_id "YBR256C"; gene_name "RIB5"; +chrII SGD transcript 727386 728102 . - . transcript_id "YBR256C_id002"; gene_id "YBR256C"; gene_name "RIB5"; transcript_biotype "protein_coding"; +chrII SGD exon 727386 728102 . - 0 transcript_id "YBR256C_id002"; gene_name "RIB5"; gene_id "YBR256C"; +chrII SGD gene 728582 729870 . + . gene_id "YBR257W"; gene_biotype "protein_coding"; +chrII SGD transcript 728582 729870 . + . transcript_id "YBR257W_id003"; gene_id "YBR257W"; gene_name "POP4"; transcript_biotype "protein_coding"; +chrII SGD exon 728582 729870 . + . transcript_id "YBR257W_id003"; gene_id "YBR257W"; gene_name "POP4"; +chrII SGD transcript 728885 729724 . + . transcript_id "YBR257W_id001"; gene_id "YBR257W"; gene_name "POP4"; transcript_biotype "protein_coding"; +chrII SGD exon 728885 729724 . + 0 transcript_id "YBR257W_id001"; gene_name "POP4"; gene_id "YBR257W"; +chrII SGD gene 729734 730162 . - . gene_id "YBR258C"; gene_biotype "protein_coding"; +chrII SGD transcript 729734 730162 . - . transcript_id "YBR258C_id001"; gene_id "YBR258C"; gene_name "SHG1"; transcript_biotype "protein_coding"; +chrII SGD exon 729734 730162 . - 0 transcript_id "YBR258C_id001"; gene_name "SHG1"; gene_id "YBR258C"; +chrII SGD gene 730327 732588 . + . gene_id "YBR259W"; gene_biotype "protein_coding"; +chrII SGD transcript 730327 732588 . + . transcript_id "YBR259W_id002"; gene_id "YBR259W"; transcript_biotype "protein_coding"; +chrII SGD exon 730327 732588 . + . transcript_id "YBR259W_id002"; gene_id "YBR259W"; +chrII SGD transcript 730387 732453 . + . transcript_id "YBR259W_id001"; gene_id "YBR259W"; transcript_biotype "protein_coding"; +chrII SGD exon 730387 732453 . + 0 transcript_id "YBR259W_id001"; gene_id "YBR259W"; +chrII SGD gene 732507 734680 . - . gene_id "YBR260C"; gene_biotype "protein_coding"; +chrII SGD transcript 732507 734680 . - . transcript_id "YBR260C_id003"; gene_id "YBR260C"; gene_name "RGD1"; transcript_biotype "protein_coding"; +chrII SGD exon 732507 734680 . - . transcript_id "YBR260C_id003"; gene_id "YBR260C"; gene_name "RGD1"; +chrII SGD transcript 732639 734639 . - . transcript_id "YBR260C_id001"; gene_id "YBR260C"; gene_name "RGD1"; transcript_biotype "protein_coding"; +chrII SGD exon 732639 734639 . - 0 transcript_id "YBR260C_id001"; gene_name "RGD1"; gene_id "YBR260C"; +chrII SGD gene 734651 735567 . - . gene_id "YBR261C"; gene_biotype "protein_coding"; +chrII SGD transcript 734651 735567 . - . transcript_id "YBR261C_id002"; gene_id "YBR261C"; gene_name "TAE1"; transcript_biotype "protein_coding"; +chrII SGD exon 734651 735567 . - . transcript_id "YBR261C_id002"; gene_id "YBR261C"; gene_name "TAE1"; +chrII SGD transcript 734832 735530 . - . transcript_id "YBR261C_id001"; gene_id "YBR261C"; gene_name "TAE1"; transcript_biotype "protein_coding"; +chrII SGD exon 734832 735530 . - 0 transcript_id "YBR261C_id001"; gene_name "TAE1"; gene_id "YBR261C"; +chrII SGD gene 735592 736084 . - . gene_id "YBR262C"; gene_biotype "protein_coding"; +chrII SGD transcript 735592 736084 . - . transcript_id "YBR262C_id003"; gene_id "YBR262C"; gene_name "MIC12"; transcript_biotype "protein_coding"; +chrII SGD exon 735592 736084 . - . transcript_id "YBR262C_id003"; gene_id "YBR262C"; gene_name "MIC12"; +chrII SGD transcript 735720 736040 . - . transcript_id "YBR262C_id001"; gene_id "YBR262C"; gene_name "MIC12"; transcript_biotype "protein_coding"; +chrII SGD exon 735720 736040 . - 0 transcript_id "YBR262C_id001"; gene_name "MIC12"; gene_id "YBR262C"; +chrII SGD gene 736224 737919 . + . gene_id "YBR263W"; gene_biotype "protein_coding"; +chrII SGD transcript 736224 737919 . + . transcript_id "YBR263W_id001"; gene_id "YBR263W"; gene_name "SHM1"; transcript_biotype "protein_coding"; +chrII SGD exon 736224 737919 . + . transcript_id "YBR263W_id001"; gene_id "YBR263W"; gene_name "SHM1"; +chrII SGD transcript 736264 737736 . + . transcript_id "YBR263W_id002"; gene_id "YBR263W"; gene_name "SHM1"; transcript_biotype "protein_coding"; +chrII SGD exon 736264 737736 . + 0 transcript_id "YBR263W_id002"; gene_name "SHM1"; gene_id "YBR263W"; +chrII SGD gene 737728 738811 . - . gene_id "YBR264C"; gene_biotype "protein_coding"; +chrII SGD transcript 737728 738811 . - . transcript_id "YBR264C_id001"; gene_id "YBR264C"; gene_name "YPT10"; transcript_biotype "protein_coding"; +chrII SGD exon 737728 738811 . - . transcript_id "YBR264C_id001"; gene_id "YBR264C"; gene_name "YPT10"; +chrII SGD transcript 737770 738369 . - . transcript_id "YBR264C_id002"; gene_id "YBR264C"; gene_name "YPT10"; transcript_biotype "protein_coding"; +chrII SGD exon 737770 738369 . - 0 transcript_id "YBR264C_id002"; gene_name "YPT10"; gene_id "YBR264C"; +chrII SGD gene 738110 739677 . + . gene_id "YBR265W"; gene_biotype "protein_coding"; +chrII SGD transcript 738110 739677 . + . transcript_id "YBR265W_id001"; gene_id "YBR265W"; gene_name "TSC10"; transcript_biotype "protein_coding"; +chrII SGD exon 738110 739677 . + . transcript_id "YBR265W_id001"; gene_id "YBR265W"; gene_name "TSC10"; +chrII SGD transcript 738582 739544 . + . transcript_id "YBR265W_id002"; gene_id "YBR265W"; gene_name "TSC10"; transcript_biotype "protein_coding"; +chrII SGD exon 738582 739544 . + 0 transcript_id "YBR265W_id002"; gene_name "TSC10"; gene_id "YBR265W"; +chrII SGD gene 739674 741142 . + . gene_id "YBR267W"; gene_biotype "protein_coding"; +chrII SGD transcript 739674 741142 . + . transcript_id "YBR267W_id001"; gene_id "YBR267W"; gene_name "REI1"; transcript_biotype "protein_coding"; +chrII SGD exon 739674 741142 . + . transcript_id "YBR267W_id001"; gene_id "YBR267W"; gene_name "REI1"; +chrII SGD transcript 739841 741022 . + . transcript_id "YBR267W_id003"; gene_id "YBR267W"; gene_name "REI1"; transcript_biotype "protein_coding"; +chrII SGD exon 739841 741022 . + 0 transcript_id "YBR267W_id003"; gene_name "REI1"; gene_id "YBR267W"; +chrII SGD gene 739936 740388 . - . gene_id "YBR266C"; gene_biotype "protein_coding"; +chrII SGD transcript 739936 740388 . - . transcript_id "YBR266C_mRNA"; gene_id "YBR266C"; gene_name "SLM6"; transcript_biotype "protein_coding"; +chrII SGD CDS 739936 740388 . - 0 transcript_id "YBR266C_mRNA"; gene_name "SLM6"; gene_id "YBR266C"; +chrII SGD gene 741269 741807 . + . gene_id "YBR268W"; gene_biotype "protein_coding"; +chrII SGD transcript 741269 741807 . + . transcript_id "YBR268W_id004"; gene_id "YBR268W"; gene_name "MRPL37"; transcript_biotype "protein_coding"; +chrII SGD exon 741269 741807 . + . transcript_id "YBR268W_id004"; gene_id "YBR268W"; gene_name "MRPL37"; +chrII SGD transcript 741299 741616 . + . transcript_id "YBR268W_id001"; gene_id "YBR268W"; gene_name "MRPL37"; transcript_biotype "protein_coding"; +chrII SGD exon 741299 741616 . + 0 transcript_id "YBR268W_id001"; gene_name "MRPL37"; gene_id "YBR268W"; +chrII SGD gene 741884 742647 . - . gene_id "YBR269C"; gene_biotype "protein_coding"; +chrII SGD transcript 741884 742647 . - . transcript_id "YBR269C_id002"; gene_id "YBR269C"; gene_name "SDH8"; transcript_biotype "protein_coding"; +chrII SGD exon 741884 742647 . - . transcript_id "YBR269C_id002"; gene_id "YBR269C"; gene_name "SDH8"; +chrII SGD transcript 742160 742576 . - . transcript_id "YBR269C_id001"; gene_id "YBR269C"; gene_name "SDH8"; transcript_biotype "protein_coding"; +chrII SGD exon 742160 742576 . - 0 transcript_id "YBR269C_id001"; gene_name "SDH8"; gene_id "YBR269C"; +chrII SGD gene 742761 744398 . - . gene_id "YBR270C"; gene_biotype "protein_coding"; +chrII SGD transcript 742761 744398 . - . transcript_id "YBR270C_id001"; gene_id "YBR270C"; gene_name "BIT2"; transcript_biotype "protein_coding"; +chrII SGD exon 742761 744398 . - 0 transcript_id "YBR270C_id001"; gene_name "BIT2"; gene_id "YBR270C"; +chrII SGD gene 744594 746204 . + . gene_id "YBR271W"; gene_biotype "protein_coding"; +chrII SGD transcript 744594 746204 . + . transcript_id "YBR271W_id002"; gene_id "YBR271W"; gene_name "EFM2"; transcript_biotype "protein_coding"; +chrII SGD exon 744594 746204 . + . transcript_id "YBR271W_id002"; gene_id "YBR271W"; gene_name "EFM2"; +chrII SGD transcript 744852 746111 . + . transcript_id "YBR271W_id001"; gene_id "YBR271W"; gene_name "EFM2"; transcript_biotype "protein_coding"; +chrII SGD exon 744852 746111 . + 0 transcript_id "YBR271W_id001"; gene_name "EFM2"; gene_id "YBR271W"; +chrII SGD gene 746115 747833 . - . gene_id "YBR272C"; gene_biotype "protein_coding"; +chrII SGD transcript 746115 747833 . - . transcript_id "YBR272C_id001"; gene_id "YBR272C"; gene_name "HSM3"; transcript_biotype "protein_coding"; +chrII SGD exon 746115 747833 . - . transcript_id "YBR272C_id001"; gene_id "YBR272C"; gene_name "HSM3"; +chrII SGD transcript 746361 747803 . - . transcript_id "YBR272C_id002"; gene_id "YBR272C"; gene_name "HSM3"; transcript_biotype "protein_coding"; +chrII SGD exon 746361 747803 . - 0 transcript_id "YBR272C_id002"; gene_name "HSM3"; gene_id "YBR272C"; +chrII SGD gene 747952 749402 . - . gene_id "YBR273C"; gene_biotype "protein_coding"; +chrII SGD transcript 747952 749402 . - . transcript_id "YBR273C_id003"; gene_id "YBR273C"; gene_name "UBX7"; transcript_biotype "protein_coding"; +chrII SGD exon 747952 749402 . - . transcript_id "YBR273C_id003"; gene_id "YBR273C"; gene_name "UBX7"; +chrII SGD transcript 748061 749371 . - . transcript_id "YBR273C_id001"; gene_id "YBR273C"; gene_name "UBX7"; transcript_biotype "protein_coding"; +chrII SGD exon 748061 749371 . - 0 transcript_id "YBR273C_id001"; gene_name "UBX7"; gene_id "YBR273C"; +chrII SGD gene 749554 751425 . + . gene_id "YBR274W"; gene_biotype "protein_coding"; +chrII SGD transcript 749554 751425 . + . transcript_id "YBR274W_id001"; gene_id "YBR274W"; gene_name "CHK1"; transcript_biotype "protein_coding"; +chrII SGD exon 749554 751425 . + . transcript_id "YBR274W_id001"; gene_id "YBR274W"; gene_name "CHK1"; +chrII SGD transcript 749594 751177 . + . transcript_id "YBR274W_id002"; gene_id "YBR274W"; gene_name "CHK1"; transcript_biotype "protein_coding"; +chrII SGD exon 749594 751177 . + 0 transcript_id "YBR274W_id002"; gene_name "CHK1"; gene_id "YBR274W"; +chrII SGD gene 751356 757106 . - . gene_id "YBR275C"; gene_biotype "protein_coding"; +chrII SGD transcript 751356 757106 . - . transcript_id "YBR275C_mRNA"; gene_id "YBR275C"; gene_name "RIF1"; transcript_biotype "protein_coding"; +chrII SGD CDS 751356 757106 . - 0 transcript_id "YBR275C_mRNA"; gene_name "RIF1"; gene_id "YBR275C"; +chrII SGD gene 757531 760169 . - . gene_id "YBR276C"; gene_biotype "protein_coding"; +chrII SGD transcript 757531 760169 . - . transcript_id "YBR276C_id001"; gene_id "YBR276C"; gene_name "PPS1"; transcript_biotype "protein_coding"; +chrII SGD exon 757531 760169 . - . transcript_id "YBR276C_id001"; gene_id "YBR276C"; gene_name "PPS1"; +chrII SGD transcript 757620 760043 . - . transcript_id "YBR276C_id002"; gene_id "YBR276C"; gene_name "PPS1"; transcript_biotype "protein_coding"; +chrII SGD exon 757620 760043 . - 0 transcript_id "YBR276C_id002"; gene_name "PPS1"; gene_id "YBR276C"; +chrII SGD gene 760215 760616 . - . gene_id "YBR277C"; gene_biotype "protein_coding"; +chrII SGD transcript 760215 760616 . - . transcript_id "YBR277C_mRNA"; gene_id "YBR277C"; transcript_biotype "protein_coding"; +chrII SGD CDS 760215 760616 . - 0 transcript_id "YBR277C_mRNA"; gene_id "YBR277C"; +chrII SGD gene 760269 761096 . + . gene_id "YBR278W"; gene_biotype "protein_coding"; +chrII SGD transcript 760269 761096 . + . transcript_id "YBR278W_id007"; gene_id "YBR278W"; gene_name "DPB3"; transcript_biotype "protein_coding"; +chrII SGD exon 760269 761096 . + . transcript_id "YBR278W_id007"; gene_id "YBR278W"; gene_name "DPB3"; +chrII SGD transcript 760294 760899 . + . transcript_id "YBR278W_id001"; gene_id "YBR278W"; gene_name "DPB3"; transcript_biotype "protein_coding"; +chrII SGD exon 760294 760899 . + 0 transcript_id "YBR278W_id001"; gene_name "DPB3"; gene_id "YBR278W"; +chrII SGD gene 761216 762752 . + . gene_id "YBR279W"; gene_biotype "protein_coding"; +chrII SGD transcript 761216 762752 . + . transcript_id "YBR279W_id006"; gene_id "YBR279W"; gene_name "PAF1"; transcript_biotype "protein_coding"; +chrII SGD exon 761216 762752 . + . transcript_id "YBR279W_id006"; gene_id "YBR279W"; gene_name "PAF1"; +chrII SGD transcript 761257 762594 . + . transcript_id "YBR279W_id001"; gene_id "YBR279W"; gene_name "PAF1"; transcript_biotype "protein_coding"; +chrII SGD exon 761257 762594 . + 0 transcript_id "YBR279W_id001"; gene_name "PAF1"; gene_id "YBR279W"; +chrII SGD gene 762601 764700 . - . gene_id "YBR280C"; gene_biotype "protein_coding"; +chrII SGD transcript 762601 764700 . - . transcript_id "YBR280C_id005"; gene_id "YBR280C"; gene_name "SAF1"; transcript_biotype "protein_coding"; +chrII SGD exon 762601 764700 . - . transcript_id "YBR280C_id005"; gene_id "YBR280C"; gene_name "SAF1"; +chrII SGD transcript 762784 764697 . - . transcript_id "YBR280C_id001"; gene_id "YBR280C"; gene_name "SAF1"; transcript_biotype "protein_coding"; +chrII SGD exon 762784 764697 . - 0 transcript_id "YBR280C_id001"; gene_name "SAF1"; gene_id "YBR280C"; +chrII SGD gene 764840 767624 . - . gene_id "YBR281C"; gene_biotype "protein_coding"; +chrII SGD transcript 764840 767624 . - . transcript_id "YBR281C_id001"; gene_id "YBR281C"; gene_name "DUG2"; transcript_biotype "protein_coding"; +chrII SGD exon 764840 767624 . - . transcript_id "YBR281C_id001"; gene_id "YBR281C"; gene_name "DUG2"; +chrII SGD transcript 764970 767606 . - . transcript_id "YBR281C_id002"; gene_id "YBR281C"; gene_name "DUG2"; transcript_biotype "protein_coding"; +chrII SGD exon 764970 767606 . - 0 transcript_id "YBR281C_id002"; gene_name "DUG2"; gene_id "YBR281C"; +chrII SGD gene 767437 768763 . + . gene_id "YBR282W"; gene_biotype "protein_coding"; +chrII SGD transcript 767437 768763 . + . transcript_id "YBR282W_id002"; gene_id "YBR282W"; gene_name "MRPL27"; transcript_biotype "protein_coding"; +chrII SGD exon 767437 768763 . + . transcript_id "YBR282W_id002"; gene_id "YBR282W"; gene_name "MRPL27"; +chrII SGD transcript 768240 768680 . + . transcript_id "YBR282W_id001"; gene_id "YBR282W"; gene_name "MRPL27"; transcript_biotype "protein_coding"; +chrII SGD exon 768240 768680 . + 0 transcript_id "YBR282W_id001"; gene_name "MRPL27"; gene_id "YBR282W"; +chrII SGD gene 768700 770605 . - . gene_id "YBR283C"; gene_biotype "protein_coding"; +chrII SGD transcript 768700 770605 . - . transcript_id "YBR283C_id002"; gene_id "YBR283C"; gene_name "SSH1"; transcript_biotype "protein_coding"; +chrII SGD exon 768700 770605 . - . transcript_id "YBR283C_id002"; gene_id "YBR283C"; gene_name "SSH1"; +chrII SGD transcript 768943 770415 . - . transcript_id "YBR283C_id001"; gene_id "YBR283C"; gene_name "SSH1"; transcript_biotype "protein_coding"; +chrII SGD exon 768943 770415 . - 0 transcript_id "YBR283C_id001"; gene_name "SSH1"; gene_id "YBR283C"; +chrII SGD gene 771239 773632 . + . gene_id "YBR284W"; gene_biotype "protein_coding"; +chrII SGD transcript 771239 773632 . + . transcript_id "YBR284W_mRNA"; gene_id "YBR284W"; transcript_biotype "protein_coding"; +chrII SGD CDS 771239 773632 . + 0 transcript_id "YBR284W_mRNA"; gene_id "YBR284W"; +chrII SGD gene 773771 774498 . + . gene_id "YBR285W"; gene_biotype "protein_coding"; +chrII SGD transcript 773771 774498 . + . transcript_id "YBR285W_id004"; gene_id "YBR285W"; transcript_biotype "protein_coding"; +chrII SGD exon 773771 774498 . + . transcript_id "YBR285W_id004"; gene_id "YBR285W"; +chrII SGD transcript 773922 774356 . + . transcript_id "YBR285W_id001"; gene_id "YBR285W"; transcript_biotype "protein_coding"; +chrII SGD exon 773922 774356 . + 0 transcript_id "YBR285W_id001"; gene_id "YBR285W"; +chrII SGD gene 774672 776455 . + . gene_id "YBR286W"; gene_biotype "protein_coding"; +chrII SGD transcript 774672 776455 . + . transcript_id "YBR286W_id004"; gene_id "YBR286W"; gene_name "APE3"; transcript_biotype "protein_coding"; +chrII SGD exon 774672 776455 . + . transcript_id "YBR286W_id004"; gene_id "YBR286W"; gene_name "APE3"; +chrII SGD transcript 774700 776313 . + . transcript_id "YBR286W_id001"; gene_id "YBR286W"; gene_name "APE3"; transcript_biotype "protein_coding"; +chrII SGD exon 774700 776313 . + 0 transcript_id "YBR286W_id001"; gene_name "APE3"; gene_id "YBR286W"; +chrII SGD gene 776480 778083 . + . gene_id "YBR287W"; gene_biotype "protein_coding"; +chrII SGD transcript 776480 778083 . + . transcript_id "YBR287W_id001"; gene_id "YBR287W"; transcript_biotype "protein_coding"; +chrII SGD exon 776480 778083 . + . transcript_id "YBR287W_id001"; gene_id "YBR287W"; +chrII SGD transcript 776571 777854 . + . transcript_id "YBR287W_id003"; gene_id "YBR287W"; transcript_biotype "protein_coding"; +chrII SGD exon 776571 777854 . + 0 transcript_id "YBR287W_id003"; gene_id "YBR287W"; +chrII SGD gene 777946 779919 . - . gene_id "YBR288C"; gene_biotype "protein_coding"; +chrII SGD transcript 777946 779919 . - . transcript_id "YBR288C_id002"; gene_id "YBR288C"; gene_name "APM3"; transcript_biotype "protein_coding"; +chrII SGD exon 777946 779919 . - . transcript_id "YBR288C_id002"; gene_id "YBR288C"; gene_name "APM3"; +chrII SGD transcript 778012 779463 . - . transcript_id "YBR288C_id001"; gene_id "YBR288C"; gene_name "APM3"; transcript_biotype "protein_coding"; +chrII SGD exon 778012 779463 . - 0 transcript_id "YBR288C_id001"; gene_name "APM3"; gene_id "YBR288C"; +chrII SGD gene 779653 782436 . + . gene_id "YBR289W"; gene_biotype "protein_coding"; +chrII SGD transcript 779653 782436 . + . transcript_id "YBR289W_id004"; gene_id "YBR289W"; gene_name "SNF5"; transcript_biotype "protein_coding"; +chrII SGD exon 779653 782436 . + . transcript_id "YBR289W_id004"; gene_id "YBR289W"; gene_name "SNF5"; +chrII SGD transcript 779667 782384 . + . transcript_id "YBR289W_id001"; gene_id "YBR289W"; gene_name "SNF5"; transcript_biotype "protein_coding"; +chrII SGD exon 779667 782384 . + 0 transcript_id "YBR289W_id001"; gene_name "SNF5"; gene_id "YBR289W"; +chrII SGD gene 782584 783733 . + . gene_id "YBR290W"; gene_biotype "protein_coding"; +chrII SGD transcript 782584 783733 . + . transcript_id "YBR290W_id005"; gene_id "YBR290W"; gene_name "BSD2"; transcript_biotype "protein_coding"; +chrII SGD exon 782584 783733 . + . transcript_id "YBR290W_id005"; gene_id "YBR290W"; gene_name "BSD2"; +chrII SGD transcript 782591 783556 . + . transcript_id "YBR290W_id001"; gene_id "YBR290W"; gene_name "BSD2"; transcript_biotype "protein_coding"; +chrII SGD exon 782591 783556 . + 0 transcript_id "YBR290W_id001"; gene_name "BSD2"; gene_id "YBR290W"; +chrII SGD gene 783404 784604 . - . gene_id "YBR291C"; gene_biotype "protein_coding"; +chrII SGD transcript 783404 784604 . - . transcript_id "YBR291C_id002"; gene_id "YBR291C"; gene_name "CTP1"; transcript_biotype "protein_coding"; +chrII SGD exon 783404 784604 . - . transcript_id "YBR291C_id002"; gene_id "YBR291C"; gene_name "CTP1"; +chrII SGD transcript 783673 784572 . - . transcript_id "YBR291C_id001"; gene_id "YBR291C"; gene_name "CTP1"; transcript_biotype "protein_coding"; +chrII SGD exon 783673 784572 . - 0 transcript_id "YBR291C_id001"; gene_name "CTP1"; gene_id "YBR291C"; +chrII SGD gene 784702 785073 . - . gene_id "YBR292C"; gene_biotype "protein_coding"; +chrII SGD transcript 784702 785073 . - . transcript_id "YBR292C_mRNA"; gene_id "YBR292C"; transcript_biotype "protein_coding"; +chrII SGD CDS 784702 785073 . - 0 transcript_id "YBR292C_mRNA"; gene_id "YBR292C"; +chrII SGD gene 787006 788430 . + . gene_id "YBR293W"; gene_biotype "protein_coding"; +chrII SGD transcript 787006 788430 . + . transcript_id "YBR293W_mRNA"; gene_id "YBR293W"; gene_name "VBA2"; transcript_biotype "protein_coding"; +chrII SGD CDS 787006 788430 . + 0 transcript_id "YBR293W_mRNA"; gene_name "VBA2"; gene_id "YBR293W"; +chrII SGD gene 789235 791814 . + . gene_id "YBR294W"; gene_biotype "protein_coding"; +chrII SGD transcript 789235 791814 . + . transcript_id "YBR294W_mRNA"; gene_id "YBR294W"; gene_name "SUL1"; transcript_biotype "protein_coding"; +chrII SGD CDS 789235 791814 . + 0 transcript_id "YBR294W_mRNA"; gene_name "SUL1"; gene_id "YBR294W"; +chrII SGD gene 792849 796499 . + . gene_id "YBR295W"; gene_biotype "protein_coding"; +chrII SGD transcript 792849 796499 . + . transcript_id "YBR295W_mRNA"; gene_id "YBR295W"; gene_name "PCA1"; transcript_biotype "protein_coding"; +chrII SGD CDS 792849 796499 . + 0 transcript_id "YBR295W_mRNA"; gene_name "PCA1"; gene_id "YBR295W"; +chrII SGD gene 796798 798522 . - . gene_id "YBR296C"; gene_biotype "protein_coding"; +chrII SGD transcript 796798 798522 . - . transcript_id "YBR296C_id001"; gene_id "YBR296C"; gene_name "PHO89"; transcript_biotype "protein_coding"; +chrII SGD exon 796798 798522 . - 0 transcript_id "YBR296C_id001"; gene_name "PHO89"; gene_id "YBR296C"; +chrII SGD gene 800123 800242 . - . gene_id "YBR296C-A"; gene_biotype "protein_coding"; +chrII SGD transcript 800123 800242 . - . transcript_id "YBR296C-A_mRNA"; gene_id "YBR296C-A"; gene_name "TYC1"; transcript_biotype "protein_coding"; +chrII SGD CDS 800123 800242 . - 0 transcript_id "YBR296C-A_mRNA"; gene_name "TYC1"; gene_id "YBR296C-A"; +chrII SGD gene 800470 802159 . + . gene_id "YBR297W"; gene_biotype "protein_coding"; +chrII SGD transcript 800470 802159 . + . transcript_id "YBR297W_id022"; gene_id "YBR297W"; gene_name "MAL33"; transcript_biotype "protein_coding"; +chrII SGD exon 800470 802159 . + . transcript_id "YBR297W_id022"; gene_id "YBR297W"; gene_name "MAL33"; +chrII SGD transcript 800523 801929 . + . transcript_id "YBR297W_id001"; gene_id "YBR297W"; gene_name "MAL33"; transcript_biotype "protein_coding"; +chrII SGD exon 800523 801929 . + 0 transcript_id "YBR297W_id001"; gene_name "MAL33"; gene_id "YBR297W"; +chrII SGD gene 802538 804714 . - . gene_id "YBR298C"; gene_biotype "protein_coding"; +chrII SGD transcript 802538 804714 . - . transcript_id "YBR298C_id019"; gene_id "YBR298C"; gene_name "MAL31"; transcript_biotype "protein_coding"; +chrII SGD exon 802538 804714 . - . transcript_id "YBR298C_id019"; gene_id "YBR298C"; gene_name "MAL31"; +chrII SGD transcript 802631 804475 . - . transcript_id "YBR298C_id001"; gene_id "YBR298C"; gene_name "MAL31"; transcript_biotype "protein_coding"; +chrII SGD exon 802631 804475 . - 0 transcript_id "YBR298C_id001"; gene_name "MAL31"; gene_id "YBR298C"; +chrII SGD gene 805035 805256 . - . gene_id "YBR298C-A"; gene_biotype "protein_coding"; +chrII SGD transcript 805035 805256 . - . transcript_id "YBR298C-A_mRNA"; gene_id "YBR298C-A"; transcript_biotype "protein_coding"; +chrII SGD CDS 805035 805256 . - 0 transcript_id "YBR298C-A_mRNA"; gene_id "YBR298C-A"; +chrII SGD gene 805319 807236 . + . gene_id "YBR299W"; gene_biotype "protein_coding"; +chrII SGD transcript 805319 807236 . + . transcript_id "YBR299W_id002"; gene_id "YBR299W"; gene_name "MAL32"; transcript_biotype "protein_coding"; +chrII SGD exon 805319 807236 . + . transcript_id "YBR299W_id002"; gene_id "YBR299W"; gene_name "MAL32"; +chrII SGD transcript 805351 807105 . + . transcript_id "YBR299W_id001"; gene_id "YBR299W"; gene_name "MAL32"; transcript_biotype "protein_coding"; +chrII SGD exon 805351 807105 . + 0 transcript_id "YBR299W_id001"; gene_name "MAL32"; gene_id "YBR299W"; +chrII SGD gene 808600 809097 . - . gene_id "YBR300C"; gene_biotype "protein_coding"; +chrII SGD transcript 808600 809097 . - . transcript_id "YBR300C_id001"; gene_id "YBR300C"; transcript_biotype "protein_coding"; +chrII SGD exon 808600 809097 . - 0 transcript_id "YBR300C_id001"; gene_id "YBR300C"; +chrII SGD gene 809057 809419 . + . gene_id "YBR301W"; gene_biotype "protein_coding"; +chrII SGD transcript 809057 809419 . + . transcript_id "YBR301W_mRNA"; gene_id "YBR301W"; gene_name "PAU24"; transcript_biotype "protein_coding"; +chrII SGD CDS 809057 809419 . + 0 transcript_id "YBR301W_mRNA"; gene_name "PAU24"; gene_id "YBR301W"; +chrII SGD gene 810340 811479 . - . gene_id "YBR302C"; gene_biotype "protein_coding"; +chrII SGD transcript 810340 811479 . - . transcript_id "YBR302C_mRNA"; gene_id "YBR302C"; gene_name "COS2"; transcript_biotype "protein_coding"; +chrII SGD CDS 810340 811479 . - 0 transcript_id "YBR302C_mRNA"; gene_name "COS2"; gene_id "YBR302C"; +chrIII SGD gene 1392 2135 . + . gene_id "YCL076W"; gene_biotype "protein_coding"; +chrIII SGD transcript 1392 2135 . + . transcript_id "YCL076W_mRNA"; gene_id "YCL076W"; transcript_biotype "protein_coding"; +chrIII SGD CDS 1392 2135 . + 0 transcript_id "YCL076W_mRNA"; gene_id "YCL076W"; +chrIII SGD gene 6479 8326 . - . gene_id "YCL073C"; gene_biotype "protein_coding"; +chrIII SGD transcript 6479 8326 . - . transcript_id "YCL073C_mRNA"; gene_id "YCL073C"; gene_name "GEX1"; transcript_biotype "protein_coding"; +chrIII SGD CDS 6479 8326 . - 0 transcript_id "YCL073C_mRNA"; gene_name "GEX1"; gene_id "YCL073C"; +chrIII SGD gene 9706 11082 . + . gene_id "YCL069W"; gene_biotype "protein_coding"; +chrIII SGD transcript 9706 11082 . + . transcript_id "YCL069W_mRNA"; gene_id "YCL069W"; gene_name "VBA3"; transcript_biotype "protein_coding"; +chrIII SGD CDS 9706 11082 . + 0 transcript_id "YCL069W_mRNA"; gene_name "VBA3"; gene_id "YCL069W"; +chrIII SGD gene 11503 12285 . - . gene_id "YCL068C"; gene_biotype "protein_coding"; +chrIII SGD transcript 11503 12285 . - . transcript_id "YCL068C_mRNA"; gene_id "YCL068C"; transcript_biotype "protein_coding"; +chrIII SGD CDS 11503 12285 . - 0 transcript_id "YCL068C_mRNA"; gene_id "YCL068C"; +chrIII SGD gene 12386 13018 . - . gene_id "YCL067C"; gene_biotype "protein_coding"; +chrIII SGD transcript 12386 13018 . - . transcript_id "YCL067C_mRNA"; gene_id "YCL067C"; gene_name "HMLALPHA2"; transcript_biotype "protein_coding"; +chrIII SGD CDS 12386 13018 . - 0 transcript_id "YCL067C_mRNA"; gene_name "HMLALPHA2"; gene_id "YCL067C"; +chrIII SGD gene 13282 13809 . + . gene_id "YCL066W"; gene_biotype "protein_coding"; +chrIII SGD transcript 13282 13809 . + . transcript_id "YCL066W_mRNA"; gene_id "YCL066W"; gene_name "HMLALPHA1"; transcript_biotype "protein_coding"; +chrIII SGD CDS 13282 13809 . + 0 transcript_id "YCL066W_mRNA"; gene_name "HMLALPHA1"; gene_id "YCL066W"; +chrIII SGD gene 13751 14119 . + . gene_id "YCL065W"; gene_biotype "protein_coding"; +chrIII SGD transcript 13751 14119 . + . transcript_id "YCL065W_mRNA"; gene_id "YCL065W"; transcript_biotype "protein_coding"; +chrIII SGD CDS 13751 14119 . + 0 transcript_id "YCL065W_mRNA"; gene_id "YCL065W"; +chrIII SGD gene 15280 16899 . - . gene_id "YCL064C"; gene_biotype "protein_coding"; +chrIII SGD transcript 15280 16899 . - . transcript_id "YCL064C_id002"; gene_id "YCL064C"; gene_name "CHA1"; transcript_biotype "protein_coding"; +chrIII SGD exon 15280 16899 . - . transcript_id "YCL064C_id002"; gene_id "YCL064C"; gene_name "CHA1"; +chrIII SGD transcript 15798 16880 . - . transcript_id "YCL064C_id001"; gene_id "YCL064C"; gene_name "CHA1"; transcript_biotype "protein_coding"; +chrIII SGD exon 15798 16880 . - 0 transcript_id "YCL064C_id001"; gene_name "CHA1"; gene_id "YCL064C"; +chrIII SGD gene 17226 18711 . + . gene_id "YCL063W"; gene_biotype "protein_coding"; +chrIII SGD transcript 17226 18711 . + . transcript_id "YCL063W_id003"; gene_id "YCL063W"; gene_name "VAC17"; transcript_biotype "protein_coding"; +chrIII SGD exon 17226 18711 . + . transcript_id "YCL063W_id003"; gene_id "YCL063W"; gene_name "VAC17"; +chrIII SGD transcript 17290 18561 . + . transcript_id "YCL063W_id001"; gene_id "YCL063W"; gene_name "VAC17"; transcript_biotype "protein_coding"; +chrIII SGD exon 17290 18561 . + 0 transcript_id "YCL063W_id001"; gene_name "VAC17"; gene_id "YCL063W"; +chrIII SGD gene 18816 22106 . - . gene_id "YCL061C"; gene_biotype "protein_coding"; +chrIII SGD transcript 18816 22106 . - . transcript_id "YCL061C_mRNA"; gene_id "YCL061C"; gene_name "MRC1"; transcript_biotype "protein_coding"; +chrIII SGD CDS 18816 22106 . - 0 transcript_id "YCL061C_mRNA"; gene_name "MRC1"; gene_id "YCL061C"; +chrIII SGD gene 22318 23625 . - . gene_id "YCL059C"; gene_biotype "protein_coding"; +chrIII SGD transcript 22318 23625 . - . transcript_id "YCL059C_id001"; gene_id "YCL059C"; gene_name "KRR1"; transcript_biotype "protein_coding"; +chrIII SGD exon 22318 23625 . - . transcript_id "YCL059C_id001"; gene_id "YCL059C"; gene_name "KRR1"; +chrIII SGD transcript 22429 23379 . - . transcript_id "YCL059C_id002"; gene_id "YCL059C"; gene_name "KRR1"; transcript_biotype "protein_coding"; +chrIII SGD exon 22429 23379 . - 0 transcript_id "YCL059C_id002"; gene_name "KRR1"; gene_id "YCL059C"; +chrIII SGD gene 23523 23981 . - . gene_id "YCL058C"; gene_biotype "protein_coding"; +chrIII SGD transcript 23523 23981 . - . transcript_id "YCL058C_mRNA"; gene_id "YCL058C"; gene_name "FYV5"; transcript_biotype "protein_coding"; +chrIII SGD CDS 23523 23981 . - 0 transcript_id "YCL058C_mRNA"; gene_name "FYV5"; gene_id "YCL058C"; +chrIII SGD gene 23533 24042 . + . gene_id "YCL058W-A"; gene_biotype "protein_coding"; +chrIII SGD transcript 23533 24042 . + . transcript_id "YCL058W-A_id004"; gene_id "YCL058W-A"; gene_name "ADF1"; transcript_biotype "protein_coding"; +chrIII SGD exon 23533 24042 . + . transcript_id "YCL058W-A_id004"; gene_id "YCL058W-A"; gene_name "ADF1"; +chrIII SGD transcript 23584 23925 . + . transcript_id "YCL058W-A_id001"; gene_id "YCL058W-A"; gene_name "ADF1"; transcript_biotype "protein_coding"; +chrIII SGD exon 23584 23925 . + 0 transcript_id "YCL058W-A_id001"; gene_name "ADF1"; gene_id "YCL058W-A"; +chrIII SGD gene 23889 24600 . - . gene_id "YCL057C-A"; gene_biotype "protein_coding"; +chrIII SGD transcript 23889 24600 . - . transcript_id "YCL057C-A_id001"; gene_id "YCL057C-A"; gene_name "MIC10"; transcript_biotype "protein_coding"; +chrIII SGD exon 23889 24600 . - . transcript_id "YCL057C-A_id001"; gene_id "YCL057C-A"; gene_name "MIC10"; +chrIII SGD transcript 24032 24325 . - . transcript_id "YCL057C-A_id004"; gene_id "YCL057C-A"; gene_name "MIC10"; transcript_biotype "protein_coding"; +chrIII SGD exon 24032 24325 . - 0 transcript_id "YCL057C-A_id004"; gene_name "MIC10"; gene_id "YCL057C-A"; +chrIII SGD gene 24760 27093 . + . gene_id "YCL057W"; gene_biotype "protein_coding"; +chrIII SGD transcript 24760 27093 . + . transcript_id "YCL057W_id001"; gene_id "YCL057W"; gene_name "PRD1"; transcript_biotype "protein_coding"; +chrIII SGD exon 24760 27093 . + . transcript_id "YCL057W_id001"; gene_id "YCL057W"; gene_name "PRD1"; +chrIII SGD transcript 24768 26906 . + . transcript_id "YCL057W_id003"; gene_id "YCL057W"; gene_name "PRD1"; transcript_biotype "protein_coding"; +chrIII SGD exon 24768 26906 . + 0 transcript_id "YCL057W_id003"; gene_name "PRD1"; gene_id "YCL057W"; +chrIII SGD gene 26471 27383 . - . gene_id "YCL056C"; gene_biotype "protein_coding"; +chrIII SGD transcript 26471 27383 . - . transcript_id "YCL056C_id001"; gene_id "YCL056C"; gene_name "PEX34"; transcript_biotype "protein_coding"; +chrIII SGD exon 26471 27383 . - . transcript_id "YCL056C_id001"; gene_id "YCL056C"; gene_name "PEX34"; +chrIII SGD transcript 26925 27359 . - . transcript_id "YCL056C_id002"; gene_id "YCL056C"; gene_name "PEX34"; transcript_biotype "protein_coding"; +chrIII SGD exon 26925 27359 . - 0 transcript_id "YCL056C_id002"; gene_name "PEX34"; gene_id "YCL056C"; +chrIII SGD gene 27893 29115 . + . gene_id "YCL055W"; gene_biotype "protein_coding"; +chrIII SGD transcript 27893 29115 . + . transcript_id "YCL055W_id004"; gene_id "YCL055W"; gene_name "KAR4"; transcript_biotype "protein_coding"; +chrIII SGD exon 27893 29115 . + . transcript_id "YCL055W_id004"; gene_id "YCL055W"; gene_name "KAR4"; +chrIII SGD transcript 27929 28936 . + . transcript_id "YCL055W_id001"; gene_id "YCL055W"; gene_name "KAR4"; transcript_biotype "protein_coding"; +chrIII SGD exon 27929 28936 . + 0 transcript_id "YCL055W_id001"; gene_name "KAR4"; gene_id "YCL055W"; +chrIII SGD gene 30910 30996 . + . gene_id "YCL054W-A"; gene_biotype "protein_coding"; +chrIII SGD transcript 30910 30996 . + . transcript_id "YCL054W-A_mRNA"; gene_id "YCL054W-A"; gene_name "RDT1"; transcript_biotype "protein_coding"; +chrIII SGD CDS 30910 30996 . + 0 transcript_id "YCL054W-A_mRNA"; gene_name "RDT1"; gene_id "YCL054W-A"; +chrIII SGD gene 31406 34092 . + . gene_id "YCL054W"; gene_biotype "protein_coding"; +chrIII SGD transcript 31406 34092 . + . transcript_id "YCL054W_id001"; gene_id "YCL054W"; gene_name "SPB1"; transcript_biotype "protein_coding"; +chrIII SGD exon 31406 34092 . + . transcript_id "YCL054W_id001"; gene_id "YCL054W"; gene_name "SPB1"; +chrIII SGD transcript 31449 33974 . + . transcript_id "YCL054W_id002"; gene_id "YCL054W"; gene_name "SPB1"; transcript_biotype "protein_coding"; +chrIII SGD exon 31449 33974 . + 0 transcript_id "YCL054W_id002"; gene_name "SPB1"; gene_id "YCL054W"; +chrIII SGD gene 33953 35762 . - . gene_id "YCL052C"; gene_biotype "protein_coding"; +chrIII SGD transcript 33953 35762 . - . transcript_id "YCL052C_id001"; gene_id "YCL052C"; gene_name "PBN1"; transcript_biotype "protein_coding"; +chrIII SGD exon 33953 35762 . - . transcript_id "YCL052C_id001"; gene_id "YCL052C"; gene_name "PBN1"; +chrIII SGD transcript 34143 35393 . - . transcript_id "YCL052C_id002"; gene_id "YCL052C"; gene_name "PBN1"; transcript_biotype "protein_coding"; +chrIII SGD exon 34143 35393 . - 0 transcript_id "YCL052C_id002"; gene_name "PBN1"; gene_id "YCL052C"; +chrIII SGD gene 35556 37733 . + . gene_id "YCL051W"; gene_biotype "protein_coding"; +chrIII SGD transcript 35556 37733 . + . transcript_id "YCL051W_id001"; gene_id "YCL051W"; gene_name "LRE1"; transcript_biotype "protein_coding"; +chrIII SGD exon 35556 37733 . + . transcript_id "YCL051W_id001"; gene_id "YCL051W"; gene_name "LRE1"; +chrIII SGD transcript 35865 37616 . + . transcript_id "YCL051W_id002"; gene_id "YCL051W"; gene_name "LRE1"; transcript_biotype "protein_coding"; +chrIII SGD exon 35865 37616 . + 0 transcript_id "YCL051W_id002"; gene_name "LRE1"; gene_id "YCL051W"; +chrIII SGD gene 37722 39452 . - . gene_id "YCL050C"; gene_biotype "protein_coding"; +chrIII SGD transcript 37722 39452 . - . transcript_id "YCL050C_id001"; gene_id "YCL050C"; gene_name "APA1"; transcript_biotype "protein_coding"; +chrIII SGD exon 37722 39452 . - . transcript_id "YCL050C_id001"; gene_id "YCL050C"; gene_name "APA1"; +chrIII SGD transcript 37836 38801 . - . transcript_id "YCL050C_id003"; gene_id "YCL050C"; gene_name "APA1"; transcript_biotype "protein_coding"; +chrIII SGD exon 37836 38801 . - 0 transcript_id "YCL050C_id003"; gene_name "APA1"; gene_id "YCL050C"; +chrIII SGD gene 39786 40724 . - . gene_id "YCL049C"; gene_biotype "protein_coding"; +chrIII SGD transcript 39786 40724 . - . transcript_id "YCL049C_id001"; gene_id "YCL049C"; transcript_biotype "protein_coding"; +chrIII SGD exon 39786 40724 . - 0 transcript_id "YCL049C_id001"; gene_id "YCL049C"; +chrIII SGD gene 41488 41727 . + . gene_id "YCL048W-A"; gene_biotype "protein_coding"; +chrIII SGD transcript 41488 41727 . + . transcript_id "YCL048W-A_mRNA"; gene_id "YCL048W-A"; transcript_biotype "protein_coding"; +chrIII SGD CDS 41488 41727 . + 0 transcript_id "YCL048W-A_mRNA"; gene_id "YCL048W-A"; +chrIII SGD gene 42165 43556 . + . gene_id "YCL048W"; gene_biotype "protein_coding"; +chrIII SGD transcript 42165 43556 . + . transcript_id "YCL048W_mRNA"; gene_id "YCL048W"; gene_name "SPS22"; transcript_biotype "protein_coding"; +chrIII SGD CDS 42165 43556 . + 0 transcript_id "YCL048W_mRNA"; gene_name "SPS22"; gene_id "YCL048W"; +chrIII SGD gene 43421 44440 . - . gene_id "YCL047C"; gene_biotype "protein_coding"; +chrIII SGD transcript 43421 44440 . - . transcript_id "YCL047C_id003"; gene_id "YCL047C"; gene_name "POF1"; transcript_biotype "protein_coding"; +chrIII SGD exon 43421 44440 . - . transcript_id "YCL047C_id003"; gene_id "YCL047C"; gene_name "POF1"; +chrIII SGD transcript 43661 44437 . - . transcript_id "YCL047C_id001"; gene_id "YCL047C"; gene_name "POF1"; transcript_biotype "protein_coding"; +chrIII SGD exon 43661 44437 . - 0 transcript_id "YCL047C_id001"; gene_name "POF1"; gene_id "YCL047C"; +chrIII SGD gene 44566 46969 . - . gene_id "YCL045C"; gene_biotype "protein_coding"; +chrIII SGD transcript 44566 46969 . - . transcript_id "YCL045C_id001"; gene_id "YCL045C"; gene_name "EMC1"; transcript_biotype "protein_coding"; +chrIII SGD exon 44566 46969 . - . transcript_id "YCL045C_id001"; gene_id "YCL045C"; gene_name "EMC1"; +chrIII SGD transcript 44623 46905 . - . transcript_id "YCL045C_id002"; gene_id "YCL045C"; gene_name "EMC1"; transcript_biotype "protein_coding"; +chrIII SGD exon 44623 46905 . - 0 transcript_id "YCL045C_id002"; gene_name "EMC1"; gene_id "YCL045C"; +chrIII SGD gene 46640 46963 . + . gene_id "YCL046W"; gene_biotype "protein_coding"; +chrIII SGD transcript 46640 46963 . + . transcript_id "YCL046W_mRNA"; gene_id "YCL046W"; transcript_biotype "protein_coding"; +chrIII SGD CDS 46640 46963 . + 0 transcript_id "YCL046W_mRNA"; gene_id "YCL046W"; +chrIII SGD gene 46937 48447 . - . gene_id "YCL044C"; gene_biotype "protein_coding"; +chrIII SGD transcript 46937 48447 . - . transcript_id "YCL044C_id001"; gene_id "YCL044C"; gene_name "MGR1"; transcript_biotype "protein_coding"; +chrIII SGD exon 46937 48447 . - . transcript_id "YCL044C_id001"; gene_id "YCL044C"; gene_name "MGR1"; +chrIII SGD transcript 47111 48364 . - . transcript_id "YCL044C_id003"; gene_id "YCL044C"; gene_name "MGR1"; transcript_biotype "protein_coding"; +chrIII SGD exon 47111 48364 . - 0 transcript_id "YCL044C_id003"; gene_name "MGR1"; gene_id "YCL044C"; +chrIII SGD gene 48553 50324 . - . gene_id "YCL043C"; gene_biotype "protein_coding"; +chrIII SGD transcript 48553 50324 . - . transcript_id "YCL043C_id001"; gene_id "YCL043C"; gene_name "PDI1"; transcript_biotype "protein_coding"; +chrIII SGD exon 48553 50324 . - . transcript_id "YCL043C_id001"; gene_id "YCL043C"; gene_name "PDI1"; +chrIII SGD transcript 48653 50221 . - . transcript_id "YCL043C_id003"; gene_id "YCL043C"; gene_name "PDI1"; transcript_biotype "protein_coding"; +chrIII SGD exon 48653 50221 . - 0 transcript_id "YCL043C_id003"; gene_name "PDI1"; gene_id "YCL043C"; +chrIII SGD gene 50133 50627 . - . gene_id "YCL041C"; gene_biotype "protein_coding"; +chrIII SGD transcript 50133 50627 . - . transcript_id "YCL041C_mRNA"; gene_id "YCL041C"; transcript_biotype "protein_coding"; +chrIII SGD CDS 50133 50627 . - 0 transcript_id "YCL041C_mRNA"; gene_id "YCL041C"; +chrIII SGD gene 50584 50943 . + . gene_id "YCL042W"; gene_biotype "protein_coding"; +chrIII SGD transcript 50584 50943 . + . transcript_id "YCL042W_mRNA"; gene_id "YCL042W"; transcript_biotype "protein_coding"; +chrIII SGD CDS 50584 50943 . + 0 transcript_id "YCL042W_mRNA"; gene_id "YCL042W"; +chrIII SGD gene 50787 52656 . + . gene_id "YCL040W"; gene_biotype "protein_coding"; +chrIII SGD transcript 50787 52656 . + . transcript_id "YCL040W_id001"; gene_id "YCL040W"; gene_name "GLK1"; transcript_biotype "protein_coding"; +chrIII SGD exon 50787 52656 . + . transcript_id "YCL040W_id001"; gene_id "YCL040W"; gene_name "GLK1"; +chrIII SGD transcript 50838 52340 . + . transcript_id "YCL040W_id002"; gene_id "YCL040W"; gene_name "GLK1"; transcript_biotype "protein_coding"; +chrIII SGD exon 50838 52340 . + 0 transcript_id "YCL040W_id002"; gene_name "GLK1"; gene_id "YCL040W"; +chrIII SGD gene 52611 54953 . + . gene_id "YCL039W"; gene_biotype "protein_coding"; +chrIII SGD transcript 52611 54953 . + . transcript_id "YCL039W_id003"; gene_id "YCL039W"; gene_name "GID7"; transcript_biotype "protein_coding"; +chrIII SGD exon 52611 54953 . + . transcript_id "YCL039W_id003"; gene_id "YCL039W"; gene_name "GID7"; +chrIII SGD transcript 52645 54882 . + . transcript_id "YCL039W_id001"; gene_id "YCL039W"; gene_name "GID7"; transcript_biotype "protein_coding"; +chrIII SGD exon 52645 54882 . + 0 transcript_id "YCL039W_id001"; gene_name "GID7"; gene_id "YCL039W"; +chrIII SGD gene 54811 56628 . - . gene_id "YCL038C"; gene_biotype "protein_coding"; +chrIII SGD transcript 54811 56628 . - . transcript_id "YCL038C_id002"; gene_id "YCL038C"; gene_name "ATG22"; transcript_biotype "protein_coding"; +chrIII SGD exon 54811 56628 . - . transcript_id "YCL038C_id002"; gene_id "YCL038C"; gene_name "ATG22"; +chrIII SGD transcript 54941 56527 . - . transcript_id "YCL038C_id001"; gene_id "YCL038C"; gene_name "ATG22"; transcript_biotype "protein_coding"; +chrIII SGD exon 54941 56527 . - 0 transcript_id "YCL038C_id001"; gene_name "ATG22"; gene_id "YCL038C"; +chrIII SGD gene 56698 58745 . - . gene_id "YCL037C"; gene_biotype "protein_coding"; +chrIII SGD transcript 56698 58745 . - . transcript_id "YCL037C_id001"; gene_id "YCL037C"; gene_name "SRO9"; transcript_biotype "protein_coding"; +chrIII SGD exon 56698 58745 . - . transcript_id "YCL037C_id001"; gene_id "YCL037C"; gene_name "SRO9"; +chrIII SGD transcript 57374 58678 . - . transcript_id "YCL037C_id005"; gene_id "YCL037C"; gene_name "SRO9"; transcript_biotype "protein_coding"; +chrIII SGD exon 57374 58678 . - 0 transcript_id "YCL037C_id005"; gene_name "SRO9"; gene_id "YCL037C"; +chrIII SGD gene 58974 60865 . + . gene_id "YCL036W"; gene_biotype "protein_coding"; +chrIII SGD transcript 58974 60865 . + . transcript_id "YCL036W_id001"; gene_id "YCL036W"; gene_name "GFD2"; transcript_biotype "protein_coding"; +chrIII SGD exon 58974 60865 . + . transcript_id "YCL036W_id001"; gene_id "YCL036W"; gene_name "GFD2"; +chrIII SGD transcript 59026 60726 . + . transcript_id "YCL036W_id002"; gene_id "YCL036W"; gene_name "GFD2"; transcript_biotype "protein_coding"; +chrIII SGD exon 59026 60726 . + 0 transcript_id "YCL036W_id002"; gene_name "GFD2"; gene_id "YCL036W"; +chrIII SGD gene 60650 61288 . - . gene_id "YCL035C"; gene_biotype "protein_coding"; +chrIII SGD transcript 60650 61288 . - . transcript_id "YCL035C_id004"; gene_id "YCL035C"; gene_name "GRX1"; transcript_biotype "protein_coding"; +chrIII SGD exon 60650 61288 . - . transcript_id "YCL035C_id004"; gene_id "YCL035C"; gene_name "GRX1"; +chrIII SGD transcript 60841 61173 . - . transcript_id "YCL035C_id001"; gene_id "YCL035C"; gene_name "GRX1"; transcript_biotype "protein_coding"; +chrIII SGD exon 60841 61173 . - 0 transcript_id "YCL035C_id001"; gene_name "GRX1"; gene_id "YCL035C"; +chrIII SGD gene 61608 62842 . + . gene_id "YCL034W"; gene_biotype "protein_coding"; +chrIII SGD transcript 61608 62842 . + . transcript_id "YCL034W_id004"; gene_id "YCL034W"; gene_name "LSB5"; transcript_biotype "protein_coding"; +chrIII SGD exon 61608 62842 . + . transcript_id "YCL034W_id004"; gene_id "YCL034W"; gene_name "LSB5"; +chrIII SGD transcript 61658 62722 . + . transcript_id "YCL034W_id001"; gene_id "YCL034W"; gene_name "LSB5"; transcript_biotype "protein_coding"; +chrIII SGD exon 61658 62722 . + 0 transcript_id "YCL034W_id001"; gene_name "LSB5"; gene_id "YCL034W"; +chrIII SGD gene 62705 63467 . - . gene_id "YCL033C"; gene_biotype "protein_coding"; +chrIII SGD transcript 62705 63467 . - . transcript_id "YCL033C_id001"; gene_id "YCL033C"; gene_name "MXR2"; transcript_biotype "protein_coding"; +chrIII SGD exon 62705 63467 . - . transcript_id "YCL033C_id001"; gene_id "YCL033C"; gene_name "MXR2"; +chrIII SGD transcript 62776 63282 . - . transcript_id "YCL033C_id002"; gene_id "YCL033C"; gene_name "MXR2"; transcript_biotype "protein_coding"; +chrIII SGD exon 62776 63282 . - 0 transcript_id "YCL033C_id002"; gene_name "MXR2"; gene_id "YCL033C"; +chrIII SGD gene 63067 64581 . + . gene_id "YCL032W"; gene_biotype "protein_coding"; +chrIII SGD transcript 63067 64581 . + . transcript_id "YCL032W_id001"; gene_id "YCL032W"; gene_name "STE50"; transcript_biotype "protein_coding"; +chrIII SGD exon 63067 64581 . + . transcript_id "YCL032W_id001"; gene_id "YCL032W"; gene_name "STE50"; +chrIII SGD transcript 63441 64481 . + . transcript_id "YCL032W_id002"; gene_id "YCL032W"; gene_name "STE50"; transcript_biotype "protein_coding"; +chrIII SGD exon 63441 64481 . + 0 transcript_id "YCL032W_id002"; gene_name "STE50"; gene_id "YCL032W"; +chrIII SGD gene 64556 65637 . - . gene_id "YCL031C"; gene_biotype "protein_coding"; +chrIII SGD transcript 64556 65637 . - . transcript_id "YCL031C_id002"; gene_id "YCL031C"; gene_name "RRP7"; transcript_biotype "protein_coding"; +chrIII SGD exon 64556 65637 . - . transcript_id "YCL031C_id002"; gene_id "YCL031C"; gene_name "RRP7"; +chrIII SGD transcript 64675 65568 . - . transcript_id "YCL031C_id001"; gene_id "YCL031C"; gene_name "RRP7"; transcript_biotype "protein_coding"; +chrIII SGD exon 64675 65568 . - 0 transcript_id "YCL031C_id001"; gene_name "RRP7"; gene_id "YCL031C"; +chrIII SGD gene 65779 68393 . - . gene_id "YCL030C"; gene_biotype "protein_coding"; +chrIII SGD transcript 65779 68393 . - . transcript_id "YCL030C_id002"; gene_id "YCL030C"; gene_name "HIS4"; transcript_biotype "protein_coding"; +chrIII SGD exon 65779 68393 . - . transcript_id "YCL030C_id002"; gene_id "YCL030C"; gene_name "HIS4"; +chrIII SGD transcript 65934 68333 . - . transcript_id "YCL030C_id001"; gene_id "YCL030C"; gene_name "HIS4"; transcript_biotype "protein_coding"; +chrIII SGD exon 65934 68333 . - 0 transcript_id "YCL030C_id001"; gene_name "HIS4"; gene_id "YCL030C"; +chrIII SGD gene 68353 70020 . - . gene_id "YCL029C"; gene_biotype "protein_coding"; +chrIII SGD transcript 68353 70020 . - . transcript_id "YCL029C_id001"; gene_id "YCL029C"; gene_name "BIK1"; transcript_biotype "protein_coding"; +chrIII SGD exon 68353 70020 . - . transcript_id "YCL029C_id001"; gene_id "YCL029C"; gene_name "BIK1"; +chrIII SGD transcript 68599 69921 . - . transcript_id "YCL029C_id002"; gene_id "YCL029C"; gene_name "BIK1"; transcript_biotype "protein_coding"; +chrIII SGD exon 68599 69921 . - 0 transcript_id "YCL029C_id002"; gene_name "BIK1"; gene_id "YCL029C"; +chrIII SGD gene 70126 71749 . + . gene_id "YCL028W"; gene_biotype "protein_coding"; +chrIII SGD transcript 70126 71749 . + . transcript_id "YCL028W_id001"; gene_id "YCL028W"; gene_name "RNQ1"; transcript_biotype "protein_coding"; +chrIII SGD exon 70126 71749 . + . transcript_id "YCL028W_id001"; gene_id "YCL028W"; gene_name "RNQ1"; +chrIII SGD transcript 70150 71367 . + . transcript_id "YCL028W_id002"; gene_id "YCL028W"; gene_name "RNQ1"; transcript_biotype "protein_coding"; +chrIII SGD exon 70150 71367 . + 0 transcript_id "YCL028W_id002"; gene_name "RNQ1"; gene_id "YCL028W"; +chrIII SGD gene 71803 73341 . + . gene_id "YCL027W"; gene_biotype "protein_coding"; +chrIII SGD transcript 71803 73341 . + . transcript_id "YCL027W_id001"; gene_id "YCL027W"; gene_name "FUS1"; transcript_biotype "protein_coding"; +chrIII SGD exon 71803 73341 . + 0 transcript_id "YCL027W_id001"; gene_name "FUS1"; gene_id "YCL027W"; +chrIII SGD gene 73330 74085 . - . gene_id "YCL026C-B"; gene_biotype "protein_coding"; +chrIII SGD transcript 73330 74085 . - . transcript_id "YCL026C-B_id002"; gene_id "YCL026C-B"; gene_name "HBN1"; transcript_biotype "protein_coding"; +chrIII SGD exon 73330 74085 . - . transcript_id "YCL026C-B_id002"; gene_id "YCL026C-B"; gene_name "HBN1"; +chrIII SGD transcript 73405 73986 . - . transcript_id "YCL026C-B_id001"; gene_id "YCL026C-B"; gene_name "HBN1"; transcript_biotype "protein_coding"; +chrIII SGD exon 73405 73986 . - 0 transcript_id "YCL026C-B_id001"; gene_name "HBN1"; gene_id "YCL026C-B"; +chrIII SGD gene 74492 75412 . - . gene_id "YCL026C-A"; gene_biotype "protein_coding"; +chrIII SGD transcript 74492 75412 . - . transcript_id "YCL026C-A_id001"; gene_id "YCL026C-A"; gene_name "FRM2"; transcript_biotype "protein_coding"; +chrIII SGD exon 74492 75412 . - . transcript_id "YCL026C-A_id001"; gene_id "YCL026C-A"; gene_name "FRM2"; +chrIII SGD transcript 74704 75285 . - . transcript_id "YCL026C-A_id004"; gene_id "YCL026C-A"; gene_name "FRM2"; transcript_biotype "protein_coding"; +chrIII SGD exon 74704 75285 . - 0 transcript_id "YCL026C-A_id004"; gene_name "FRM2"; gene_id "YCL026C-A"; +chrIII SGD gene 75941 78023 . - . gene_id "YCL025C"; gene_biotype "protein_coding"; +chrIII SGD transcript 75941 78023 . - . transcript_id "YCL025C_id001"; gene_id "YCL025C"; gene_name "AGP1"; transcript_biotype "protein_coding"; +chrIII SGD exon 75941 78023 . - . transcript_id "YCL025C_id001"; gene_id "YCL025C"; gene_name "AGP1"; +chrIII SGD transcript 76018 77919 . - . transcript_id "YCL025C_id005"; gene_id "YCL025C"; gene_name "AGP1"; transcript_biotype "protein_coding"; +chrIII SGD exon 76018 77919 . - 0 transcript_id "YCL025C_id005"; gene_name "AGP1"; gene_id "YCL025C"; +chrIII SGD gene 78949 79296 . - . gene_id "YCL023C"; gene_biotype "protein_coding"; +chrIII SGD transcript 78949 79296 . - . transcript_id "YCL023C_mRNA"; gene_id "YCL023C"; transcript_biotype "protein_coding"; +chrIII SGD CDS 78949 79296 . - 0 transcript_id "YCL023C_mRNA"; gene_id "YCL023C"; +chrIII SGD gene 79162 82275 . + . gene_id "YCL024W"; gene_biotype "protein_coding"; +chrIII SGD transcript 79162 82275 . + . transcript_id "YCL024W_mRNA"; gene_id "YCL024W"; gene_name "KCC4"; transcript_biotype "protein_coding"; +chrIII SGD CDS 79162 82275 . + 0 transcript_id "YCL024W_mRNA"; gene_name "KCC4"; gene_id "YCL024W"; +chrIII SGD gene 81570 82085 . - . gene_id "YCL022C"; gene_biotype "protein_coding"; +chrIII SGD transcript 81570 82085 . - . transcript_id "YCL022C_mRNA"; gene_id "YCL022C"; transcript_biotype "protein_coding"; +chrIII SGD CDS 81570 82085 . - 0 transcript_id "YCL022C_mRNA"; gene_id "YCL022C"; +chrIII SGD gene 82462 82533 . - . gene_id "YNCC0001C"; gene_biotype "ncRNA"; +chrIII SGD transcript 82462 82533 . - . transcript_id "YNCC0001C_tRNA"; gene_id "YNCC0001C"; transcript_biotype "ncRNA"; +chrIII SGD exon 82462 82533 . - . transcript_id "YNCC0001C_tRNA"; gene_id "YNCC0001C"; +chrIII SGD gene 83620 83997 . + . gene_id "YCL021W-A"; gene_biotype "protein_coding"; +chrIII SGD transcript 83620 83997 . + . transcript_id "YCL021W-A_id001"; gene_id "YCL021W-A"; transcript_biotype "protein_coding"; +chrIII SGD exon 83620 83997 . + 0 transcript_id "YCL021W-A_id001"; gene_id "YCL021W-A"; +chrIII SGD gene 85102 86418 . + . gene_id "YCL020W"; gene_biotype "protein_coding"; +chrIII SGD transcript 85102 86418 . + . transcript_id "YCL020W_dummy"; gene_id "YCL020W"; transcript_biotype "protein_coding"; +chrIII SGD exon 85102 86418 . + 0 transcript_id "YCL020W_dummy"; gene_id "YCL020W"; +chrIII SGD gene 85102 90415 . + . gene_id "YCL019W"; gene_biotype "protein_coding"; +chrIII SGD transcript 85102 90415 . + . transcript_id "YCL019W_dummy"; gene_id "YCL019W"; transcript_biotype "protein_coding"; +chrIII SGD exon 85102 86391 . + 0 transcript_id "YCL019W_dummy"; gene_id "YCL019W"; +chrIII SGD exon 86393 90415 . + 0 transcript_id "YCL019W_dummy"; gene_id "YCL019W"; +chrIII SGD gene 90859 90972 . + . gene_id "YNCC0002W"; gene_biotype "ncRNA"; +chrIII SGD transcript 90859 90972 . + . transcript_id "YNCC0002W_tRNA"; gene_id "YNCC0002W"; gene_name "SUP53"; transcript_biotype "ncRNA"; +chrIII SGD exon 90859 90896 . + . transcript_id "YNCC0002W_tRNA"; gene_name "SUP53"; gene_id "YNCC0002W"; +chrIII SGD exon 90929 90972 . + . transcript_id "YNCC0002W_tRNA"; gene_name "SUP53"; gene_id "YNCC0002W"; +chrIII SGD gene 91179 92594 . + . gene_id "YCL018W"; gene_biotype "protein_coding"; +chrIII SGD transcript 91179 92594 . + . transcript_id "YCL018W_id001"; gene_id "YCL018W"; gene_name "LEU2"; transcript_biotype "protein_coding"; +chrIII SGD exon 91179 92594 . + . transcript_id "YCL018W_id001"; gene_id "YCL018W"; gene_name "LEU2"; +chrIII SGD transcript 91324 92418 . + . transcript_id "YCL018W_id002"; gene_id "YCL018W"; gene_name "LEU2"; transcript_biotype "protein_coding"; +chrIII SGD exon 91324 92418 . + 0 transcript_id "YCL018W_id002"; gene_name "LEU2"; gene_id "YCL018W"; +chrIII SGD gene 92413 94385 . - . gene_id "YCL017C"; gene_biotype "protein_coding"; +chrIII SGD transcript 92413 94385 . - . transcript_id "YCL017C_id002"; gene_id "YCL017C"; gene_name "NFS1"; transcript_biotype "protein_coding"; +chrIII SGD exon 92413 94385 . - . transcript_id "YCL017C_id002"; gene_id "YCL017C"; gene_name "NFS1"; +chrIII SGD transcript 92777 94270 . - . transcript_id "YCL017C_id001"; gene_id "YCL017C"; gene_name "NFS1"; transcript_biotype "protein_coding"; +chrIII SGD exon 92777 94270 . - 0 transcript_id "YCL017C_id001"; gene_name "NFS1"; gene_id "YCL017C"; +chrIII SGD gene 94474 95911 . - . gene_id "YCL016C"; gene_biotype "protein_coding"; +chrIII SGD transcript 94474 95911 . - . transcript_id "YCL016C_id001"; gene_id "YCL016C"; gene_name "DCC1"; transcript_biotype "protein_coding"; +chrIII SGD exon 94474 95911 . - . transcript_id "YCL016C_id001"; gene_id "YCL016C"; gene_name "DCC1"; +chrIII SGD transcript 94621 95763 . - . transcript_id "YCL016C_id004"; gene_id "YCL016C"; gene_name "DCC1"; transcript_biotype "protein_coding"; +chrIII SGD exon 94621 95763 . - 0 transcript_id "YCL016C_id004"; gene_name "DCC1"; gene_id "YCL016C"; +chrIII SGD gene 96281 101191 . + . gene_id "YCL014W"; gene_biotype "protein_coding"; +chrIII SGD transcript 96281 101191 . + . transcript_id "YCL014W_mRNA"; gene_id "YCL014W"; gene_name "BUD3"; transcript_biotype "protein_coding"; +chrIII SGD CDS 96281 101191 . + 0 transcript_id "YCL014W_mRNA"; gene_name "BUD3"; gene_id "YCL014W"; +chrIII SGD gene 101162 101925 . - . gene_id "YCL012C"; gene_biotype "protein_coding"; +chrIII SGD transcript 101162 101925 . - . transcript_id "YCL012C_id001"; gene_id "YCL012C"; transcript_biotype "protein_coding"; +chrIII SGD exon 101162 101925 . - . transcript_id "YCL012C_id001"; gene_id "YCL012C"; +chrIII SGD transcript 101317 101788 . - . transcript_id "YCL012C_id004"; gene_id "YCL012C"; transcript_biotype "protein_coding"; +chrIII SGD exon 101317 101633 . - 2 transcript_id "YCL012C_id004"; gene_id "YCL012C"; +chrIII SGD exon 101701 101788 . - 0 transcript_id "YCL012C_id004"; gene_id "YCL012C"; +chrIII SGD gene 101965 104329 . - . gene_id "YCL011C"; gene_biotype "protein_coding"; +chrIII SGD transcript 101965 104329 . - . transcript_id "YCL011C_id002"; gene_id "YCL011C"; gene_name "GBP2"; transcript_biotype "protein_coding"; +chrIII SGD exon 101965 104329 . - . transcript_id "YCL011C_id002"; gene_id "YCL011C"; gene_name "GBP2"; +chrIII SGD transcript 102075 103358 . - . transcript_id "YCL011C_id001"; gene_id "YCL011C"; gene_name "GBP2"; transcript_biotype "protein_coding"; +chrIII SGD exon 102075 103358 . - 0 transcript_id "YCL011C_id001"; gene_name "GBP2"; gene_id "YCL011C"; +chrIII SGD gene 102099 104368 . - . gene_id "YCL010C"; gene_biotype "protein_coding"; +chrIII SGD transcript 102099 104368 . - . transcript_id "YCL010C_id004"; gene_id "YCL010C"; gene_name "SGF29"; transcript_biotype "protein_coding"; +chrIII SGD exon 102099 104368 . - . transcript_id "YCL010C_id004"; gene_id "YCL010C"; gene_name "SGF29"; +chrIII SGD transcript 103571 104350 . - . transcript_id "YCL010C_id001"; gene_id "YCL010C"; gene_name "SGF29"; transcript_biotype "protein_coding"; +chrIII SGD exon 103571 104350 . - 0 transcript_id "YCL010C_id001"; gene_name "SGF29"; gene_id "YCL010C"; +chrIII SGD gene 104471 105615 . - . gene_id "YCL009C"; gene_biotype "protein_coding"; +chrIII SGD transcript 104471 105615 . - . transcript_id "YCL009C_id001"; gene_id "YCL009C"; gene_name "ILV6"; transcript_biotype "protein_coding"; +chrIII SGD exon 104471 105615 . - . transcript_id "YCL009C_id001"; gene_id "YCL009C"; gene_name "ILV6"; +chrIII SGD transcript 104619 105548 . - . transcript_id "YCL009C_id005"; gene_id "YCL009C"; gene_name "ILV6"; transcript_biotype "protein_coding"; +chrIII SGD exon 104619 105548 . - 0 transcript_id "YCL009C_id005"; gene_name "ILV6"; gene_id "YCL009C"; +chrIII SGD gene 105543 106906 . - . gene_id "YCL008C"; gene_biotype "protein_coding"; +chrIII SGD transcript 105543 106906 . - . transcript_id "YCL008C_id001"; gene_id "YCL008C"; gene_name "STP22"; transcript_biotype "protein_coding"; +chrIII SGD exon 105543 106906 . - . transcript_id "YCL008C_id001"; gene_id "YCL008C"; gene_name "STP22"; +chrIII SGD transcript 105696 106853 . - . transcript_id "YCL008C_id002"; gene_id "YCL008C"; gene_name "STP22"; transcript_biotype "protein_coding"; +chrIII SGD exon 105696 106853 . - 0 transcript_id "YCL008C_id002"; gene_name "STP22"; gene_id "YCL008C"; +chrIII SGD gene 106941 107540 . + . gene_id "YCL005W-A"; gene_biotype "protein_coding"; +chrIII SGD transcript 106941 107540 . + . transcript_id "YCL005W-A_id003"; gene_id "YCL005W-A"; gene_name "VMA9"; transcript_biotype "protein_coding"; +chrIII SGD exon 106941 107540 . + . transcript_id "YCL005W-A_id003"; gene_id "YCL005W-A"; gene_name "VMA9"; +chrIII SGD gene 106974 107366 . - . gene_id "YCL007C"; gene_biotype "protein_coding"; +chrIII SGD transcript 106974 107366 . - . transcript_id "YCL007C_mRNA"; gene_id "YCL007C"; transcript_biotype "protein_coding"; +chrIII SGD CDS 106974 107366 . - 0 transcript_id "YCL007C_mRNA"; gene_id "YCL007C"; +chrIII SGD transcript 107023 107417 . + . transcript_id "YCL005W-A_id001"; gene_id "YCL005W-A"; gene_name "VMA9"; transcript_biotype "protein_coding"; +chrIII SGD exon 107023 107033 . + 0 transcript_id "YCL005W-A_id001"; gene_name "VMA9"; gene_id "YCL005W-A"; +chrIII SGD exon 107111 107191 . + 1 transcript_id "YCL005W-A_id001"; gene_name "VMA9"; gene_id "YCL005W-A"; +chrIII SGD exon 107288 107417 . + 1 transcript_id "YCL005W-A_id001"; gene_name "VMA9"; gene_id "YCL005W-A"; +chrIII SGD gene 107504 107712 . - . gene_id "YNCC0003C"; gene_biotype "ncRNA"; +chrIII SGD transcript 107504 107712 . - . transcript_id "YNCC0003C_snoRNA"; gene_id "YNCC0003C"; gene_name "SNR43"; transcript_biotype "ncRNA"; +chrIII SGD exon 107504 107712 . - . transcript_id "YNCC0003C_snoRNA"; gene_name "SNR43"; gene_id "YNCC0003C"; +chrIII SGD gene 107739 108934 . + . gene_id "YCL005W"; gene_biotype "protein_coding"; +chrIII SGD transcript 107739 108934 . + . transcript_id "YCL005W_id003"; gene_id "YCL005W"; gene_name "LDB16"; transcript_biotype "protein_coding"; +chrIII SGD exon 107739 108934 . + . transcript_id "YCL005W_id003"; gene_id "YCL005W"; gene_name "LDB16"; +chrIII SGD transcript 108021 108791 . + . transcript_id "YCL005W_id001"; gene_id "YCL005W"; gene_name "LDB16"; transcript_biotype "protein_coding"; +chrIII SGD exon 108021 108791 . + 0 transcript_id "YCL005W_id001"; gene_name "LDB16"; gene_id "YCL005W"; +chrIII SGD gene 108956 110740 . + . gene_id "YCL004W"; gene_biotype "protein_coding"; +chrIII SGD transcript 108956 110740 . + . transcript_id "YCL004W_id001"; gene_id "YCL004W"; gene_name "PGS1"; transcript_biotype "protein_coding"; +chrIII SGD exon 108956 110740 . + . transcript_id "YCL004W_id001"; gene_id "YCL004W"; gene_name "PGS1"; +chrIII SGD transcript 109105 110670 . + . transcript_id "YCL004W_id002"; gene_id "YCL004W"; gene_name "PGS1"; transcript_biotype "protein_coding"; +chrIII SGD exon 109105 110670 . + 0 transcript_id "YCL004W_id002"; gene_name "PGS1"; gene_id "YCL004W"; +chrIII SGD gene 110262 111700 . - . gene_id "YCL002C"; gene_biotype "protein_coding"; +chrIII SGD transcript 110262 111700 . - . transcript_id "YCL002C_id001"; gene_id "YCL002C"; transcript_biotype "protein_coding"; +chrIII SGD exon 110262 111700 . - . transcript_id "YCL002C_id001"; gene_id "YCL002C"; +chrIII SGD transcript 110808 111675 . - . transcript_id "YCL002C_id002"; gene_id "YCL002C"; transcript_biotype "protein_coding"; +chrIII SGD exon 110808 111557 . - 0 transcript_id "YCL002C_id002"; gene_id "YCL002C"; +chrIII SGD exon 111634 111675 . - 0 transcript_id "YCL002C_id002"; gene_id "YCL002C"; +chrIII SGD gene 111808 112584 . + . gene_id "YCL001W"; gene_biotype "protein_coding"; +chrIII SGD transcript 111808 112584 . + . transcript_id "YCL001W_id004"; gene_id "YCL001W"; gene_name "RER1"; transcript_biotype "protein_coding"; +chrIII SGD exon 111808 112584 . + . transcript_id "YCL001W_id004"; gene_id "YCL001W"; gene_name "RER1"; +chrIII SGD transcript 111916 112482 . + . transcript_id "YCL001W_id001"; gene_id "YCL001W"; gene_name "RER1"; transcript_biotype "protein_coding"; +chrIII SGD exon 111916 112482 . + 0 transcript_id "YCL001W_id001"; gene_name "RER1"; gene_id "YCL001W"; +chrIII SGD gene 113080 113541 . + . gene_id "YCL001W-A"; gene_biotype "protein_coding"; +chrIII SGD transcript 113080 113541 . + . transcript_id "YCL001W-A_mRNA"; gene_id "YCL001W-A"; transcript_biotype "protein_coding"; +chrIII SGD CDS 113080 113541 . + 0 transcript_id "YCL001W-A_mRNA"; gene_id "YCL001W-A"; +chrIII SGD gene 113770 114024 . + . gene_id "YCL001W-B"; gene_biotype "protein_coding"; +chrIII SGD transcript 113770 114024 . + . transcript_id "YCL001W-B_mRNA"; gene_id "YCL001W-B"; transcript_biotype "protein_coding"; +chrIII SGD CDS 113770 114024 . + 0 transcript_id "YCL001W-B_mRNA"; gene_id "YCL001W-B"; +chrIII SGD gene 115685 115999 . + . gene_id "YCR001W"; gene_biotype "protein_coding"; +chrIII SGD transcript 115685 115999 . + . transcript_id "YCR001W_mRNA"; gene_id "YCR001W"; transcript_biotype "protein_coding"; +chrIII SGD CDS 115685 115999 . + 0 transcript_id "YCR001W_mRNA"; gene_id "YCR001W"; +chrIII SGD gene 116959 118403 . - . gene_id "YCR002C"; gene_biotype "protein_coding"; +chrIII SGD transcript 116959 118403 . - . transcript_id "YCR002C_id005"; gene_id "YCR002C"; gene_name "CDC10"; transcript_biotype "protein_coding"; +chrIII SGD exon 116959 118403 . - . transcript_id "YCR002C_id005"; gene_id "YCR002C"; gene_name "CDC10"; +chrIII SGD transcript 117380 118348 . - . transcript_id "YCR002C_id001"; gene_id "YCR002C"; gene_name "CDC10"; transcript_biotype "protein_coding"; +chrIII SGD exon 117380 118348 . - 0 transcript_id "YCR002C_id001"; gene_name "CDC10"; gene_id "YCR002C"; +chrIII SGD gene 118598 119351 . + . gene_id "YCR003W"; gene_biotype "protein_coding"; +chrIII SGD transcript 118598 119351 . + . transcript_id "YCR003W_id001"; gene_id "YCR003W"; gene_name "MRPL32"; transcript_biotype "protein_coding"; +chrIII SGD exon 118598 119351 . + . transcript_id "YCR003W_id001"; gene_id "YCR003W"; gene_name "MRPL32"; +chrIII SGD transcript 118620 119171 . + . transcript_id "YCR003W_id002"; gene_id "YCR003W"; gene_name "MRPL32"; transcript_biotype "protein_coding"; +chrIII SGD exon 118620 119171 . + 0 transcript_id "YCR003W_id002"; gene_name "MRPL32"; gene_id "YCR003W"; +chrIII SGD gene 119175 120518 . - . gene_id "YCR004C"; gene_biotype "protein_coding"; +chrIII SGD transcript 119175 120518 . - . transcript_id "YCR004C_id004"; gene_id "YCR004C"; gene_name "YCP4"; transcript_biotype "protein_coding"; +chrIII SGD exon 119175 120518 . - . transcript_id "YCR004C_id004"; gene_id "YCR004C"; gene_name "YCP4"; +chrIII SGD transcript 119575 120318 . - . transcript_id "YCR004C_id001"; gene_id "YCR004C"; gene_name "YCP4"; transcript_biotype "protein_coding"; +chrIII SGD exon 119575 120318 . - 0 transcript_id "YCR004C_id001"; gene_name "YCP4"; gene_id "YCR004C"; +chrIII SGD gene 120666 122383 . - . gene_id "YCR005C"; gene_biotype "protein_coding"; +chrIII SGD transcript 120666 122383 . - . transcript_id "YCR005C_id001"; gene_id "YCR005C"; gene_name "CIT2"; transcript_biotype "protein_coding"; +chrIII SGD exon 120666 122383 . - . transcript_id "YCR005C_id001"; gene_id "YCR005C"; gene_name "CIT2"; +chrIII SGD transcript 120946 122328 . - . transcript_id "YCR005C_id002"; gene_id "YCR005C"; gene_name "CIT2"; transcript_biotype "protein_coding"; +chrIII SGD exon 120946 122328 . - 0 transcript_id "YCR005C_id002"; gene_name "CIT2"; gene_id "YCR005C"; +chrIII SGD gene 122530 123003 . - . gene_id "YCR006C"; gene_biotype "protein_coding"; +chrIII SGD transcript 122530 123003 . - . transcript_id "YCR006C_id001"; gene_id "YCR006C"; transcript_biotype "protein_coding"; +chrIII SGD exon 122530 123003 . - 0 transcript_id "YCR006C_id001"; gene_id "YCR006C"; +chrIII SGD gene 123577 123648 . - . gene_id "YNCC0004C"; gene_biotype "ncRNA"; +chrIII SGD transcript 123577 123648 . - . transcript_id "YNCC0004C_tRNA"; gene_id "YNCC0004C"; gene_name "SUF2"; transcript_biotype "ncRNA"; +chrIII SGD exon 123577 123648 . - . transcript_id "YNCC0004C_tRNA"; gene_name "SUF2"; gene_id "YNCC0004C"; +chrIII SGD gene 125846 127390 . - . gene_id "YCR007C"; gene_biotype "protein_coding"; +chrIII SGD transcript 125846 127390 . - . transcript_id "YCR007C_id002"; gene_id "YCR007C"; gene_name "DFP3"; transcript_biotype "protein_coding"; +chrIII SGD exon 125846 127390 . - . transcript_id "YCR007C_id002"; gene_id "YCR007C"; gene_name "DFP3"; +chrIII SGD transcript 126011 126730 . - . transcript_id "YCR007C_id001"; gene_id "YCR007C"; gene_name "DFP3"; transcript_biotype "protein_coding"; +chrIII SGD exon 126011 126730 . - 0 transcript_id "YCR007C_id001"; gene_name "DFP3"; gene_id "YCR007C"; +chrIII SGD gene 127716 127789 . + . gene_id "YNCC0005W"; gene_biotype "ncRNA"; +chrIII SGD transcript 127716 127789 . + . transcript_id "YNCC0005W_tRNA"; gene_id "YNCC0005W"; transcript_biotype "ncRNA"; +chrIII SGD exon 127716 127789 . + . transcript_id "YNCC0005W_tRNA"; gene_id "YNCC0005W"; +chrIII SGD gene 127988 130539 . + . gene_id "YCR008W"; gene_biotype "protein_coding"; +chrIII SGD transcript 127988 130539 . + . transcript_id "YCR008W_id002"; gene_id "YCR008W"; gene_name "SAT4"; transcript_biotype "protein_coding"; +chrIII SGD exon 127988 130539 . + . transcript_id "YCR008W_id002"; gene_id "YCR008W"; gene_name "SAT4"; +chrIII SGD transcript 128470 130281 . + . transcript_id "YCR008W_id001"; gene_id "YCR008W"; gene_name "SAT4"; transcript_biotype "protein_coding"; +chrIII SGD exon 128470 130281 . + 0 transcript_id "YCR008W_id001"; gene_name "SAT4"; gene_id "YCR008W"; +chrIII SGD gene 130063 131598 . - . gene_id "YCR009C"; gene_biotype "protein_coding"; +chrIII SGD transcript 130063 131598 . - . transcript_id "YCR009C_id001"; gene_id "YCR009C"; gene_name "RVS161"; transcript_biotype "protein_coding"; +chrIII SGD exon 130063 131598 . - . transcript_id "YCR009C_id001"; gene_id "YCR009C"; gene_name "RVS161"; +chrIII SGD transcript 130745 131542 . - . transcript_id "YCR009C_id002"; gene_id "YCR009C"; gene_name "RVS161"; transcript_biotype "protein_coding"; +chrIII SGD exon 130745 131542 . - 0 transcript_id "YCR009C_id002"; gene_name "RVS161"; gene_id "YCR009C"; +chrIII SGD gene 132091 133444 . - . gene_id "YCR010C"; gene_biotype "protein_coding"; +chrIII SGD transcript 132091 133444 . - . transcript_id "YCR010C_id003"; gene_id "YCR010C"; gene_name "ADY2"; transcript_biotype "protein_coding"; +chrIII SGD exon 132091 133444 . - . transcript_id "YCR010C_id003"; gene_id "YCR010C"; gene_name "ADY2"; +chrIII SGD transcript 132273 133124 . - . transcript_id "YCR010C_id001"; gene_id "YCR010C"; gene_name "ADY2"; transcript_biotype "protein_coding"; +chrIII SGD exon 132273 133124 . - 0 transcript_id "YCR010C_id001"; gene_name "ADY2"; gene_id "YCR010C"; +chrIII SGD gene 133667 137024 . - . gene_id "YCR011C"; gene_biotype "protein_coding"; +chrIII SGD transcript 133667 137024 . - . transcript_id "YCR011C_id003"; gene_id "YCR011C"; gene_name "ADP1"; transcript_biotype "protein_coding"; +chrIII SGD exon 133667 137024 . - . transcript_id "YCR011C_id003"; gene_id "YCR011C"; gene_name "ADP1"; +chrIII SGD transcript 133724 136873 . - . transcript_id "YCR011C_id001"; gene_id "YCR011C"; gene_name "ADP1"; transcript_biotype "protein_coding"; +chrIII SGD exon 133724 136873 . - 0 transcript_id "YCR011C_id001"; gene_name "ADP1"; gene_id "YCR011C"; +chrIII SGD gene 137624 139160 . + . gene_id "YCR012W"; gene_biotype "protein_coding"; +chrIII SGD transcript 137624 139160 . + . transcript_id "YCR012W_id001"; gene_id "YCR012W"; gene_name "PGK1"; transcript_biotype "protein_coding"; +chrIII SGD exon 137624 139160 . + . transcript_id "YCR012W_id001"; gene_id "YCR012W"; gene_name "PGK1"; +chrIII SGD transcript 137746 138996 . + . transcript_id "YCR012W_id005"; gene_id "YCR012W"; gene_name "PGK1"; transcript_biotype "protein_coding"; +chrIII SGD exon 137746 138996 . + 0 transcript_id "YCR012W_id005"; gene_name "PGK1"; gene_id "YCR012W"; +chrIII SGD gene 138402 139049 . - . gene_id "YCR013C"; gene_biotype "protein_coding"; +chrIII SGD transcript 138402 139049 . - . transcript_id "YCR013C_mRNA"; gene_id "YCR013C"; transcript_biotype "protein_coding"; +chrIII SGD CDS 138402 139049 . - 0 transcript_id "YCR013C_mRNA"; gene_id "YCR013C"; +chrIII SGD gene 139185 140933 . - . gene_id "YCR014C"; gene_biotype "protein_coding"; +chrIII SGD transcript 139185 140933 . - . transcript_id "YCR014C_mRNA"; gene_id "YCR014C"; gene_name "POL4"; transcript_biotype "protein_coding"; +chrIII SGD CDS 139185 140933 . - 0 transcript_id "YCR014C_mRNA"; gene_name "POL4"; gene_id "YCR014C"; +chrIII SGD gene 141143 142485 . - . gene_id "YCR015C"; gene_biotype "protein_coding"; +chrIII SGD transcript 141143 142485 . - . transcript_id "YCR015C_id001"; gene_id "YCR015C"; gene_name "CTO1"; transcript_biotype "protein_coding"; +chrIII SGD exon 141143 142485 . - . transcript_id "YCR015C_id001"; gene_id "YCR015C"; gene_name "CTO1"; +chrIII SGD transcript 141217 142170 . - . transcript_id "YCR015C_id002"; gene_id "YCR015C"; gene_name "CTO1"; transcript_biotype "protein_coding"; +chrIII SGD exon 141217 142170 . - 0 transcript_id "YCR015C_id002"; gene_name "CTO1"; gene_id "YCR015C"; +chrIII SGD gene 142364 142546 . - . gene_id "YNCC0006C"; gene_biotype "ncRNA"; +chrIII SGD transcript 142364 142546 . - . transcript_id "YNCC0006C_snoRNA"; gene_id "YNCC0006C"; gene_name "SNR33"; transcript_biotype "ncRNA"; +chrIII SGD exon 142364 142546 . - . transcript_id "YNCC0006C_snoRNA"; gene_name "SNR33"; gene_id "YNCC0006C"; +chrIII SGD gene 142701 142771 . - . gene_id "YNCC0007C"; gene_biotype "ncRNA"; +chrIII SGD transcript 142701 142771 . - . transcript_id "YNCC0007C_tRNA"; gene_id "YNCC0007C"; gene_name "SUF16"; transcript_biotype "ncRNA"; +chrIII SGD exon 142701 142771 . - . transcript_id "YNCC0007C_tRNA"; gene_name "SUF16"; gene_id "YNCC0007C"; +chrIII SGD gene 143608 144796 . + . gene_id "YCR016W"; gene_biotype "protein_coding"; +chrIII SGD transcript 143608 144796 . + . transcript_id "YCR016W_id001"; gene_id "YCR016W"; transcript_biotype "protein_coding"; +chrIII SGD exon 143608 144796 . + . transcript_id "YCR016W_id001"; gene_id "YCR016W"; +chrIII SGD transcript 143634 144506 . + . transcript_id "YCR016W_id002"; gene_id "YCR016W"; transcript_biotype "protein_coding"; +chrIII SGD exon 143634 144506 . + 0 transcript_id "YCR016W_id002"; gene_id "YCR016W"; +chrIII SGD gene 144583 147703 . - . gene_id "YCR017C"; gene_biotype "protein_coding"; +chrIII SGD transcript 144583 147703 . - . transcript_id "YCR017C_id001"; gene_id "YCR017C"; gene_name "CWH43"; transcript_biotype "protein_coding"; +chrIII SGD exon 144583 147703 . - . transcript_id "YCR017C_id001"; gene_id "YCR017C"; gene_name "CWH43"; +chrIII SGD transcript 144773 147634 . - . transcript_id "YCR017C_id002"; gene_id "YCR017C"; gene_name "CWH43"; transcript_biotype "protein_coding"; +chrIII SGD exon 144773 147634 . - 0 transcript_id "YCR017C_id002"; gene_name "CWH43"; gene_id "YCR017C"; +chrIII SGD gene 148238 148903 . - . gene_id "YCR018C"; gene_biotype "protein_coding"; +chrIII SGD transcript 148238 148903 . - . transcript_id "YCR018C_mRNA"; gene_id "YCR018C"; gene_name "SRD1"; transcript_biotype "protein_coding"; +chrIII SGD CDS 148238 148903 . - 0 transcript_id "YCR018C_mRNA"; gene_name "SRD1"; gene_id "YCR018C"; +chrIII SGD gene 149920 149991 . + . gene_id "YNCC0008W"; gene_biotype "ncRNA"; +chrIII SGD transcript 149920 149991 . + . transcript_id "YNCC0008W_tRNA"; gene_id "YNCC0008W"; transcript_biotype "ncRNA"; +chrIII SGD exon 149920 149991 . + . transcript_id "YNCC0008W_tRNA"; gene_id "YNCC0008W"; +chrIII SGD gene 151284 151356 . - . gene_id "YNCC0009C"; gene_biotype "ncRNA"; +chrIII SGD transcript 151284 151356 . - . transcript_id "YNCC0009C_tRNA"; gene_id "YNCC0009C"; transcript_biotype "ncRNA"; +chrIII SGD exon 151284 151356 . - . transcript_id "YNCC0009C_tRNA"; gene_id "YNCC0009C"; +chrIII SGD gene 151608 151862 . - . gene_id "YCR018C-A"; gene_biotype "protein_coding"; +chrIII SGD transcript 151608 151862 . - . transcript_id "YCR018C-A_mRNA"; gene_id "YCR018C-A"; transcript_biotype "protein_coding"; +chrIII SGD CDS 151608 151862 . - 0 transcript_id "YCR018C-A_mRNA"; gene_id "YCR018C-A"; +chrIII SGD gene 152558 154042 . + . gene_id "YCR019W"; gene_biotype "protein_coding"; +chrIII SGD transcript 152558 154042 . + . transcript_id "YCR019W_id002"; gene_id "YCR019W"; gene_name "MAK32"; transcript_biotype "protein_coding"; +chrIII SGD exon 152558 154042 . + . transcript_id "YCR019W_id002"; gene_id "YCR019W"; gene_name "MAK32"; +chrIII SGD transcript 152837 153928 . + . transcript_id "YCR019W_id001"; gene_id "YCR019W"; gene_name "MAK32"; transcript_biotype "protein_coding"; +chrIII SGD exon 152837 153928 . + 0 transcript_id "YCR019W_id001"; gene_name "MAK32"; gene_id "YCR019W"; +chrIII SGD gene 154012 154659 . - . gene_id "YCR020C"; gene_biotype "protein_coding"; +chrIII SGD transcript 154012 154659 . - . transcript_id "YCR020C_id001"; gene_id "YCR020C"; gene_name "PET18"; transcript_biotype "protein_coding"; +chrIII SGD exon 154012 154659 . - 0 transcript_id "YCR020C_id001"; gene_name "PET18"; gene_id "YCR020C"; +chrIII SGD gene 154413 155114 . - . gene_id "YCR020C-A"; gene_biotype "protein_coding"; +chrIII SGD transcript 154413 155114 . - . transcript_id "YCR020C-A_id001"; gene_id "YCR020C-A"; gene_name "MAK31"; transcript_biotype "protein_coding"; +chrIII SGD exon 154413 155114 . - . transcript_id "YCR020C-A_id001"; gene_id "YCR020C-A"; gene_name "MAK31"; +chrIII SGD transcript 154830 155096 . - . transcript_id "YCR020C-A_id002"; gene_id "YCR020C-A"; gene_name "MAK31"; transcript_biotype "protein_coding"; +chrIII SGD exon 154830 155096 . - 0 transcript_id "YCR020C-A_id002"; gene_name "MAK31"; gene_id "YCR020C-A"; +chrIII SGD gene 155262 156072 . + . gene_id "YCR020W-B"; gene_biotype "protein_coding"; +chrIII SGD transcript 155262 156072 . + . transcript_id "YCR020W-B_id005"; gene_id "YCR020W-B"; gene_name "HTL1"; transcript_biotype "protein_coding"; +chrIII SGD exon 155262 156072 . + . transcript_id "YCR020W-B_id005"; gene_id "YCR020W-B"; gene_name "HTL1"; +chrIII SGD transcript 155320 155556 . + . transcript_id "YCR020W-B_id001"; gene_id "YCR020W-B"; gene_name "HTL1"; transcript_biotype "protein_coding"; +chrIII SGD exon 155320 155556 . + 0 transcript_id "YCR020W-B_id001"; gene_name "HTL1"; gene_id "YCR020W-B"; +chrIII SGD gene 155930 157220 . - . gene_id "YCR021C"; gene_biotype "protein_coding"; +chrIII SGD transcript 155930 157220 . - . transcript_id "YCR021C_id004"; gene_id "YCR021C"; gene_name "HSP30"; transcript_biotype "protein_coding"; +chrIII SGD exon 155930 157220 . - . transcript_id "YCR021C_id004"; gene_id "YCR021C"; gene_name "HSP30"; +chrIII SGD transcript 156109 157107 . - . transcript_id "YCR021C_id001"; gene_id "YCR021C"; gene_name "HSP30"; transcript_biotype "protein_coding"; +chrIII SGD exon 156109 157107 . - 0 transcript_id "YCR021C_id001"; gene_name "HSP30"; gene_id "YCR021C"; +chrIII SGD gene 157141 158029 . - . gene_id "YCR022C"; gene_biotype "protein_coding"; +chrIII SGD transcript 157141 158029 . - . transcript_id "YCR022C_id001"; gene_id "YCR022C"; transcript_biotype "protein_coding"; +chrIII SGD exon 157141 158029 . - . transcript_id "YCR022C_id001"; gene_id "YCR022C"; +chrIII SGD transcript 157421 157765 . - . transcript_id "YCR022C_id002"; gene_id "YCR022C"; transcript_biotype "protein_coding"; +chrIII SGD exon 157421 157765 . - 0 transcript_id "YCR022C_id002"; gene_id "YCR022C"; +chrIII SGD gene 158194 160450 . - . gene_id "YCR023C"; gene_biotype "protein_coding"; +chrIII SGD transcript 158194 160450 . - . transcript_id "YCR023C_id001"; gene_id "YCR023C"; transcript_biotype "protein_coding"; +chrIII SGD exon 158194 160450 . - . transcript_id "YCR023C_id001"; gene_id "YCR023C"; +chrIII SGD transcript 158538 160373 . - . transcript_id "YCR023C_id003"; gene_id "YCR023C"; transcript_biotype "protein_coding"; +chrIII SGD exon 158538 160373 . - 0 transcript_id "YCR023C_id003"; gene_id "YCR023C"; +chrIII SGD gene 160626 162378 . - . gene_id "YCR024C"; gene_biotype "protein_coding"; +chrIII SGD transcript 160626 162378 . - . transcript_id "YCR024C_id001"; gene_id "YCR024C"; gene_name "SLM5"; transcript_biotype "protein_coding"; +chrIII SGD exon 160626 162378 . - . transcript_id "YCR024C_id001"; gene_id "YCR024C"; gene_name "SLM5"; +chrIII SGD transcript 160744 162222 . - . transcript_id "YCR024C_id004"; gene_id "YCR024C"; gene_name "SLM5"; transcript_biotype "protein_coding"; +chrIII SGD exon 160744 162222 . - 0 transcript_id "YCR024C_id004"; gene_name "SLM5"; gene_id "YCR024C"; +chrIII SGD gene 162400 163063 . - . gene_id "YCR024C-B"; gene_biotype "protein_coding"; +chrIII SGD transcript 162400 163063 . - . transcript_id "YCR024C-B_id001"; gene_id "YCR024C-B"; transcript_biotype "protein_coding"; +chrIII SGD exon 162400 163063 . - . transcript_id "YCR024C-B_id001"; gene_id "YCR024C-B"; +chrIII SGD transcript 162599 162865 . - . transcript_id "YCR024C-B_id003"; gene_id "YCR024C-B"; transcript_biotype "protein_coding"; +chrIII SGD exon 162599 162865 . - 0 transcript_id "YCR024C-B_id003"; gene_id "YCR024C-B"; +chrIII SGD gene 162630 163275 . - . gene_id "YCR024C-A"; gene_biotype "protein_coding"; +chrIII SGD transcript 162630 163275 . - . transcript_id "YCR024C-A_id001"; gene_id "YCR024C-A"; gene_name "PMP1"; transcript_biotype "protein_coding"; +chrIII SGD exon 162630 163275 . - . transcript_id "YCR024C-A_id001"; gene_id "YCR024C-A"; gene_name "PMP1"; +chrIII SGD transcript 162945 163067 . - . transcript_id "YCR024C-A_id004"; gene_id "YCR024C-A"; gene_name "PMP1"; transcript_biotype "protein_coding"; +chrIII SGD exon 162945 163067 . - 0 transcript_id "YCR024C-A_id004"; gene_name "PMP1"; gene_id "YCR024C-A"; +chrIII SGD gene 163422 164478 . - . gene_id "YCR025C"; gene_biotype "protein_coding"; +chrIII SGD transcript 163422 164478 . - . transcript_id "YCR025C_id001"; gene_id "YCR025C"; transcript_biotype "protein_coding"; +chrIII SGD exon 163422 164478 . - . transcript_id "YCR025C_id001"; gene_id "YCR025C"; +chrIII SGD transcript 163446 163856 . - . transcript_id "YCR025C_id002"; gene_id "YCR025C"; transcript_biotype "protein_coding"; +chrIII SGD exon 163446 163856 . - 0 transcript_id "YCR025C_id002"; gene_id "YCR025C"; +chrIII SGD gene 163871 166413 . - . gene_id "YCR026C"; gene_biotype "protein_coding"; +chrIII SGD transcript 163871 166413 . - . transcript_id "YCR026C_id002"; gene_id "YCR026C"; gene_name "NPP1"; transcript_biotype "protein_coding"; +chrIII SGD exon 163871 166413 . - . transcript_id "YCR026C_id002"; gene_id "YCR026C"; gene_name "NPP1"; +chrIII SGD transcript 164111 166339 . - . transcript_id "YCR026C_id001"; gene_id "YCR026C"; gene_name "NPP1"; transcript_biotype "protein_coding"; +chrIII SGD exon 164111 166339 . - 0 transcript_id "YCR026C_id001"; gene_name "NPP1"; gene_id "YCR026C"; +chrIII SGD gene 166735 168190 . - . gene_id "YCR027C"; gene_biotype "protein_coding"; +chrIII SGD transcript 166735 168190 . - . transcript_id "YCR027C_id005"; gene_id "YCR027C"; gene_name "RHB1"; transcript_biotype "protein_coding"; +chrIII SGD exon 166735 168190 . - . transcript_id "YCR027C_id005"; gene_id "YCR027C"; gene_name "RHB1"; +chrIII SGD transcript 167370 167999 . - . transcript_id "YCR027C_id001"; gene_id "YCR027C"; gene_name "RHB1"; transcript_biotype "protein_coding"; +chrIII SGD exon 167370 167999 . - 0 transcript_id "YCR027C_id001"; gene_name "RHB1"; gene_id "YCR027C"; +chrIII SGD gene 168301 168372 . - . gene_id "YNCC0010C"; gene_biotype "ncRNA"; +chrIII SGD transcript 168301 168372 . - . transcript_id "YNCC0010C_tRNA"; gene_id "YNCC0010C"; transcript_biotype "ncRNA"; +chrIII SGD exon 168301 168372 . - . transcript_id "YNCC0010C_tRNA"; gene_id "YNCC0010C"; +chrIII SGD gene 170085 172542 . - . gene_id "YCR028C"; gene_biotype "protein_coding"; +chrIII SGD transcript 170085 172542 . - . transcript_id "YCR028C_id001"; gene_id "YCR028C"; gene_name "FEN2"; transcript_biotype "protein_coding"; +chrIII SGD exon 170085 172542 . - . transcript_id "YCR028C_id001"; gene_id "YCR028C"; gene_name "FEN2"; +chrIII SGD transcript 170886 172424 . - . transcript_id "YCR028C_id002"; gene_id "YCR028C"; gene_name "FEN2"; transcript_biotype "protein_coding"; +chrIII SGD exon 170886 172424 . - 0 transcript_id "YCR028C_id002"; gene_name "FEN2"; gene_id "YCR028C"; +chrIII SGD gene 172658 173501 . - . gene_id "YCR028C-A"; gene_biotype "protein_coding"; +chrIII SGD transcript 172658 173501 . - . transcript_id "YCR028C-A_id002"; gene_id "YCR028C-A"; gene_name "RIM1"; transcript_biotype "protein_coding"; +chrIII SGD exon 172658 173501 . - . transcript_id "YCR028C-A_id002"; gene_id "YCR028C-A"; gene_name "RIM1"; +chrIII SGD transcript 172950 173440 . - . transcript_id "YCR028C-A_id001"; gene_id "YCR028C-A"; gene_name "RIM1"; transcript_biotype "protein_coding"; +chrIII SGD exon 172950 173115 . - 1 transcript_id "YCR028C-A_id001"; gene_name "RIM1"; gene_id "YCR028C-A"; +chrIII SGD exon 173199 173440 . - 0 transcript_id "YCR028C-A_id001"; gene_name "RIM1"; gene_id "YCR028C-A"; +chrIII SGD gene 173455 177398 . - . gene_id "YCR030C"; gene_biotype "protein_coding"; +chrIII SGD transcript 173455 177398 . - . transcript_id "YCR030C_id005"; gene_id "YCR030C"; gene_name "SYP1"; transcript_biotype "protein_coding"; +chrIII SGD exon 173455 177398 . - . transcript_id "YCR030C_id005"; gene_id "YCR030C"; gene_name "SYP1"; +chrIII SGD transcript 173826 176438 . - . transcript_id "YCR030C_id001"; gene_id "YCR030C"; gene_name "SYP1"; transcript_biotype "protein_coding"; +chrIII SGD exon 173826 176438 . - 0 transcript_id "YCR030C_id001"; gene_name "SYP1"; gene_id "YCR030C"; +chrIII SGD gene 176581 178248 . - . gene_id "YCR031C"; gene_biotype "protein_coding"; +chrIII SGD transcript 176581 178248 . - . transcript_id "YCR031C_id001"; gene_id "YCR031C"; gene_name "RPS14A"; transcript_biotype "protein_coding"; +chrIII SGD exon 176581 178248 . - . transcript_id "YCR031C_id001"; gene_id "YCR031C"; gene_name "RPS14A"; +chrIII SGD gene 177183 177282 . + . gene_id "YNCC0011W"; gene_biotype "ncRNA"; +chrIII SGD transcript 177183 177282 . + . transcript_id "YNCC0011W_snoRNA"; gene_id "YNCC0011W"; gene_name "SNR65"; transcript_biotype "ncRNA"; +chrIII SGD exon 177183 177282 . + . transcript_id "YNCC0011W_snoRNA"; gene_name "SNR65"; gene_id "YNCC0011W"; +chrIII SGD transcript 177500 178220 . - . transcript_id "YCR031C_id002"; gene_id "YCR031C"; gene_name "RPS14A"; transcript_biotype "protein_coding"; +chrIII SGD exon 177500 177906 . - 2 transcript_id "YCR031C_id002"; gene_name "RPS14A"; gene_id "YCR031C"; +chrIII SGD exon 178214 178220 . - 0 transcript_id "YCR031C_id002"; gene_name "RPS14A"; gene_id "YCR031C"; +chrIII SGD gene 178610 178798 . - . gene_id "YNCC0012C"; gene_biotype "ncRNA"; +chrIII SGD transcript 178610 178798 . - . transcript_id "YNCC0012C_snoRNA"; gene_id "YNCC0012C"; gene_name "SNR189"; transcript_biotype "ncRNA"; +chrIII SGD exon 178610 178798 . - . transcript_id "YNCC0012C_snoRNA"; gene_name "SNR189"; gene_id "YNCC0012C"; +chrIII SGD gene 179520 186023 . + . gene_id "YCR032W"; gene_biotype "protein_coding"; +chrIII SGD transcript 179520 186023 . + . transcript_id "YCR032W_mRNA"; gene_id "YCR032W"; gene_name "BPH1"; transcript_biotype "protein_coding"; +chrIII SGD CDS 179520 186023 . + 0 transcript_id "YCR032W_mRNA"; gene_name "BPH1"; gene_id "YCR032W"; +chrIII SGD gene 186489 190169 . + . gene_id "YCR033W"; gene_biotype "protein_coding"; +chrIII SGD transcript 186489 190169 . + . transcript_id "YCR033W_mRNA"; gene_id "YCR033W"; gene_name "SNT1"; transcript_biotype "protein_coding"; +chrIII SGD CDS 186489 190169 . + 0 transcript_id "YCR033W_mRNA"; gene_name "SNT1"; gene_id "YCR033W"; +chrIII SGD gene 190538 191958 . + . gene_id "YCR034W"; gene_biotype "protein_coding"; +chrIII SGD transcript 190538 191958 . + . transcript_id "YCR034W_id002"; gene_id "YCR034W"; gene_name "ELO2"; transcript_biotype "protein_coding"; +chrIII SGD exon 190538 191958 . + . transcript_id "YCR034W_id002"; gene_id "YCR034W"; gene_name "ELO2"; +chrIII SGD transcript 190592 191635 . + . transcript_id "YCR034W_id001"; gene_id "YCR034W"; gene_name "ELO2"; transcript_biotype "protein_coding"; +chrIII SGD exon 190592 191635 . + 0 transcript_id "YCR034W_id001"; gene_name "ELO2"; gene_id "YCR034W"; +chrIII SGD gene 191706 193341 . - . gene_id "YCR035C"; gene_biotype "protein_coding"; +chrIII SGD transcript 191706 193341 . - . transcript_id "YCR035C_id001"; gene_id "YCR035C"; gene_name "RRP43"; transcript_biotype "protein_coding"; +chrIII SGD exon 191706 193341 . - . transcript_id "YCR035C_id001"; gene_id "YCR035C"; gene_name "RRP43"; +chrIII SGD transcript 191834 193018 . - . transcript_id "YCR035C_id003"; gene_id "YCR035C"; gene_name "RRP43"; transcript_biotype "protein_coding"; +chrIII SGD exon 191834 193018 . - 0 transcript_id "YCR035C_id003"; gene_name "RRP43"; gene_id "YCR035C"; +chrIII SGD gene 193253 194483 . + . gene_id "YCR036W"; gene_biotype "protein_coding"; +chrIII SGD transcript 193253 194483 . + . transcript_id "YCR036W_id002"; gene_id "YCR036W"; gene_name "RBK1"; transcript_biotype "protein_coding"; +chrIII SGD exon 193253 194483 . + . transcript_id "YCR036W_id002"; gene_id "YCR036W"; gene_name "RBK1"; +chrIII SGD transcript 193297 194298 . + . transcript_id "YCR036W_id001"; gene_id "YCR036W"; gene_name "RBK1"; transcript_biotype "protein_coding"; +chrIII SGD exon 193297 194298 . + 0 transcript_id "YCR036W_id001"; gene_name "RBK1"; gene_id "YCR036W"; +chrIII SGD gene 194414 197185 . - . gene_id "YCR037C"; gene_biotype "protein_coding"; +chrIII SGD transcript 194414 197185 . - . transcript_id "YCR037C_id001"; gene_id "YCR037C"; gene_name "PHO87"; transcript_biotype "protein_coding"; +chrIII SGD exon 194414 197185 . - 0 transcript_id "YCR037C_id001"; gene_name "PHO87"; gene_id "YCR037C"; +chrIII SGD gene 197621 199549 . - . gene_id "YCR038C"; gene_biotype "protein_coding"; +chrIII SGD transcript 197621 199549 . - . transcript_id "YCR038C_mRNA"; gene_id "YCR038C"; gene_name "BUD5"; transcript_biotype "protein_coding"; +chrIII SGD CDS 197621 199549 . - 0 transcript_id "YCR038C_mRNA"; gene_name "BUD5"; gene_id "YCR038C"; +chrIII SGD gene 199293 199418 . + . gene_id "YCR038W-A"; gene_biotype "protein_coding"; +chrIII SGD transcript 199293 199418 . + . transcript_id "YCR038W-A_mRNA"; gene_id "YCR038W-A"; transcript_biotype "protein_coding"; +chrIII SGD CDS 199293 199418 . + 0 transcript_id "YCR038W-A_mRNA"; gene_id "YCR038W-A"; +chrIII SGD gene 199546 200178 . - . gene_id "YCR039C"; gene_biotype "protein_coding"; +chrIII SGD transcript 199546 200178 . - . transcript_id "YCR039C_mRNA"; gene_id "YCR039C"; gene_name "MATALPHA2"; transcript_biotype "protein_coding"; +chrIII SGD CDS 199546 200178 . - 0 transcript_id "YCR039C_mRNA"; gene_name "MATALPHA2"; gene_id "YCR039C"; +chrIII SGD gene 200442 200969 . + . gene_id "YCR040W"; gene_biotype "protein_coding"; +chrIII SGD transcript 200442 200969 . + . transcript_id "YCR040W_mRNA"; gene_id "YCR040W"; gene_name "MATALPHA1"; transcript_biotype "protein_coding"; +chrIII SGD CDS 200442 200969 . + 0 transcript_id "YCR040W_mRNA"; gene_name "MATALPHA1"; gene_id "YCR040W"; +chrIII SGD gene 200911 201243 . + . gene_id "YCR041W"; gene_biotype "protein_coding"; +chrIII SGD transcript 200911 201243 . + . transcript_id "YCR041W_mRNA"; gene_id "YCR041W"; transcript_biotype "protein_coding"; +chrIII SGD CDS 200911 201243 . + 0 transcript_id "YCR041W_mRNA"; gene_id "YCR041W"; +chrIII SGD gene 201174 205397 . - . gene_id "YCR042C"; gene_biotype "protein_coding"; +chrIII SGD transcript 201174 205397 . - . transcript_id "YCR042C_mRNA"; gene_id "YCR042C"; gene_name "TAF2"; transcript_biotype "protein_coding"; +chrIII SGD CDS 201174 205397 . - 0 transcript_id "YCR042C_mRNA"; gene_name "TAF2"; gene_id "YCR042C"; +chrIII SGD gene 206021 206677 . - . gene_id "YCR043C"; gene_biotype "protein_coding"; +chrIII SGD transcript 206021 206677 . - . transcript_id "YCR043C_id001"; gene_id "YCR043C"; transcript_biotype "protein_coding"; +chrIII SGD exon 206021 206677 . - . transcript_id "YCR043C_id001"; gene_id "YCR043C"; +chrIII SGD transcript 206261 206644 . - . transcript_id "YCR043C_id004"; gene_id "YCR043C"; transcript_biotype "protein_coding"; +chrIII SGD exon 206261 206644 . - 0 transcript_id "YCR043C_id004"; gene_id "YCR043C"; +chrIII SGD gene 206715 207968 . - . gene_id "YCR044C"; gene_biotype "protein_coding"; +chrIII SGD transcript 206715 207968 . - . transcript_id "YCR044C_id001"; gene_id "YCR044C"; gene_name "PER1"; transcript_biotype "protein_coding"; +chrIII SGD exon 206715 207968 . - . transcript_id "YCR044C_id001"; gene_id "YCR044C"; gene_name "PER1"; +chrIII SGD transcript 206877 207950 . - . transcript_id "YCR044C_id002"; gene_id "YCR044C"; gene_name "PER1"; transcript_biotype "protein_coding"; +chrIII SGD exon 206877 207950 . - 0 transcript_id "YCR044C_id002"; gene_name "PER1"; gene_id "YCR044C"; +chrIII SGD gene 208128 209915 . + . gene_id "YCR045W-A"; gene_biotype "protein_coding"; +chrIII SGD transcript 208128 209915 . + . transcript_id "YCR045W-A_id003"; gene_id "YCR045W-A"; transcript_biotype "protein_coding"; +chrIII SGD exon 208128 209915 . + . transcript_id "YCR045W-A_id003"; gene_id "YCR045W-A"; +chrIII SGD gene 208135 209610 . - . gene_id "YCR045C"; gene_biotype "protein_coding"; +chrIII SGD transcript 208135 209610 . - . transcript_id "YCR045C_mRNA"; gene_id "YCR045C"; gene_name "RRT12"; transcript_biotype "protein_coding"; +chrIII SGD CDS 208135 209610 . - 0 transcript_id "YCR045C_mRNA"; gene_name "RRT12"; gene_id "YCR045C"; +chrIII SGD transcript 208751 209101 . + . transcript_id "YCR045W-A_id001"; gene_id "YCR045W-A"; transcript_biotype "protein_coding"; +chrIII SGD exon 208751 209101 . + 0 transcript_id "YCR045W-A_id001"; gene_id "YCR045W-A"; +chrIII SGD gene 209914 210423 . - . gene_id "YCR046C"; gene_biotype "protein_coding"; +chrIII SGD transcript 209914 210423 . - . transcript_id "YCR046C_id001"; gene_id "YCR046C"; gene_name "IMG1"; transcript_biotype "protein_coding"; +chrIII SGD exon 209914 210423 . - 0 transcript_id "YCR046C_id001"; gene_name "IMG1"; gene_id "YCR046C"; +chrIII SGD gene 210517 211672 . - . gene_id "YCR047C"; gene_biotype "protein_coding"; +chrIII SGD transcript 210517 211672 . - . transcript_id "YCR047C_id002"; gene_id "YCR047C"; gene_name "BUD23"; transcript_biotype "protein_coding"; +chrIII SGD exon 210517 211672 . - . transcript_id "YCR047C_id002"; gene_id "YCR047C"; gene_name "BUD23"; +chrIII SGD transcript 210718 211545 . - . transcript_id "YCR047C_id001"; gene_id "YCR047C"; gene_name "BUD23"; transcript_biotype "protein_coding"; +chrIII SGD exon 210718 211545 . - 0 transcript_id "YCR047C_id001"; gene_name "BUD23"; gene_id "YCR047C"; +chrIII SGD gene 211301 211507 . + . gene_id "YCR047W-A"; gene_biotype "protein_coding"; +chrIII SGD transcript 211301 211507 . + . transcript_id "YCR047W-A_mRNA"; gene_id "YCR047W-A"; transcript_biotype "protein_coding"; +chrIII SGD CDS 211301 211507 . + 0 transcript_id "YCR047W-A_mRNA"; gene_id "YCR047W-A"; +chrIII SGD gene 211871 212317 . - . gene_id "YCR049C"; gene_biotype "protein_coding"; +chrIII SGD transcript 211871 212317 . - . transcript_id "YCR049C_mRNA"; gene_id "YCR049C"; transcript_biotype "protein_coding"; +chrIII SGD CDS 211871 212317 . - 0 transcript_id "YCR049C_mRNA"; gene_id "YCR049C"; +chrIII SGD gene 211875 213976 . + . gene_id "YCR048W"; gene_biotype "protein_coding"; +chrIII SGD transcript 211875 213976 . + . transcript_id "YCR048W_id001"; gene_id "YCR048W"; gene_name "ARE1"; transcript_biotype "protein_coding"; +chrIII SGD exon 211875 213976 . + . transcript_id "YCR048W_id001"; gene_id "YCR048W"; gene_name "ARE1"; +chrIII SGD transcript 211929 213761 . + . transcript_id "YCR048W_id006"; gene_id "YCR048W"; gene_name "ARE1"; transcript_biotype "protein_coding"; +chrIII SGD exon 211929 213761 . + 0 transcript_id "YCR048W_id006"; gene_name "ARE1"; gene_id "YCR048W"; +chrIII SGD gene 213464 213772 . - . gene_id "YCR050C"; gene_biotype "protein_coding"; +chrIII SGD transcript 213464 213772 . - . transcript_id "YCR050C_mRNA"; gene_id "YCR050C"; transcript_biotype "protein_coding"; +chrIII SGD CDS 213464 213772 . - 0 transcript_id "YCR050C_mRNA"; gene_id "YCR050C"; +chrIII SGD gene 214062 214998 . + . gene_id "YCR051W"; gene_biotype "protein_coding"; +chrIII SGD transcript 214062 214998 . + . transcript_id "YCR051W_id002"; gene_id "YCR051W"; transcript_biotype "protein_coding"; +chrIII SGD exon 214062 214998 . + . transcript_id "YCR051W_id002"; gene_id "YCR051W"; +chrIII SGD transcript 214071 214739 . + . transcript_id "YCR051W_id001"; gene_id "YCR051W"; transcript_biotype "protein_coding"; +chrIII SGD exon 214071 214739 . + 0 transcript_id "YCR051W_id001"; gene_id "YCR051W"; +chrIII SGD gene 214880 216672 . + . gene_id "YCR052W"; gene_biotype "protein_coding"; +chrIII SGD transcript 214880 216672 . + . transcript_id "YCR052W_id002"; gene_id "YCR052W"; gene_name "RSC6"; transcript_biotype "protein_coding"; +chrIII SGD exon 214880 216672 . + . transcript_id "YCR052W_id002"; gene_id "YCR052W"; gene_name "RSC6"; +chrIII SGD transcript 214994 216445 . + . transcript_id "YCR052W_id001"; gene_id "YCR052W"; gene_name "RSC6"; transcript_biotype "protein_coding"; +chrIII SGD exon 214994 216445 . + 0 transcript_id "YCR052W_id001"; gene_name "RSC6"; gene_id "YCR052W"; +chrIII SGD gene 216570 218393 . + . gene_id "YCR053W"; gene_biotype "protein_coding"; +chrIII SGD transcript 216570 218393 . + . transcript_id "YCR053W_id002"; gene_id "YCR053W"; gene_name "THR4"; transcript_biotype "protein_coding"; +chrIII SGD exon 216570 218393 . + . transcript_id "YCR053W_id002"; gene_id "YCR053W"; gene_name "THR4"; +chrIII SGD transcript 216697 218241 . + . transcript_id "YCR053W_id001"; gene_id "YCR053W"; gene_name "THR4"; transcript_biotype "protein_coding"; +chrIII SGD exon 216697 218241 . + 0 transcript_id "YCR053W_id001"; gene_name "THR4"; gene_id "YCR053W"; +chrIII SGD gene 218147 220117 . - . gene_id "YCR054C"; gene_biotype "protein_coding"; +chrIII SGD transcript 218147 220117 . - . transcript_id "YCR054C_id003"; gene_id "YCR054C"; gene_name "CTR86"; transcript_biotype "protein_coding"; +chrIII SGD exon 218147 220117 . - . transcript_id "YCR054C_id003"; gene_id "YCR054C"; gene_name "CTR86"; +chrIII SGD transcript 218376 220067 . - . transcript_id "YCR054C_id001"; gene_id "YCR054C"; gene_name "CTR86"; transcript_biotype "protein_coding"; +chrIII SGD exon 218376 220067 . - 0 transcript_id "YCR054C_id001"; gene_name "CTR86"; gene_id "YCR054C"; +chrIII SGD gene 220344 223323 . - . gene_id "YCR057C"; gene_biotype "protein_coding"; +chrIII SGD transcript 220344 223323 . - . transcript_id "YCR057C_id001"; gene_id "YCR057C"; gene_name "PWP2"; transcript_biotype "protein_coding"; +chrIII SGD exon 220344 223323 . - . transcript_id "YCR057C_id001"; gene_id "YCR057C"; gene_name "PWP2"; +chrIII SGD transcript 220457 223228 . - . transcript_id "YCR057C_id004"; gene_id "YCR057C"; gene_name "PWP2"; transcript_biotype "protein_coding"; +chrIII SGD exon 220457 223228 . - 0 transcript_id "YCR057C_id004"; gene_name "PWP2"; gene_id "YCR057C"; +chrIII SGD gene 223205 224250 . - . gene_id "YCR059C"; gene_biotype "protein_coding"; +chrIII SGD transcript 223205 224250 . - . transcript_id "YCR059C_id003"; gene_id "YCR059C"; gene_name "YIH1"; transcript_biotype "protein_coding"; +chrIII SGD exon 223205 224250 . - . transcript_id "YCR059C_id003"; gene_id "YCR059C"; gene_name "YIH1"; +chrIII SGD transcript 223454 224230 . - . transcript_id "YCR059C_id001"; gene_id "YCR059C"; gene_name "YIH1"; transcript_biotype "protein_coding"; +chrIII SGD exon 223454 224230 . - 0 transcript_id "YCR059C_id001"; gene_name "YIH1"; gene_id "YCR059C"; +chrIII SGD gene 224399 224734 . + . gene_id "YCR060W"; gene_biotype "protein_coding"; +chrIII SGD transcript 224399 224734 . + . transcript_id "YCR060W_id001"; gene_id "YCR060W"; gene_name "TAH1"; transcript_biotype "protein_coding"; +chrIII SGD exon 224399 224734 . + 0 transcript_id "YCR060W_id001"; gene_name "TAH1"; gene_id "YCR060W"; +chrIII SGD gene 225497 227815 . + . gene_id "YCR061W"; gene_biotype "protein_coding"; +chrIII SGD transcript 225497 227815 . + . transcript_id "YCR061W_id002"; gene_id "YCR061W"; gene_name "TVS1"; transcript_biotype "protein_coding"; +chrIII SGD exon 225497 227815 . + . transcript_id "YCR061W_id002"; gene_id "YCR061W"; gene_name "TVS1"; +chrIII SGD transcript 225563 227458 . + . transcript_id "YCR061W_id001"; gene_id "YCR061W"; gene_name "TVS1"; transcript_biotype "protein_coding"; +chrIII SGD exon 225563 227458 . + 0 transcript_id "YCR061W_id001"; gene_name "TVS1"; gene_id "YCR061W"; +chrIII SGD gene 227942 228042 . + . gene_id "YNCC0013W"; gene_biotype "ncRNA"; +chrIII SGD transcript 227942 228042 . + . transcript_id "YNCC0013W_tRNA"; gene_id "YNCC0013W"; gene_name "SUP61"; transcript_biotype "ncRNA"; +chrIII SGD exon 227942 227978 . + . transcript_id "YNCC0013W_tRNA"; gene_name "SUP61"; gene_id "YNCC0013W"; +chrIII SGD exon 227998 228042 . + . transcript_id "YNCC0013W_tRNA"; gene_name "SUP61"; gene_id "YNCC0013W"; +chrIII SGD gene 228095 228505 . - . gene_id "YCR064C"; gene_biotype "protein_coding"; +chrIII SGD transcript 228095 228505 . - . transcript_id "YCR064C_id001"; gene_id "YCR064C"; transcript_biotype "protein_coding"; +chrIII SGD exon 228095 228505 . - 0 transcript_id "YCR064C_id001"; gene_id "YCR064C"; +chrIII SGD gene 228199 229272 . + . gene_id "YCR063W"; gene_biotype "protein_coding"; +chrIII SGD transcript 228199 229272 . + . transcript_id "YCR063W_id003"; gene_id "YCR063W"; gene_name "BUD31"; transcript_biotype "protein_coding"; +chrIII SGD exon 228199 229272 . + . transcript_id "YCR063W_id003"; gene_id "YCR063W"; gene_name "BUD31"; +chrIII SGD transcript 228318 228791 . + . transcript_id "YCR063W_id001"; gene_id "YCR063W"; gene_name "BUD31"; transcript_biotype "protein_coding"; +chrIII SGD exon 228318 228791 . + 0 transcript_id "YCR063W_id001"; gene_name "BUD31"; gene_id "YCR063W"; +chrIII SGD gene 229085 231330 . + . gene_id "YCR065W"; gene_biotype "protein_coding"; +chrIII SGD transcript 229085 231330 . + . transcript_id "YCR065W_id003"; gene_id "YCR065W"; gene_name "HCM1"; transcript_biotype "protein_coding"; +chrIII SGD exon 229085 231330 . + . transcript_id "YCR065W_id003"; gene_id "YCR065W"; gene_name "HCM1"; +chrIII SGD transcript 229310 231004 . + . transcript_id "YCR065W_id001"; gene_id "YCR065W"; gene_name "HCM1"; transcript_biotype "protein_coding"; +chrIII SGD exon 229310 231004 . + 0 transcript_id "YCR065W_id001"; gene_name "HCM1"; gene_id "YCR065W"; +chrIII SGD gene 231450 233145 . + . gene_id "YCR066W"; gene_biotype "protein_coding"; +chrIII SGD transcript 231450 233145 . + . transcript_id "YCR066W_id002"; gene_id "YCR066W"; gene_name "RAD18"; transcript_biotype "protein_coding"; +chrIII SGD exon 231450 233145 . + . transcript_id "YCR066W_id002"; gene_id "YCR066W"; gene_name "RAD18"; +chrIII SGD transcript 231500 232963 . + . transcript_id "YCR066W_id001"; gene_id "YCR066W"; gene_name "RAD18"; transcript_biotype "protein_coding"; +chrIII SGD exon 231500 232963 . + 0 transcript_id "YCR066W_id001"; gene_name "RAD18"; gene_id "YCR066W"; +chrIII SGD gene 233034 236441 . - . gene_id "YCR067C"; gene_biotype "protein_coding"; +chrIII SGD transcript 233034 236441 . - . transcript_id "YCR067C_id002"; gene_id "YCR067C"; gene_name "SED4"; transcript_biotype "protein_coding"; +chrIII SGD exon 233034 236441 . - . transcript_id "YCR067C_id002"; gene_id "YCR067C"; gene_name "SED4"; +chrIII SGD transcript 233125 236322 . - . transcript_id "YCR067C_id001"; gene_id "YCR067C"; gene_name "SED4"; transcript_biotype "protein_coding"; +chrIII SGD exon 233125 236322 . - 0 transcript_id "YCR067C_id001"; gene_name "SED4"; gene_id "YCR067C"; +chrIII SGD gene 237214 238776 . + . gene_id "YCR068W"; gene_biotype "protein_coding"; +chrIII SGD transcript 237214 238776 . + . transcript_id "YCR068W_id001"; gene_id "YCR068W"; gene_name "ATG15"; transcript_biotype "protein_coding"; +chrIII SGD exon 237214 238776 . + 0 transcript_id "YCR068W_id001"; gene_name "ATG15"; gene_id "YCR068W"; +chrIII SGD gene 237857 240132 . + . gene_id "YCR069W"; gene_biotype "protein_coding"; +chrIII SGD transcript 237857 240132 . + . transcript_id "YCR069W_id002"; gene_id "YCR069W"; gene_name "CPR4"; transcript_biotype "protein_coding"; +chrIII SGD exon 237857 240132 . + . transcript_id "YCR069W_id002"; gene_id "YCR069W"; gene_name "CPR4"; +chrIII SGD transcript 239055 240011 . + . transcript_id "YCR069W_id001"; gene_id "YCR069W"; gene_name "CPR4"; transcript_biotype "protein_coding"; +chrIII SGD exon 239055 240011 . + 0 transcript_id "YCR069W_id001"; gene_name "CPR4"; gene_id "YCR069W"; +chrIII SGD gene 239850 240557 . - . gene_id "YCR071C"; gene_biotype "protein_coding"; +chrIII SGD transcript 239850 240557 . - . transcript_id "YCR071C_id003"; gene_id "YCR071C"; gene_name "IMG2"; transcript_biotype "protein_coding"; +chrIII SGD exon 239850 240557 . - . transcript_id "YCR071C_id003"; gene_id "YCR071C"; gene_name "IMG2"; +chrIII SGD transcript 240103 240543 . - . transcript_id "YCR071C_id001"; gene_id "YCR071C"; gene_name "IMG2"; transcript_biotype "protein_coding"; +chrIII SGD exon 240103 240543 . - 0 transcript_id "YCR071C_id001"; gene_name "IMG2"; gene_id "YCR071C"; +chrIII SGD gene 240683 242394 . - . gene_id "YCR072C"; gene_biotype "protein_coding"; +chrIII SGD transcript 240683 242394 . - . transcript_id "YCR072C_id001"; gene_id "YCR072C"; gene_name "RSA4"; transcript_biotype "protein_coding"; +chrIII SGD exon 240683 242394 . - . transcript_id "YCR072C_id001"; gene_id "YCR072C"; gene_name "RSA4"; +chrIII SGD transcript 240805 242352 . - . transcript_id "YCR072C_id002"; gene_id "YCR072C"; gene_name "RSA4"; transcript_biotype "protein_coding"; +chrIII SGD exon 240805 242352 . - 0 transcript_id "YCR072C_id002"; gene_name "RSA4"; gene_id "YCR072C"; +chrIII SGD gene 242588 246583 . - . gene_id "YCR073C"; gene_biotype "protein_coding"; +chrIII SGD transcript 242588 246583 . - . transcript_id "YCR073C_mRNA"; gene_id "YCR073C"; gene_name "SSK22"; transcript_biotype "protein_coding"; +chrIII SGD CDS 242588 246583 . - 0 transcript_id "YCR073C_mRNA"; gene_name "SSK22"; gene_id "YCR073C"; +chrIII SGD gene 246940 248034 . + . gene_id "YCR073W-A"; gene_biotype "protein_coding"; +chrIII SGD transcript 246940 248034 . + . transcript_id "YCR073W-A_id003"; gene_id "YCR073W-A"; gene_name "SOL2"; transcript_biotype "protein_coding"; +chrIII SGD exon 246940 248034 . + . transcript_id "YCR073W-A_id003"; gene_id "YCR073W-A"; gene_name "SOL2"; +chrIII SGD transcript 246963 247910 . + . transcript_id "YCR073W-A_id001"; gene_id "YCR073W-A"; gene_name "SOL2"; transcript_biotype "protein_coding"; +chrIII SGD exon 246963 247910 . + 0 transcript_id "YCR073W-A_id001"; gene_name "SOL2"; gene_id "YCR073W-A"; +chrIII SGD gene 247889 248837 . - . gene_id "YCR075C"; gene_biotype "protein_coding"; +chrIII SGD transcript 247889 248837 . - . transcript_id "YCR075C_id002"; gene_id "YCR075C"; gene_name "ERS1"; transcript_biotype "protein_coding"; +chrIII SGD exon 247889 248837 . - . transcript_id "YCR075C_id002"; gene_id "YCR075C"; gene_name "ERS1"; +chrIII SGD transcript 248033 248815 . - . transcript_id "YCR075C_id001"; gene_id "YCR075C"; gene_name "ERS1"; transcript_biotype "protein_coding"; +chrIII SGD exon 248033 248815 . - 0 transcript_id "YCR075C_id001"; gene_name "ERS1"; gene_id "YCR075C"; +chrIII SGD gene 248734 249282 . + . gene_id "YCR075W-A"; gene_biotype "protein_coding"; +chrIII SGD transcript 248734 249282 . + . transcript_id "YCR075W-A_id002"; gene_id "YCR075W-A"; gene_name "EGO2"; transcript_biotype "protein_coding"; +chrIII SGD exon 248734 249282 . + . transcript_id "YCR075W-A_id002"; gene_id "YCR075W-A"; gene_name "EGO2"; +chrIII SGD transcript 248975 249202 . + . transcript_id "YCR075W-A_id001"; gene_id "YCR075W-A"; gene_name "EGO2"; transcript_biotype "protein_coding"; +chrIII SGD exon 248975 249202 . + 0 transcript_id "YCR075W-A_id001"; gene_name "EGO2"; gene_id "YCR075W-A"; +chrIII SGD gene 249070 250067 . - . gene_id "YCR076C"; gene_biotype "protein_coding"; +chrIII SGD transcript 249070 250067 . - . transcript_id "YCR076C_id001"; gene_id "YCR076C"; gene_name "FUB1"; transcript_biotype "protein_coding"; +chrIII SGD exon 249070 250067 . - . transcript_id "YCR076C_id001"; gene_id "YCR076C"; gene_name "FUB1"; +chrIII SGD transcript 249293 250045 . - . transcript_id "YCR076C_id003"; gene_id "YCR076C"; gene_name "FUB1"; transcript_biotype "protein_coding"; +chrIII SGD exon 249293 250045 . - 0 transcript_id "YCR076C_id003"; gene_name "FUB1"; gene_id "YCR076C"; +chrIII SGD gene 250043 252670 . - . gene_id "YCR077C"; gene_biotype "protein_coding"; +chrIII SGD transcript 250043 252670 . - . transcript_id "YCR077C_id001"; gene_id "YCR077C"; gene_name "PAT1"; transcript_biotype "protein_coding"; +chrIII SGD exon 250043 252670 . - . transcript_id "YCR077C_id001"; gene_id "YCR077C"; gene_name "PAT1"; +chrIII SGD transcript 250238 252628 . - . transcript_id "YCR077C_id002"; gene_id "YCR077C"; gene_name "PAT1"; transcript_biotype "protein_coding"; +chrIII SGD exon 250238 252628 . - 0 transcript_id "YCR077C_id002"; gene_name "PAT1"; gene_id "YCR077C"; +chrIII SGD gene 252787 254299 . + . gene_id "YCR079W"; gene_biotype "protein_coding"; +chrIII SGD transcript 252787 254299 . + . transcript_id "YCR079W_id008"; gene_id "YCR079W"; gene_name "PTC6"; transcript_biotype "protein_coding"; +chrIII SGD exon 252787 254299 . + . transcript_id "YCR079W_id008"; gene_id "YCR079W"; gene_name "PTC6"; +chrIII SGD transcript 252845 254173 . + . transcript_id "YCR079W_id001"; gene_id "YCR079W"; gene_name "PTC6"; transcript_biotype "protein_coding"; +chrIII SGD exon 252845 254173 . + 0 transcript_id "YCR079W_id001"; gene_name "PTC6"; gene_id "YCR079W"; +chrIII SGD gene 254371 258654 . + . gene_id "YCR081W"; gene_biotype "protein_coding"; +chrIII SGD transcript 254371 258654 . + . transcript_id "YCR081W_mRNA"; gene_id "YCR081W"; gene_name "SRB8"; transcript_biotype "protein_coding"; +chrIII SGD CDS 254371 258654 . + 0 transcript_id "YCR081W_mRNA"; gene_name "SRB8"; gene_id "YCR081W"; +chrIII SGD gene 257669 259376 . + . gene_id "YCR082W"; gene_biotype "protein_coding"; +chrIII SGD transcript 257669 259376 . + . transcript_id "YCR082W_id003"; gene_id "YCR082W"; gene_name "AHC2"; transcript_biotype "protein_coding"; +chrIII SGD exon 257669 259376 . + . transcript_id "YCR082W_id003"; gene_id "YCR082W"; gene_name "AHC2"; +chrIII SGD gene 258415 258651 . - . gene_id "YCR081C-A"; gene_biotype "protein_coding"; +chrIII SGD transcript 258415 258651 . - . transcript_id "YCR081C-A_mRNA"; gene_id "YCR081C-A"; transcript_biotype "protein_coding"; +chrIII SGD CDS 258415 258651 . - 0 transcript_id "YCR081C-A_mRNA"; gene_id "YCR081C-A"; +chrIII SGD transcript 258883 259269 . + . transcript_id "YCR082W_id001"; gene_id "YCR082W"; gene_name "AHC2"; transcript_biotype "protein_coding"; +chrIII SGD exon 258883 259269 . + 0 transcript_id "YCR082W_id001"; gene_name "AHC2"; gene_id "YCR082W"; +chrIII SGD gene 259543 260099 . + . gene_id "YCR083W"; gene_biotype "protein_coding"; +chrIII SGD transcript 259543 260099 . + . transcript_id "YCR083W_id002"; gene_id "YCR083W"; gene_name "TRX3"; transcript_biotype "protein_coding"; +chrIII SGD exon 259543 260099 . + . transcript_id "YCR083W_id002"; gene_id "YCR083W"; gene_name "TRX3"; +chrIII SGD transcript 259578 259961 . + . transcript_id "YCR083W_id001"; gene_id "YCR083W"; gene_name "TRX3"; transcript_biotype "protein_coding"; +chrIII SGD exon 259578 259961 . + 0 transcript_id "YCR083W_id001"; gene_name "TRX3"; gene_id "YCR083W"; +chrIII SGD gene 260311 262452 . - . gene_id "YCR084C"; gene_biotype "protein_coding"; +chrIII SGD transcript 260311 262452 . - . transcript_id "YCR084C_id001"; gene_id "YCR084C"; gene_name "TUP1"; transcript_biotype "protein_coding"; +chrIII SGD exon 260311 262452 . - 0 transcript_id "YCR084C_id001"; gene_name "TUP1"; gene_id "YCR084C"; +chrIII SGD gene 262916 263269 . + . gene_id "YCR085W"; gene_biotype "protein_coding"; +chrIII SGD transcript 262916 263269 . + . transcript_id "YCR085W_mRNA"; gene_id "YCR085W"; transcript_biotype "protein_coding"; +chrIII SGD CDS 262916 263269 . + 0 transcript_id "YCR085W_mRNA"; gene_id "YCR085W"; +chrIII SGD gene 263129 264011 . + . gene_id "YCR086W"; gene_biotype "protein_coding"; +chrIII SGD transcript 263129 264011 . + . transcript_id "YCR086W_id003"; gene_id "YCR086W"; gene_name "CSM1"; transcript_biotype "protein_coding"; +chrIII SGD exon 263129 264011 . + . transcript_id "YCR086W_id003"; gene_id "YCR086W"; gene_name "CSM1"; +chrIII SGD transcript 263392 263964 . + . transcript_id "YCR086W_id001"; gene_id "YCR086W"; gene_name "CSM1"; transcript_biotype "protein_coding"; +chrIII SGD exon 263392 263964 . + 0 transcript_id "YCR086W_id001"; gene_name "CSM1"; gene_id "YCR086W"; +chrIII SGD gene 263943 264885 . - . gene_id "YCR087C-A"; gene_biotype "protein_coding"; +chrIII SGD transcript 263943 264885 . - . transcript_id "YCR087C-A_id001"; gene_id "YCR087C-A"; transcript_biotype "protein_coding"; +chrIII SGD exon 263943 264885 . - . transcript_id "YCR087C-A_id001"; gene_id "YCR087C-A"; +chrIII SGD gene 263976 264491 . + . gene_id "YCR087W"; gene_biotype "protein_coding"; +chrIII SGD transcript 263976 264491 . + . transcript_id "YCR087W_mRNA"; gene_id "YCR087W"; transcript_biotype "protein_coding"; +chrIII SGD CDS 263976 264491 . + 0 transcript_id "YCR087W_mRNA"; gene_id "YCR087W"; +chrIII SGD transcript 264006 264467 . - . transcript_id "YCR087C-A_id004"; gene_id "YCR087C-A"; transcript_biotype "protein_coding"; +chrIII SGD exon 264006 264467 . - 0 transcript_id "YCR087C-A_id004"; gene_id "YCR087C-A"; +chrIII SGD gene 265068 266846 . + . gene_id "YCR088W"; gene_biotype "protein_coding"; +chrIII SGD transcript 265068 266846 . + . transcript_id "YCR088W_id001"; gene_id "YCR088W"; gene_name "ABP1"; transcript_biotype "protein_coding"; +chrIII SGD exon 265068 266846 . + 0 transcript_id "YCR088W_id001"; gene_name "ABP1"; gene_id "YCR088W"; +chrIII SGD gene 267434 272263 . + . gene_id "YCR089W"; gene_biotype "protein_coding"; +chrIII SGD transcript 267434 272263 . + . transcript_id "YCR089W_mRNA"; gene_id "YCR089W"; gene_name "FIG2"; transcript_biotype "protein_coding"; +chrIII SGD CDS 267434 272263 . + 0 transcript_id "YCR089W_mRNA"; gene_name "FIG2"; gene_id "YCR089W"; +chrIII SGD gene 272248 273282 . - . gene_id "YCR090C"; gene_biotype "protein_coding"; +chrIII SGD transcript 272248 273282 . - . transcript_id "YCR090C_id001"; gene_id "YCR090C"; transcript_biotype "protein_coding"; +chrIII SGD exon 272248 273282 . - . transcript_id "YCR090C_id001"; gene_id "YCR090C"; +chrIII SGD transcript 272315 272863 . - . transcript_id "YCR090C_id002"; gene_id "YCR090C"; transcript_biotype "protein_coding"; +chrIII SGD exon 272315 272863 . - 0 transcript_id "YCR090C_id002"; gene_id "YCR090C"; +chrIII SGD gene 274330 276730 . + . gene_id "YCR091W"; gene_biotype "protein_coding"; +chrIII SGD transcript 274330 276730 . + . transcript_id "YCR091W_id002"; gene_id "YCR091W"; gene_name "KIN82"; transcript_biotype "protein_coding"; +chrIII SGD exon 274330 276730 . + . transcript_id "YCR091W_id002"; gene_id "YCR091W"; gene_name "KIN82"; +chrIII SGD transcript 274404 276566 . + . transcript_id "YCR091W_id001"; gene_id "YCR091W"; gene_name "KIN82"; transcript_biotype "protein_coding"; +chrIII SGD exon 274404 276566 . + 0 transcript_id "YCR091W_id001"; gene_name "KIN82"; gene_id "YCR091W"; +chrIII SGD gene 276764 279820 . - . gene_id "YCR092C"; gene_biotype "protein_coding"; +chrIII SGD transcript 276764 279820 . - . transcript_id "YCR092C_id001"; gene_id "YCR092C"; gene_name "MSH3"; transcript_biotype "protein_coding"; +chrIII SGD exon 276764 279820 . - 0 transcript_id "YCR092C_id001"; gene_name "MSH3"; gene_id "YCR092C"; +chrIII SGD gene 280117 286443 . + . gene_id "YCR093W"; gene_biotype "protein_coding"; +chrIII SGD transcript 280117 286443 . + . transcript_id "YCR093W_mRNA"; gene_id "YCR093W"; gene_name "CDC39"; transcript_biotype "protein_coding"; +chrIII SGD CDS 280117 286443 . + 0 transcript_id "YCR093W_mRNA"; gene_name "CDC39"; gene_id "YCR093W"; +chrIII SGD gene 286728 288449 . + . gene_id "YCR094W"; gene_biotype "protein_coding"; +chrIII SGD transcript 286728 288449 . + . transcript_id "YCR094W_id002"; gene_id "YCR094W"; gene_name "CDC50"; transcript_biotype "protein_coding"; +chrIII SGD exon 286728 288449 . + . transcript_id "YCR094W_id002"; gene_id "YCR094W"; gene_name "CDC50"; +chrIII SGD transcript 286762 287937 . + . transcript_id "YCR094W_id001"; gene_id "YCR094W"; gene_name "CDC50"; transcript_biotype "protein_coding"; +chrIII SGD exon 286762 287937 . + 0 transcript_id "YCR094W_id001"; gene_name "CDC50"; gene_id "YCR094W"; +chrIII SGD gene 288075 289315 . - . gene_id "YCR095C"; gene_biotype "protein_coding"; +chrIII SGD transcript 288075 289315 . - . transcript_id "YCR095C_id001"; gene_id "YCR095C"; gene_name "OCA4"; transcript_biotype "protein_coding"; +chrIII SGD exon 288075 289315 . - . transcript_id "YCR095C_id001"; gene_id "YCR095C"; gene_name "OCA4"; +chrIII SGD transcript 288170 289258 . - . transcript_id "YCR095C_id004"; gene_id "YCR095C"; gene_name "OCA4"; transcript_biotype "protein_coding"; +chrIII SGD exon 288170 289258 . - 0 transcript_id "YCR095C_id004"; gene_name "OCA4"; gene_id "YCR095C"; +chrIII SGD gene 289476 291204 . + . gene_id "YCR095W-A"; gene_biotype "protein_coding"; +chrIII SGD transcript 289476 291204 . + . transcript_id "YCR095W-A_id002"; gene_id "YCR095W-A"; transcript_biotype "protein_coding"; +chrIII SGD exon 289476 291204 . + . transcript_id "YCR095W-A_id002"; gene_id "YCR095W-A"; +chrIII SGD transcript 289639 289797 . + . transcript_id "YCR095W-A_id001"; gene_id "YCR095W-A"; transcript_biotype "protein_coding"; +chrIII SGD exon 289639 289797 . + 0 transcript_id "YCR095W-A_id001"; gene_id "YCR095W-A"; +chrIII SGD gene 293179 293538 . - . gene_id "YCR096C"; gene_biotype "protein_coding"; +chrIII SGD transcript 293179 293538 . - . transcript_id "YCR096C_mRNA"; gene_id "YCR096C"; gene_name "HMRA2"; transcript_biotype "protein_coding"; +chrIII SGD CDS 293179 293538 . - 0 transcript_id "YCR096C_mRNA"; gene_name "HMRA2"; gene_id "YCR096C"; +chrIII SGD gene 293791 294340 . + . gene_id "YCR097W"; gene_biotype "protein_coding"; +chrIII SGD transcript 293791 294340 . + . transcript_id "YCR097W_id001"; gene_id "YCR097W"; gene_name "HMRA1"; transcript_biotype "protein_coding"; +chrIII SGD exon 293791 294340 . + . transcript_id "YCR097W_id001"; gene_id "YCR097W"; gene_name "HMRA1"; +chrIII SGD transcript 293835 294321 . + . transcript_id "YCR097W_id003"; gene_id "YCR097W"; gene_name "HMRA1"; transcript_biotype "protein_coding"; +chrIII SGD exon 293835 293939 . + 0 transcript_id "YCR097W_id003"; gene_name "HMRA1"; gene_id "YCR097W"; +chrIII SGD exon 293994 294239 . + 0 transcript_id "YCR097W_id003"; gene_name "HMRA1"; gene_id "YCR097W"; +chrIII SGD exon 294292 294321 . + 0 transcript_id "YCR097W_id003"; gene_name "HMRA1"; gene_id "YCR097W"; +chrIII SGD gene 294439 294705 . + . gene_id "YCR097W-A"; gene_biotype "protein_coding"; +chrIII SGD transcript 294439 294705 . + . transcript_id "YCR097W-A_mRNA"; gene_id "YCR097W-A"; transcript_biotype "protein_coding"; +chrIII SGD CDS 294439 294705 . + 0 transcript_id "YCR097W-A_mRNA"; gene_id "YCR097W-A"; +chrIII SGD gene 295484 295556 . + . gene_id "YNCC0014W"; gene_biotype "ncRNA"; +chrIII SGD transcript 295484 295556 . + . transcript_id "YNCC0014W_tRNA"; gene_id "YNCC0014W"; transcript_biotype "ncRNA"; +chrIII SGD exon 295484 295556 . + . transcript_id "YNCC0014W_tRNA"; gene_id "YNCC0014W"; +chrIII SGD gene 296808 298843 . - . gene_id "YCR098C"; gene_biotype "protein_coding"; +chrIII SGD transcript 296808 298843 . - . transcript_id "YCR098C_id002"; gene_id "YCR098C"; gene_name "GIT1"; transcript_biotype "protein_coding"; +chrIII SGD exon 296808 298843 . - . transcript_id "YCR098C_id002"; gene_id "YCR098C"; gene_name "GIT1"; +chrIII SGD transcript 297049 298605 . - . transcript_id "YCR098C_id001"; gene_id "YCR098C"; gene_name "GIT1"; transcript_biotype "protein_coding"; +chrIII SGD exon 297049 298605 . - 0 transcript_id "YCR098C_id001"; gene_name "GIT1"; gene_id "YCR098C"; +chrIII SGD gene 300832 301299 . - . gene_id "YCR099C"; gene_biotype "protein_coding"; +chrIII SGD transcript 300832 301299 . - . transcript_id "YCR099C_id001"; gene_id "YCR099C"; transcript_biotype "protein_coding"; +chrIII SGD exon 300832 301299 . - 0 transcript_id "YCR099C_id001"; gene_id "YCR099C"; +chrIII SGD gene 301271 302221 . - . gene_id "YCR100C"; gene_biotype "protein_coding"; +chrIII SGD transcript 301271 302221 . - . transcript_id "YCR100C_mRNA"; gene_id "YCR100C"; gene_name "EMA35"; transcript_biotype "protein_coding"; +chrIII SGD CDS 301271 302221 . - 0 transcript_id "YCR100C_mRNA"; gene_name "EMA35"; gene_id "YCR100C"; +chrIII SGD gene 302482 303030 . - . gene_id "YCR101C"; gene_biotype "protein_coding"; +chrIII SGD transcript 302482 303030 . - . transcript_id "YCR101C_mRNA"; gene_id "YCR101C"; transcript_biotype "protein_coding"; +chrIII SGD CDS 302482 303030 . - 0 transcript_id "YCR101C_mRNA"; gene_id "YCR101C"; +chrIII SGD gene 304090 305537 . - . gene_id "YCR102C"; gene_biotype "protein_coding"; +chrIII SGD transcript 304090 305537 . - . transcript_id "YCR102C_id001"; gene_id "YCR102C"; transcript_biotype "protein_coding"; +chrIII SGD exon 304090 305537 . - . transcript_id "YCR102C_id001"; gene_id "YCR102C"; +chrIII SGD transcript 304361 305467 . - . transcript_id "YCR102C_id002"; gene_id "YCR102C"; transcript_biotype "protein_coding"; +chrIII SGD exon 304361 305467 . - 0 transcript_id "YCR102C_id002"; gene_id "YCR102C"; +chrIII SGD gene 306735 306932 . + . gene_id "YCR102W-A"; gene_biotype "protein_coding"; +chrIII SGD transcript 306735 306932 . + . transcript_id "YCR102W-A_mRNA"; gene_id "YCR102W-A"; transcript_biotype "protein_coding"; +chrIII SGD CDS 306735 306932 . + 0 transcript_id "YCR102W-A_mRNA"; gene_id "YCR102W-A"; +chrIII SGD gene 307801 308175 . + . gene_id "YCR104W"; gene_biotype "protein_coding"; +chrIII SGD transcript 307801 308175 . + . transcript_id "YCR104W_mRNA"; gene_id "YCR104W"; gene_name "PAU3"; transcript_biotype "protein_coding"; +chrIII SGD CDS 307801 308175 . + 0 transcript_id "YCR104W_mRNA"; gene_name "PAU3"; gene_id "YCR104W"; +chrIII SGD gene 309070 310155 . + . gene_id "YCR105W"; gene_biotype "protein_coding"; +chrIII SGD transcript 309070 310155 . + . transcript_id "YCR105W_mRNA"; gene_id "YCR105W"; gene_name "ADH7"; transcript_biotype "protein_coding"; +chrIII SGD CDS 309070 310155 . + 0 transcript_id "YCR105W_mRNA"; gene_name "ADH7"; gene_id "YCR105W"; +chrIII SGD gene 310958 313456 . + . gene_id "YCR106W"; gene_biotype "protein_coding"; +chrIII SGD transcript 310958 313456 . + . transcript_id "YCR106W_id001"; gene_id "YCR106W"; gene_name "RDS1"; transcript_biotype "protein_coding"; +chrIII SGD exon 310958 313456 . + 0 transcript_id "YCR106W_id001"; gene_name "RDS1"; gene_id "YCR106W"; +chrIII SGD gene 313890 314981 . + . gene_id "YCR107W"; gene_biotype "protein_coding"; +chrIII SGD transcript 313890 314981 . + . transcript_id "YCR107W_mRNA"; gene_id "YCR107W"; gene_name "AAD3"; transcript_biotype "protein_coding"; +chrIII SGD CDS 313890 314981 . + 0 transcript_id "YCR107W_mRNA"; gene_name "AAD3"; gene_id "YCR107W"; +chrIII SGD gene 315997 316188 . - . gene_id "YCR108C"; gene_biotype "protein_coding"; +chrIII SGD transcript 315997 316188 . - . transcript_id "YCR108C_mRNA"; gene_id "YCR108C"; transcript_biotype "protein_coding"; +chrIII SGD CDS 315997 316188 . - 0 transcript_id "YCR108C_mRNA"; gene_id "YCR108C"; +chrIV SGD gene 1802 2953 . + . gene_id "YDL248W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1802 2953 . + . transcript_id "YDL248W_mRNA"; gene_id "YDL248W"; gene_name "COS7"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1802 2953 . + 0 transcript_id "YDL248W_mRNA"; gene_name "COS7"; gene_id "YDL248W"; +chrIV SGD gene 3762 3836 . + . gene_id "YDL247W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 3762 3836 . + . transcript_id "YDL247W-A_mRNA"; gene_id "YDL247W-A"; transcript_biotype "protein_coding"; +chrIV SGD CDS 3762 3836 . + 0 transcript_id "YDL247W-A_mRNA"; gene_id "YDL247W-A"; +chrIV SGD gene 5985 7814 . + . gene_id "YDL247W"; gene_biotype "protein_coding"; +chrIV SGD transcript 5985 7814 . + . transcript_id "YDL247W_mRNA"; gene_id "YDL247W"; gene_name "MPH2"; transcript_biotype "protein_coding"; +chrIV SGD CDS 5985 7814 . + 0 transcript_id "YDL247W_mRNA"; gene_name "MPH2"; gene_id "YDL247W"; +chrIV SGD gene 8683 9756 . - . gene_id "YDL246C"; gene_biotype "protein_coding"; +chrIV SGD transcript 8683 9756 . - . transcript_id "YDL246C_mRNA"; gene_id "YDL246C"; gene_name "SOR2"; transcript_biotype "protein_coding"; +chrIV SGD CDS 8683 9756 . - 0 transcript_id "YDL246C_mRNA"; gene_name "SOR2"; gene_id "YDL246C"; +chrIV SGD gene 11657 13360 . - . gene_id "YDL245C"; gene_biotype "protein_coding"; +chrIV SGD transcript 11657 13360 . - . transcript_id "YDL245C_mRNA"; gene_id "YDL245C"; gene_name "HXT15"; transcript_biotype "protein_coding"; +chrIV SGD CDS 11657 13360 . - 0 transcript_id "YDL245C_mRNA"; gene_name "HXT15"; gene_id "YDL245C"; +chrIV SGD gene 16204 17226 . + . gene_id "YDL244W"; gene_biotype "protein_coding"; +chrIV SGD transcript 16204 17226 . + . transcript_id "YDL244W_mRNA"; gene_id "YDL244W"; gene_name "THI13"; transcript_biotype "protein_coding"; +chrIV SGD CDS 16204 17226 . + 0 transcript_id "YDL244W_mRNA"; gene_name "THI13"; gene_id "YDL244W"; +chrIV SGD gene 17388 19288 . - . gene_id "YDL243C"; gene_biotype "protein_coding"; +chrIV SGD transcript 17388 19288 . - . transcript_id "YDL243C_id001"; gene_id "YDL243C"; gene_name "AAD4"; transcript_biotype "protein_coding"; +chrIV SGD exon 17388 19288 . - . transcript_id "YDL243C_id001"; gene_id "YDL243C"; gene_name "AAD4"; +chrIV SGD transcript 17577 18566 . - . transcript_id "YDL243C_id003"; gene_id "YDL243C"; gene_name "AAD4"; transcript_biotype "protein_coding"; +chrIV SGD exon 17577 18566 . - 0 transcript_id "YDL243C_id003"; gene_name "AAD4"; gene_id "YDL243C"; +chrIV SGD gene 18959 19312 . + . gene_id "YDL242W"; gene_biotype "protein_coding"; +chrIV SGD transcript 18959 19312 . + . transcript_id "YDL242W_mRNA"; gene_id "YDL242W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 18959 19312 . + 0 transcript_id "YDL242W_mRNA"; gene_id "YDL242W"; +chrIV SGD gene 20553 21443 . + . gene_id "YDL241W"; gene_biotype "protein_coding"; +chrIV SGD transcript 20553 21443 . + . transcript_id "YDL241W_id001"; gene_id "YDL241W"; transcript_biotype "protein_coding"; +chrIV SGD exon 20553 21443 . + . transcript_id "YDL241W_id001"; gene_id "YDL241W"; +chrIV SGD transcript 20635 21006 . + . transcript_id "YDL241W_id004"; gene_id "YDL241W"; transcript_biotype "protein_coding"; +chrIV SGD exon 20635 21006 . + 0 transcript_id "YDL241W_id004"; gene_id "YDL241W"; +chrIV SGD gene 22471 22608 . - . gene_id "YDL240C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 22471 22608 . - . transcript_id "YDL240C-A_mRNA"; gene_id "YDL240C-A"; transcript_biotype "protein_coding"; +chrIV SGD CDS 22471 22608 . - 0 transcript_id "YDL240C-A_mRNA"; gene_id "YDL240C-A"; +chrIV SGD gene 22823 25876 . + . gene_id "YDL240W"; gene_biotype "protein_coding"; +chrIV SGD transcript 22823 25876 . + . transcript_id "YDL240W_id001"; gene_id "YDL240W"; gene_name "LRG1"; transcript_biotype "protein_coding"; +chrIV SGD exon 22823 25876 . + 0 transcript_id "YDL240W_id001"; gene_name "LRG1"; gene_id "YDL240W"; +chrIV SGD gene 26403 28775 . - . gene_id "YDL239C"; gene_biotype "protein_coding"; +chrIV SGD transcript 26403 28775 . - . transcript_id "YDL239C_mRNA"; gene_id "YDL239C"; gene_name "ADY3"; transcript_biotype "protein_coding"; +chrIV SGD CDS 26403 28775 . - 0 transcript_id "YDL239C_mRNA"; gene_name "ADY3"; gene_id "YDL239C"; +chrIV SGD gene 28919 30495 . - . gene_id "YDL238C"; gene_biotype "protein_coding"; +chrIV SGD transcript 28919 30495 . - . transcript_id "YDL238C_id006"; gene_id "YDL238C"; gene_name "GUD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 28919 30495 . - . transcript_id "YDL238C_id006"; gene_id "YDL238C"; gene_name "GUD1"; +chrIV SGD transcript 28985 30454 . - . transcript_id "YDL238C_id001"; gene_id "YDL238C"; gene_name "GUD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 28985 30454 . - 0 transcript_id "YDL238C_id001"; gene_name "GUD1"; gene_id "YDL238C"; +chrIV SGD gene 30625 32125 . + . gene_id "YDL237W"; gene_biotype "protein_coding"; +chrIV SGD transcript 30625 32125 . + . transcript_id "YDL237W_id002"; gene_id "YDL237W"; gene_name "AIM6"; transcript_biotype "protein_coding"; +chrIV SGD exon 30625 32125 . + . transcript_id "YDL237W_id002"; gene_id "YDL237W"; gene_name "AIM6"; +chrIV SGD transcript 30657 31829 . + . transcript_id "YDL237W_id001"; gene_id "YDL237W"; gene_name "AIM6"; transcript_biotype "protein_coding"; +chrIV SGD exon 30657 31829 . + 0 transcript_id "YDL237W_id001"; gene_name "AIM6"; gene_id "YDL237W"; +chrIV SGD gene 32245 33439 . + . gene_id "YDL236W"; gene_biotype "protein_coding"; +chrIV SGD transcript 32245 33439 . + . transcript_id "YDL236W_id003"; gene_id "YDL236W"; gene_name "PHO13"; transcript_biotype "protein_coding"; +chrIV SGD exon 32245 33439 . + . transcript_id "YDL236W_id003"; gene_id "YDL236W"; gene_name "PHO13"; +chrIV SGD transcript 32296 33234 . + . transcript_id "YDL236W_id001"; gene_id "YDL236W"; gene_name "PHO13"; transcript_biotype "protein_coding"; +chrIV SGD exon 32296 33234 . + 0 transcript_id "YDL236W_id001"; gene_name "PHO13"; gene_id "YDL236W"; +chrIV SGD gene 33251 34041 . - . gene_id "YDL235C"; gene_biotype "protein_coding"; +chrIV SGD transcript 33251 34041 . - . transcript_id "YDL235C_id003"; gene_id "YDL235C"; gene_name "YPD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 33251 34041 . - . transcript_id "YDL235C_id003"; gene_id "YDL235C"; gene_name "YPD1"; +chrIV SGD transcript 33415 33918 . - . transcript_id "YDL235C_id001"; gene_id "YDL235C"; gene_name "YPD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 33415 33918 . - 0 transcript_id "YDL235C_id001"; gene_name "YPD1"; gene_id "YDL235C"; +chrIV SGD gene 34073 36620 . - . gene_id "YDL234C"; gene_biotype "protein_coding"; +chrIV SGD transcript 34073 36620 . - . transcript_id "YDL234C_id002"; gene_id "YDL234C"; gene_name "GYP7"; transcript_biotype "protein_coding"; +chrIV SGD exon 34073 36620 . - . transcript_id "YDL234C_id002"; gene_id "YDL234C"; gene_name "GYP7"; +chrIV SGD transcript 34237 36477 . - . transcript_id "YDL234C_id001"; gene_id "YDL234C"; gene_name "GYP7"; transcript_biotype "protein_coding"; +chrIV SGD exon 34237 36477 . - 0 transcript_id "YDL234C_id001"; gene_name "GYP7"; gene_id "YDL234C"; +chrIV SGD gene 36775 38343 . + . gene_id "YDL233W"; gene_biotype "protein_coding"; +chrIV SGD transcript 36775 38343 . + . transcript_id "YDL233W_id005"; gene_id "YDL233W"; gene_name "MFG1"; transcript_biotype "protein_coding"; +chrIV SGD exon 36775 38343 . + . transcript_id "YDL233W_id005"; gene_id "YDL233W"; gene_name "MFG1"; +chrIV SGD transcript 36797 38173 . + . transcript_id "YDL233W_id001"; gene_id "YDL233W"; gene_name "MFG1"; transcript_biotype "protein_coding"; +chrIV SGD exon 36797 38173 . + 0 transcript_id "YDL233W_id001"; gene_name "MFG1"; gene_id "YDL233W"; +chrIV SGD gene 38354 38855 . + . gene_id "YDL232W"; gene_biotype "protein_coding"; +chrIV SGD transcript 38354 38855 . + . transcript_id "YDL232W_id001"; gene_id "YDL232W"; gene_name "OST4"; transcript_biotype "protein_coding"; +chrIV SGD exon 38354 38855 . + . transcript_id "YDL232W_id001"; gene_id "YDL232W"; gene_name "OST4"; +chrIV SGD transcript 38487 38597 . + . transcript_id "YDL232W_id003"; gene_id "YDL232W"; gene_name "OST4"; transcript_biotype "protein_coding"; +chrIV SGD exon 38487 38597 . + 0 transcript_id "YDL232W_id003"; gene_name "OST4"; gene_id "YDL232W"; +chrIV SGD gene 38867 42244 . - . gene_id "YDL231C"; gene_biotype "protein_coding"; +chrIV SGD transcript 38867 42244 . - . transcript_id "YDL231C_mRNA"; gene_id "YDL231C"; gene_name "BRE4"; transcript_biotype "protein_coding"; +chrIV SGD CDS 38867 42244 . - 0 transcript_id "YDL231C_mRNA"; gene_name "BRE4"; gene_id "YDL231C"; +chrIV SGD gene 42670 43832 . + . gene_id "YDL230W"; gene_biotype "protein_coding"; +chrIV SGD transcript 42670 43832 . + . transcript_id "YDL230W_id003"; gene_id "YDL230W"; gene_name "PTP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 42670 43832 . + . transcript_id "YDL230W_id003"; gene_id "YDL230W"; gene_name "PTP1"; +chrIV SGD transcript 42700 43707 . + . transcript_id "YDL230W_id001"; gene_id "YDL230W"; gene_name "PTP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 42700 43707 . + 0 transcript_id "YDL230W_id001"; gene_name "PTP1"; gene_id "YDL230W"; +chrIV SGD gene 43965 46008 . + . gene_id "YDL229W"; gene_biotype "protein_coding"; +chrIV SGD transcript 43965 46008 . + . transcript_id "YDL229W_id001"; gene_id "YDL229W"; gene_name "SSB1"; transcript_biotype "protein_coding"; +chrIV SGD exon 43965 46008 . + . transcript_id "YDL229W_id001"; gene_id "YDL229W"; gene_name "SSB1"; +chrIV SGD transcript 44065 45906 . + . transcript_id "YDL229W_id002"; gene_id "YDL229W"; gene_name "SSB1"; transcript_biotype "protein_coding"; +chrIV SGD exon 44065 45906 . + 0 transcript_id "YDL229W_id002"; gene_name "SSB1"; gene_id "YDL229W"; +chrIV SGD gene 45277 45918 . - . gene_id "YDL228C"; gene_biotype "protein_coding"; +chrIV SGD transcript 45277 45918 . - . transcript_id "YDL228C_mRNA"; gene_id "YDL228C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 45277 45918 . - 0 transcript_id "YDL228C_mRNA"; gene_id "YDL228C"; +chrIV SGD gene 46271 48031 . - . gene_id "YDL227C"; gene_biotype "protein_coding"; +chrIV SGD transcript 46271 48031 . - . transcript_id "YDL227C_id001"; gene_id "YDL227C"; gene_name "HO"; transcript_biotype "protein_coding"; +chrIV SGD exon 46271 48031 . - 0 transcript_id "YDL227C_id001"; gene_name "HO"; gene_id "YDL227C"; +chrIV SGD gene 50797 52204 . - . gene_id "YDL226C"; gene_biotype "protein_coding"; +chrIV SGD transcript 50797 52204 . - . transcript_id "YDL226C_id005"; gene_id "YDL226C"; gene_name "GCS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 50797 52204 . - . transcript_id "YDL226C_id005"; gene_id "YDL226C"; gene_name "GCS1"; +chrIV SGD transcript 51115 52173 . - . transcript_id "YDL226C_id001"; gene_id "YDL226C"; gene_name "GCS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 51115 52173 . - 0 transcript_id "YDL226C_id001"; gene_name "GCS1"; gene_id "YDL226C"; +chrIV SGD gene 52404 54332 . + . gene_id "YDL225W"; gene_biotype "protein_coding"; +chrIV SGD transcript 52404 54332 . + . transcript_id "YDL225W_id001"; gene_id "YDL225W"; gene_name "SHS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 52404 54332 . + . transcript_id "YDL225W_id001"; gene_id "YDL225W"; gene_name "SHS1"; +chrIV SGD transcript 52445 54100 . + . transcript_id "YDL225W_id002"; gene_id "YDL225W"; gene_name "SHS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 52445 54100 . + 0 transcript_id "YDL225W_id002"; gene_name "SHS1"; gene_id "YDL225W"; +chrIV SGD gene 54397 56346 . - . gene_id "YDL224C"; gene_biotype "protein_coding"; +chrIV SGD transcript 54397 56346 . - . transcript_id "YDL224C_id001"; gene_id "YDL224C"; gene_name "WHI4"; transcript_biotype "protein_coding"; +chrIV SGD exon 54397 56346 . - 0 transcript_id "YDL224C_id001"; gene_name "WHI4"; gene_id "YDL224C"; +chrIV SGD gene 57265 60405 . - . gene_id "YDL223C"; gene_biotype "protein_coding"; +chrIV SGD transcript 57265 60405 . - . transcript_id "YDL223C_mRNA"; gene_id "YDL223C"; gene_name "HBT1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 57265 60405 . - 0 transcript_id "YDL223C_mRNA"; gene_name "HBT1"; gene_id "YDL223C"; +chrIV SGD gene 60872 61801 . - . gene_id "YDL222C"; gene_biotype "protein_coding"; +chrIV SGD transcript 60872 61801 . - . transcript_id "YDL222C_id001"; gene_id "YDL222C"; gene_name "FMP45"; transcript_biotype "protein_coding"; +chrIV SGD exon 60872 61801 . - 0 transcript_id "YDL222C_id001"; gene_name "FMP45"; gene_id "YDL222C"; +chrIV SGD gene 62011 62562 . + . gene_id "YDL221W"; gene_biotype "protein_coding"; +chrIV SGD transcript 62011 62562 . + . transcript_id "YDL221W_mRNA"; gene_id "YDL221W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 62011 62562 . + 0 transcript_id "YDL221W_mRNA"; gene_id "YDL221W"; +chrIV SGD gene 62244 65018 . - . gene_id "YDL220C"; gene_biotype "protein_coding"; +chrIV SGD transcript 62244 65018 . - . transcript_id "YDL220C_id001"; gene_id "YDL220C"; gene_name "CDC13"; transcript_biotype "protein_coding"; +chrIV SGD exon 62244 65018 . - 0 transcript_id "YDL220C_id001"; gene_name "CDC13"; gene_id "YDL220C"; +chrIV SGD gene 65052 66048 . + . gene_id "YDL219W"; gene_biotype "protein_coding"; +chrIV SGD transcript 65052 66048 . + . transcript_id "YDL219W_id001"; gene_id "YDL219W"; gene_name "DTD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 65052 66048 . + . transcript_id "YDL219W_id001"; gene_id "YDL219W"; gene_name "DTD1"; +chrIV SGD transcript 65242 65765 . + . transcript_id "YDL219W_id003"; gene_id "YDL219W"; gene_name "DTD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 65242 65306 . + 0 transcript_id "YDL219W_id003"; gene_name "DTD1"; gene_id "YDL219W"; +chrIV SGD exon 65378 65765 . + 1 transcript_id "YDL219W_id003"; gene_name "DTD1"; gene_id "YDL219W"; +chrIV SGD gene 66493 67446 . + . gene_id "YDL218W"; gene_biotype "protein_coding"; +chrIV SGD transcript 66493 67446 . + . transcript_id "YDL218W_id001"; gene_id "YDL218W"; transcript_biotype "protein_coding"; +chrIV SGD exon 66493 67446 . + 0 transcript_id "YDL218W_id001"; gene_id "YDL218W"; +chrIV SGD gene 67511 68770 . - . gene_id "YDL217C"; gene_biotype "protein_coding"; +chrIV SGD transcript 67511 68770 . - . transcript_id "YDL217C_id003"; gene_id "YDL217C"; gene_name "TIM22"; transcript_biotype "protein_coding"; +chrIV SGD exon 67511 68770 . - . transcript_id "YDL217C_id003"; gene_id "YDL217C"; gene_name "TIM22"; +chrIV SGD transcript 67983 68606 . - . transcript_id "YDL217C_id001"; gene_id "YDL217C"; gene_name "TIM22"; transcript_biotype "protein_coding"; +chrIV SGD exon 67983 68606 . - 0 transcript_id "YDL217C_id001"; gene_name "TIM22"; gene_id "YDL217C"; +chrIV SGD gene 68869 70338 . - . gene_id "YDL216C"; gene_biotype "protein_coding"; +chrIV SGD transcript 68869 70338 . - . transcript_id "YDL216C_id001"; gene_id "YDL216C"; gene_name "RRI1"; transcript_biotype "protein_coding"; +chrIV SGD exon 68869 70338 . - . transcript_id "YDL216C_id001"; gene_id "YDL216C"; gene_name "RRI1"; +chrIV SGD transcript 68997 70319 . - . transcript_id "YDL216C_id005"; gene_id "YDL216C"; gene_name "RRI1"; transcript_biotype "protein_coding"; +chrIV SGD exon 68997 70319 . - 0 transcript_id "YDL216C_id005"; gene_name "RRI1"; gene_id "YDL216C"; +chrIV SGD gene 70485 74116 . - . gene_id "YDL215C"; gene_biotype "protein_coding"; +chrIV SGD transcript 70485 74116 . - . transcript_id "YDL215C_id002"; gene_id "YDL215C"; gene_name "GDH2"; transcript_biotype "protein_coding"; +chrIV SGD exon 70485 74116 . - . transcript_id "YDL215C_id002"; gene_id "YDL215C"; gene_name "GDH2"; +chrIV SGD transcript 70640 73918 . - . transcript_id "YDL215C_id001"; gene_id "YDL215C"; gene_name "GDH2"; transcript_biotype "protein_coding"; +chrIV SGD exon 70640 73918 . - 0 transcript_id "YDL215C_id001"; gene_name "GDH2"; gene_id "YDL215C"; +chrIV SGD gene 74446 76545 . - . gene_id "YDL214C"; gene_biotype "protein_coding"; +chrIV SGD transcript 74446 76545 . - . transcript_id "YDL214C_mRNA"; gene_id "YDL214C"; gene_name "PRR2"; transcript_biotype "protein_coding"; +chrIV SGD CDS 74446 76545 . - 0 transcript_id "YDL214C_mRNA"; gene_name "PRR2"; gene_id "YDL214C"; +chrIV SGD gene 76748 77975 . - . gene_id "YDL213C"; gene_biotype "protein_coding"; +chrIV SGD transcript 76748 77975 . - . transcript_id "YDL213C_id003"; gene_id "YDL213C"; gene_name "NOP6"; transcript_biotype "protein_coding"; +chrIV SGD exon 76748 77975 . - . transcript_id "YDL213C_id003"; gene_id "YDL213C"; gene_name "NOP6"; +chrIV SGD transcript 77289 77966 . - . transcript_id "YDL213C_id001"; gene_id "YDL213C"; gene_name "NOP6"; transcript_biotype "protein_coding"; +chrIV SGD exon 77289 77966 . - 0 transcript_id "YDL213C_id001"; gene_name "NOP6"; gene_id "YDL213C"; +chrIV SGD gene 78334 79264 . + . gene_id "YDL212W"; gene_biotype "protein_coding"; +chrIV SGD transcript 78334 79264 . + . transcript_id "YDL212W_id001"; gene_id "YDL212W"; gene_name "SHR3"; transcript_biotype "protein_coding"; +chrIV SGD exon 78334 79264 . + . transcript_id "YDL212W_id001"; gene_id "YDL212W"; gene_name "SHR3"; +chrIV SGD transcript 78426 79058 . + . transcript_id "YDL212W_id002"; gene_id "YDL212W"; gene_name "SHR3"; transcript_biotype "protein_coding"; +chrIV SGD exon 78426 79058 . + 0 transcript_id "YDL212W_id002"; gene_name "SHR3"; gene_id "YDL212W"; +chrIV SGD gene 79143 80523 . - . gene_id "YDL211C"; gene_biotype "protein_coding"; +chrIV SGD transcript 79143 80523 . - . transcript_id "YDL211C_id005"; gene_id "YDL211C"; transcript_biotype "protein_coding"; +chrIV SGD exon 79143 80523 . - . transcript_id "YDL211C_id005"; gene_id "YDL211C"; +chrIV SGD transcript 79294 80412 . - . transcript_id "YDL211C_id001"; gene_id "YDL211C"; transcript_biotype "protein_coding"; +chrIV SGD exon 79294 80412 . - 0 transcript_id "YDL211C_id001"; gene_id "YDL211C"; +chrIV SGD gene 83548 83618 . + . gene_id "YNCD0001W"; gene_biotype "ncRNA"; +chrIV SGD transcript 83548 83618 . + . transcript_id "YNCD0001W_tRNA"; gene_id "YNCD0001W"; transcript_biotype "ncRNA"; +chrIV SGD exon 83548 83618 . + . transcript_id "YNCD0001W_tRNA"; gene_id "YNCD0001W"; +chrIV SGD gene 84270 85985 . + . gene_id "YDL210W"; gene_biotype "protein_coding"; +chrIV SGD transcript 84270 85985 . + . transcript_id "YDL210W_mRNA"; gene_id "YDL210W"; gene_name "UGA4"; transcript_biotype "protein_coding"; +chrIV SGD CDS 84270 85985 . + 0 transcript_id "YDL210W_mRNA"; gene_name "UGA4"; gene_id "YDL210W"; +chrIV SGD gene 85948 87259 . - . gene_id "YDL209C"; gene_biotype "protein_coding"; +chrIV SGD transcript 85948 87259 . - . transcript_id "YDL209C_id002"; gene_id "YDL209C"; gene_name "CWC2"; transcript_biotype "protein_coding"; +chrIV SGD exon 85948 87259 . - . transcript_id "YDL209C_id002"; gene_id "YDL209C"; gene_name "CWC2"; +chrIV SGD transcript 86207 87226 . - . transcript_id "YDL209C_id001"; gene_id "YDL209C"; gene_name "CWC2"; transcript_biotype "protein_coding"; +chrIV SGD exon 86207 87226 . - 0 transcript_id "YDL209C_id001"; gene_name "CWC2"; gene_id "YDL209C"; +chrIV SGD gene 87482 88222 . + . gene_id "YDL208W"; gene_biotype "protein_coding"; +chrIV SGD transcript 87482 88222 . + . transcript_id "YDL208W_id001"; gene_id "YDL208W"; gene_name "NHP2"; transcript_biotype "protein_coding"; +chrIV SGD exon 87482 88222 . + . transcript_id "YDL208W_id001"; gene_id "YDL208W"; gene_name "NHP2"; +chrIV SGD transcript 87512 87982 . + . transcript_id "YDL208W_id002"; gene_id "YDL208W"; gene_name "NHP2"; transcript_biotype "protein_coding"; +chrIV SGD exon 87512 87982 . + 0 transcript_id "YDL208W_id002"; gene_name "NHP2"; gene_id "YDL208W"; +chrIV SGD gene 88210 89944 . + . gene_id "YDL207W"; gene_biotype "protein_coding"; +chrIV SGD transcript 88210 89944 . + . transcript_id "YDL207W_id003"; gene_id "YDL207W"; gene_name "GLE1"; transcript_biotype "protein_coding"; +chrIV SGD exon 88210 89944 . + . transcript_id "YDL207W_id003"; gene_id "YDL207W"; gene_name "GLE1"; +chrIV SGD transcript 88248 89864 . + . transcript_id "YDL207W_id001"; gene_id "YDL207W"; gene_name "GLE1"; transcript_biotype "protein_coding"; +chrIV SGD exon 88248 89864 . + 0 transcript_id "YDL207W_id001"; gene_name "GLE1"; gene_id "YDL207W"; +chrIV SGD gene 90022 92478 . + . gene_id "YDL206W"; gene_biotype "protein_coding"; +chrIV SGD transcript 90022 92478 . + . transcript_id "YDL206W_id002"; gene_id "YDL206W"; gene_name "YCX1"; transcript_biotype "protein_coding"; +chrIV SGD exon 90022 92478 . + . transcript_id "YDL206W_id002"; gene_id "YDL206W"; gene_name "YCX1"; +chrIV SGD transcript 90176 92464 . + . transcript_id "YDL206W_id001"; gene_id "YDL206W"; gene_name "YCX1"; transcript_biotype "protein_coding"; +chrIV SGD exon 90176 92464 . + 0 transcript_id "YDL206W_id001"; gene_name "YCX1"; gene_id "YDL206W"; +chrIV SGD gene 92468 93980 . - . gene_id "YDL205C"; gene_biotype "protein_coding"; +chrIV SGD transcript 92468 93980 . - . transcript_id "YDL205C_id002"; gene_id "YDL205C"; gene_name "HEM3"; transcript_biotype "protein_coding"; +chrIV SGD exon 92468 93980 . - . transcript_id "YDL205C_id002"; gene_id "YDL205C"; gene_name "HEM3"; +chrIV SGD transcript 92762 93745 . - . transcript_id "YDL205C_id001"; gene_id "YDL205C"; gene_name "HEM3"; transcript_biotype "protein_coding"; +chrIV SGD exon 92762 93745 . - 0 transcript_id "YDL205C_id001"; gene_name "HEM3"; gene_id "YDL205C"; +chrIV SGD gene 94107 95982 . + . gene_id "YDL204W"; gene_biotype "protein_coding"; +chrIV SGD transcript 94107 95982 . + . transcript_id "YDL204W_id002"; gene_id "YDL204W"; gene_name "RTN2"; transcript_biotype "protein_coding"; +chrIV SGD exon 94107 95982 . + . transcript_id "YDL204W_id002"; gene_id "YDL204W"; gene_name "RTN2"; +chrIV SGD transcript 94605 95786 . + . transcript_id "YDL204W_id001"; gene_id "YDL204W"; gene_name "RTN2"; transcript_biotype "protein_coding"; +chrIV SGD exon 94605 95786 . + 0 transcript_id "YDL204W_id001"; gene_name "RTN2"; gene_id "YDL204W"; +chrIV SGD gene 95886 98152 . - . gene_id "YDL203C"; gene_biotype "protein_coding"; +chrIV SGD transcript 95886 98152 . - . transcript_id "YDL203C_id002"; gene_id "YDL203C"; gene_name "ACK1"; transcript_biotype "protein_coding"; +chrIV SGD exon 95886 98152 . - . transcript_id "YDL203C_id002"; gene_id "YDL203C"; gene_name "ACK1"; +chrIV SGD transcript 96082 97953 . - . transcript_id "YDL203C_id001"; gene_id "YDL203C"; gene_name "ACK1"; transcript_biotype "protein_coding"; +chrIV SGD exon 96082 97953 . - 0 transcript_id "YDL203C_id001"; gene_name "ACK1"; gene_id "YDL203C"; +chrIV SGD gene 98422 99652 . + . gene_id "YDL202W"; gene_biotype "protein_coding"; +chrIV SGD transcript 98422 99652 . + . transcript_id "YDL202W_id001"; gene_id "YDL202W"; gene_name "MRPL11"; transcript_biotype "protein_coding"; +chrIV SGD exon 98422 99652 . + . transcript_id "YDL202W_id001"; gene_id "YDL202W"; gene_name "MRPL11"; +chrIV SGD transcript 98475 99224 . + . transcript_id "YDL202W_id002"; gene_id "YDL202W"; gene_name "MRPL11"; transcript_biotype "protein_coding"; +chrIV SGD exon 98475 99224 . + 0 transcript_id "YDL202W_id002"; gene_name "MRPL11"; gene_id "YDL202W"; +chrIV SGD gene 99271 100498 . + . gene_id "YDL201W"; gene_biotype "protein_coding"; +chrIV SGD transcript 99271 100498 . + . transcript_id "YDL201W_id003"; gene_id "YDL201W"; gene_name "TRM8"; transcript_biotype "protein_coding"; +chrIV SGD exon 99271 100498 . + . transcript_id "YDL201W_id003"; gene_id "YDL201W"; gene_name "TRM8"; +chrIV SGD transcript 99561 100421 . + . transcript_id "YDL201W_id001"; gene_id "YDL201W"; gene_name "TRM8"; transcript_biotype "protein_coding"; +chrIV SGD exon 99561 100421 . + 0 transcript_id "YDL201W_id001"; gene_name "TRM8"; gene_id "YDL201W"; +chrIV SGD gene 100418 101121 . - . gene_id "YDL200C"; gene_biotype "protein_coding"; +chrIV SGD transcript 100418 101121 . - . transcript_id "YDL200C_id004"; gene_id "YDL200C"; gene_name "MGT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 100418 101121 . - . transcript_id "YDL200C_id004"; gene_id "YDL200C"; gene_name "MGT1"; +chrIV SGD transcript 100501 101067 . - . transcript_id "YDL200C_id001"; gene_id "YDL200C"; gene_name "MGT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 100501 101067 . - 0 transcript_id "YDL200C_id001"; gene_name "MGT1"; gene_id "YDL200C"; +chrIV SGD gene 101232 103404 . - . gene_id "YDL199C"; gene_biotype "protein_coding"; +chrIV SGD transcript 101232 103404 . - . transcript_id "YDL199C_id002"; gene_id "YDL199C"; transcript_biotype "protein_coding"; +chrIV SGD exon 101232 103404 . - . transcript_id "YDL199C_id002"; gene_id "YDL199C"; +chrIV SGD transcript 101290 103353 . - . transcript_id "YDL199C_id001"; gene_id "YDL199C"; transcript_biotype "protein_coding"; +chrIV SGD exon 101290 103353 . - 0 transcript_id "YDL199C_id001"; gene_id "YDL199C"; +chrIV SGD gene 103506 104715 . - . gene_id "YDL198C"; gene_biotype "protein_coding"; +chrIV SGD transcript 103506 104715 . - . transcript_id "YDL198C_id002"; gene_id "YDL198C"; gene_name "GGC1"; transcript_biotype "protein_coding"; +chrIV SGD exon 103506 104715 . - . transcript_id "YDL198C_id002"; gene_id "YDL198C"; gene_name "GGC1"; +chrIV SGD transcript 103649 104551 . - . transcript_id "YDL198C_id001"; gene_id "YDL198C"; gene_name "GGC1"; transcript_biotype "protein_coding"; +chrIV SGD exon 103649 104551 . - 0 transcript_id "YDL198C_id001"; gene_name "GGC1"; gene_id "YDL198C"; +chrIV SGD gene 104744 106873 . - . gene_id "YDL197C"; gene_biotype "protein_coding"; +chrIV SGD transcript 104744 106873 . - . transcript_id "YDL197C_id001"; gene_id "YDL197C"; gene_name "ASF2"; transcript_biotype "protein_coding"; +chrIV SGD exon 104744 106873 . - . transcript_id "YDL197C_id001"; gene_id "YDL197C"; gene_name "ASF2"; +chrIV SGD transcript 104917 106494 . - . transcript_id "YDL197C_id002"; gene_id "YDL197C"; gene_name "ASF2"; transcript_biotype "protein_coding"; +chrIV SGD exon 104917 106494 . - 0 transcript_id "YDL197C_id002"; gene_name "ASF2"; gene_id "YDL197C"; +chrIV SGD gene 106741 107070 . + . gene_id "YDL196W"; gene_biotype "protein_coding"; +chrIV SGD transcript 106741 107070 . + . transcript_id "YDL196W_mRNA"; gene_id "YDL196W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 106741 107070 . + 0 transcript_id "YDL196W_mRNA"; gene_id "YDL196W"; +chrIV SGD gene 107095 111194 . + . gene_id "YDL195W"; gene_biotype "protein_coding"; +chrIV SGD transcript 107095 111194 . + . transcript_id "YDL195W_id002"; gene_id "YDL195W"; gene_name "SEC31"; transcript_biotype "protein_coding"; +chrIV SGD exon 107095 111194 . + . transcript_id "YDL195W_id002"; gene_id "YDL195W"; gene_name "SEC31"; +chrIV SGD transcript 107208 111029 . + . transcript_id "YDL195W_id001"; gene_id "YDL195W"; gene_name "SEC31"; transcript_biotype "protein_coding"; +chrIV SGD exon 107208 111029 . + 0 transcript_id "YDL195W_id001"; gene_name "SEC31"; gene_id "YDL195W"; +chrIV SGD gene 111580 114234 . + . gene_id "YDL194W"; gene_biotype "protein_coding"; +chrIV SGD transcript 111580 114234 . + . transcript_id "YDL194W_mRNA"; gene_id "YDL194W"; gene_name "SNF3"; transcript_biotype "protein_coding"; +chrIV SGD CDS 111580 114234 . + 0 transcript_id "YDL194W_mRNA"; gene_name "SNF3"; gene_id "YDL194W"; +chrIV SGD gene 114565 115999 . + . gene_id "YDL193W"; gene_biotype "protein_coding"; +chrIV SGD transcript 114565 115999 . + . transcript_id "YDL193W_id004"; gene_id "YDL193W"; gene_name "NUS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 114565 115999 . + . transcript_id "YDL193W_id004"; gene_id "YDL193W"; gene_name "NUS1"; +chrIV SGD transcript 114672 115799 . + . transcript_id "YDL193W_id001"; gene_id "YDL193W"; gene_name "NUS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 114672 115799 . + 0 transcript_id "YDL193W_id001"; gene_name "NUS1"; gene_id "YDL193W"; +chrIV SGD gene 116275 117614 . + . gene_id "YDL192W"; gene_biotype "protein_coding"; +chrIV SGD transcript 116275 117614 . + . transcript_id "YDL192W_id001"; gene_id "YDL192W"; gene_name "ARF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 116275 117614 . + . transcript_id "YDL192W_id001"; gene_id "YDL192W"; gene_name "ARF1"; +chrIV SGD transcript 116321 116866 . + . transcript_id "YDL192W_id002"; gene_id "YDL192W"; gene_name "ARF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 116321 116866 . + 0 transcript_id "YDL192W_id002"; gene_name "ARF1"; gene_id "YDL192W"; +chrIV SGD gene 116977 118616 . + . gene_id "YDL191W"; gene_biotype "protein_coding"; +chrIV SGD transcript 116977 118616 . + . transcript_id "YDL191W_id001"; gene_id "YDL191W"; gene_name "RPL35A"; transcript_biotype "protein_coding"; +chrIV SGD exon 116977 118616 . + . transcript_id "YDL191W_id001"; gene_id "YDL191W"; gene_name "RPL35A"; +chrIV SGD transcript 117664 118517 . + . transcript_id "YDL191W_id003"; gene_id "YDL191W"; gene_name "RPL35A"; transcript_biotype "protein_coding"; +chrIV SGD exon 117664 117666 . + 0 transcript_id "YDL191W_id003"; gene_name "RPL35A"; gene_id "YDL191W"; +chrIV SGD exon 118158 118517 . + 0 transcript_id "YDL191W_id003"; gene_name "RPL35A"; gene_id "YDL191W"; +chrIV SGD gene 118707 121592 . - . gene_id "YDL190C"; gene_biotype "protein_coding"; +chrIV SGD transcript 118707 121592 . - . transcript_id "YDL190C_id001"; gene_id "YDL190C"; gene_name "UFD2"; transcript_biotype "protein_coding"; +chrIV SGD exon 118707 121592 . - 0 transcript_id "YDL190C_id001"; gene_name "UFD2"; gene_id "YDL190C"; +chrIV SGD gene 121982 123743 . + . gene_id "YDL189W"; gene_biotype "protein_coding"; +chrIV SGD transcript 121982 123743 . + . transcript_id "YDL189W_id004"; gene_id "YDL189W"; gene_name "RBS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 121982 123743 . + . transcript_id "YDL189W_id004"; gene_id "YDL189W"; gene_name "RBS1"; +chrIV SGD transcript 122078 123589 . + . transcript_id "YDL189W_id001"; gene_id "YDL189W"; gene_name "RBS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 122078 122176 . + . transcript_id "YDL189W_id001"; gene_name "RBS1"; gene_id "YDL189W"; +chrIV SGD exon 122216 123589 . + . transcript_id "YDL189W_id001"; gene_name "RBS1"; gene_id "YDL189W"; +chrIV SGD exon 122216 123589 . + 0 transcript_id "YDL189W_id001"; gene_name "RBS1"; gene_id "YDL189W"; +chrIV SGD gene 123711 125180 . - . gene_id "YDL188C"; gene_biotype "protein_coding"; +chrIV SGD transcript 123711 125180 . - . transcript_id "YDL188C_id002"; gene_id "YDL188C"; gene_name "PPH22"; transcript_biotype "protein_coding"; +chrIV SGD exon 123711 125180 . - . transcript_id "YDL188C_id002"; gene_id "YDL188C"; gene_name "PPH22"; +chrIV SGD transcript 123865 124998 . - . transcript_id "YDL188C_id001"; gene_id "YDL188C"; gene_name "PPH22"; transcript_biotype "protein_coding"; +chrIV SGD exon 123865 124998 . - 0 transcript_id "YDL188C_id001"; gene_name "PPH22"; gene_id "YDL188C"; +chrIV SGD gene 125358 126467 . - . gene_id "YDL187C"; gene_biotype "protein_coding"; +chrIV SGD transcript 125358 126467 . - . transcript_id "YDL187C_id004"; gene_id "YDL187C"; transcript_biotype "protein_coding"; +chrIV SGD exon 125358 126467 . - . transcript_id "YDL187C_id004"; gene_id "YDL187C"; +chrIV SGD transcript 125509 125838 . - . transcript_id "YDL187C_id001"; gene_id "YDL187C"; transcript_biotype "protein_coding"; +chrIV SGD exon 125509 125838 . - 0 transcript_id "YDL187C_id001"; gene_id "YDL187C"; +chrIV SGD gene 125616 126449 . + . gene_id "YDL186W"; gene_biotype "protein_coding"; +chrIV SGD transcript 125616 126449 . + . transcript_id "YDL186W_id001"; gene_id "YDL186W"; transcript_biotype "protein_coding"; +chrIV SGD exon 125616 126449 . + 0 transcript_id "YDL186W_id001"; gene_id "YDL186W"; +chrIV SGD gene 126608 126835 . - . gene_id "YDL185C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 126608 126835 . - . transcript_id "YDL185C-A_mRNA"; gene_id "YDL185C-A"; transcript_biotype "protein_coding"; +chrIV SGD CDS 126608 126835 . - 0 transcript_id "YDL185C-A_mRNA"; gene_id "YDL185C-A"; +chrIV SGD gene 126679 130168 . + . gene_id "YDL185W"; gene_biotype "protein_coding"; +chrIV SGD transcript 126679 130168 . + . transcript_id "YDL185W_id001"; gene_id "YDL185W"; gene_name "VMA1"; transcript_biotype "protein_coding"; +chrIV SGD exon 126679 130168 . + . transcript_id "YDL185W_id001"; gene_id "YDL185W"; gene_name "VMA1"; +chrIV SGD transcript 126787 130002 . + . transcript_id "YDL185W_id003"; gene_id "YDL185W"; gene_name "VMA1"; transcript_biotype "protein_coding"; +chrIV SGD exon 126787 130002 . + 0 transcript_id "YDL185W_id003"; gene_name "VMA1"; gene_id "YDL185W"; +chrIV SGD gene 130407 130484 . - . gene_id "YDL184C"; gene_biotype "protein_coding"; +chrIV SGD transcript 130407 130484 . - . transcript_id "YDL184C_id001"; gene_id "YDL184C"; gene_name "RPL41A"; transcript_biotype "protein_coding"; +chrIV SGD exon 130407 130484 . - 0 transcript_id "YDL184C_id001"; gene_name "RPL41A"; gene_id "YDL184C"; +chrIV SGD gene 130511 134727 . - . gene_id "YDL183C"; gene_biotype "protein_coding"; +chrIV SGD transcript 130511 134727 . - . transcript_id "YDL183C_id001"; gene_id "YDL183C"; gene_name "MRX19"; transcript_biotype "protein_coding"; +chrIV SGD exon 130511 134727 . - . transcript_id "YDL183C_id001"; gene_id "YDL183C"; gene_name "MRX19"; +chrIV SGD transcript 130871 131833 . - . transcript_id "YDL183C_id002"; gene_id "YDL183C"; gene_name "MRX19"; transcript_biotype "protein_coding"; +chrIV SGD exon 130871 131833 . - 0 transcript_id "YDL183C_id002"; gene_name "MRX19"; gene_id "YDL183C"; +chrIV SGD gene 133347 134811 . + . gene_id "YDL182W"; gene_biotype "protein_coding"; +chrIV SGD transcript 133347 134811 . + . transcript_id "YDL182W_id004"; gene_id "YDL182W"; gene_name "LYS20"; transcript_biotype "protein_coding"; +chrIV SGD exon 133347 134811 . + . transcript_id "YDL182W_id004"; gene_id "YDL182W"; gene_name "LYS20"; +chrIV SGD transcript 133437 134723 . + . transcript_id "YDL182W_id001"; gene_id "YDL182W"; gene_name "LYS20"; transcript_biotype "protein_coding"; +chrIV SGD exon 133437 134723 . + 0 transcript_id "YDL182W_id001"; gene_name "LYS20"; gene_id "YDL182W"; +chrIV SGD gene 135119 135745 . + . gene_id "YDL181W"; gene_biotype "protein_coding"; +chrIV SGD transcript 135119 135745 . + . transcript_id "YDL181W_id023"; gene_id "YDL181W"; gene_name "INH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 135119 135745 . + . transcript_id "YDL181W_id023"; gene_id "YDL181W"; gene_name "INH1"; +chrIV SGD transcript 135179 135436 . + . transcript_id "YDL181W_id001"; gene_id "YDL181W"; gene_name "INH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 135179 135436 . + 0 transcript_id "YDL181W_id001"; gene_name "INH1"; gene_id "YDL181W"; +chrIV SGD gene 135718 137602 . + . gene_id "YDL180W"; gene_biotype "protein_coding"; +chrIV SGD transcript 135718 137602 . + . transcript_id "YDL180W_id004"; gene_id "YDL180W"; gene_name "AIT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 135718 137602 . + . transcript_id "YDL180W_id004"; gene_id "YDL180W"; gene_name "AIT1"; +chrIV SGD transcript 135896 137539 . + . transcript_id "YDL180W_id001"; gene_id "YDL180W"; gene_name "AIT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 135896 137539 . + 0 transcript_id "YDL180W_id001"; gene_name "AIT1"; gene_id "YDL180W"; +chrIV SGD gene 138291 139205 . + . gene_id "YDL179W"; gene_biotype "protein_coding"; +chrIV SGD transcript 138291 139205 . + . transcript_id "YDL179W_id001"; gene_id "YDL179W"; gene_name "PCL9"; transcript_biotype "protein_coding"; +chrIV SGD exon 138291 139205 . + 0 transcript_id "YDL179W_id001"; gene_name "PCL9"; gene_id "YDL179W"; +chrIV SGD gene 139505 141255 . + . gene_id "YDL178W"; gene_biotype "protein_coding"; +chrIV SGD transcript 139505 141255 . + . transcript_id "YDL178W_id001"; gene_id "YDL178W"; gene_name "DLD2"; transcript_biotype "protein_coding"; +chrIV SGD exon 139505 141255 . + . transcript_id "YDL178W_id001"; gene_id "YDL178W"; gene_name "DLD2"; +chrIV SGD transcript 139522 141114 . + . transcript_id "YDL178W_id002"; gene_id "YDL178W"; gene_name "DLD2"; transcript_biotype "protein_coding"; +chrIV SGD exon 139522 141114 . + 0 transcript_id "YDL178W_id002"; gene_name "DLD2"; gene_id "YDL178W"; +chrIV SGD gene 141101 141816 . - . gene_id "YDL177C"; gene_biotype "protein_coding"; +chrIV SGD transcript 141101 141816 . - . transcript_id "YDL177C_id001"; gene_id "YDL177C"; transcript_biotype "protein_coding"; +chrIV SGD exon 141101 141816 . - . transcript_id "YDL177C_id001"; gene_id "YDL177C"; +chrIV SGD transcript 141209 141721 . - . transcript_id "YDL177C_id002"; gene_id "YDL177C"; transcript_biotype "protein_coding"; +chrIV SGD exon 141209 141721 . - 0 transcript_id "YDL177C_id002"; gene_id "YDL177C"; +chrIV SGD gene 141960 144475 . + . gene_id "YDL176W"; gene_biotype "protein_coding"; +chrIV SGD transcript 141960 144475 . + . transcript_id "YDL176W_id001"; gene_id "YDL176W"; gene_name "GID12"; transcript_biotype "protein_coding"; +chrIV SGD exon 141960 144475 . + . transcript_id "YDL176W_id001"; gene_id "YDL176W"; gene_name "GID12"; +chrIV SGD transcript 142097 144223 . + . transcript_id "YDL176W_id002"; gene_id "YDL176W"; gene_name "GID12"; transcript_biotype "protein_coding"; +chrIV SGD exon 142097 144223 . + 0 transcript_id "YDL176W_id002"; gene_name "GID12"; gene_id "YDL176W"; +chrIV SGD gene 144268 145566 . - . gene_id "YDL175C"; gene_biotype "protein_coding"; +chrIV SGD transcript 144268 145566 . - . transcript_id "YDL175C_id002"; gene_id "YDL175C"; gene_name "AIR2"; transcript_biotype "protein_coding"; +chrIV SGD exon 144268 145566 . - . transcript_id "YDL175C_id002"; gene_id "YDL175C"; gene_name "AIR2"; +chrIV SGD transcript 144484 145518 . - . transcript_id "YDL175C_id001"; gene_id "YDL175C"; gene_name "AIR2"; transcript_biotype "protein_coding"; +chrIV SGD exon 144484 145518 . - 0 transcript_id "YDL175C_id001"; gene_name "AIR2"; gene_id "YDL175C"; +chrIV SGD gene 145826 147589 . - . gene_id "YDL174C"; gene_biotype "protein_coding"; +chrIV SGD transcript 145826 147589 . - . transcript_id "YDL174C_id001"; gene_id "YDL174C"; gene_name "DLD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 145826 147589 . - 0 transcript_id "YDL174C_id001"; gene_name "DLD1"; gene_id "YDL174C"; +chrIV SGD gene 148191 149078 . + . gene_id "YDL173W"; gene_biotype "protein_coding"; +chrIV SGD transcript 148191 149078 . + . transcript_id "YDL173W_mRNA"; gene_id "YDL173W"; gene_name "PAR32"; transcript_biotype "protein_coding"; +chrIV SGD CDS 148191 149078 . + 0 transcript_id "YDL173W_mRNA"; gene_name "PAR32"; gene_id "YDL173W"; +chrIV SGD gene 148607 149086 . - . gene_id "YDL172C"; gene_biotype "protein_coding"; +chrIV SGD transcript 148607 149086 . - . transcript_id "YDL172C_mRNA"; gene_id "YDL172C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 148607 149086 . - 0 transcript_id "YDL172C_mRNA"; gene_id "YDL172C"; +chrIV SGD gene 149203 155640 . - . gene_id "YDL171C"; gene_biotype "protein_coding"; +chrIV SGD transcript 149203 155640 . - . transcript_id "YDL171C_mRNA"; gene_id "YDL171C"; gene_name "GLT1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 149203 155640 . - 0 transcript_id "YDL171C_mRNA"; gene_name "GLT1"; gene_id "YDL171C"; +chrIV SGD gene 156298 158077 . + . gene_id "YDL170W"; gene_biotype "protein_coding"; +chrIV SGD transcript 156298 158077 . + . transcript_id "YDL170W_id002"; gene_id "YDL170W"; gene_name "UGA3"; transcript_biotype "protein_coding"; +chrIV SGD exon 156298 158077 . + . transcript_id "YDL170W_id002"; gene_id "YDL170W"; gene_name "UGA3"; +chrIV SGD transcript 156318 157904 . + . transcript_id "YDL170W_id001"; gene_id "YDL170W"; gene_name "UGA3"; transcript_biotype "protein_coding"; +chrIV SGD exon 156318 157904 . + 0 transcript_id "YDL170W_id001"; gene_name "UGA3"; gene_id "YDL170W"; +chrIV SGD gene 157899 158735 . - . gene_id "YDL169C"; gene_biotype "protein_coding"; +chrIV SGD transcript 157899 158735 . - . transcript_id "YDL169C_id001"; gene_id "YDL169C"; gene_name "UGX2"; transcript_biotype "protein_coding"; +chrIV SGD exon 157899 158735 . - . transcript_id "YDL169C_id001"; gene_id "YDL169C"; gene_name "UGX2"; +chrIV SGD transcript 158064 158735 . - . transcript_id "YDL169C_id002"; gene_id "YDL169C"; gene_name "UGX2"; transcript_biotype "protein_coding"; +chrIV SGD exon 158064 158735 . - 0 transcript_id "YDL169C_id002"; gene_name "UGX2"; gene_id "YDL169C"; +chrIV SGD gene 159517 160977 . + . gene_id "YDL168W"; gene_biotype "protein_coding"; +chrIV SGD transcript 159517 160977 . + . transcript_id "YDL168W_id004"; gene_id "YDL168W"; gene_name "SFA1"; transcript_biotype "protein_coding"; +chrIV SGD exon 159517 160977 . + . transcript_id "YDL168W_id004"; gene_id "YDL168W"; gene_name "SFA1"; +chrIV SGD transcript 159604 160764 . + . transcript_id "YDL168W_id001"; gene_id "YDL168W"; gene_name "SFA1"; transcript_biotype "protein_coding"; +chrIV SGD exon 159604 160764 . + 0 transcript_id "YDL168W_id001"; gene_name "SFA1"; gene_id "YDL168W"; +chrIV SGD gene 160753 163197 . - . gene_id "YDL167C"; gene_biotype "protein_coding"; +chrIV SGD transcript 160753 163197 . - . transcript_id "YDL167C_id001"; gene_id "YDL167C"; gene_name "NRP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 160753 163197 . - . transcript_id "YDL167C_id001"; gene_id "YDL167C"; gene_name "NRP1"; +chrIV SGD transcript 160995 163154 . - . transcript_id "YDL167C_id004"; gene_id "YDL167C"; gene_name "NRP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 160995 163154 . - 0 transcript_id "YDL167C_id004"; gene_name "NRP1"; gene_id "YDL167C"; +chrIV SGD gene 163308 164123 . - . gene_id "YDL166C"; gene_biotype "protein_coding"; +chrIV SGD transcript 163308 164123 . - . transcript_id "YDL166C_id001"; gene_id "YDL166C"; gene_name "FAP7"; transcript_biotype "protein_coding"; +chrIV SGD exon 163308 164123 . - . transcript_id "YDL166C_id001"; gene_id "YDL166C"; gene_name "FAP7"; +chrIV SGD transcript 163449 164042 . - . transcript_id "YDL166C_id003"; gene_id "YDL166C"; gene_name "FAP7"; transcript_biotype "protein_coding"; +chrIV SGD exon 163449 164042 . - 0 transcript_id "YDL166C_id003"; gene_name "FAP7"; gene_id "YDL166C"; +chrIV SGD gene 164234 165057 . + . gene_id "YDL165W"; gene_biotype "protein_coding"; +chrIV SGD transcript 164234 165057 . + . transcript_id "YDL165W_id001"; gene_id "YDL165W"; gene_name "CDC36"; transcript_biotype "protein_coding"; +chrIV SGD exon 164234 165057 . + . transcript_id "YDL165W_id001"; gene_id "YDL165W"; gene_name "CDC36"; +chrIV SGD transcript 164290 164865 . + . transcript_id "YDL165W_id002"; gene_id "YDL165W"; gene_name "CDC36"; transcript_biotype "protein_coding"; +chrIV SGD exon 164290 164865 . + 0 transcript_id "YDL165W_id002"; gene_name "CDC36"; gene_id "YDL165W"; +chrIV SGD gene 164825 167315 . - . gene_id "YDL164C"; gene_biotype "protein_coding"; +chrIV SGD transcript 164825 167315 . - . transcript_id "YDL164C_id002"; gene_id "YDL164C"; gene_name "CDC9"; transcript_biotype "protein_coding"; +chrIV SGD exon 164825 167315 . - . transcript_id "YDL164C_id002"; gene_id "YDL164C"; gene_name "CDC9"; +chrIV SGD transcript 164987 167254 . - . transcript_id "YDL164C_id001"; gene_id "YDL164C"; gene_name "CDC9"; transcript_biotype "protein_coding"; +chrIV SGD exon 164987 167254 . - 0 transcript_id "YDL164C_id001"; gene_name "CDC9"; gene_id "YDL164C"; +chrIV SGD gene 166956 167258 . + . gene_id "YDL163W"; gene_biotype "protein_coding"; +chrIV SGD transcript 166956 167258 . + . transcript_id "YDL163W_mRNA"; gene_id "YDL163W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 166956 167258 . + 0 transcript_id "YDL163W_mRNA"; gene_id "YDL163W"; +chrIV SGD gene 167359 167715 . - . gene_id "YDL162C"; gene_biotype "protein_coding"; +chrIV SGD transcript 167359 167715 . - . transcript_id "YDL162C_mRNA"; gene_id "YDL162C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 167359 167715 . - 0 transcript_id "YDL162C_mRNA"; gene_id "YDL162C"; +chrIV SGD gene 167688 169321 . + . gene_id "YDL161W"; gene_biotype "protein_coding"; +chrIV SGD transcript 167688 169321 . + . transcript_id "YDL161W_id003"; gene_id "YDL161W"; gene_name "ENT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 167688 169321 . + . transcript_id "YDL161W_id003"; gene_id "YDL161W"; gene_name "ENT1"; +chrIV SGD transcript 167714 169078 . + . transcript_id "YDL161W_id001"; gene_id "YDL161W"; gene_name "ENT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 167714 169078 . + 0 transcript_id "YDL161W_id001"; gene_name "ENT1"; gene_id "YDL161W"; +chrIV SGD gene 168273 169636 . - . gene_id "YDL160C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 168273 169636 . - . transcript_id "YDL160C-A_id002"; gene_id "YDL160C-A"; gene_name "MHF2"; transcript_biotype "protein_coding"; +chrIV SGD exon 168273 169636 . - . transcript_id "YDL160C-A_id002"; gene_id "YDL160C-A"; gene_name "MHF2"; +chrIV SGD transcript 169366 169608 . - . transcript_id "YDL160C-A_id001"; gene_id "YDL160C-A"; gene_name "MHF2"; transcript_biotype "protein_coding"; +chrIV SGD exon 169366 169608 . - 0 transcript_id "YDL160C-A_id001"; gene_name "MHF2"; gene_id "YDL160C-A"; +chrIV SGD gene 170410 171930 . - . gene_id "YDL160C"; gene_biotype "protein_coding"; +chrIV SGD transcript 170410 171930 . - . transcript_id "YDL160C_id001"; gene_id "YDL160C"; gene_name "DHH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 170410 171930 . - 0 transcript_id "YDL160C_id001"; gene_name "DHH1"; gene_id "YDL160C"; +chrIV SGD gene 172182 172313 . + . gene_id "YDL159W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 172182 172313 . + . transcript_id "YDL159W-A_mRNA"; gene_id "YDL159W-A"; transcript_biotype "protein_coding"; +chrIV SGD CDS 172182 172313 . + 0 transcript_id "YDL159W-A_mRNA"; gene_id "YDL159W-A"; +chrIV SGD gene 172435 174227 . + . gene_id "YDL159W"; gene_biotype "protein_coding"; +chrIV SGD transcript 172435 174227 . + . transcript_id "YDL159W_id001"; gene_id "YDL159W"; gene_name "STE7"; transcript_biotype "protein_coding"; +chrIV SGD exon 172435 174227 . + . transcript_id "YDL159W_id001"; gene_id "YDL159W"; gene_name "STE7"; +chrIV SGD transcript 172481 174028 . + . transcript_id "YDL159W_id002"; gene_id "YDL159W"; gene_name "STE7"; transcript_biotype "protein_coding"; +chrIV SGD exon 172481 174028 . + 0 transcript_id "YDL159W_id002"; gene_name "STE7"; gene_id "YDL159W"; +chrIV SGD gene 173056 173232 . - . gene_id "YDL159C-B"; gene_biotype "protein_coding"; +chrIV SGD transcript 173056 173232 . - . transcript_id "YDL159C-B_mRNA"; gene_id "YDL159C-B"; transcript_biotype "protein_coding"; +chrIV SGD CDS 173056 173232 . - 0 transcript_id "YDL159C-B_mRNA"; gene_id "YDL159C-B"; +chrIV SGD gene 173866 174174 . - . gene_id "YDL158C"; gene_biotype "protein_coding"; +chrIV SGD transcript 173866 174174 . - . transcript_id "YDL158C_mRNA"; gene_id "YDL158C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 173866 174174 . - 0 transcript_id "YDL158C_mRNA"; gene_id "YDL158C"; +chrIV SGD gene 173871 174632 . - . gene_id "YDL157C"; gene_biotype "protein_coding"; +chrIV SGD transcript 173871 174632 . - . transcript_id "YDL157C_id001"; gene_id "YDL157C"; gene_name "DMO2"; transcript_biotype "protein_coding"; +chrIV SGD exon 173871 174632 . - . transcript_id "YDL157C_id001"; gene_id "YDL157C"; gene_name "DMO2"; +chrIV SGD transcript 174232 174588 . - . transcript_id "YDL157C_id002"; gene_id "YDL157C"; gene_name "DMO2"; transcript_biotype "protein_coding"; +chrIV SGD exon 174232 174588 . - 0 transcript_id "YDL157C_id002"; gene_name "DMO2"; gene_id "YDL157C"; +chrIV SGD gene 174824 176786 . + . gene_id "YDL156W"; gene_biotype "protein_coding"; +chrIV SGD transcript 174824 176786 . + . transcript_id "YDL156W_id004"; gene_id "YDL156W"; gene_name "CMR1"; transcript_biotype "protein_coding"; +chrIV SGD exon 174824 176786 . + . transcript_id "YDL156W_id004"; gene_id "YDL156W"; gene_name "CMR1"; +chrIV SGD transcript 174918 176486 . + . transcript_id "YDL156W_id001"; gene_id "YDL156W"; gene_name "CMR1"; transcript_biotype "protein_coding"; +chrIV SGD exon 174918 176486 . + 0 transcript_id "YDL156W_id001"; gene_name "CMR1"; gene_id "YDL156W"; +chrIV SGD gene 175599 178176 . + . gene_id "YDL155W"; gene_biotype "protein_coding"; +chrIV SGD transcript 175599 178176 . + . transcript_id "YDL155W_id002"; gene_id "YDL155W"; gene_name "CLB3"; transcript_biotype "protein_coding"; +chrIV SGD exon 175599 178176 . + . transcript_id "YDL155W_id002"; gene_id "YDL155W"; gene_name "CLB3"; +chrIV SGD transcript 176773 178056 . + . transcript_id "YDL155W_id001"; gene_id "YDL155W"; gene_name "CLB3"; transcript_biotype "protein_coding"; +chrIV SGD exon 176773 178056 . + 0 transcript_id "YDL155W_id001"; gene_name "CLB3"; gene_id "YDL155W"; +chrIV SGD gene 178334 181039 . + . gene_id "YDL154W"; gene_biotype "protein_coding"; +chrIV SGD transcript 178334 181039 . + . transcript_id "YDL154W_mRNA"; gene_id "YDL154W"; gene_name "MSH5"; transcript_biotype "protein_coding"; +chrIV SGD CDS 178334 181039 . + 0 transcript_id "YDL154W_mRNA"; gene_name "MSH5"; gene_id "YDL154W"; +chrIV SGD gene 181045 183101 . - . gene_id "YDL153C"; gene_biotype "protein_coding"; +chrIV SGD transcript 181045 183101 . - . transcript_id "YDL153C_id001"; gene_id "YDL153C"; gene_name "SAS10"; transcript_biotype "protein_coding"; +chrIV SGD exon 181045 183101 . - . transcript_id "YDL153C_id001"; gene_id "YDL153C"; gene_name "SAS10"; +chrIV SGD transcript 181186 183018 . - . transcript_id "YDL153C_id002"; gene_id "YDL153C"; gene_name "SAS10"; transcript_biotype "protein_coding"; +chrIV SGD exon 181186 183018 . - 0 transcript_id "YDL153C_id002"; gene_name "SAS10"; gene_id "YDL153C"; +chrIV SGD gene 182822 183187 . + . gene_id "YDL152W"; gene_biotype "protein_coding"; +chrIV SGD transcript 182822 183187 . + . transcript_id "YDL152W_mRNA"; gene_id "YDL152W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 182822 183187 . + 0 transcript_id "YDL152W_mRNA"; gene_id "YDL152W"; +chrIV SGD gene 183171 184706 . + . gene_id "YDL150W"; gene_biotype "protein_coding"; +chrIV SGD transcript 183171 184706 . + . transcript_id "YDL150W_id001"; gene_id "YDL150W"; gene_name "RPC53"; transcript_biotype "protein_coding"; +chrIV SGD exon 183171 184706 . + . transcript_id "YDL150W_id001"; gene_id "YDL150W"; gene_name "RPC53"; +chrIV SGD gene 183318 183899 . - . gene_id "YDL151C"; gene_biotype "protein_coding"; +chrIV SGD transcript 183318 183899 . - . transcript_id "YDL151C_mRNA"; gene_id "YDL151C"; gene_name "BUD30"; transcript_biotype "protein_coding"; +chrIV SGD CDS 183318 183899 . - 0 transcript_id "YDL151C_mRNA"; gene_name "BUD30"; gene_id "YDL151C"; +chrIV SGD transcript 183343 184611 . + . transcript_id "YDL150W_id002"; gene_id "YDL150W"; gene_name "RPC53"; transcript_biotype "protein_coding"; +chrIV SGD exon 183343 184611 . + 0 transcript_id "YDL150W_id002"; gene_name "RPC53"; gene_id "YDL150W"; +chrIV SGD gene 184925 187918 . + . gene_id "YDL149W"; gene_biotype "protein_coding"; +chrIV SGD transcript 184925 187918 . + . transcript_id "YDL149W_id001"; gene_id "YDL149W"; gene_name "ATG9"; transcript_biotype "protein_coding"; +chrIV SGD exon 184925 187918 . + 0 transcript_id "YDL149W_id001"; gene_name "ATG9"; gene_id "YDL149W"; +chrIV SGD gene 187868 190647 . - . gene_id "YDL148C"; gene_biotype "protein_coding"; +chrIV SGD transcript 187868 190647 . - . transcript_id "YDL148C_id001"; gene_id "YDL148C"; gene_name "NOP14"; transcript_biotype "protein_coding"; +chrIV SGD exon 187868 190647 . - . transcript_id "YDL148C_id001"; gene_id "YDL148C"; gene_name "NOP14"; +chrIV SGD transcript 188154 190586 . - . transcript_id "YDL148C_id007"; gene_id "YDL148C"; gene_name "NOP14"; transcript_biotype "protein_coding"; +chrIV SGD exon 188154 190586 . - 0 transcript_id "YDL148C_id007"; gene_name "NOP14"; gene_id "YDL148C"; +chrIV SGD gene 190890 192644 . + . gene_id "YDL147W"; gene_biotype "protein_coding"; +chrIV SGD transcript 190890 192644 . + . transcript_id "YDL147W_id002"; gene_id "YDL147W"; gene_name "RPN5"; transcript_biotype "protein_coding"; +chrIV SGD exon 190890 192644 . + . transcript_id "YDL147W_id002"; gene_id "YDL147W"; gene_name "RPN5"; +chrIV SGD transcript 190924 192261 . + . transcript_id "YDL147W_id001"; gene_id "YDL147W"; gene_name "RPN5"; transcript_biotype "protein_coding"; +chrIV SGD exon 190924 192261 . + 0 transcript_id "YDL147W_id001"; gene_name "RPN5"; gene_id "YDL147W"; +chrIV SGD gene 192554 194484 . + . gene_id "YDL146W"; gene_biotype "protein_coding"; +chrIV SGD transcript 192554 194484 . + . transcript_id "YDL146W_id003"; gene_id "YDL146W"; gene_name "LDB17"; transcript_biotype "protein_coding"; +chrIV SGD exon 192554 194484 . + . transcript_id "YDL146W_id003"; gene_id "YDL146W"; gene_name "LDB17"; +chrIV SGD transcript 192750 194225 . + . transcript_id "YDL146W_id001"; gene_id "YDL146W"; gene_name "LDB17"; transcript_biotype "protein_coding"; +chrIV SGD exon 192750 194225 . + 0 transcript_id "YDL146W_id001"; gene_name "LDB17"; gene_id "YDL146W"; +chrIV SGD gene 194414 198481 . - . gene_id "YDL145C"; gene_biotype "protein_coding"; +chrIV SGD transcript 194414 198481 . - . transcript_id "YDL145C_id001"; gene_id "YDL145C"; gene_name "COP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 194414 198481 . - . transcript_id "YDL145C_id001"; gene_id "YDL145C"; gene_name "COP1"; +chrIV SGD transcript 194571 198176 . - . transcript_id "YDL145C_id002"; gene_id "YDL145C"; gene_name "COP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 194571 198176 . - 0 transcript_id "YDL145C_id002"; gene_name "COP1"; gene_id "YDL145C"; +chrIV SGD gene 198475 199758 . - . gene_id "YDL144C"; gene_biotype "protein_coding"; +chrIV SGD transcript 198475 199758 . - . transcript_id "YDL144C_id001"; gene_id "YDL144C"; transcript_biotype "protein_coding"; +chrIV SGD exon 198475 199758 . - . transcript_id "YDL144C_id001"; gene_id "YDL144C"; +chrIV SGD transcript 198662 199732 . - . transcript_id "YDL144C_id004"; gene_id "YDL144C"; transcript_biotype "protein_coding"; +chrIV SGD exon 198662 199732 . - 0 transcript_id "YDL144C_id004"; gene_id "YDL144C"; +chrIV SGD gene 199961 201842 . + . gene_id "YDL143W"; gene_biotype "protein_coding"; +chrIV SGD transcript 199961 201842 . + . transcript_id "YDL143W_id002"; gene_id "YDL143W"; gene_name "CCT4"; transcript_biotype "protein_coding"; +chrIV SGD exon 199961 201842 . + . transcript_id "YDL143W_id002"; gene_id "YDL143W"; gene_name "CCT4"; +chrIV SGD transcript 199996 201582 . + . transcript_id "YDL143W_id001"; gene_id "YDL143W"; gene_name "CCT4"; transcript_biotype "protein_coding"; +chrIV SGD exon 199996 201582 . + 0 transcript_id "YDL143W_id001"; gene_name "CCT4"; gene_id "YDL143W"; +chrIV SGD gene 201592 202662 . - . gene_id "YDL142C"; gene_biotype "protein_coding"; +chrIV SGD transcript 201592 202662 . - . transcript_id "YDL142C_id002"; gene_id "YDL142C"; gene_name "CRD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 201592 202662 . - . transcript_id "YDL142C_id002"; gene_id "YDL142C"; gene_name "CRD1"; +chrIV SGD transcript 201719 202570 . - . transcript_id "YDL142C_id001"; gene_id "YDL142C"; gene_name "CRD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 201719 202570 . - 0 transcript_id "YDL142C_id001"; gene_name "CRD1"; gene_id "YDL142C"; +chrIV SGD gene 202742 205374 . + . gene_id "YDL141W"; gene_biotype "protein_coding"; +chrIV SGD transcript 202742 205374 . + . transcript_id "YDL141W_id001"; gene_id "YDL141W"; gene_name "BPL1"; transcript_biotype "protein_coding"; +chrIV SGD exon 202742 205374 . + . transcript_id "YDL141W_id001"; gene_id "YDL141W"; gene_name "BPL1"; +chrIV SGD transcript 203039 205111 . + . transcript_id "YDL141W_id002"; gene_id "YDL141W"; gene_name "BPL1"; transcript_biotype "protein_coding"; +chrIV SGD exon 203039 205111 . + 0 transcript_id "YDL141W_id002"; gene_name "BPL1"; gene_id "YDL141W"; +chrIV SGD gene 205360 210561 . - . gene_id "YDL140C"; gene_biotype "protein_coding"; +chrIV SGD transcript 205360 210561 . - . transcript_id "YDL140C_mRNA"; gene_id "YDL140C"; gene_name "RPO21"; transcript_biotype "protein_coding"; +chrIV SGD CDS 205360 210561 . - 0 transcript_id "YDL140C_mRNA"; gene_name "RPO21"; gene_id "YDL140C"; +chrIV SGD gene 211258 212097 . - . gene_id "YDL139C"; gene_biotype "protein_coding"; +chrIV SGD transcript 211258 212097 . - . transcript_id "YDL139C_id002"; gene_id "YDL139C"; gene_name "SCM3"; transcript_biotype "protein_coding"; +chrIV SGD exon 211258 212097 . - . transcript_id "YDL139C_id002"; gene_id "YDL139C"; gene_name "SCM3"; +chrIV SGD transcript 211375 212046 . - . transcript_id "YDL139C_id001"; gene_id "YDL139C"; gene_name "SCM3"; transcript_biotype "protein_coding"; +chrIV SGD exon 211375 212046 . - 0 transcript_id "YDL139C_id001"; gene_name "SCM3"; gene_id "YDL139C"; +chrIV SGD gene 213227 215711 . + . gene_id "YDL138W"; gene_biotype "protein_coding"; +chrIV SGD transcript 213227 215711 . + . transcript_id "YDL138W_id001"; gene_id "YDL138W"; gene_name "RGT2"; transcript_biotype "protein_coding"; +chrIV SGD exon 213227 215711 . + . transcript_id "YDL138W_id001"; gene_id "YDL138W"; gene_name "RGT2"; +chrIV SGD transcript 213351 215642 . + . transcript_id "YDL138W_id002"; gene_id "YDL138W"; gene_name "RGT2"; transcript_biotype "protein_coding"; +chrIV SGD exon 213351 215642 . + 0 transcript_id "YDL138W_id002"; gene_name "RGT2"; gene_id "YDL138W"; +chrIV SGD gene 216015 217323 . + . gene_id "YDL137W"; gene_biotype "protein_coding"; +chrIV SGD transcript 216015 217323 . + . transcript_id "YDL137W_id002"; gene_id "YDL137W"; gene_name "ARF2"; transcript_biotype "protein_coding"; +chrIV SGD exon 216015 217323 . + . transcript_id "YDL137W_id002"; gene_id "YDL137W"; gene_name "ARF2"; +chrIV SGD transcript 216158 217074 . + . transcript_id "YDL137W_id001"; gene_id "YDL137W"; gene_name "ARF2"; transcript_biotype "protein_coding"; +chrIV SGD exon 216158 216489 . + . transcript_id "YDL137W_id001"; gene_name "ARF2"; gene_id "YDL137W"; +chrIV SGD exon 216529 217074 . + . transcript_id "YDL137W_id001"; gene_name "ARF2"; gene_id "YDL137W"; +chrIV SGD exon 216529 217074 . + 0 transcript_id "YDL137W_id001"; gene_name "ARF2"; gene_id "YDL137W"; +chrIV SGD gene 217567 218691 . + . gene_id "YDL136W"; gene_biotype "protein_coding"; +chrIV SGD transcript 217567 218691 . + . transcript_id "YDL136W_id004"; gene_id "YDL136W"; gene_name "RPL35B"; transcript_biotype "protein_coding"; +chrIV SGD exon 217567 218691 . + . transcript_id "YDL136W_id004"; gene_id "YDL136W"; gene_name "RPL35B"; +chrIV SGD transcript 217600 218367 . + . transcript_id "YDL136W_id001"; gene_id "YDL136W"; gene_name "RPL35B"; transcript_biotype "protein_coding"; +chrIV SGD exon 217600 217602 . + 0 transcript_id "YDL136W_id001"; gene_name "RPL35B"; gene_id "YDL136W"; +chrIV SGD exon 218008 218367 . + 0 transcript_id "YDL136W_id001"; gene_name "RPL35B"; gene_id "YDL136W"; +chrIV SGD gene 218351 219446 . - . gene_id "YDL135C"; gene_biotype "protein_coding"; +chrIV SGD transcript 218351 219446 . - . transcript_id "YDL135C_id001"; gene_id "YDL135C"; gene_name "RDI1"; transcript_biotype "protein_coding"; +chrIV SGD exon 218351 219446 . - . transcript_id "YDL135C_id001"; gene_id "YDL135C"; gene_name "RDI1"; +chrIV SGD transcript 218680 219288 . - . transcript_id "YDL135C_id002"; gene_id "YDL135C"; gene_name "RDI1"; transcript_biotype "protein_coding"; +chrIV SGD exon 218680 219288 . - 0 transcript_id "YDL135C_id002"; gene_name "RDI1"; gene_id "YDL135C"; +chrIV SGD gene 219493 221522 . - . gene_id "YDL134C"; gene_biotype "protein_coding"; +chrIV SGD transcript 219493 221522 . - . transcript_id "YDL134C_id001"; gene_id "YDL134C"; gene_name "PPH21"; transcript_biotype "protein_coding"; +chrIV SGD exon 219493 221522 . - . transcript_id "YDL134C_id001"; gene_id "YDL134C"; gene_name "PPH21"; +chrIV SGD transcript 219662 220771 . - . transcript_id "YDL134C_id003"; gene_id "YDL134C"; gene_name "PPH21"; transcript_biotype "protein_coding"; +chrIV SGD exon 219662 220771 . - 0 transcript_id "YDL134C_id003"; gene_name "PPH21"; gene_id "YDL134C"; +chrIV SGD gene 221479 221952 . - . gene_id "YDL133C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 221479 221952 . - . transcript_id "YDL133C-A_id002"; gene_id "YDL133C-A"; gene_name "RPL41B"; transcript_biotype "protein_coding"; +chrIV SGD exon 221479 221952 . - . transcript_id "YDL133C-A_id002"; gene_id "YDL133C-A"; gene_name "RPL41B"; +chrIV SGD transcript 221724 221801 . - . transcript_id "YDL133C-A_id001"; gene_id "YDL133C-A"; gene_name "RPL41B"; transcript_biotype "protein_coding"; +chrIV SGD exon 221724 221801 . - 0 transcript_id "YDL133C-A_id001"; gene_name "RPL41B"; gene_id "YDL133C-A"; +chrIV SGD gene 221943 223833 . + . gene_id "YDL133W"; gene_biotype "protein_coding"; +chrIV SGD transcript 221943 223833 . + . transcript_id "YDL133W_id002"; gene_id "YDL133W"; gene_name "SRF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 221943 223833 . + . transcript_id "YDL133W_id002"; gene_id "YDL133W"; gene_name "SRF1"; +chrIV SGD transcript 222427 223740 . + . transcript_id "YDL133W_id001"; gene_id "YDL133W"; gene_name "SRF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 222427 223740 . + 0 transcript_id "YDL133W_id001"; gene_name "SRF1"; gene_id "YDL133W"; +chrIV SGD gene 224304 226751 . + . gene_id "YDL132W"; gene_biotype "protein_coding"; +chrIV SGD transcript 224304 226751 . + . transcript_id "YDL132W_mRNA"; gene_id "YDL132W"; gene_name "CDC53"; transcript_biotype "protein_coding"; +chrIV SGD CDS 224304 226751 . + 0 transcript_id "YDL132W_mRNA"; gene_name "CDC53"; gene_id "YDL132W"; +chrIV SGD gene 227357 229018 . + . gene_id "YDL131W"; gene_biotype "protein_coding"; +chrIV SGD transcript 227357 229018 . + . transcript_id "YDL131W_id001"; gene_id "YDL131W"; gene_name "LYS21"; transcript_biotype "protein_coding"; +chrIV SGD exon 227357 229018 . + . transcript_id "YDL131W_id001"; gene_id "YDL131W"; gene_name "LYS21"; +chrIV SGD transcript 227393 228715 . + . transcript_id "YDL131W_id002"; gene_id "YDL131W"; gene_name "LYS21"; transcript_biotype "protein_coding"; +chrIV SGD exon 227393 228715 . + 0 transcript_id "YDL131W_id002"; gene_name "LYS21"; gene_id "YDL131W"; +chrIV SGD gene 229095 229617 . + . gene_id "YDL130W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 229095 229617 . + . transcript_id "YDL130W-A_id009"; gene_id "YDL130W-A"; gene_name "STF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 229095 229617 . + . transcript_id "YDL130W-A_id009"; gene_id "YDL130W-A"; gene_name "STF1"; +chrIV SGD transcript 229171 229431 . + . transcript_id "YDL130W-A_id001"; gene_id "YDL130W-A"; gene_name "STF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 229171 229431 . + 0 transcript_id "YDL130W-A_id001"; gene_name "STF1"; gene_id "YDL130W-A"; +chrIV SGD gene 229877 230839 . + . gene_id "YDL130W"; gene_biotype "protein_coding"; +chrIV SGD transcript 229877 230839 . + . transcript_id "YDL130W_id001"; gene_id "YDL130W"; gene_name "RPP1B"; transcript_biotype "protein_coding"; +chrIV SGD exon 229877 230839 . + . transcript_id "YDL130W_id001"; gene_id "YDL130W"; gene_name "RPP1B"; +chrIV SGD transcript 229906 230527 . + . transcript_id "YDL130W_id003"; gene_id "YDL130W"; gene_name "RPP1B"; transcript_biotype "protein_coding"; +chrIV SGD exon 229906 230019 . + 0 transcript_id "YDL130W_id003"; gene_name "RPP1B"; gene_id "YDL130W"; +chrIV SGD exon 230321 230527 . + 0 transcript_id "YDL130W_id003"; gene_name "RPP1B"; gene_id "YDL130W"; +chrIV SGD gene 230911 232339 . + . gene_id "YDL129W"; gene_biotype "protein_coding"; +chrIV SGD transcript 230911 232339 . + . transcript_id "YDL129W_id002"; gene_id "YDL129W"; transcript_biotype "protein_coding"; +chrIV SGD exon 230911 232339 . + . transcript_id "YDL129W_id002"; gene_id "YDL129W"; +chrIV SGD transcript 231024 231899 . + . transcript_id "YDL129W_id001"; gene_id "YDL129W"; transcript_biotype "protein_coding"; +chrIV SGD exon 231024 231899 . + 0 transcript_id "YDL129W_id001"; gene_id "YDL129W"; +chrIV SGD gene 232520 234079 . + . gene_id "YDL128W"; gene_biotype "protein_coding"; +chrIV SGD transcript 232520 234079 . + . transcript_id "YDL128W_id003"; gene_id "YDL128W"; gene_name "VCX1"; transcript_biotype "protein_coding"; +chrIV SGD exon 232520 234079 . + . transcript_id "YDL128W_id003"; gene_id "YDL128W"; gene_name "VCX1"; +chrIV SGD transcript 232652 233887 . + . transcript_id "YDL128W_id001"; gene_id "YDL128W"; gene_name "VCX1"; transcript_biotype "protein_coding"; +chrIV SGD exon 232652 233887 . + 0 transcript_id "YDL128W_id001"; gene_name "VCX1"; gene_id "YDL128W"; +chrIV SGD gene 234873 236108 . + . gene_id "YDL127W"; gene_biotype "protein_coding"; +chrIV SGD transcript 234873 236108 . + . transcript_id "YDL127W_id001"; gene_id "YDL127W"; gene_name "PCL2"; transcript_biotype "protein_coding"; +chrIV SGD exon 234873 236108 . + . transcript_id "YDL127W_id001"; gene_id "YDL127W"; gene_name "PCL2"; +chrIV SGD transcript 234927 235853 . + . transcript_id "YDL127W_id002"; gene_id "YDL127W"; gene_name "PCL2"; transcript_biotype "protein_coding"; +chrIV SGD exon 234927 235853 . + 0 transcript_id "YDL127W_id002"; gene_name "PCL2"; gene_id "YDL127W"; +chrIV SGD gene 236066 238729 . - . gene_id "YDL126C"; gene_biotype "protein_coding"; +chrIV SGD transcript 236066 238729 . - . transcript_id "YDL126C_id003"; gene_id "YDL126C"; gene_name "CDC48"; transcript_biotype "protein_coding"; +chrIV SGD exon 236066 238729 . - . transcript_id "YDL126C_id003"; gene_id "YDL126C"; gene_name "CDC48"; +chrIV SGD transcript 236157 238664 . - . transcript_id "YDL126C_id001"; gene_id "YDL126C"; gene_name "CDC48"; transcript_biotype "protein_coding"; +chrIV SGD exon 236157 238664 . - 0 transcript_id "YDL126C_id001"; gene_name "CDC48"; gene_id "YDL126C"; +chrIV SGD gene 238902 239846 . - . gene_id "YDL125C"; gene_biotype "protein_coding"; +chrIV SGD transcript 238902 239846 . - . transcript_id "YDL125C_id002"; gene_id "YDL125C"; gene_name "HNT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 238902 239846 . - . transcript_id "YDL125C_id002"; gene_id "YDL125C"; gene_name "HNT1"; +chrIV SGD transcript 239019 239606 . - . transcript_id "YDL125C_id001"; gene_id "YDL125C"; gene_name "HNT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 239019 239398 . - 2 transcript_id "YDL125C_id001"; gene_name "HNT1"; gene_id "YDL125C"; +chrIV SGD exon 239510 239606 . - 0 transcript_id "YDL125C_id001"; gene_name "HNT1"; gene_id "YDL125C"; +chrIV SGD gene 240124 241272 . + . gene_id "YDL124W"; gene_biotype "protein_coding"; +chrIV SGD transcript 240124 241272 . + . transcript_id "YDL124W_id004"; gene_id "YDL124W"; transcript_biotype "protein_coding"; +chrIV SGD exon 240124 241272 . + . transcript_id "YDL124W_id004"; gene_id "YDL124W"; +chrIV SGD transcript 240259 241197 . + . transcript_id "YDL124W_id001"; gene_id "YDL124W"; transcript_biotype "protein_coding"; +chrIV SGD exon 240259 241197 . + 0 transcript_id "YDL124W_id001"; gene_id "YDL124W"; +chrIV SGD gene 240727 242241 . + . gene_id "YDL123W"; gene_biotype "protein_coding"; +chrIV SGD transcript 240727 242241 . + . transcript_id "YDL123W_id001"; gene_id "YDL123W"; gene_name "SNA4"; transcript_biotype "protein_coding"; +chrIV SGD exon 240727 242241 . + . transcript_id "YDL123W_id001"; gene_id "YDL123W"; gene_name "SNA4"; +chrIV SGD transcript 241418 241840 . + . transcript_id "YDL123W_id003"; gene_id "YDL123W"; gene_name "SNA4"; transcript_biotype "protein_coding"; +chrIV SGD exon 241418 241840 . + 0 transcript_id "YDL123W_id003"; gene_name "SNA4"; gene_id "YDL123W"; +chrIV SGD gene 242304 245052 . + . gene_id "YDL122W"; gene_biotype "protein_coding"; +chrIV SGD transcript 242304 245052 . + . transcript_id "YDL122W_id001"; gene_id "YDL122W"; gene_name "UBP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 242304 245052 . + . transcript_id "YDL122W_id001"; gene_id "YDL122W"; gene_name "UBP1"; +chrIV SGD transcript 242552 244981 . + . transcript_id "YDL122W_id002"; gene_id "YDL122W"; gene_name "UBP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 242552 244981 . + 0 transcript_id "YDL122W_id002"; gene_name "UBP1"; gene_id "YDL122W"; +chrIV SGD gene 244946 245656 . - . gene_id "YDL121C"; gene_biotype "protein_coding"; +chrIV SGD transcript 244946 245656 . - . transcript_id "YDL121C_id001"; gene_id "YDL121C"; gene_name "EXP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 244946 245656 . - . transcript_id "YDL121C_id001"; gene_id "YDL121C"; gene_name "EXP1"; +chrIV SGD transcript 245133 245582 . - . transcript_id "YDL121C_id003"; gene_id "YDL121C"; gene_name "EXP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 245133 245582 . - 0 transcript_id "YDL121C_id003"; gene_name "EXP1"; gene_id "YDL121C"; +chrIV SGD gene 245830 246695 . + . gene_id "YDL120W"; gene_biotype "protein_coding"; +chrIV SGD transcript 245830 246695 . + . transcript_id "YDL120W_id001"; gene_id "YDL120W"; gene_name "YFH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 245830 246695 . + . transcript_id "YDL120W_id001"; gene_id "YDL120W"; gene_name "YFH1"; +chrIV SGD transcript 245923 246447 . + . transcript_id "YDL120W_id002"; gene_id "YDL120W"; gene_name "YFH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 245923 246447 . + 0 transcript_id "YDL120W_id002"; gene_name "YFH1"; gene_id "YDL120W"; +chrIV SGD gene 246529 247784 . - . gene_id "YDL119C"; gene_biotype "protein_coding"; +chrIV SGD transcript 246529 247784 . - . transcript_id "YDL119C_id001"; gene_id "YDL119C"; gene_name "HEM25"; transcript_biotype "protein_coding"; +chrIV SGD exon 246529 247784 . - . transcript_id "YDL119C_id001"; gene_id "YDL119C"; gene_name "HEM25"; +chrIV SGD transcript 246689 247612 . - . transcript_id "YDL119C_id005"; gene_id "YDL119C"; gene_name "HEM25"; transcript_biotype "protein_coding"; +chrIV SGD exon 246689 247612 . - 0 transcript_id "YDL119C_id005"; gene_name "HEM25"; gene_id "YDL119C"; +chrIV SGD gene 247302 247682 . + . gene_id "YDL118W"; gene_biotype "protein_coding"; +chrIV SGD transcript 247302 247682 . + . transcript_id "YDL118W_mRNA"; gene_id "YDL118W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 247302 247682 . + 0 transcript_id "YDL118W_mRNA"; gene_id "YDL118W"; +chrIV SGD gene 248271 251389 . + . gene_id "YDL117W"; gene_biotype "protein_coding"; +chrIV SGD transcript 248271 251389 . + . transcript_id "YDL117W_id002"; gene_id "YDL117W"; gene_name "CYK3"; transcript_biotype "protein_coding"; +chrIV SGD exon 248271 251389 . + . transcript_id "YDL117W_id002"; gene_id "YDL117W"; gene_name "CYK3"; +chrIV SGD transcript 248581 251238 . + . transcript_id "YDL117W_id001"; gene_id "YDL117W"; gene_name "CYK3"; transcript_biotype "protein_coding"; +chrIV SGD exon 248581 251238 . + 0 transcript_id "YDL117W_id001"; gene_name "CYK3"; gene_id "YDL117W"; +chrIV SGD gene 251504 253804 . + . gene_id "YDL116W"; gene_biotype "protein_coding"; +chrIV SGD transcript 251504 253804 . + . transcript_id "YDL116W_id011"; gene_id "YDL116W"; gene_name "NUP84"; transcript_biotype "protein_coding"; +chrIV SGD exon 251504 253804 . + . transcript_id "YDL116W_id011"; gene_id "YDL116W"; gene_name "NUP84"; +chrIV SGD transcript 251566 253746 . + . transcript_id "YDL116W_id001"; gene_id "YDL116W"; gene_name "NUP84"; transcript_biotype "protein_coding"; +chrIV SGD exon 251566 253746 . + 0 transcript_id "YDL116W_id001"; gene_name "NUP84"; gene_id "YDL116W"; +chrIV SGD gene 253903 255204 . - . gene_id "YDL115C"; gene_biotype "protein_coding"; +chrIV SGD transcript 253903 255204 . - . transcript_id "YDL115C_id004"; gene_id "YDL115C"; gene_name "IWR1"; transcript_biotype "protein_coding"; +chrIV SGD exon 253903 255204 . - . transcript_id "YDL115C_id004"; gene_id "YDL115C"; gene_name "IWR1"; +chrIV SGD transcript 253995 255126 . - . transcript_id "YDL115C_id001"; gene_id "YDL115C"; gene_name "IWR1"; transcript_biotype "protein_coding"; +chrIV SGD exon 253995 254974 . - 2 transcript_id "YDL115C_id001"; gene_name "IWR1"; gene_id "YDL115C"; +chrIV SGD exon 255045 255126 . - 0 transcript_id "YDL115C_id001"; gene_name "IWR1"; gene_id "YDL115C"; +chrIV SGD gene 254171 255270 . + . gene_id "YDL114W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 254171 255270 . + . transcript_id "YDL114W-A_id001"; gene_id "YDL114W-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 254171 255270 . + . transcript_id "YDL114W-A_id001"; gene_id "YDL114W-A"; +chrIV SGD transcript 254935 255048 . + . transcript_id "YDL114W-A_id002"; gene_id "YDL114W-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 254935 255048 . + 0 transcript_id "YDL114W-A_id002"; gene_id "YDL114W-A"; +chrIV SGD gene 255604 256530 . + . gene_id "YDL114W"; gene_biotype "protein_coding"; +chrIV SGD transcript 255604 256530 . + . transcript_id "YDL114W_mRNA"; gene_id "YDL114W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 255604 256530 . + 0 transcript_id "YDL114W_mRNA"; gene_id "YDL114W"; +chrIV SGD gene 256512 258618 . - . gene_id "YDL113C"; gene_biotype "protein_coding"; +chrIV SGD transcript 256512 258618 . - . transcript_id "YDL113C_id004"; gene_id "YDL113C"; gene_name "ATG20"; transcript_biotype "protein_coding"; +chrIV SGD exon 256512 258618 . - . transcript_id "YDL113C_id004"; gene_id "YDL113C"; gene_name "ATG20"; +chrIV SGD transcript 256633 258555 . - . transcript_id "YDL113C_id001"; gene_id "YDL113C"; gene_name "ATG20"; transcript_biotype "protein_coding"; +chrIV SGD exon 256633 258555 . - 0 transcript_id "YDL113C_id001"; gene_name "ATG20"; gene_id "YDL113C"; +chrIV SGD gene 258915 263225 . + . gene_id "YDL112W"; gene_biotype "protein_coding"; +chrIV SGD transcript 258915 263225 . + . transcript_id "YDL112W_id001"; gene_id "YDL112W"; gene_name "TRM3"; transcript_biotype "protein_coding"; +chrIV SGD exon 258915 263225 . + 0 transcript_id "YDL112W_id001"; gene_name "TRM3"; gene_id "YDL112W"; +chrIV SGD gene 263313 264110 . - . gene_id "YDL111C"; gene_biotype "protein_coding"; +chrIV SGD transcript 263313 264110 . - . transcript_id "YDL111C_id001"; gene_id "YDL111C"; gene_name "RRP42"; transcript_biotype "protein_coding"; +chrIV SGD exon 263313 264110 . - 0 transcript_id "YDL111C_id001"; gene_name "RRP42"; gene_id "YDL111C"; +chrIV SGD gene 264348 265751 . - . gene_id "YDL110C"; gene_biotype "protein_coding"; +chrIV SGD transcript 264348 265751 . - . transcript_id "YDL110C_id001"; gene_id "YDL110C"; gene_name "TMA17"; transcript_biotype "protein_coding"; +chrIV SGD exon 264348 265751 . - . transcript_id "YDL110C_id001"; gene_id "YDL110C"; gene_name "TMA17"; +chrIV SGD transcript 264512 264964 . - . transcript_id "YDL110C_id003"; gene_id "YDL110C"; gene_name "TMA17"; transcript_biotype "protein_coding"; +chrIV SGD exon 264512 264964 . - 0 transcript_id "YDL110C_id003"; gene_name "TMA17"; gene_id "YDL110C"; +chrIV SGD gene 265258 267201 . - . gene_id "YDL109C"; gene_biotype "protein_coding"; +chrIV SGD transcript 265258 267201 . - . transcript_id "YDL109C_mRNA"; gene_id "YDL109C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 265258 267201 . - 0 transcript_id "YDL109C_mRNA"; gene_id "YDL109C"; +chrIV SGD gene 267358 268737 . + . gene_id "YDL108W"; gene_biotype "protein_coding"; +chrIV SGD transcript 267358 268737 . + . transcript_id "YDL108W_id003"; gene_id "YDL108W"; gene_name "KIN28"; transcript_biotype "protein_coding"; +chrIV SGD exon 267358 268737 . + . transcript_id "YDL108W_id003"; gene_id "YDL108W"; gene_name "KIN28"; +chrIV SGD transcript 267698 268699 . + . transcript_id "YDL108W_id001"; gene_id "YDL108W"; gene_name "KIN28"; transcript_biotype "protein_coding"; +chrIV SGD exon 267698 267725 . + 0 transcript_id "YDL108W_id001"; gene_name "KIN28"; gene_id "YDL108W"; +chrIV SGD exon 267807 268699 . + 2 transcript_id "YDL108W_id001"; gene_name "KIN28"; gene_id "YDL108W"; +chrIV SGD gene 268850 270181 . + . gene_id "YDL107W"; gene_biotype "protein_coding"; +chrIV SGD transcript 268850 270181 . + . transcript_id "YDL107W_id001"; gene_id "YDL107W"; gene_name "MSS2"; transcript_biotype "protein_coding"; +chrIV SGD exon 268850 270181 . + . transcript_id "YDL107W_id001"; gene_id "YDL107W"; gene_name "MSS2"; +chrIV SGD transcript 268921 269976 . + . transcript_id "YDL107W_id002"; gene_id "YDL107W"; gene_name "MSS2"; transcript_biotype "protein_coding"; +chrIV SGD exon 268921 269976 . + 0 transcript_id "YDL107W_id002"; gene_name "MSS2"; gene_id "YDL107W"; +chrIV SGD gene 270127 272202 . - . gene_id "YDL106C"; gene_biotype "protein_coding"; +chrIV SGD transcript 270127 272202 . - . transcript_id "YDL106C_id001"; gene_id "YDL106C"; gene_name "PHO2"; transcript_biotype "protein_coding"; +chrIV SGD exon 270127 272202 . - . transcript_id "YDL106C_id001"; gene_id "YDL106C"; gene_name "PHO2"; +chrIV SGD transcript 270222 271901 . - . transcript_id "YDL106C_id004"; gene_id "YDL106C"; gene_name "PHO2"; transcript_biotype "protein_coding"; +chrIV SGD exon 270222 271901 . - 0 transcript_id "YDL106C_id004"; gene_name "PHO2"; gene_id "YDL106C"; +chrIV SGD gene 272348 274134 . + . gene_id "YDL105W"; gene_biotype "protein_coding"; +chrIV SGD transcript 272348 274134 . + . transcript_id "YDL105W_id003"; gene_id "YDL105W"; gene_name "NSE4"; transcript_biotype "protein_coding"; +chrIV SGD exon 272348 274134 . + . transcript_id "YDL105W_id003"; gene_id "YDL105W"; gene_name "NSE4"; +chrIV SGD transcript 272389 273597 . + . transcript_id "YDL105W_id001"; gene_id "YDL105W"; gene_name "NSE4"; transcript_biotype "protein_coding"; +chrIV SGD exon 272389 273597 . + 0 transcript_id "YDL105W_id001"; gene_name "NSE4"; gene_id "YDL105W"; +chrIV SGD gene 273513 274912 . - . gene_id "YDL104C"; gene_biotype "protein_coding"; +chrIV SGD transcript 273513 274912 . - . transcript_id "YDL104C_id002"; gene_id "YDL104C"; gene_name "QRI7"; transcript_biotype "protein_coding"; +chrIV SGD exon 273513 274912 . - . transcript_id "YDL104C_id002"; gene_id "YDL104C"; gene_name "QRI7"; +chrIV SGD transcript 273653 274876 . - . transcript_id "YDL104C_id001"; gene_id "YDL104C"; gene_name "QRI7"; transcript_biotype "protein_coding"; +chrIV SGD exon 273653 274876 . - 0 transcript_id "YDL104C_id001"; gene_name "QRI7"; gene_id "YDL104C"; +chrIV SGD gene 274923 276648 . - . gene_id "YDL103C"; gene_biotype "protein_coding"; +chrIV SGD transcript 274923 276648 . - . transcript_id "YDL103C_id001"; gene_id "YDL103C"; gene_name "QRI1"; transcript_biotype "protein_coding"; +chrIV SGD exon 274923 276648 . - . transcript_id "YDL103C_id001"; gene_id "YDL103C"; gene_name "QRI1"; +chrIV SGD transcript 275148 276581 . - . transcript_id "YDL103C_id002"; gene_id "YDL103C"; gene_name "QRI1"; transcript_biotype "protein_coding"; +chrIV SGD exon 275148 276581 . - 0 transcript_id "YDL103C_id002"; gene_name "QRI1"; gene_id "YDL103C"; +chrIV SGD gene 276872 280165 . + . gene_id "YDL102W"; gene_biotype "protein_coding"; +chrIV SGD transcript 276872 280165 . + . transcript_id "YDL102W_mRNA"; gene_id "YDL102W"; gene_name "POL3"; transcript_biotype "protein_coding"; +chrIV SGD CDS 276872 280165 . + 0 transcript_id "YDL102W_mRNA"; gene_name "POL3"; gene_id "YDL102W"; +chrIV SGD gene 280009 281897 . - . gene_id "YDL101C"; gene_biotype "protein_coding"; +chrIV SGD transcript 280009 281897 . - . transcript_id "YDL101C_id001"; gene_id "YDL101C"; gene_name "DUN1"; transcript_biotype "protein_coding"; +chrIV SGD exon 280009 281897 . - . transcript_id "YDL101C_id001"; gene_id "YDL101C"; gene_name "DUN1"; +chrIV SGD transcript 280307 281848 . - . transcript_id "YDL101C_id002"; gene_id "YDL101C"; gene_name "DUN1"; transcript_biotype "protein_coding"; +chrIV SGD exon 280307 281848 . - 0 transcript_id "YDL101C_id002"; gene_name "DUN1"; gene_id "YDL101C"; +chrIV SGD gene 281955 283212 . - . gene_id "YDL100C"; gene_biotype "protein_coding"; +chrIV SGD transcript 281955 283212 . - . transcript_id "YDL100C_id002"; gene_id "YDL100C"; gene_name "GET3"; transcript_biotype "protein_coding"; +chrIV SGD exon 281955 283212 . - . transcript_id "YDL100C_id002"; gene_id "YDL100C"; gene_name "GET3"; +chrIV SGD transcript 282112 283176 . - . transcript_id "YDL100C_id001"; gene_id "YDL100C"; gene_name "GET3"; transcript_biotype "protein_coding"; +chrIV SGD exon 282112 283176 . - 0 transcript_id "YDL100C_id001"; gene_name "GET3"; gene_id "YDL100C"; +chrIV SGD gene 283367 285044 . + . gene_id "YDL099W"; gene_biotype "protein_coding"; +chrIV SGD transcript 283367 285044 . + . transcript_id "YDL099W_id001"; gene_id "YDL099W"; gene_name "BUG1"; transcript_biotype "protein_coding"; +chrIV SGD exon 283367 285044 . + . transcript_id "YDL099W_id001"; gene_id "YDL099W"; gene_name "BUG1"; +chrIV SGD transcript 283419 284444 . + . transcript_id "YDL099W_id002"; gene_id "YDL099W"; gene_name "BUG1"; transcript_biotype "protein_coding"; +chrIV SGD exon 283419 284444 . + 0 transcript_id "YDL099W_id002"; gene_name "BUG1"; gene_id "YDL099W"; +chrIV SGD gene 284443 285254 . - . gene_id "YDL098C"; gene_biotype "protein_coding"; +chrIV SGD transcript 284443 285254 . - . transcript_id "YDL098C_id001"; gene_id "YDL098C"; gene_name "SNU23"; transcript_biotype "protein_coding"; +chrIV SGD exon 284443 285254 . - . transcript_id "YDL098C_id001"; gene_id "YDL098C"; gene_name "SNU23"; +chrIV SGD transcript 284581 285165 . - . transcript_id "YDL098C_id004"; gene_id "YDL098C"; gene_name "SNU23"; transcript_biotype "protein_coding"; +chrIV SGD exon 284581 285165 . - 0 transcript_id "YDL098C_id004"; gene_name "SNU23"; gene_id "YDL098C"; +chrIV SGD gene 285227 286753 . - . gene_id "YDL097C"; gene_biotype "protein_coding"; +chrIV SGD transcript 285227 286753 . - . transcript_id "YDL097C_id001"; gene_id "YDL097C"; gene_name "RPN6"; transcript_biotype "protein_coding"; +chrIV SGD exon 285227 286753 . - . transcript_id "YDL097C_id001"; gene_id "YDL097C"; gene_name "RPN6"; +chrIV SGD transcript 285391 286695 . - . transcript_id "YDL097C_id003"; gene_id "YDL097C"; gene_name "RPN6"; transcript_biotype "protein_coding"; +chrIV SGD exon 285391 286695 . - 0 transcript_id "YDL097C_id003"; gene_name "RPN6"; gene_id "YDL097C"; +chrIV SGD gene 286998 287324 . - . gene_id "YDL096C"; gene_biotype "protein_coding"; +chrIV SGD transcript 286998 287324 . - . transcript_id "YDL096C_mRNA"; gene_id "YDL096C"; gene_name "OPI6"; transcript_biotype "protein_coding"; +chrIV SGD CDS 286998 287324 . - 0 transcript_id "YDL096C_mRNA"; gene_name "OPI6"; gene_id "YDL096C"; +chrIV SGD gene 287029 289911 . + . gene_id "YDL095W"; gene_biotype "protein_coding"; +chrIV SGD transcript 287029 289911 . + . transcript_id "YDL095W_id001"; gene_id "YDL095W"; gene_name "PMT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 287029 289911 . + . transcript_id "YDL095W_id001"; gene_id "YDL095W"; gene_name "PMT1"; +chrIV SGD transcript 287059 289512 . + . transcript_id "YDL095W_id002"; gene_id "YDL095W"; gene_name "PMT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 287059 289512 . + 0 transcript_id "YDL095W_id002"; gene_name "PMT1"; gene_id "YDL095W"; +chrIV SGD gene 289572 290081 . - . gene_id "YDL094C"; gene_biotype "protein_coding"; +chrIV SGD transcript 289572 290081 . - . transcript_id "YDL094C_mRNA"; gene_id "YDL094C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 289572 290081 . - 0 transcript_id "YDL094C_mRNA"; gene_id "YDL094C"; +chrIV SGD gene 289830 292408 . + . gene_id "YDL093W"; gene_biotype "protein_coding"; +chrIV SGD transcript 289830 292408 . + . transcript_id "YDL093W_id001"; gene_id "YDL093W"; gene_name "PMT5"; transcript_biotype "protein_coding"; +chrIV SGD exon 289830 292408 . + . transcript_id "YDL093W_id001"; gene_id "YDL093W"; gene_name "PMT5"; +chrIV SGD transcript 289909 292140 . + . transcript_id "YDL093W_id003"; gene_id "YDL093W"; gene_name "PMT5"; transcript_biotype "protein_coding"; +chrIV SGD exon 289909 292140 . + 0 transcript_id "YDL093W_id003"; gene_name "PMT5"; gene_id "YDL093W"; +chrIV SGD gene 292739 293426 . + . gene_id "YDL092W"; gene_biotype "protein_coding"; +chrIV SGD transcript 292739 293426 . + . transcript_id "YDL092W_id002"; gene_id "YDL092W"; gene_name "SRP14"; transcript_biotype "protein_coding"; +chrIV SGD exon 292739 293426 . + . transcript_id "YDL092W_id002"; gene_id "YDL092W"; gene_name "SRP14"; +chrIV SGD transcript 292781 293221 . + . transcript_id "YDL092W_id001"; gene_id "YDL092W"; gene_name "SRP14"; transcript_biotype "protein_coding"; +chrIV SGD exon 292781 293221 . + 0 transcript_id "YDL092W_id001"; gene_name "SRP14"; gene_id "YDL092W"; +chrIV SGD gene 293270 294847 . - . gene_id "YDL091C"; gene_biotype "protein_coding"; +chrIV SGD transcript 293270 294847 . - . transcript_id "YDL091C_id001"; gene_id "YDL091C"; gene_name "UBX3"; transcript_biotype "protein_coding"; +chrIV SGD exon 293270 294847 . - . transcript_id "YDL091C_id001"; gene_id "YDL091C"; gene_name "UBX3"; +chrIV SGD transcript 293392 294759 . - . transcript_id "YDL091C_id003"; gene_id "YDL091C"; gene_name "UBX3"; transcript_biotype "protein_coding"; +chrIV SGD exon 293392 294759 . - 0 transcript_id "YDL091C_id003"; gene_name "UBX3"; gene_id "YDL091C"; +chrIV SGD gene 294981 296822 . - . gene_id "YDL090C"; gene_biotype "protein_coding"; +chrIV SGD transcript 294981 296822 . - . transcript_id "YDL090C_id001"; gene_id "YDL090C"; gene_name "RAM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 294981 296822 . - . transcript_id "YDL090C_id001"; gene_id "YDL090C"; gene_name "RAM1"; +chrIV SGD transcript 295034 296329 . - . transcript_id "YDL090C_id002"; gene_id "YDL090C"; gene_name "RAM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 295034 296329 . - 0 transcript_id "YDL090C_id002"; gene_name "RAM1"; gene_id "YDL090C"; +chrIV SGD gene 296497 298346 . + . gene_id "YDL089W"; gene_biotype "protein_coding"; +chrIV SGD transcript 296497 298346 . + . transcript_id "YDL089W_id003"; gene_id "YDL089W"; gene_name "NUR1"; transcript_biotype "protein_coding"; +chrIV SGD exon 296497 298346 . + . transcript_id "YDL089W_id003"; gene_id "YDL089W"; gene_name "NUR1"; +chrIV SGD transcript 296820 298274 . + . transcript_id "YDL089W_id001"; gene_id "YDL089W"; gene_name "NUR1"; transcript_biotype "protein_coding"; +chrIV SGD exon 296820 298274 . + 0 transcript_id "YDL089W_id001"; gene_name "NUR1"; gene_id "YDL089W"; +chrIV SGD gene 298265 300137 . - . gene_id "YDL088C"; gene_biotype "protein_coding"; +chrIV SGD transcript 298265 300137 . - . transcript_id "YDL088C_id002"; gene_id "YDL088C"; gene_name "ASM4"; transcript_biotype "protein_coding"; +chrIV SGD exon 298265 300137 . - . transcript_id "YDL088C_id002"; gene_id "YDL088C"; gene_name "ASM4"; +chrIV SGD transcript 298417 300003 . - . transcript_id "YDL088C_id001"; gene_id "YDL088C"; gene_name "ASM4"; transcript_biotype "protein_coding"; +chrIV SGD exon 298417 300003 . - 0 transcript_id "YDL088C_id001"; gene_name "ASM4"; gene_id "YDL088C"; +chrIV SGD gene 299248 301012 . - . gene_id "YDL087C"; gene_biotype "protein_coding"; +chrIV SGD transcript 299248 301012 . - . transcript_id "YDL087C_id001"; gene_id "YDL087C"; gene_name "LUC7"; transcript_biotype "protein_coding"; +chrIV SGD exon 299248 301012 . - . transcript_id "YDL087C_id001"; gene_id "YDL087C"; gene_name "LUC7"; +chrIV SGD transcript 300214 300999 . - . transcript_id "YDL087C_id002"; gene_id "YDL087C"; gene_name "LUC7"; transcript_biotype "protein_coding"; +chrIV SGD exon 300214 300999 . - 0 transcript_id "YDL087C_id002"; gene_name "LUC7"; gene_id "YDL087C"; +chrIV SGD gene 301219 302319 . + . gene_id "YDL086W"; gene_biotype "protein_coding"; +chrIV SGD transcript 301219 302319 . + . transcript_id "YDL086W_id001"; gene_id "YDL086W"; transcript_biotype "protein_coding"; +chrIV SGD exon 301219 302319 . + . transcript_id "YDL086W_id001"; gene_id "YDL086W"; +chrIV SGD gene 301300 302259 . - . gene_id "YDL086C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 301300 302259 . - . transcript_id "YDL086C-A_id001"; gene_id "YDL086C-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 301300 302259 . - . transcript_id "YDL086C-A_id001"; gene_id "YDL086C-A"; +chrIV SGD transcript 301413 302234 . + . transcript_id "YDL086W_id010"; gene_id "YDL086W"; transcript_biotype "protein_coding"; +chrIV SGD exon 301413 302234 . + 0 transcript_id "YDL086W_id010"; gene_id "YDL086W"; +chrIV SGD transcript 301655 302089 . - . transcript_id "YDL086C-A_id004"; gene_id "YDL086C-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 301655 302089 . - 0 transcript_id "YDL086C-A_id004"; gene_id "YDL086C-A"; +chrIV SGD gene 302024 306795 . - . gene_id "YDL085C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 302024 306795 . - . transcript_id "YDL085C-A_id001"; gene_id "YDL085C-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 302024 306795 . - . transcript_id "YDL085C-A_id001"; gene_id "YDL085C-A"; +chrIV SGD transcript 302464 302670 . - . transcript_id "YDL085C-A_id002"; gene_id "YDL085C-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 302464 302670 . - 0 transcript_id "YDL085C-A_id002"; gene_id "YDL085C-A"; +chrIV SGD gene 303211 304848 . + . gene_id "YDL085W"; gene_biotype "protein_coding"; +chrIV SGD transcript 303211 304848 . + . transcript_id "YDL085W_id001"; gene_id "YDL085W"; gene_name "NDE2"; transcript_biotype "protein_coding"; +chrIV SGD exon 303211 304848 . + 0 transcript_id "YDL085W_id001"; gene_name "NDE2"; gene_id "YDL085W"; +chrIV SGD gene 305077 306885 . + . gene_id "YDL084W"; gene_biotype "protein_coding"; +chrIV SGD transcript 305077 306885 . + . transcript_id "YDL084W_id003"; gene_id "YDL084W"; gene_name "SUB2"; transcript_biotype "protein_coding"; +chrIV SGD exon 305077 306885 . + . transcript_id "YDL084W_id003"; gene_id "YDL084W"; gene_name "SUB2"; +chrIV SGD transcript 305237 306577 . + . transcript_id "YDL084W_id001"; gene_id "YDL084W"; gene_name "SUB2"; transcript_biotype "protein_coding"; +chrIV SGD exon 305237 306577 . + 0 transcript_id "YDL084W_id001"; gene_name "SUB2"; gene_id "YDL084W"; +chrIV SGD gene 306801 309483 . - . gene_id "YDL083C"; gene_biotype "protein_coding"; +chrIV SGD transcript 306801 309483 . - . transcript_id "YDL083C_id003"; gene_id "YDL083C"; gene_name "RPS16B"; transcript_biotype "protein_coding"; +chrIV SGD exon 306801 309483 . - . transcript_id "YDL083C_id003"; gene_id "YDL083C"; gene_name "RPS16B"; +chrIV SGD transcript 306926 307789 . - . transcript_id "YDL083C_id001"; gene_id "YDL083C"; gene_name "RPS16B"; transcript_biotype "protein_coding"; +chrIV SGD exon 306926 307333 . - 0 transcript_id "YDL083C_id001"; gene_name "RPS16B"; gene_id "YDL083C"; +chrIV SGD exon 307766 307789 . - 0 transcript_id "YDL083C_id001"; gene_name "RPS16B"; gene_id "YDL083C"; +chrIV SGD gene 308395 309775 . + . gene_id "YDL082W"; gene_biotype "protein_coding"; +chrIV SGD transcript 308395 309775 . + . transcript_id "YDL082W_id002"; gene_id "YDL082W"; gene_name "RPL13A"; transcript_biotype "protein_coding"; +chrIV SGD exon 308395 309775 . + . transcript_id "YDL082W_id002"; gene_id "YDL082W"; gene_name "RPL13A"; +chrIV SGD transcript 308424 309388 . + . transcript_id "YDL082W_id001"; gene_id "YDL082W"; gene_name "RPL13A"; transcript_biotype "protein_coding"; +chrIV SGD exon 308424 308427 . + 0 transcript_id "YDL082W_id001"; gene_name "RPL13A"; gene_id "YDL082W"; +chrIV SGD exon 308793 309388 . + 2 transcript_id "YDL082W_id001"; gene_name "RPL13A"; gene_id "YDL082W"; +chrIV SGD gene 309430 310189 . - . gene_id "YDL081C"; gene_biotype "protein_coding"; +chrIV SGD transcript 309430 310189 . - . transcript_id "YDL081C_id003"; gene_id "YDL081C"; gene_name "RPP1A"; transcript_biotype "protein_coding"; +chrIV SGD exon 309430 310189 . - . transcript_id "YDL081C_id003"; gene_id "YDL081C"; gene_name "RPP1A"; +chrIV SGD transcript 309802 310122 . - . transcript_id "YDL081C_id001"; gene_id "YDL081C"; gene_name "RPP1A"; transcript_biotype "protein_coding"; +chrIV SGD exon 309802 310122 . - 0 transcript_id "YDL081C_id001"; gene_name "RPP1A"; gene_id "YDL081C"; +chrIV SGD gene 310474 312649 . - . gene_id "YDL080C"; gene_biotype "protein_coding"; +chrIV SGD transcript 310474 312649 . - . transcript_id "YDL080C_id004"; gene_id "YDL080C"; gene_name "THI3"; transcript_biotype "protein_coding"; +chrIV SGD exon 310474 312649 . - . transcript_id "YDL080C_id004"; gene_id "YDL080C"; gene_name "THI3"; +chrIV SGD transcript 310642 312471 . - . transcript_id "YDL080C_id001"; gene_id "YDL080C"; gene_name "THI3"; transcript_biotype "protein_coding"; +chrIV SGD exon 310642 312471 . - 0 transcript_id "YDL080C_id001"; gene_name "THI3"; gene_id "YDL080C"; +chrIV SGD gene 312951 314748 . - . gene_id "YDL079C"; gene_biotype "protein_coding"; +chrIV SGD transcript 312951 314748 . - . transcript_id "YDL079C_id001"; gene_id "YDL079C"; gene_name "MRK1"; transcript_biotype "protein_coding"; +chrIV SGD exon 312951 314044 . - 2 transcript_id "YDL079C_id001"; gene_name "MRK1"; gene_id "YDL079C"; +chrIV SGD exon 314337 314748 . - 0 transcript_id "YDL079C_id001"; gene_name "MRK1"; gene_id "YDL079C"; +chrIV SGD gene 315291 316767 . - . gene_id "YDL078C"; gene_biotype "protein_coding"; +chrIV SGD transcript 315291 316767 . - . transcript_id "YDL078C_id002"; gene_id "YDL078C"; gene_name "MDH3"; transcript_biotype "protein_coding"; +chrIV SGD exon 315291 316767 . - . transcript_id "YDL078C_id002"; gene_id "YDL078C"; gene_name "MDH3"; +chrIV SGD transcript 315357 316388 . - . transcript_id "YDL078C_id001"; gene_id "YDL078C"; gene_name "MDH3"; transcript_biotype "protein_coding"; +chrIV SGD exon 315357 316388 . - 0 transcript_id "YDL078C_id001"; gene_name "MDH3"; gene_id "YDL078C"; +chrIV SGD gene 316971 320120 . - . gene_id "YDL077C"; gene_biotype "protein_coding"; +chrIV SGD transcript 316971 320120 . - . transcript_id "YDL077C_mRNA"; gene_id "YDL077C"; gene_name "VAM6"; transcript_biotype "protein_coding"; +chrIV SGD CDS 316971 320120 . - 0 transcript_id "YDL077C_mRNA"; gene_name "VAM6"; gene_id "YDL077C"; +chrIV SGD gene 320668 321552 . - . gene_id "YDL076C"; gene_biotype "protein_coding"; +chrIV SGD transcript 320668 321552 . - . transcript_id "YDL076C_id001"; gene_id "YDL076C"; gene_name "RXT3"; transcript_biotype "protein_coding"; +chrIV SGD exon 320668 321552 . - 0 transcript_id "YDL076C_id001"; gene_name "RXT3"; gene_id "YDL076C"; +chrIV SGD gene 322071 323095 . + . gene_id "YDL075W"; gene_biotype "protein_coding"; +chrIV SGD transcript 322071 323095 . + . transcript_id "YDL075W_id005"; gene_id "YDL075W"; gene_name "RPL31A"; transcript_biotype "protein_coding"; +chrIV SGD exon 322071 323095 . + . transcript_id "YDL075W_id005"; gene_id "YDL075W"; gene_name "RPL31A"; +chrIV SGD transcript 322226 322988 . + . transcript_id "YDL075W_id001"; gene_id "YDL075W"; gene_name "RPL31A"; transcript_biotype "protein_coding"; +chrIV SGD exon 322226 322282 . + 0 transcript_id "YDL075W_id001"; gene_name "RPL31A"; gene_id "YDL075W"; +chrIV SGD exon 322704 322988 . + 0 transcript_id "YDL075W_id001"; gene_name "RPL31A"; gene_id "YDL075W"; +chrIV SGD gene 323217 323471 . - . gene_id "YNCD0002C"; gene_biotype "ncRNA"; +chrIV SGD transcript 323217 323471 . - . transcript_id "YNCD0002C_snoRNA"; gene_id "YNCD0002C"; gene_name "SNR63"; transcript_biotype "ncRNA"; +chrIV SGD exon 323217 323471 . - . transcript_id "YNCD0002C_snoRNA"; gene_name "SNR63"; gene_id "YNCD0002C"; +chrIV SGD gene 323912 326221 . - . gene_id "YDL074C"; gene_biotype "protein_coding"; +chrIV SGD transcript 323912 326221 . - . transcript_id "YDL074C_id005"; gene_id "YDL074C"; gene_name "BRE1"; transcript_biotype "protein_coding"; +chrIV SGD exon 323912 326221 . - . transcript_id "YDL074C_id005"; gene_id "YDL074C"; gene_name "BRE1"; +chrIV SGD transcript 324047 326149 . - . transcript_id "YDL074C_id001"; gene_id "YDL074C"; gene_name "BRE1"; transcript_biotype "protein_coding"; +chrIV SGD exon 324047 326149 . - 0 transcript_id "YDL074C_id001"; gene_name "BRE1"; gene_id "YDL074C"; +chrIV SGD gene 326613 329567 . + . gene_id "YDL073W"; gene_biotype "protein_coding"; +chrIV SGD transcript 326613 329567 . + . transcript_id "YDL073W_id001"; gene_id "YDL073W"; gene_name "AHK1"; transcript_biotype "protein_coding"; +chrIV SGD exon 326613 329567 . + 0 transcript_id "YDL073W_id001"; gene_name "AHK1"; gene_id "YDL073W"; +chrIV SGD gene 329748 330900 . - . gene_id "YDL072C"; gene_biotype "protein_coding"; +chrIV SGD transcript 329748 330900 . - . transcript_id "YDL072C_id001"; gene_id "YDL072C"; gene_name "YET3"; transcript_biotype "protein_coding"; +chrIV SGD exon 329748 330900 . - . transcript_id "YDL072C_id001"; gene_id "YDL072C"; gene_name "YET3"; +chrIV SGD transcript 329836 330447 . - . transcript_id "YDL072C_id002"; gene_id "YDL072C"; gene_name "YET3"; transcript_biotype "protein_coding"; +chrIV SGD exon 329836 330447 . - 0 transcript_id "YDL072C_id002"; gene_name "YET3"; gene_id "YDL072C"; +chrIV SGD gene 330666 331040 . - . gene_id "YDL071C"; gene_biotype "protein_coding"; +chrIV SGD transcript 330666 331040 . - . transcript_id "YDL071C_mRNA"; gene_id "YDL071C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 330666 331040 . - 0 transcript_id "YDL071C_mRNA"; gene_id "YDL071C"; +chrIV SGD gene 330765 333097 . + . gene_id "YDL070W"; gene_biotype "protein_coding"; +chrIV SGD transcript 330765 333097 . + . transcript_id "YDL070W_id008"; gene_id "YDL070W"; gene_name "BDF2"; transcript_biotype "protein_coding"; +chrIV SGD exon 330765 333097 . + . transcript_id "YDL070W_id008"; gene_id "YDL070W"; gene_name "BDF2"; +chrIV SGD transcript 331024 332940 . + . transcript_id "YDL070W_id001"; gene_id "YDL070W"; gene_name "BDF2"; transcript_biotype "protein_coding"; +chrIV SGD exon 331024 332940 . + 0 transcript_id "YDL070W_id001"; gene_name "BDF2"; gene_id "YDL070W"; +chrIV SGD gene 332998 333959 . - . gene_id "YDL069C"; gene_biotype "protein_coding"; +chrIV SGD transcript 332998 333959 . - . transcript_id "YDL069C_id003"; gene_id "YDL069C"; gene_name "CBS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 332998 333959 . - . transcript_id "YDL069C_id003"; gene_id "YDL069C"; gene_name "CBS1"; +chrIV SGD transcript 333121 333810 . - . transcript_id "YDL069C_id001"; gene_id "YDL069C"; gene_name "CBS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 333121 333810 . - 0 transcript_id "YDL069C_id001"; gene_name "CBS1"; gene_id "YDL069C"; +chrIV SGD gene 333500 333829 . + . gene_id "YDL068W"; gene_biotype "protein_coding"; +chrIV SGD transcript 333500 333829 . + . transcript_id "YDL068W_id001"; gene_id "YDL068W"; transcript_biotype "protein_coding"; +chrIV SGD exon 333500 333829 . + 0 transcript_id "YDL068W_id001"; gene_id "YDL068W"; +chrIV SGD gene 333989 334677 . - . gene_id "YDL067C"; gene_biotype "protein_coding"; +chrIV SGD transcript 333989 334677 . - . transcript_id "YDL067C_id002"; gene_id "YDL067C"; gene_name "COX9"; transcript_biotype "protein_coding"; +chrIV SGD exon 333989 334677 . - . transcript_id "YDL067C_id002"; gene_id "YDL067C"; gene_name "COX9"; +chrIV SGD transcript 334217 334396 . - . transcript_id "YDL067C_id001"; gene_id "YDL067C"; gene_name "COX9"; transcript_biotype "protein_coding"; +chrIV SGD exon 334217 334396 . - 0 transcript_id "YDL067C_id001"; gene_name "COX9"; gene_id "YDL067C"; +chrIV SGD gene 334818 336621 . + . gene_id "YDL066W"; gene_biotype "protein_coding"; +chrIV SGD transcript 334818 336621 . + . transcript_id "YDL066W_id001"; gene_id "YDL066W"; gene_name "IDP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 334818 336621 . + . transcript_id "YDL066W_id001"; gene_id "YDL066W"; gene_name "IDP1"; +chrIV SGD transcript 334835 336121 . + . transcript_id "YDL066W_id002"; gene_id "YDL066W"; gene_name "IDP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 334835 336121 . + 0 transcript_id "YDL066W_id002"; gene_name "IDP1"; gene_id "YDL066W"; +chrIV SGD gene 336134 337374 . - . gene_id "YDL065C"; gene_biotype "protein_coding"; +chrIV SGD transcript 336134 337374 . - . transcript_id "YDL065C_id001"; gene_id "YDL065C"; gene_name "PEX19"; transcript_biotype "protein_coding"; +chrIV SGD exon 336134 337374 . - . transcript_id "YDL065C_id001"; gene_id "YDL065C"; gene_name "PEX19"; +chrIV SGD transcript 336249 337277 . - . transcript_id "YDL065C_id002"; gene_id "YDL065C"; gene_name "PEX19"; transcript_biotype "protein_coding"; +chrIV SGD exon 336249 337277 . - 0 transcript_id "YDL065C_id002"; gene_name "PEX19"; gene_id "YDL065C"; +chrIV SGD gene 336663 338162 . + . gene_id "YDL064W"; gene_biotype "protein_coding"; +chrIV SGD transcript 336663 338162 . + . transcript_id "YDL064W_id001"; gene_id "YDL064W"; gene_name "UBC9"; transcript_biotype "protein_coding"; +chrIV SGD exon 336663 338162 . + . transcript_id "YDL064W_id001"; gene_id "YDL064W"; gene_name "UBC9"; +chrIV SGD transcript 337487 338070 . + . transcript_id "YDL064W_id004"; gene_id "YDL064W"; gene_name "UBC9"; transcript_biotype "protein_coding"; +chrIV SGD exon 337487 337524 . + 0 transcript_id "YDL064W_id004"; gene_name "UBC9"; gene_id "YDL064W"; +chrIV SGD exon 337635 338070 . + 1 transcript_id "YDL064W_id004"; gene_name "UBC9"; gene_id "YDL064W"; +chrIV SGD gene 338027 340202 . - . gene_id "YDL063C"; gene_biotype "protein_coding"; +chrIV SGD transcript 338027 340202 . - . transcript_id "YDL063C_id001"; gene_id "YDL063C"; gene_name "SYO1"; transcript_biotype "protein_coding"; +chrIV SGD exon 338027 340202 . - . transcript_id "YDL063C_id001"; gene_id "YDL063C"; gene_name "SYO1"; +chrIV SGD transcript 338272 340134 . - . transcript_id "YDL063C_id002"; gene_id "YDL063C"; gene_name "SYO1"; transcript_biotype "protein_coding"; +chrIV SGD exon 338272 340134 . - 0 transcript_id "YDL063C_id002"; gene_name "SYO1"; gene_id "YDL063C"; +chrIV SGD gene 339857 340282 . + . gene_id "YDL062W"; gene_biotype "protein_coding"; +chrIV SGD transcript 339857 340282 . + . transcript_id "YDL062W_mRNA"; gene_id "YDL062W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 339857 340282 . + 0 transcript_id "YDL062W_mRNA"; gene_id "YDL062W"; +chrIV SGD gene 340303 341275 . - . gene_id "YDL061C"; gene_biotype "protein_coding"; +chrIV SGD transcript 340303 341275 . - . transcript_id "YDL061C_id002"; gene_id "YDL061C"; gene_name "RPS29B"; transcript_biotype "protein_coding"; +chrIV SGD exon 340303 341275 . - . transcript_id "YDL061C_id002"; gene_id "YDL061C"; gene_name "RPS29B"; +chrIV SGD transcript 340628 341219 . - . transcript_id "YDL061C_id001"; gene_id "YDL061C"; gene_name "RPS29B"; transcript_biotype "protein_coding"; +chrIV SGD exon 340628 340798 . - . transcript_id "YDL061C_id001"; gene_name "RPS29B"; gene_id "YDL061C"; +chrIV SGD exon 340811 341219 . - . transcript_id "YDL061C_id001"; gene_name "RPS29B"; gene_id "YDL061C"; +chrIV SGD exon 340628 340798 . - 0 transcript_id "YDL061C_id001"; gene_name "RPS29B"; gene_id "YDL061C"; +chrIV SGD gene 341619 343985 . + . gene_id "YDL060W"; gene_biotype "protein_coding"; +chrIV SGD transcript 341619 343985 . + . transcript_id "YDL060W_mRNA"; gene_id "YDL060W"; gene_name "TSR1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 341619 343985 . + 0 transcript_id "YDL060W_mRNA"; gene_name "TSR1"; gene_id "YDL060W"; +chrIV SGD gene 344237 344953 . - . gene_id "YDL059C"; gene_biotype "protein_coding"; +chrIV SGD transcript 344237 344953 . - . transcript_id "YDL059C_id001"; gene_id "YDL059C"; gene_name "RAD59"; transcript_biotype "protein_coding"; +chrIV SGD exon 344237 344953 . - 0 transcript_id "YDL059C_id001"; gene_name "RAD59"; gene_id "YDL059C"; +chrIV SGD gene 345665 351037 . + . gene_id "YDL058W"; gene_biotype "protein_coding"; +chrIV SGD transcript 345665 351037 . + . transcript_id "YDL058W_mRNA"; gene_id "YDL058W"; gene_name "USO1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 345665 351037 . + 0 transcript_id "YDL058W_mRNA"; gene_name "USO1"; gene_id "YDL058W"; +chrIV SGD gene 351381 352633 . + . gene_id "YDL057W"; gene_biotype "protein_coding"; +chrIV SGD transcript 351381 352633 . + . transcript_id "YDL057W_id001"; gene_id "YDL057W"; transcript_biotype "protein_coding"; +chrIV SGD exon 351381 352633 . + . transcript_id "YDL057W_id001"; gene_id "YDL057W"; +chrIV SGD transcript 351434 352420 . + . transcript_id "YDL057W_id003"; gene_id "YDL057W"; transcript_biotype "protein_coding"; +chrIV SGD exon 351434 352420 . + 0 transcript_id "YDL057W_id003"; gene_id "YDL057W"; +chrIV SGD gene 352877 355378 . + . gene_id "YDL056W"; gene_biotype "protein_coding"; +chrIV SGD transcript 352877 355378 . + . transcript_id "YDL056W_id001"; gene_id "YDL056W"; gene_name "MBP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 352877 355378 . + 0 transcript_id "YDL056W_id001"; gene_name "MBP1"; gene_id "YDL056W"; +chrIV SGD gene 355356 356908 . - . gene_id "YDL055C"; gene_biotype "protein_coding"; +chrIV SGD transcript 355356 356908 . - . transcript_id "YDL055C_id004"; gene_id "YDL055C"; gene_name "PSA1"; transcript_biotype "protein_coding"; +chrIV SGD exon 355356 356908 . - . transcript_id "YDL055C_id004"; gene_id "YDL055C"; gene_name "PSA1"; +chrIV SGD transcript 355674 356759 . - . transcript_id "YDL055C_id001"; gene_id "YDL055C"; gene_name "PSA1"; transcript_biotype "protein_coding"; +chrIV SGD exon 355674 356759 . - 0 transcript_id "YDL055C_id001"; gene_name "PSA1"; gene_id "YDL055C"; +chrIV SGD gene 359577 359672 . + . gene_id "YNCD0003W"; gene_biotype "ncRNA"; +chrIV SGD transcript 359577 359672 . + . transcript_id "YNCD0003W_tRNA"; gene_id "YNCD0003W"; transcript_biotype "ncRNA"; +chrIV SGD exon 359577 359613 . + . transcript_id "YNCD0003W_tRNA"; gene_id "YNCD0003W"; +chrIV SGD exon 359637 359672 . + . transcript_id "YNCD0003W_tRNA"; gene_id "YNCD0003W"; +chrIV SGD gene 359738 361407 . - . gene_id "YDL054C"; gene_biotype "protein_coding"; +chrIV SGD transcript 359738 361407 . - . transcript_id "YDL054C_id001"; gene_id "YDL054C"; gene_name "MCH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 359738 361407 . - . transcript_id "YDL054C_id001"; gene_id "YDL054C"; gene_name "MCH1"; +chrIV SGD transcript 359825 361285 . - . transcript_id "YDL054C_id004"; gene_id "YDL054C"; gene_name "MCH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 359825 361285 . - 0 transcript_id "YDL054C_id004"; gene_name "MCH1"; gene_id "YDL054C"; +chrIV SGD gene 361509 362469 . - . gene_id "YDL053C"; gene_biotype "protein_coding"; +chrIV SGD transcript 361509 362469 . - . transcript_id "YDL053C_id003"; gene_id "YDL053C"; gene_name "PBP4"; transcript_biotype "protein_coding"; +chrIV SGD exon 361509 362469 . - . transcript_id "YDL053C_id003"; gene_id "YDL053C"; gene_name "PBP4"; +chrIV SGD transcript 361699 362256 . - . transcript_id "YDL053C_id001"; gene_id "YDL053C"; gene_name "PBP4"; transcript_biotype "protein_coding"; +chrIV SGD exon 361699 362256 . - 0 transcript_id "YDL053C_id001"; gene_name "PBP4"; gene_id "YDL053C"; +chrIV SGD gene 362391 363635 . - . gene_id "YDL052C"; gene_biotype "protein_coding"; +chrIV SGD transcript 362391 363635 . - . transcript_id "YDL052C_id006"; gene_id "YDL052C"; gene_name "SLC1"; transcript_biotype "protein_coding"; +chrIV SGD exon 362391 363635 . - . transcript_id "YDL052C_id006"; gene_id "YDL052C"; gene_name "SLC1"; +chrIV SGD transcript 362672 363583 . - . transcript_id "YDL052C_id001"; gene_id "YDL052C"; gene_name "SLC1"; transcript_biotype "protein_coding"; +chrIV SGD exon 362672 363583 . - 0 transcript_id "YDL052C_id001"; gene_name "SLC1"; gene_id "YDL052C"; +chrIV SGD gene 363952 364779 . + . gene_id "YDL051W"; gene_biotype "protein_coding"; +chrIV SGD transcript 363952 364779 . + . transcript_id "YDL051W_id001"; gene_id "YDL051W"; gene_name "LHP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 363952 364779 . + 0 transcript_id "YDL051W_id001"; gene_name "LHP1"; gene_id "YDL051W"; +chrIV SGD gene 364446 364817 . - . gene_id "YDL050C"; gene_biotype "protein_coding"; +chrIV SGD transcript 364446 364817 . - . transcript_id "YDL050C_mRNA"; gene_id "YDL050C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 364446 364817 . - 0 transcript_id "YDL050C_mRNA"; gene_id "YDL050C"; +chrIV SGD gene 364809 366044 . - . gene_id "YDL049C"; gene_biotype "protein_coding"; +chrIV SGD transcript 364809 366044 . - . transcript_id "YDL049C_id002"; gene_id "YDL049C"; gene_name "KNH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 364809 366044 . - . transcript_id "YDL049C_id002"; gene_id "YDL049C"; gene_name "KNH1"; +chrIV SGD transcript 365068 365874 . - . transcript_id "YDL049C_id001"; gene_id "YDL049C"; gene_name "KNH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 365068 365874 . - 0 transcript_id "YDL049C_id001"; gene_name "KNH1"; gene_id "YDL049C"; +chrIV SGD gene 366601 368261 . - . gene_id "YDL048C"; gene_biotype "protein_coding"; +chrIV SGD transcript 366601 368261 . - . transcript_id "YDL048C_id001"; gene_id "YDL048C"; gene_name "STP4"; transcript_biotype "protein_coding"; +chrIV SGD exon 366601 368261 . - . transcript_id "YDL048C_id001"; gene_id "YDL048C"; gene_name "STP4"; +chrIV SGD transcript 366739 368211 . - . transcript_id "YDL048C_id002"; gene_id "YDL048C"; gene_name "STP4"; transcript_biotype "protein_coding"; +chrIV SGD exon 366739 368211 . - 0 transcript_id "YDL048C_id002"; gene_name "STP4"; gene_id "YDL048C"; +chrIV SGD gene 369620 370949 . + . gene_id "YDL047W"; gene_biotype "protein_coding"; +chrIV SGD transcript 369620 370949 . + . transcript_id "YDL047W_id001"; gene_id "YDL047W"; gene_name "SIT4"; transcript_biotype "protein_coding"; +chrIV SGD exon 369620 370949 . + . transcript_id "YDL047W_id001"; gene_id "YDL047W"; gene_name "SIT4"; +chrIV SGD transcript 369771 370706 . + . transcript_id "YDL047W_id002"; gene_id "YDL047W"; gene_name "SIT4"; transcript_biotype "protein_coding"; +chrIV SGD exon 369771 370706 . + 0 transcript_id "YDL047W_id002"; gene_name "SIT4"; gene_id "YDL047W"; +chrIV SGD gene 371194 372139 . + . gene_id "YDL046W"; gene_biotype "protein_coding"; +chrIV SGD transcript 371194 372139 . + . transcript_id "YDL046W_id001"; gene_id "YDL046W"; gene_name "NPC2"; transcript_biotype "protein_coding"; +chrIV SGD exon 371194 372139 . + . transcript_id "YDL046W_id001"; gene_id "YDL046W"; gene_name "NPC2"; +chrIV SGD transcript 371240 371761 . + . transcript_id "YDL046W_id003"; gene_id "YDL046W"; gene_name "NPC2"; transcript_biotype "protein_coding"; +chrIV SGD exon 371240 371761 . + 0 transcript_id "YDL046W_id003"; gene_name "NPC2"; gene_id "YDL046W"; +chrIV SGD gene 372028 372650 . + . gene_id "YDL045W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 372028 372650 . + . transcript_id "YDL045W-A_id002"; gene_id "YDL045W-A"; gene_name "MRP10"; transcript_biotype "protein_coding"; +chrIV SGD exon 372028 372650 . + . transcript_id "YDL045W-A_id002"; gene_id "YDL045W-A"; gene_name "MRP10"; +chrIV SGD transcript 372248 372535 . + . transcript_id "YDL045W-A_id001"; gene_id "YDL045W-A"; gene_name "MRP10"; transcript_biotype "protein_coding"; +chrIV SGD exon 372248 372535 . + 0 transcript_id "YDL045W-A_id001"; gene_name "MRP10"; gene_id "YDL045W-A"; +chrIV SGD gene 372561 373793 . - . gene_id "YDL045C"; gene_biotype "protein_coding"; +chrIV SGD transcript 372561 373793 . - . transcript_id "YDL045C_id004"; gene_id "YDL045C"; gene_name "FAD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 372561 373793 . - . transcript_id "YDL045C_id004"; gene_id "YDL045C"; gene_name "FAD1"; +chrIV SGD transcript 372688 373608 . - . transcript_id "YDL045C_id001"; gene_id "YDL045C"; gene_name "FAD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 372688 373608 . - 0 transcript_id "YDL045C_id001"; gene_name "FAD1"; gene_id "YDL045C"; +chrIV SGD gene 373891 375840 . - . gene_id "YDL044C"; gene_biotype "protein_coding"; +chrIV SGD transcript 373891 375840 . - . transcript_id "YDL044C_id001"; gene_id "YDL044C"; gene_name "MTF2"; transcript_biotype "protein_coding"; +chrIV SGD exon 373891 375840 . - . transcript_id "YDL044C_id001"; gene_id "YDL044C"; gene_name "MTF2"; +chrIV SGD transcript 373967 375289 . - . transcript_id "YDL044C_id002"; gene_id "YDL044C"; gene_name "MTF2"; transcript_biotype "protein_coding"; +chrIV SGD exon 373967 375289 . - 0 transcript_id "YDL044C_id002"; gene_name "MTF2"; gene_id "YDL044C"; +chrIV SGD gene 375236 376495 . - . gene_id "YDL043C"; gene_biotype "protein_coding"; +chrIV SGD transcript 375236 376495 . - . transcript_id "YDL043C_id006"; gene_id "YDL043C"; gene_name "PRP11"; transcript_biotype "protein_coding"; +chrIV SGD exon 375236 376495 . - . transcript_id "YDL043C_id006"; gene_id "YDL043C"; gene_name "PRP11"; +chrIV SGD transcript 375680 376480 . - . transcript_id "YDL043C_id001"; gene_id "YDL043C"; gene_name "PRP11"; transcript_biotype "protein_coding"; +chrIV SGD exon 375680 376480 . - 0 transcript_id "YDL043C_id001"; gene_name "PRP11"; gene_id "YDL043C"; +chrIV SGD gene 376637 378528 . - . gene_id "YDL042C"; gene_biotype "protein_coding"; +chrIV SGD transcript 376637 378528 . - . transcript_id "YDL042C_id002"; gene_id "YDL042C"; gene_name "SIR2"; transcript_biotype "protein_coding"; +chrIV SGD exon 376637 378528 . - . transcript_id "YDL042C_id002"; gene_id "YDL042C"; gene_name "SIR2"; +chrIV SGD transcript 376757 378445 . - . transcript_id "YDL042C_id001"; gene_id "YDL042C"; gene_name "SIR2"; transcript_biotype "protein_coding"; +chrIV SGD exon 376757 378445 . - 0 transcript_id "YDL042C_id001"; gene_name "SIR2"; gene_id "YDL042C"; +chrIV SGD gene 378068 378875 . + . gene_id "YDL041W"; gene_biotype "protein_coding"; +chrIV SGD transcript 378068 378875 . + . transcript_id "YDL041W_id002"; gene_id "YDL041W"; transcript_biotype "protein_coding"; +chrIV SGD exon 378068 378875 . + . transcript_id "YDL041W_id002"; gene_id "YDL041W"; +chrIV SGD transcript 378102 378455 . + . transcript_id "YDL041W_id001"; gene_id "YDL041W"; transcript_biotype "protein_coding"; +chrIV SGD exon 378102 378455 . + 0 transcript_id "YDL041W_id001"; gene_id "YDL041W"; +chrIV SGD gene 378762 381507 . - . gene_id "YDL040C"; gene_biotype "protein_coding"; +chrIV SGD transcript 378762 381507 . - . transcript_id "YDL040C_id002"; gene_id "YDL040C"; gene_name "NAT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 378762 381507 . - . transcript_id "YDL040C_id002"; gene_id "YDL040C"; gene_name "NAT1"; +chrIV SGD transcript 378874 381438 . - . transcript_id "YDL040C_id001"; gene_id "YDL040C"; gene_name "NAT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 378874 381438 . - 0 transcript_id "YDL040C_id001"; gene_name "NAT1"; gene_id "YDL040C"; +chrIV SGD gene 381985 384081 . - . gene_id "YDL039C"; gene_biotype "protein_coding"; +chrIV SGD transcript 381985 384081 . - . transcript_id "YDL039C_mRNA"; gene_id "YDL039C"; gene_name "PRM7"; transcript_biotype "protein_coding"; +chrIV SGD CDS 381985 384081 . - 0 transcript_id "YDL039C_mRNA"; gene_name "PRM7"; gene_id "YDL039C"; +chrIV SGD gene 384601 385587 . - . gene_id "YDL037C"; gene_biotype "protein_coding"; +chrIV SGD transcript 384601 385587 . - . transcript_id "YDL037C_mRNA"; gene_id "YDL037C"; gene_name "BSC1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 384601 385587 . - 0 transcript_id "YDL037C_mRNA"; gene_name "BSC1"; gene_id "YDL037C"; +chrIV SGD gene 387287 388919 . - . gene_id "YDL036C"; gene_biotype "protein_coding"; +chrIV SGD transcript 387287 388919 . - . transcript_id "YDL036C_id003"; gene_id "YDL036C"; gene_name "PUS9"; transcript_biotype "protein_coding"; +chrIV SGD exon 387287 388919 . - . transcript_id "YDL036C_id003"; gene_id "YDL036C"; gene_name "PUS9"; +chrIV SGD transcript 387513 388901 . - . transcript_id "YDL036C_id001"; gene_id "YDL036C"; gene_name "PUS9"; transcript_biotype "protein_coding"; +chrIV SGD exon 387513 388901 . - 0 transcript_id "YDL036C_id001"; gene_name "PUS9"; gene_id "YDL036C"; +chrIV SGD gene 389172 392057 . - . gene_id "YDL035C"; gene_biotype "protein_coding"; +chrIV SGD transcript 389172 392057 . - . transcript_id "YDL035C_id001"; gene_id "YDL035C"; gene_name "GPR1"; transcript_biotype "protein_coding"; +chrIV SGD exon 389172 392057 . - 0 transcript_id "YDL035C_id001"; gene_name "GPR1"; gene_id "YDL035C"; +chrIV SGD gene 391783 392127 . + . gene_id "YDL034W"; gene_biotype "protein_coding"; +chrIV SGD transcript 391783 392127 . + . transcript_id "YDL034W_mRNA"; gene_id "YDL034W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 391783 392127 . + 0 transcript_id "YDL034W_mRNA"; gene_id "YDL034W"; +chrIV SGD gene 392404 393951 . - . gene_id "YDL033C"; gene_biotype "protein_coding"; +chrIV SGD transcript 392404 393951 . - . transcript_id "YDL033C_id001"; gene_id "YDL033C"; gene_name "SLM3"; transcript_biotype "protein_coding"; +chrIV SGD exon 392404 393951 . - . transcript_id "YDL033C_id001"; gene_id "YDL033C"; gene_name "SLM3"; +chrIV SGD transcript 392659 393912 . - . transcript_id "YDL033C_id003"; gene_id "YDL033C"; gene_name "SLM3"; transcript_biotype "protein_coding"; +chrIV SGD exon 392659 393912 . - 0 transcript_id "YDL033C_id003"; gene_name "SLM3"; gene_id "YDL033C"; +chrIV SGD gene 393690 394001 . + . gene_id "YDL032W"; gene_biotype "protein_coding"; +chrIV SGD transcript 393690 394001 . + . transcript_id "YDL032W_mRNA"; gene_id "YDL032W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 393690 394001 . + 0 transcript_id "YDL032W_mRNA"; gene_id "YDL032W"; +chrIV SGD gene 394161 397341 . + . gene_id "YDL031W"; gene_biotype "protein_coding"; +chrIV SGD transcript 394161 397341 . + . transcript_id "YDL031W_id001"; gene_id "YDL031W"; gene_name "DBP10"; transcript_biotype "protein_coding"; +chrIV SGD exon 394161 397341 . + . transcript_id "YDL031W_id001"; gene_id "YDL031W"; gene_name "DBP10"; +chrIV SGD transcript 394217 397204 . + . transcript_id "YDL031W_id004"; gene_id "YDL031W"; gene_name "DBP10"; transcript_biotype "protein_coding"; +chrIV SGD exon 394217 397204 . + 0 transcript_id "YDL031W_id004"; gene_name "DBP10"; gene_id "YDL031W"; +chrIV SGD gene 397393 399220 . + . gene_id "YDL030W"; gene_biotype "protein_coding"; +chrIV SGD transcript 397393 399220 . + . transcript_id "YDL030W_id001"; gene_id "YDL030W"; gene_name "PRP9"; transcript_biotype "protein_coding"; +chrIV SGD exon 397393 399220 . + . transcript_id "YDL030W_id001"; gene_id "YDL030W"; gene_name "PRP9"; +chrIV SGD transcript 397537 399129 . + . transcript_id "YDL030W_id002"; gene_id "YDL030W"; gene_name "PRP9"; transcript_biotype "protein_coding"; +chrIV SGD exon 397537 399129 . + 0 transcript_id "YDL030W_id002"; gene_name "PRP9"; gene_id "YDL030W"; +chrIV SGD gene 399317 400982 . + . gene_id "YDL029W"; gene_biotype "protein_coding"; +chrIV SGD transcript 399317 400982 . + . transcript_id "YDL029W_id002"; gene_id "YDL029W"; gene_name "ARP2"; transcript_biotype "protein_coding"; +chrIV SGD exon 399317 400982 . + . transcript_id "YDL029W_id002"; gene_id "YDL029W"; gene_name "ARP2"; +chrIV SGD transcript 399340 400638 . + . transcript_id "YDL029W_id001"; gene_id "YDL029W"; gene_name "ARP2"; transcript_biotype "protein_coding"; +chrIV SGD exon 399340 399361 . + 0 transcript_id "YDL029W_id001"; gene_name "ARP2"; gene_id "YDL029W"; +chrIV SGD exon 399485 400638 . + 2 transcript_id "YDL029W_id001"; gene_name "ARP2"; gene_id "YDL029W"; +chrIV SGD gene 400837 403467 . - . gene_id "YDL028C"; gene_biotype "protein_coding"; +chrIV SGD transcript 400837 403467 . - . transcript_id "YDL028C_id001"; gene_id "YDL028C"; gene_name "MPS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 400837 403467 . - . transcript_id "YDL028C_id001"; gene_id "YDL028C"; gene_name "MPS1"; +chrIV SGD transcript 400997 403291 . - . transcript_id "YDL028C_id002"; gene_id "YDL028C"; gene_name "MPS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 400997 403291 . - 0 transcript_id "YDL028C_id002"; gene_name "MPS1"; gene_id "YDL028C"; +chrIV SGD gene 403498 405003 . - . gene_id "YDL027C"; gene_biotype "protein_coding"; +chrIV SGD transcript 403498 405003 . - . transcript_id "YDL027C_id003"; gene_id "YDL027C"; gene_name "MRX9"; transcript_biotype "protein_coding"; +chrIV SGD exon 403498 405003 . - . transcript_id "YDL027C_id003"; gene_id "YDL027C"; gene_name "MRX9"; +chrIV SGD transcript 403695 404957 . - . transcript_id "YDL027C_id001"; gene_id "YDL027C"; gene_name "MRX9"; transcript_biotype "protein_coding"; +chrIV SGD exon 403695 404957 . - 0 transcript_id "YDL027C_id001"; gene_name "MRX9"; gene_id "YDL027C"; +chrIV SGD gene 404749 405060 . + . gene_id "YDL026W"; gene_biotype "protein_coding"; +chrIV SGD transcript 404749 405060 . + . transcript_id "YDL026W_id001"; gene_id "YDL026W"; transcript_biotype "protein_coding"; +chrIV SGD exon 404749 405060 . + 0 transcript_id "YDL026W_id001"; gene_id "YDL026W"; +chrIV SGD gene 405162 408073 . - . gene_id "YDL025C"; gene_biotype "protein_coding"; +chrIV SGD transcript 405162 408073 . - . transcript_id "YDL025C_id001"; gene_id "YDL025C"; gene_name "RTK1"; transcript_biotype "protein_coding"; +chrIV SGD exon 405162 408073 . - . transcript_id "YDL025C_id001"; gene_id "YDL025C"; gene_name "RTK1"; +chrIV SGD transcript 405344 407206 . - . transcript_id "YDL025C_id003"; gene_id "YDL025C"; gene_name "RTK1"; transcript_biotype "protein_coding"; +chrIV SGD exon 405344 407206 . - 0 transcript_id "YDL025C_id003"; gene_name "RTK1"; gene_id "YDL025C"; +chrIV SGD gene 405410 405514 . + . gene_id "YDL025W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 405410 405514 . + . transcript_id "YDL025W-A_id001"; gene_id "YDL025W-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 405410 405514 . + 0 transcript_id "YDL025W-A_id001"; gene_id "YDL025W-A"; +chrIV SGD gene 408199 409868 . - . gene_id "YDL024C"; gene_biotype "protein_coding"; +chrIV SGD transcript 408199 409868 . - . transcript_id "YDL024C_id002"; gene_id "YDL024C"; gene_name "DIA3"; transcript_biotype "protein_coding"; +chrIV SGD exon 408199 409868 . - . transcript_id "YDL024C_id002"; gene_id "YDL024C"; gene_name "DIA3"; +chrIV SGD transcript 408451 409857 . - . transcript_id "YDL024C_id001"; gene_id "YDL024C"; gene_name "DIA3"; transcript_biotype "protein_coding"; +chrIV SGD exon 408451 409857 . - 0 transcript_id "YDL024C_id001"; gene_name "DIA3"; gene_id "YDL024C"; +chrIV SGD gene 409808 410056 . - . gene_id "YDL022C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 409808 410056 . - . transcript_id "YDL022C-A_mRNA"; gene_id "YDL022C-A"; transcript_biotype "protein_coding"; +chrIV SGD CDS 409808 410056 . - 0 transcript_id "YDL022C-A_mRNA"; gene_id "YDL022C-A"; +chrIV SGD gene 410379 410451 . + . gene_id "YNCD0004W"; gene_biotype "ncRNA"; +chrIV SGD transcript 410379 410451 . + . transcript_id "YNCD0004W_tRNA"; gene_id "YNCD0004W"; transcript_biotype "ncRNA"; +chrIV SGD exon 410379 410451 . + . transcript_id "YNCD0004W_tRNA"; gene_id "YNCD0004W"; +chrIV SGD gene 411682 413229 . + . gene_id "YDL022W"; gene_biotype "protein_coding"; +chrIV SGD transcript 411682 413229 . + . transcript_id "YDL022W_id001"; gene_id "YDL022W"; gene_name "GPD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 411682 413229 . + . transcript_id "YDL022W_id001"; gene_id "YDL022W"; gene_name "GPD1"; +chrIV SGD gene 411761 412081 . - . gene_id "YDL023C"; gene_biotype "protein_coding"; +chrIV SGD transcript 411761 412081 . - . transcript_id "YDL023C_mRNA"; gene_id "YDL023C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 411761 412081 . - 0 transcript_id "YDL023C_mRNA"; gene_id "YDL023C"; +chrIV SGD transcript 411825 413000 . + . transcript_id "YDL022W_id002"; gene_id "YDL022W"; gene_name "GPD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 411825 413000 . + 0 transcript_id "YDL022W_id002"; gene_name "GPD1"; gene_id "YDL022W"; +chrIV SGD gene 413883 415074 . + . gene_id "YDL021W"; gene_biotype "protein_coding"; +chrIV SGD transcript 413883 415074 . + . transcript_id "YDL021W_id001"; gene_id "YDL021W"; gene_name "GPM2"; transcript_biotype "protein_coding"; +chrIV SGD exon 413883 415074 . + . transcript_id "YDL021W_id001"; gene_id "YDL021W"; gene_name "GPM2"; +chrIV SGD transcript 413953 414888 . + . transcript_id "YDL021W_id003"; gene_id "YDL021W"; gene_name "GPM2"; transcript_biotype "protein_coding"; +chrIV SGD exon 413953 414888 . + 0 transcript_id "YDL021W_id003"; gene_name "GPM2"; gene_id "YDL021W"; +chrIV SGD gene 414953 416952 . - . gene_id "YDL020C"; gene_biotype "protein_coding"; +chrIV SGD transcript 414953 416952 . - . transcript_id "YDL020C_id001"; gene_id "YDL020C"; gene_name "RPN4"; transcript_biotype "protein_coding"; +chrIV SGD exon 414953 416952 . - . transcript_id "YDL020C_id001"; gene_id "YDL020C"; gene_name "RPN4"; +chrIV SGD transcript 415113 416708 . - . transcript_id "YDL020C_id003"; gene_id "YDL020C"; gene_name "RPN4"; transcript_biotype "protein_coding"; +chrIV SGD exon 415113 416708 . - 0 transcript_id "YDL020C_id003"; gene_name "RPN4"; gene_id "YDL020C"; +chrIV SGD gene 417511 421621 . - . gene_id "YDL019C"; gene_biotype "protein_coding"; +chrIV SGD transcript 417511 421621 . - . transcript_id "YDL019C_id002"; gene_id "YDL019C"; gene_name "OSH2"; transcript_biotype "protein_coding"; +chrIV SGD exon 417511 421621 . - . transcript_id "YDL019C_id002"; gene_id "YDL019C"; gene_name "OSH2"; +chrIV SGD transcript 417663 421514 . - . transcript_id "YDL019C_id001"; gene_id "YDL019C"; gene_name "OSH2"; transcript_biotype "protein_coding"; +chrIV SGD exon 417663 421514 . - 0 transcript_id "YDL019C_id001"; gene_name "OSH2"; gene_id "YDL019C"; +chrIV SGD gene 422560 423583 . - . gene_id "YDL018C"; gene_biotype "protein_coding"; +chrIV SGD transcript 422560 423583 . - . transcript_id "YDL018C_id004"; gene_id "YDL018C"; gene_name "ERP3"; transcript_biotype "protein_coding"; +chrIV SGD exon 422560 423583 . - . transcript_id "YDL018C_id004"; gene_id "YDL018C"; gene_name "ERP3"; +chrIV SGD transcript 422833 423510 . - . transcript_id "YDL018C_id001"; gene_id "YDL018C"; gene_name "ERP3"; transcript_biotype "protein_coding"; +chrIV SGD exon 422833 423510 . - 0 transcript_id "YDL018C_id001"; gene_name "ERP3"; gene_id "YDL018C"; +chrIV SGD gene 424192 425846 . + . gene_id "YDL017W"; gene_biotype "protein_coding"; +chrIV SGD transcript 424192 425846 . + . transcript_id "YDL017W_id008"; gene_id "YDL017W"; gene_name "CDC7"; transcript_biotype "protein_coding"; +chrIV SGD exon 424192 425846 . + . transcript_id "YDL017W_id008"; gene_id "YDL017W"; gene_name "CDC7"; +chrIV SGD transcript 424209 425732 . + . transcript_id "YDL017W_id001"; gene_id "YDL017W"; gene_name "CDC7"; transcript_biotype "protein_coding"; +chrIV SGD exon 424209 425732 . + 0 transcript_id "YDL017W_id001"; gene_name "CDC7"; gene_id "YDL017W"; +chrIV SGD gene 425570 425872 . - . gene_id "YDL016C"; gene_biotype "protein_coding"; +chrIV SGD transcript 425570 425872 . - . transcript_id "YDL016C_mRNA"; gene_id "YDL016C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 425570 425872 . - 0 transcript_id "YDL016C_mRNA"; gene_id "YDL016C"; +chrIV SGD gene 425758 427000 . - . gene_id "YDL015C"; gene_biotype "protein_coding"; +chrIV SGD transcript 425758 427000 . - . transcript_id "YDL015C_id003"; gene_id "YDL015C"; gene_name "TSC13"; transcript_biotype "protein_coding"; +chrIV SGD exon 425758 427000 . - . transcript_id "YDL015C_id003"; gene_id "YDL015C"; gene_name "TSC13"; +chrIV SGD transcript 426002 426934 . - . transcript_id "YDL015C_id001"; gene_id "YDL015C"; gene_name "TSC13"; transcript_biotype "protein_coding"; +chrIV SGD exon 426002 426934 . - 0 transcript_id "YDL015C_id001"; gene_name "TSC13"; gene_id "YDL015C"; +chrIV SGD gene 427215 428606 . + . gene_id "YDL014W"; gene_biotype "protein_coding"; +chrIV SGD transcript 427215 428606 . + . transcript_id "YDL014W_id006"; gene_id "YDL014W"; gene_name "NOP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 427215 428606 . + . transcript_id "YDL014W_id006"; gene_id "YDL014W"; gene_name "NOP1"; +chrIV SGD transcript 427364 428347 . + . transcript_id "YDL014W_id001"; gene_id "YDL014W"; gene_name "NOP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 427364 428347 . + 0 transcript_id "YDL014W_id001"; gene_name "NOP1"; gene_id "YDL014W"; +chrIV SGD gene 428906 431040 . + . gene_id "YDL013W"; gene_biotype "protein_coding"; +chrIV SGD transcript 428906 431040 . + . transcript_id "YDL013W_id001"; gene_id "YDL013W"; gene_name "SLX5"; transcript_biotype "protein_coding"; +chrIV SGD exon 428906 431040 . + . transcript_id "YDL013W_id001"; gene_id "YDL013W"; gene_name "SLX5"; +chrIV SGD transcript 429067 430926 . + . transcript_id "YDL013W_id002"; gene_id "YDL013W"; gene_name "SLX5"; transcript_biotype "protein_coding"; +chrIV SGD exon 429067 430926 . + 0 transcript_id "YDL013W_id002"; gene_name "SLX5"; gene_id "YDL013W"; +chrIV SGD gene 430944 432072 . - . gene_id "YDL012C"; gene_biotype "protein_coding"; +chrIV SGD transcript 430944 432072 . - . transcript_id "YDL012C_id002"; gene_id "YDL012C"; transcript_biotype "protein_coding"; +chrIV SGD exon 430944 432072 . - . transcript_id "YDL012C_id002"; gene_id "YDL012C"; +chrIV SGD transcript 431108 431517 . - . transcript_id "YDL012C_id001"; gene_id "YDL012C"; transcript_biotype "protein_coding"; +chrIV SGD exon 431108 431386 . - 0 transcript_id "YDL012C_id001"; gene_id "YDL012C"; +chrIV SGD exon 431473 431517 . - 0 transcript_id "YDL012C_id001"; gene_id "YDL012C"; +chrIV SGD gene 432302 433434 . + . gene_id "YDL010W"; gene_biotype "protein_coding"; +chrIV SGD transcript 432302 433434 . + . transcript_id "YDL010W_id003"; gene_id "YDL010W"; gene_name "GRX6"; transcript_biotype "protein_coding"; +chrIV SGD exon 432302 433434 . + . transcript_id "YDL010W_id003"; gene_id "YDL010W"; gene_name "GRX6"; +chrIV SGD gene 432308 432631 . - . gene_id "YDL011C"; gene_biotype "protein_coding"; +chrIV SGD transcript 432308 432631 . - . transcript_id "YDL011C_mRNA"; gene_id "YDL011C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 432308 432631 . - 0 transcript_id "YDL011C_mRNA"; gene_id "YDL011C"; +chrIV SGD transcript 432330 433025 . + . transcript_id "YDL010W_id001"; gene_id "YDL010W"; gene_name "GRX6"; transcript_biotype "protein_coding"; +chrIV SGD exon 432330 433025 . + 0 transcript_id "YDL010W_id001"; gene_name "GRX6"; gene_id "YDL010W"; +chrIV SGD gene 432925 433248 . - . gene_id "YDL009C"; gene_biotype "protein_coding"; +chrIV SGD transcript 432925 433248 . - . transcript_id "YDL009C_mRNA"; gene_id "YDL009C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 432925 433248 . - 0 transcript_id "YDL009C_mRNA"; gene_id "YDL009C"; +chrIV SGD gene 433428 434136 . + . gene_id "YDL008W"; gene_biotype "protein_coding"; +chrIV SGD transcript 433428 434136 . + . transcript_id "YDL008W_id004"; gene_id "YDL008W"; gene_name "APC11"; transcript_biotype "protein_coding"; +chrIV SGD exon 433428 434136 . + . transcript_id "YDL008W_id004"; gene_id "YDL008W"; gene_name "APC11"; +chrIV SGD transcript 433497 433994 . + . transcript_id "YDL008W_id001"; gene_id "YDL008W"; gene_name "APC11"; transcript_biotype "protein_coding"; +chrIV SGD exon 433497 433994 . + 0 transcript_id "YDL008W_id001"; gene_name "APC11"; gene_id "YDL008W"; +chrIV SGD gene 434264 434336 . - . gene_id "YNCD0005C"; gene_biotype "ncRNA"; +chrIV SGD transcript 434264 434336 . - . transcript_id "YNCD0005C_tRNA"; gene_id "YNCD0005C"; transcript_biotype "ncRNA"; +chrIV SGD exon 434264 434336 . - . transcript_id "YNCD0005C_tRNA"; gene_id "YNCD0005C"; +chrIV SGD gene 436567 436824 . - . gene_id "YDL007C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 436567 436824 . - . transcript_id "YDL007C-A_mRNA"; gene_id "YDL007C-A"; transcript_biotype "protein_coding"; +chrIV SGD CDS 436567 436824 . - 0 transcript_id "YDL007C-A_mRNA"; gene_id "YDL007C-A"; +chrIV SGD gene 437772 437853 . + . gene_id "YNCD0006W"; gene_biotype "ncRNA"; +chrIV SGD transcript 437772 437853 . + . transcript_id "YNCD0006W_tRNA"; gene_id "YNCD0006W"; transcript_biotype "ncRNA"; +chrIV SGD exon 437772 437853 . + . transcript_id "YNCD0006W_tRNA"; gene_id "YNCD0006W"; +chrIV SGD gene 438000 439504 . + . gene_id "YDL007W"; gene_biotype "protein_coding"; +chrIV SGD transcript 438000 439504 . + . transcript_id "YDL007W_id002"; gene_id "YDL007W"; gene_name "RPT2"; transcript_biotype "protein_coding"; +chrIV SGD exon 438000 439504 . + . transcript_id "YDL007W_id002"; gene_id "YDL007W"; gene_name "RPT2"; +chrIV SGD transcript 438047 439360 . + . transcript_id "YDL007W_id001"; gene_id "YDL007W"; gene_name "RPT2"; transcript_biotype "protein_coding"; +chrIV SGD exon 438047 439360 . + 0 transcript_id "YDL007W_id001"; gene_name "RPT2"; gene_id "YDL007W"; +chrIV SGD gene 439569 440983 . + . gene_id "YDL006W"; gene_biotype "protein_coding"; +chrIV SGD transcript 439569 440983 . + . transcript_id "YDL006W_id001"; gene_id "YDL006W"; gene_name "PTC1"; transcript_biotype "protein_coding"; +chrIV SGD exon 439569 440983 . + . transcript_id "YDL006W_id001"; gene_id "YDL006W"; gene_name "PTC1"; +chrIV SGD transcript 439909 440754 . + . transcript_id "YDL006W_id004"; gene_id "YDL006W"; gene_name "PTC1"; transcript_biotype "protein_coding"; +chrIV SGD exon 439909 440754 . + 0 transcript_id "YDL006W_id004"; gene_name "PTC1"; gene_id "YDL006W"; +chrIV SGD gene 440791 442368 . - . gene_id "YDL005C"; gene_biotype "protein_coding"; +chrIV SGD transcript 440791 442368 . - . transcript_id "YDL005C_id002"; gene_id "YDL005C"; gene_name "MED2"; transcript_biotype "protein_coding"; +chrIV SGD exon 440791 442368 . - . transcript_id "YDL005C_id002"; gene_id "YDL005C"; gene_name "MED2"; +chrIV SGD transcript 441014 442309 . - . transcript_id "YDL005C_id001"; gene_id "YDL005C"; gene_name "MED2"; transcript_biotype "protein_coding"; +chrIV SGD exon 441014 442309 . - 0 transcript_id "YDL005C_id001"; gene_name "MED2"; gene_id "YDL005C"; +chrIV SGD gene 442975 443900 . + . gene_id "YDL004W"; gene_biotype "protein_coding"; +chrIV SGD transcript 442975 443900 . + . transcript_id "YDL004W_id006"; gene_id "YDL004W"; gene_name "ATP16"; transcript_biotype "protein_coding"; +chrIV SGD exon 442975 443900 . + . transcript_id "YDL004W_id006"; gene_id "YDL004W"; gene_name "ATP16"; +chrIV SGD transcript 443029 443511 . + . transcript_id "YDL004W_id001"; gene_id "YDL004W"; gene_name "ATP16"; transcript_biotype "protein_coding"; +chrIV SGD exon 443029 443511 . + 0 transcript_id "YDL004W_id001"; gene_name "ATP16"; gene_id "YDL004W"; +chrIV SGD gene 444556 446507 . + . gene_id "YDL003W"; gene_biotype "protein_coding"; +chrIV SGD transcript 444556 446507 . + . transcript_id "YDL003W_id001"; gene_id "YDL003W"; gene_name "MCD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 444556 446507 . + . transcript_id "YDL003W_id001"; gene_id "YDL003W"; gene_name "MCD1"; +chrIV SGD transcript 444683 446383 . + . transcript_id "YDL003W_id002"; gene_id "YDL003W"; gene_name "MCD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 444683 446383 . + 0 transcript_id "YDL003W_id002"; gene_name "MCD1"; gene_id "YDL003W"; +chrIV SGD gene 446436 447645 . - . gene_id "YDL002C"; gene_biotype "protein_coding"; +chrIV SGD transcript 446436 447645 . - . transcript_id "YDL002C_id001"; gene_id "YDL002C"; gene_name "NHP10"; transcript_biotype "protein_coding"; +chrIV SGD exon 446436 447645 . - . transcript_id "YDL002C_id001"; gene_id "YDL002C"; gene_name "NHP10"; +chrIV SGD transcript 446967 447578 . - . transcript_id "YDL002C_id005"; gene_id "YDL002C"; gene_name "NHP10"; transcript_biotype "protein_coding"; +chrIV SGD exon 446967 447578 . - 0 transcript_id "YDL002C_id005"; gene_name "NHP10"; gene_id "YDL002C"; +chrIV SGD gene 447910 449410 . + . gene_id "YDL001W"; gene_biotype "protein_coding"; +chrIV SGD transcript 447910 449410 . + . transcript_id "YDL001W_id001"; gene_id "YDL001W"; gene_name "RMD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 447910 449410 . + . transcript_id "YDL001W_id001"; gene_id "YDL001W"; gene_name "RMD1"; +chrIV SGD transcript 447984 449276 . + . transcript_id "YDL001W_id003"; gene_id "YDL001W"; gene_name "RMD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 447984 449276 . + 0 transcript_id "YDL001W_id003"; gene_name "RMD1"; gene_id "YDL001W"; +chrIV SGD gene 450220 452475 . - . gene_id "YDR001C"; gene_biotype "protein_coding"; +chrIV SGD transcript 450220 452475 . - . transcript_id "YDR001C_id001"; gene_id "YDR001C"; gene_name "NTH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 450220 452475 . - 0 transcript_id "YDR001C_id001"; gene_name "NTH1"; gene_id "YDR001C"; +chrIV SGD gene 452956 453850 . + . gene_id "YDR002W"; gene_biotype "protein_coding"; +chrIV SGD transcript 452956 453850 . + . transcript_id "YDR002W_id007"; gene_id "YDR002W"; gene_name "YRB1"; transcript_biotype "protein_coding"; +chrIV SGD exon 452956 453850 . + . transcript_id "YDR002W_id007"; gene_id "YDR002W"; gene_name "YRB1"; +chrIV SGD transcript 453045 453650 . + . transcript_id "YDR002W_id001"; gene_id "YDR002W"; gene_name "YRB1"; transcript_biotype "protein_coding"; +chrIV SGD exon 453045 453650 . + 0 transcript_id "YDR002W_id001"; gene_name "YRB1"; gene_id "YDR002W"; +chrIV SGD gene 454122 454754 . + . gene_id "YDR003W"; gene_biotype "protein_coding"; +chrIV SGD transcript 454122 454754 . + . transcript_id "YDR003W_id001"; gene_id "YDR003W"; gene_name "RCR2"; transcript_biotype "protein_coding"; +chrIV SGD exon 454122 454754 . + 0 transcript_id "YDR003W_id001"; gene_name "RCR2"; gene_id "YDR003W"; +chrIV SGD gene 454182 455252 . + . gene_id "YDR003W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 454182 455252 . + . transcript_id "YDR003W-A_id001"; gene_id "YDR003W-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 454182 455252 . + . transcript_id "YDR003W-A_id001"; gene_id "YDR003W-A"; +chrIV SGD transcript 454782 454904 . + . transcript_id "YDR003W-A_id002"; gene_id "YDR003W-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 454782 454904 . + 0 transcript_id "YDR003W-A_id002"; gene_id "YDR003W-A"; +chrIV SGD gene 455201 456583 . + . gene_id "YDR004W"; gene_biotype "protein_coding"; +chrIV SGD transcript 455201 456583 . + . transcript_id "YDR004W_mRNA"; gene_id "YDR004W"; gene_name "RAD57"; transcript_biotype "protein_coding"; +chrIV SGD CDS 455201 456583 . + 0 transcript_id "YDR004W_mRNA"; gene_name "RAD57"; gene_id "YDR004W"; +chrIV SGD gene 456545 458225 . - . gene_id "YDR005C"; gene_biotype "protein_coding"; +chrIV SGD transcript 456545 458225 . - . transcript_id "YDR005C_id002"; gene_id "YDR005C"; gene_name "MAF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 456545 458225 . - . transcript_id "YDR005C_id002"; gene_id "YDR005C"; gene_name "MAF1"; +chrIV SGD transcript 456836 458103 . - . transcript_id "YDR005C_id001"; gene_id "YDR005C"; gene_name "MAF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 456836 458017 . - 0 transcript_id "YDR005C_id001"; gene_name "MAF1"; gene_id "YDR005C"; +chrIV SGD exon 458098 458103 . - 0 transcript_id "YDR005C_id001"; gene_name "MAF1"; gene_id "YDR005C"; +chrIV SGD gene 458455 461411 . - . gene_id "YDR006C"; gene_biotype "protein_coding"; +chrIV SGD transcript 458455 461411 . - . transcript_id "YDR006C_id001"; gene_id "YDR006C"; gene_name "SOK1"; transcript_biotype "protein_coding"; +chrIV SGD exon 458455 461411 . - . transcript_id "YDR006C_id001"; gene_id "YDR006C"; gene_name "SOK1"; +chrIV SGD transcript 458542 461247 . - . transcript_id "YDR006C_id002"; gene_id "YDR006C"; gene_name "SOK1"; transcript_biotype "protein_coding"; +chrIV SGD exon 458542 461247 . - 0 transcript_id "YDR006C_id002"; gene_name "SOK1"; gene_id "YDR006C"; +chrIV SGD gene 461653 462922 . + . gene_id "YDR007W"; gene_biotype "protein_coding"; +chrIV SGD transcript 461653 462922 . + . transcript_id "YDR007W_id001"; gene_id "YDR007W"; gene_name "TRP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 461653 462922 . + . transcript_id "YDR007W_id001"; gene_id "YDR007W"; gene_name "TRP1"; +chrIV SGD transcript 461842 462516 . + . transcript_id "YDR007W_id002"; gene_id "YDR007W"; gene_name "TRP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 461842 462516 . + 0 transcript_id "YDR007W_id002"; gene_name "TRP1"; gene_id "YDR007W"; +chrIV SGD gene 462252 462602 . - . gene_id "YDR008C"; gene_biotype "protein_coding"; +chrIV SGD transcript 462252 462602 . - . transcript_id "YDR008C_mRNA"; gene_id "YDR008C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 462252 462602 . - 0 transcript_id "YDR008C_mRNA"; gene_id "YDR008C"; +chrIV SGD gene 463263 465083 . + . gene_id "YDR009W"; gene_biotype "protein_coding"; +chrIV SGD transcript 463263 465083 . + . transcript_id "YDR009W_id060"; gene_id "YDR009W"; gene_name "GAL3"; transcript_biotype "protein_coding"; +chrIV SGD exon 463263 465083 . + . transcript_id "YDR009W_id060"; gene_id "YDR009W"; gene_name "GAL3"; +chrIV SGD transcript 463434 464996 . + . transcript_id "YDR009W_id001"; gene_id "YDR009W"; gene_name "GAL3"; transcript_biotype "protein_coding"; +chrIV SGD exon 463434 464996 . + 0 transcript_id "YDR009W_id001"; gene_name "GAL3"; gene_id "YDR009W"; +chrIV SGD gene 464605 465738 . - . gene_id "YDR010C"; gene_biotype "protein_coding"; +chrIV SGD transcript 464605 465738 . - . transcript_id "YDR010C_id001"; gene_id "YDR010C"; transcript_biotype "protein_coding"; +chrIV SGD exon 464605 465738 . - . transcript_id "YDR010C_id001"; gene_id "YDR010C"; +chrIV SGD transcript 465051 465383 . - . transcript_id "YDR010C_id002"; gene_id "YDR010C"; transcript_biotype "protein_coding"; +chrIV SGD exon 465051 465383 . - 0 transcript_id "YDR010C_id002"; gene_id "YDR010C"; +chrIV SGD gene 465919 470424 . + . gene_id "YDR011W"; gene_biotype "protein_coding"; +chrIV SGD transcript 465919 470424 . + . transcript_id "YDR011W_id001"; gene_id "YDR011W"; gene_name "SNQ2"; transcript_biotype "protein_coding"; +chrIV SGD exon 465919 470424 . + 0 transcript_id "YDR011W_id001"; gene_name "SNQ2"; gene_id "YDR011W"; +chrIV SGD gene 471821 473246 . + . gene_id "YDR012W"; gene_biotype "protein_coding"; +chrIV SGD transcript 471821 473246 . + . transcript_id "YDR012W_id002"; gene_id "YDR012W"; gene_name "RPL4B"; transcript_biotype "protein_coding"; +chrIV SGD exon 471821 473246 . + . transcript_id "YDR012W_id002"; gene_id "YDR012W"; gene_name "RPL4B"; +chrIV SGD transcript 471853 472941 . + . transcript_id "YDR012W_id001"; gene_id "YDR012W"; gene_name "RPL4B"; transcript_biotype "protein_coding"; +chrIV SGD exon 471853 472941 . + 0 transcript_id "YDR012W_id001"; gene_name "RPL4B"; gene_id "YDR012W"; +chrIV SGD gene 473157 473783 . + . gene_id "YDR013W"; gene_biotype "protein_coding"; +chrIV SGD transcript 473157 473783 . + . transcript_id "YDR013W_id001"; gene_id "YDR013W"; gene_name "PSF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 473157 473783 . + 0 transcript_id "YDR013W_id001"; gene_name "PSF1"; gene_id "YDR013W"; +chrIV SGD gene 474046 475989 . + . gene_id "YDR014W"; gene_biotype "protein_coding"; +chrIV SGD transcript 474046 475989 . + . transcript_id "YDR014W_mRNA"; gene_id "YDR014W"; gene_name "RAD61"; transcript_biotype "protein_coding"; +chrIV SGD CDS 474046 475989 . + 0 transcript_id "YDR014W_mRNA"; gene_name "RAD61"; gene_id "YDR014W"; +chrIV SGD gene 477797 478285 . + . gene_id "YDR014W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 477797 478285 . + . transcript_id "YDR014W-A_id001"; gene_id "YDR014W-A"; gene_name "HED1"; transcript_biotype "protein_coding"; +chrIV SGD exon 477797 478285 . + 0 transcript_id "YDR014W-A_id001"; gene_name "HED1"; gene_id "YDR014W-A"; +chrIV SGD gene 477960 478199 . - . gene_id "YDR015C"; gene_biotype "protein_coding"; +chrIV SGD transcript 477960 478199 . - . transcript_id "YDR015C_mRNA"; gene_id "YDR015C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 477960 478199 . - 0 transcript_id "YDR015C_mRNA"; gene_id "YDR015C"; +chrIV SGD gene 478212 478778 . - . gene_id "YDR016C"; gene_biotype "protein_coding"; +chrIV SGD transcript 478212 478778 . - . transcript_id "YDR016C_id003"; gene_id "YDR016C"; gene_name "DAD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 478212 478778 . - . transcript_id "YDR016C_id003"; gene_id "YDR016C"; gene_name "DAD1"; +chrIV SGD transcript 478474 478758 . - . transcript_id "YDR016C_id001"; gene_id "YDR016C"; gene_name "DAD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 478474 478758 . - 0 transcript_id "YDR016C_id001"; gene_name "DAD1"; gene_id "YDR016C"; +chrIV SGD gene 479115 482267 . - . gene_id "YDR017C"; gene_biotype "protein_coding"; +chrIV SGD transcript 479115 482267 . - . transcript_id "YDR017C_mRNA"; gene_id "YDR017C"; gene_name "KCS1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 479115 482267 . - 0 transcript_id "YDR017C_mRNA"; gene_name "KCS1"; gene_id "YDR017C"; +chrIV SGD gene 482670 483860 . - . gene_id "YDR018C"; gene_biotype "protein_coding"; +chrIV SGD transcript 482670 483860 . - . transcript_id "YDR018C_id001"; gene_id "YDR018C"; transcript_biotype "protein_coding"; +chrIV SGD exon 482670 483860 . - 0 transcript_id "YDR018C_id001"; gene_id "YDR018C"; +chrIV SGD gene 483848 485369 . - . gene_id "YDR019C"; gene_biotype "protein_coding"; +chrIV SGD transcript 483848 485369 . - . transcript_id "YDR019C_id002"; gene_id "YDR019C"; gene_name "GCV1"; transcript_biotype "protein_coding"; +chrIV SGD exon 483848 485369 . - . transcript_id "YDR019C_id002"; gene_id "YDR019C"; gene_name "GCV1"; +chrIV SGD transcript 484163 485365 . - . transcript_id "YDR019C_id001"; gene_id "YDR019C"; gene_name "GCV1"; transcript_biotype "protein_coding"; +chrIV SGD exon 484163 485365 . - 0 transcript_id "YDR019C_id001"; gene_name "GCV1"; gene_id "YDR019C"; +chrIV SGD gene 485316 486573 . - . gene_id "YDR020C"; gene_biotype "protein_coding"; +chrIV SGD transcript 485316 486573 . - . transcript_id "YDR020C_id002"; gene_id "YDR020C"; gene_name "DAS2"; transcript_biotype "protein_coding"; +chrIV SGD exon 485316 486573 . - . transcript_id "YDR020C_id002"; gene_id "YDR020C"; gene_name "DAS2"; +chrIV SGD transcript 485746 486444 . - . transcript_id "YDR020C_id001"; gene_id "YDR020C"; gene_name "DAS2"; transcript_biotype "protein_coding"; +chrIV SGD exon 485746 486444 . - 0 transcript_id "YDR020C_id001"; gene_name "DAS2"; gene_id "YDR020C"; +chrIV SGD gene 486521 488056 . + . gene_id "YDR021W"; gene_biotype "protein_coding"; +chrIV SGD transcript 486521 488056 . + . transcript_id "YDR021W_id003"; gene_id "YDR021W"; gene_name "FAL1"; transcript_biotype "protein_coding"; +chrIV SGD exon 486521 488056 . + . transcript_id "YDR021W_id003"; gene_id "YDR021W"; gene_name "FAL1"; +chrIV SGD transcript 486804 488003 . + . transcript_id "YDR021W_id001"; gene_id "YDR021W"; gene_name "FAL1"; transcript_biotype "protein_coding"; +chrIV SGD exon 486804 488003 . + 0 transcript_id "YDR021W_id001"; gene_name "FAL1"; gene_id "YDR021W"; +chrIV SGD gene 487893 488690 . - . gene_id "YDR022C"; gene_biotype "protein_coding"; +chrIV SGD transcript 487893 488690 . - . transcript_id "YDR022C_id005"; gene_id "YDR022C"; gene_name "ATG31"; transcript_biotype "protein_coding"; +chrIV SGD exon 487893 488690 . - . transcript_id "YDR022C_id005"; gene_id "YDR022C"; gene_name "ATG31"; +chrIV SGD transcript 488072 488662 . - . transcript_id "YDR022C_id001"; gene_id "YDR022C"; gene_name "ATG31"; transcript_biotype "protein_coding"; +chrIV SGD exon 488072 488662 . - 0 transcript_id "YDR022C_id001"; gene_name "ATG31"; gene_id "YDR022C"; +chrIV SGD gene 488797 488870 . - . gene_id "YNCD0007C"; gene_biotype "ncRNA"; +chrIV SGD transcript 488797 488870 . - . transcript_id "YNCD0007C_tRNA"; gene_id "YNCD0007C"; transcript_biotype "ncRNA"; +chrIV SGD exon 488797 488870 . - . transcript_id "YNCD0007C_tRNA"; gene_id "YNCD0007C"; +chrIV SGD gene 489456 491069 . + . gene_id "YDR023W"; gene_biotype "protein_coding"; +chrIV SGD transcript 489456 491069 . + . transcript_id "YDR023W_id002"; gene_id "YDR023W"; gene_name "SES1"; transcript_biotype "protein_coding"; +chrIV SGD exon 489456 491069 . + . transcript_id "YDR023W_id002"; gene_id "YDR023W"; gene_name "SES1"; +chrIV SGD transcript 489508 490896 . + . transcript_id "YDR023W_id001"; gene_id "YDR023W"; gene_name "SES1"; transcript_biotype "protein_coding"; +chrIV SGD exon 489508 490896 . + 0 transcript_id "YDR023W_id001"; gene_name "SES1"; gene_id "YDR023W"; +chrIV SGD gene 491017 491502 . + . gene_id "YDR024W"; gene_biotype "protein_coding"; +chrIV SGD transcript 491017 491502 . + . transcript_id "YDR024W_mRNA"; gene_id "YDR024W"; gene_name "FYV1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 491017 491502 . + 0 transcript_id "YDR024W_mRNA"; gene_name "FYV1"; gene_id "YDR024W"; +chrIV SGD gene 491505 492631 . + . gene_id "YDR025W"; gene_biotype "protein_coding"; +chrIV SGD transcript 491505 492631 . + . transcript_id "YDR025W_id002"; gene_id "YDR025W"; gene_name "RPS11A"; transcript_biotype "protein_coding"; +chrIV SGD exon 491505 492631 . + . transcript_id "YDR025W_id002"; gene_id "YDR025W"; gene_name "RPS11A"; +chrIV SGD transcript 491515 492324 . + . transcript_id "YDR025W_id001"; gene_id "YDR025W"; gene_name "RPS11A"; transcript_biotype "protein_coding"; +chrIV SGD exon 491515 491559 . + 0 transcript_id "YDR025W_id001"; gene_name "RPS11A"; gene_id "YDR025W"; +chrIV SGD exon 491899 492324 . + 0 transcript_id "YDR025W_id001"; gene_name "RPS11A"; gene_id "YDR025W"; +chrIV SGD gene 492313 494402 . - . gene_id "YDR026C"; gene_biotype "protein_coding"; +chrIV SGD transcript 492313 494402 . - . transcript_id "YDR026C_id001"; gene_id "YDR026C"; gene_name "NSI1"; transcript_biotype "protein_coding"; +chrIV SGD exon 492313 494402 . - . transcript_id "YDR026C_id001"; gene_id "YDR026C"; gene_name "NSI1"; +chrIV SGD transcript 492556 494268 . - . transcript_id "YDR026C_id002"; gene_id "YDR026C"; gene_name "NSI1"; transcript_biotype "protein_coding"; +chrIV SGD exon 492556 494268 . - 0 transcript_id "YDR026C_id002"; gene_name "NSI1"; gene_id "YDR026C"; +chrIV SGD gene 494538 497430 . - . gene_id "YDR027C"; gene_biotype "protein_coding"; +chrIV SGD transcript 494538 497430 . - . transcript_id "YDR027C_id001"; gene_id "YDR027C"; gene_name "VPS54"; transcript_biotype "protein_coding"; +chrIV SGD exon 494538 497430 . - . transcript_id "YDR027C_id001"; gene_id "YDR027C"; gene_name "VPS54"; +chrIV SGD transcript 494649 497318 . - . transcript_id "YDR027C_id006"; gene_id "YDR027C"; gene_name "VPS54"; transcript_biotype "protein_coding"; +chrIV SGD exon 494649 497318 . - 0 transcript_id "YDR027C_id006"; gene_name "VPS54"; gene_id "YDR027C"; +chrIV SGD gene 497557 501331 . - . gene_id "YDR028C"; gene_biotype "protein_coding"; +chrIV SGD transcript 497557 501331 . - . transcript_id "YDR028C_id002"; gene_id "YDR028C"; gene_name "REG1"; transcript_biotype "protein_coding"; +chrIV SGD exon 497557 501331 . - . transcript_id "YDR028C_id002"; gene_id "YDR028C"; gene_name "REG1"; +chrIV SGD transcript 497835 500879 . - . transcript_id "YDR028C_id001"; gene_id "YDR028C"; gene_name "REG1"; transcript_biotype "protein_coding"; +chrIV SGD exon 497835 500879 . - 0 transcript_id "YDR028C_id001"; gene_name "REG1"; gene_id "YDR028C"; +chrIV SGD gene 501100 501414 . + . gene_id "YDR029W"; gene_biotype "protein_coding"; +chrIV SGD transcript 501100 501414 . + . transcript_id "YDR029W_mRNA"; gene_id "YDR029W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 501100 501414 . + 0 transcript_id "YDR029W_mRNA"; gene_id "YDR029W"; +chrIV SGD gene 501636 503325 . - . gene_id "YDR030C"; gene_biotype "protein_coding"; +chrIV SGD transcript 501636 503325 . - . transcript_id "YDR030C_id002"; gene_id "YDR030C"; gene_name "RAD28"; transcript_biotype "protein_coding"; +chrIV SGD exon 501636 503325 . - . transcript_id "YDR030C_id002"; gene_id "YDR030C"; gene_name "RAD28"; +chrIV SGD transcript 501753 503273 . - . transcript_id "YDR030C_id001"; gene_id "YDR030C"; gene_name "RAD28"; transcript_biotype "protein_coding"; +chrIV SGD exon 501753 503273 . - 0 transcript_id "YDR030C_id001"; gene_name "RAD28"; gene_id "YDR030C"; +chrIV SGD gene 503368 504011 . + . gene_id "YDR031W"; gene_biotype "protein_coding"; +chrIV SGD transcript 503368 504011 . + . transcript_id "YDR031W_id002"; gene_id "YDR031W"; gene_name "MIX14"; transcript_biotype "protein_coding"; +chrIV SGD exon 503368 504011 . + . transcript_id "YDR031W_id002"; gene_id "YDR031W"; gene_name "MIX14"; +chrIV SGD transcript 503498 503863 . + . transcript_id "YDR031W_id001"; gene_id "YDR031W"; gene_name "MIX14"; transcript_biotype "protein_coding"; +chrIV SGD exon 503498 503863 . + 0 transcript_id "YDR031W_id001"; gene_name "MIX14"; gene_id "YDR031W"; +chrIV SGD gene 503864 504808 . - . gene_id "YDR032C"; gene_biotype "protein_coding"; +chrIV SGD transcript 503864 504808 . - . transcript_id "YDR032C_id001"; gene_id "YDR032C"; gene_name "PST2"; transcript_biotype "protein_coding"; +chrIV SGD exon 503864 504808 . - . transcript_id "YDR032C_id001"; gene_id "YDR032C"; gene_name "PST2"; +chrIV SGD transcript 504099 504695 . - . transcript_id "YDR032C_id002"; gene_id "YDR032C"; gene_name "PST2"; transcript_biotype "protein_coding"; +chrIV SGD exon 504099 504695 . - 0 transcript_id "YDR032C_id002"; gene_name "PST2"; gene_id "YDR032C"; +chrIV SGD gene 507623 509590 . + . gene_id "YDR033W"; gene_biotype "protein_coding"; +chrIV SGD transcript 507623 509590 . + . transcript_id "YDR033W_id002"; gene_id "YDR033W"; gene_name "MRH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 507623 509590 . + . transcript_id "YDR033W_id002"; gene_id "YDR033W"; gene_name "MRH1"; +chrIV SGD transcript 508147 509109 . + . transcript_id "YDR033W_id001"; gene_id "YDR033W"; gene_name "MRH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 508147 509109 . + 0 transcript_id "YDR033W_id001"; gene_name "MRH1"; gene_id "YDR033W"; +chrIV SGD gene 509444 512261 . - . gene_id "YDR034C"; gene_biotype "protein_coding"; +chrIV SGD transcript 509444 512261 . - . transcript_id "YDR034C_id001"; gene_id "YDR034C"; gene_name "LYS14"; transcript_biotype "protein_coding"; +chrIV SGD exon 509444 512261 . - . transcript_id "YDR034C_id001"; gene_id "YDR034C"; gene_name "LYS14"; +chrIV SGD transcript 509737 512109 . - . transcript_id "YDR034C_id003"; gene_id "YDR034C"; gene_name "LYS14"; transcript_biotype "protein_coding"; +chrIV SGD exon 509737 512109 . - 0 transcript_id "YDR034C_id003"; gene_name "LYS14"; gene_id "YDR034C"; +chrIV SGD gene 514043 519356 . - . gene_id "YDR034C-D"; gene_biotype "protein_coding"; +chrIV SGD transcript 514043 519356 . - . transcript_id "YDR034C-D_dummy"; gene_id "YDR034C-D"; transcript_biotype "protein_coding"; +chrIV SGD exon 514043 518062 . - 0 transcript_id "YDR034C-D_dummy"; gene_id "YDR034C-D"; +chrIV SGD exon 518064 519356 . - 0 transcript_id "YDR034C-D_dummy"; gene_id "YDR034C-D"; +chrIV SGD gene 518040 519356 . - . gene_id "YDR034C-C"; gene_biotype "protein_coding"; +chrIV SGD transcript 518040 519356 . - . transcript_id "YDR034C-C_dummy"; gene_id "YDR034C-C"; transcript_biotype "protein_coding"; +chrIV SGD exon 518040 519356 . - 0 transcript_id "YDR034C-C_dummy"; gene_id "YDR034C-C"; +chrIV SGD gene 519743 519826 . + . gene_id "YNCD0008W"; gene_biotype "ncRNA"; +chrIV SGD transcript 519743 519826 . + . transcript_id "YNCD0008W_tRNA"; gene_id "YNCD0008W"; transcript_biotype "ncRNA"; +chrIV SGD exon 519743 519826 . + . transcript_id "YNCD0008W_tRNA"; gene_id "YNCD0008W"; +chrIV SGD gene 520516 520692 . - . gene_id "YDR034C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 520516 520692 . - . transcript_id "YDR034C-A_mRNA"; gene_id "YDR034C-A"; transcript_biotype "protein_coding"; +chrIV SGD CDS 520516 520692 . - 0 transcript_id "YDR034C-A_mRNA"; gene_id "YDR034C-A"; +chrIV SGD gene 520972 521043 . + . gene_id "YNCD0009W"; gene_biotype "ncRNA"; +chrIV SGD transcript 520972 521043 . + . transcript_id "YNCD0009W_tRNA"; gene_id "YNCD0009W"; transcript_biotype "ncRNA"; +chrIV SGD exon 520972 521043 . + . transcript_id "YNCD0009W_tRNA"; gene_id "YNCD0009W"; +chrIV SGD gene 521258 521754 . + . gene_id "YDR034W-B"; gene_biotype "protein_coding"; +chrIV SGD transcript 521258 521754 . + . transcript_id "YDR034W-B_id004"; gene_id "YDR034W-B"; transcript_biotype "protein_coding"; +chrIV SGD exon 521258 521754 . + . transcript_id "YDR034W-B_id004"; gene_id "YDR034W-B"; +chrIV SGD transcript 521314 521469 . + . transcript_id "YDR034W-B_id001"; gene_id "YDR034W-B"; transcript_biotype "protein_coding"; +chrIV SGD exon 521314 521469 . + 0 transcript_id "YDR034W-B_id001"; gene_id "YDR034W-B"; +chrIV SGD gene 521683 523158 . + . gene_id "YDR035W"; gene_biotype "protein_coding"; +chrIV SGD transcript 521683 523158 . + . transcript_id "YDR035W_id001"; gene_id "YDR035W"; gene_name "ARO3"; transcript_biotype "protein_coding"; +chrIV SGD exon 521683 523158 . + . transcript_id "YDR035W_id001"; gene_id "YDR035W"; gene_name "ARO3"; +chrIV SGD transcript 521816 522928 . + . transcript_id "YDR035W_id002"; gene_id "YDR035W"; gene_name "ARO3"; transcript_biotype "protein_coding"; +chrIV SGD exon 521816 522928 . + 0 transcript_id "YDR035W_id002"; gene_name "ARO3"; gene_id "YDR035W"; +chrIV SGD gene 523069 524786 . - . gene_id "YDR036C"; gene_biotype "protein_coding"; +chrIV SGD transcript 523069 524786 . - . transcript_id "YDR036C_id003"; gene_id "YDR036C"; gene_name "EHD3"; transcript_biotype "protein_coding"; +chrIV SGD exon 523069 524786 . - . transcript_id "YDR036C_id003"; gene_id "YDR036C"; gene_name "EHD3"; +chrIV SGD transcript 523211 524713 . - . transcript_id "YDR036C_id001"; gene_id "YDR036C"; gene_name "EHD3"; transcript_biotype "protein_coding"; +chrIV SGD exon 523211 524713 . - 0 transcript_id "YDR036C_id001"; gene_name "EHD3"; gene_id "YDR036C"; +chrIV SGD gene 525386 527442 . + . gene_id "YDR037W"; gene_biotype "protein_coding"; +chrIV SGD transcript 525386 527442 . + . transcript_id "YDR037W_id003"; gene_id "YDR037W"; gene_name "KRS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 525386 527442 . + . transcript_id "YDR037W_id003"; gene_id "YDR037W"; gene_name "KRS1"; +chrIV SGD transcript 525440 527215 . + . transcript_id "YDR037W_id001"; gene_id "YDR037W"; gene_name "KRS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 525440 527215 . + 0 transcript_id "YDR037W_id001"; gene_name "KRS1"; gene_id "YDR037W"; +chrIV SGD gene 527422 530697 . - . gene_id "YDR038C"; gene_biotype "protein_coding"; +chrIV SGD transcript 527422 530697 . - . transcript_id "YDR038C_mRNA"; gene_id "YDR038C"; gene_name "ENA5"; transcript_biotype "protein_coding"; +chrIV SGD CDS 527422 530697 . - 0 transcript_id "YDR038C_mRNA"; gene_name "ENA5"; gene_id "YDR038C"; +chrIV SGD gene 531307 534582 . - . gene_id "YDR039C"; gene_biotype "protein_coding"; +chrIV SGD transcript 531307 534582 . - . transcript_id "YDR039C_mRNA"; gene_id "YDR039C"; gene_name "ENA2"; transcript_biotype "protein_coding"; +chrIV SGD CDS 531307 534582 . - 0 transcript_id "YDR039C_mRNA"; gene_name "ENA2"; gene_id "YDR039C"; +chrIV SGD gene 535192 538467 . - . gene_id "YDR040C"; gene_biotype "protein_coding"; +chrIV SGD transcript 535192 538467 . - . transcript_id "YDR040C_mRNA"; gene_id "YDR040C"; gene_name "ENA1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 535192 538467 . - 0 transcript_id "YDR040C_mRNA"; gene_name "ENA1"; gene_id "YDR040C"; +chrIV SGD gene 539768 540700 . + . gene_id "YDR041W"; gene_biotype "protein_coding"; +chrIV SGD transcript 539768 540700 . + . transcript_id "YDR041W_id007"; gene_id "YDR041W"; gene_name "RSM10"; transcript_biotype "protein_coding"; +chrIV SGD exon 539768 540700 . + . transcript_id "YDR041W_id007"; gene_id "YDR041W"; gene_name "RSM10"; +chrIV SGD transcript 539803 540414 . + . transcript_id "YDR041W_id001"; gene_id "YDR041W"; gene_name "RSM10"; transcript_biotype "protein_coding"; +chrIV SGD exon 539803 540414 . + 0 transcript_id "YDR041W_id001"; gene_name "RSM10"; gene_id "YDR041W"; +chrIV SGD gene 540489 541700 . - . gene_id "YDR042C"; gene_biotype "protein_coding"; +chrIV SGD transcript 540489 541700 . - . transcript_id "YDR042C_id001"; gene_id "YDR042C"; transcript_biotype "protein_coding"; +chrIV SGD exon 540489 541700 . - . transcript_id "YDR042C_id001"; gene_id "YDR042C"; +chrIV SGD transcript 540601 541203 . - . transcript_id "YDR042C_id003"; gene_id "YDR042C"; transcript_biotype "protein_coding"; +chrIV SGD exon 540601 541203 . - 0 transcript_id "YDR042C_id003"; gene_id "YDR042C"; +chrIV SGD gene 541602 541700 . - . gene_id "YNCD0010C"; gene_biotype "ncRNA"; +chrIV SGD transcript 541602 541700 . - . transcript_id "YNCD0010C_snoRNA"; gene_id "YNCD0010C"; gene_name "SNR47"; transcript_biotype "ncRNA"; +chrIV SGD exon 541602 541700 . - . transcript_id "YNCD0010C_snoRNA"; gene_name "SNR47"; gene_id "YNCD0010C"; +chrIV SGD gene 542674 543369 . - . gene_id "YDR043C"; gene_biotype "protein_coding"; +chrIV SGD transcript 542674 543369 . - . transcript_id "YDR043C_id001"; gene_id "YDR043C"; gene_name "NRG1"; transcript_biotype "protein_coding"; +chrIV SGD exon 542674 543369 . - 0 transcript_id "YDR043C_id001"; gene_name "NRG1"; gene_id "YDR043C"; +chrIV SGD gene 546390 547775 . + . gene_id "YDR044W"; gene_biotype "protein_coding"; +chrIV SGD transcript 546390 547775 . + . transcript_id "YDR044W_id001"; gene_id "YDR044W"; gene_name "HEM13"; transcript_biotype "protein_coding"; +chrIV SGD exon 546390 547775 . + . transcript_id "YDR044W_id001"; gene_id "YDR044W"; gene_name "HEM13"; +chrIV SGD transcript 546642 547628 . + . transcript_id "YDR044W_id002"; gene_id "YDR044W"; gene_name "HEM13"; transcript_biotype "protein_coding"; +chrIV SGD exon 546642 547628 . + 0 transcript_id "YDR044W_id002"; gene_name "HEM13"; gene_id "YDR044W"; +chrIV SGD gene 547661 548469 . - . gene_id "YDR045C"; gene_biotype "protein_coding"; +chrIV SGD transcript 547661 548469 . - . transcript_id "YDR045C_id002"; gene_id "YDR045C"; gene_name "RPC11"; transcript_biotype "protein_coding"; +chrIV SGD exon 547661 548469 . - . transcript_id "YDR045C_id002"; gene_id "YDR045C"; gene_name "RPC11"; +chrIV SGD transcript 547978 548310 . - . transcript_id "YDR045C_id001"; gene_id "YDR045C"; gene_name "RPC11"; transcript_biotype "protein_coding"; +chrIV SGD exon 547978 548310 . - 0 transcript_id "YDR045C_id001"; gene_name "RPC11"; gene_id "YDR045C"; +chrIV SGD gene 548598 550666 . - . gene_id "YDR046C"; gene_biotype "protein_coding"; +chrIV SGD transcript 548598 550666 . - . transcript_id "YDR046C_id001"; gene_id "YDR046C"; gene_name "BAP3"; transcript_biotype "protein_coding"; +chrIV SGD exon 548598 550666 . - . transcript_id "YDR046C_id001"; gene_id "YDR046C"; gene_name "BAP3"; +chrIV SGD transcript 548762 550576 . - . transcript_id "YDR046C_id002"; gene_id "YDR046C"; gene_name "BAP3"; transcript_biotype "protein_coding"; +chrIV SGD exon 548762 550576 . - 0 transcript_id "YDR046C_id002"; gene_name "BAP3"; gene_id "YDR046C"; +chrIV SGD gene 551391 553100 . + . gene_id "YDR047W"; gene_biotype "protein_coding"; +chrIV SGD transcript 551391 553100 . + . transcript_id "YDR047W_id001"; gene_id "YDR047W"; gene_name "HEM12"; transcript_biotype "protein_coding"; +chrIV SGD exon 551391 553100 . + . transcript_id "YDR047W_id001"; gene_id "YDR047W"; gene_name "HEM12"; +chrIV SGD transcript 551860 552948 . + . transcript_id "YDR047W_id002"; gene_id "YDR047W"; gene_name "HEM12"; transcript_biotype "protein_coding"; +chrIV SGD exon 551860 552948 . + 0 transcript_id "YDR047W_id002"; gene_name "HEM12"; gene_id "YDR047W"; +chrIV SGD gene 553084 553398 . - . gene_id "YDR048C"; gene_biotype "protein_coding"; +chrIV SGD transcript 553084 553398 . - . transcript_id "YDR048C_id001"; gene_id "YDR048C"; transcript_biotype "protein_coding"; +chrIV SGD exon 553084 553398 . - 0 transcript_id "YDR048C_id001"; gene_id "YDR048C"; +chrIV SGD gene 553162 555269 . + . gene_id "YDR049W"; gene_biotype "protein_coding"; +chrIV SGD transcript 553162 555269 . + . transcript_id "YDR049W_id001"; gene_id "YDR049W"; gene_name "VMS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 553162 555269 . + . transcript_id "YDR049W_id001"; gene_id "YDR049W"; gene_name "VMS1"; +chrIV SGD transcript 553254 555152 . + . transcript_id "YDR049W_id003"; gene_id "YDR049W"; gene_name "VMS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 553254 555152 . + 0 transcript_id "YDR049W_id003"; gene_name "VMS1"; gene_id "YDR049W"; +chrIV SGD gene 555407 556502 . - . gene_id "YDR050C"; gene_biotype "protein_coding"; +chrIV SGD transcript 555407 556502 . - . transcript_id "YDR050C_id002"; gene_id "YDR050C"; gene_name "TPI1"; transcript_biotype "protein_coding"; +chrIV SGD exon 555407 556502 . - . transcript_id "YDR050C_id002"; gene_id "YDR050C"; gene_name "TPI1"; +chrIV SGD transcript 555726 556472 . - . transcript_id "YDR050C_id001"; gene_id "YDR050C"; gene_name "TPI1"; transcript_biotype "protein_coding"; +chrIV SGD exon 555726 556472 . - 0 transcript_id "YDR050C_id001"; gene_name "TPI1"; gene_id "YDR050C"; +chrIV SGD gene 556950 558101 . - . gene_id "YDR051C"; gene_biotype "protein_coding"; +chrIV SGD transcript 556950 558101 . - . transcript_id "YDR051C_id001"; gene_id "YDR051C"; gene_name "DET1"; transcript_biotype "protein_coding"; +chrIV SGD exon 556950 558101 . - . transcript_id "YDR051C_id001"; gene_id "YDR051C"; gene_name "DET1"; +chrIV SGD transcript 557056 558060 . - . transcript_id "YDR051C_id002"; gene_id "YDR051C"; gene_name "DET1"; transcript_biotype "protein_coding"; +chrIV SGD exon 557056 558060 . - 0 transcript_id "YDR051C_id002"; gene_name "DET1"; gene_id "YDR051C"; +chrIV SGD gene 558511 560625 . - . gene_id "YDR052C"; gene_biotype "protein_coding"; +chrIV SGD transcript 558511 560625 . - . transcript_id "YDR052C_id001"; gene_id "YDR052C"; gene_name "DBF4"; transcript_biotype "protein_coding"; +chrIV SGD exon 558511 560625 . - 0 transcript_id "YDR052C_id001"; gene_name "DBF4"; gene_id "YDR052C"; +chrIV SGD gene 560249 560644 . + . gene_id "YDR053W"; gene_biotype "protein_coding"; +chrIV SGD transcript 560249 560644 . + . transcript_id "YDR053W_mRNA"; gene_id "YDR053W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 560249 560644 . + 0 transcript_id "YDR053W_mRNA"; gene_id "YDR053W"; +chrIV SGD gene 560953 562516 . - . gene_id "YDR054C"; gene_biotype "protein_coding"; +chrIV SGD transcript 560953 562516 . - . transcript_id "YDR054C_id001"; gene_id "YDR054C"; gene_name "CDC34"; transcript_biotype "protein_coding"; +chrIV SGD exon 560953 562516 . - . transcript_id "YDR054C_id001"; gene_id "YDR054C"; gene_name "CDC34"; +chrIV SGD transcript 561440 562327 . - . transcript_id "YDR054C_id002"; gene_id "YDR054C"; gene_name "CDC34"; transcript_biotype "protein_coding"; +chrIV SGD exon 561440 562327 . - 0 transcript_id "YDR054C_id002"; gene_name "CDC34"; gene_id "YDR054C"; +chrIV SGD gene 563233 565020 . + . gene_id "YDR055W"; gene_biotype "protein_coding"; +chrIV SGD transcript 563233 565020 . + . transcript_id "YDR055W_id002"; gene_id "YDR055W"; gene_name "PST1"; transcript_biotype "protein_coding"; +chrIV SGD exon 563233 565020 . + . transcript_id "YDR055W_id002"; gene_id "YDR055W"; gene_name "PST1"; +chrIV SGD transcript 563527 564861 . + . transcript_id "YDR055W_id001"; gene_id "YDR055W"; gene_name "PST1"; transcript_biotype "protein_coding"; +chrIV SGD exon 563527 564861 . + 0 transcript_id "YDR055W_id001"; gene_name "PST1"; gene_id "YDR055W"; +chrIV SGD gene 564860 565752 . - . gene_id "YDR056C"; gene_biotype "protein_coding"; +chrIV SGD transcript 564860 565752 . - . transcript_id "YDR056C_id003"; gene_id "YDR056C"; gene_name "EMC10"; transcript_biotype "protein_coding"; +chrIV SGD exon 564860 565752 . - . transcript_id "YDR056C_id003"; gene_id "YDR056C"; gene_name "EMC10"; +chrIV SGD transcript 565023 565640 . - . transcript_id "YDR056C_id001"; gene_id "YDR056C"; gene_name "EMC10"; transcript_biotype "protein_coding"; +chrIV SGD exon 565023 565640 . - 0 transcript_id "YDR056C_id001"; gene_name "EMC10"; gene_id "YDR056C"; +chrIV SGD gene 565863 567709 . + . gene_id "YDR057W"; gene_biotype "protein_coding"; +chrIV SGD transcript 565863 567709 . + . transcript_id "YDR057W_id001"; gene_id "YDR057W"; gene_name "YOS9"; transcript_biotype "protein_coding"; +chrIV SGD exon 565863 567709 . + . transcript_id "YDR057W_id001"; gene_id "YDR057W"; gene_name "YOS9"; +chrIV SGD transcript 565927 567555 . + . transcript_id "YDR057W_id004"; gene_id "YDR057W"; gene_name "YOS9"; transcript_biotype "protein_coding"; +chrIV SGD exon 565927 567555 . + 0 transcript_id "YDR057W_id004"; gene_name "YOS9"; gene_id "YDR057W"; +chrIV SGD gene 567544 568778 . - . gene_id "YDR058C"; gene_biotype "protein_coding"; +chrIV SGD transcript 567544 568778 . - . transcript_id "YDR058C_id001"; gene_id "YDR058C"; gene_name "TGL2"; transcript_biotype "protein_coding"; +chrIV SGD exon 567544 568778 . - . transcript_id "YDR058C_id001"; gene_id "YDR058C"; gene_name "TGL2"; +chrIV SGD transcript 567723 568703 . - . transcript_id "YDR058C_id005"; gene_id "YDR058C"; gene_name "TGL2"; transcript_biotype "protein_coding"; +chrIV SGD exon 567723 568703 . - 0 transcript_id "YDR058C_id005"; gene_name "TGL2"; gene_id "YDR058C"; +chrIV SGD gene 568882 568953 . + . gene_id "YNCD0011W"; gene_biotype "ncRNA"; +chrIV SGD transcript 568882 568953 . + . transcript_id "YNCD0011W_tRNA"; gene_id "YNCD0011W"; transcript_biotype "ncRNA"; +chrIV SGD exon 568882 568953 . + . transcript_id "YNCD0011W_tRNA"; gene_id "YNCD0011W"; +chrIV SGD gene 568964 569035 . + . gene_id "YNCD0012W"; gene_biotype "ncRNA"; +chrIV SGD transcript 568964 569035 . + . transcript_id "YNCD0012W_tRNA"; gene_id "YNCD0012W"; transcript_biotype "ncRNA"; +chrIV SGD exon 568964 569035 . + . transcript_id "YNCD0012W_tRNA"; gene_id "YNCD0012W"; +chrIV SGD gene 569103 570333 . - . gene_id "YDR059C"; gene_biotype "protein_coding"; +chrIV SGD transcript 569103 570333 . - . transcript_id "YDR059C_id001"; gene_id "YDR059C"; gene_name "UBC5"; transcript_biotype "protein_coding"; +chrIV SGD exon 569103 570333 . - . transcript_id "YDR059C_id001"; gene_id "YDR059C"; gene_name "UBC5"; +chrIV SGD transcript 569234 569770 . - . transcript_id "YDR059C_id003"; gene_id "YDR059C"; gene_name "UBC5"; transcript_biotype "protein_coding"; +chrIV SGD exon 569234 569633 . - 1 transcript_id "YDR059C_id003"; gene_name "UBC5"; gene_id "YDR059C"; +chrIV SGD exon 569724 569770 . - 0 transcript_id "YDR059C_id003"; gene_name "UBC5"; gene_id "YDR059C"; +chrIV SGD gene 570599 573814 . + . gene_id "YDR060W"; gene_biotype "protein_coding"; +chrIV SGD transcript 570599 573814 . + . transcript_id "YDR060W_id004"; gene_id "YDR060W"; gene_name "MAK21"; transcript_biotype "protein_coding"; +chrIV SGD exon 570599 573814 . + . transcript_id "YDR060W_id004"; gene_id "YDR060W"; gene_name "MAK21"; +chrIV SGD transcript 570649 573726 . + . transcript_id "YDR060W_id001"; gene_id "YDR060W"; gene_name "MAK21"; transcript_biotype "protein_coding"; +chrIV SGD exon 570649 573726 . + 0 transcript_id "YDR060W_id001"; gene_name "MAK21"; gene_id "YDR060W"; +chrIV SGD gene 574109 575913 . + . gene_id "YDR061W"; gene_biotype "protein_coding"; +chrIV SGD transcript 574109 575913 . + . transcript_id "YDR061W_id008"; gene_id "YDR061W"; transcript_biotype "protein_coding"; +chrIV SGD exon 574109 575913 . + . transcript_id "YDR061W_id008"; gene_id "YDR061W"; +chrIV SGD transcript 574164 575783 . + . transcript_id "YDR061W_id001"; gene_id "YDR061W"; transcript_biotype "protein_coding"; +chrIV SGD exon 574164 575783 . + 0 transcript_id "YDR061W_id001"; gene_id "YDR061W"; +chrIV SGD gene 576079 578446 . + . gene_id "YDR062W"; gene_biotype "protein_coding"; +chrIV SGD transcript 576079 578446 . + . transcript_id "YDR062W_id005"; gene_id "YDR062W"; gene_name "LCB2"; transcript_biotype "protein_coding"; +chrIV SGD exon 576079 578446 . + . transcript_id "YDR062W_id005"; gene_id "YDR062W"; gene_name "LCB2"; +chrIV SGD transcript 576474 578159 . + . transcript_id "YDR062W_id001"; gene_id "YDR062W"; gene_name "LCB2"; transcript_biotype "protein_coding"; +chrIV SGD exon 576474 578159 . + 0 transcript_id "YDR062W_id001"; gene_name "LCB2"; gene_id "YDR062W"; +chrIV SGD gene 577519 579184 . + . gene_id "YDR063W"; gene_biotype "protein_coding"; +chrIV SGD transcript 577519 579184 . + . transcript_id "YDR063W_id001"; gene_id "YDR063W"; gene_name "AIM7"; transcript_biotype "protein_coding"; +chrIV SGD exon 577519 579184 . + . transcript_id "YDR063W_id001"; gene_id "YDR063W"; gene_name "AIM7"; +chrIV SGD transcript 578663 579112 . + . transcript_id "YDR063W_id002"; gene_id "YDR063W"; gene_name "AIM7"; transcript_biotype "protein_coding"; +chrIV SGD exon 578663 579112 . + 0 transcript_id "YDR063W_id002"; gene_name "AIM7"; gene_id "YDR063W"; +chrIV SGD gene 579437 580711 . + . gene_id "YDR064W"; gene_biotype "protein_coding"; +chrIV SGD transcript 579437 580711 . + . transcript_id "YDR064W_id003"; gene_id "YDR064W"; gene_name "RPS13"; transcript_biotype "protein_coding"; +chrIV SGD exon 579437 580711 . + . transcript_id "YDR064W_id003"; gene_id "YDR064W"; gene_name "RPS13"; +chrIV SGD transcript 579458 580452 . + . transcript_id "YDR064W_id001"; gene_id "YDR064W"; gene_name "RPS13"; transcript_biotype "protein_coding"; +chrIV SGD exon 579458 579478 . + 0 transcript_id "YDR064W_id001"; gene_name "RPS13"; gene_id "YDR064W"; +chrIV SGD exon 580018 580452 . + 0 transcript_id "YDR064W_id001"; gene_name "RPS13"; gene_id "YDR064W"; +chrIV SGD gene 580536 583664 . + . gene_id "YDR065W"; gene_biotype "protein_coding"; +chrIV SGD transcript 580536 583664 . + . transcript_id "YDR065W_id001"; gene_id "YDR065W"; gene_name "RRG1"; transcript_biotype "protein_coding"; +chrIV SGD exon 580536 583664 . + . transcript_id "YDR065W_id001"; gene_id "YDR065W"; gene_name "RRG1"; +chrIV SGD transcript 580687 581784 . + . transcript_id "YDR065W_id002"; gene_id "YDR065W"; gene_name "RRG1"; transcript_biotype "protein_coding"; +chrIV SGD exon 580687 581784 . + 0 transcript_id "YDR065W_id002"; gene_name "RRG1"; gene_id "YDR065W"; +chrIV SGD gene 581804 582753 . - . gene_id "YDR066C"; gene_biotype "protein_coding"; +chrIV SGD transcript 581804 582753 . - . transcript_id "YDR066C_id004"; gene_id "YDR066C"; gene_name "RTR2"; transcript_biotype "protein_coding"; +chrIV SGD exon 581804 582753 . - . transcript_id "YDR066C_id004"; gene_id "YDR066C"; gene_name "RTR2"; +chrIV SGD transcript 581908 582498 . - . transcript_id "YDR066C_id001"; gene_id "YDR066C"; gene_name "RTR2"; transcript_biotype "protein_coding"; +chrIV SGD exon 581908 582498 . - 0 transcript_id "YDR066C_id001"; gene_name "RTR2"; gene_id "YDR066C"; +chrIV SGD gene 582693 583534 . - . gene_id "YDR067C"; gene_biotype "protein_coding"; +chrIV SGD transcript 582693 583534 . - . transcript_id "YDR067C_id008"; gene_id "YDR067C"; gene_name "OCA6"; transcript_biotype "protein_coding"; +chrIV SGD exon 582693 583534 . - . transcript_id "YDR067C_id008"; gene_id "YDR067C"; gene_name "OCA6"; +chrIV SGD transcript 582791 583465 . - . transcript_id "YDR067C_id001"; gene_id "YDR067C"; gene_name "OCA6"; transcript_biotype "protein_coding"; +chrIV SGD exon 582791 583465 . - 0 transcript_id "YDR067C_id001"; gene_name "OCA6"; gene_id "YDR067C"; +chrIV SGD gene 583667 584842 . + . gene_id "YDR068W"; gene_biotype "protein_coding"; +chrIV SGD transcript 583667 584842 . + . transcript_id "YDR068W_id001"; gene_id "YDR068W"; gene_name "DOS2"; transcript_biotype "protein_coding"; +chrIV SGD exon 583667 584842 . + . transcript_id "YDR068W_id001"; gene_id "YDR068W"; gene_name "DOS2"; +chrIV SGD transcript 583713 584645 . + . transcript_id "YDR068W_id003"; gene_id "YDR068W"; gene_name "DOS2"; transcript_biotype "protein_coding"; +chrIV SGD exon 583713 584645 . + 0 transcript_id "YDR068W_id003"; gene_name "DOS2"; gene_id "YDR068W"; +chrIV SGD gene 584939 587719 . - . gene_id "YDR069C"; gene_biotype "protein_coding"; +chrIV SGD transcript 584939 587719 . - . transcript_id "YDR069C_id001"; gene_id "YDR069C"; gene_name "DOA4"; transcript_biotype "protein_coding"; +chrIV SGD exon 584939 587719 . - 0 transcript_id "YDR069C_id001"; gene_name "DOA4"; gene_id "YDR069C"; +chrIV SGD gene 587943 588557 . - . gene_id "YDR070C"; gene_biotype "protein_coding"; +chrIV SGD transcript 587943 588557 . - . transcript_id "YDR070C_id002"; gene_id "YDR070C"; gene_name "FMP16"; transcript_biotype "protein_coding"; +chrIV SGD exon 587943 588557 . - . transcript_id "YDR070C_id002"; gene_id "YDR070C"; gene_name "FMP16"; +chrIV SGD transcript 588098 588379 . - . transcript_id "YDR070C_id001"; gene_id "YDR070C"; gene_name "FMP16"; transcript_biotype "protein_coding"; +chrIV SGD exon 588098 588379 . - 0 transcript_id "YDR070C_id001"; gene_name "FMP16"; gene_id "YDR070C"; +chrIV SGD gene 588716 589544 . - . gene_id "YDR071C"; gene_biotype "protein_coding"; +chrIV SGD transcript 588716 589544 . - . transcript_id "YDR071C_id001"; gene_id "YDR071C"; gene_name "PAA1"; transcript_biotype "protein_coding"; +chrIV SGD exon 588716 589544 . - . transcript_id "YDR071C_id001"; gene_id "YDR071C"; gene_name "PAA1"; +chrIV SGD transcript 588827 589402 . - . transcript_id "YDR071C_id003"; gene_id "YDR071C"; gene_name "PAA1"; transcript_biotype "protein_coding"; +chrIV SGD exon 588827 589402 . - 0 transcript_id "YDR071C_id003"; gene_name "PAA1"; gene_id "YDR071C"; +chrIV SGD gene 589667 591576 . - . gene_id "YDR072C"; gene_biotype "protein_coding"; +chrIV SGD transcript 589667 591576 . - . transcript_id "YDR072C_id001"; gene_id "YDR072C"; gene_name "IPT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 589667 591576 . - . transcript_id "YDR072C_id001"; gene_id "YDR072C"; gene_name "IPT1"; +chrIV SGD transcript 589761 591344 . - . transcript_id "YDR072C_id002"; gene_id "YDR072C"; gene_name "IPT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 589761 591344 . - 0 transcript_id "YDR072C_id002"; gene_name "IPT1"; gene_id "YDR072C"; +chrIV SGD gene 592157 593202 . + . gene_id "YDR073W"; gene_biotype "protein_coding"; +chrIV SGD transcript 592157 593202 . + . transcript_id "YDR073W_id006"; gene_id "YDR073W"; gene_name "SNF11"; transcript_biotype "protein_coding"; +chrIV SGD exon 592157 593202 . + . transcript_id "YDR073W_id006"; gene_id "YDR073W"; gene_name "SNF11"; +chrIV SGD transcript 592439 592948 . + . transcript_id "YDR073W_id001"; gene_id "YDR073W"; gene_name "SNF11"; transcript_biotype "protein_coding"; +chrIV SGD exon 592439 592948 . + 0 transcript_id "YDR073W_id001"; gene_name "SNF11"; gene_id "YDR073W"; +chrIV SGD gene 593799 596820 . + . gene_id "YDR074W"; gene_biotype "protein_coding"; +chrIV SGD transcript 593799 596820 . + . transcript_id "YDR074W_id005"; gene_id "YDR074W"; gene_name "TPS2"; transcript_biotype "protein_coding"; +chrIV SGD exon 593799 596820 . + . transcript_id "YDR074W_id005"; gene_id "YDR074W"; gene_name "TPS2"; +chrIV SGD transcript 593893 596583 . + . transcript_id "YDR074W_id001"; gene_id "YDR074W"; gene_name "TPS2"; transcript_biotype "protein_coding"; +chrIV SGD exon 593893 596583 . + 0 transcript_id "YDR074W_id001"; gene_name "TPS2"; gene_id "YDR074W"; +chrIV SGD gene 596968 598241 . + . gene_id "YDR075W"; gene_biotype "protein_coding"; +chrIV SGD transcript 596968 598241 . + . transcript_id "YDR075W_id003"; gene_id "YDR075W"; gene_name "PPH3"; transcript_biotype "protein_coding"; +chrIV SGD exon 596968 598241 . + . transcript_id "YDR075W_id003"; gene_id "YDR075W"; gene_name "PPH3"; +chrIV SGD transcript 597156 598082 . + . transcript_id "YDR075W_id001"; gene_id "YDR075W"; gene_name "PPH3"; transcript_biotype "protein_coding"; +chrIV SGD exon 597156 598082 . + 0 transcript_id "YDR075W_id001"; gene_name "PPH3"; gene_id "YDR075W"; +chrIV SGD gene 598468 599688 . + . gene_id "YDR076W"; gene_biotype "protein_coding"; +chrIV SGD transcript 598468 599688 . + . transcript_id "YDR076W_id001"; gene_id "YDR076W"; gene_name "RAD55"; transcript_biotype "protein_coding"; +chrIV SGD exon 598468 599688 . + 0 transcript_id "YDR076W_id001"; gene_name "RAD55"; gene_id "YDR076W"; +chrIV SGD gene 599410 602118 . + . gene_id "YDR077W"; gene_biotype "protein_coding"; +chrIV SGD transcript 599410 602118 . + . transcript_id "YDR077W_id001"; gene_id "YDR077W"; gene_name "SED1"; transcript_biotype "protein_coding"; +chrIV SGD exon 599410 602118 . + . transcript_id "YDR077W_id001"; gene_id "YDR077W"; gene_name "SED1"; +chrIV SGD transcript 600793 601809 . + . transcript_id "YDR077W_id002"; gene_id "YDR077W"; gene_name "SED1"; transcript_biotype "protein_coding"; +chrIV SGD exon 600793 601809 . + 0 transcript_id "YDR077W_id002"; gene_name "SED1"; gene_id "YDR077W"; +chrIV SGD gene 602009 602900 . - . gene_id "YDR078C"; gene_biotype "protein_coding"; +chrIV SGD transcript 602009 602900 . - . transcript_id "YDR078C_id002"; gene_id "YDR078C"; gene_name "SHU2"; transcript_biotype "protein_coding"; +chrIV SGD exon 602009 602900 . - . transcript_id "YDR078C_id002"; gene_id "YDR078C"; gene_name "SHU2"; +chrIV SGD transcript 602198 602869 . - . transcript_id "YDR078C_id001"; gene_id "YDR078C"; gene_name "SHU2"; transcript_biotype "protein_coding"; +chrIV SGD exon 602198 602869 . - 0 transcript_id "YDR078C_id001"; gene_name "SHU2"; gene_id "YDR078C"; +chrIV SGD gene 603033 603703 . + . gene_id "YDR079W"; gene_biotype "protein_coding"; +chrIV SGD transcript 603033 603703 . + . transcript_id "YDR079W_id002"; gene_id "YDR079W"; gene_name "PET100"; transcript_biotype "protein_coding"; +chrIV SGD exon 603033 603703 . + . transcript_id "YDR079W_id002"; gene_id "YDR079W"; gene_name "PET100"; +chrIV SGD transcript 603064 603399 . + . transcript_id "YDR079W_id001"; gene_id "YDR079W"; gene_name "PET100"; transcript_biotype "protein_coding"; +chrIV SGD exon 603064 603399 . + 0 transcript_id "YDR079W_id001"; gene_name "PET100"; gene_id "YDR079W"; +chrIV SGD gene 603381 603975 . - . gene_id "YDR079C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 603381 603975 . - . transcript_id "YDR079C-A_id001"; gene_id "YDR079C-A"; gene_name "TFB5"; transcript_biotype "protein_coding"; +chrIV SGD exon 603381 603975 . - . transcript_id "YDR079C-A_id001"; gene_id "YDR079C-A"; gene_name "TFB5"; +chrIV SGD transcript 603593 603811 . - . transcript_id "YDR079C-A_id002"; gene_id "YDR079C-A"; gene_name "TFB5"; transcript_biotype "protein_coding"; +chrIV SGD exon 603593 603811 . - 0 transcript_id "YDR079C-A_id002"; gene_name "TFB5"; gene_id "YDR079C-A"; +chrIV SGD gene 604008 606986 . + . gene_id "YDR080W"; gene_biotype "protein_coding"; +chrIV SGD transcript 604008 606986 . + . transcript_id "YDR080W_id001"; gene_id "YDR080W"; gene_name "VPS41"; transcript_biotype "protein_coding"; +chrIV SGD exon 604008 606986 . + 0 transcript_id "YDR080W_id001"; gene_name "VPS41"; gene_id "YDR080W"; +chrIV SGD gene 607276 610168 . - . gene_id "YDR081C"; gene_biotype "protein_coding"; +chrIV SGD transcript 607276 610168 . - . transcript_id "YDR081C_id002"; gene_id "YDR081C"; gene_name "PDC2"; transcript_biotype "protein_coding"; +chrIV SGD exon 607276 610168 . - . transcript_id "YDR081C_id002"; gene_id "YDR081C"; gene_name "PDC2"; +chrIV SGD transcript 607304 610081 . - . transcript_id "YDR081C_id001"; gene_id "YDR081C"; gene_name "PDC2"; transcript_biotype "protein_coding"; +chrIV SGD exon 607304 610081 . - 0 transcript_id "YDR081C_id001"; gene_name "PDC2"; gene_id "YDR081C"; +chrIV SGD gene 610325 612063 . + . gene_id "YDR082W"; gene_biotype "protein_coding"; +chrIV SGD transcript 610325 612063 . + . transcript_id "YDR082W_id004"; gene_id "YDR082W"; gene_name "STN1"; transcript_biotype "protein_coding"; +chrIV SGD exon 610325 612063 . + . transcript_id "YDR082W_id004"; gene_id "YDR082W"; gene_name "STN1"; +chrIV SGD transcript 610441 611925 . + . transcript_id "YDR082W_id001"; gene_id "YDR082W"; gene_name "STN1"; transcript_biotype "protein_coding"; +chrIV SGD exon 610441 611925 . + 0 transcript_id "YDR082W_id001"; gene_name "STN1"; gene_id "YDR082W"; +chrIV SGD gene 611994 614030 . - . gene_id "YDR084C"; gene_biotype "protein_coding"; +chrIV SGD transcript 611994 614030 . - . transcript_id "YDR084C_id001"; gene_id "YDR084C"; gene_name "TVP23"; transcript_biotype "protein_coding"; +chrIV SGD exon 611994 614030 . - . transcript_id "YDR084C_id001"; gene_id "YDR084C"; gene_name "TVP23"; +chrIV SGD gene 612051 613373 . + . gene_id "YDR083W"; gene_biotype "protein_coding"; +chrIV SGD transcript 612051 613373 . + . transcript_id "YDR083W_id005"; gene_id "YDR083W"; gene_name "RRP8"; transcript_biotype "protein_coding"; +chrIV SGD exon 612051 613373 . + . transcript_id "YDR083W_id005"; gene_id "YDR083W"; gene_name "RRP8"; +chrIV SGD transcript 612073 613251 . + . transcript_id "YDR083W_id001"; gene_id "YDR083W"; gene_name "RRP8"; transcript_biotype "protein_coding"; +chrIV SGD exon 612073 613251 . + 0 transcript_id "YDR083W_id001"; gene_name "RRP8"; gene_id "YDR083W"; +chrIV SGD transcript 613405 614004 . - . transcript_id "YDR084C_id002"; gene_id "YDR084C"; gene_name "TVP23"; transcript_biotype "protein_coding"; +chrIV SGD exon 613405 614004 . - 0 transcript_id "YDR084C_id002"; gene_name "TVP23"; gene_id "YDR084C"; +chrIV SGD gene 614288 616150 . - . gene_id "YDR085C"; gene_biotype "protein_coding"; +chrIV SGD transcript 614288 616150 . - . transcript_id "YDR085C_id001"; gene_id "YDR085C"; gene_name "AFR1"; transcript_biotype "protein_coding"; +chrIV SGD exon 614288 616150 . - 0 transcript_id "YDR085C_id001"; gene_name "AFR1"; gene_id "YDR085C"; +chrIV SGD gene 616213 617212 . - . gene_id "YDR086C"; gene_biotype "protein_coding"; +chrIV SGD transcript 616213 617212 . - . transcript_id "YDR086C_id001"; gene_id "YDR086C"; gene_name "SSS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 616213 617212 . - . transcript_id "YDR086C_id001"; gene_id "YDR086C"; gene_name "SSS1"; +chrIV SGD transcript 616928 617170 . - . transcript_id "YDR086C_id002"; gene_id "YDR086C"; gene_name "SSS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 616928 617170 . - 0 transcript_id "YDR086C_id002"; gene_name "SSS1"; gene_id "YDR086C"; +chrIV SGD gene 617317 618371 . - . gene_id "YDR087C"; gene_biotype "protein_coding"; +chrIV SGD transcript 617317 618371 . - . transcript_id "YDR087C_id001"; gene_id "YDR087C"; gene_name "RRP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 617317 618371 . - . transcript_id "YDR087C_id001"; gene_id "YDR087C"; gene_name "RRP1"; +chrIV SGD transcript 617470 618306 . - . transcript_id "YDR087C_id002"; gene_id "YDR087C"; gene_name "RRP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 617470 618306 . - 0 transcript_id "YDR087C_id002"; gene_name "RRP1"; gene_id "YDR087C"; +chrIV SGD gene 618308 619828 . - . gene_id "YDR088C"; gene_biotype "protein_coding"; +chrIV SGD transcript 618308 619828 . - . transcript_id "YDR088C_id007"; gene_id "YDR088C"; gene_name "SLU7"; transcript_biotype "protein_coding"; +chrIV SGD exon 618308 619828 . - . transcript_id "YDR088C_id007"; gene_id "YDR088C"; gene_name "SLU7"; +chrIV SGD transcript 618497 619645 . - . transcript_id "YDR088C_id001"; gene_id "YDR088C"; gene_name "SLU7"; transcript_biotype "protein_coding"; +chrIV SGD exon 618497 619645 . - 0 transcript_id "YDR088C_id001"; gene_name "SLU7"; gene_id "YDR088C"; +chrIV SGD gene 619969 620041 . - . gene_id "YNCD0013C"; gene_biotype "ncRNA"; +chrIV SGD transcript 619969 620041 . - . transcript_id "YNCD0013C_tRNA"; gene_id "YNCD0013C"; transcript_biotype "ncRNA"; +chrIV SGD exon 619969 620041 . - . transcript_id "YNCD0013C_tRNA"; gene_id "YNCD0013C"; +chrIV SGD gene 622112 624721 . + . gene_id "YDR089W"; gene_biotype "protein_coding"; +chrIV SGD transcript 622112 624721 . + . transcript_id "YDR089W_id001"; gene_id "YDR089W"; gene_name "VTC5"; transcript_biotype "protein_coding"; +chrIV SGD exon 622112 624721 . + 0 transcript_id "YDR089W_id001"; gene_name "VTC5"; gene_id "YDR089W"; +chrIV SGD gene 624691 626118 . - . gene_id "YDR090C"; gene_biotype "protein_coding"; +chrIV SGD transcript 624691 626118 . - . transcript_id "YDR090C_id002"; gene_id "YDR090C"; gene_name "ILT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 624691 626118 . - . transcript_id "YDR090C_id002"; gene_id "YDR090C"; gene_name "ILT1"; +chrIV SGD transcript 625066 625998 . - . transcript_id "YDR090C_id001"; gene_id "YDR090C"; gene_name "ILT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 625066 625998 . - 0 transcript_id "YDR090C_id001"; gene_name "ILT1"; gene_id "YDR090C"; +chrIV SGD gene 626708 628534 . - . gene_id "YDR091C"; gene_biotype "protein_coding"; +chrIV SGD transcript 626708 628534 . - . transcript_id "YDR091C_id001"; gene_id "YDR091C"; gene_name "RLI1"; transcript_biotype "protein_coding"; +chrIV SGD exon 626708 628534 . - 0 transcript_id "YDR091C_id001"; gene_name "RLI1"; gene_id "YDR091C"; +chrIV SGD gene 629463 630699 . + . gene_id "YDR092W"; gene_biotype "protein_coding"; +chrIV SGD transcript 629463 630699 . + . transcript_id "YDR092W_id001"; gene_id "YDR092W"; gene_name "UBC13"; transcript_biotype "protein_coding"; +chrIV SGD exon 629463 630699 . + . transcript_id "YDR092W_id001"; gene_id "YDR092W"; gene_name "UBC13"; +chrIV SGD transcript 629876 630605 . + . transcript_id "YDR092W_id003"; gene_id "YDR092W"; gene_name "UBC13"; transcript_biotype "protein_coding"; +chrIV SGD exon 629876 629905 . + 0 transcript_id "YDR092W_id003"; gene_name "UBC13"; gene_id "YDR092W"; +chrIV SGD exon 630174 630605 . + 0 transcript_id "YDR092W_id003"; gene_name "UBC13"; gene_id "YDR092W"; +chrIV SGD gene 631282 636120 . + . gene_id "YDR093W"; gene_biotype "protein_coding"; +chrIV SGD transcript 631282 636120 . + . transcript_id "YDR093W_mRNA"; gene_id "YDR093W"; gene_name "DNF2"; transcript_biotype "protein_coding"; +chrIV SGD CDS 631282 636120 . + 0 transcript_id "YDR093W_mRNA"; gene_name "DNF2"; gene_id "YDR093W"; +chrIV SGD gene 632619 636180 . + . gene_id "YDR094W"; gene_biotype "protein_coding"; +chrIV SGD transcript 632619 636180 . + . transcript_id "YDR094W_id001"; gene_id "YDR094W"; transcript_biotype "protein_coding"; +chrIV SGD exon 632619 636180 . + . transcript_id "YDR094W_id001"; gene_id "YDR094W"; +chrIV SGD transcript 635840 636175 . + . transcript_id "YDR094W_id002"; gene_id "YDR094W"; transcript_biotype "protein_coding"; +chrIV SGD exon 635840 636175 . + 0 transcript_id "YDR094W_id002"; gene_id "YDR094W"; +chrIV SGD gene 636117 636527 . - . gene_id "YDR095C"; gene_biotype "protein_coding"; +chrIV SGD transcript 636117 636527 . - . transcript_id "YDR095C_mRNA"; gene_id "YDR095C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 636117 636527 . - 0 transcript_id "YDR095C_mRNA"; gene_id "YDR095C"; +chrIV SGD gene 637139 639823 . + . gene_id "YDR096W"; gene_biotype "protein_coding"; +chrIV SGD transcript 637139 639823 . + . transcript_id "YDR096W_id001"; gene_id "YDR096W"; gene_name "GIS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 637139 639823 . + 0 transcript_id "YDR096W_id001"; gene_name "GIS1"; gene_id "YDR096W"; +chrIV SGD gene 640048 643930 . - . gene_id "YDR097C"; gene_biotype "protein_coding"; +chrIV SGD transcript 640048 643930 . - . transcript_id "YDR097C_id002"; gene_id "YDR097C"; gene_name "MSH6"; transcript_biotype "protein_coding"; +chrIV SGD exon 640048 643930 . - . transcript_id "YDR097C_id002"; gene_id "YDR097C"; gene_name "MSH6"; +chrIV SGD transcript 640109 643837 . - . transcript_id "YDR097C_id001"; gene_id "YDR097C"; gene_name "MSH6"; transcript_biotype "protein_coding"; +chrIV SGD exon 640109 643837 . - 0 transcript_id "YDR097C_id001"; gene_name "MSH6"; gene_id "YDR097C"; +chrIV SGD gene 643879 644975 . - . gene_id "YDR098C"; gene_biotype "protein_coding"; +chrIV SGD transcript 643879 644975 . - . transcript_id "YDR098C_id001"; gene_id "YDR098C"; gene_name "GRX3"; transcript_biotype "protein_coding"; +chrIV SGD exon 643879 644975 . - . transcript_id "YDR098C_id001"; gene_id "YDR098C"; gene_name "GRX3"; +chrIV SGD transcript 644178 644930 . - . transcript_id "YDR098C_id002"; gene_id "YDR098C"; gene_name "GRX3"; transcript_biotype "protein_coding"; +chrIV SGD exon 644178 644930 . - 0 transcript_id "YDR098C_id002"; gene_name "GRX3"; gene_id "YDR098C"; +chrIV SGD gene 645153 645224 . - . gene_id "YNCD0014C"; gene_biotype "ncRNA"; +chrIV SGD transcript 645153 645224 . - . transcript_id "YNCD0014C_tRNA"; gene_id "YNCD0014C"; transcript_biotype "ncRNA"; +chrIV SGD exon 645153 645224 . - . transcript_id "YNCD0014C_tRNA"; gene_id "YNCD0014C"; +chrIV SGD gene 645858 651126 . - . gene_id "YDR098C-B"; gene_biotype "protein_coding"; +chrIV SGD transcript 645858 651126 . - . transcript_id "YDR098C-B_dummy"; gene_id "YDR098C-B"; transcript_biotype "protein_coding"; +chrIV SGD exon 645858 649820 . - 0 transcript_id "YDR098C-B_dummy"; gene_id "YDR098C-B"; +chrIV SGD exon 649822 651126 . - 0 transcript_id "YDR098C-B_dummy"; gene_id "YDR098C-B"; +chrIV SGD gene 649804 651126 . - . gene_id "YDR098C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 649804 651126 . - . transcript_id "YDR098C-A_dummy"; gene_id "YDR098C-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 649804 651126 . - 0 transcript_id "YDR098C-A_dummy"; gene_id "YDR098C-A"; +chrIV SGD gene 652667 654777 . + . gene_id "YDR099W"; gene_biotype "protein_coding"; +chrIV SGD transcript 652667 654777 . + . transcript_id "YDR099W_id002"; gene_id "YDR099W"; gene_name "BMH2"; transcript_biotype "protein_coding"; +chrIV SGD exon 652667 654777 . + . transcript_id "YDR099W_id002"; gene_id "YDR099W"; gene_name "BMH2"; +chrIV SGD transcript 652781 654428 . + . transcript_id "YDR099W_id001"; gene_id "YDR099W"; gene_name "BMH2"; transcript_biotype "protein_coding"; +chrIV SGD exon 652781 653523 . + . transcript_id "YDR099W_id001"; gene_name "BMH2"; gene_id "YDR099W"; +chrIV SGD exon 653607 654428 . + . transcript_id "YDR099W_id001"; gene_name "BMH2"; gene_id "YDR099W"; +chrIV SGD exon 653607 654428 . + 0 transcript_id "YDR099W_id001"; gene_name "BMH2"; gene_id "YDR099W"; +chrIV SGD gene 654100 655695 . + . gene_id "YDR100W"; gene_biotype "protein_coding"; +chrIV SGD transcript 654100 655695 . + . transcript_id "YDR100W_id002"; gene_id "YDR100W"; gene_name "TVP15"; transcript_biotype "protein_coding"; +chrIV SGD exon 654100 655695 . + . transcript_id "YDR100W_id002"; gene_id "YDR100W"; gene_name "TVP15"; +chrIV SGD transcript 655013 655444 . + . transcript_id "YDR100W_id001"; gene_id "YDR100W"; gene_name "TVP15"; transcript_biotype "protein_coding"; +chrIV SGD exon 655013 655444 . + 0 transcript_id "YDR100W_id001"; gene_name "TVP15"; gene_id "YDR100W"; +chrIV SGD gene 655567 657539 . - . gene_id "YDR101C"; gene_biotype "protein_coding"; +chrIV SGD transcript 655567 657539 . - . transcript_id "YDR101C_id001"; gene_id "YDR101C"; gene_name "ARX1"; transcript_biotype "protein_coding"; +chrIV SGD exon 655567 657539 . - . transcript_id "YDR101C_id001"; gene_id "YDR101C"; gene_name "ARX1"; +chrIV SGD transcript 655686 657467 . - . transcript_id "YDR101C_id006"; gene_id "YDR101C"; gene_name "ARX1"; transcript_biotype "protein_coding"; +chrIV SGD exon 655686 657467 . - 0 transcript_id "YDR101C_id006"; gene_name "ARX1"; gene_id "YDR101C"; +chrIV SGD gene 657648 657980 . - . gene_id "YDR102C"; gene_biotype "protein_coding"; +chrIV SGD transcript 657648 657980 . - . transcript_id "YDR102C_mRNA"; gene_id "YDR102C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 657648 657980 . - 0 transcript_id "YDR102C_mRNA"; gene_id "YDR102C"; +chrIV SGD gene 658350 661103 . + . gene_id "YDR103W"; gene_biotype "protein_coding"; +chrIV SGD transcript 658350 661103 . + . transcript_id "YDR103W_id001"; gene_id "YDR103W"; gene_name "STE5"; transcript_biotype "protein_coding"; +chrIV SGD exon 658350 661103 . + 0 transcript_id "YDR103W_id001"; gene_name "STE5"; gene_id "YDR103W"; +chrIV SGD gene 661173 664910 . - . gene_id "YDR104C"; gene_biotype "protein_coding"; +chrIV SGD transcript 661173 664910 . - . transcript_id "YDR104C_id001"; gene_id "YDR104C"; gene_name "SPO71"; transcript_biotype "protein_coding"; +chrIV SGD exon 661173 664910 . - 0 transcript_id "YDR104C_id001"; gene_name "SPO71"; gene_id "YDR104C"; +chrIV SGD gene 665278 667023 . - . gene_id "YDR105C"; gene_biotype "protein_coding"; +chrIV SGD transcript 665278 667023 . - . transcript_id "YDR105C_id003"; gene_id "YDR105C"; gene_name "TMS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 665278 667023 . - . transcript_id "YDR105C_id003"; gene_id "YDR105C"; gene_name "TMS1"; +chrIV SGD transcript 665349 666770 . - . transcript_id "YDR105C_id001"; gene_id "YDR105C"; gene_name "TMS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 665349 666770 . - 0 transcript_id "YDR105C_id001"; gene_name "TMS1"; gene_id "YDR105C"; +chrIV SGD gene 667004 667858 . + . gene_id "YDR106W"; gene_biotype "protein_coding"; +chrIV SGD transcript 667004 667858 . + . transcript_id "YDR106W_id001"; gene_id "YDR106W"; gene_name "ARP10"; transcript_biotype "protein_coding"; +chrIV SGD exon 667004 667858 . + 0 transcript_id "YDR106W_id001"; gene_name "ARP10"; gene_id "YDR106W"; +chrIV SGD gene 668007 668080 . - . gene_id "YNCD0015C"; gene_biotype "ncRNA"; +chrIV SGD transcript 668007 668080 . - . transcript_id "YNCD0015C_tRNA"; gene_id "YNCD0015C"; transcript_biotype "ncRNA"; +chrIV SGD exon 668007 668080 . - . transcript_id "YNCD0015C_tRNA"; gene_id "YNCD0015C"; +chrIV SGD gene 668809 671049 . - . gene_id "YDR107C"; gene_biotype "protein_coding"; +chrIV SGD transcript 668809 671049 . - . transcript_id "YDR107C_id003"; gene_id "YDR107C"; gene_name "TMN2"; transcript_biotype "protein_coding"; +chrIV SGD exon 668809 671049 . - . transcript_id "YDR107C_id003"; gene_id "YDR107C"; gene_name "TMN2"; +chrIV SGD transcript 669016 671034 . - . transcript_id "YDR107C_id001"; gene_id "YDR107C"; gene_name "TMN2"; transcript_biotype "protein_coding"; +chrIV SGD exon 669016 671034 . - 0 transcript_id "YDR107C_id001"; gene_name "TMN2"; gene_id "YDR107C"; +chrIV SGD gene 671209 673464 . + . gene_id "YDR108W"; gene_biotype "protein_coding"; +chrIV SGD transcript 671209 673464 . + . transcript_id "YDR108W_id003"; gene_id "YDR108W"; gene_name "TRS85"; transcript_biotype "protein_coding"; +chrIV SGD exon 671209 673464 . + . transcript_id "YDR108W_id003"; gene_id "YDR108W"; gene_name "TRS85"; +chrIV SGD transcript 671269 673365 . + . transcript_id "YDR108W_id001"; gene_id "YDR108W"; gene_name "TRS85"; transcript_biotype "protein_coding"; +chrIV SGD exon 671269 673365 . + 0 transcript_id "YDR108W_id001"; gene_name "TRS85"; gene_id "YDR108W"; +chrIV SGD gene 673520 675667 . - . gene_id "YDR109C"; gene_biotype "protein_coding"; +chrIV SGD transcript 673520 675667 . - . transcript_id "YDR109C_id001"; gene_id "YDR109C"; transcript_biotype "protein_coding"; +chrIV SGD exon 673520 675667 . - 0 transcript_id "YDR109C_id001"; gene_id "YDR109C"; +chrIV SGD gene 676047 678004 . + . gene_id "YDR110W"; gene_biotype "protein_coding"; +chrIV SGD transcript 676047 678004 . + . transcript_id "YDR110W_id001"; gene_id "YDR110W"; gene_name "FOB1"; transcript_biotype "protein_coding"; +chrIV SGD exon 676047 678004 . + . transcript_id "YDR110W_id001"; gene_id "YDR110W"; gene_name "FOB1"; +chrIV SGD transcript 676102 677802 . + . transcript_id "YDR110W_id003"; gene_id "YDR110W"; gene_name "FOB1"; transcript_biotype "protein_coding"; +chrIV SGD exon 676102 677802 . + 0 transcript_id "YDR110W_id003"; gene_name "FOB1"; gene_id "YDR110W"; +chrIV SGD gene 677782 679985 . - . gene_id "YDR111C"; gene_biotype "protein_coding"; +chrIV SGD transcript 677782 679985 . - . transcript_id "YDR111C_id001"; gene_id "YDR111C"; gene_name "ALT2"; transcript_biotype "protein_coding"; +chrIV SGD exon 677782 679985 . - . transcript_id "YDR111C_id001"; gene_id "YDR111C"; gene_name "ALT2"; +chrIV SGD transcript 678241 679764 . - . transcript_id "YDR111C_id004"; gene_id "YDR111C"; gene_name "ALT2"; transcript_biotype "protein_coding"; +chrIV SGD exon 678241 679764 . - 0 transcript_id "YDR111C_id004"; gene_name "ALT2"; gene_id "YDR111C"; +chrIV SGD gene 679544 679852 . + . gene_id "YDR112W"; gene_biotype "protein_coding"; +chrIV SGD transcript 679544 679852 . + . transcript_id "YDR112W_mRNA"; gene_id "YDR112W"; gene_name "IRC2"; transcript_biotype "protein_coding"; +chrIV SGD CDS 679544 679852 . + 0 transcript_id "YDR112W_mRNA"; gene_name "IRC2"; gene_id "YDR112W"; +chrIV SGD gene 680422 681948 . - . gene_id "YDR113C"; gene_biotype "protein_coding"; +chrIV SGD transcript 680422 681948 . - . transcript_id "YDR113C_id001"; gene_id "YDR113C"; gene_name "PDS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 680422 681948 . - . transcript_id "YDR113C_id001"; gene_id "YDR113C"; gene_name "PDS1"; +chrIV SGD transcript 680496 681617 . - . transcript_id "YDR113C_id003"; gene_id "YDR113C"; gene_name "PDS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 680496 681617 . - 0 transcript_id "YDR113C_id003"; gene_name "PDS1"; gene_id "YDR113C"; +chrIV SGD gene 681924 682226 . - . gene_id "YDR114C"; gene_biotype "protein_coding"; +chrIV SGD transcript 681924 682226 . - . transcript_id "YDR114C_mRNA"; gene_id "YDR114C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 681924 682226 . - 0 transcript_id "YDR114C_mRNA"; gene_id "YDR114C"; +chrIV SGD gene 682119 682832 . + . gene_id "YDR115W"; gene_biotype "protein_coding"; +chrIV SGD transcript 682119 682832 . + . transcript_id "YDR115W_id002"; gene_id "YDR115W"; gene_name "MRX14"; transcript_biotype "protein_coding"; +chrIV SGD exon 682119 682832 . + . transcript_id "YDR115W_id002"; gene_id "YDR115W"; gene_name "MRX14"; +chrIV SGD transcript 682175 682492 . + . transcript_id "YDR115W_id001"; gene_id "YDR115W"; gene_name "MRX14"; transcript_biotype "protein_coding"; +chrIV SGD exon 682175 682492 . + 0 transcript_id "YDR115W_id001"; gene_name "MRX14"; gene_id "YDR115W"; +chrIV SGD gene 682605 683645 . - . gene_id "YDR116C"; gene_biotype "protein_coding"; +chrIV SGD transcript 682605 683645 . - . transcript_id "YDR116C_id003"; gene_id "YDR116C"; gene_name "MRPL1"; transcript_biotype "protein_coding"; +chrIV SGD exon 682605 683645 . - . transcript_id "YDR116C_id003"; gene_id "YDR116C"; gene_name "MRPL1"; +chrIV SGD transcript 682724 683581 . - . transcript_id "YDR116C_id001"; gene_id "YDR116C"; gene_name "MRPL1"; transcript_biotype "protein_coding"; +chrIV SGD exon 682724 683581 . - 0 transcript_id "YDR116C_id001"; gene_name "MRPL1"; gene_id "YDR116C"; +chrIV SGD gene 683679 685681 . - . gene_id "YDR117C"; gene_biotype "protein_coding"; +chrIV SGD transcript 683679 685681 . - . transcript_id "YDR117C_id001"; gene_id "YDR117C"; gene_name "TMA64"; transcript_biotype "protein_coding"; +chrIV SGD exon 683679 685681 . - . transcript_id "YDR117C_id001"; gene_id "YDR117C"; gene_name "TMA64"; +chrIV SGD transcript 683946 685643 . - . transcript_id "YDR117C_id004"; gene_id "YDR117C"; gene_name "TMA64"; transcript_biotype "protein_coding"; +chrIV SGD exon 683946 685643 . - 0 transcript_id "YDR117C_id004"; gene_name "TMA64"; gene_id "YDR117C"; +chrIV SGD gene 685882 687840 . + . gene_id "YDR118W"; gene_biotype "protein_coding"; +chrIV SGD transcript 685882 687840 . + . transcript_id "YDR118W_mRNA"; gene_id "YDR118W"; gene_name "APC4"; transcript_biotype "protein_coding"; +chrIV SGD CDS 685882 687840 . + 0 transcript_id "YDR118W_mRNA"; gene_name "APC4"; gene_id "YDR118W"; +chrIV SGD gene 686354 688005 . + . gene_id "YDR118W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 686354 688005 . + . transcript_id "YDR118W-A_id001"; gene_id "YDR118W-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 686354 688005 . + . transcript_id "YDR118W-A_id001"; gene_id "YDR118W-A"; +chrIV SGD transcript 687768 687884 . + . transcript_id "YDR118W-A_id002"; gene_id "YDR118W-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 687768 687884 . + 0 transcript_id "YDR118W-A_id002"; gene_id "YDR118W-A"; +chrIV SGD gene 688122 690612 . + . gene_id "YDR119W"; gene_biotype "protein_coding"; +chrIV SGD transcript 688122 690612 . + . transcript_id "YDR119W_id001"; gene_id "YDR119W"; gene_name "VBA4"; transcript_biotype "protein_coding"; +chrIV SGD exon 688122 690612 . + . transcript_id "YDR119W_id001"; gene_id "YDR119W"; gene_name "VBA4"; +chrIV SGD transcript 688227 690533 . + . transcript_id "YDR119W_id004"; gene_id "YDR119W"; gene_name "VBA4"; transcript_biotype "protein_coding"; +chrIV SGD exon 688227 690533 . + 0 transcript_id "YDR119W_id004"; gene_name "VBA4"; gene_id "YDR119W"; +chrIV SGD gene 690970 691537 . + . gene_id "YDR119W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 690970 691537 . + . transcript_id "YDR119W-A_id007"; gene_id "YDR119W-A"; gene_name "COX26"; transcript_biotype "protein_coding"; +chrIV SGD exon 690970 691537 . + . transcript_id "YDR119W-A_id007"; gene_id "YDR119W-A"; gene_name "COX26"; +chrIV SGD transcript 691014 691214 . + . transcript_id "YDR119W-A_id001"; gene_id "YDR119W-A"; gene_name "COX26"; transcript_biotype "protein_coding"; +chrIV SGD exon 691014 691214 . + 0 transcript_id "YDR119W-A_id001"; gene_name "COX26"; gene_id "YDR119W-A"; +chrIV SGD gene 691339 693261 . - . gene_id "YDR120C"; gene_biotype "protein_coding"; +chrIV SGD transcript 691339 693261 . - . transcript_id "YDR120C_id002"; gene_id "YDR120C"; gene_name "TRM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 691339 693261 . - . transcript_id "YDR120C_id002"; gene_id "YDR120C"; gene_name "TRM1"; +chrIV SGD transcript 691549 693261 . - . transcript_id "YDR120C_id001"; gene_id "YDR120C"; gene_name "TRM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 691549 693261 . - 0 transcript_id "YDR120C_id001"; gene_name "TRM1"; gene_id "YDR120C"; +chrIV SGD gene 693432 694289 . + . gene_id "YDR121W"; gene_biotype "protein_coding"; +chrIV SGD transcript 693432 694289 . + . transcript_id "YDR121W_id002"; gene_id "YDR121W"; gene_name "DPB4"; transcript_biotype "protein_coding"; +chrIV SGD exon 693432 694289 . + . transcript_id "YDR121W_id002"; gene_id "YDR121W"; gene_name "DPB4"; +chrIV SGD transcript 693585 694175 . + . transcript_id "YDR121W_id001"; gene_id "YDR121W"; gene_name "DPB4"; transcript_biotype "protein_coding"; +chrIV SGD exon 693585 694175 . + 0 transcript_id "YDR121W_id001"; gene_name "DPB4"; gene_id "YDR121W"; +chrIV SGD gene 694700 697894 . + . gene_id "YDR122W"; gene_biotype "protein_coding"; +chrIV SGD transcript 694700 697894 . + . transcript_id "YDR122W_mRNA"; gene_id "YDR122W"; gene_name "KIN1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 694700 697894 . + 0 transcript_id "YDR122W_mRNA"; gene_name "KIN1"; gene_id "YDR122W"; +chrIV SGD gene 697816 699544 . - . gene_id "YDR123C"; gene_biotype "protein_coding"; +chrIV SGD transcript 697816 699544 . - . transcript_id "YDR123C_id001"; gene_id "YDR123C"; gene_name "INO2"; transcript_biotype "protein_coding"; +chrIV SGD exon 697816 699544 . - . transcript_id "YDR123C_id001"; gene_id "YDR123C"; gene_name "INO2"; +chrIV SGD transcript 698554 699468 . - . transcript_id "YDR123C_id002"; gene_id "YDR123C"; gene_name "INO2"; transcript_biotype "protein_coding"; +chrIV SGD exon 698554 699468 . - 0 transcript_id "YDR123C_id002"; gene_name "INO2"; gene_id "YDR123C"; +chrIV SGD gene 699860 701634 . + . gene_id "YDR124W"; gene_biotype "protein_coding"; +chrIV SGD transcript 699860 701634 . + . transcript_id "YDR124W_id002"; gene_id "YDR124W"; transcript_biotype "protein_coding"; +chrIV SGD exon 699860 701634 . + . transcript_id "YDR124W_id002"; gene_id "YDR124W"; +chrIV SGD transcript 700315 701289 . + . transcript_id "YDR124W_id001"; gene_id "YDR124W"; transcript_biotype "protein_coding"; +chrIV SGD exon 700315 701289 . + 0 transcript_id "YDR124W_id001"; gene_id "YDR124W"; +chrIV SGD gene 701397 702758 . - . gene_id "YDR125C"; gene_biotype "protein_coding"; +chrIV SGD transcript 701397 702758 . - . transcript_id "YDR125C_mRNA"; gene_id "YDR125C"; gene_name "ECM18"; transcript_biotype "protein_coding"; +chrIV SGD CDS 701397 702758 . - 0 transcript_id "YDR125C_mRNA"; gene_name "ECM18"; gene_id "YDR125C"; +chrIV SGD gene 703226 704529 . + . gene_id "YDR126W"; gene_biotype "protein_coding"; +chrIV SGD transcript 703226 704529 . + . transcript_id "YDR126W_id002"; gene_id "YDR126W"; gene_name "SWF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 703226 704529 . + . transcript_id "YDR126W_id002"; gene_id "YDR126W"; gene_name "SWF1"; +chrIV SGD transcript 703234 704244 . + . transcript_id "YDR126W_id001"; gene_id "YDR126W"; gene_name "SWF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 703234 704244 . + 0 transcript_id "YDR126W_id001"; gene_name "SWF1"; gene_id "YDR126W"; +chrIV SGD gene 704484 709250 . + . gene_id "YDR127W"; gene_biotype "protein_coding"; +chrIV SGD transcript 704484 709250 . + . transcript_id "YDR127W_id001"; gene_id "YDR127W"; gene_name "ARO1"; transcript_biotype "protein_coding"; +chrIV SGD exon 704484 709250 . + 0 transcript_id "YDR127W_id001"; gene_name "ARO1"; gene_id "YDR127W"; +chrIV SGD gene 709549 712995 . + . gene_id "YDR128W"; gene_biotype "protein_coding"; +chrIV SGD transcript 709549 712995 . + . transcript_id "YDR128W_mRNA"; gene_id "YDR128W"; gene_name "MTC5"; transcript_biotype "protein_coding"; +chrIV SGD CDS 709549 712995 . + 0 transcript_id "YDR128W_mRNA"; gene_name "MTC5"; gene_id "YDR128W"; +chrIV SGD gene 713198 716016 . - . gene_id "YDR129C"; gene_biotype "protein_coding"; +chrIV SGD transcript 713198 716016 . - . transcript_id "YDR129C_id001"; gene_id "YDR129C"; gene_name "SAC6"; transcript_biotype "protein_coding"; +chrIV SGD exon 713198 716016 . - . transcript_id "YDR129C_id001"; gene_id "YDR129C"; gene_name "SAC6"; +chrIV SGD transcript 713340 715379 . - . transcript_id "YDR129C_id002"; gene_id "YDR129C"; gene_name "SAC6"; transcript_biotype "protein_coding"; +chrIV SGD exon 713340 715247 . - 0 transcript_id "YDR129C_id002"; gene_name "SAC6"; gene_id "YDR129C"; +chrIV SGD exon 715359 715379 . - 0 transcript_id "YDR129C_id002"; gene_name "SAC6"; gene_id "YDR129C"; +chrIV SGD gene 715438 716650 . - . gene_id "YDR130C"; gene_biotype "protein_coding"; +chrIV SGD transcript 715438 716650 . - . transcript_id "YDR130C_id002"; gene_id "YDR130C"; gene_name "FIN1"; transcript_biotype "protein_coding"; +chrIV SGD exon 715438 716650 . - . transcript_id "YDR130C_id002"; gene_id "YDR130C"; gene_name "FIN1"; +chrIV SGD transcript 715747 716622 . - . transcript_id "YDR130C_id001"; gene_id "YDR130C"; gene_name "FIN1"; transcript_biotype "protein_coding"; +chrIV SGD exon 715747 716622 . - 0 transcript_id "YDR130C_id001"; gene_name "FIN1"; gene_id "YDR130C"; +chrIV SGD gene 716716 718540 . - . gene_id "YDR131C"; gene_biotype "protein_coding"; +chrIV SGD transcript 716716 718540 . - . transcript_id "YDR131C_id003"; gene_id "YDR131C"; transcript_biotype "protein_coding"; +chrIV SGD exon 716716 718540 . - . transcript_id "YDR131C_id003"; gene_id "YDR131C"; +chrIV SGD transcript 716790 718460 . - . transcript_id "YDR131C_id001"; gene_id "YDR131C"; transcript_biotype "protein_coding"; +chrIV SGD exon 716790 718460 . - 0 transcript_id "YDR131C_id001"; gene_id "YDR131C"; +chrIV SGD gene 718699 720506 . - . gene_id "YDR132C"; gene_biotype "protein_coding"; +chrIV SGD transcript 718699 720506 . - . transcript_id "YDR132C_id001"; gene_id "YDR132C"; gene_name "MRX16"; transcript_biotype "protein_coding"; +chrIV SGD exon 718699 720506 . - . transcript_id "YDR132C_id001"; gene_id "YDR132C"; gene_name "MRX16"; +chrIV SGD transcript 718816 720303 . - . transcript_id "YDR132C_id002"; gene_id "YDR132C"; gene_name "MRX16"; transcript_biotype "protein_coding"; +chrIV SGD exon 718816 720303 . - 0 transcript_id "YDR132C_id002"; gene_name "MRX16"; gene_id "YDR132C"; +chrIV SGD gene 720841 721830 . - . gene_id "YDR133C"; gene_biotype "protein_coding"; +chrIV SGD transcript 720841 721830 . - . transcript_id "YDR133C_id002"; gene_id "YDR133C"; transcript_biotype "protein_coding"; +chrIV SGD exon 720841 721830 . - . transcript_id "YDR133C_id002"; gene_id "YDR133C"; +chrIV SGD transcript 720962 721297 . - . transcript_id "YDR133C_id001"; gene_id "YDR133C"; transcript_biotype "protein_coding"; +chrIV SGD exon 720962 721297 . - 0 transcript_id "YDR133C_id001"; gene_id "YDR133C"; +chrIV SGD gene 723004 727551 . - . gene_id "YDR135C"; gene_biotype "protein_coding"; +chrIV SGD transcript 723004 727551 . - . transcript_id "YDR135C_id001"; gene_id "YDR135C"; gene_name "YCF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 723004 727551 . - 0 transcript_id "YDR135C_id001"; gene_name "YCF1"; gene_id "YDR135C"; +chrIV SGD gene 727711 728283 . - . gene_id "YDR136C"; gene_biotype "protein_coding"; +chrIV SGD transcript 727711 728283 . - . transcript_id "YDR136C_mRNA"; gene_id "YDR136C"; gene_name "VPS61"; transcript_biotype "protein_coding"; +chrIV SGD CDS 727711 728283 . - 0 transcript_id "YDR136C_mRNA"; gene_name "VPS61"; gene_id "YDR136C"; +chrIV SGD gene 728259 730250 . + . gene_id "YDR137W"; gene_biotype "protein_coding"; +chrIV SGD transcript 728259 730250 . + . transcript_id "YDR137W_id001"; gene_id "YDR137W"; gene_name "RGP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 728259 730250 . + 0 transcript_id "YDR137W_id001"; gene_name "RGP1"; gene_id "YDR137W"; +chrIV SGD gene 730578 732836 . + . gene_id "YDR138W"; gene_biotype "protein_coding"; +chrIV SGD transcript 730578 732836 . + . transcript_id "YDR138W_id001"; gene_id "YDR138W"; gene_name "HPR1"; transcript_biotype "protein_coding"; +chrIV SGD exon 730578 732836 . + 0 transcript_id "YDR138W_id001"; gene_name "HPR1"; gene_id "YDR138W"; +chrIV SGD gene 733445 734180 . - . gene_id "YDR139C"; gene_biotype "protein_coding"; +chrIV SGD transcript 733445 734180 . - . transcript_id "YDR139C_id001"; gene_id "YDR139C"; gene_name "RUB1"; transcript_biotype "protein_coding"; +chrIV SGD exon 733445 734180 . - . transcript_id "YDR139C_id001"; gene_id "YDR139C"; gene_name "RUB1"; +chrIV SGD transcript 733618 733924 . - . transcript_id "YDR139C_id002"; gene_id "YDR139C"; gene_name "RUB1"; transcript_biotype "protein_coding"; +chrIV SGD exon 733618 733702 . - 1 transcript_id "YDR139C_id002"; gene_name "RUB1"; gene_id "YDR139C"; +chrIV SGD exon 733776 733924 . - 0 transcript_id "YDR139C_id002"; gene_name "RUB1"; gene_id "YDR139C"; +chrIV SGD gene 734124 735003 . + . gene_id "YDR140W"; gene_biotype "protein_coding"; +chrIV SGD transcript 734124 735003 . + . transcript_id "YDR140W_id009"; gene_id "YDR140W"; gene_name "MTQ2"; transcript_biotype "protein_coding"; +chrIV SGD exon 734124 735003 . + . transcript_id "YDR140W_id009"; gene_id "YDR140W"; gene_name "MTQ2"; +chrIV SGD transcript 734138 734803 . + . transcript_id "YDR140W_id001"; gene_id "YDR140W"; gene_name "MTQ2"; transcript_biotype "protein_coding"; +chrIV SGD exon 734138 734803 . + 0 transcript_id "YDR140W_id001"; gene_name "MTQ2"; gene_id "YDR140W"; +chrIV SGD gene 734901 739997 . - . gene_id "YDR141C"; gene_biotype "protein_coding"; +chrIV SGD transcript 734901 739997 . - . transcript_id "YDR141C_mRNA"; gene_id "YDR141C"; gene_name "DOP1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 734901 739997 . - 0 transcript_id "YDR141C_mRNA"; gene_name "DOP1"; gene_id "YDR141C"; +chrIV SGD gene 740347 741817 . - . gene_id "YDR142C"; gene_biotype "protein_coding"; +chrIV SGD transcript 740347 741817 . - . transcript_id "YDR142C_id001"; gene_id "YDR142C"; gene_name "PEX7"; transcript_biotype "protein_coding"; +chrIV SGD exon 740347 741817 . - . transcript_id "YDR142C_id001"; gene_id "YDR142C"; gene_name "PEX7"; +chrIV SGD transcript 740473 741600 . - . transcript_id "YDR142C_id002"; gene_id "YDR142C"; gene_name "PEX7"; transcript_biotype "protein_coding"; +chrIV SGD exon 740473 741600 . - 0 transcript_id "YDR142C_id002"; gene_name "PEX7"; gene_id "YDR142C"; +chrIV SGD gene 741848 744047 . - . gene_id "YDR143C"; gene_biotype "protein_coding"; +chrIV SGD transcript 741848 744047 . - . transcript_id "YDR143C_id001"; gene_id "YDR143C"; gene_name "SAN1"; transcript_biotype "protein_coding"; +chrIV SGD exon 741848 744047 . - . transcript_id "YDR143C_id001"; gene_id "YDR143C"; gene_name "SAN1"; +chrIV SGD transcript 742042 743874 . - . transcript_id "YDR143C_id004"; gene_id "YDR143C"; gene_name "SAN1"; transcript_biotype "protein_coding"; +chrIV SGD exon 742042 743874 . - 0 transcript_id "YDR143C_id004"; gene_name "SAN1"; gene_id "YDR143C"; +chrIV SGD gene 743921 746241 . - . gene_id "YDR144C"; gene_biotype "protein_coding"; +chrIV SGD transcript 743921 746241 . - . transcript_id "YDR144C_id001"; gene_id "YDR144C"; gene_name "MKC7"; transcript_biotype "protein_coding"; +chrIV SGD exon 743921 746241 . - . transcript_id "YDR144C_id001"; gene_id "YDR144C"; gene_name "MKC7"; +chrIV SGD transcript 744311 746101 . - . transcript_id "YDR144C_id003"; gene_id "YDR144C"; gene_name "MKC7"; transcript_biotype "protein_coding"; +chrIV SGD exon 744311 746101 . - 0 transcript_id "YDR144C_id003"; gene_name "MKC7"; gene_id "YDR144C"; +chrIV SGD gene 746649 748557 . + . gene_id "YDR145W"; gene_biotype "protein_coding"; +chrIV SGD transcript 746649 748557 . + . transcript_id "YDR145W_id002"; gene_id "YDR145W"; gene_name "TAF12"; transcript_biotype "protein_coding"; +chrIV SGD exon 746649 748557 . + . transcript_id "YDR145W_id002"; gene_id "YDR145W"; gene_name "TAF12"; +chrIV SGD transcript 746738 748357 . + . transcript_id "YDR145W_id001"; gene_id "YDR145W"; gene_name "TAF12"; transcript_biotype "protein_coding"; +chrIV SGD exon 746738 748357 . + 0 transcript_id "YDR145W_id001"; gene_name "TAF12"; gene_id "YDR145W"; +chrIV SGD gene 748613 750742 . - . gene_id "YDR146C"; gene_biotype "protein_coding"; +chrIV SGD transcript 748613 750742 . - . transcript_id "YDR146C_id001"; gene_id "YDR146C"; gene_name "SWI5"; transcript_biotype "protein_coding"; +chrIV SGD exon 748613 750742 . - 0 transcript_id "YDR146C_id001"; gene_name "SWI5"; gene_id "YDR146C"; +chrIV SGD gene 751181 753271 . + . gene_id "YDR147W"; gene_biotype "protein_coding"; +chrIV SGD transcript 751181 753271 . + . transcript_id "YDR147W_id002"; gene_id "YDR147W"; gene_name "EKI1"; transcript_biotype "protein_coding"; +chrIV SGD exon 751181 753271 . + . transcript_id "YDR147W_id002"; gene_id "YDR147W"; gene_name "EKI1"; +chrIV SGD transcript 751631 753235 . + . transcript_id "YDR147W_id001"; gene_id "YDR147W"; gene_name "EKI1"; transcript_biotype "protein_coding"; +chrIV SGD exon 751631 753235 . + 0 transcript_id "YDR147W_id001"; gene_name "EKI1"; gene_id "YDR147W"; +chrIV SGD gene 753391 755319 . - . gene_id "YDR148C"; gene_biotype "protein_coding"; +chrIV SGD transcript 753391 755319 . - . transcript_id "YDR148C_id004"; gene_id "YDR148C"; gene_name "KGD2"; transcript_biotype "protein_coding"; +chrIV SGD exon 753391 755319 . - . transcript_id "YDR148C_id004"; gene_id "YDR148C"; gene_name "KGD2"; +chrIV SGD transcript 753675 755066 . - . transcript_id "YDR148C_id001"; gene_id "YDR148C"; gene_name "KGD2"; transcript_biotype "protein_coding"; +chrIV SGD exon 753675 755066 . - 0 transcript_id "YDR148C_id001"; gene_name "KGD2"; gene_id "YDR148C"; +chrIV SGD gene 755555 756262 . - . gene_id "YDR149C"; gene_biotype "protein_coding"; +chrIV SGD transcript 755555 756262 . - . transcript_id "YDR149C_mRNA"; gene_id "YDR149C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 755555 756262 . - 0 transcript_id "YDR149C_mRNA"; gene_id "YDR149C"; +chrIV SGD gene 755628 763874 . + . gene_id "YDR150W"; gene_biotype "protein_coding"; +chrIV SGD transcript 755628 763874 . + . transcript_id "YDR150W_mRNA"; gene_id "YDR150W"; gene_name "NUM1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 755628 763874 . + 0 transcript_id "YDR150W_mRNA"; gene_name "NUM1"; gene_id "YDR150W"; +chrIV SGD gene 763860 765329 . - . gene_id "YDR151C"; gene_biotype "protein_coding"; +chrIV SGD transcript 763860 765329 . - . transcript_id "YDR151C_id002"; gene_id "YDR151C"; gene_name "CTH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 763860 765329 . - . transcript_id "YDR151C_id002"; gene_id "YDR151C"; gene_name "CTH1"; +chrIV SGD transcript 764178 765155 . - . transcript_id "YDR151C_id001"; gene_id "YDR151C"; gene_name "CTH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 764178 765155 . - 0 transcript_id "YDR151C_id001"; gene_name "CTH1"; gene_id "YDR151C"; +chrIV SGD gene 765482 766569 . + . gene_id "YDR152W"; gene_biotype "protein_coding"; +chrIV SGD transcript 765482 766569 . + . transcript_id "YDR152W_id003"; gene_id "YDR152W"; gene_name "GIR2"; transcript_biotype "protein_coding"; +chrIV SGD exon 765482 766569 . + . transcript_id "YDR152W_id003"; gene_id "YDR152W"; gene_name "GIR2"; +chrIV SGD transcript 765706 766503 . + . transcript_id "YDR152W_id001"; gene_id "YDR152W"; gene_name "GIR2"; transcript_biotype "protein_coding"; +chrIV SGD exon 765706 766503 . + 0 transcript_id "YDR152W_id001"; gene_name "GIR2"; gene_id "YDR152W"; +chrIV SGD gene 766491 768104 . - . gene_id "YDR153C"; gene_biotype "protein_coding"; +chrIV SGD transcript 766491 768104 . - . transcript_id "YDR153C_id001"; gene_id "YDR153C"; gene_name "ENT5"; transcript_biotype "protein_coding"; +chrIV SGD exon 766491 768104 . - . transcript_id "YDR153C_id001"; gene_id "YDR153C"; gene_name "ENT5"; +chrIV SGD transcript 766736 767971 . - . transcript_id "YDR153C_id002"; gene_id "YDR153C"; gene_name "ENT5"; transcript_biotype "protein_coding"; +chrIV SGD exon 766736 767971 . - 0 transcript_id "YDR153C_id002"; gene_name "ENT5"; gene_id "YDR153C"; +chrIV SGD gene 768346 768999 . - . gene_id "YDR154C"; gene_biotype "protein_coding"; +chrIV SGD transcript 768346 768999 . - . transcript_id "YDR154C_id001"; gene_id "YDR154C"; transcript_biotype "protein_coding"; +chrIV SGD exon 768346 768999 . - . transcript_id "YDR154C_id001"; gene_id "YDR154C"; +chrIV SGD transcript 768403 768753 . - . transcript_id "YDR154C_id004"; gene_id "YDR154C"; transcript_biotype "protein_coding"; +chrIV SGD exon 768403 768753 . - 0 transcript_id "YDR154C_id004"; gene_id "YDR154C"; +chrIV SGD gene 768512 769000 . - . gene_id "YDR155C"; gene_biotype "protein_coding"; +chrIV SGD transcript 768512 769000 . - . transcript_id "YDR155C_id001"; gene_id "YDR155C"; gene_name "CPR1"; transcript_biotype "protein_coding"; +chrIV SGD exon 768512 769000 . - 0 transcript_id "YDR155C_id001"; gene_name "CPR1"; gene_id "YDR155C"; +chrIV SGD gene 768658 770031 . + . gene_id "YDR156W"; gene_biotype "protein_coding"; +chrIV SGD transcript 768658 770031 . + . transcript_id "YDR156W_id001"; gene_id "YDR156W"; gene_name "RPA14"; transcript_biotype "protein_coding"; +chrIV SGD exon 768658 770031 . + . transcript_id "YDR156W_id001"; gene_id "YDR156W"; gene_name "RPA14"; +chrIV SGD transcript 769525 769938 . + . transcript_id "YDR156W_id002"; gene_id "YDR156W"; gene_name "RPA14"; transcript_biotype "protein_coding"; +chrIV SGD exon 769525 769938 . + 0 transcript_id "YDR156W_id002"; gene_name "RPA14"; gene_id "YDR156W"; +chrIV SGD gene 769931 770332 . + . gene_id "YDR157W"; gene_biotype "protein_coding"; +chrIV SGD transcript 769931 770332 . + . transcript_id "YDR157W_mRNA"; gene_id "YDR157W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 769931 770332 . + 0 transcript_id "YDR157W_mRNA"; gene_id "YDR157W"; +chrIV SGD gene 770295 771679 . + . gene_id "YDR158W"; gene_biotype "protein_coding"; +chrIV SGD transcript 770295 771679 . + . transcript_id "YDR158W_id001"; gene_id "YDR158W"; gene_name "HOM2"; transcript_biotype "protein_coding"; +chrIV SGD exon 770295 771679 . + . transcript_id "YDR158W_id001"; gene_id "YDR158W"; gene_name "HOM2"; +chrIV SGD transcript 770357 771454 . + . transcript_id "YDR158W_id002"; gene_id "YDR158W"; gene_name "HOM2"; transcript_biotype "protein_coding"; +chrIV SGD exon 770357 771454 . + 0 transcript_id "YDR158W_id002"; gene_name "HOM2"; gene_id "YDR158W"; +chrIV SGD gene 771877 775782 . + . gene_id "YDR159W"; gene_biotype "protein_coding"; +chrIV SGD transcript 771877 775782 . + . transcript_id "YDR159W_mRNA"; gene_id "YDR159W"; gene_name "SAC3"; transcript_biotype "protein_coding"; +chrIV SGD CDS 771877 775782 . + 0 transcript_id "YDR159W_mRNA"; gene_name "SAC3"; gene_id "YDR159W"; +chrIV SGD gene 776163 778721 . + . gene_id "YDR160W"; gene_biotype "protein_coding"; +chrIV SGD transcript 776163 778721 . + . transcript_id "YDR160W_mRNA"; gene_id "YDR160W"; gene_name "SSY1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 776163 778721 . + 0 transcript_id "YDR160W_mRNA"; gene_name "SSY1"; gene_id "YDR160W"; +chrIV SGD gene 778995 780428 . + . gene_id "YDR161W"; gene_biotype "protein_coding"; +chrIV SGD transcript 778995 780428 . + . transcript_id "YDR161W_id001"; gene_id "YDR161W"; gene_name "ACL4"; transcript_biotype "protein_coding"; +chrIV SGD exon 778995 780428 . + . transcript_id "YDR161W_id001"; gene_id "YDR161W"; gene_name "ACL4"; +chrIV SGD transcript 779043 780206 . + . transcript_id "YDR161W_id007"; gene_id "YDR161W"; gene_name "ACL4"; transcript_biotype "protein_coding"; +chrIV SGD exon 779043 780206 . + 0 transcript_id "YDR161W_id007"; gene_name "ACL4"; gene_id "YDR161W"; +chrIV SGD gene 780179 781407 . - . gene_id "YDR162C"; gene_biotype "protein_coding"; +chrIV SGD transcript 780179 781407 . - . transcript_id "YDR162C_id002"; gene_id "YDR162C"; gene_name "NBP2"; transcript_biotype "protein_coding"; +chrIV SGD exon 780179 781407 . - . transcript_id "YDR162C_id002"; gene_id "YDR162C"; gene_name "NBP2"; +chrIV SGD transcript 780390 781100 . - . transcript_id "YDR162C_id001"; gene_id "YDR162C"; gene_name "NBP2"; transcript_biotype "protein_coding"; +chrIV SGD exon 780390 781100 . - 0 transcript_id "YDR162C_id001"; gene_name "NBP2"; gene_id "YDR162C"; +chrIV SGD gene 781423 781950 . + . gene_id "YDR163W"; gene_biotype "protein_coding"; +chrIV SGD transcript 781423 781950 . + . transcript_id "YDR163W_id001"; gene_id "YDR163W"; gene_name "CWC15"; transcript_biotype "protein_coding"; +chrIV SGD exon 781423 781950 . + 0 transcript_id "YDR163W_id001"; gene_name "CWC15"; gene_id "YDR163W"; +chrIV SGD gene 781864 784260 . - . gene_id "YDR164C"; gene_biotype "protein_coding"; +chrIV SGD transcript 781864 784260 . - . transcript_id "YDR164C_id002"; gene_id "YDR164C"; gene_name "SEC1"; transcript_biotype "protein_coding"; +chrIV SGD exon 781864 784260 . - . transcript_id "YDR164C_id002"; gene_id "YDR164C"; gene_name "SEC1"; +chrIV SGD transcript 782041 784215 . - . transcript_id "YDR164C_id001"; gene_id "YDR164C"; gene_name "SEC1"; transcript_biotype "protein_coding"; +chrIV SGD exon 782041 784215 . - 0 transcript_id "YDR164C_id001"; gene_name "SEC1"; gene_id "YDR164C"; +chrIV SGD gene 784859 786857 . + . gene_id "YDR165W"; gene_biotype "protein_coding"; +chrIV SGD transcript 784859 786857 . + . transcript_id "YDR165W_id001"; gene_id "YDR165W"; gene_name "TRM82"; transcript_biotype "protein_coding"; +chrIV SGD exon 784859 786857 . + . transcript_id "YDR165W_id001"; gene_id "YDR165W"; gene_name "TRM82"; +chrIV SGD transcript 784871 786205 . + . transcript_id "YDR165W_id003"; gene_id "YDR165W"; gene_name "TRM82"; transcript_biotype "protein_coding"; +chrIV SGD exon 784871 786205 . + 0 transcript_id "YDR165W_id003"; gene_name "TRM82"; gene_id "YDR165W"; +chrIV SGD gene 786306 789221 . - . gene_id "YDR166C"; gene_biotype "protein_coding"; +chrIV SGD transcript 786306 789221 . - . transcript_id "YDR166C_id001"; gene_id "YDR166C"; gene_name "SEC5"; transcript_biotype "protein_coding"; +chrIV SGD exon 786306 789221 . - 0 transcript_id "YDR166C_id001"; gene_name "SEC5"; gene_id "YDR166C"; +chrIV SGD gene 789357 790169 . + . gene_id "YDR167W"; gene_biotype "protein_coding"; +chrIV SGD transcript 789357 790169 . + . transcript_id "YDR167W_id003"; gene_id "YDR167W"; gene_name "TAF10"; transcript_biotype "protein_coding"; +chrIV SGD exon 789357 790169 . + . transcript_id "YDR167W_id003"; gene_id "YDR167W"; gene_name "TAF10"; +chrIV SGD transcript 789449 790069 . + . transcript_id "YDR167W_id001"; gene_id "YDR167W"; gene_name "TAF10"; transcript_biotype "protein_coding"; +chrIV SGD exon 789449 790069 . + 0 transcript_id "YDR167W_id001"; gene_name "TAF10"; gene_id "YDR167W"; +chrIV SGD gene 790274 792106 . + . gene_id "YDR168W"; gene_biotype "protein_coding"; +chrIV SGD transcript 790274 792106 . + . transcript_id "YDR168W_id001"; gene_id "YDR168W"; gene_name "CDC37"; transcript_biotype "protein_coding"; +chrIV SGD exon 790274 792106 . + . transcript_id "YDR168W_id001"; gene_id "YDR168W"; gene_name "CDC37"; +chrIV SGD transcript 790328 791848 . + . transcript_id "YDR168W_id002"; gene_id "YDR168W"; gene_name "CDC37"; transcript_biotype "protein_coding"; +chrIV SGD exon 790328 791848 . + 0 transcript_id "YDR168W_id002"; gene_name "CDC37"; gene_id "YDR168W"; +chrIV SGD gene 792116 794255 . - . gene_id "YDR169C"; gene_biotype "protein_coding"; +chrIV SGD transcript 792116 794255 . - . transcript_id "YDR169C_id006"; gene_id "YDR169C"; gene_name "STB3"; transcript_biotype "protein_coding"; +chrIV SGD exon 792116 794255 . - . transcript_id "YDR169C_id006"; gene_id "YDR169C"; gene_name "STB3"; +chrIV SGD transcript 792348 793889 . - . transcript_id "YDR169C_id001"; gene_id "YDR169C"; gene_name "STB3"; transcript_biotype "protein_coding"; +chrIV SGD exon 792348 793889 . - 0 transcript_id "YDR169C_id001"; gene_name "STB3"; gene_id "YDR169C"; +chrIV SGD gene 794574 794723 . - . gene_id "YDR169C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 794574 794723 . - . transcript_id "YDR169C-A_mRNA"; gene_id "YDR169C-A"; transcript_biotype "protein_coding"; +chrIV SGD CDS 794574 794723 . - 0 transcript_id "YDR169C-A_mRNA"; gene_id "YDR169C-A"; +chrIV SGD gene 796193 802222 . - . gene_id "YDR170C"; gene_biotype "protein_coding"; +chrIV SGD transcript 796193 802222 . - . transcript_id "YDR170C_mRNA"; gene_id "YDR170C"; gene_name "SEC7"; transcript_biotype "protein_coding"; +chrIV SGD CDS 796193 802222 . - 0 transcript_id "YDR170C_mRNA"; gene_name "SEC7"; gene_id "YDR170C"; +chrIV SGD gene 802731 802802 . - . gene_id "YNCD0016C"; gene_biotype "ncRNA"; +chrIV SGD transcript 802731 802802 . - . transcript_id "YNCD0016C_tRNA"; gene_id "YNCD0016C"; transcript_biotype "ncRNA"; +chrIV SGD exon 802731 802802 . - . transcript_id "YNCD0016C_tRNA"; gene_id "YNCD0016C"; +chrIV SGD gene 803195 804517 . + . gene_id "YDR170W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 803195 804517 . + . transcript_id "YDR170W-A_dummy"; gene_id "YDR170W-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 803195 804517 . + 0 transcript_id "YDR170W-A_dummy"; gene_id "YDR170W-A"; +chrIV SGD gene 806535 807832 . + . gene_id "YDR171W"; gene_biotype "protein_coding"; +chrIV SGD transcript 806535 807832 . + . transcript_id "YDR171W_id004"; gene_id "YDR171W"; gene_name "HSP42"; transcript_biotype "protein_coding"; +chrIV SGD exon 806535 807832 . + . transcript_id "YDR171W_id004"; gene_id "YDR171W"; gene_name "HSP42"; +chrIV SGD transcript 806621 807748 . + . transcript_id "YDR171W_id001"; gene_id "YDR171W"; gene_name "HSP42"; transcript_biotype "protein_coding"; +chrIV SGD exon 806621 807748 . + 0 transcript_id "YDR171W_id001"; gene_name "HSP42"; gene_id "YDR171W"; +chrIV SGD gene 808259 810560 . + . gene_id "YDR172W"; gene_biotype "protein_coding"; +chrIV SGD transcript 808259 810560 . + . transcript_id "YDR172W_id001"; gene_id "YDR172W"; gene_name "SUP35"; transcript_biotype "protein_coding"; +chrIV SGD exon 808259 810560 . + . transcript_id "YDR172W_id001"; gene_id "YDR172W"; gene_name "SUP35"; +chrIV SGD transcript 808324 810381 . + . transcript_id "YDR172W_id003"; gene_id "YDR172W"; gene_name "SUP35"; transcript_biotype "protein_coding"; +chrIV SGD exon 808324 810381 . + 0 transcript_id "YDR172W_id003"; gene_name "SUP35"; gene_id "YDR172W"; +chrIV SGD gene 810565 811632 . - . gene_id "YDR173C"; gene_biotype "protein_coding"; +chrIV SGD transcript 810565 811632 . - . transcript_id "YDR173C_id001"; gene_id "YDR173C"; gene_name "ARG82"; transcript_biotype "protein_coding"; +chrIV SGD exon 810565 811632 . - 0 transcript_id "YDR173C_id001"; gene_name "ARG82"; gene_id "YDR173C"; +chrIV SGD gene 812087 813225 . + . gene_id "YDR174W"; gene_biotype "protein_coding"; +chrIV SGD transcript 812087 813225 . + . transcript_id "YDR174W_id003"; gene_id "YDR174W"; gene_name "HMO1"; transcript_biotype "protein_coding"; +chrIV SGD exon 812087 813225 . + . transcript_id "YDR174W_id003"; gene_id "YDR174W"; gene_name "HMO1"; +chrIV SGD transcript 812110 812850 . + . transcript_id "YDR174W_id001"; gene_id "YDR174W"; gene_name "HMO1"; transcript_biotype "protein_coding"; +chrIV SGD exon 812110 812850 . + 0 transcript_id "YDR174W_id001"; gene_name "HMO1"; gene_id "YDR174W"; +chrIV SGD gene 813098 814625 . - . gene_id "YDR175C"; gene_biotype "protein_coding"; +chrIV SGD transcript 813098 814625 . - . transcript_id "YDR175C_id003"; gene_id "YDR175C"; gene_name "RSM24"; transcript_biotype "protein_coding"; +chrIV SGD exon 813098 814625 . - . transcript_id "YDR175C_id003"; gene_id "YDR175C"; gene_name "RSM24"; +chrIV SGD transcript 813193 814152 . - . transcript_id "YDR175C_id001"; gene_id "YDR175C"; gene_name "RSM24"; transcript_biotype "protein_coding"; +chrIV SGD exon 813193 814152 . - 0 transcript_id "YDR175C_id001"; gene_name "RSM24"; gene_id "YDR175C"; +chrIV SGD gene 814417 816888 . + . gene_id "YDR176W"; gene_biotype "protein_coding"; +chrIV SGD transcript 814417 816888 . + . transcript_id "YDR176W_id001"; gene_id "YDR176W"; gene_name "NGG1"; transcript_biotype "protein_coding"; +chrIV SGD exon 814417 816888 . + . transcript_id "YDR176W_id001"; gene_id "YDR176W"; gene_name "NGG1"; +chrIV SGD transcript 814452 816560 . + . transcript_id "YDR176W_id002"; gene_id "YDR176W"; gene_name "NGG1"; transcript_biotype "protein_coding"; +chrIV SGD exon 814452 816560 . + 0 transcript_id "YDR176W_id002"; gene_name "NGG1"; gene_id "YDR176W"; +chrIV SGD gene 816770 817681 . + . gene_id "YDR177W"; gene_biotype "protein_coding"; +chrIV SGD transcript 816770 817681 . + . transcript_id "YDR177W_id006"; gene_id "YDR177W"; gene_name "UBC1"; transcript_biotype "protein_coding"; +chrIV SGD exon 816770 817681 . + . transcript_id "YDR177W_id006"; gene_id "YDR177W"; gene_name "UBC1"; +chrIV SGD transcript 816878 817525 . + . transcript_id "YDR177W_id001"; gene_id "YDR177W"; gene_name "UBC1"; transcript_biotype "protein_coding"; +chrIV SGD exon 816878 817525 . + 0 transcript_id "YDR177W_id001"; gene_name "UBC1"; gene_id "YDR177W"; +chrIV SGD gene 817764 818691 . + . gene_id "YDR178W"; gene_biotype "protein_coding"; +chrIV SGD transcript 817764 818691 . + . transcript_id "YDR178W_id010"; gene_id "YDR178W"; gene_name "SDH4"; transcript_biotype "protein_coding"; +chrIV SGD exon 817764 818691 . + . transcript_id "YDR178W_id010"; gene_id "YDR178W"; gene_name "SDH4"; +chrIV SGD transcript 817950 818495 . + . transcript_id "YDR178W_id001"; gene_id "YDR178W"; gene_name "SDH4"; transcript_biotype "protein_coding"; +chrIV SGD exon 817950 818495 . + 0 transcript_id "YDR178W_id001"; gene_name "SDH4"; gene_id "YDR178W"; +chrIV SGD gene 818559 819231 . - . gene_id "YDR179C"; gene_biotype "protein_coding"; +chrIV SGD transcript 818559 819231 . - . transcript_id "YDR179C_id001"; gene_id "YDR179C"; gene_name "CSN9"; transcript_biotype "protein_coding"; +chrIV SGD exon 818559 819231 . - . transcript_id "YDR179C_id001"; gene_id "YDR179C"; gene_name "CSN9"; +chrIV SGD transcript 818708 819196 . - . transcript_id "YDR179C_id003"; gene_id "YDR179C"; gene_name "CSN9"; transcript_biotype "protein_coding"; +chrIV SGD exon 818708 819196 . - 0 transcript_id "YDR179C_id003"; gene_name "CSN9"; gene_id "YDR179C"; +chrIV SGD gene 819363 820988 . + . gene_id "YDR179W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 819363 820988 . + . transcript_id "YDR179W-A_id004"; gene_id "YDR179W-A"; gene_name "NVJ3"; transcript_biotype "protein_coding"; +chrIV SGD exon 819363 820988 . + . transcript_id "YDR179W-A_id004"; gene_id "YDR179W-A"; gene_name "NVJ3"; +chrIV SGD transcript 819433 820824 . + . transcript_id "YDR179W-A_id001"; gene_id "YDR179W-A"; gene_name "NVJ3"; transcript_biotype "protein_coding"; +chrIV SGD exon 819433 820824 . + 0 transcript_id "YDR179W-A_id001"; gene_name "NVJ3"; gene_id "YDR179W-A"; +chrIV SGD gene 821295 825776 . + . gene_id "YDR180W"; gene_biotype "protein_coding"; +chrIV SGD transcript 821295 825776 . + . transcript_id "YDR180W_id001"; gene_id "YDR180W"; gene_name "SCC2"; transcript_biotype "protein_coding"; +chrIV SGD exon 821295 825776 . + 0 transcript_id "YDR180W_id001"; gene_name "SCC2"; gene_id "YDR180W"; +chrIV SGD gene 825704 827378 . - . gene_id "YDR181C"; gene_biotype "protein_coding"; +chrIV SGD transcript 825704 827378 . - . transcript_id "YDR181C_id002"; gene_id "YDR181C"; gene_name "SAS4"; transcript_biotype "protein_coding"; +chrIV SGD exon 825704 827378 . - . transcript_id "YDR181C_id002"; gene_id "YDR181C"; gene_name "SAS4"; +chrIV SGD transcript 825910 827355 . - . transcript_id "YDR181C_id001"; gene_id "YDR181C"; gene_name "SAS4"; transcript_biotype "protein_coding"; +chrIV SGD exon 825910 827355 . - 0 transcript_id "YDR181C_id001"; gene_name "SAS4"; gene_id "YDR181C"; +chrIV SGD gene 827556 829212 . + . gene_id "YDR182W"; gene_biotype "protein_coding"; +chrIV SGD transcript 827556 829212 . + . transcript_id "YDR182W_id004"; gene_id "YDR182W"; gene_name "CDC1"; transcript_biotype "protein_coding"; +chrIV SGD exon 827556 829212 . + . transcript_id "YDR182W_id004"; gene_id "YDR182W"; gene_name "CDC1"; +chrIV SGD transcript 827582 829057 . + . transcript_id "YDR182W_id001"; gene_id "YDR182W"; gene_name "CDC1"; transcript_biotype "protein_coding"; +chrIV SGD exon 827582 829057 . + 0 transcript_id "YDR182W_id001"; gene_name "CDC1"; gene_id "YDR182W"; +chrIV SGD gene 827769 829419 . + . gene_id "YDR182W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 827769 829419 . + . transcript_id "YDR182W-A_id001"; gene_id "YDR182W-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 827769 829419 . + . transcript_id "YDR182W-A_id001"; gene_id "YDR182W-A"; +chrIV SGD transcript 829151 829354 . + . transcript_id "YDR182W-A_id003"; gene_id "YDR182W-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 829151 829354 . + 0 transcript_id "YDR182W-A_id003"; gene_id "YDR182W-A"; +chrIV SGD gene 829164 830298 . + . gene_id "YDR183W"; gene_biotype "protein_coding"; +chrIV SGD transcript 829164 830298 . + . transcript_id "YDR183W_id001"; gene_id "YDR183W"; gene_name "PLP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 829164 830298 . + . transcript_id "YDR183W_id001"; gene_id "YDR183W"; gene_name "PLP1"; +chrIV SGD transcript 829585 830277 . + . transcript_id "YDR183W_id003"; gene_id "YDR183W"; gene_name "PLP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 829585 830277 . + 0 transcript_id "YDR183W_id003"; gene_name "PLP1"; gene_id "YDR183W"; +chrIV SGD gene 830391 831233 . - . gene_id "YDR183C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 830391 831233 . - . transcript_id "YDR183C-A_id002"; gene_id "YDR183C-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 830391 831233 . - . transcript_id "YDR183C-A_id002"; gene_id "YDR183C-A"; +chrIV SGD transcript 830397 830654 . - . transcript_id "YDR183C-A_id001"; gene_id "YDR183C-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 830397 830654 . - 0 transcript_id "YDR183C-A_id001"; gene_id "YDR183C-A"; +chrIV SGD gene 830407 831583 . - . gene_id "YDR184C"; gene_biotype "protein_coding"; +chrIV SGD transcript 830407 831583 . - . transcript_id "YDR184C_id001"; gene_id "YDR184C"; gene_name "ATC1"; transcript_biotype "protein_coding"; +chrIV SGD exon 830407 831583 . - . transcript_id "YDR184C_id001"; gene_id "YDR184C"; gene_name "ATC1"; +chrIV SGD transcript 830629 831513 . - . transcript_id "YDR184C_id002"; gene_id "YDR184C"; gene_name "ATC1"; transcript_biotype "protein_coding"; +chrIV SGD exon 830629 831513 . - 0 transcript_id "YDR184C_id002"; gene_name "ATC1"; gene_id "YDR184C"; +chrIV SGD gene 831711 832576 . - . gene_id "YDR185C"; gene_biotype "protein_coding"; +chrIV SGD transcript 831711 832576 . - . transcript_id "YDR185C_id002"; gene_id "YDR185C"; gene_name "UPS3"; transcript_biotype "protein_coding"; +chrIV SGD exon 831711 832576 . - . transcript_id "YDR185C_id002"; gene_id "YDR185C"; gene_name "UPS3"; +chrIV SGD transcript 831934 832473 . - . transcript_id "YDR185C_id001"; gene_id "YDR185C"; gene_name "UPS3"; transcript_biotype "protein_coding"; +chrIV SGD exon 831934 832473 . - 0 transcript_id "YDR185C_id001"; gene_name "UPS3"; gene_id "YDR185C"; +chrIV SGD gene 832859 835492 . - . gene_id "YDR186C"; gene_biotype "protein_coding"; +chrIV SGD transcript 832859 835492 . - . transcript_id "YDR186C_id001"; gene_id "YDR186C"; gene_name "SND1"; transcript_biotype "protein_coding"; +chrIV SGD exon 832859 835492 . - 0 transcript_id "YDR186C_id001"; gene_name "SND1"; gene_id "YDR186C"; +chrIV SGD gene 835932 838224 . + . gene_id "YDR188W"; gene_biotype "protein_coding"; +chrIV SGD transcript 835932 838224 . + . transcript_id "YDR188W_id006"; gene_id "YDR188W"; gene_name "CCT6"; transcript_biotype "protein_coding"; +chrIV SGD exon 835932 838224 . + . transcript_id "YDR188W_id006"; gene_id "YDR188W"; gene_name "CCT6"; +chrIV SGD gene 836228 836746 . - . gene_id "YDR187C"; gene_biotype "protein_coding"; +chrIV SGD transcript 836228 836746 . - . transcript_id "YDR187C_mRNA"; gene_id "YDR187C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 836228 836746 . - 0 transcript_id "YDR187C_mRNA"; gene_id "YDR187C"; +chrIV SGD transcript 836421 838061 . + . transcript_id "YDR188W_id001"; gene_id "YDR188W"; gene_name "CCT6"; transcript_biotype "protein_coding"; +chrIV SGD exon 836421 838061 . + 0 transcript_id "YDR188W_id001"; gene_name "CCT6"; gene_id "YDR188W"; +chrIV SGD gene 838344 840506 . + . gene_id "YDR189W"; gene_biotype "protein_coding"; +chrIV SGD transcript 838344 840506 . + . transcript_id "YDR189W_id002"; gene_id "YDR189W"; gene_name "SLY1"; transcript_biotype "protein_coding"; +chrIV SGD exon 838344 840506 . + . transcript_id "YDR189W_id002"; gene_id "YDR189W"; gene_name "SLY1"; +chrIV SGD transcript 838392 840392 . + . transcript_id "YDR189W_id001"; gene_id "YDR189W"; gene_name "SLY1"; transcript_biotype "protein_coding"; +chrIV SGD exon 838392 840392 . + 0 transcript_id "YDR189W_id001"; gene_name "SLY1"; gene_id "YDR189W"; +chrIV SGD gene 840304 842041 . - . gene_id "YDR190C"; gene_biotype "protein_coding"; +chrIV SGD transcript 840304 842041 . - . transcript_id "YDR190C_id001"; gene_id "YDR190C"; gene_name "RVB1"; transcript_biotype "protein_coding"; +chrIV SGD exon 840304 842041 . - . transcript_id "YDR190C_id001"; gene_id "YDR190C"; gene_name "RVB1"; +chrIV SGD transcript 840604 841995 . - . transcript_id "YDR190C_id002"; gene_id "YDR190C"; gene_name "RVB1"; transcript_biotype "protein_coding"; +chrIV SGD exon 840604 841995 . - 0 transcript_id "YDR190C_id002"; gene_name "RVB1"; gene_id "YDR190C"; +chrIV SGD gene 842293 843558 . + . gene_id "YDR191W"; gene_biotype "protein_coding"; +chrIV SGD transcript 842293 843558 . + . transcript_id "YDR191W_id002"; gene_id "YDR191W"; gene_name "HST4"; transcript_biotype "protein_coding"; +chrIV SGD exon 842293 843558 . + . transcript_id "YDR191W_id002"; gene_id "YDR191W"; gene_name "HST4"; +chrIV SGD transcript 842337 843449 . + . transcript_id "YDR191W_id001"; gene_id "YDR191W"; gene_name "HST4"; transcript_biotype "protein_coding"; +chrIV SGD exon 842337 843449 . + 0 transcript_id "YDR191W_id001"; gene_name "HST4"; gene_id "YDR191W"; +chrIV SGD gene 843477 844940 . - . gene_id "YDR192C"; gene_biotype "protein_coding"; +chrIV SGD transcript 843477 844940 . - . transcript_id "YDR192C_id003"; gene_id "YDR192C"; gene_name "NUP42"; transcript_biotype "protein_coding"; +chrIV SGD exon 843477 844940 . - . transcript_id "YDR192C_id003"; gene_id "YDR192C"; gene_name "NUP42"; +chrIV SGD transcript 843569 844861 . - . transcript_id "YDR192C_id001"; gene_id "YDR192C"; gene_name "NUP42"; transcript_biotype "protein_coding"; +chrIV SGD exon 843569 844861 . - 0 transcript_id "YDR192C_id001"; gene_name "NUP42"; gene_id "YDR192C"; +chrIV SGD gene 844554 844952 . + . gene_id "YDR193W"; gene_biotype "protein_coding"; +chrIV SGD transcript 844554 844952 . + . transcript_id "YDR193W_mRNA"; gene_id "YDR193W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 844554 844952 . + 0 transcript_id "YDR193W_mRNA"; gene_id "YDR193W"; +chrIV SGD gene 845797 847972 . - . gene_id "YDR194C"; gene_biotype "protein_coding"; +chrIV SGD transcript 845797 847972 . - . transcript_id "YDR194C_id005"; gene_id "YDR194C"; gene_name "MSS116"; transcript_biotype "protein_coding"; +chrIV SGD exon 845797 847972 . - . transcript_id "YDR194C_id005"; gene_id "YDR194C"; gene_name "MSS116"; +chrIV SGD transcript 845952 847946 . - . transcript_id "YDR194C_id001"; gene_id "YDR194C"; gene_name "MSS116"; transcript_biotype "protein_coding"; +chrIV SGD exon 845952 847946 . - 0 transcript_id "YDR194C_id001"; gene_name "MSS116"; gene_id "YDR194C"; +chrIV SGD gene 848071 848223 . + . gene_id "YDR194W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 848071 848223 . + . transcript_id "YDR194W-A_mRNA"; gene_id "YDR194W-A"; transcript_biotype "protein_coding"; +chrIV SGD CDS 848071 848223 . + 0 transcript_id "YDR194W-A_mRNA"; gene_id "YDR194W-A"; +chrIV SGD gene 848345 850279 . + . gene_id "YDR195W"; gene_biotype "protein_coding"; +chrIV SGD transcript 848345 850279 . + . transcript_id "YDR195W_id003"; gene_id "YDR195W"; gene_name "REF2"; transcript_biotype "protein_coding"; +chrIV SGD exon 848345 850279 . + . transcript_id "YDR195W_id003"; gene_id "YDR195W"; gene_name "REF2"; +chrIV SGD transcript 848599 850200 . + . transcript_id "YDR195W_id001"; gene_id "YDR195W"; gene_name "REF2"; transcript_biotype "protein_coding"; +chrIV SGD exon 848599 850200 . + 0 transcript_id "YDR195W_id001"; gene_name "REF2"; gene_id "YDR195W"; +chrIV SGD gene 850036 851010 . - . gene_id "YDR196C"; gene_biotype "protein_coding"; +chrIV SGD transcript 850036 851010 . - . transcript_id "YDR196C_id006"; gene_id "YDR196C"; gene_name "CAB5"; transcript_biotype "protein_coding"; +chrIV SGD exon 850036 851010 . - . transcript_id "YDR196C_id006"; gene_id "YDR196C"; gene_name "CAB5"; +chrIV SGD transcript 850274 850999 . - . transcript_id "YDR196C_id001"; gene_id "YDR196C"; gene_name "CAB5"; transcript_biotype "protein_coding"; +chrIV SGD exon 850274 850999 . - 0 transcript_id "YDR196C_id001"; gene_name "CAB5"; gene_id "YDR196C"; +chrIV SGD gene 851195 852768 . + . gene_id "YDR197W"; gene_biotype "protein_coding"; +chrIV SGD transcript 851195 852768 . + . transcript_id "YDR197W_id001"; gene_id "YDR197W"; gene_name "CBS2"; transcript_biotype "protein_coding"; +chrIV SGD exon 851195 852768 . + . transcript_id "YDR197W_id001"; gene_id "YDR197W"; gene_name "CBS2"; +chrIV SGD transcript 851228 852397 . + . transcript_id "YDR197W_id003"; gene_id "YDR197W"; gene_name "CBS2"; transcript_biotype "protein_coding"; +chrIV SGD exon 851228 852397 . + 0 transcript_id "YDR197W_id003"; gene_name "CBS2"; gene_id "YDR197W"; +chrIV SGD gene 852386 854026 . - . gene_id "YDR198C"; gene_biotype "protein_coding"; +chrIV SGD transcript 852386 854026 . - . transcript_id "YDR198C_id002"; gene_id "YDR198C"; gene_name "RKM2"; transcript_biotype "protein_coding"; +chrIV SGD exon 852386 854026 . - . transcript_id "YDR198C_id002"; gene_id "YDR198C"; gene_name "RKM2"; +chrIV SGD transcript 852533 853972 . - . transcript_id "YDR198C_id001"; gene_id "YDR198C"; gene_name "RKM2"; transcript_biotype "protein_coding"; +chrIV SGD exon 852533 853972 . - 0 transcript_id "YDR198C_id001"; gene_name "RKM2"; gene_id "YDR198C"; +chrIV SGD gene 854144 856136 . - . gene_id "YDR200C"; gene_biotype "protein_coding"; +chrIV SGD transcript 854144 856136 . - . transcript_id "YDR200C_id005"; gene_id "YDR200C"; gene_name "VPS64"; transcript_biotype "protein_coding"; +chrIV SGD exon 854144 856136 . - . transcript_id "YDR200C_id005"; gene_id "YDR200C"; gene_name "VPS64"; +chrIV SGD gene 854175 854540 . + . gene_id "YDR199W"; gene_biotype "protein_coding"; +chrIV SGD transcript 854175 854540 . + . transcript_id "YDR199W_mRNA"; gene_id "YDR199W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 854175 854540 . + 0 transcript_id "YDR199W_mRNA"; gene_id "YDR199W"; +chrIV SGD transcript 854279 856093 . - . transcript_id "YDR200C_id001"; gene_id "YDR200C"; gene_name "VPS64"; transcript_biotype "protein_coding"; +chrIV SGD exon 854279 856093 . - 0 transcript_id "YDR200C_id001"; gene_name "VPS64"; gene_id "YDR200C"; +chrIV SGD gene 856278 857203 . + . gene_id "YDR201W"; gene_biotype "protein_coding"; +chrIV SGD transcript 856278 857203 . + . transcript_id "YDR201W_id003"; gene_id "YDR201W"; gene_name "SPC19"; transcript_biotype "protein_coding"; +chrIV SGD exon 856278 857203 . + . transcript_id "YDR201W_id003"; gene_id "YDR201W"; gene_name "SPC19"; +chrIV SGD transcript 856317 856814 . + . transcript_id "YDR201W_id001"; gene_id "YDR201W"; gene_name "SPC19"; transcript_biotype "protein_coding"; +chrIV SGD exon 856317 856814 . + 0 transcript_id "YDR201W_id001"; gene_name "SPC19"; gene_id "YDR201W"; +chrIV SGD gene 856742 857984 . - . gene_id "YDR202C"; gene_biotype "protein_coding"; +chrIV SGD transcript 856742 857984 . - . transcript_id "YDR202C_id003"; gene_id "YDR202C"; gene_name "RAV2"; transcript_biotype "protein_coding"; +chrIV SGD exon 856742 857984 . - . transcript_id "YDR202C_id003"; gene_id "YDR202C"; gene_name "RAV2"; +chrIV SGD transcript 856898 857953 . - . transcript_id "YDR202C_id001"; gene_id "YDR202C"; gene_name "RAV2"; transcript_biotype "protein_coding"; +chrIV SGD exon 856898 857953 . - 0 transcript_id "YDR202C_id001"; gene_name "RAV2"; gene_id "YDR202C"; +chrIV SGD gene 857682 857999 . + . gene_id "YDR203W"; gene_biotype "protein_coding"; +chrIV SGD transcript 857682 857999 . + . transcript_id "YDR203W_mRNA"; gene_id "YDR203W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 857682 857999 . + 0 transcript_id "YDR203W_mRNA"; gene_id "YDR203W"; +chrIV SGD gene 858125 859416 . + . gene_id "YDR204W"; gene_biotype "protein_coding"; +chrIV SGD transcript 858125 859416 . + . transcript_id "YDR204W_id001"; gene_id "YDR204W"; gene_name "COQ4"; transcript_biotype "protein_coding"; +chrIV SGD exon 858125 859416 . + . transcript_id "YDR204W_id001"; gene_id "YDR204W"; gene_name "COQ4"; +chrIV SGD transcript 858137 859144 . + . transcript_id "YDR204W_id003"; gene_id "YDR204W"; gene_name "COQ4"; transcript_biotype "protein_coding"; +chrIV SGD exon 858137 859144 . + 0 transcript_id "YDR204W_id003"; gene_name "COQ4"; gene_id "YDR204W"; +chrIV SGD gene 859333 861570 . + . gene_id "YDR205W"; gene_biotype "protein_coding"; +chrIV SGD transcript 859333 861570 . + . transcript_id "YDR205W_id004"; gene_id "YDR205W"; gene_name "MSC2"; transcript_biotype "protein_coding"; +chrIV SGD exon 859333 861570 . + . transcript_id "YDR205W_id004"; gene_id "YDR205W"; gene_name "MSC2"; +chrIV SGD transcript 859346 861520 . + . transcript_id "YDR205W_id001"; gene_id "YDR205W"; gene_name "MSC2"; transcript_biotype "protein_coding"; +chrIV SGD exon 859346 861520 . + 0 transcript_id "YDR205W_id001"; gene_name "MSC2"; gene_id "YDR205W"; +chrIV SGD gene 862054 864708 . + . gene_id "YDR206W"; gene_biotype "protein_coding"; +chrIV SGD transcript 862054 864708 . + . transcript_id "YDR206W_mRNA"; gene_id "YDR206W"; gene_name "EBS1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 862054 864708 . + 0 transcript_id "YDR206W_mRNA"; gene_name "EBS1"; gene_id "YDR206W"; +chrIV SGD gene 865012 867522 . - . gene_id "YDR207C"; gene_biotype "protein_coding"; +chrIV SGD transcript 865012 867522 . - . transcript_id "YDR207C_id001"; gene_id "YDR207C"; gene_name "UME6"; transcript_biotype "protein_coding"; +chrIV SGD exon 865012 867522 . - 0 transcript_id "YDR207C_id001"; gene_name "UME6"; gene_id "YDR207C"; +chrIV SGD gene 868034 870697 . + . gene_id "YDR208W"; gene_biotype "protein_coding"; +chrIV SGD transcript 868034 870697 . + . transcript_id "YDR208W_id001"; gene_id "YDR208W"; gene_name "MSS4"; transcript_biotype "protein_coding"; +chrIV SGD exon 868034 870697 . + . transcript_id "YDR208W_id001"; gene_id "YDR208W"; gene_name "MSS4"; +chrIV SGD transcript 868224 870563 . + . transcript_id "YDR208W_id002"; gene_id "YDR208W"; gene_name "MSS4"; transcript_biotype "protein_coding"; +chrIV SGD exon 868224 870563 . + 0 transcript_id "YDR208W_id002"; gene_name "MSS4"; gene_id "YDR208W"; +chrIV SGD gene 870813 871707 . + . gene_id "YDR210W"; gene_biotype "protein_coding"; +chrIV SGD transcript 870813 871707 . + . transcript_id "YDR210W_id001"; gene_id "YDR210W"; transcript_biotype "protein_coding"; +chrIV SGD exon 870813 871707 . + . transcript_id "YDR210W_id001"; gene_id "YDR210W"; +chrIV SGD gene 871036 871449 . - . gene_id "YDR209C"; gene_biotype "protein_coding"; +chrIV SGD transcript 871036 871449 . - . transcript_id "YDR209C_mRNA"; gene_id "YDR209C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 871036 871449 . - 0 transcript_id "YDR209C_mRNA"; gene_id "YDR209C"; +chrIV SGD transcript 871074 871301 . + . transcript_id "YDR210W_id003"; gene_id "YDR210W"; transcript_biotype "protein_coding"; +chrIV SGD exon 871074 871301 . + 0 transcript_id "YDR210W_id003"; gene_id "YDR210W"; +chrIV SGD gene 872112 873428 . + . gene_id "YDR210W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 872112 873428 . + . transcript_id "YDR210W-A_dummy"; gene_id "YDR210W-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 872112 873428 . + 0 transcript_id "YDR210W-A_dummy"; gene_id "YDR210W-A"; +chrIV SGD gene 872112 877425 . + . gene_id "YDR210W-B"; gene_biotype "protein_coding"; +chrIV SGD transcript 872112 877425 . + . transcript_id "YDR210W-B_dummy"; gene_id "YDR210W-B"; transcript_biotype "protein_coding"; +chrIV SGD exon 872112 873404 . + 0 transcript_id "YDR210W-B_dummy"; gene_id "YDR210W-B"; +chrIV SGD exon 873406 877425 . + 0 transcript_id "YDR210W-B_dummy"; gene_id "YDR210W-B"; +chrIV SGD gene 878659 883927 . - . gene_id "YDR210C-D"; gene_biotype "protein_coding"; +chrIV SGD transcript 878659 883927 . - . transcript_id "YDR210C-D_dummy"; gene_id "YDR210C-D"; transcript_biotype "protein_coding"; +chrIV SGD exon 878659 882621 . - 0 transcript_id "YDR210C-D_dummy"; gene_id "YDR210C-D"; +chrIV SGD exon 882623 883927 . - 0 transcript_id "YDR210C-D_dummy"; gene_id "YDR210C-D"; +chrIV SGD gene 882605 883927 . - . gene_id "YDR210C-C"; gene_biotype "protein_coding"; +chrIV SGD transcript 882605 883927 . - . transcript_id "YDR210C-C_dummy"; gene_id "YDR210C-C"; transcript_biotype "protein_coding"; +chrIV SGD exon 882605 883927 . - 0 transcript_id "YDR210C-C_dummy"; gene_id "YDR210C-C"; +chrIV SGD gene 884361 884493 . + . gene_id "YNCD0017W"; gene_biotype "ncRNA"; +chrIV SGD transcript 884361 884493 . + . transcript_id "YNCD0017W_tRNA"; gene_id "YNCD0017W"; transcript_biotype "ncRNA"; +chrIV SGD exon 884361 884397 . + . transcript_id "YNCD0017W_tRNA"; gene_id "YNCD0017W"; +chrIV SGD exon 884458 884493 . + . transcript_id "YNCD0017W_tRNA"; gene_id "YNCD0017W"; +chrIV SGD gene 884639 887205 . + . gene_id "YDR211W"; gene_biotype "protein_coding"; +chrIV SGD transcript 884639 887205 . + . transcript_id "YDR211W_id001"; gene_id "YDR211W"; gene_name "GCD6"; transcript_biotype "protein_coding"; +chrIV SGD exon 884639 887205 . + . transcript_id "YDR211W_id001"; gene_id "YDR211W"; gene_name "GCD6"; +chrIV SGD transcript 884727 886865 . + . transcript_id "YDR211W_id003"; gene_id "YDR211W"; gene_name "GCD6"; transcript_biotype "protein_coding"; +chrIV SGD exon 884727 886865 . + 0 transcript_id "YDR211W_id003"; gene_name "GCD6"; gene_id "YDR211W"; +chrIV SGD gene 887164 889651 . + . gene_id "YDR212W"; gene_biotype "protein_coding"; +chrIV SGD transcript 887164 889651 . + . transcript_id "YDR212W_id001"; gene_id "YDR212W"; gene_name "TCP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 887164 889651 . + . transcript_id "YDR212W_id001"; gene_id "YDR212W"; gene_name "TCP1"; +chrIV SGD transcript 887232 888911 . + . transcript_id "YDR212W_id002"; gene_id "YDR212W"; gene_name "TCP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 887232 888911 . + 0 transcript_id "YDR212W_id002"; gene_name "TCP1"; gene_id "YDR212W"; +chrIV SGD gene 889509 892532 . + . gene_id "YDR213W"; gene_biotype "protein_coding"; +chrIV SGD transcript 889509 892532 . + . transcript_id "YDR213W_id001"; gene_id "YDR213W"; gene_name "UPC2"; transcript_biotype "protein_coding"; +chrIV SGD exon 889509 892532 . + . transcript_id "YDR213W_id001"; gene_id "YDR213W"; gene_name "UPC2"; +chrIV SGD transcript 889751 892492 . + . transcript_id "YDR213W_id002"; gene_id "YDR213W"; gene_name "UPC2"; transcript_biotype "protein_coding"; +chrIV SGD exon 889751 892492 . + 0 transcript_id "YDR213W_id002"; gene_name "UPC2"; gene_id "YDR213W"; +chrIV SGD gene 892734 894023 . + . gene_id "YDR214W"; gene_biotype "protein_coding"; +chrIV SGD transcript 892734 894023 . + . transcript_id "YDR214W_id002"; gene_id "YDR214W"; gene_name "AHA1"; transcript_biotype "protein_coding"; +chrIV SGD exon 892734 894023 . + . transcript_id "YDR214W_id002"; gene_id "YDR214W"; gene_name "AHA1"; +chrIV SGD transcript 892875 893927 . + . transcript_id "YDR214W_id001"; gene_id "YDR214W"; gene_name "AHA1"; transcript_biotype "protein_coding"; +chrIV SGD exon 892875 893927 . + 0 transcript_id "YDR214W_id001"; gene_name "AHA1"; gene_id "YDR214W"; +chrIV SGD gene 894089 894502 . - . gene_id "YDR215C"; gene_biotype "protein_coding"; +chrIV SGD transcript 894089 894502 . - . transcript_id "YDR215C_id001"; gene_id "YDR215C"; transcript_biotype "protein_coding"; +chrIV SGD exon 894089 894502 . - 0 transcript_id "YDR215C_id001"; gene_id "YDR215C"; +chrIV SGD gene 895035 899006 . + . gene_id "YDR216W"; gene_biotype "protein_coding"; +chrIV SGD transcript 895035 899006 . + . transcript_id "YDR216W_mRNA"; gene_id "YDR216W"; gene_name "ADR1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 895035 899006 . + 0 transcript_id "YDR216W_mRNA"; gene_name "ADR1"; gene_id "YDR216W"; +chrIV SGD gene 899551 903480 . - . gene_id "YDR217C"; gene_biotype "protein_coding"; +chrIV SGD transcript 899551 903480 . - . transcript_id "YDR217C_mRNA"; gene_id "YDR217C"; gene_name "RAD9"; transcript_biotype "protein_coding"; +chrIV SGD CDS 899551 903480 . - 0 transcript_id "YDR217C_mRNA"; gene_name "RAD9"; gene_id "YDR217C"; +chrIV SGD gene 903781 905052 . - . gene_id "YDR218C"; gene_biotype "protein_coding"; +chrIV SGD transcript 903781 905052 . - . transcript_id "YDR218C_mRNA"; gene_id "YDR218C"; gene_name "SPR28"; transcript_biotype "protein_coding"; +chrIV SGD CDS 903781 905052 . - 0 transcript_id "YDR218C_mRNA"; gene_name "SPR28"; gene_id "YDR218C"; +chrIV SGD gene 905262 907108 . - . gene_id "YDR219C"; gene_biotype "protein_coding"; +chrIV SGD transcript 905262 907108 . - . transcript_id "YDR219C_id002"; gene_id "YDR219C"; gene_name "MFB1"; transcript_biotype "protein_coding"; +chrIV SGD exon 905262 907108 . - . transcript_id "YDR219C_id002"; gene_id "YDR219C"; gene_name "MFB1"; +chrIV SGD transcript 905455 906852 . - . transcript_id "YDR219C_id001"; gene_id "YDR219C"; gene_name "MFB1"; transcript_biotype "protein_coding"; +chrIV SGD exon 905455 906852 . - 0 transcript_id "YDR219C_id001"; gene_name "MFB1"; gene_id "YDR219C"; +chrIV SGD gene 907000 907293 . - . gene_id "YDR220C"; gene_biotype "protein_coding"; +chrIV SGD transcript 907000 907293 . - . transcript_id "YDR220C_mRNA"; gene_id "YDR220C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 907000 907293 . - 0 transcript_id "YDR220C_mRNA"; gene_id "YDR220C"; +chrIV SGD gene 907309 909969 . + . gene_id "YDR221W"; gene_biotype "protein_coding"; +chrIV SGD transcript 907309 909969 . + . transcript_id "YDR221W_id003"; gene_id "YDR221W"; gene_name "GTB1"; transcript_biotype "protein_coding"; +chrIV SGD exon 907309 909969 . + . transcript_id "YDR221W_id003"; gene_id "YDR221W"; gene_name "GTB1"; +chrIV SGD transcript 907330 909438 . + . transcript_id "YDR221W_id001"; gene_id "YDR221W"; gene_name "GTB1"; transcript_biotype "protein_coding"; +chrIV SGD exon 907330 909438 . + 0 transcript_id "YDR221W_id001"; gene_name "GTB1"; gene_id "YDR221W"; +chrIV SGD gene 909781 911452 . + . gene_id "YDR222W"; gene_biotype "protein_coding"; +chrIV SGD transcript 909781 911452 . + . transcript_id "YDR222W_id002"; gene_id "YDR222W"; transcript_biotype "protein_coding"; +chrIV SGD exon 909781 911452 . + . transcript_id "YDR222W_id002"; gene_id "YDR222W"; +chrIV SGD transcript 910054 911301 . + . transcript_id "YDR222W_id001"; gene_id "YDR222W"; transcript_biotype "protein_coding"; +chrIV SGD exon 910054 911301 . + 0 transcript_id "YDR222W_id001"; gene_id "YDR222W"; +chrIV SGD gene 912099 913502 . + . gene_id "YDR223W"; gene_biotype "protein_coding"; +chrIV SGD transcript 912099 913502 . + . transcript_id "YDR223W_id001"; gene_id "YDR223W"; gene_name "CRF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 912099 913502 . + 0 transcript_id "YDR223W_id001"; gene_name "CRF1"; gene_id "YDR223W"; +chrIV SGD gene 914175 914828 . - . gene_id "YDR224C"; gene_biotype "protein_coding"; +chrIV SGD transcript 914175 914828 . - . transcript_id "YDR224C_id006"; gene_id "YDR224C"; gene_name "HTB1"; transcript_biotype "protein_coding"; +chrIV SGD exon 914175 914828 . - . transcript_id "YDR224C_id006"; gene_id "YDR224C"; gene_name "HTB1"; +chrIV SGD transcript 914317 914712 . - . transcript_id "YDR224C_id001"; gene_id "YDR224C"; gene_name "HTB1"; transcript_biotype "protein_coding"; +chrIV SGD exon 914317 914712 . - 0 transcript_id "YDR224C_id001"; gene_name "HTB1"; gene_id "YDR224C"; +chrIV SGD gene 914833 916083 . + . gene_id "YDR225W"; gene_biotype "protein_coding"; +chrIV SGD transcript 914833 916083 . + . transcript_id "YDR225W_id001"; gene_id "YDR225W"; gene_name "HTA1"; transcript_biotype "protein_coding"; +chrIV SGD exon 914833 916083 . + . transcript_id "YDR225W_id001"; gene_id "YDR225W"; gene_name "HTA1"; +chrIV SGD transcript 915530 915928 . + . transcript_id "YDR225W_id005"; gene_id "YDR225W"; gene_name "HTA1"; transcript_biotype "protein_coding"; +chrIV SGD exon 915530 915928 . + 0 transcript_id "YDR225W_id005"; gene_name "HTA1"; gene_id "YDR225W"; +chrIV SGD gene 916197 917271 . + . gene_id "YDR226W"; gene_biotype "protein_coding"; +chrIV SGD transcript 916197 917271 . + . transcript_id "YDR226W_id001"; gene_id "YDR226W"; gene_name "ADK1"; transcript_biotype "protein_coding"; +chrIV SGD exon 916197 917271 . + . transcript_id "YDR226W_id001"; gene_id "YDR226W"; gene_name "ADK1"; +chrIV SGD transcript 916486 917154 . + . transcript_id "YDR226W_id007"; gene_id "YDR226W"; gene_name "ADK1"; transcript_biotype "protein_coding"; +chrIV SGD exon 916486 917154 . + 0 transcript_id "YDR226W_id007"; gene_name "ADK1"; gene_id "YDR226W"; +chrIV SGD gene 917571 921647 . + . gene_id "YDR227W"; gene_biotype "protein_coding"; +chrIV SGD transcript 917571 921647 . + . transcript_id "YDR227W_id001"; gene_id "YDR227W"; gene_name "SIR4"; transcript_biotype "protein_coding"; +chrIV SGD exon 917571 921647 . + 0 transcript_id "YDR227W_id001"; gene_name "SIR4"; gene_id "YDR227W"; +chrIV SGD gene 921860 923897 . - . gene_id "YDR228C"; gene_biotype "protein_coding"; +chrIV SGD transcript 921860 923897 . - . transcript_id "YDR228C_id002"; gene_id "YDR228C"; gene_name "PCF11"; transcript_biotype "protein_coding"; +chrIV SGD exon 921860 923897 . - . transcript_id "YDR228C_id002"; gene_id "YDR228C"; gene_name "PCF11"; +chrIV SGD transcript 921926 923806 . - . transcript_id "YDR228C_id001"; gene_id "YDR228C"; gene_name "PCF11"; transcript_biotype "protein_coding"; +chrIV SGD exon 921926 923806 . - 0 transcript_id "YDR228C_id001"; gene_name "PCF11"; gene_id "YDR228C"; +chrIV SGD gene 924644 926210 . + . gene_id "YDR229W"; gene_biotype "protein_coding"; +chrIV SGD transcript 924644 926210 . + . transcript_id "YDR229W_id001"; gene_id "YDR229W"; gene_name "IVY1"; transcript_biotype "protein_coding"; +chrIV SGD exon 924644 926210 . + . transcript_id "YDR229W_id001"; gene_id "YDR229W"; gene_name "IVY1"; +chrIV SGD transcript 924785 926146 . + . transcript_id "YDR229W_id003"; gene_id "YDR229W"; gene_name "IVY1"; transcript_biotype "protein_coding"; +chrIV SGD exon 924785 926146 . + 0 transcript_id "YDR229W_id003"; gene_name "IVY1"; gene_id "YDR229W"; +chrIV SGD gene 926000 926935 . - . gene_id "YDR231C"; gene_biotype "protein_coding"; +chrIV SGD transcript 926000 926935 . - . transcript_id "YDR231C_id003"; gene_id "YDR231C"; gene_name "COX20"; transcript_biotype "protein_coding"; +chrIV SGD exon 926000 926935 . - . transcript_id "YDR231C_id003"; gene_id "YDR231C"; gene_name "COX20"; +chrIV SGD gene 926223 926570 . + . gene_id "YDR230W"; gene_biotype "protein_coding"; +chrIV SGD transcript 926223 926570 . + . transcript_id "YDR230W_mRNA"; gene_id "YDR230W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 926223 926570 . + 0 transcript_id "YDR230W_mRNA"; gene_id "YDR230W"; +chrIV SGD transcript 926293 926910 . - . transcript_id "YDR231C_id001"; gene_id "YDR231C"; gene_name "COX20"; transcript_biotype "protein_coding"; +chrIV SGD exon 926293 926910 . - 0 transcript_id "YDR231C_id001"; gene_name "COX20"; gene_id "YDR231C"; +chrIV SGD gene 927201 929526 . + . gene_id "YDR232W"; gene_biotype "protein_coding"; +chrIV SGD transcript 927201 929526 . + . transcript_id "YDR232W_id001"; gene_id "YDR232W"; gene_name "HEM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 927201 929526 . + . transcript_id "YDR232W_id001"; gene_id "YDR232W"; gene_name "HEM1"; +chrIV SGD transcript 927452 929098 . + . transcript_id "YDR232W_id003"; gene_id "YDR232W"; gene_name "HEM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 927452 929098 . + 0 transcript_id "YDR232W_id003"; gene_name "HEM1"; gene_id "YDR232W"; +chrIV SGD gene 929324 930646 . - . gene_id "YDR233C"; gene_biotype "protein_coding"; +chrIV SGD transcript 929324 930646 . - . transcript_id "YDR233C_id001"; gene_id "YDR233C"; gene_name "RTN1"; transcript_biotype "protein_coding"; +chrIV SGD exon 929324 930646 . - . transcript_id "YDR233C_id001"; gene_id "YDR233C"; gene_name "RTN1"; +chrIV SGD transcript 929470 930357 . - . transcript_id "YDR233C_id002"; gene_id "YDR233C"; gene_name "RTN1"; transcript_biotype "protein_coding"; +chrIV SGD exon 929470 930357 . - 0 transcript_id "YDR233C_id002"; gene_name "RTN1"; gene_id "YDR233C"; +chrIV SGD gene 930985 933376 . + . gene_id "YDR234W"; gene_biotype "protein_coding"; +chrIV SGD transcript 930985 933376 . + . transcript_id "YDR234W_id002"; gene_id "YDR234W"; gene_name "LYS4"; transcript_biotype "protein_coding"; +chrIV SGD exon 930985 933376 . + . transcript_id "YDR234W_id002"; gene_id "YDR234W"; gene_name "LYS4"; +chrIV SGD transcript 931129 933210 . + . transcript_id "YDR234W_id001"; gene_id "YDR234W"; gene_name "LYS4"; transcript_biotype "protein_coding"; +chrIV SGD exon 931129 933210 . + 0 transcript_id "YDR234W_id001"; gene_name "LYS4"; gene_id "YDR234W"; +chrIV SGD gene 933481 935221 . + . gene_id "YDR235W"; gene_biotype "protein_coding"; +chrIV SGD transcript 933481 935221 . + . transcript_id "YDR235W_id002"; gene_id "YDR235W"; gene_name "PRP42"; transcript_biotype "protein_coding"; +chrIV SGD exon 933481 935221 . + . transcript_id "YDR235W_id002"; gene_id "YDR235W"; gene_name "PRP42"; +chrIV SGD transcript 933504 935138 . + . transcript_id "YDR235W_id001"; gene_id "YDR235W"; gene_name "PRP42"; transcript_biotype "protein_coding"; +chrIV SGD exon 933504 935138 . + 0 transcript_id "YDR235W_id001"; gene_name "PRP42"; gene_id "YDR235W"; +chrIV SGD gene 935139 936346 . - . gene_id "YDR236C"; gene_biotype "protein_coding"; +chrIV SGD transcript 935139 936346 . - . transcript_id "YDR236C_id004"; gene_id "YDR236C"; gene_name "FMN1"; transcript_biotype "protein_coding"; +chrIV SGD exon 935139 936346 . - . transcript_id "YDR236C_id004"; gene_id "YDR236C"; gene_name "FMN1"; +chrIV SGD transcript 935236 935892 . - . transcript_id "YDR236C_id001"; gene_id "YDR236C"; gene_name "FMN1"; transcript_biotype "protein_coding"; +chrIV SGD exon 935236 935892 . - 0 transcript_id "YDR236C_id001"; gene_name "FMN1"; gene_id "YDR236C"; +chrIV SGD gene 936473 937781 . + . gene_id "YDR237W"; gene_biotype "protein_coding"; +chrIV SGD transcript 936473 937781 . + . transcript_id "YDR237W_id004"; gene_id "YDR237W"; gene_name "MRPL7"; transcript_biotype "protein_coding"; +chrIV SGD exon 936473 937781 . + . transcript_id "YDR237W_id004"; gene_id "YDR237W"; gene_name "MRPL7"; +chrIV SGD transcript 936615 937493 . + . transcript_id "YDR237W_id001"; gene_id "YDR237W"; gene_name "MRPL7"; transcript_biotype "protein_coding"; +chrIV SGD exon 936615 937493 . + 0 transcript_id "YDR237W_id001"; gene_name "MRPL7"; gene_id "YDR237W"; +chrIV SGD gene 937544 940845 . - . gene_id "YDR238C"; gene_biotype "protein_coding"; +chrIV SGD transcript 937544 940845 . - . transcript_id "YDR238C_id003"; gene_id "YDR238C"; gene_name "SEC26"; transcript_biotype "protein_coding"; +chrIV SGD exon 937544 940845 . - . transcript_id "YDR238C_id003"; gene_id "YDR238C"; gene_name "SEC26"; +chrIV SGD transcript 937895 940816 . - . transcript_id "YDR238C_id001"; gene_id "YDR238C"; gene_name "SEC26"; transcript_biotype "protein_coding"; +chrIV SGD exon 937895 940816 . - 0 transcript_id "YDR238C_id001"; gene_name "SEC26"; gene_id "YDR238C"; +chrIV SGD gene 941057 943420 . - . gene_id "YDR239C"; gene_biotype "protein_coding"; +chrIV SGD transcript 941057 943420 . - . transcript_id "YDR239C_id001"; gene_id "YDR239C"; transcript_biotype "protein_coding"; +chrIV SGD exon 941057 943420 . - 0 transcript_id "YDR239C_id001"; gene_id "YDR239C"; +chrIV SGD gene 943615 945205 . - . gene_id "YDR240C"; gene_biotype "protein_coding"; +chrIV SGD transcript 943615 945205 . - . transcript_id "YDR240C_id001"; gene_id "YDR240C"; gene_name "SNU56"; transcript_biotype "protein_coding"; +chrIV SGD exon 943615 945205 . - . transcript_id "YDR240C_id001"; gene_id "YDR240C"; gene_name "SNU56"; +chrIV SGD transcript 943674 945152 . - . transcript_id "YDR240C_id002"; gene_id "YDR240C"; gene_name "SNU56"; transcript_biotype "protein_coding"; +chrIV SGD exon 943674 945152 . - 0 transcript_id "YDR240C_id002"; gene_name "SNU56"; gene_id "YDR240C"; +chrIV SGD gene 945151 945438 . + . gene_id "YDR241W"; gene_biotype "protein_coding"; +chrIV SGD transcript 945151 945438 . + . transcript_id "YDR241W_mRNA"; gene_id "YDR241W"; gene_name "BUD26"; transcript_biotype "protein_coding"; +chrIV SGD CDS 945151 945438 . + 0 transcript_id "YDR241W_mRNA"; gene_name "BUD26"; gene_id "YDR241W"; +chrIV SGD gene 946312 946400 . + . gene_id "YNCD0018W"; gene_biotype "ncRNA"; +chrIV SGD transcript 946312 946400 . + . transcript_id "YNCD0018W_tRNA"; gene_id "YNCD0018W"; gene_name "SUP2"; transcript_biotype "ncRNA"; +chrIV SGD exon 946312 946350 . + . transcript_id "YNCD0018W_tRNA"; gene_name "SUP2"; gene_id "YNCD0018W"; +chrIV SGD exon 946365 946400 . + . transcript_id "YNCD0018W_tRNA"; gene_name "SUP2"; gene_id "YNCD0018W"; +chrIV SGD gene 946692 948551 . + . gene_id "YDR242W"; gene_biotype "protein_coding"; +chrIV SGD transcript 946692 948551 . + . transcript_id "YDR242W_id002"; gene_id "YDR242W"; gene_name "AMD2"; transcript_biotype "protein_coding"; +chrIV SGD exon 946692 948551 . + . transcript_id "YDR242W_id002"; gene_id "YDR242W"; gene_name "AMD2"; +chrIV SGD transcript 946807 948456 . + . transcript_id "YDR242W_id001"; gene_id "YDR242W"; gene_name "AMD2"; transcript_biotype "protein_coding"; +chrIV SGD exon 946807 948456 . + 0 transcript_id "YDR242W_id001"; gene_name "AMD2"; gene_id "YDR242W"; +chrIV SGD gene 948455 950316 . - . gene_id "YDR243C"; gene_biotype "protein_coding"; +chrIV SGD transcript 948455 950316 . - . transcript_id "YDR243C_id003"; gene_id "YDR243C"; gene_name "PRP28"; transcript_biotype "protein_coding"; +chrIV SGD exon 948455 950316 . - . transcript_id "YDR243C_id003"; gene_id "YDR243C"; gene_name "PRP28"; +chrIV SGD transcript 948518 950284 . - . transcript_id "YDR243C_id001"; gene_id "YDR243C"; gene_name "PRP28"; transcript_biotype "protein_coding"; +chrIV SGD exon 948518 950284 . - 0 transcript_id "YDR243C_id001"; gene_name "PRP28"; gene_id "YDR243C"; +chrIV SGD gene 950534 952595 . + . gene_id "YDR244W"; gene_biotype "protein_coding"; +chrIV SGD transcript 950534 952595 . + . transcript_id "YDR244W_id002"; gene_id "YDR244W"; gene_name "PEX5"; transcript_biotype "protein_coding"; +chrIV SGD exon 950534 952595 . + . transcript_id "YDR244W_id002"; gene_id "YDR244W"; gene_name "PEX5"; +chrIV SGD transcript 950563 952401 . + . transcript_id "YDR244W_id001"; gene_id "YDR244W"; gene_name "PEX5"; transcript_biotype "protein_coding"; +chrIV SGD exon 950563 952401 . + 0 transcript_id "YDR244W_id001"; gene_name "PEX5"; gene_id "YDR244W"; +chrIV SGD gene 952678 954132 . + . gene_id "YDR245W"; gene_biotype "protein_coding"; +chrIV SGD transcript 952678 954132 . + . transcript_id "YDR245W_id001"; gene_id "YDR245W"; gene_name "MNN10"; transcript_biotype "protein_coding"; +chrIV SGD exon 952678 954132 . + . transcript_id "YDR245W_id001"; gene_id "YDR245W"; gene_name "MNN10"; +chrIV SGD transcript 952800 953981 . + . transcript_id "YDR245W_id002"; gene_id "YDR245W"; gene_name "MNN10"; transcript_biotype "protein_coding"; +chrIV SGD exon 952800 953981 . + 0 transcript_id "YDR245W_id002"; gene_name "MNN10"; gene_id "YDR245W"; +chrIV SGD gene 954288 954947 . + . gene_id "YDR246W"; gene_biotype "protein_coding"; +chrIV SGD transcript 954288 954947 . + . transcript_id "YDR246W_id001"; gene_id "YDR246W"; gene_name "TRS23"; transcript_biotype "protein_coding"; +chrIV SGD exon 954288 954947 . + 0 transcript_id "YDR246W_id001"; gene_name "TRS23"; gene_id "YDR246W"; +chrIV SGD gene 955133 955333 . + . gene_id "YDR246W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 955133 955333 . + . transcript_id "YDR246W-A_mRNA"; gene_id "YDR246W-A"; transcript_biotype "protein_coding"; +chrIV SGD CDS 955133 955333 . + 0 transcript_id "YDR246W-A_mRNA"; gene_id "YDR246W-A"; +chrIV SGD gene 955644 957770 . + . gene_id "YDR247W"; gene_biotype "protein_coding"; +chrIV SGD transcript 955644 957770 . + . transcript_id "YDR247W_id003"; gene_id "YDR247W"; gene_name "VHS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 955644 957770 . + . transcript_id "YDR247W_id003"; gene_id "YDR247W"; gene_name "VHS1"; +chrIV SGD transcript 956013 957398 . + . transcript_id "YDR247W_id001"; gene_id "YDR247W"; gene_name "VHS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 956013 957398 . + 0 transcript_id "YDR247W_id001"; gene_name "VHS1"; gene_id "YDR247W"; +chrIV SGD gene 957485 958409 . - . gene_id "YDR248C"; gene_biotype "protein_coding"; +chrIV SGD transcript 957485 958409 . - . transcript_id "YDR248C_id001"; gene_id "YDR248C"; transcript_biotype "protein_coding"; +chrIV SGD exon 957485 958409 . - . transcript_id "YDR248C_id001"; gene_id "YDR248C"; +chrIV SGD transcript 957758 958339 . - . transcript_id "YDR248C_id002"; gene_id "YDR248C"; transcript_biotype "protein_coding"; +chrIV SGD exon 957758 958339 . - 0 transcript_id "YDR248C_id002"; gene_id "YDR248C"; +chrIV SGD gene 958567 960031 . - . gene_id "YDR249C"; gene_biotype "protein_coding"; +chrIV SGD transcript 958567 960031 . - . transcript_id "YDR249C_id003"; gene_id "YDR249C"; transcript_biotype "protein_coding"; +chrIV SGD exon 958567 960031 . - . transcript_id "YDR249C_id003"; gene_id "YDR249C"; +chrIV SGD transcript 958681 959802 . - . transcript_id "YDR249C_id001"; gene_id "YDR249C"; transcript_biotype "protein_coding"; +chrIV SGD exon 958681 959802 . - 0 transcript_id "YDR249C_id001"; gene_id "YDR249C"; +chrIV SGD gene 960086 960361 . - . gene_id "YDR250C"; gene_biotype "protein_coding"; +chrIV SGD transcript 960086 960361 . - . transcript_id "YDR250C_id001"; gene_id "YDR250C"; transcript_biotype "protein_coding"; +chrIV SGD exon 960086 960361 . - 0 transcript_id "YDR250C_id001"; gene_id "YDR250C"; +chrIV SGD gene 960308 963241 . + . gene_id "YDR251W"; gene_biotype "protein_coding"; +chrIV SGD transcript 960308 963241 . + . transcript_id "YDR251W_id003"; gene_id "YDR251W"; gene_name "PAM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 960308 963241 . + . transcript_id "YDR251W_id003"; gene_id "YDR251W"; gene_name "PAM1"; +chrIV SGD transcript 960614 963106 . + . transcript_id "YDR251W_id001"; gene_id "YDR251W"; gene_name "PAM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 960614 963106 . + 0 transcript_id "YDR251W_id001"; gene_name "PAM1"; gene_id "YDR251W"; +chrIV SGD gene 963384 964750 . + . gene_id "YDR252W"; gene_biotype "protein_coding"; +chrIV SGD transcript 963384 964750 . + . transcript_id "YDR252W_id003"; gene_id "YDR252W"; gene_name "BTT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 963384 964750 . + . transcript_id "YDR252W_id003"; gene_id "YDR252W"; gene_name "BTT1"; +chrIV SGD transcript 963412 963861 . + . transcript_id "YDR252W_id001"; gene_id "YDR252W"; gene_name "BTT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 963412 963861 . + 0 transcript_id "YDR252W_id001"; gene_name "BTT1"; gene_id "YDR252W"; +chrIV SGD gene 963910 964804 . - . gene_id "YDR253C"; gene_biotype "protein_coding"; +chrIV SGD transcript 963910 964804 . - . transcript_id "YDR253C_id002"; gene_id "YDR253C"; gene_name "MET32"; transcript_biotype "protein_coding"; +chrIV SGD exon 963910 964804 . - . transcript_id "YDR253C_id002"; gene_id "YDR253C"; gene_name "MET32"; +chrIV SGD transcript 963990 964565 . - . transcript_id "YDR253C_id001"; gene_id "YDR253C"; gene_name "MET32"; transcript_biotype "protein_coding"; +chrIV SGD exon 963990 964565 . - 0 transcript_id "YDR253C_id001"; gene_name "MET32"; gene_id "YDR253C"; +chrIV SGD gene 965026 967072 . + . gene_id "YDR254W"; gene_biotype "protein_coding"; +chrIV SGD transcript 965026 967072 . + . transcript_id "YDR254W_id001"; gene_id "YDR254W"; gene_name "CHL4"; transcript_biotype "protein_coding"; +chrIV SGD exon 965026 967072 . + . transcript_id "YDR254W_id001"; gene_id "YDR254W"; gene_name "CHL4"; +chrIV SGD transcript 965113 966489 . + . transcript_id "YDR254W_id005"; gene_id "YDR254W"; gene_name "CHL4"; transcript_biotype "protein_coding"; +chrIV SGD exon 965113 966489 . + 0 transcript_id "YDR254W_id005"; gene_name "CHL4"; gene_id "YDR254W"; +chrIV SGD gene 966253 967871 . - . gene_id "YDR255C"; gene_biotype "protein_coding"; +chrIV SGD transcript 966253 967871 . - . transcript_id "YDR255C_id004"; gene_id "YDR255C"; gene_name "RMD5"; transcript_biotype "protein_coding"; +chrIV SGD exon 966253 967871 . - . transcript_id "YDR255C_id004"; gene_id "YDR255C"; gene_name "RMD5"; +chrIV SGD transcript 966557 967822 . - . transcript_id "YDR255C_id001"; gene_id "YDR255C"; gene_name "RMD5"; transcript_biotype "protein_coding"; +chrIV SGD exon 966557 967822 . - 0 transcript_id "YDR255C_id001"; gene_name "RMD5"; gene_id "YDR255C"; +chrIV SGD gene 968133 969680 . - . gene_id "YDR256C"; gene_biotype "protein_coding"; +chrIV SGD transcript 968133 969680 . - . transcript_id "YDR256C_id001"; gene_id "YDR256C"; gene_name "CTA1"; transcript_biotype "protein_coding"; +chrIV SGD exon 968133 969680 . - 0 transcript_id "YDR256C_id001"; gene_name "CTA1"; gene_id "YDR256C"; +chrIV SGD gene 969662 971497 . - . gene_id "YDR257C"; gene_biotype "protein_coding"; +chrIV SGD transcript 969662 971497 . - . transcript_id "YDR257C_id001"; gene_id "YDR257C"; gene_name "RKM4"; transcript_biotype "protein_coding"; +chrIV SGD exon 969662 971497 . - . transcript_id "YDR257C_id001"; gene_id "YDR257C"; gene_name "RKM4"; +chrIV SGD transcript 969990 971474 . - . transcript_id "YDR257C_id002"; gene_id "YDR257C"; gene_name "RKM4"; transcript_biotype "protein_coding"; +chrIV SGD exon 969990 971474 . - 0 transcript_id "YDR257C_id002"; gene_name "RKM4"; gene_id "YDR257C"; +chrIV SGD gene 971702 974272 . - . gene_id "YDR258C"; gene_biotype "protein_coding"; +chrIV SGD transcript 971702 974272 . - . transcript_id "YDR258C_id011"; gene_id "YDR258C"; gene_name "HSP78"; transcript_biotype "protein_coding"; +chrIV SGD exon 971702 974272 . - . transcript_id "YDR258C_id011"; gene_id "YDR258C"; gene_name "HSP78"; +chrIV SGD transcript 971808 974243 . - . transcript_id "YDR258C_id001"; gene_id "YDR258C"; gene_name "HSP78"; transcript_biotype "protein_coding"; +chrIV SGD exon 971808 974243 . - 0 transcript_id "YDR258C_id001"; gene_name "HSP78"; gene_id "YDR258C"; +chrIV SGD gene 974496 976237 . - . gene_id "YDR259C"; gene_biotype "protein_coding"; +chrIV SGD transcript 974496 976237 . - . transcript_id "YDR259C_id001"; gene_id "YDR259C"; gene_name "YAP6"; transcript_biotype "protein_coding"; +chrIV SGD exon 974496 976237 . - . transcript_id "YDR259C_id001"; gene_id "YDR259C"; gene_name "YAP6"; +chrIV SGD transcript 974631 975782 . - . transcript_id "YDR259C_id003"; gene_id "YDR259C"; gene_name "YAP6"; transcript_biotype "protein_coding"; +chrIV SGD exon 974631 975782 . - 0 transcript_id "YDR259C_id003"; gene_name "YAP6"; gene_id "YDR259C"; +chrIV SGD gene 976077 977278 . - . gene_id "YDR260C"; gene_biotype "protein_coding"; +chrIV SGD transcript 976077 977278 . - . transcript_id "YDR260C_id004"; gene_id "YDR260C"; gene_name "SWM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 976077 977278 . - . transcript_id "YDR260C_id004"; gene_id "YDR260C"; gene_name "SWM1"; +chrIV SGD transcript 976717 977229 . - . transcript_id "YDR260C_id001"; gene_id "YDR260C"; gene_name "SWM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 976717 977229 . - 0 transcript_id "YDR260C_id001"; gene_name "SWM1"; gene_id "YDR260C"; +chrIV SGD gene 977381 979329 . - . gene_id "YDR261C"; gene_biotype "protein_coding"; +chrIV SGD transcript 977381 979329 . - . transcript_id "YDR261C_id002"; gene_id "YDR261C"; gene_name "EXG2"; transcript_biotype "protein_coding"; +chrIV SGD exon 977381 979329 . - . transcript_id "YDR261C_id002"; gene_id "YDR261C"; gene_name "EXG2"; +chrIV SGD transcript 977521 979209 . - . transcript_id "YDR261C_id001"; gene_id "YDR261C"; gene_name "EXG2"; transcript_biotype "protein_coding"; +chrIV SGD exon 977521 979209 . - 0 transcript_id "YDR261C_id001"; gene_name "EXG2"; gene_id "YDR261C"; +chrIV SGD gene 980974 981055 . - . gene_id "YNCD0019C"; gene_biotype "ncRNA"; +chrIV SGD transcript 980974 981055 . - . transcript_id "YNCD0019C_tRNA"; gene_id "YNCD0019C"; transcript_biotype "ncRNA"; +chrIV SGD exon 980974 981055 . - . transcript_id "YNCD0019C_tRNA"; gene_id "YNCD0019C"; +chrIV SGD gene 981462 982778 . + . gene_id "YDR261W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 981462 982778 . + . transcript_id "YDR261W-A_dummy"; gene_id "YDR261W-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 981462 982778 . + 0 transcript_id "YDR261W-A_dummy"; gene_id "YDR261W-A"; +chrIV SGD gene 981462 986775 . + . gene_id "YDR261W-B"; gene_biotype "protein_coding"; +chrIV SGD transcript 981462 986775 . + . transcript_id "YDR261W-B_dummy"; gene_id "YDR261W-B"; transcript_biotype "protein_coding"; +chrIV SGD exon 981462 982754 . + 0 transcript_id "YDR261W-B_dummy"; gene_id "YDR261W-B"; +chrIV SGD exon 982756 986775 . + 0 transcript_id "YDR261W-B_dummy"; gene_id "YDR261W-B"; +chrIV SGD gene 987534 992349 . - . gene_id "YDR261C-D"; gene_biotype "protein_coding"; +chrIV SGD transcript 987534 992349 . - . transcript_id "YDR261C-D_dummy"; gene_id "YDR261C-D"; transcript_biotype "protein_coding"; +chrIV SGD exon 987534 991043 . - 0 transcript_id "YDR261C-D_dummy"; gene_id "YDR261C-D"; +chrIV SGD exon 991045 992349 . - 0 transcript_id "YDR261C-D_dummy"; gene_id "YDR261C-D"; +chrIV SGD gene 991027 992349 . - . gene_id "YDR261C-C"; gene_biotype "protein_coding"; +chrIV SGD transcript 991027 992349 . - . transcript_id "YDR261C-C_dummy"; gene_id "YDR261C-C"; transcript_biotype "protein_coding"; +chrIV SGD exon 991027 992349 . - 0 transcript_id "YDR261C-C_dummy"; gene_id "YDR261C-C"; +chrIV SGD gene 992832 992902 . + . gene_id "YNCD0020W"; gene_biotype "ncRNA"; +chrIV SGD transcript 992832 992902 . + . transcript_id "YNCD0020W_tRNA"; gene_id "YNCD0020W"; transcript_biotype "ncRNA"; +chrIV SGD exon 992832 992902 . + . transcript_id "YNCD0020W_tRNA"; gene_id "YNCD0020W"; +chrIV SGD gene 993123 994470 . + . gene_id "YDR262W"; gene_biotype "protein_coding"; +chrIV SGD transcript 993123 994470 . + . transcript_id "YDR262W_id002"; gene_id "YDR262W"; transcript_biotype "protein_coding"; +chrIV SGD exon 993123 994470 . + . transcript_id "YDR262W_id002"; gene_id "YDR262W"; +chrIV SGD transcript 993134 993952 . + . transcript_id "YDR262W_id001"; gene_id "YDR262W"; transcript_biotype "protein_coding"; +chrIV SGD exon 993134 993952 . + 0 transcript_id "YDR262W_id001"; gene_id "YDR262W"; +chrIV SGD gene 994141 995611 . - . gene_id "YDR263C"; gene_biotype "protein_coding"; +chrIV SGD transcript 994141 995611 . - . transcript_id "YDR263C_id004"; gene_id "YDR263C"; gene_name "DIN7"; transcript_biotype "protein_coding"; +chrIV SGD exon 994141 995611 . - . transcript_id "YDR263C_id004"; gene_id "YDR263C"; gene_name "DIN7"; +chrIV SGD transcript 994242 995534 . - . transcript_id "YDR263C_id001"; gene_id "YDR263C"; gene_name "DIN7"; transcript_biotype "protein_coding"; +chrIV SGD exon 994242 995534 . - 0 transcript_id "YDR263C_id001"; gene_name "DIN7"; gene_id "YDR263C"; +chrIV SGD gene 995564 998386 . - . gene_id "YDR264C"; gene_biotype "protein_coding"; +chrIV SGD transcript 995564 998386 . - . transcript_id "YDR264C_id001"; gene_id "YDR264C"; gene_name "AKR1"; transcript_biotype "protein_coding"; +chrIV SGD exon 995564 998386 . - . transcript_id "YDR264C_id001"; gene_id "YDR264C"; gene_name "AKR1"; +chrIV SGD transcript 996029 998323 . - . transcript_id "YDR264C_id004"; gene_id "YDR264C"; gene_name "AKR1"; transcript_biotype "protein_coding"; +chrIV SGD exon 996029 998323 . - 0 transcript_id "YDR264C_id004"; gene_name "AKR1"; gene_id "YDR264C"; +chrIV SGD gene 998634 1000092 . + . gene_id "YDR265W"; gene_biotype "protein_coding"; +chrIV SGD transcript 998634 1000092 . + . transcript_id "YDR265W_id001"; gene_id "YDR265W"; gene_name "PEX10"; transcript_biotype "protein_coding"; +chrIV SGD exon 998634 1000092 . + . transcript_id "YDR265W_id001"; gene_id "YDR265W"; gene_name "PEX10"; +chrIV SGD transcript 998864 999877 . + . transcript_id "YDR265W_id004"; gene_id "YDR265W"; gene_name "PEX10"; transcript_biotype "protein_coding"; +chrIV SGD exon 998864 999877 . + 0 transcript_id "YDR265W_id004"; gene_name "PEX10"; gene_id "YDR265W"; +chrIV SGD gene 999976 1002239 . - . gene_id "YDR266C"; gene_biotype "protein_coding"; +chrIV SGD transcript 999976 1002239 . - . transcript_id "YDR266C_id001"; gene_id "YDR266C"; gene_name "HEL2"; transcript_biotype "protein_coding"; +chrIV SGD exon 999976 1002239 . - . transcript_id "YDR266C_id001"; gene_id "YDR266C"; gene_name "HEL2"; +chrIV SGD transcript 1000104 1002023 . - . transcript_id "YDR266C_id003"; gene_id "YDR266C"; gene_name "HEL2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1000104 1002023 . - 0 transcript_id "YDR266C_id003"; gene_name "HEL2"; gene_id "YDR266C"; +chrIV SGD gene 1002364 1003795 . - . gene_id "YDR267C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1002364 1003795 . - . transcript_id "YDR267C_id002"; gene_id "YDR267C"; gene_name "CIA1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1002364 1003795 . - . transcript_id "YDR267C_id002"; gene_id "YDR267C"; gene_name "CIA1"; +chrIV SGD transcript 1002510 1003502 . - . transcript_id "YDR267C_id001"; gene_id "YDR267C"; gene_name "CIA1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1002510 1003502 . - 0 transcript_id "YDR267C_id001"; gene_name "CIA1"; gene_id "YDR267C"; +chrIV SGD gene 1003835 1005253 . + . gene_id "YDR268W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1003835 1005253 . + . transcript_id "YDR268W_id005"; gene_id "YDR268W"; gene_name "MSW1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1003835 1005253 . + . transcript_id "YDR268W_id005"; gene_id "YDR268W"; gene_name "MSW1"; +chrIV SGD transcript 1004004 1005143 . + . transcript_id "YDR268W_id001"; gene_id "YDR268W"; gene_name "MSW1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1004004 1005143 . + 0 transcript_id "YDR268W_id001"; gene_name "MSW1"; gene_id "YDR268W"; +chrIV SGD gene 1005665 1005988 . - . gene_id "YDR269C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1005665 1005988 . - . transcript_id "YDR269C_mRNA"; gene_id "YDR269C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1005665 1005988 . - 0 transcript_id "YDR269C_mRNA"; gene_id "YDR269C"; +chrIV SGD gene 1005675 1008689 . + . gene_id "YDR270W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1005675 1008689 . + . transcript_id "YDR270W_id001"; gene_id "YDR270W"; gene_name "CCC2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1005675 1008689 . + 0 transcript_id "YDR270W_id001"; gene_name "CCC2"; gene_id "YDR270W"; +chrIV SGD gene 1008395 1008766 . - . gene_id "YDR271C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1008395 1008766 . - . transcript_id "YDR271C_id001"; gene_id "YDR271C"; transcript_biotype "protein_coding"; +chrIV SGD exon 1008395 1008766 . - 0 transcript_id "YDR271C_id001"; gene_id "YDR271C"; +chrIV SGD gene 1008953 1010858 . + . gene_id "YDR272W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1008953 1010858 . + . transcript_id "YDR272W_id002"; gene_id "YDR272W"; gene_name "GLO2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1008953 1010858 . + . transcript_id "YDR272W_id002"; gene_id "YDR272W"; gene_name "GLO2"; +chrIV SGD transcript 1009010 1009834 . + . transcript_id "YDR272W_id001"; gene_id "YDR272W"; gene_name "GLO2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1009010 1009834 . + 0 transcript_id "YDR272W_id001"; gene_name "GLO2"; gene_id "YDR272W"; +chrIV SGD gene 1009655 1011306 . + . gene_id "YDR273W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1009655 1011306 . + . transcript_id "YDR273W_id003"; gene_id "YDR273W"; gene_name "DON1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1009655 1011306 . + . transcript_id "YDR273W_id003"; gene_id "YDR273W"; gene_name "DON1"; +chrIV SGD transcript 1010176 1011273 . + . transcript_id "YDR273W_id001"; gene_id "YDR273W"; gene_name "DON1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1010176 1011273 . + 0 transcript_id "YDR273W_id001"; gene_name "DON1"; gene_id "YDR273W"; +chrIV SGD gene 1011573 1013260 . + . gene_id "YDR275W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1011573 1013260 . + . transcript_id "YDR275W_id001"; gene_id "YDR275W"; gene_name "BSC2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1011573 1013260 . + . transcript_id "YDR275W_id001"; gene_id "YDR275W"; gene_name "BSC2"; +chrIV SGD gene 1011589 1011960 . - . gene_id "YDR274C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1011589 1011960 . - . transcript_id "YDR274C_id001"; gene_id "YDR274C"; transcript_biotype "protein_coding"; +chrIV SGD exon 1011589 1011960 . - 0 transcript_id "YDR274C_id001"; gene_id "YDR274C"; +chrIV SGD transcript 1012252 1012959 . + . transcript_id "YDR275W_id005"; gene_id "YDR275W"; gene_name "BSC2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1012252 1012959 . + 0 transcript_id "YDR275W_id005"; gene_name "BSC2"; gene_id "YDR275W"; +chrIV SGD gene 1012990 1013879 . - . gene_id "YDR276C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1012990 1013879 . - . transcript_id "YDR276C_id002"; gene_id "YDR276C"; gene_name "PMP3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1012990 1013879 . - . transcript_id "YDR276C_id002"; gene_id "YDR276C"; gene_name "PMP3"; +chrIV SGD transcript 1013476 1013643 . - . transcript_id "YDR276C_id001"; gene_id "YDR276C"; gene_name "PMP3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1013476 1013643 . - 0 transcript_id "YDR276C_id001"; gene_name "PMP3"; gene_id "YDR276C"; +chrIV SGD gene 1014122 1015863 . - . gene_id "YDR277C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1014122 1015863 . - . transcript_id "YDR277C_id005"; gene_id "YDR277C"; gene_name "MTH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1014122 1015863 . - . transcript_id "YDR277C_id005"; gene_id "YDR277C"; gene_name "MTH1"; +chrIV SGD transcript 1014401 1015702 . - . transcript_id "YDR277C_id001"; gene_id "YDR277C"; gene_name "MTH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1014401 1015702 . - 0 transcript_id "YDR277C_id001"; gene_name "MTH1"; gene_id "YDR277C"; +chrIV SGD gene 1017001 1017318 . - . gene_id "YDR278C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1017001 1017318 . - . transcript_id "YDR278C_mRNA"; gene_id "YDR278C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1017001 1017318 . - 0 transcript_id "YDR278C_mRNA"; gene_id "YDR278C"; +chrIV SGD gene 1017207 1017278 . - . gene_id "YNCD0021C"; gene_biotype "ncRNA"; +chrIV SGD transcript 1017207 1017278 . - . transcript_id "YNCD0021C_tRNA"; gene_id "YNCD0021C"; transcript_biotype "ncRNA"; +chrIV SGD exon 1017207 1017278 . - . transcript_id "YNCD0021C_tRNA"; gene_id "YNCD0021C"; +chrIV SGD gene 1019101 1020447 . + . gene_id "YDR279W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1019101 1020447 . + . transcript_id "YDR279W_id001"; gene_id "YDR279W"; gene_name "RNH202"; transcript_biotype "protein_coding"; +chrIV SGD exon 1019101 1020447 . + . transcript_id "YDR279W_id001"; gene_id "YDR279W"; gene_name "RNH202"; +chrIV SGD transcript 1019368 1020420 . + . transcript_id "YDR279W_id003"; gene_id "YDR279W"; gene_name "RNH202"; transcript_biotype "protein_coding"; +chrIV SGD exon 1019368 1020420 . + 0 transcript_id "YDR279W_id003"; gene_name "RNH202"; gene_id "YDR279W"; +chrIV SGD gene 1019899 1021771 . + . gene_id "YDR280W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1019899 1021771 . + . transcript_id "YDR280W_id001"; gene_id "YDR280W"; gene_name "RRP45"; transcript_biotype "protein_coding"; +chrIV SGD exon 1019899 1021771 . + . transcript_id "YDR280W_id001"; gene_id "YDR280W"; gene_name "RRP45"; +chrIV SGD transcript 1020747 1021664 . + . transcript_id "YDR280W_id004"; gene_id "YDR280W"; gene_name "RRP45"; transcript_biotype "protein_coding"; +chrIV SGD exon 1020747 1021664 . + 0 transcript_id "YDR280W_id004"; gene_name "RRP45"; gene_id "YDR280W"; +chrIV SGD gene 1021667 1022436 . - . gene_id "YDR281C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1021667 1022436 . - . transcript_id "YDR281C_id001"; gene_id "YDR281C"; gene_name "PHM6"; transcript_biotype "protein_coding"; +chrIV SGD exon 1021667 1022436 . - . transcript_id "YDR281C_id001"; gene_id "YDR281C"; gene_name "PHM6"; +chrIV SGD transcript 1022007 1022321 . - . transcript_id "YDR281C_id003"; gene_id "YDR281C"; gene_name "PHM6"; transcript_biotype "protein_coding"; +chrIV SGD exon 1022007 1022321 . - 0 transcript_id "YDR281C_id003"; gene_name "PHM6"; gene_id "YDR281C"; +chrIV SGD gene 1023220 1024762 . - . gene_id "YDR282C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1023220 1024762 . - . transcript_id "YDR282C_id001"; gene_id "YDR282C"; gene_name "MRX10"; transcript_biotype "protein_coding"; +chrIV SGD exon 1023220 1024762 . - . transcript_id "YDR282C_id001"; gene_id "YDR282C"; gene_name "MRX10"; +chrIV SGD transcript 1023511 1024755 . - . transcript_id "YDR282C_id003"; gene_id "YDR282C"; gene_name "MRX10"; transcript_biotype "protein_coding"; +chrIV SGD exon 1023511 1024755 . - 0 transcript_id "YDR282C_id003"; gene_name "MRX10"; gene_id "YDR282C"; +chrIV SGD gene 1025070 1030049 . - . gene_id "YDR283C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1025070 1030049 . - . transcript_id "YDR283C_mRNA"; gene_id "YDR283C"; gene_name "GCN2"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1025070 1030049 . - 0 transcript_id "YDR283C_mRNA"; gene_name "GCN2"; gene_id "YDR283C"; +chrIV SGD gene 1030377 1031708 . - . gene_id "YDR284C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1030377 1031708 . - . transcript_id "YDR284C_id001"; gene_id "YDR284C"; gene_name "DPP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1030377 1031708 . - . transcript_id "YDR284C_id001"; gene_id "YDR284C"; gene_name "DPP1"; +chrIV SGD transcript 1030550 1031419 . - . transcript_id "YDR284C_id003"; gene_id "YDR284C"; gene_name "DPP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1030550 1031419 . - 0 transcript_id "YDR284C_id003"; gene_name "DPP1"; gene_id "YDR284C"; +chrIV SGD gene 1032436 1035063 . + . gene_id "YDR285W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1032436 1035063 . + . transcript_id "YDR285W_mRNA"; gene_id "YDR285W"; gene_name "ZIP1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1032436 1035063 . + 0 transcript_id "YDR285W_mRNA"; gene_name "ZIP1"; gene_id "YDR285W"; +chrIV SGD gene 1035110 1035793 . - . gene_id "YDR286C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1035110 1035793 . - . transcript_id "YDR286C_id002"; gene_id "YDR286C"; gene_name "MGP12"; transcript_biotype "protein_coding"; +chrIV SGD exon 1035110 1035793 . - . transcript_id "YDR286C_id002"; gene_id "YDR286C"; gene_name "MGP12"; +chrIV SGD gene 1035217 1036964 . + . gene_id "YDR287W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1035217 1036964 . + . transcript_id "YDR287W_id001"; gene_id "YDR287W"; gene_name "INM2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1035217 1036964 . + . transcript_id "YDR287W_id001"; gene_id "YDR287W"; gene_name "INM2"; +chrIV SGD transcript 1035231 1035575 . - . transcript_id "YDR286C_id001"; gene_id "YDR286C"; gene_name "MGP12"; transcript_biotype "protein_coding"; +chrIV SGD exon 1035231 1035575 . - 0 transcript_id "YDR286C_id001"; gene_name "MGP12"; gene_id "YDR286C"; +chrIV SGD transcript 1035995 1036873 . + . transcript_id "YDR287W_id002"; gene_id "YDR287W"; gene_name "INM2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1035995 1036873 . + 0 transcript_id "YDR287W_id002"; gene_name "INM2"; gene_id "YDR287W"; +chrIV SGD gene 1037136 1038288 . + . gene_id "YDR288W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1037136 1038288 . + . transcript_id "YDR288W_id002"; gene_id "YDR288W"; gene_name "NSE3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1037136 1038288 . + . transcript_id "YDR288W_id002"; gene_id "YDR288W"; gene_name "NSE3"; +chrIV SGD transcript 1037195 1038106 . + . transcript_id "YDR288W_id001"; gene_id "YDR288W"; gene_name "NSE3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1037195 1038106 . + 0 transcript_id "YDR288W_id001"; gene_name "NSE3"; gene_id "YDR288W"; +chrIV SGD gene 1037855 1039576 . - . gene_id "YDR289C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1037855 1039576 . - . transcript_id "YDR289C_id002"; gene_id "YDR289C"; gene_name "RTT103"; transcript_biotype "protein_coding"; +chrIV SGD exon 1037855 1039576 . - . transcript_id "YDR289C_id002"; gene_id "YDR289C"; gene_name "RTT103"; +chrIV SGD transcript 1038280 1039509 . - . transcript_id "YDR289C_id001"; gene_id "YDR289C"; gene_name "RTT103"; transcript_biotype "protein_coding"; +chrIV SGD exon 1038280 1039509 . - 0 transcript_id "YDR289C_id001"; gene_name "RTT103"; gene_id "YDR289C"; +chrIV SGD gene 1039370 1039699 . + . gene_id "YDR290W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1039370 1039699 . + . transcript_id "YDR290W_mRNA"; gene_id "YDR290W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1039370 1039699 . + 0 transcript_id "YDR290W_mRNA"; gene_id "YDR290W"; +chrIV SGD gene 1039728 1042961 . + . gene_id "YDR291W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1039728 1042961 . + . transcript_id "YDR291W_id001"; gene_id "YDR291W"; gene_name "HRQ1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1039728 1042961 . + 0 transcript_id "YDR291W_id001"; gene_name "HRQ1"; gene_id "YDR291W"; +chrIV SGD gene 1042953 1045153 . - . gene_id "YDR292C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1042953 1045153 . - . transcript_id "YDR292C_id002"; gene_id "YDR292C"; gene_name "SRP101"; transcript_biotype "protein_coding"; +chrIV SGD exon 1042953 1045153 . - . transcript_id "YDR292C_id002"; gene_id "YDR292C"; gene_name "SRP101"; +chrIV SGD transcript 1043146 1045011 . - . transcript_id "YDR292C_id001"; gene_id "YDR292C"; gene_name "SRP101"; transcript_biotype "protein_coding"; +chrIV SGD exon 1043146 1045011 . - 0 transcript_id "YDR292C_id001"; gene_name "SRP101"; gene_id "YDR292C"; +chrIV SGD gene 1045313 1049498 . - . gene_id "YDR293C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1045313 1049498 . - . transcript_id "YDR293C_id003"; gene_id "YDR293C"; gene_name "SSD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1045313 1049498 . - . transcript_id "YDR293C_id003"; gene_id "YDR293C"; gene_name "SSD1"; +chrIV SGD transcript 1045640 1049392 . - . transcript_id "YDR293C_id001"; gene_id "YDR293C"; gene_name "SSD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1045640 1049392 . - 0 transcript_id "YDR293C_id001"; gene_name "SSD1"; gene_id "YDR293C"; +chrIV SGD gene 1050405 1052323 . - . gene_id "YDR294C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1050405 1052323 . - . transcript_id "YDR294C_id001"; gene_id "YDR294C"; gene_name "DPL1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1050405 1052323 . - . transcript_id "YDR294C_id001"; gene_id "YDR294C"; gene_name "DPL1"; +chrIV SGD transcript 1050459 1052228 . - . transcript_id "YDR294C_id003"; gene_id "YDR294C"; gene_name "DPL1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1050459 1052228 . - 0 transcript_id "YDR294C_id003"; gene_name "DPL1"; gene_id "YDR294C"; +chrIV SGD gene 1052542 1054910 . - . gene_id "YDR295C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1052542 1054910 . - . transcript_id "YDR295C_id001"; gene_id "YDR295C"; gene_name "HDA2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1052542 1054910 . - . transcript_id "YDR295C_id001"; gene_id "YDR295C"; gene_name "HDA2"; +chrIV SGD transcript 1052623 1054647 . - . transcript_id "YDR295C_id002"; gene_id "YDR295C"; gene_name "HDA2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1052623 1054647 . - 0 transcript_id "YDR295C_id002"; gene_name "HDA2"; gene_id "YDR295C"; +chrIV SGD gene 1055178 1056139 . + . gene_id "YDR296W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1055178 1056139 . + . transcript_id "YDR296W_id003"; gene_id "YDR296W"; gene_name "MHR1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1055178 1056139 . + . transcript_id "YDR296W_id003"; gene_id "YDR296W"; gene_name "MHR1"; +chrIV SGD transcript 1055212 1055892 . + . transcript_id "YDR296W_id001"; gene_id "YDR296W"; gene_name "MHR1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1055212 1055892 . + 0 transcript_id "YDR296W_id001"; gene_name "MHR1"; gene_id "YDR296W"; +chrIV SGD gene 1056381 1057763 . + . gene_id "YDR297W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1056381 1057763 . + . transcript_id "YDR297W_id003"; gene_id "YDR297W"; gene_name "SUR2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1056381 1057763 . + . transcript_id "YDR297W_id003"; gene_id "YDR297W"; gene_name "SUR2"; +chrIV SGD transcript 1056551 1057600 . + . transcript_id "YDR297W_id001"; gene_id "YDR297W"; gene_name "SUR2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1056551 1057600 . + 0 transcript_id "YDR297W_id001"; gene_name "SUR2"; gene_id "YDR297W"; +chrIV SGD gene 1058000 1059356 . - . gene_id "YDR298C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1058000 1059356 . - . transcript_id "YDR298C_id003"; gene_id "YDR298C"; gene_name "ATP5"; transcript_biotype "protein_coding"; +chrIV SGD exon 1058000 1059356 . - . transcript_id "YDR298C_id003"; gene_id "YDR298C"; gene_name "ATP5"; +chrIV SGD transcript 1058176 1058814 . - . transcript_id "YDR298C_id001"; gene_id "YDR298C"; gene_name "ATP5"; transcript_biotype "protein_coding"; +chrIV SGD exon 1058176 1058814 . - 0 transcript_id "YDR298C_id001"; gene_name "ATP5"; gene_id "YDR298C"; +chrIV SGD gene 1059592 1061523 . + . gene_id "YDR299W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1059592 1061523 . + . transcript_id "YDR299W_id001"; gene_id "YDR299W"; gene_name "BFR2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1059592 1061523 . + . transcript_id "YDR299W_id001"; gene_id "YDR299W"; gene_name "BFR2"; +chrIV SGD transcript 1059627 1061231 . + . transcript_id "YDR299W_id003"; gene_id "YDR299W"; gene_name "BFR2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1059627 1061231 . + 0 transcript_id "YDR299W_id003"; gene_name "BFR2"; gene_id "YDR299W"; +chrIV SGD gene 1060851 1062861 . - . gene_id "YDR300C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1060851 1062861 . - . transcript_id "YDR300C_id001"; gene_id "YDR300C"; gene_name "PRO1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1060851 1062861 . - . transcript_id "YDR300C_id001"; gene_id "YDR300C"; gene_name "PRO1"; +chrIV SGD transcript 1061505 1062791 . - . transcript_id "YDR300C_id003"; gene_id "YDR300C"; gene_name "PRO1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1061505 1062791 . - 0 transcript_id "YDR300C_id003"; gene_name "PRO1"; gene_id "YDR300C"; +chrIV SGD gene 1063352 1067425 . + . gene_id "YDR301W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1063352 1067425 . + . transcript_id "YDR301W_id001"; gene_id "YDR301W"; gene_name "CFT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1063352 1067425 . + 0 transcript_id "YDR301W_id001"; gene_name "CFT1"; gene_id "YDR301W"; +chrIV SGD gene 1067688 1068591 . + . gene_id "YDR302W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1067688 1068591 . + . transcript_id "YDR302W_id002"; gene_id "YDR302W"; gene_name "GPI11"; transcript_biotype "protein_coding"; +chrIV SGD exon 1067688 1068591 . + . transcript_id "YDR302W_id002"; gene_id "YDR302W"; gene_name "GPI11"; +chrIV SGD transcript 1067731 1068390 . + . transcript_id "YDR302W_id001"; gene_id "YDR302W"; gene_name "GPI11"; transcript_biotype "protein_coding"; +chrIV SGD exon 1067731 1068390 . + 0 transcript_id "YDR302W_id001"; gene_name "GPI11"; gene_id "YDR302W"; +chrIV SGD gene 1068614 1071708 . - . gene_id "YDR303C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1068614 1071708 . - . transcript_id "YDR303C_id002"; gene_id "YDR303C"; gene_name "RSC3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1068614 1071708 . - . transcript_id "YDR303C_id002"; gene_id "YDR303C"; gene_name "RSC3"; +chrIV SGD transcript 1068729 1071386 . - . transcript_id "YDR303C_id001"; gene_id "YDR303C"; gene_name "RSC3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1068729 1071386 . - 0 transcript_id "YDR303C_id001"; gene_name "RSC3"; gene_id "YDR303C"; +chrIV SGD gene 1071810 1072811 . - . gene_id "YDR304C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1071810 1072811 . - . transcript_id "YDR304C_id001"; gene_id "YDR304C"; gene_name "CPR5"; transcript_biotype "protein_coding"; +chrIV SGD exon 1071810 1072811 . - . transcript_id "YDR304C_id001"; gene_id "YDR304C"; gene_name "CPR5"; +chrIV SGD transcript 1071880 1072557 . - . transcript_id "YDR304C_id003"; gene_id "YDR304C"; gene_name "CPR5"; transcript_biotype "protein_coding"; +chrIV SGD exon 1071880 1072557 . - 0 transcript_id "YDR304C_id003"; gene_name "CPR5"; gene_id "YDR304C"; +chrIV SGD gene 1072659 1074110 . - . gene_id "YDR305C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1072659 1074110 . - . transcript_id "YDR305C_id001"; gene_id "YDR305C"; gene_name "HNT2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1072659 1074110 . - . transcript_id "YDR305C_id001"; gene_id "YDR305C"; gene_name "HNT2"; +chrIV SGD transcript 1072746 1073488 . - . transcript_id "YDR305C_id003"; gene_id "YDR305C"; gene_name "HNT2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1072746 1073312 . - 0 transcript_id "YDR305C_id003"; gene_name "HNT2"; gene_id "YDR305C"; +chrIV SGD exon 1073402 1073488 . - 0 transcript_id "YDR305C_id003"; gene_name "HNT2"; gene_id "YDR305C"; +chrIV SGD gene 1073546 1075342 . - . gene_id "YDR306C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1073546 1075342 . - . transcript_id "YDR306C_id005"; gene_id "YDR306C"; gene_name "PFU1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1073546 1075342 . - . transcript_id "YDR306C_id005"; gene_id "YDR306C"; gene_name "PFU1"; +chrIV SGD transcript 1073735 1075171 . - . transcript_id "YDR306C_id001"; gene_id "YDR306C"; gene_name "PFU1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1073735 1075171 . - 0 transcript_id "YDR306C_id001"; gene_name "PFU1"; gene_id "YDR306C"; +chrIV SGD gene 1075472 1075544 . - . gene_id "YNCD0022C"; gene_biotype "ncRNA"; +chrIV SGD transcript 1075472 1075544 . - . transcript_id "YNCD0022C_tRNA"; gene_id "YNCD0022C"; transcript_biotype "ncRNA"; +chrIV SGD exon 1075472 1075544 . - . transcript_id "YNCD0022C_tRNA"; gene_id "YNCD0022C"; +chrIV SGD gene 1075773 1078490 . - . gene_id "YDR308C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1075773 1078490 . - . transcript_id "YDR308C_id001"; gene_id "YDR308C"; gene_name "SRB7"; transcript_biotype "protein_coding"; +chrIV SGD exon 1075773 1078490 . - . transcript_id "YDR308C_id001"; gene_id "YDR308C"; gene_name "SRB7"; +chrIV SGD gene 1075806 1078050 . + . gene_id "YDR307W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1075806 1078050 . + . transcript_id "YDR307W_id001"; gene_id "YDR307W"; gene_name "PMT7"; transcript_biotype "protein_coding"; +chrIV SGD exon 1075806 1078050 . + . transcript_id "YDR307W_id001"; gene_id "YDR307W"; gene_name "PMT7"; +chrIV SGD transcript 1075865 1077853 . + . transcript_id "YDR307W_id003"; gene_id "YDR307W"; gene_name "PMT7"; transcript_biotype "protein_coding"; +chrIV SGD exon 1075865 1077853 . + 0 transcript_id "YDR307W_id003"; gene_name "PMT7"; gene_id "YDR307W"; +chrIV SGD transcript 1078027 1078449 . - . transcript_id "YDR308C_id003"; gene_id "YDR308C"; gene_name "SRB7"; transcript_biotype "protein_coding"; +chrIV SGD exon 1078027 1078449 . - 0 transcript_id "YDR308C_id003"; gene_name "SRB7"; gene_id "YDR308C"; +chrIV SGD gene 1078684 1080379 . - . gene_id "YDR309C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1078684 1080379 . - . transcript_id "YDR309C_id004"; gene_id "YDR309C"; gene_name "GIC2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1078684 1080379 . - . transcript_id "YDR309C_id004"; gene_id "YDR309C"; gene_name "GIC2"; +chrIV SGD transcript 1079048 1080199 . - . transcript_id "YDR309C_id001"; gene_id "YDR309C"; gene_name "GIC2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1079048 1080199 . - 0 transcript_id "YDR309C_id001"; gene_name "GIC2"; gene_id "YDR309C"; +chrIV SGD gene 1081128 1084316 . - . gene_id "YDR310C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1081128 1084316 . - . transcript_id "YDR310C_mRNA"; gene_id "YDR310C"; gene_name "SUM1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1081128 1084316 . - 0 transcript_id "YDR310C_mRNA"; gene_name "SUM1"; gene_id "YDR310C"; +chrIV SGD gene 1085029 1087097 . + . gene_id "YDR311W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1085029 1087097 . + . transcript_id "YDR311W_id003"; gene_id "YDR311W"; gene_name "TFB1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1085029 1087097 . + . transcript_id "YDR311W_id003"; gene_id "YDR311W"; gene_name "TFB1"; +chrIV SGD transcript 1085065 1086993 . + . transcript_id "YDR311W_id001"; gene_id "YDR311W"; gene_name "TFB1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1085065 1086993 . + 0 transcript_id "YDR311W_id001"; gene_name "TFB1"; gene_id "YDR311W"; +chrIV SGD gene 1087523 1089165 . + . gene_id "YDR312W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1087523 1089165 . + . transcript_id "YDR312W_id002"; gene_id "YDR312W"; gene_name "SSF2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1087523 1089165 . + . transcript_id "YDR312W_id002"; gene_id "YDR312W"; gene_name "SSF2"; +chrIV SGD transcript 1087581 1088942 . + . transcript_id "YDR312W_id001"; gene_id "YDR312W"; gene_name "SSF2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1087581 1088942 . + 0 transcript_id "YDR312W_id001"; gene_name "SSF2"; gene_id "YDR312W"; +chrIV SGD gene 1089041 1090510 . - . gene_id "YDR313C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1089041 1090510 . - . transcript_id "YDR313C_id003"; gene_id "YDR313C"; gene_name "PIB1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1089041 1090510 . - . transcript_id "YDR313C_id003"; gene_id "YDR313C"; gene_name "PIB1"; +chrIV SGD transcript 1089219 1090079 . - . transcript_id "YDR313C_id001"; gene_id "YDR313C"; gene_name "PIB1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1089219 1090079 . - 0 transcript_id "YDR313C_id001"; gene_name "PIB1"; gene_id "YDR313C"; +chrIV SGD gene 1090433 1092511 . - . gene_id "YDR314C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1090433 1092511 . - . transcript_id "YDR314C_mRNA"; gene_id "YDR314C"; gene_name "RAD34"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1090433 1092511 . - 0 transcript_id "YDR314C_mRNA"; gene_name "RAD34"; gene_id "YDR314C"; +chrIV SGD gene 1092551 1093613 . - . gene_id "YDR315C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1092551 1093613 . - . transcript_id "YDR315C_id001"; gene_id "YDR315C"; gene_name "IPK1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1092551 1093613 . - . transcript_id "YDR315C_id001"; gene_id "YDR315C"; gene_name "IPK1"; +chrIV SGD transcript 1092741 1093586 . - . transcript_id "YDR315C_id003"; gene_id "YDR315C"; gene_name "IPK1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1092741 1093586 . - 0 transcript_id "YDR315C_id003"; gene_name "IPK1"; gene_id "YDR315C"; +chrIV SGD gene 1093726 1095257 . + . gene_id "YDR316W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1093726 1095257 . + . transcript_id "YDR316W_id004"; gene_id "YDR316W"; gene_name "OMS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1093726 1095257 . + . transcript_id "YDR316W_id004"; gene_id "YDR316W"; gene_name "OMS1"; +chrIV SGD transcript 1093763 1095178 . + . transcript_id "YDR316W_id001"; gene_id "YDR316W"; gene_name "OMS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1093763 1095178 . + 0 transcript_id "YDR316W_id001"; gene_name "OMS1"; gene_id "YDR316W"; +chrIV SGD gene 1095370 1095461 . - . gene_id "YNCD0023C"; gene_biotype "ncRNA"; +chrIV SGD transcript 1095370 1095461 . - . transcript_id "YNCD0023C_tRNA"; gene_id "YNCD0023C"; transcript_biotype "ncRNA"; +chrIV SGD exon 1095370 1095405 . - . transcript_id "YNCD0023C_tRNA"; gene_id "YNCD0023C"; +chrIV SGD exon 1095425 1095461 . - . transcript_id "YNCD0023C_tRNA"; gene_id "YNCD0023C"; +chrIV SGD gene 1096064 1097386 . + . gene_id "YDR316W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 1096064 1097386 . + . transcript_id "YDR316W-A_dummy"; gene_id "YDR316W-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 1096064 1097386 . + 0 transcript_id "YDR316W-A_dummy"; gene_id "YDR316W-A"; +chrIV SGD gene 1096064 1101332 . + . gene_id "YDR316W-B"; gene_biotype "protein_coding"; +chrIV SGD transcript 1096064 1101332 . + . transcript_id "YDR316W-B_dummy"; gene_id "YDR316W-B"; transcript_biotype "protein_coding"; +chrIV SGD exon 1096064 1097368 . + 0 transcript_id "YDR316W-B_dummy"; gene_id "YDR316W-B"; +chrIV SGD exon 1097370 1101332 . + 0 transcript_id "YDR316W-B_dummy"; gene_id "YDR316W-B"; +chrIV SGD gene 1102150 1103554 . + . gene_id "YDR317W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1102150 1103554 . + . transcript_id "YDR317W_id001"; gene_id "YDR317W"; gene_name "HIM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1102150 1103554 . + . transcript_id "YDR317W_id001"; gene_id "YDR317W"; gene_name "HIM1"; +chrIV SGD transcript 1102184 1103428 . + . transcript_id "YDR317W_id002"; gene_id "YDR317W"; gene_name "HIM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1102184 1103428 . + 0 transcript_id "YDR317W_id002"; gene_name "HIM1"; gene_id "YDR317W"; +chrIV SGD gene 1103725 1105085 . + . gene_id "YDR318W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1103725 1105085 . + . transcript_id "YDR318W_id013"; gene_id "YDR318W"; gene_name "MCM21"; transcript_biotype "protein_coding"; +chrIV SGD exon 1103725 1105085 . + . transcript_id "YDR318W_id013"; gene_id "YDR318W"; gene_name "MCM21"; +chrIV SGD transcript 1103758 1104947 . + . transcript_id "YDR318W_id001"; gene_id "YDR318W"; gene_name "MCM21"; transcript_biotype "protein_coding"; +chrIV SGD exon 1103758 1103809 . + 0 transcript_id "YDR318W_id001"; gene_name "MCM21"; gene_id "YDR318W"; +chrIV SGD exon 1103893 1104947 . + 2 transcript_id "YDR318W_id001"; gene_name "MCM21"; gene_id "YDR318W"; +chrIV SGD gene 1104140 1105874 . - . gene_id "YDR319C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1104140 1105874 . - . transcript_id "YDR319C_id001"; gene_id "YDR319C"; gene_name "YFT2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1104140 1105874 . - . transcript_id "YDR319C_id001"; gene_id "YDR319C"; gene_name "YFT2"; +chrIV SGD transcript 1105003 1105827 . - . transcript_id "YDR319C_id002"; gene_id "YDR319C"; gene_name "YFT2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1105003 1105827 . - 0 transcript_id "YDR319C_id002"; gene_name "YFT2"; gene_id "YDR319C"; +chrIV SGD gene 1106004 1108137 . - . gene_id "YDR320C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1106004 1108137 . - . transcript_id "YDR320C_id002"; gene_id "YDR320C"; gene_name "SWA2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1106004 1108137 . - . transcript_id "YDR320C_id002"; gene_id "YDR320C"; gene_name "SWA2"; +chrIV SGD transcript 1106095 1108101 . - . transcript_id "YDR320C_id001"; gene_id "YDR320C"; gene_name "SWA2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1106095 1108101 . - 0 transcript_id "YDR320C_id001"; gene_name "SWA2"; gene_id "YDR320C"; +chrIV SGD gene 1108128 1108508 . - . gene_id "YDR320C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 1108128 1108508 . - . transcript_id "YDR320C-A_id009"; gene_id "YDR320C-A"; gene_name "DAD4"; transcript_biotype "protein_coding"; +chrIV SGD exon 1108128 1108508 . - . transcript_id "YDR320C-A_id009"; gene_id "YDR320C-A"; gene_name "DAD4"; +chrIV SGD gene 1108256 1109176 . + . gene_id "YDR320W-B"; gene_biotype "protein_coding"; +chrIV SGD transcript 1108256 1109176 . + . transcript_id "YDR320W-B_id001"; gene_id "YDR320W-B"; transcript_biotype "protein_coding"; +chrIV SGD exon 1108256 1109176 . + . transcript_id "YDR320W-B_id001"; gene_id "YDR320W-B"; +chrIV SGD transcript 1108280 1108498 . - . transcript_id "YDR320C-A_id001"; gene_id "YDR320C-A"; gene_name "DAD4"; transcript_biotype "protein_coding"; +chrIV SGD exon 1108280 1108498 . - 0 transcript_id "YDR320C-A_id001"; gene_name "DAD4"; gene_id "YDR320C-A"; +chrIV SGD transcript 1108484 1108621 . + . transcript_id "YDR320W-B_id002"; gene_id "YDR320W-B"; transcript_biotype "protein_coding"; +chrIV SGD exon 1108484 1108621 . + 0 transcript_id "YDR320W-B_id002"; gene_id "YDR320W-B"; +chrIV SGD gene 1108671 1110101 . + . gene_id "YDR321W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1108671 1110101 . + . transcript_id "YDR321W_id001"; gene_id "YDR321W"; gene_name "ASP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1108671 1110101 . + . transcript_id "YDR321W_id001"; gene_id "YDR321W"; gene_name "ASP1"; +chrIV SGD transcript 1108702 1109847 . + . transcript_id "YDR321W_id003"; gene_id "YDR321W"; gene_name "ASP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1108702 1109847 . + 0 transcript_id "YDR321W_id003"; gene_name "ASP1"; gene_id "YDR321W"; +chrIV SGD gene 1110563 1111803 . + . gene_id "YDR322W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1110563 1111803 . + . transcript_id "YDR322W_id008"; gene_id "YDR322W"; gene_name "MRPL35"; transcript_biotype "protein_coding"; +chrIV SGD exon 1110563 1111803 . + . transcript_id "YDR322W_id008"; gene_id "YDR322W"; gene_name "MRPL35"; +chrIV SGD transcript 1110589 1111692 . + . transcript_id "YDR322W_id001"; gene_id "YDR322W"; gene_name "MRPL35"; transcript_biotype "protein_coding"; +chrIV SGD exon 1110589 1111692 . + 0 transcript_id "YDR322W_id001"; gene_name "MRPL35"; gene_id "YDR322W"; +chrIV SGD gene 1111663 1112340 . - . gene_id "YDR322C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 1111663 1112340 . - . transcript_id "YDR322C-A_id001"; gene_id "YDR322C-A"; gene_name "TIM11"; transcript_biotype "protein_coding"; +chrIV SGD exon 1111663 1112340 . - . transcript_id "YDR322C-A_id001"; gene_id "YDR322C-A"; gene_name "TIM11"; +chrIV SGD transcript 1112003 1112293 . - . transcript_id "YDR322C-A_id002"; gene_id "YDR322C-A"; gene_name "TIM11"; transcript_biotype "protein_coding"; +chrIV SGD exon 1112003 1112293 . - 0 transcript_id "YDR322C-A_id002"; gene_name "TIM11"; gene_id "YDR322C-A"; +chrIV SGD gene 1112333 1114057 . - . gene_id "YDR323C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1112333 1114057 . - . transcript_id "YDR323C_id002"; gene_id "YDR323C"; gene_name "PEP7"; transcript_biotype "protein_coding"; +chrIV SGD exon 1112333 1114057 . - . transcript_id "YDR323C_id002"; gene_id "YDR323C"; gene_name "PEP7"; +chrIV SGD transcript 1112480 1114027 . - . transcript_id "YDR323C_id001"; gene_id "YDR323C"; gene_name "PEP7"; transcript_biotype "protein_coding"; +chrIV SGD exon 1112480 1114027 . - 0 transcript_id "YDR323C_id001"; gene_name "PEP7"; gene_id "YDR323C"; +chrIV SGD gene 1114433 1116763 . - . gene_id "YDR324C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1114433 1116763 . - . transcript_id "YDR324C_mRNA"; gene_id "YDR324C"; gene_name "UTP4"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1114433 1116763 . - 0 transcript_id "YDR324C_mRNA"; gene_name "UTP4"; gene_id "YDR324C"; +chrIV SGD gene 1117126 1120233 . + . gene_id "YDR325W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1117126 1120233 . + . transcript_id "YDR325W_id001"; gene_id "YDR325W"; gene_name "YCG1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1117126 1120233 . + 0 transcript_id "YDR325W_id001"; gene_name "YCG1"; gene_id "YDR325W"; +chrIV SGD gene 1120609 1124925 . - . gene_id "YDR326C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1120609 1124925 . - . transcript_id "YDR326C_mRNA"; gene_id "YDR326C"; gene_name "YSP2"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1120609 1124925 . - 0 transcript_id "YDR326C_mRNA"; gene_name "YSP2"; gene_id "YDR326C"; +chrIV SGD gene 1125145 1126085 . - . gene_id "YDR328C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1125145 1126085 . - . transcript_id "YDR328C_id001"; gene_id "YDR328C"; gene_name "SKP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1125145 1126085 . - . transcript_id "YDR328C_id001"; gene_id "YDR328C"; gene_name "SKP1"; +chrIV SGD gene 1125302 1125628 . + . gene_id "YDR327W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1125302 1125628 . + . transcript_id "YDR327W_mRNA"; gene_id "YDR327W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1125302 1125628 . + 0 transcript_id "YDR327W_mRNA"; gene_id "YDR327W"; +chrIV SGD transcript 1125434 1126018 . - . transcript_id "YDR328C_id004"; gene_id "YDR328C"; gene_name "SKP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1125434 1126018 . - 0 transcript_id "YDR328C_id004"; gene_name "SKP1"; gene_id "YDR328C"; +chrIV SGD gene 1126164 1127617 . - . gene_id "YDR329C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1126164 1127617 . - . transcript_id "YDR329C_id001"; gene_id "YDR329C"; gene_name "PEX3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1126164 1127617 . - . transcript_id "YDR329C_id001"; gene_id "YDR329C"; gene_name "PEX3"; +chrIV SGD transcript 1126270 1127595 . - . transcript_id "YDR329C_id002"; gene_id "YDR329C"; gene_name "PEX3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1126270 1127595 . - 0 transcript_id "YDR329C_id002"; gene_name "PEX3"; gene_id "YDR329C"; +chrIV SGD gene 1127794 1129603 . + . gene_id "YDR330W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1127794 1129603 . + . transcript_id "YDR330W_id001"; gene_id "YDR330W"; gene_name "UBX5"; transcript_biotype "protein_coding"; +chrIV SGD exon 1127794 1129603 . + . transcript_id "YDR330W_id001"; gene_id "YDR330W"; gene_name "UBX5"; +chrIV SGD transcript 1127872 1129374 . + . transcript_id "YDR330W_id002"; gene_id "YDR330W"; gene_name "UBX5"; transcript_biotype "protein_coding"; +chrIV SGD exon 1127872 1129374 . + 0 transcript_id "YDR330W_id002"; gene_name "UBX5"; gene_id "YDR330W"; +chrIV SGD gene 1129543 1130961 . + . gene_id "YDR331W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1129543 1130961 . + . transcript_id "YDR331W_id002"; gene_id "YDR331W"; gene_name "GPI8"; transcript_biotype "protein_coding"; +chrIV SGD exon 1129543 1130961 . + . transcript_id "YDR331W_id002"; gene_id "YDR331W"; gene_name "GPI8"; +chrIV SGD transcript 1129588 1130823 . + . transcript_id "YDR331W_id001"; gene_id "YDR331W"; gene_name "GPI8"; transcript_biotype "protein_coding"; +chrIV SGD exon 1129588 1130823 . + 0 transcript_id "YDR331W_id001"; gene_name "GPI8"; gene_id "YDR331W"; +chrIV SGD gene 1130976 1133155 . + . gene_id "YDR332W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1130976 1133155 . + . transcript_id "YDR332W_id001"; gene_id "YDR332W"; gene_name "IRC3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1130976 1133155 . + . transcript_id "YDR332W_id001"; gene_id "YDR332W"; gene_name "IRC3"; +chrIV SGD transcript 1131001 1133070 . + . transcript_id "YDR332W_id002"; gene_id "YDR332W"; gene_name "IRC3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1131001 1133070 . + 0 transcript_id "YDR332W_id002"; gene_name "IRC3"; gene_id "YDR332W"; +chrIV SGD gene 1133021 1135468 . - . gene_id "YDR333C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1133021 1135468 . - . transcript_id "YDR333C_id001"; gene_id "YDR333C"; gene_name "RQC1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1133021 1135468 . - . transcript_id "YDR333C_id001"; gene_id "YDR333C"; gene_name "RQC1"; +chrIV SGD transcript 1133260 1135431 . - . transcript_id "YDR333C_id002"; gene_id "YDR333C"; gene_name "RQC1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1133260 1135431 . - 0 transcript_id "YDR333C_id002"; gene_name "RQC1"; gene_id "YDR333C"; +chrIV SGD gene 1135932 1140476 . + . gene_id "YDR334W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1135932 1140476 . + . transcript_id "YDR334W_mRNA"; gene_id "YDR334W"; gene_name "SWR1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1135932 1140476 . + 0 transcript_id "YDR334W_mRNA"; gene_name "SWR1"; gene_id "YDR334W"; +chrIV SGD gene 1140811 1144954 . + . gene_id "YDR335W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1140811 1144954 . + . transcript_id "YDR335W_id001"; gene_id "YDR335W"; gene_name "MSN5"; transcript_biotype "protein_coding"; +chrIV SGD exon 1140811 1144954 . + . transcript_id "YDR335W_id001"; gene_id "YDR335W"; gene_name "MSN5"; +chrIV SGD transcript 1141168 1144842 . + . transcript_id "YDR335W_id003"; gene_id "YDR335W"; gene_name "MSN5"; transcript_biotype "protein_coding"; +chrIV SGD exon 1141168 1144842 . + 0 transcript_id "YDR335W_id003"; gene_name "MSN5"; gene_id "YDR335W"; +chrIV SGD gene 1145020 1146134 . + . gene_id "YDR336W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1145020 1146134 . + . transcript_id "YDR336W_id003"; gene_id "YDR336W"; gene_name "MRX8"; transcript_biotype "protein_coding"; +chrIV SGD exon 1145020 1146134 . + . transcript_id "YDR336W_id003"; gene_id "YDR336W"; gene_name "MRX8"; +chrIV SGD transcript 1145092 1146036 . + . transcript_id "YDR336W_id001"; gene_id "YDR336W"; gene_name "MRX8"; transcript_biotype "protein_coding"; +chrIV SGD exon 1145092 1146036 . + 0 transcript_id "YDR336W_id001"; gene_name "MRX8"; gene_id "YDR336W"; +chrIV SGD gene 1146252 1147408 . + . gene_id "YDR337W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1146252 1147408 . + . transcript_id "YDR337W_id001"; gene_id "YDR337W"; gene_name "MRPS28"; transcript_biotype "protein_coding"; +chrIV SGD exon 1146252 1147408 . + . transcript_id "YDR337W_id001"; gene_id "YDR337W"; gene_name "MRPS28"; +chrIV SGD transcript 1146319 1147179 . + . transcript_id "YDR337W_id002"; gene_id "YDR337W"; gene_name "MRPS28"; transcript_biotype "protein_coding"; +chrIV SGD exon 1146319 1147179 . + 0 transcript_id "YDR337W_id002"; gene_name "MRPS28"; gene_id "YDR337W"; +chrIV SGD gene 1147255 1149717 . - . gene_id "YDR338C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1147255 1149717 . - . transcript_id "YDR338C_id001"; gene_id "YDR338C"; transcript_biotype "protein_coding"; +chrIV SGD exon 1147255 1149717 . - . transcript_id "YDR338C_id001"; gene_id "YDR338C"; +chrIV SGD transcript 1147379 1149466 . - . transcript_id "YDR338C_id002"; gene_id "YDR338C"; transcript_biotype "protein_coding"; +chrIV SGD exon 1147379 1149466 . - 0 transcript_id "YDR338C_id002"; gene_id "YDR338C"; +chrIV SGD gene 1149459 1150540 . - . gene_id "YDR339C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1149459 1150540 . - . transcript_id "YDR339C_id002"; gene_id "YDR339C"; gene_name "FCF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1149459 1150540 . - . transcript_id "YDR339C_id002"; gene_id "YDR339C"; gene_name "FCF1"; +chrIV SGD transcript 1149951 1150520 . - . transcript_id "YDR339C_id001"; gene_id "YDR339C"; gene_name "FCF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1149951 1150520 . - 0 transcript_id "YDR339C_id001"; gene_name "FCF1"; gene_id "YDR339C"; +chrIV SGD gene 1150842 1150941 . - . gene_id "YNCD0024C"; gene_biotype "ncRNA"; +chrIV SGD transcript 1150842 1150941 . - . transcript_id "YNCD0024C_tRNA"; gene_id "YNCD0024C"; transcript_biotype "ncRNA"; +chrIV SGD exon 1150842 1150941 . - . transcript_id "YNCD0024C_tRNA"; gene_id "YNCD0024C"; +chrIV SGD gene 1150881 1151183 . + . gene_id "YDR340W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1150881 1151183 . + . transcript_id "YDR340W_mRNA"; gene_id "YDR340W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1150881 1151183 . + 0 transcript_id "YDR340W_mRNA"; gene_id "YDR340W"; +chrIV SGD gene 1151653 1153727 . - . gene_id "YDR341C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1151653 1153727 . - . transcript_id "YDR341C_id002"; gene_id "YDR341C"; transcript_biotype "protein_coding"; +chrIV SGD exon 1151653 1153727 . - . transcript_id "YDR341C_id002"; gene_id "YDR341C"; +chrIV SGD transcript 1151803 1153626 . - . transcript_id "YDR341C_id001"; gene_id "YDR341C"; transcript_biotype "protein_coding"; +chrIV SGD exon 1151803 1153626 . - 0 transcript_id "YDR341C_id001"; gene_id "YDR341C"; +chrIV SGD gene 1154074 1156412 . - . gene_id "YDR342C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1154074 1156412 . - . transcript_id "YDR342C_id001"; gene_id "YDR342C"; gene_name "HXT7"; transcript_biotype "protein_coding"; +chrIV SGD exon 1154074 1156412 . - . transcript_id "YDR342C_id001"; gene_id "YDR342C"; gene_name "HXT7"; +chrIV SGD transcript 1154216 1155928 . - . transcript_id "YDR342C_id003"; gene_id "YDR342C"; gene_name "HXT7"; transcript_biotype "protein_coding"; +chrIV SGD exon 1154216 1155928 . - 0 transcript_id "YDR342C_id003"; gene_name "HXT7"; gene_id "YDR342C"; +chrIV SGD gene 1159608 1161320 . - . gene_id "YDR343C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1159608 1161320 . - . transcript_id "YDR343C_id001"; gene_id "YDR343C"; gene_name "HXT6"; transcript_biotype "protein_coding"; +chrIV SGD exon 1159608 1161320 . - 0 transcript_id "YDR343C_id001"; gene_name "HXT6"; gene_id "YDR343C"; +chrIV SGD gene 1162006 1162449 . - . gene_id "YDR344C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1162006 1162449 . - . transcript_id "YDR344C_mRNA"; gene_id "YDR344C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1162006 1162449 . - 0 transcript_id "YDR344C_mRNA"; gene_id "YDR344C"; +chrIV SGD gene 1162818 1164762 . - . gene_id "YDR345C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1162818 1164762 . - . transcript_id "YDR345C_id001"; gene_id "YDR345C"; gene_name "HXT3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1162818 1164762 . - . transcript_id "YDR345C_id001"; gene_id "YDR345C"; gene_name "HXT3"; +chrIV SGD transcript 1162957 1164660 . - . transcript_id "YDR345C_id034"; gene_id "YDR345C"; gene_name "HXT3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1162957 1164660 . - 0 transcript_id "YDR345C_id034"; gene_name "HXT3"; gene_id "YDR345C"; +chrIV SGD gene 1166895 1168886 . - . gene_id "YDR346C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1166895 1168886 . - . transcript_id "YDR346C_id001"; gene_id "YDR346C"; gene_name "SVF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1166895 1168886 . - . transcript_id "YDR346C_id001"; gene_id "YDR346C"; gene_name "SVF1"; +chrIV SGD transcript 1167214 1168659 . - . transcript_id "YDR346C_id004"; gene_id "YDR346C"; gene_name "SVF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1167214 1168659 . - 0 transcript_id "YDR346C_id004"; gene_name "SVF1"; gene_id "YDR346C"; +chrIV SGD gene 1169178 1170143 . + . gene_id "YDR347W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1169178 1170143 . + . transcript_id "YDR347W_id001"; gene_id "YDR347W"; gene_name "MRP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1169178 1170143 . + 0 transcript_id "YDR347W_id001"; gene_name "MRP1"; gene_id "YDR347W"; +chrIV SGD gene 1170039 1172068 . - . gene_id "YDR348C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1170039 1172068 . - . transcript_id "YDR348C_id001"; gene_id "YDR348C"; gene_name "PAL1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1170039 1172068 . - . transcript_id "YDR348C_id001"; gene_id "YDR348C"; gene_name "PAL1"; +chrIV SGD transcript 1170326 1171825 . - . transcript_id "YDR348C_id002"; gene_id "YDR348C"; gene_name "PAL1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1170326 1171825 . - 0 transcript_id "YDR348C_id002"; gene_name "PAL1"; gene_id "YDR348C"; +chrIV SGD gene 1172232 1174289 . - . gene_id "YDR349C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1172232 1174289 . - . transcript_id "YDR349C_id003"; gene_id "YDR349C"; gene_name "YPS7"; transcript_biotype "protein_coding"; +chrIV SGD exon 1172232 1174289 . - . transcript_id "YDR349C_id003"; gene_id "YDR349C"; gene_name "YPS7"; +chrIV SGD transcript 1172386 1174176 . - . transcript_id "YDR349C_id001"; gene_id "YDR349C"; gene_name "YPS7"; transcript_biotype "protein_coding"; +chrIV SGD exon 1172386 1174176 . - 0 transcript_id "YDR349C_id001"; gene_name "YPS7"; gene_id "YDR349C"; +chrIV SGD gene 1175829 1175901 . + . gene_id "YNCD0025W"; gene_biotype "ncRNA"; +chrIV SGD transcript 1175829 1175901 . + . transcript_id "YNCD0025W_tRNA"; gene_id "YNCD0025W"; gene_name "EMT1"; transcript_biotype "ncRNA"; +chrIV SGD exon 1175829 1175901 . + . transcript_id "YNCD0025W_tRNA"; gene_name "EMT1"; gene_id "YNCD0025W"; +chrIV SGD gene 1176047 1178202 . - . gene_id "YDR350C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1176047 1178202 . - . transcript_id "YDR350C_id007"; gene_id "YDR350C"; gene_name "ATP22"; transcript_biotype "protein_coding"; +chrIV SGD exon 1176047 1178202 . - . transcript_id "YDR350C_id007"; gene_id "YDR350C"; gene_name "ATP22"; +chrIV SGD transcript 1176120 1178174 . - . transcript_id "YDR350C_id001"; gene_id "YDR350C"; gene_name "ATP22"; transcript_biotype "protein_coding"; +chrIV SGD exon 1176120 1178174 . - 0 transcript_id "YDR350C_id001"; gene_name "ATP22"; gene_id "YDR350C"; +chrIV SGD gene 1178666 1181260 . + . gene_id "YDR351W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1178666 1181260 . + . transcript_id "YDR351W_id001"; gene_id "YDR351W"; gene_name "SBE2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1178666 1181260 . + 0 transcript_id "YDR351W_id001"; gene_name "SBE2"; gene_id "YDR351W"; +chrIV SGD gene 1181684 1183315 . + . gene_id "YDR352W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1181684 1183315 . + . transcript_id "YDR352W_id003"; gene_id "YDR352W"; gene_name "YPQ2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1181684 1183315 . + . transcript_id "YDR352W_id003"; gene_id "YDR352W"; gene_name "YPQ2"; +chrIV SGD transcript 1181801 1182754 . + . transcript_id "YDR352W_id001"; gene_id "YDR352W"; gene_name "YPQ2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1181801 1182754 . + 0 transcript_id "YDR352W_id001"; gene_name "YPQ2"; gene_id "YDR352W"; +chrIV SGD gene 1183223 1184534 . + . gene_id "YDR353W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1183223 1184534 . + . transcript_id "YDR353W_id006"; gene_id "YDR353W"; gene_name "TRR1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1183223 1184534 . + . transcript_id "YDR353W_id006"; gene_id "YDR353W"; gene_name "TRR1"; +chrIV SGD transcript 1183299 1184258 . + . transcript_id "YDR353W_id001"; gene_id "YDR353W"; gene_name "TRR1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1183299 1184258 . + 0 transcript_id "YDR353W_id001"; gene_name "TRR1"; gene_id "YDR353W"; +chrIV SGD gene 1184621 1186001 . + . gene_id "YDR354W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1184621 1186001 . + . transcript_id "YDR354W_id001"; gene_id "YDR354W"; gene_name "TRP4"; transcript_biotype "protein_coding"; +chrIV SGD exon 1184621 1186001 . + . transcript_id "YDR354W_id001"; gene_id "YDR354W"; gene_name "TRP4"; +chrIV SGD transcript 1184747 1185889 . + . transcript_id "YDR354W_id004"; gene_id "YDR354W"; gene_name "TRP4"; transcript_biotype "protein_coding"; +chrIV SGD exon 1184747 1185889 . + 0 transcript_id "YDR354W_id004"; gene_name "TRP4"; gene_id "YDR354W"; +chrIV SGD gene 1185139 1185282 . - . gene_id "YDR354C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 1185139 1185282 . - . transcript_id "YDR354C-A_mRNA"; gene_id "YDR354C-A"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1185139 1185282 . - 0 transcript_id "YDR354C-A_mRNA"; gene_id "YDR354C-A"; +chrIV SGD gene 1186067 1186369 . - . gene_id "YDR355C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1186067 1186369 . - . transcript_id "YDR355C_mRNA"; gene_id "YDR355C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1186067 1186369 . - 0 transcript_id "YDR355C_mRNA"; gene_id "YDR355C"; +chrIV SGD gene 1186107 1188941 . + . gene_id "YDR356W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1186107 1188941 . + . transcript_id "YDR356W_mRNA"; gene_id "YDR356W"; gene_name "SPC110"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1186107 1188941 . + 0 transcript_id "YDR356W_mRNA"; gene_name "SPC110"; gene_id "YDR356W"; +chrIV SGD gene 1189093 1189768 . - . gene_id "YDR357C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1189093 1189768 . - . transcript_id "YDR357C_id002"; gene_id "YDR357C"; gene_name "CNL1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1189093 1189768 . - . transcript_id "YDR357C_id002"; gene_id "YDR357C"; gene_name "CNL1"; +chrIV SGD transcript 1189199 1189567 . - . transcript_id "YDR357C_id001"; gene_id "YDR357C"; gene_name "CNL1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1189199 1189567 . - 0 transcript_id "YDR357C_id001"; gene_name "CNL1"; gene_id "YDR357C"; +chrIV SGD gene 1190007 1191927 . + . gene_id "YDR358W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1190007 1191927 . + . transcript_id "YDR358W_id003"; gene_id "YDR358W"; gene_name "GGA1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1190007 1191927 . + . transcript_id "YDR358W_id003"; gene_id "YDR358W"; gene_name "GGA1"; +chrIV SGD transcript 1190059 1191732 . + . transcript_id "YDR358W_id001"; gene_id "YDR358W"; gene_name "GGA1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1190059 1191732 . + 0 transcript_id "YDR358W_id001"; gene_name "GGA1"; gene_id "YDR358W"; +chrIV SGD gene 1191936 1194884 . - . gene_id "YDR359C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1191936 1194884 . - . transcript_id "YDR359C_mRNA"; gene_id "YDR359C"; gene_name "EAF1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1191936 1194884 . - 0 transcript_id "YDR359C_mRNA"; gene_name "EAF1"; gene_id "YDR359C"; +chrIV SGD gene 1194598 1195032 . + . gene_id "YDR360W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1194598 1195032 . + . transcript_id "YDR360W_mRNA"; gene_id "YDR360W"; gene_name "OPI7"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1194598 1195032 . + 0 transcript_id "YDR360W_mRNA"; gene_name "OPI7"; gene_id "YDR360W"; +chrIV SGD gene 1195050 1196297 . - . gene_id "YDR361C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1195050 1196297 . - . transcript_id "YDR361C_id002"; gene_id "YDR361C"; gene_name "BCP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1195050 1196297 . - . transcript_id "YDR361C_id002"; gene_id "YDR361C"; gene_name "BCP1"; +chrIV SGD transcript 1195412 1196263 . - . transcript_id "YDR361C_id001"; gene_id "YDR361C"; gene_name "BCP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1195412 1196263 . - 0 transcript_id "YDR361C_id001"; gene_name "BCP1"; gene_id "YDR361C"; +chrIV SGD gene 1196464 1198807 . - . gene_id "YDR362C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1196464 1198807 . - . transcript_id "YDR362C_id001"; gene_id "YDR362C"; gene_name "TFC6"; transcript_biotype "protein_coding"; +chrIV SGD exon 1196464 1198807 . - . transcript_id "YDR362C_id001"; gene_id "YDR362C"; gene_name "TFC6"; +chrIV SGD transcript 1196679 1198697 . - . transcript_id "YDR362C_id002"; gene_id "YDR362C"; gene_name "TFC6"; transcript_biotype "protein_coding"; +chrIV SGD exon 1196679 1198697 . - 0 transcript_id "YDR362C_id002"; gene_name "TFC6"; gene_id "YDR362C"; +chrIV SGD gene 1199183 1200553 . + . gene_id "YDR363W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1199183 1200553 . + . transcript_id "YDR363W_id001"; gene_id "YDR363W"; gene_name "ESC2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1199183 1200553 . + 0 transcript_id "YDR363W_id001"; gene_name "ESC2"; gene_id "YDR363W"; +chrIV SGD gene 1201750 1201822 . + . gene_id "YNCD0026W"; gene_biotype "ncRNA"; +chrIV SGD transcript 1201750 1201822 . + . transcript_id "YNCD0026W_tRNA"; gene_id "YNCD0026W"; transcript_biotype "ncRNA"; +chrIV SGD exon 1201750 1201822 . + . transcript_id "YNCD0026W_tRNA"; gene_id "YNCD0026W"; +chrIV SGD gene 1202008 1202806 . + . gene_id "YDR363W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 1202008 1202806 . + . transcript_id "YDR363W-A_id001"; gene_id "YDR363W-A"; gene_name "SEM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1202008 1202806 . + . transcript_id "YDR363W-A_id001"; gene_id "YDR363W-A"; gene_name "SEM1"; +chrIV SGD transcript 1202128 1202397 . + . transcript_id "YDR363W-A_id002"; gene_id "YDR363W-A"; gene_name "SEM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1202128 1202397 . + 0 transcript_id "YDR363W-A_id002"; gene_name "SEM1"; gene_id "YDR363W-A"; +chrIV SGD gene 1202370 1204242 . - . gene_id "YDR364C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1202370 1204242 . - . transcript_id "YDR364C_id003"; gene_id "YDR364C"; gene_name "CDC40"; transcript_biotype "protein_coding"; +chrIV SGD exon 1202370 1204242 . - . transcript_id "YDR364C_id003"; gene_id "YDR364C"; gene_name "CDC40"; +chrIV SGD transcript 1202843 1204210 . - . transcript_id "YDR364C_id001"; gene_id "YDR364C"; gene_name "CDC40"; transcript_biotype "protein_coding"; +chrIV SGD exon 1202843 1204210 . - 0 transcript_id "YDR364C_id001"; gene_name "CDC40"; gene_id "YDR364C"; +chrIV SGD gene 1204384 1206470 . - . gene_id "YDR365C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1204384 1206470 . - . transcript_id "YDR365C_id001"; gene_id "YDR365C"; gene_name "ESF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1204384 1206470 . - . transcript_id "YDR365C_id001"; gene_id "YDR365C"; gene_name "ESF1"; +chrIV SGD transcript 1204497 1206383 . - . transcript_id "YDR365C_id002"; gene_id "YDR365C"; gene_name "ESF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1204497 1206383 . - 0 transcript_id "YDR365C_id002"; gene_name "ESF1"; gene_id "YDR365C"; +chrIV SGD gene 1206997 1208319 . + . gene_id "YDR365W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 1206997 1208319 . + . transcript_id "YDR365W-A_dummy"; gene_id "YDR365W-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 1206997 1208319 . + 0 transcript_id "YDR365W-A_dummy"; gene_id "YDR365W-A"; +chrIV SGD gene 1206997 1212265 . + . gene_id "YDR365W-B"; gene_biotype "protein_coding"; +chrIV SGD transcript 1206997 1212265 . + . transcript_id "YDR365W-B_dummy"; gene_id "YDR365W-B"; transcript_biotype "protein_coding"; +chrIV SGD exon 1206997 1208301 . + 0 transcript_id "YDR365W-B_dummy"; gene_id "YDR365W-B"; +chrIV SGD exon 1208303 1212265 . + 0 transcript_id "YDR365W-B_dummy"; gene_id "YDR365W-B"; +chrIV SGD gene 1212438 1212836 . - . gene_id "YDR366C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1212438 1212836 . - . transcript_id "YDR366C_mRNA"; gene_id "YDR366C"; gene_name "MOR1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1212438 1212836 . - 0 transcript_id "YDR366C_mRNA"; gene_name "MOR1"; gene_id "YDR366C"; +chrIV SGD gene 1212724 1213810 . + . gene_id "YDR367W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1212724 1213810 . + . transcript_id "YDR367W_id001"; gene_id "YDR367W"; gene_name "KEI1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1212724 1213810 . + . transcript_id "YDR367W_id001"; gene_id "YDR367W"; gene_name "KEI1"; +chrIV SGD transcript 1212848 1213614 . + . transcript_id "YDR367W_id002"; gene_id "YDR367W"; gene_name "KEI1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1212848 1212877 . + 0 transcript_id "YDR367W_id002"; gene_name "KEI1"; gene_id "YDR367W"; +chrIV SGD exon 1212979 1213614 . + 0 transcript_id "YDR367W_id002"; gene_name "KEI1"; gene_id "YDR367W"; +chrIV SGD gene 1213765 1214994 . + . gene_id "YDR368W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1213765 1214994 . + . transcript_id "YDR368W_id001"; gene_id "YDR368W"; gene_name "YPR1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1213765 1214994 . + . transcript_id "YDR368W_id001"; gene_id "YDR368W"; gene_name "YPR1"; +chrIV SGD transcript 1213904 1214842 . + . transcript_id "YDR368W_id003"; gene_id "YDR368W"; gene_name "YPR1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1213904 1214842 . + 0 transcript_id "YDR368W_id003"; gene_name "YPR1"; gene_id "YDR368W"; +chrIV SGD gene 1215016 1217580 . - . gene_id "YDR369C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1215016 1217580 . - . transcript_id "YDR369C_mRNA"; gene_id "YDR369C"; gene_name "XRS2"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1215016 1217580 . - 0 transcript_id "YDR369C_mRNA"; gene_name "XRS2"; gene_id "YDR369C"; +chrIV SGD gene 1217664 1219175 . - . gene_id "YDR370C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1217664 1219175 . - . transcript_id "YDR370C_id001"; gene_id "YDR370C"; gene_name "DXO1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1217664 1219175 . - . transcript_id "YDR370C_id001"; gene_id "YDR370C"; gene_name "DXO1"; +chrIV SGD transcript 1217782 1219110 . - . transcript_id "YDR370C_id002"; gene_id "YDR370C"; gene_name "DXO1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1217782 1219110 . - 0 transcript_id "YDR370C_id002"; gene_name "DXO1"; gene_id "YDR370C"; +chrIV SGD gene 1219298 1221049 . + . gene_id "YDR371W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1219298 1221049 . + . transcript_id "YDR371W_id001"; gene_id "YDR371W"; gene_name "CTS2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1219298 1221049 . + . transcript_id "YDR371W_id001"; gene_id "YDR371W"; gene_name "CTS2"; +chrIV SGD gene 1219340 1219897 . - . gene_id "YDR371C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 1219340 1219897 . - . transcript_id "YDR371C-A_id002"; gene_id "YDR371C-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 1219340 1219897 . - . transcript_id "YDR371C-A_id002"; gene_id "YDR371C-A"; +chrIV SGD transcript 1219413 1220948 . + . transcript_id "YDR371W_id002"; gene_id "YDR371W"; gene_name "CTS2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1219413 1220948 . + 0 transcript_id "YDR371W_id002"; gene_name "CTS2"; gene_id "YDR371W"; +chrIV SGD transcript 1219509 1219613 . - . transcript_id "YDR371C-A_id001"; gene_id "YDR371C-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 1219509 1219613 . - 0 transcript_id "YDR371C-A_id001"; gene_id "YDR371C-A"; +chrIV SGD gene 1220892 1222447 . - . gene_id "YDR372C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1220892 1222447 . - . transcript_id "YDR372C_id002"; gene_id "YDR372C"; gene_name "VPS74"; transcript_biotype "protein_coding"; +chrIV SGD exon 1220892 1222447 . - . transcript_id "YDR372C_id002"; gene_id "YDR372C"; gene_name "VPS74"; +chrIV SGD transcript 1221112 1222149 . - . transcript_id "YDR372C_id001"; gene_id "YDR372C"; gene_name "VPS74"; transcript_biotype "protein_coding"; +chrIV SGD exon 1221112 1222149 . - 0 transcript_id "YDR372C_id001"; gene_name "VPS74"; gene_id "YDR372C"; +chrIV SGD gene 1222682 1223462 . + . gene_id "YDR373W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1222682 1223462 . + . transcript_id "YDR373W_id002"; gene_id "YDR373W"; gene_name "FRQ1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1222682 1223462 . + . transcript_id "YDR373W_id002"; gene_id "YDR373W"; gene_name "FRQ1"; +chrIV SGD transcript 1222759 1223331 . + . transcript_id "YDR373W_id001"; gene_id "YDR373W"; gene_name "FRQ1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1222759 1223331 . + 0 transcript_id "YDR373W_id001"; gene_name "FRQ1"; gene_id "YDR373W"; +chrIV SGD gene 1223474 1224394 . - . gene_id "YDR374C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1223474 1224394 . - . transcript_id "YDR374C_mRNA"; gene_id "YDR374C"; gene_name "PHO92"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1223474 1224394 . - 0 transcript_id "YDR374C_mRNA"; gene_name "PHO92"; gene_id "YDR374C"; +chrIV SGD gene 1224730 1225320 . + . gene_id "YDR374W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 1224730 1225320 . + . transcript_id "YDR374W-A_id002"; gene_id "YDR374W-A"; gene_name "WIP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1224730 1225320 . + . transcript_id "YDR374W-A_id002"; gene_id "YDR374W-A"; gene_name "WIP1"; +chrIV SGD transcript 1224757 1225026 . + . transcript_id "YDR374W-A_id001"; gene_id "YDR374W-A"; gene_name "WIP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1224757 1225026 . + 0 transcript_id "YDR374W-A_id001"; gene_name "WIP1"; gene_id "YDR374W-A"; +chrIV SGD gene 1225108 1226579 . - . gene_id "YDR375C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1225108 1226579 . - . transcript_id "YDR375C_id001"; gene_id "YDR375C"; gene_name "BCS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1225108 1226579 . - . transcript_id "YDR375C_id001"; gene_id "YDR375C"; gene_name "BCS1"; +chrIV SGD transcript 1225166 1226536 . - . transcript_id "YDR375C_id002"; gene_id "YDR375C"; gene_name "BCS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1225166 1226536 . - 0 transcript_id "YDR375C_id002"; gene_name "BCS1"; gene_id "YDR375C"; +chrIV SGD gene 1226729 1228469 . + . gene_id "YDR376W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1226729 1228469 . + . transcript_id "YDR376W_id001"; gene_id "YDR376W"; gene_name "ARH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1226729 1228469 . + . transcript_id "YDR376W_id001"; gene_id "YDR376W"; gene_name "ARH1"; +chrIV SGD transcript 1226822 1228303 . + . transcript_id "YDR376W_id002"; gene_id "YDR376W"; gene_name "ARH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1226822 1228303 . + 0 transcript_id "YDR376W_id002"; gene_name "ARH1"; gene_id "YDR376W"; +chrIV SGD gene 1228531 1229643 . + . gene_id "YDR377W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1228531 1229643 . + . transcript_id "YDR377W_id002"; gene_id "YDR377W"; gene_name "ATP17"; transcript_biotype "protein_coding"; +chrIV SGD exon 1228531 1229643 . + . transcript_id "YDR377W_id002"; gene_id "YDR377W"; gene_name "ATP17"; +chrIV SGD transcript 1228611 1228916 . + . transcript_id "YDR377W_id001"; gene_id "YDR377W"; gene_name "ATP17"; transcript_biotype "protein_coding"; +chrIV SGD exon 1228611 1228916 . + 0 transcript_id "YDR377W_id001"; gene_name "ATP17"; gene_id "YDR377W"; +chrIV SGD gene 1229140 1230061 . - . gene_id "YDR378C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1229140 1230061 . - . transcript_id "YDR378C_id003"; gene_id "YDR378C"; gene_name "LSM6"; transcript_biotype "protein_coding"; +chrIV SGD exon 1229140 1230061 . - . transcript_id "YDR378C_id003"; gene_id "YDR378C"; gene_name "LSM6"; +chrIV SGD transcript 1229349 1229609 . - . transcript_id "YDR378C_id001"; gene_id "YDR378C"; gene_name "LSM6"; transcript_biotype "protein_coding"; +chrIV SGD exon 1229349 1229609 . - 0 transcript_id "YDR378C_id001"; gene_name "LSM6"; gene_id "YDR378C"; +chrIV SGD gene 1230091 1233274 . + . gene_id "YDR379W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1230091 1233274 . + . transcript_id "YDR379W_id004"; gene_id "YDR379W"; gene_name "RGA2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1230091 1233274 . + . transcript_id "YDR379W_id004"; gene_id "YDR379W"; gene_name "RGA2"; +chrIV SGD transcript 1230167 1233196 . + . transcript_id "YDR379W_id001"; gene_id "YDR379W"; gene_name "RGA2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1230167 1233196 . + 0 transcript_id "YDR379W_id001"; gene_name "RGA2"; gene_id "YDR379W"; +chrIV SGD gene 1233148 1233766 . - . gene_id "YDR379C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 1233148 1233766 . - . transcript_id "YDR379C-A_id001"; gene_id "YDR379C-A"; gene_name "SDH6"; transcript_biotype "protein_coding"; +chrIV SGD exon 1233148 1233766 . - . transcript_id "YDR379C-A_id001"; gene_id "YDR379C-A"; gene_name "SDH6"; +chrIV SGD transcript 1233278 1233517 . - . transcript_id "YDR379C-A_id003"; gene_id "YDR379C-A"; gene_name "SDH6"; transcript_biotype "protein_coding"; +chrIV SGD exon 1233278 1233517 . - 0 transcript_id "YDR379C-A_id003"; gene_name "SDH6"; gene_id "YDR379C-A"; +chrIV SGD gene 1234115 1236269 . + . gene_id "YDR380W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1234115 1236269 . + . transcript_id "YDR380W_id005"; gene_id "YDR380W"; gene_name "ARO10"; transcript_biotype "protein_coding"; +chrIV SGD exon 1234115 1236269 . + . transcript_id "YDR380W_id005"; gene_id "YDR380W"; gene_name "ARO10"; +chrIV SGD transcript 1234218 1236125 . + . transcript_id "YDR380W_id001"; gene_id "YDR380W"; gene_name "ARO10"; transcript_biotype "protein_coding"; +chrIV SGD exon 1234218 1236125 . + 0 transcript_id "YDR380W_id001"; gene_name "ARO10"; gene_id "YDR380W"; +chrIV SGD gene 1236461 1238352 . + . gene_id "YDR381W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1236461 1238352 . + . transcript_id "YDR381W_id001"; gene_id "YDR381W"; gene_name "YRA1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1236461 1238352 . + . transcript_id "YDR381W_id001"; gene_id "YDR381W"; gene_name "YRA1"; +chrIV SGD transcript 1236558 1238004 . + . transcript_id "YDR381W_id002"; gene_id "YDR381W"; gene_name "YRA1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1236558 1236842 . + 0 transcript_id "YDR381W_id002"; gene_name "YRA1"; gene_id "YDR381W"; +chrIV SGD exon 1237609 1238004 . + 0 transcript_id "YDR381W_id002"; gene_name "YRA1"; gene_id "YDR381W"; +chrIV SGD gene 1238198 1239008 . - . gene_id "YDR381C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 1238198 1239008 . - . transcript_id "YDR381C-A_id002"; gene_id "YDR381C-A"; gene_name "COI1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1238198 1239008 . - . transcript_id "YDR381C-A_id002"; gene_id "YDR381C-A"; gene_name "COI1"; +chrIV SGD transcript 1238312 1238850 . - . transcript_id "YDR381C-A_id001"; gene_id "YDR381C-A"; gene_name "COI1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1238312 1238630 . - 1 transcript_id "YDR381C-A_id001"; gene_name "COI1"; gene_id "YDR381C-A"; +chrIV SGD exon 1238825 1238850 . - 0 transcript_id "YDR381C-A_id001"; gene_name "COI1"; gene_id "YDR381C-A"; +chrIV SGD gene 1239411 1240067 . + . gene_id "YDR382W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1239411 1240067 . + . transcript_id "YDR382W_id001"; gene_id "YDR382W"; gene_name "RPP2B"; transcript_biotype "protein_coding"; +chrIV SGD exon 1239411 1240067 . + . transcript_id "YDR382W_id001"; gene_id "YDR382W"; gene_name "RPP2B"; +chrIV SGD transcript 1239492 1239824 . + . transcript_id "YDR382W_id002"; gene_id "YDR382W"; gene_name "RPP2B"; transcript_biotype "protein_coding"; +chrIV SGD exon 1239492 1239824 . + 0 transcript_id "YDR382W_id002"; gene_name "RPP2B"; gene_id "YDR382W"; +chrIV SGD gene 1239885 1240896 . - . gene_id "YDR383C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1239885 1240896 . - . transcript_id "YDR383C_id004"; gene_id "YDR383C"; gene_name "NKP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1239885 1240896 . - . transcript_id "YDR383C_id004"; gene_id "YDR383C"; gene_name "NKP1"; +chrIV SGD transcript 1239960 1240676 . - . transcript_id "YDR383C_id001"; gene_id "YDR383C"; gene_name "NKP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1239960 1240676 . - 0 transcript_id "YDR383C_id001"; gene_name "NKP1"; gene_id "YDR383C"; +chrIV SGD gene 1241044 1242539 . - . gene_id "YDR384C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1241044 1242539 . - . transcript_id "YDR384C_id001"; gene_id "YDR384C"; gene_name "ATO3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1241044 1242539 . - . transcript_id "YDR384C_id001"; gene_id "YDR384C"; gene_name "ATO3"; +chrIV SGD transcript 1241204 1242031 . - . transcript_id "YDR384C_id003"; gene_id "YDR384C"; gene_name "ATO3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1241204 1242031 . - 0 transcript_id "YDR384C_id003"; gene_name "ATO3"; gene_id "YDR384C"; +chrIV SGD gene 1243142 1245949 . + . gene_id "YDR385W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1243142 1245949 . + . transcript_id "YDR385W_id002"; gene_id "YDR385W"; gene_name "EFT2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1243142 1245949 . + . transcript_id "YDR385W_id002"; gene_id "YDR385W"; gene_name "EFT2"; +chrIV SGD transcript 1243230 1245758 . + . transcript_id "YDR385W_id001"; gene_id "YDR385W"; gene_name "EFT2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1243230 1245758 . + 0 transcript_id "YDR385W_id001"; gene_name "EFT2"; gene_id "YDR385W"; +chrIV SGD gene 1246063 1248091 . + . gene_id "YDR386W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1246063 1248091 . + . transcript_id "YDR386W_id005"; gene_id "YDR386W"; gene_name "MUS81"; transcript_biotype "protein_coding"; +chrIV SGD exon 1246063 1248091 . + . transcript_id "YDR386W_id005"; gene_id "YDR386W"; gene_name "MUS81"; +chrIV SGD transcript 1246084 1247982 . + . transcript_id "YDR386W_id001"; gene_id "YDR386W"; gene_name "MUS81"; transcript_biotype "protein_coding"; +chrIV SGD exon 1246084 1247982 . + 0 transcript_id "YDR386W_id001"; gene_name "MUS81"; gene_id "YDR386W"; +chrIV SGD gene 1247971 1249967 . - . gene_id "YDR387C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1247971 1249967 . - . transcript_id "YDR387C_id001"; gene_id "YDR387C"; gene_name "CIN10"; transcript_biotype "protein_coding"; +chrIV SGD exon 1247971 1249967 . - . transcript_id "YDR387C_id001"; gene_id "YDR387C"; gene_name "CIN10"; +chrIV SGD transcript 1248154 1249821 . - . transcript_id "YDR387C_id002"; gene_id "YDR387C"; gene_name "CIN10"; transcript_biotype "protein_coding"; +chrIV SGD exon 1248154 1249821 . - 0 transcript_id "YDR387C_id002"; gene_name "CIN10"; gene_id "YDR387C"; +chrIV SGD gene 1250135 1252152 . + . gene_id "YDR388W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1250135 1252152 . + . transcript_id "YDR388W_id001"; gene_id "YDR388W"; gene_name "RVS167"; transcript_biotype "protein_coding"; +chrIV SGD exon 1250135 1252152 . + . transcript_id "YDR388W_id001"; gene_id "YDR388W"; gene_name "RVS167"; +chrIV SGD transcript 1250186 1251634 . + . transcript_id "YDR388W_id002"; gene_id "YDR388W"; gene_name "RVS167"; transcript_biotype "protein_coding"; +chrIV SGD exon 1250186 1251634 . + 0 transcript_id "YDR388W_id002"; gene_name "RVS167"; gene_id "YDR388W"; +chrIV SGD gene 1252021 1254811 . + . gene_id "YDR389W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1252021 1254811 . + . transcript_id "YDR389W_id002"; gene_id "YDR389W"; gene_name "SAC7"; transcript_biotype "protein_coding"; +chrIV SGD exon 1252021 1254811 . + . transcript_id "YDR389W_id002"; gene_id "YDR389W"; gene_name "SAC7"; +chrIV SGD transcript 1252537 1254501 . + . transcript_id "YDR389W_id001"; gene_id "YDR389W"; gene_name "SAC7"; transcript_biotype "protein_coding"; +chrIV SGD exon 1252537 1254501 . + 0 transcript_id "YDR389W_id001"; gene_name "SAC7"; gene_id "YDR389W"; +chrIV SGD gene 1254838 1256876 . - . gene_id "YDR390C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1254838 1256876 . - . transcript_id "YDR390C_id002"; gene_id "YDR390C"; gene_name "UBA2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1254838 1256876 . - . transcript_id "YDR390C_id002"; gene_id "YDR390C"; gene_name "UBA2"; +chrIV SGD transcript 1254937 1256847 . - . transcript_id "YDR390C_id001"; gene_id "YDR390C"; gene_name "UBA2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1254937 1256847 . - 0 transcript_id "YDR390C_id001"; gene_name "UBA2"; gene_id "YDR390C"; +chrIV SGD gene 1257008 1257079 . - . gene_id "YNCD0027C"; gene_biotype "ncRNA"; +chrIV SGD transcript 1257008 1257079 . - . transcript_id "YNCD0027C_tRNA"; gene_id "YNCD0027C"; gene_name "SUF3"; transcript_biotype "ncRNA"; +chrIV SGD exon 1257008 1257079 . - . transcript_id "YNCD0027C_tRNA"; gene_name "SUF3"; gene_id "YNCD0027C"; +chrIV SGD gene 1257277 1258514 . - . gene_id "YDR391C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1257277 1258514 . - . transcript_id "YDR391C_id001"; gene_id "YDR391C"; transcript_biotype "protein_coding"; +chrIV SGD exon 1257277 1258514 . - . transcript_id "YDR391C_id001"; gene_id "YDR391C"; +chrIV SGD transcript 1257358 1258056 . - . transcript_id "YDR391C_id006"; gene_id "YDR391C"; transcript_biotype "protein_coding"; +chrIV SGD exon 1257358 1258056 . - 0 transcript_id "YDR391C_id006"; gene_id "YDR391C"; +chrIV SGD gene 1258655 1259984 . + . gene_id "YDR392W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1258655 1259984 . + . transcript_id "YDR392W_id006"; gene_id "YDR392W"; gene_name "SPT3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1258655 1259984 . + . transcript_id "YDR392W_id006"; gene_id "YDR392W"; gene_name "SPT3"; +chrIV SGD transcript 1258696 1259709 . + . transcript_id "YDR392W_id001"; gene_id "YDR392W"; gene_name "SPT3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1258696 1259709 . + 0 transcript_id "YDR392W_id001"; gene_name "SPT3"; gene_id "YDR392W"; +chrIV SGD gene 1259813 1261460 . + . gene_id "YDR393W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1259813 1261460 . + . transcript_id "YDR393W_id001"; gene_id "YDR393W"; gene_name "SHE9"; transcript_biotype "protein_coding"; +chrIV SGD exon 1259813 1261460 . + . transcript_id "YDR393W_id001"; gene_id "YDR393W"; gene_name "SHE9"; +chrIV SGD transcript 1259901 1261271 . + . transcript_id "YDR393W_id002"; gene_id "YDR393W"; gene_name "SHE9"; transcript_biotype "protein_coding"; +chrIV SGD exon 1259901 1261271 . + 0 transcript_id "YDR393W_id002"; gene_name "SHE9"; gene_id "YDR393W"; +chrIV SGD gene 1261365 1263049 . + . gene_id "YDR394W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1261365 1263049 . + . transcript_id "YDR394W_id001"; gene_id "YDR394W"; gene_name "RPT3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1261365 1263049 . + . transcript_id "YDR394W_id001"; gene_id "YDR394W"; gene_name "RPT3"; +chrIV SGD transcript 1261681 1262967 . + . transcript_id "YDR394W_id002"; gene_id "YDR394W"; gene_name "RPT3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1261681 1262967 . + 0 transcript_id "YDR394W_id002"; gene_name "RPT3"; gene_id "YDR394W"; +chrIV SGD gene 1263194 1266255 . + . gene_id "YDR395W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1263194 1266255 . + . transcript_id "YDR395W_id001"; gene_id "YDR395W"; gene_name "SXM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1263194 1266255 . + . transcript_id "YDR395W_id001"; gene_id "YDR395W"; gene_name "SXM1"; +chrIV SGD transcript 1263324 1266158 . + . transcript_id "YDR395W_id002"; gene_id "YDR395W"; gene_name "SXM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1263324 1266158 . + 0 transcript_id "YDR395W_id002"; gene_name "SXM1"; gene_id "YDR395W"; +chrIV SGD gene 1266185 1267186 . - . gene_id "YDR397C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1266185 1267186 . - . transcript_id "YDR397C_id001"; gene_id "YDR397C"; gene_name "NCB2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1266185 1267186 . - . transcript_id "YDR397C_id001"; gene_id "YDR397C"; gene_name "NCB2"; +chrIV SGD gene 1266295 1266795 . + . gene_id "YDR396W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1266295 1266795 . + . transcript_id "YDR396W_mRNA"; gene_id "YDR396W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1266295 1266795 . + 0 transcript_id "YDR396W_mRNA"; gene_id "YDR396W"; +chrIV SGD transcript 1266366 1266898 . - . transcript_id "YDR397C_id003"; gene_id "YDR397C"; gene_name "NCB2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1266366 1266769 . - 2 transcript_id "YDR397C_id003"; gene_name "NCB2"; gene_id "YDR397C"; +chrIV SGD exon 1266862 1266898 . - 0 transcript_id "YDR397C_id003"; gene_name "NCB2"; gene_id "YDR397C"; +chrIV SGD gene 1267357 1269539 . + . gene_id "YDR398W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1267357 1269539 . + . transcript_id "YDR398W_id002"; gene_id "YDR398W"; gene_name "UTP5"; transcript_biotype "protein_coding"; +chrIV SGD exon 1267357 1269539 . + . transcript_id "YDR398W_id002"; gene_id "YDR398W"; gene_name "UTP5"; +chrIV SGD transcript 1267471 1269402 . + . transcript_id "YDR398W_id001"; gene_id "YDR398W"; gene_name "UTP5"; transcript_biotype "protein_coding"; +chrIV SGD exon 1267471 1269402 . + 0 transcript_id "YDR398W_id001"; gene_name "UTP5"; gene_id "YDR398W"; +chrIV SGD gene 1269999 1270974 . + . gene_id "YDR399W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1269999 1270974 . + . transcript_id "YDR399W_id003"; gene_id "YDR399W"; gene_name "HPT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1269999 1270974 . + . transcript_id "YDR399W_id003"; gene_id "YDR399W"; gene_name "HPT1"; +chrIV SGD transcript 1270068 1270733 . + . transcript_id "YDR399W_id001"; gene_id "YDR399W"; gene_name "HPT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1270068 1270733 . + 0 transcript_id "YDR399W_id001"; gene_name "HPT1"; gene_id "YDR399W"; +chrIV SGD gene 1271063 1272085 . + . gene_id "YDR400W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1271063 1272085 . + . transcript_id "YDR400W_id001"; gene_id "YDR400W"; gene_name "URH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1271063 1272085 . + 0 transcript_id "YDR400W_id001"; gene_name "URH1"; gene_id "YDR400W"; +chrIV SGD gene 1272223 1272786 . + . gene_id "YDR401W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1272223 1272786 . + . transcript_id "YDR401W_mRNA"; gene_id "YDR401W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1272223 1272786 . + 0 transcript_id "YDR401W_mRNA"; gene_id "YDR401W"; +chrIV SGD gene 1272234 1273703 . - . gene_id "YDR402C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1272234 1273703 . - . transcript_id "YDR402C_mRNA"; gene_id "YDR402C"; gene_name "DIT2"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1272234 1273703 . - 0 transcript_id "YDR402C_mRNA"; gene_name "DIT2"; gene_id "YDR402C"; +chrIV SGD gene 1274602 1276212 . + . gene_id "YDR403W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1274602 1276212 . + . transcript_id "YDR403W_mRNA"; gene_id "YDR403W"; gene_name "DIT1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1274602 1276212 . + 0 transcript_id "YDR403W_mRNA"; gene_name "DIT1"; gene_id "YDR403W"; +chrIV SGD gene 1276512 1277907 . - . gene_id "YDR404C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1276512 1277907 . - . transcript_id "YDR404C_id001"; gene_id "YDR404C"; gene_name "RPB7"; transcript_biotype "protein_coding"; +chrIV SGD exon 1276512 1277907 . - . transcript_id "YDR404C_id001"; gene_id "YDR404C"; gene_name "RPB7"; +chrIV SGD transcript 1276654 1277169 . - . transcript_id "YDR404C_id002"; gene_id "YDR404C"; gene_name "RPB7"; transcript_biotype "protein_coding"; +chrIV SGD exon 1276654 1277169 . - 0 transcript_id "YDR404C_id002"; gene_name "RPB7"; gene_id "YDR404C"; +chrIV SGD gene 1277596 1279201 . + . gene_id "YDR405W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1277596 1279201 . + . transcript_id "YDR405W_id002"; gene_id "YDR405W"; gene_name "MRP20"; transcript_biotype "protein_coding"; +chrIV SGD exon 1277596 1279201 . + . transcript_id "YDR405W_id002"; gene_id "YDR405W"; gene_name "MRP20"; +chrIV SGD transcript 1277646 1278437 . + . transcript_id "YDR405W_id001"; gene_id "YDR405W"; gene_name "MRP20"; transcript_biotype "protein_coding"; +chrIV SGD exon 1277646 1278437 . + 0 transcript_id "YDR405W_id001"; gene_name "MRP20"; gene_id "YDR405W"; +chrIV SGD gene 1279210 1283799 . + . gene_id "YDR406W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1279210 1283799 . + . transcript_id "YDR406W_mRNA"; gene_id "YDR406W"; gene_name "PDR15"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1279210 1283799 . + 0 transcript_id "YDR406W_mRNA"; gene_name "PDR15"; gene_id "YDR406W"; +chrIV SGD gene 1283799 1284044 . + . gene_id "YDR406W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 1283799 1284044 . + . transcript_id "YDR406W-A_mRNA"; gene_id "YDR406W-A"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1283799 1284044 . + 0 transcript_id "YDR406W-A_mRNA"; gene_id "YDR406W-A"; +chrIV SGD gene 1284069 1287938 . - . gene_id "YDR407C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1284069 1287938 . - . transcript_id "YDR407C_id001"; gene_id "YDR407C"; gene_name "TRS120"; transcript_biotype "protein_coding"; +chrIV SGD exon 1284069 1287938 . - 0 transcript_id "YDR407C_id001"; gene_name "TRS120"; gene_id "YDR407C"; +chrIV SGD gene 1288122 1289151 . - . gene_id "YDR408C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1288122 1289151 . - . transcript_id "YDR408C_id001"; gene_id "YDR408C"; gene_name "ADE8"; transcript_biotype "protein_coding"; +chrIV SGD exon 1288122 1289151 . - . transcript_id "YDR408C_id001"; gene_id "YDR408C"; gene_name "ADE8"; +chrIV SGD transcript 1288215 1288859 . - . transcript_id "YDR408C_id002"; gene_id "YDR408C"; gene_name "ADE8"; transcript_biotype "protein_coding"; +chrIV SGD exon 1288215 1288859 . - 0 transcript_id "YDR408C_id002"; gene_name "ADE8"; gene_id "YDR408C"; +chrIV SGD gene 1289406 1292120 . + . gene_id "YDR409W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1289406 1292120 . + . transcript_id "YDR409W_mRNA"; gene_id "YDR409W"; gene_name "SIZ1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1289406 1292120 . + 0 transcript_id "YDR409W_mRNA"; gene_name "SIZ1"; gene_id "YDR409W"; +chrIV SGD gene 1292269 1293161 . - . gene_id "YDR410C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1292269 1293161 . - . transcript_id "YDR410C_id012"; gene_id "YDR410C"; gene_name "STE14"; transcript_biotype "protein_coding"; +chrIV SGD exon 1292269 1293161 . - . transcript_id "YDR410C_id012"; gene_id "YDR410C"; gene_name "STE14"; +chrIV SGD transcript 1292372 1293091 . - . transcript_id "YDR410C_id001"; gene_id "YDR410C"; gene_name "STE14"; transcript_biotype "protein_coding"; +chrIV SGD exon 1292372 1293091 . - 0 transcript_id "YDR410C_id001"; gene_name "STE14"; gene_id "YDR410C"; +chrIV SGD gene 1293256 1294444 . - . gene_id "YDR411C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1293256 1294444 . - . transcript_id "YDR411C_id003"; gene_id "YDR411C"; gene_name "DFM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1293256 1294444 . - . transcript_id "YDR411C_id003"; gene_id "YDR411C"; gene_name "DFM1"; +chrIV SGD transcript 1293369 1294394 . - . transcript_id "YDR411C_id001"; gene_id "YDR411C"; gene_name "DFM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1293369 1294394 . - 0 transcript_id "YDR411C_id001"; gene_name "DFM1"; gene_id "YDR411C"; +chrIV SGD gene 1294626 1295634 . + . gene_id "YDR412W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1294626 1295634 . + . transcript_id "YDR412W_id003"; gene_id "YDR412W"; gene_name "RRP17"; transcript_biotype "protein_coding"; +chrIV SGD exon 1294626 1295634 . + . transcript_id "YDR412W_id003"; gene_id "YDR412W"; gene_name "RRP17"; +chrIV SGD transcript 1294693 1295400 . + . transcript_id "YDR412W_id001"; gene_id "YDR412W"; gene_name "RRP17"; transcript_biotype "protein_coding"; +chrIV SGD exon 1294693 1295400 . + 0 transcript_id "YDR412W_id001"; gene_name "RRP17"; gene_id "YDR412W"; +chrIV SGD gene 1294836 1295411 . - . gene_id "YDR413C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1294836 1295411 . - . transcript_id "YDR413C_mRNA"; gene_id "YDR413C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1294836 1295411 . - 0 transcript_id "YDR413C_mRNA"; gene_id "YDR413C"; +chrIV SGD gene 1295437 1296883 . - . gene_id "YDR414C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1295437 1296883 . - . transcript_id "YDR414C_id002"; gene_id "YDR414C"; gene_name "ERD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1295437 1296883 . - . transcript_id "YDR414C_id002"; gene_id "YDR414C"; gene_name "ERD1"; +chrIV SGD transcript 1295598 1296686 . - . transcript_id "YDR414C_id001"; gene_id "YDR414C"; gene_name "ERD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1295598 1296686 . - 0 transcript_id "YDR414C_id001"; gene_name "ERD1"; gene_id "YDR414C"; +chrIV SGD gene 1296692 1298215 . - . gene_id "YDR415C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1296692 1298215 . - . transcript_id "YDR415C_id001"; gene_id "YDR415C"; transcript_biotype "protein_coding"; +chrIV SGD exon 1296692 1298215 . - . transcript_id "YDR415C_id001"; gene_id "YDR415C"; +chrIV SGD transcript 1297037 1298161 . - . transcript_id "YDR415C_id004"; gene_id "YDR415C"; transcript_biotype "protein_coding"; +chrIV SGD exon 1297037 1298161 . - 0 transcript_id "YDR415C_id004"; gene_id "YDR415C"; +chrIV SGD gene 1298346 1301043 . + . gene_id "YDR416W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1298346 1301043 . + . transcript_id "YDR416W_id001"; gene_id "YDR416W"; gene_name "SYF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1298346 1301043 . + . transcript_id "YDR416W_id001"; gene_id "YDR416W"; gene_name "SYF1"; +chrIV SGD transcript 1298432 1301011 . + . transcript_id "YDR416W_id002"; gene_id "YDR416W"; gene_name "SYF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1298432 1301011 . + 0 transcript_id "YDR416W_id002"; gene_name "SYF1"; gene_id "YDR416W"; +chrIV SGD gene 1300681 1302209 . + . gene_id "YDR418W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1300681 1302209 . + . transcript_id "YDR418W_id001"; gene_id "YDR418W"; gene_name "RPL12B"; transcript_biotype "protein_coding"; +chrIV SGD exon 1300681 1302209 . + . transcript_id "YDR418W_id001"; gene_id "YDR418W"; gene_name "RPL12B"; +chrIV SGD gene 1301555 1301926 . - . gene_id "YDR417C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1301555 1301926 . - . transcript_id "YDR417C_mRNA"; gene_id "YDR417C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1301555 1301926 . - 0 transcript_id "YDR417C_mRNA"; gene_id "YDR417C"; +chrIV SGD transcript 1301616 1302113 . + . transcript_id "YDR418W_id007"; gene_id "YDR418W"; gene_name "RPL12B"; transcript_biotype "protein_coding"; +chrIV SGD exon 1301616 1302113 . + 0 transcript_id "YDR418W_id007"; gene_name "RPL12B"; gene_id "YDR418W"; +chrIV SGD gene 1303169 1305459 . + . gene_id "YDR419W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1303169 1305459 . + . transcript_id "YDR419W_id001"; gene_id "YDR419W"; gene_name "RAD30"; transcript_biotype "protein_coding"; +chrIV SGD exon 1303169 1305459 . + . transcript_id "YDR419W_id001"; gene_id "YDR419W"; gene_name "RAD30"; +chrIV SGD transcript 1303174 1305072 . + . transcript_id "YDR419W_id002"; gene_id "YDR419W"; gene_name "RAD30"; transcript_biotype "protein_coding"; +chrIV SGD exon 1303174 1305072 . + 0 transcript_id "YDR419W_id002"; gene_name "RAD30"; gene_id "YDR419W"; +chrIV SGD gene 1305630 1305712 . + . gene_id "YNCD0028W"; gene_biotype "ncRNA"; +chrIV SGD transcript 1305630 1305712 . + . transcript_id "YNCD0028W_tRNA"; gene_id "YNCD0028W"; transcript_biotype "ncRNA"; +chrIV SGD exon 1305630 1305712 . + . transcript_id "YNCD0028W_tRNA"; gene_id "YNCD0028W"; +chrIV SGD gene 1306267 1311675 . + . gene_id "YDR420W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1306267 1311675 . + . transcript_id "YDR420W_mRNA"; gene_id "YDR420W"; gene_name "HKR1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1306267 1311675 . + 0 transcript_id "YDR420W_mRNA"; gene_name "HKR1"; gene_id "YDR420W"; +chrIV SGD gene 1311975 1314921 . + . gene_id "YDR421W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1311975 1314921 . + . transcript_id "YDR421W_id003"; gene_id "YDR421W"; gene_name "ARO80"; transcript_biotype "protein_coding"; +chrIV SGD exon 1311975 1314921 . + . transcript_id "YDR421W_id003"; gene_id "YDR421W"; gene_name "ARO80"; +chrIV SGD transcript 1312040 1314892 . + . transcript_id "YDR421W_id001"; gene_id "YDR421W"; gene_name "ARO80"; transcript_biotype "protein_coding"; +chrIV SGD exon 1312040 1314892 . + 0 transcript_id "YDR421W_id001"; gene_name "ARO80"; gene_id "YDR421W"; +chrIV SGD gene 1315036 1317883 . - . gene_id "YDR422C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1315036 1317883 . - . transcript_id "YDR422C_id001"; gene_id "YDR422C"; gene_name "SIP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1315036 1317883 . - . transcript_id "YDR422C_id001"; gene_id "YDR422C"; gene_name "SIP1"; +chrIV SGD transcript 1315326 1317773 . - . transcript_id "YDR422C_id004"; gene_id "YDR422C"; gene_name "SIP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1315326 1317773 . - 0 transcript_id "YDR422C_id004"; gene_name "SIP1"; gene_id "YDR422C"; +chrIV SGD gene 1317953 1319324 . - . gene_id "YDR423C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1317953 1319324 . - . transcript_id "YDR423C_id001"; gene_id "YDR423C"; gene_name "CAD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1317953 1319324 . - . transcript_id "YDR423C_id001"; gene_id "YDR423C"; gene_name "CAD1"; +chrIV SGD transcript 1318046 1319324 . - . transcript_id "YDR423C_id002"; gene_id "YDR423C"; gene_name "CAD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1318046 1319275 . - . transcript_id "YDR423C_id002"; gene_name "CAD1"; gene_id "YDR423C"; +chrIV SGD exon 1319307 1319324 . - . transcript_id "YDR423C_id002"; gene_name "CAD1"; gene_id "YDR423C"; +chrIV SGD exon 1318046 1319275 . - 0 transcript_id "YDR423C_id002"; gene_name "CAD1"; gene_id "YDR423C"; +chrIV SGD gene 1319346 1319935 . - . gene_id "YDR424C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1319346 1319935 . - . transcript_id "YDR424C_id002"; gene_id "YDR424C"; gene_name "DYN2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1319346 1319935 . - . transcript_id "YDR424C_id002"; gene_id "YDR424C"; gene_name "DYN2"; +chrIV SGD transcript 1319387 1319841 . - . transcript_id "YDR424C_id001"; gene_id "YDR424C"; gene_name "DYN2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1319387 1319617 . - 0 transcript_id "YDR424C_id001"; gene_name "DYN2"; gene_id "YDR424C"; +chrIV SGD exon 1319698 1319720 . - 2 transcript_id "YDR424C_id001"; gene_name "DYN2"; gene_id "YDR424C"; +chrIV SGD exon 1319817 1319841 . - 0 transcript_id "YDR424C_id001"; gene_name "DYN2"; gene_id "YDR424C"; +chrIV SGD gene 1320064 1321941 . + . gene_id "YDR425W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1320064 1321941 . + . transcript_id "YDR425W_id001"; gene_id "YDR425W"; gene_name "SNX41"; transcript_biotype "protein_coding"; +chrIV SGD exon 1320064 1321941 . + 0 transcript_id "YDR425W_id001"; gene_name "SNX41"; gene_id "YDR425W"; +chrIV SGD gene 1321629 1322006 . - . gene_id "YDR426C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1321629 1322006 . - . transcript_id "YDR426C_mRNA"; gene_id "YDR426C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1321629 1322006 . - 0 transcript_id "YDR426C_mRNA"; gene_id "YDR426C"; +chrIV SGD gene 1322173 1323520 . + . gene_id "YDR427W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1322173 1323520 . + . transcript_id "YDR427W_id003"; gene_id "YDR427W"; gene_name "RPN9"; transcript_biotype "protein_coding"; +chrIV SGD exon 1322173 1323520 . + . transcript_id "YDR427W_id003"; gene_id "YDR427W"; gene_name "RPN9"; +chrIV SGD transcript 1322205 1323386 . + . transcript_id "YDR427W_id001"; gene_id "YDR427W"; gene_name "RPN9"; transcript_biotype "protein_coding"; +chrIV SGD exon 1322205 1323386 . + 0 transcript_id "YDR427W_id001"; gene_name "RPN9"; gene_id "YDR427W"; +chrIV SGD gene 1322700 1324272 . - . gene_id "YDR428C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1322700 1324272 . - . transcript_id "YDR428C_id001"; gene_id "YDR428C"; gene_name "BNA7"; transcript_biotype "protein_coding"; +chrIV SGD exon 1322700 1324272 . - . transcript_id "YDR428C_id001"; gene_id "YDR428C"; gene_name "BNA7"; +chrIV SGD transcript 1323454 1324239 . - . transcript_id "YDR428C_id002"; gene_id "YDR428C"; gene_name "BNA7"; transcript_biotype "protein_coding"; +chrIV SGD exon 1323454 1324239 . - 0 transcript_id "YDR428C_id002"; gene_name "BNA7"; gene_id "YDR428C"; +chrIV SGD gene 1324264 1325319 . - . gene_id "YDR429C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1324264 1325319 . - . transcript_id "YDR429C_id007"; gene_id "YDR429C"; gene_name "TIF35"; transcript_biotype "protein_coding"; +chrIV SGD exon 1324264 1325319 . - . transcript_id "YDR429C_id007"; gene_id "YDR429C"; gene_name "TIF35"; +chrIV SGD transcript 1324477 1325301 . - . transcript_id "YDR429C_id001"; gene_id "YDR429C"; gene_name "TIF35"; transcript_biotype "protein_coding"; +chrIV SGD exon 1324477 1325301 . - 0 transcript_id "YDR429C_id001"; gene_name "TIF35"; gene_id "YDR429C"; +chrIV SGD gene 1325468 1328535 . - . gene_id "YDR430C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1325468 1328535 . - . transcript_id "YDR430C_id003"; gene_id "YDR430C"; gene_name "CYM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1325468 1328535 . - . transcript_id "YDR430C_id003"; gene_id "YDR430C"; gene_name "CYM1"; +chrIV SGD transcript 1325501 1328470 . - . transcript_id "YDR430C_id001"; gene_id "YDR430C"; gene_name "CYM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1325501 1328470 . - 0 transcript_id "YDR430C_id001"; gene_name "CYM1"; gene_id "YDR430C"; +chrIV SGD gene 1328390 1328701 . + . gene_id "YDR431W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1328390 1328701 . + . transcript_id "YDR431W_mRNA"; gene_id "YDR431W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1328390 1328701 . + 0 transcript_id "YDR431W_mRNA"; gene_id "YDR431W"; +chrIV SGD gene 1328783 1330027 . + . gene_id "YDR432W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1328783 1330027 . + . transcript_id "YDR432W_mRNA"; gene_id "YDR432W"; gene_name "NPL3"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1328783 1330027 . + 0 transcript_id "YDR432W_mRNA"; gene_name "NPL3"; gene_id "YDR432W"; +chrIV SGD gene 1328941 1330736 . + . gene_id "YDR433W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1328941 1330736 . + . transcript_id "YDR433W_id001"; gene_id "YDR433W"; transcript_biotype "protein_coding"; +chrIV SGD exon 1328941 1330736 . + . transcript_id "YDR433W_id001"; gene_id "YDR433W"; +chrIV SGD transcript 1329600 1330040 . + . transcript_id "YDR433W_id005"; gene_id "YDR433W"; transcript_biotype "protein_coding"; +chrIV SGD exon 1329600 1330040 . + 0 transcript_id "YDR433W_id005"; gene_id "YDR433W"; +chrIV SGD gene 1331049 1332934 . + . gene_id "YDR434W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1331049 1332934 . + . transcript_id "YDR434W_id001"; gene_id "YDR434W"; gene_name "GPI17"; transcript_biotype "protein_coding"; +chrIV SGD exon 1331049 1332934 . + . transcript_id "YDR434W_id001"; gene_id "YDR434W"; gene_name "GPI17"; +chrIV SGD transcript 1331237 1332841 . + . transcript_id "YDR434W_id002"; gene_id "YDR434W"; gene_name "GPI17"; transcript_biotype "protein_coding"; +chrIV SGD exon 1331237 1332841 . + 0 transcript_id "YDR434W_id002"; gene_name "GPI17"; gene_id "YDR434W"; +chrIV SGD gene 1332857 1334182 . - . gene_id "YDR435C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1332857 1334182 . - . transcript_id "YDR435C_id002"; gene_id "YDR435C"; gene_name "PPM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1332857 1334182 . - . transcript_id "YDR435C_id002"; gene_id "YDR435C"; gene_name "PPM1"; +chrIV SGD transcript 1332983 1333969 . - . transcript_id "YDR435C_id001"; gene_id "YDR435C"; gene_name "PPM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1332983 1333969 . - 0 transcript_id "YDR435C_id001"; gene_name "PPM1"; gene_id "YDR435C"; +chrIV SGD gene 1334689 1337114 . + . gene_id "YDR436W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1334689 1337114 . + . transcript_id "YDR436W_id002"; gene_id "YDR436W"; gene_name "PPZ2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1334689 1337114 . + . transcript_id "YDR436W_id002"; gene_id "YDR436W"; gene_name "PPZ2"; +chrIV SGD transcript 1334821 1336953 . + . transcript_id "YDR436W_id001"; gene_id "YDR436W"; gene_name "PPZ2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1334821 1336953 . + 0 transcript_id "YDR436W_id001"; gene_name "PPZ2"; gene_id "YDR436W"; +chrIV SGD gene 1337285 1339301 . + . gene_id "YDR437W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1337285 1339301 . + . transcript_id "YDR437W_id001"; gene_id "YDR437W"; gene_name "GPI19"; transcript_biotype "protein_coding"; +chrIV SGD exon 1337285 1339301 . + . transcript_id "YDR437W_id001"; gene_id "YDR437W"; gene_name "GPI19"; +chrIV SGD transcript 1337352 1337774 . + . transcript_id "YDR437W_id003"; gene_id "YDR437W"; gene_name "GPI19"; transcript_biotype "protein_coding"; +chrIV SGD exon 1337352 1337774 . + 0 transcript_id "YDR437W_id003"; gene_name "GPI19"; gene_id "YDR437W"; +chrIV SGD gene 1337765 1339472 . + . gene_id "YDR438W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1337765 1339472 . + . transcript_id "YDR438W_id004"; gene_id "YDR438W"; gene_name "THI74"; transcript_biotype "protein_coding"; +chrIV SGD exon 1337765 1339472 . + . transcript_id "YDR438W_id004"; gene_id "YDR438W"; gene_name "THI74"; +chrIV SGD transcript 1338274 1339386 . + . transcript_id "YDR438W_id001"; gene_id "YDR438W"; gene_name "THI74"; transcript_biotype "protein_coding"; +chrIV SGD exon 1338274 1339386 . + 0 transcript_id "YDR438W_id001"; gene_name "THI74"; gene_id "YDR438W"; +chrIV SGD gene 1339614 1340974 . + . gene_id "YDR439W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1339614 1340974 . + . transcript_id "YDR439W_id002"; gene_id "YDR439W"; gene_name "LRS4"; transcript_biotype "protein_coding"; +chrIV SGD exon 1339614 1340974 . + . transcript_id "YDR439W_id002"; gene_id "YDR439W"; gene_name "LRS4"; +chrIV SGD transcript 1339676 1340719 . + . transcript_id "YDR439W_id001"; gene_id "YDR439W"; gene_name "LRS4"; transcript_biotype "protein_coding"; +chrIV SGD exon 1339676 1340719 . + 0 transcript_id "YDR439W_id001"; gene_name "LRS4"; gene_id "YDR439W"; +chrIV SGD gene 1342406 1344348 . + . gene_id "YDR440W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1342406 1344348 . + . transcript_id "YDR440W_id005"; gene_id "YDR440W"; gene_name "DOT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1342406 1344348 . + . transcript_id "YDR440W_id005"; gene_id "YDR440W"; gene_name "DOT1"; +chrIV SGD transcript 1342493 1344241 . + . transcript_id "YDR440W_id001"; gene_id "YDR440W"; gene_name "DOT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1342493 1344241 . + 0 transcript_id "YDR440W_id001"; gene_name "DOT1"; gene_id "YDR440W"; +chrIV SGD gene 1344160 1345197 . - . gene_id "YDR441C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1344160 1345197 . - . transcript_id "YDR441C_id001"; gene_id "YDR441C"; gene_name "APT2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1344160 1345197 . - . transcript_id "YDR441C_id001"; gene_id "YDR441C"; gene_name "APT2"; +chrIV SGD transcript 1344517 1345062 . - . transcript_id "YDR441C_id003"; gene_id "YDR441C"; gene_name "APT2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1344517 1345062 . - 0 transcript_id "YDR441C_id003"; gene_name "APT2"; gene_id "YDR441C"; +chrIV SGD gene 1345633 1346766 . + . gene_id "YDR442W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1345633 1346766 . + . transcript_id "YDR442W_id002"; gene_id "YDR442W"; transcript_biotype "protein_coding"; +chrIV SGD exon 1345633 1346766 . + . transcript_id "YDR442W_id002"; gene_id "YDR442W"; +chrIV SGD transcript 1345647 1346039 . + . transcript_id "YDR442W_id001"; gene_id "YDR442W"; transcript_biotype "protein_coding"; +chrIV SGD exon 1345647 1346039 . + 0 transcript_id "YDR442W_id001"; gene_id "YDR442W"; +chrIV SGD gene 1345676 1349938 . - . gene_id "YDR443C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1345676 1349938 . - . transcript_id "YDR443C_mRNA"; gene_id "YDR443C"; gene_name "SSN2"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1345676 1349938 . - 0 transcript_id "YDR443C_mRNA"; gene_name "SSN2"; gene_id "YDR443C"; +chrIV SGD gene 1350205 1352433 . + . gene_id "YDR444W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1350205 1352433 . + . transcript_id "YDR444W_id001"; gene_id "YDR444W"; transcript_biotype "protein_coding"; +chrIV SGD exon 1350205 1352433 . + . transcript_id "YDR444W_id001"; gene_id "YDR444W"; +chrIV SGD transcript 1350290 1352353 . + . transcript_id "YDR444W_id003"; gene_id "YDR444W"; transcript_biotype "protein_coding"; +chrIV SGD exon 1350290 1352353 . + 0 transcript_id "YDR444W_id003"; gene_id "YDR444W"; +chrIV SGD gene 1352182 1352589 . - . gene_id "YDR445C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1352182 1352589 . - . transcript_id "YDR445C_mRNA"; gene_id "YDR445C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1352182 1352589 . - 0 transcript_id "YDR445C_mRNA"; gene_id "YDR445C"; +chrIV SGD gene 1352466 1352538 . - . gene_id "YNCD0029C"; gene_biotype "ncRNA"; +chrIV SGD transcript 1352466 1352538 . - . transcript_id "YNCD0029C_tRNA"; gene_id "YNCD0029C"; transcript_biotype "ncRNA"; +chrIV SGD exon 1352466 1352538 . - . transcript_id "YNCD0029C_tRNA"; gene_id "YNCD0029C"; +chrIV SGD gene 1353725 1354633 . + . gene_id "YDR446W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1353725 1354633 . + . transcript_id "YDR446W_mRNA"; gene_id "YDR446W"; gene_name "ECM11"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1353725 1354633 . + 0 transcript_id "YDR446W_mRNA"; gene_name "ECM11"; gene_id "YDR446W"; +chrIV SGD gene 1354590 1355631 . - . gene_id "YDR447C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1354590 1355631 . - . transcript_id "YDR447C_id001"; gene_id "YDR447C"; gene_name "RPS17B"; transcript_biotype "protein_coding"; +chrIV SGD exon 1354590 1355631 . - . transcript_id "YDR447C_id001"; gene_id "YDR447C"; gene_name "RPS17B"; +chrIV SGD transcript 1354829 1355553 . - . transcript_id "YDR447C_id003"; gene_id "YDR447C"; gene_name "RPS17B"; transcript_biotype "protein_coding"; +chrIV SGD exon 1354829 1355236 . - 0 transcript_id "YDR447C_id003"; gene_name "RPS17B"; gene_id "YDR447C"; +chrIV SGD exon 1355551 1355553 . - 0 transcript_id "YDR447C_id003"; gene_name "RPS17B"; gene_id "YDR447C"; +chrIV SGD gene 1356029 1357472 . + . gene_id "YDR448W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1356029 1357472 . + . transcript_id "YDR448W_id001"; gene_id "YDR448W"; gene_name "ADA2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1356029 1357472 . + . transcript_id "YDR448W_id001"; gene_id "YDR448W"; gene_name "ADA2"; +chrIV SGD transcript 1356065 1357369 . + . transcript_id "YDR448W_id002"; gene_id "YDR448W"; gene_name "ADA2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1356065 1357369 . + 0 transcript_id "YDR448W_id002"; gene_name "ADA2"; gene_id "YDR448W"; +chrIV SGD gene 1357362 1358931 . - . gene_id "YDR449C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1357362 1358931 . - . transcript_id "YDR449C_id003"; gene_id "YDR449C"; gene_name "UTP6"; transcript_biotype "protein_coding"; +chrIV SGD exon 1357362 1358931 . - . transcript_id "YDR449C_id003"; gene_id "YDR449C"; gene_name "UTP6"; +chrIV SGD transcript 1357580 1358902 . - . transcript_id "YDR449C_id001"; gene_id "YDR449C"; gene_name "UTP6"; transcript_biotype "protein_coding"; +chrIV SGD exon 1357580 1358902 . - 0 transcript_id "YDR449C_id001"; gene_name "UTP6"; gene_id "YDR449C"; +chrIV SGD gene 1359896 1361096 . + . gene_id "YDR450W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1359896 1361096 . + . transcript_id "YDR450W_id002"; gene_id "YDR450W"; gene_name "RPS18A"; transcript_biotype "protein_coding"; +chrIV SGD exon 1359896 1361096 . + . transcript_id "YDR450W_id002"; gene_id "YDR450W"; gene_name "RPS18A"; +chrIV SGD transcript 1359923 1360798 . + . transcript_id "YDR450W_id001"; gene_id "YDR450W"; gene_name "RPS18A"; transcript_biotype "protein_coding"; +chrIV SGD exon 1359923 1359969 . + 0 transcript_id "YDR450W_id001"; gene_name "RPS18A"; gene_id "YDR450W"; +chrIV SGD exon 1360405 1360798 . + 1 transcript_id "YDR450W_id001"; gene_name "RPS18A"; gene_id "YDR450W"; +chrIV SGD gene 1360785 1362243 . - . gene_id "YDR451C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1360785 1362243 . - . transcript_id "YDR451C_id002"; gene_id "YDR451C"; gene_name "YHP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1360785 1362243 . - . transcript_id "YDR451C_id002"; gene_id "YDR451C"; gene_name "YHP1"; +chrIV SGD transcript 1361120 1362181 . - . transcript_id "YDR451C_id001"; gene_id "YDR451C"; gene_name "YHP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1361120 1362181 . - 0 transcript_id "YDR451C_id001"; gene_name "YHP1"; gene_id "YDR451C"; +chrIV SGD gene 1362878 1364902 . + . gene_id "YDR452W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1362878 1364902 . + . transcript_id "YDR452W_id001"; gene_id "YDR452W"; gene_name "PPN1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1362878 1364902 . + 0 transcript_id "YDR452W_id001"; gene_name "PPN1"; gene_id "YDR452W"; +chrIV SGD gene 1364974 1366022 . - . gene_id "YDR453C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1364974 1366022 . - . transcript_id "YDR453C_id001"; gene_id "YDR453C"; gene_name "TSA2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1364974 1366022 . - . transcript_id "YDR453C_id001"; gene_id "YDR453C"; gene_name "TSA2"; +chrIV SGD transcript 1365072 1365662 . - . transcript_id "YDR453C_id003"; gene_id "YDR453C"; gene_name "TSA2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1365072 1365662 . - 0 transcript_id "YDR453C_id003"; gene_name "TSA2"; gene_id "YDR453C"; +chrIV SGD gene 1365758 1366897 . - . gene_id "YDR454C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1365758 1366897 . - . transcript_id "YDR454C_id001"; gene_id "YDR454C"; gene_name "GUK1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1365758 1366897 . - . transcript_id "YDR454C_id001"; gene_id "YDR454C"; gene_name "GUK1"; +chrIV SGD transcript 1366264 1366827 . - . transcript_id "YDR454C_id002"; gene_id "YDR454C"; gene_name "GUK1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1366264 1366827 . - 0 transcript_id "YDR454C_id002"; gene_name "GUK1"; gene_id "YDR454C"; +chrIV SGD gene 1367373 1367681 . - . gene_id "YDR455C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1367373 1367681 . - . transcript_id "YDR455C_mRNA"; gene_id "YDR455C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1367373 1367681 . - 0 transcript_id "YDR455C_mRNA"; gene_id "YDR455C"; +chrIV SGD gene 1367400 1369492 . + . gene_id "YDR456W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1367400 1369492 . + . transcript_id "YDR456W_id002"; gene_id "YDR456W"; gene_name "NHX1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1367400 1369492 . + . transcript_id "YDR456W_id002"; gene_id "YDR456W"; gene_name "NHX1"; +chrIV SGD transcript 1367485 1369386 . + . transcript_id "YDR456W_id001"; gene_id "YDR456W"; gene_name "NHX1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1367485 1369386 . + 0 transcript_id "YDR456W_id001"; gene_name "NHX1"; gene_id "YDR456W"; +chrIV SGD gene 1369790 1379596 . + . gene_id "YDR457W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1369790 1379596 . + . transcript_id "YDR457W_mRNA"; gene_id "YDR457W"; gene_name "TOM1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1369790 1379596 . + 0 transcript_id "YDR457W_mRNA"; gene_name "TOM1"; gene_id "YDR457W"; +chrIV SGD gene 1379881 1382086 . - . gene_id "YDR458C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1379881 1382086 . - . transcript_id "YDR458C_id007"; gene_id "YDR458C"; gene_name "HEH2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1379881 1382086 . - . transcript_id "YDR458C_id007"; gene_id "YDR458C"; gene_name "HEH2"; +chrIV SGD transcript 1380055 1382046 . - . transcript_id "YDR458C_id001"; gene_id "YDR458C"; gene_name "HEH2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1380055 1382046 . - 0 transcript_id "YDR458C_id001"; gene_name "HEH2"; gene_id "YDR458C"; +chrIV SGD gene 1382247 1383739 . - . gene_id "YDR459C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1382247 1383739 . - . transcript_id "YDR459C_id001"; gene_id "YDR459C"; gene_name "PFA5"; transcript_biotype "protein_coding"; +chrIV SGD exon 1382247 1383739 . - . transcript_id "YDR459C_id001"; gene_id "YDR459C"; gene_name "PFA5"; +chrIV SGD transcript 1382319 1383443 . - . transcript_id "YDR459C_id005"; gene_id "YDR459C"; gene_name "PFA5"; transcript_biotype "protein_coding"; +chrIV SGD exon 1382319 1383443 . - 0 transcript_id "YDR459C_id005"; gene_name "PFA5"; gene_id "YDR459C"; +chrIV SGD gene 1383671 1384979 . + . gene_id "YDR460W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1383671 1384979 . + . transcript_id "YDR460W_id003"; gene_id "YDR460W"; gene_name "TFB3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1383671 1384979 . + . transcript_id "YDR460W_id003"; gene_id "YDR460W"; gene_name "TFB3"; +chrIV SGD transcript 1383811 1384776 . + . transcript_id "YDR460W_id001"; gene_id "YDR460W"; gene_name "TFB3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1383811 1384776 . + 0 transcript_id "YDR460W_id001"; gene_name "TFB3"; gene_id "YDR460W"; +chrIV SGD gene 1385148 1385432 . + . gene_id "YDR461W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1385148 1385432 . + . transcript_id "YDR461W_id011"; gene_id "YDR461W"; gene_name "MFA1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1385148 1385432 . + . transcript_id "YDR461W_id011"; gene_id "YDR461W"; gene_name "MFA1"; +chrIV SGD transcript 1385176 1385286 . + . transcript_id "YDR461W_id001"; gene_id "YDR461W"; gene_name "MFA1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1385176 1385286 . + 0 transcript_id "YDR461W_id001"; gene_name "MFA1"; gene_id "YDR461W"; +chrIV SGD gene 1385356 1385831 . - . gene_id "YDR461C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 1385356 1385831 . - . transcript_id "YDR461C-A_id006"; gene_id "YDR461C-A"; gene_name "CMI8"; transcript_biotype "protein_coding"; +chrIV SGD exon 1385356 1385831 . - . transcript_id "YDR461C-A_id006"; gene_id "YDR461C-A"; gene_name "CMI8"; +chrIV SGD transcript 1385524 1385766 . - . transcript_id "YDR461C-A_id001"; gene_id "YDR461C-A"; gene_name "CMI8"; transcript_biotype "protein_coding"; +chrIV SGD exon 1385524 1385766 . - 0 transcript_id "YDR461C-A_id001"; gene_name "CMI8"; gene_id "YDR461C-A"; +chrIV SGD gene 1386021 1386697 . + . gene_id "YDR462W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1386021 1386697 . + . transcript_id "YDR462W_id002"; gene_id "YDR462W"; gene_name "MRPL28"; transcript_biotype "protein_coding"; +chrIV SGD exon 1386021 1386697 . + . transcript_id "YDR462W_id002"; gene_id "YDR462W"; gene_name "MRPL28"; +chrIV SGD transcript 1386073 1386516 . + . transcript_id "YDR462W_id001"; gene_id "YDR462W"; gene_name "MRPL28"; transcript_biotype "protein_coding"; +chrIV SGD exon 1386073 1386516 . + 0 transcript_id "YDR462W_id001"; gene_name "MRPL28"; gene_id "YDR462W"; +chrIV SGD gene 1386753 1388585 . + . gene_id "YDR463W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1386753 1388585 . + . transcript_id "YDR463W_id001"; gene_id "YDR463W"; gene_name "STP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1386753 1388585 . + . transcript_id "YDR463W_id001"; gene_id "YDR463W"; gene_name "STP1"; +chrIV SGD transcript 1386816 1388375 . + . transcript_id "YDR463W_id003"; gene_id "YDR463W"; gene_name "STP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1386816 1388375 . + 0 transcript_id "YDR463W_id003"; gene_name "STP1"; gene_id "YDR463W"; +chrIV SGD gene 1388872 1393179 . + . gene_id "YDR464W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1388872 1393179 . + . transcript_id "YDR464W_mRNA"; gene_id "YDR464W"; gene_name "SPP41"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1388872 1393179 . + 0 transcript_id "YDR464W_mRNA"; gene_name "SPP41"; gene_id "YDR464W"; +chrIV SGD gene 1392492 1392680 . - . gene_id "YDR464C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 1392492 1392680 . - . transcript_id "YDR464C-A_mRNA"; gene_id "YDR464C-A"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1392492 1392680 . - 0 transcript_id "YDR464C-A_mRNA"; gene_id "YDR464C-A"; +chrIV SGD gene 1393173 1394806 . - . gene_id "YDR465C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1393173 1394806 . - . transcript_id "YDR465C_id001"; gene_id "YDR465C"; gene_name "RMT2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1393173 1394806 . - . transcript_id "YDR465C_id001"; gene_id "YDR465C"; gene_name "RMT2"; +chrIV SGD transcript 1393336 1394574 . - . transcript_id "YDR465C_id002"; gene_id "YDR465C"; gene_name "RMT2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1393336 1394574 . - 0 transcript_id "YDR465C_id002"; gene_name "RMT2"; gene_id "YDR465C"; +chrIV SGD gene 1395026 1398065 . + . gene_id "YDR466W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1395026 1398065 . + . transcript_id "YDR466W_id001"; gene_id "YDR466W"; gene_name "PKH3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1395026 1398065 . + . transcript_id "YDR466W_id001"; gene_id "YDR466W"; gene_name "PKH3"; +chrIV SGD transcript 1395121 1397817 . + . transcript_id "YDR466W_id003"; gene_id "YDR466W"; gene_name "PKH3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1395121 1397817 . + 0 transcript_id "YDR466W_id003"; gene_name "PKH3"; gene_id "YDR466W"; +chrIV SGD gene 1396747 1398254 . - . gene_id "YDR467C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1396747 1398254 . - . transcript_id "YDR467C_id001"; gene_id "YDR467C"; transcript_biotype "protein_coding"; +chrIV SGD exon 1396747 1398254 . - . transcript_id "YDR467C_id001"; gene_id "YDR467C"; +chrIV SGD transcript 1397583 1397909 . - . transcript_id "YDR467C_id002"; gene_id "YDR467C"; transcript_biotype "protein_coding"; +chrIV SGD exon 1397583 1397909 . - 0 transcript_id "YDR467C_id002"; gene_id "YDR467C"; +chrIV SGD gene 1397734 1398814 . - . gene_id "YDR468C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1397734 1398814 . - . transcript_id "YDR468C_id004"; gene_id "YDR468C"; gene_name "TLG1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1397734 1398814 . - . transcript_id "YDR468C_id004"; gene_id "YDR468C"; gene_name "TLG1"; +chrIV SGD transcript 1398026 1398700 . - . transcript_id "YDR468C_id001"; gene_id "YDR468C"; gene_name "TLG1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1398026 1398700 . - 0 transcript_id "YDR468C_id001"; gene_name "TLG1"; gene_id "YDR468C"; +chrIV SGD gene 1398088 1401744 . + . gene_id "YDR469W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1398088 1401744 . + . transcript_id "YDR469W_id001"; gene_id "YDR469W"; gene_name "SDC1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1398088 1401744 . + . transcript_id "YDR469W_id001"; gene_id "YDR469W"; gene_name "SDC1"; +chrIV SGD transcript 1399015 1399542 . + . transcript_id "YDR469W_id002"; gene_id "YDR469W"; gene_name "SDC1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1399015 1399542 . + 0 transcript_id "YDR469W_id002"; gene_name "SDC1"; gene_id "YDR469W"; +chrIV SGD gene 1399513 1401321 . - . gene_id "YDR470C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1399513 1401321 . - . transcript_id "YDR470C_id002"; gene_id "YDR470C"; gene_name "UGO1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1399513 1401321 . - . transcript_id "YDR470C_id002"; gene_id "YDR470C"; gene_name "UGO1"; +chrIV SGD transcript 1399706 1401214 . - . transcript_id "YDR470C_id001"; gene_id "YDR470C"; gene_name "UGO1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1399706 1401214 . - 0 transcript_id "YDR470C_id001"; gene_name "UGO1"; gene_id "YDR470C"; +chrIV SGD gene 1401745 1402918 . + . gene_id "YDR471W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1401745 1402918 . + . transcript_id "YDR471W_id001"; gene_id "YDR471W"; gene_name "RPL27B"; transcript_biotype "protein_coding"; +chrIV SGD exon 1401745 1402918 . + . transcript_id "YDR471W_id001"; gene_id "YDR471W"; gene_name "RPL27B"; +chrIV SGD transcript 1401770 1402564 . + . transcript_id "YDR471W_id002"; gene_id "YDR471W"; gene_name "RPL27B"; transcript_biotype "protein_coding"; +chrIV SGD exon 1401770 1401800 . + 0 transcript_id "YDR471W_id002"; gene_name "RPL27B"; gene_id "YDR471W"; +chrIV SGD exon 1402185 1402564 . + 2 transcript_id "YDR471W_id002"; gene_name "RPL27B"; gene_id "YDR471W"; +chrIV SGD gene 1402919 1403042 . + . gene_id "YNCD0030W"; gene_biotype "ncRNA"; +chrIV SGD transcript 1402919 1403042 . + . transcript_id "YNCD0030W_snoRNA"; gene_id "YNCD0030W"; gene_name "SNR13"; transcript_biotype "ncRNA"; +chrIV SGD exon 1402919 1403042 . + . transcript_id "YNCD0030W_snoRNA"; gene_name "SNR13"; gene_id "YNCD0030W"; +chrIV SGD gene 1403187 1404416 . + . gene_id "YDR472W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1403187 1404416 . + . transcript_id "YDR472W_id003"; gene_id "YDR472W"; gene_name "TRS31"; transcript_biotype "protein_coding"; +chrIV SGD exon 1403187 1404416 . + . transcript_id "YDR472W_id003"; gene_id "YDR472W"; gene_name "TRS31"; +chrIV SGD transcript 1403322 1404173 . + . transcript_id "YDR472W_id001"; gene_id "YDR472W"; gene_name "TRS31"; transcript_biotype "protein_coding"; +chrIV SGD exon 1403322 1404173 . + 0 transcript_id "YDR472W_id001"; gene_name "TRS31"; gene_id "YDR472W"; +chrIV SGD gene 1404228 1405922 . - . gene_id "YDR473C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1404228 1405922 . - . transcript_id "YDR473C_id003"; gene_id "YDR473C"; gene_name "PRP3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1404228 1405922 . - . transcript_id "YDR473C_id003"; gene_id "YDR473C"; gene_name "PRP3"; +chrIV SGD transcript 1404445 1405854 . - . transcript_id "YDR473C_id001"; gene_id "YDR473C"; gene_name "PRP3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1404445 1405854 . - 0 transcript_id "YDR473C_id001"; gene_name "PRP3"; gene_id "YDR473C"; +chrIV SGD gene 1407337 1410192 . - . gene_id "YDR475C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1407337 1410192 . - . transcript_id "YDR475C_id002"; gene_id "YDR475C"; gene_name "JIP4"; transcript_biotype "protein_coding"; +chrIV SGD exon 1407337 1410192 . - . transcript_id "YDR475C_id002"; gene_id "YDR475C"; gene_name "JIP4"; +chrIV SGD transcript 1407464 1410094 . - . transcript_id "YDR475C_id001"; gene_id "YDR475C"; gene_name "JIP4"; transcript_biotype "protein_coding"; +chrIV SGD exon 1407464 1410094 . - 0 transcript_id "YDR475C_id001"; gene_name "JIP4"; gene_id "YDR475C"; +chrIV SGD gene 1410251 1412173 . - . gene_id "YDR476C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1410251 1412173 . - . transcript_id "YDR476C_id001"; gene_id "YDR476C"; transcript_biotype "protein_coding"; +chrIV SGD exon 1410251 1412173 . - . transcript_id "YDR476C_id001"; gene_id "YDR476C"; +chrIV SGD transcript 1410453 1411127 . - . transcript_id "YDR476C_id003"; gene_id "YDR476C"; transcript_biotype "protein_coding"; +chrIV SGD exon 1410453 1411127 . - 0 transcript_id "YDR476C_id003"; gene_id "YDR476C"; +chrIV SGD gene 1412079 1414422 . + . gene_id "YDR477W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1412079 1414422 . + . transcript_id "YDR477W_id003"; gene_id "YDR477W"; gene_name "SNF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1412079 1414422 . + . transcript_id "YDR477W_id003"; gene_id "YDR477W"; gene_name "SNF1"; +chrIV SGD transcript 1412373 1414274 . + . transcript_id "YDR477W_id001"; gene_id "YDR477W"; gene_name "SNF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1412373 1414274 . + 0 transcript_id "YDR477W_id001"; gene_name "SNF1"; gene_id "YDR477W"; +chrIV SGD gene 1414535 1416455 . + . gene_id "YDR478W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1414535 1416455 . + . transcript_id "YDR478W_id001"; gene_id "YDR478W"; gene_name "SNM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1414535 1416455 . + . transcript_id "YDR478W_id001"; gene_id "YDR478W"; gene_name "SNM1"; +chrIV SGD transcript 1414575 1415171 . + . transcript_id "YDR478W_id003"; gene_id "YDR478W"; gene_name "SNM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1414575 1415171 . + 0 transcript_id "YDR478W_id003"; gene_name "SNM1"; gene_id "YDR478W"; +chrIV SGD gene 1415128 1416941 . - . gene_id "YDR479C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1415128 1416941 . - . transcript_id "YDR479C_id002"; gene_id "YDR479C"; gene_name "PEX29"; transcript_biotype "protein_coding"; +chrIV SGD exon 1415128 1416941 . - . transcript_id "YDR479C_id002"; gene_id "YDR479C"; gene_name "PEX29"; +chrIV SGD transcript 1415210 1416874 . - . transcript_id "YDR479C_id001"; gene_id "YDR479C"; gene_name "PEX29"; transcript_biotype "protein_coding"; +chrIV SGD exon 1415210 1416874 . - 0 transcript_id "YDR479C_id001"; gene_name "PEX29"; gene_id "YDR479C"; +chrIV SGD gene 1417399 1418370 . + . gene_id "YDR480W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1417399 1418370 . + . transcript_id "YDR480W_mRNA"; gene_id "YDR480W"; gene_name "DIG2"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1417399 1418370 . + 0 transcript_id "YDR480W_mRNA"; gene_name "DIG2"; gene_id "YDR480W"; +chrIV SGD gene 1418493 1420305 . - . gene_id "YDR481C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1418493 1420305 . - . transcript_id "YDR481C_id002"; gene_id "YDR481C"; gene_name "PHO8"; transcript_biotype "protein_coding"; +chrIV SGD exon 1418493 1420305 . - . transcript_id "YDR481C_id002"; gene_id "YDR481C"; gene_name "PHO8"; +chrIV SGD transcript 1418550 1420250 . - . transcript_id "YDR481C_id001"; gene_id "YDR481C"; gene_name "PHO8"; transcript_biotype "protein_coding"; +chrIV SGD exon 1418550 1420250 . - 0 transcript_id "YDR481C_id001"; gene_name "PHO8"; gene_id "YDR481C"; +chrIV SGD gene 1420260 1421009 . - . gene_id "YDR482C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1420260 1421009 . - . transcript_id "YDR482C_id001"; gene_id "YDR482C"; gene_name "CWC21"; transcript_biotype "protein_coding"; +chrIV SGD exon 1420260 1421009 . - . transcript_id "YDR482C_id001"; gene_id "YDR482C"; gene_name "CWC21"; +chrIV SGD transcript 1420431 1420838 . - . transcript_id "YDR482C_id004"; gene_id "YDR482C"; gene_name "CWC21"; transcript_biotype "protein_coding"; +chrIV SGD exon 1420431 1420838 . - 0 transcript_id "YDR482C_id004"; gene_name "CWC21"; gene_id "YDR482C"; +chrIV SGD gene 1420974 1422637 . + . gene_id "YDR483W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1420974 1422637 . + . transcript_id "YDR483W_id003"; gene_id "YDR483W"; gene_name "KRE2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1420974 1422637 . + . transcript_id "YDR483W_id003"; gene_id "YDR483W"; gene_name "KRE2"; +chrIV SGD transcript 1421157 1422485 . + . transcript_id "YDR483W_id001"; gene_id "YDR483W"; gene_name "KRE2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1421157 1422485 . + 0 transcript_id "YDR483W_id001"; gene_name "KRE2"; gene_id "YDR483W"; +chrIV SGD gene 1422732 1424817 . + . gene_id "YDR484W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1422732 1424817 . + . transcript_id "YDR484W_id003"; gene_id "YDR484W"; gene_name "VPS52"; transcript_biotype "protein_coding"; +chrIV SGD exon 1422732 1424817 . + . transcript_id "YDR484W_id003"; gene_id "YDR484W"; gene_name "VPS52"; +chrIV SGD transcript 1422763 1424688 . + . transcript_id "YDR484W_id001"; gene_id "YDR484W"; gene_name "VPS52"; transcript_biotype "protein_coding"; +chrIV SGD exon 1422763 1424688 . + 0 transcript_id "YDR484W_id001"; gene_name "VPS52"; gene_id "YDR484W"; +chrIV SGD gene 1424687 1427276 . - . gene_id "YDR485C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1424687 1427276 . - . transcript_id "YDR485C_id002"; gene_id "YDR485C"; gene_name "VPS72"; transcript_biotype "protein_coding"; +chrIV SGD exon 1424687 1427276 . - . transcript_id "YDR485C_id002"; gene_id "YDR485C"; gene_name "VPS72"; +chrIV SGD transcript 1424820 1427207 . - . transcript_id "YDR485C_id001"; gene_id "YDR485C"; gene_name "VPS72"; transcript_biotype "protein_coding"; +chrIV SGD exon 1424820 1427207 . - 0 transcript_id "YDR485C_id001"; gene_name "VPS72"; gene_id "YDR485C"; +chrIV SGD gene 1427173 1428178 . - . gene_id "YDR486C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1427173 1428178 . - . transcript_id "YDR486C_id003"; gene_id "YDR486C"; gene_name "VPS60"; transcript_biotype "protein_coding"; +chrIV SGD exon 1427173 1428178 . - . transcript_id "YDR486C_id003"; gene_id "YDR486C"; gene_name "VPS60"; +chrIV SGD transcript 1427431 1428120 . - . transcript_id "YDR486C_id001"; gene_id "YDR486C"; gene_name "VPS60"; transcript_biotype "protein_coding"; +chrIV SGD exon 1427431 1428120 . - 0 transcript_id "YDR486C_id001"; gene_name "VPS60"; gene_id "YDR486C"; +chrIV SGD gene 1428243 1430223 . - . gene_id "YDR487C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1428243 1430223 . - . transcript_id "YDR487C_id005"; gene_id "YDR487C"; gene_name "RIB3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1428243 1430223 . - . transcript_id "YDR487C_id005"; gene_id "YDR487C"; gene_name "RIB3"; +chrIV SGD transcript 1428354 1428980 . - . transcript_id "YDR487C_id001"; gene_id "YDR487C"; gene_name "RIB3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1428354 1428980 . - 0 transcript_id "YDR487C_id001"; gene_name "RIB3"; gene_id "YDR487C"; +chrIV SGD gene 1429188 1430789 . - . gene_id "YDR488C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1429188 1430789 . - . transcript_id "YDR488C_id001"; gene_id "YDR488C"; gene_name "PAC11"; transcript_biotype "protein_coding"; +chrIV SGD exon 1429188 1430789 . - 0 transcript_id "YDR488C_id001"; gene_name "PAC11"; gene_id "YDR488C"; +chrIV SGD gene 1430994 1432500 . + . gene_id "YDR489W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1430994 1432500 . + . transcript_id "YDR489W_id002"; gene_id "YDR489W"; gene_name "SLD5"; transcript_biotype "protein_coding"; +chrIV SGD exon 1430994 1432500 . + . transcript_id "YDR489W_id002"; gene_id "YDR489W"; gene_name "SLD5"; +chrIV SGD transcript 1431012 1431896 . + . transcript_id "YDR489W_id001"; gene_id "YDR489W"; gene_name "SLD5"; transcript_biotype "protein_coding"; +chrIV SGD exon 1431012 1431896 . + 0 transcript_id "YDR489W_id001"; gene_name "SLD5"; gene_id "YDR489W"; +chrIV SGD gene 1431818 1434375 . - . gene_id "YDR490C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1431818 1434375 . - . transcript_id "YDR490C_id002"; gene_id "YDR490C"; gene_name "PKH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1431818 1434375 . - . transcript_id "YDR490C_id002"; gene_id "YDR490C"; gene_name "PKH1"; +chrIV SGD transcript 1431968 1434268 . - . transcript_id "YDR490C_id001"; gene_id "YDR490C"; gene_name "PKH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1431968 1434268 . - 0 transcript_id "YDR490C_id001"; gene_name "PKH1"; gene_id "YDR490C"; +chrIV SGD gene 1434500 1434991 . - . gene_id "YDR491C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1434500 1434991 . - . transcript_id "YDR491C_mRNA"; gene_id "YDR491C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1434500 1434991 . - 0 transcript_id "YDR491C_mRNA"; gene_id "YDR491C"; +chrIV SGD gene 1434770 1436225 . + . gene_id "YDR492W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1434770 1436225 . + . transcript_id "YDR492W_id001"; gene_id "YDR492W"; gene_name "IZH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1434770 1436225 . + . transcript_id "YDR492W_id001"; gene_id "YDR492W"; gene_name "IZH1"; +chrIV SGD transcript 1434924 1435874 . + . transcript_id "YDR492W_id004"; gene_id "YDR492W"; gene_name "IZH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1434924 1435874 . + 0 transcript_id "YDR492W_id004"; gene_name "IZH1"; gene_id "YDR492W"; +chrIV SGD gene 1436116 1436840 . + . gene_id "YDR493W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1436116 1436840 . + . transcript_id "YDR493W_id001"; gene_id "YDR493W"; gene_name "MZM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1436116 1436840 . + . transcript_id "YDR493W_id001"; gene_id "YDR493W"; gene_name "MZM1"; +chrIV SGD transcript 1436217 1436588 . + . transcript_id "YDR493W_id002"; gene_id "YDR493W"; gene_name "MZM1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1436217 1436588 . + 0 transcript_id "YDR493W_id002"; gene_name "MZM1"; gene_id "YDR493W"; +chrIV SGD gene 1436848 1438087 . + . gene_id "YDR494W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1436848 1438087 . + . transcript_id "YDR494W_id010"; gene_id "YDR494W"; gene_name "RSM28"; transcript_biotype "protein_coding"; +chrIV SGD exon 1436848 1438087 . + . transcript_id "YDR494W_id010"; gene_id "YDR494W"; gene_name "RSM28"; +chrIV SGD transcript 1436930 1438015 . + . transcript_id "YDR494W_id001"; gene_id "YDR494W"; gene_name "RSM28"; transcript_biotype "protein_coding"; +chrIV SGD exon 1436930 1438015 . + 0 transcript_id "YDR494W_id001"; gene_name "RSM28"; gene_id "YDR494W"; +chrIV SGD gene 1438115 1441150 . - . gene_id "YDR495C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1438115 1441150 . - . transcript_id "YDR495C_id001"; gene_id "YDR495C"; gene_name "VPS3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1438115 1441150 . - 0 transcript_id "YDR495C_id001"; gene_name "VPS3"; gene_id "YDR495C"; +chrIV SGD gene 1441196 1443441 . - . gene_id "YDR496C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1441196 1443441 . - . transcript_id "YDR496C_id001"; gene_id "YDR496C"; gene_name "PUF6"; transcript_biotype "protein_coding"; +chrIV SGD exon 1441196 1443441 . - . transcript_id "YDR496C_id001"; gene_id "YDR496C"; gene_name "PUF6"; +chrIV SGD transcript 1441433 1443403 . - . transcript_id "YDR496C_id002"; gene_id "YDR496C"; gene_name "PUF6"; transcript_biotype "protein_coding"; +chrIV SGD exon 1441433 1443403 . - 0 transcript_id "YDR496C_id002"; gene_name "PUF6"; gene_id "YDR496C"; +chrIV SGD gene 1443604 1445623 . - . gene_id "YDR497C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1443604 1445623 . - . transcript_id "YDR497C_id001"; gene_id "YDR497C"; gene_name "ITR1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1443604 1445623 . - . transcript_id "YDR497C_id001"; gene_id "YDR497C"; gene_name "ITR1"; +chrIV SGD transcript 1443713 1445467 . - . transcript_id "YDR497C_id002"; gene_id "YDR497C"; gene_name "ITR1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1443713 1445467 . - 0 transcript_id "YDR497C_id002"; gene_name "ITR1"; gene_id "YDR497C"; +chrIV SGD gene 1445396 1450109 . - . gene_id "YDR498C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1445396 1450109 . - . transcript_id "YDR498C_id002"; gene_id "YDR498C"; gene_name "SEC20"; transcript_biotype "protein_coding"; +chrIV SGD exon 1445396 1450109 . - . transcript_id "YDR498C_id002"; gene_id "YDR498C"; gene_name "SEC20"; +chrIV SGD transcript 1445843 1446994 . - . transcript_id "YDR498C_id001"; gene_id "YDR498C"; gene_name "SEC20"; transcript_biotype "protein_coding"; +chrIV SGD exon 1445843 1446994 . - 0 transcript_id "YDR498C_id001"; gene_name "SEC20"; gene_id "YDR498C"; +chrIV SGD gene 1447826 1450167 . + . gene_id "YDR499W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1447826 1450167 . + . transcript_id "YDR499W_id005"; gene_id "YDR499W"; gene_name "LCD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1447826 1450167 . + . transcript_id "YDR499W_id005"; gene_id "YDR499W"; gene_name "LCD1"; +chrIV SGD transcript 1447830 1450073 . + . transcript_id "YDR499W_id001"; gene_id "YDR499W"; gene_name "LCD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1447830 1450073 . + 0 transcript_id "YDR499W_id001"; gene_name "LCD1"; gene_id "YDR499W"; +chrIV SGD gene 1449981 1450874 . - . gene_id "YDR500C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1449981 1450874 . - . transcript_id "YDR500C_id001"; gene_id "YDR500C"; gene_name "RPL37B"; transcript_biotype "protein_coding"; +chrIV SGD exon 1449981 1450874 . - . transcript_id "YDR500C_id001"; gene_id "YDR500C"; gene_name "RPL37B"; +chrIV SGD transcript 1450198 1450853 . - . transcript_id "YDR500C_id002"; gene_id "YDR500C"; gene_name "RPL37B"; transcript_biotype "protein_coding"; +chrIV SGD exon 1450198 1450457 . - 2 transcript_id "YDR500C_id002"; gene_name "RPL37B"; gene_id "YDR500C"; +chrIV SGD exon 1450847 1450853 . - 0 transcript_id "YDR500C_id002"; gene_name "RPL37B"; gene_id "YDR500C"; +chrIV SGD gene 1451353 1452918 . + . gene_id "YDR501W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1451353 1452918 . + . transcript_id "YDR501W_mRNA"; gene_id "YDR501W"; gene_name "PLM2"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1451353 1452918 . + 0 transcript_id "YDR501W_mRNA"; gene_name "PLM2"; gene_id "YDR501W"; +chrIV SGD gene 1452816 1454512 . - . gene_id "YDR502C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1452816 1454512 . - . transcript_id "YDR502C_id001"; gene_id "YDR502C"; gene_name "SAM2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1452816 1454512 . - . transcript_id "YDR502C_id001"; gene_id "YDR502C"; gene_name "SAM2"; +chrIV SGD transcript 1453310 1454464 . - . transcript_id "YDR502C_id003"; gene_id "YDR502C"; gene_name "SAM2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1453310 1454464 . - 0 transcript_id "YDR502C_id003"; gene_name "SAM2"; gene_id "YDR502C"; +chrIV SGD gene 1455042 1455866 . - . gene_id "YDR503C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1455042 1455866 . - . transcript_id "YDR503C_id001"; gene_id "YDR503C"; gene_name "LPP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1455042 1455866 . - 0 transcript_id "YDR503C_id001"; gene_name "LPP1"; gene_id "YDR503C"; +chrIV SGD gene 1456139 1457842 . - . gene_id "YDR504C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1456139 1457842 . - . transcript_id "YDR504C_id003"; gene_id "YDR504C"; gene_name "SPG3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1456139 1457842 . - . transcript_id "YDR504C_id003"; gene_id "YDR504C"; gene_name "SPG3"; +chrIV SGD transcript 1456311 1456694 . - . transcript_id "YDR504C_id001"; gene_id "YDR504C"; gene_name "SPG3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1456311 1456694 . - 0 transcript_id "YDR504C_id001"; gene_name "SPG3"; gene_id "YDR504C"; +chrIV SGD gene 1456695 1459220 . - . gene_id "YDR505C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1456695 1459220 . - . transcript_id "YDR505C_id001"; gene_id "YDR505C"; gene_name "PSP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1456695 1459220 . - 0 transcript_id "YDR505C_id001"; gene_name "PSP1"; gene_id "YDR505C"; +chrIV SGD gene 1459307 1461605 . - . gene_id "YDR506C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1459307 1461605 . - . transcript_id "YDR506C_id002"; gene_id "YDR506C"; gene_name "GMC1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1459307 1461605 . - . transcript_id "YDR506C_id002"; gene_id "YDR506C"; gene_name "GMC1"; +chrIV SGD transcript 1459728 1461554 . - . transcript_id "YDR506C_id001"; gene_id "YDR506C"; gene_name "GMC1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1459728 1461554 . - 0 transcript_id "YDR506C_id001"; gene_name "GMC1"; gene_id "YDR506C"; +chrIV SGD gene 1461715 1461829 . - . gene_id "YNCD0031C"; gene_biotype "ncRNA"; +chrIV SGD transcript 1461715 1461829 . - . transcript_id "YNCD0031C_tRNA"; gene_id "YNCD0031C"; transcript_biotype "ncRNA"; +chrIV SGD exon 1461715 1461758 . - . transcript_id "YNCD0031C_tRNA"; gene_id "YNCD0031C"; +chrIV SGD exon 1461792 1461829 . - . transcript_id "YNCD0031C_tRNA"; gene_id "YNCD0031C"; +chrIV SGD gene 1462176 1465824 . - . gene_id "YDR507C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1462176 1465824 . - . transcript_id "YDR507C_id001"; gene_id "YDR507C"; gene_name "GIN4"; transcript_biotype "protein_coding"; +chrIV SGD exon 1462176 1465824 . - . transcript_id "YDR507C_id001"; gene_id "YDR507C"; gene_name "GIN4"; +chrIV SGD transcript 1462358 1465786 . - . transcript_id "YDR507C_id002"; gene_id "YDR507C"; gene_name "GIN4"; transcript_biotype "protein_coding"; +chrIV SGD exon 1462358 1465786 . - 0 transcript_id "YDR507C_id002"; gene_name "GIN4"; gene_id "YDR507C"; +chrIV SGD gene 1466259 1468567 . - . gene_id "YDR508C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1466259 1468567 . - . transcript_id "YDR508C_id002"; gene_id "YDR508C"; gene_name "GNP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1466259 1468567 . - . transcript_id "YDR508C_id002"; gene_id "YDR508C"; gene_name "GNP1"; +chrIV SGD transcript 1466453 1468444 . - . transcript_id "YDR508C_id001"; gene_id "YDR508C"; gene_name "GNP1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1466453 1468444 . - 0 transcript_id "YDR508C_id001"; gene_name "GNP1"; gene_id "YDR508C"; +chrIV SGD gene 1468226 1468573 . + . gene_id "YDR509W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1468226 1468573 . + . transcript_id "YDR509W_mRNA"; gene_id "YDR509W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1468226 1468573 . + 0 transcript_id "YDR509W_mRNA"; gene_id "YDR509W"; +chrIV SGD gene 1468669 1469859 . + . gene_id "YDR510W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1468669 1469859 . + . transcript_id "YDR510W_id002"; gene_id "YDR510W"; gene_name "SMT3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1468669 1469859 . + . transcript_id "YDR510W_id002"; gene_id "YDR510W"; gene_name "SMT3"; +chrIV SGD transcript 1469400 1469705 . + . transcript_id "YDR510W_id001"; gene_id "YDR510W"; gene_name "SMT3"; transcript_biotype "protein_coding"; +chrIV SGD exon 1469400 1469705 . + 0 transcript_id "YDR510W_id001"; gene_name "SMT3"; gene_id "YDR510W"; +chrIV SGD gene 1469695 1469811 . - . gene_id "YDR510C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 1469695 1469811 . - . transcript_id "YDR510C-A_mRNA"; gene_id "YDR510C-A"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1469695 1469811 . - 0 transcript_id "YDR510C-A_mRNA"; gene_id "YDR510C-A"; +chrIV SGD gene 1469838 1471050 . + . gene_id "YDR511W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1469838 1471050 . + . transcript_id "YDR511W_id001"; gene_id "YDR511W"; gene_name "SDH7"; transcript_biotype "protein_coding"; +chrIV SGD exon 1469838 1471050 . + . transcript_id "YDR511W_id001"; gene_id "YDR511W"; gene_name "SDH7"; +chrIV SGD transcript 1470017 1470418 . + . transcript_id "YDR511W_id002"; gene_id "YDR511W"; gene_name "SDH7"; transcript_biotype "protein_coding"; +chrIV SGD exon 1470017 1470418 . + 0 transcript_id "YDR511W_id002"; gene_name "SDH7"; gene_id "YDR511W"; +chrIV SGD gene 1470026 1471559 . + . gene_id "YDR513W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1470026 1471559 . + . transcript_id "YDR513W_id001"; gene_id "YDR513W"; gene_name "GRX2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1470026 1471559 . + . transcript_id "YDR513W_id001"; gene_id "YDR513W"; gene_name "GRX2"; +chrIV SGD gene 1470500 1471063 . - . gene_id "YDR512C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1470500 1471063 . - . transcript_id "YDR512C_id001"; gene_id "YDR512C"; gene_name "EMI1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1470500 1471063 . - 0 transcript_id "YDR512C_id001"; gene_name "EMI1"; gene_id "YDR512C"; +chrIV SGD transcript 1471017 1471448 . + . transcript_id "YDR513W_id002"; gene_id "YDR513W"; gene_name "GRX2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1471017 1471448 . + 0 transcript_id "YDR513W_id002"; gene_name "GRX2"; gene_id "YDR513W"; +chrIV SGD gene 1471422 1473074 . - . gene_id "YDR514C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1471422 1473074 . - . transcript_id "YDR514C_id001"; gene_id "YDR514C"; transcript_biotype "protein_coding"; +chrIV SGD exon 1471422 1473074 . - . transcript_id "YDR514C_id001"; gene_id "YDR514C"; +chrIV SGD transcript 1471548 1472999 . - . transcript_id "YDR514C_id003"; gene_id "YDR514C"; transcript_biotype "protein_coding"; +chrIV SGD exon 1471548 1472999 . - 0 transcript_id "YDR514C_id003"; gene_id "YDR514C"; +chrIV SGD gene 1473279 1474873 . + . gene_id "YDR515W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1473279 1474873 . + . transcript_id "YDR515W_id008"; gene_id "YDR515W"; gene_name "SLF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1473279 1474873 . + . transcript_id "YDR515W_id008"; gene_id "YDR515W"; gene_name "SLF1"; +chrIV SGD transcript 1473429 1474772 . + . transcript_id "YDR515W_id001"; gene_id "YDR515W"; gene_name "SLF1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1473429 1474772 . + 0 transcript_id "YDR515W_id001"; gene_name "SLF1"; gene_id "YDR515W"; +chrIV SGD gene 1474842 1476588 . - . gene_id "YDR516C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1474842 1476588 . - . transcript_id "YDR516C_id001"; gene_id "YDR516C"; gene_name "EMI2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1474842 1476588 . - . transcript_id "YDR516C_id001"; gene_id "YDR516C"; gene_name "EMI2"; +chrIV SGD transcript 1474974 1476476 . - . transcript_id "YDR516C_id003"; gene_id "YDR516C"; gene_name "EMI2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1474974 1476476 . - 0 transcript_id "YDR516C_id003"; gene_name "EMI2"; gene_id "YDR516C"; +chrIV SGD gene 1476623 1478460 . + . gene_id "YDR517W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1476623 1478460 . + . transcript_id "YDR517W_id001"; gene_id "YDR517W"; gene_name "GRH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1476623 1478460 . + . transcript_id "YDR517W_id001"; gene_id "YDR517W"; gene_name "GRH1"; +chrIV SGD transcript 1477239 1478357 . + . transcript_id "YDR517W_id004"; gene_id "YDR517W"; gene_name "GRH1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1477239 1478357 . + 0 transcript_id "YDR517W_id004"; gene_name "GRH1"; gene_id "YDR517W"; +chrIV SGD gene 1478467 1480210 . + . gene_id "YDR518W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1478467 1480210 . + . transcript_id "YDR518W_id002"; gene_id "YDR518W"; gene_name "EUG1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1478467 1480210 . + . transcript_id "YDR518W_id002"; gene_id "YDR518W"; gene_name "EUG1"; +chrIV SGD transcript 1478608 1480161 . + . transcript_id "YDR518W_id001"; gene_id "YDR518W"; gene_name "EUG1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1478608 1480161 . + 0 transcript_id "YDR518W_id001"; gene_name "EUG1"; gene_id "YDR518W"; +chrIV SGD gene 1479966 1481057 . + . gene_id "YDR519W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1479966 1481057 . + . transcript_id "YDR519W_id002"; gene_id "YDR519W"; gene_name "FPR2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1479966 1481057 . + . transcript_id "YDR519W_id002"; gene_id "YDR519W"; gene_name "FPR2"; +chrIV SGD transcript 1480425 1480832 . + . transcript_id "YDR519W_id001"; gene_id "YDR519W"; gene_name "FPR2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1480425 1480832 . + 0 transcript_id "YDR519W_id001"; gene_name "FPR2"; gene_id "YDR519W"; +chrIV SGD gene 1480938 1483487 . - . gene_id "YDR520C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1480938 1483487 . - . transcript_id "YDR520C_id001"; gene_id "YDR520C"; gene_name "URC2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1480938 1483487 . - . transcript_id "YDR520C_id001"; gene_id "YDR520C"; gene_name "URC2"; +chrIV SGD transcript 1481085 1483403 . - . transcript_id "YDR520C_id002"; gene_id "YDR520C"; gene_name "URC2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1481085 1483403 . - 0 transcript_id "YDR520C_id002"; gene_name "URC2"; gene_id "YDR520C"; +chrIV SGD gene 1483141 1483476 . + . gene_id "YDR521W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1483141 1483476 . + . transcript_id "YDR521W_mRNA"; gene_id "YDR521W"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1483141 1483476 . + 0 transcript_id "YDR521W_mRNA"; gene_id "YDR521W"; +chrIV SGD gene 1483795 1485303 . - . gene_id "YDR522C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1483795 1485303 . - . transcript_id "YDR522C_mRNA"; gene_id "YDR522C"; gene_name "SPS2"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1483795 1485303 . - 0 transcript_id "YDR522C_mRNA"; gene_name "SPS2"; gene_id "YDR522C"; +chrIV SGD gene 1485566 1487038 . - . gene_id "YDR523C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1485566 1487038 . - . transcript_id "YDR523C_id001"; gene_id "YDR523C"; gene_name "SPS1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1485566 1487038 . - 0 transcript_id "YDR523C_id001"; gene_name "SPS1"; gene_id "YDR523C"; +chrIV SGD gene 1487035 1489057 . - . gene_id "YDR524C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1487035 1489057 . - . transcript_id "YDR524C_id001"; gene_id "YDR524C"; gene_name "AGE1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1487035 1489057 . - . transcript_id "YDR524C_id001"; gene_id "YDR524C"; gene_name "AGE1"; +chrIV SGD transcript 1487542 1488990 . - . transcript_id "YDR524C_id002"; gene_id "YDR524C"; gene_name "AGE1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1487542 1488990 . - 0 transcript_id "YDR524C_id002"; gene_name "AGE1"; gene_id "YDR524C"; +chrIV SGD gene 1489179 1489843 . - . gene_id "YDR524C-B"; gene_biotype "protein_coding"; +chrIV SGD transcript 1489179 1489843 . - . transcript_id "YDR524C-B_id004"; gene_id "YDR524C-B"; transcript_biotype "protein_coding"; +chrIV SGD exon 1489179 1489843 . - . transcript_id "YDR524C-B_id004"; gene_id "YDR524C-B"; +chrIV SGD gene 1489403 1489492 . + . gene_id "YDR524W-C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1489403 1489492 . + . transcript_id "YDR524W-C_mRNA"; gene_id "YDR524W-C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1489403 1489492 . + 0 transcript_id "YDR524W-C_mRNA"; gene_id "YDR524W-C"; +chrIV SGD transcript 1489598 1489798 . - . transcript_id "YDR524C-B_id001"; gene_id "YDR524C-B"; transcript_biotype "protein_coding"; +chrIV SGD exon 1489598 1489798 . - 0 transcript_id "YDR524C-B_id001"; gene_id "YDR524C-B"; +chrIV SGD gene 1489805 1490445 . - . gene_id "YDR524C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 1489805 1490445 . - . transcript_id "YDR524C-A_id002"; gene_id "YDR524C-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 1489805 1490445 . - . transcript_id "YDR524C-A_id002"; gene_id "YDR524C-A"; +chrIV SGD transcript 1489871 1489990 . - . transcript_id "YDR524C-A_id001"; gene_id "YDR524C-A"; transcript_biotype "protein_coding"; +chrIV SGD exon 1489871 1489990 . - 0 transcript_id "YDR524C-A_id001"; gene_id "YDR524C-A"; +chrIV SGD gene 1489905 1490234 . + . gene_id "YDR525W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1489905 1490234 . + . transcript_id "YDR525W_mRNA"; gene_id "YDR525W"; gene_name "API2"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1489905 1490234 . + 0 transcript_id "YDR525W_mRNA"; gene_name "API2"; gene_id "YDR525W"; +chrIV SGD gene 1489989 1491058 . + . gene_id "YDR525W-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 1489989 1491058 . + . transcript_id "YDR525W-A_id001"; gene_id "YDR525W-A"; gene_name "SNA2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1489989 1491058 . + . transcript_id "YDR525W-A_id001"; gene_id "YDR525W-A"; gene_name "SNA2"; +chrIV SGD transcript 1490596 1490835 . + . transcript_id "YDR525W-A_id002"; gene_id "YDR525W-A"; gene_name "SNA2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1490596 1490835 . + 0 transcript_id "YDR525W-A_id002"; gene_name "SNA2"; gene_id "YDR525W-A"; +chrIV SGD gene 1491072 1493174 . + . gene_id "YDR527W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1491072 1493174 . + . transcript_id "YDR527W_id001"; gene_id "YDR527W"; gene_name "RBA50"; transcript_biotype "protein_coding"; +chrIV SGD exon 1491072 1493174 . + . transcript_id "YDR527W_id001"; gene_id "YDR527W"; gene_name "RBA50"; +chrIV SGD gene 1491075 1491545 . - . gene_id "YDR526C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1491075 1491545 . - . transcript_id "YDR526C_mRNA"; gene_id "YDR526C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1491075 1491545 . - 0 transcript_id "YDR526C_mRNA"; gene_id "YDR526C"; +chrIV SGD transcript 1491094 1492413 . + . transcript_id "YDR527W_id002"; gene_id "YDR527W"; gene_name "RBA50"; transcript_biotype "protein_coding"; +chrIV SGD exon 1491094 1492413 . + 0 transcript_id "YDR527W_id002"; gene_name "RBA50"; gene_id "YDR527W"; +chrIV SGD gene 1492477 1493026 . - . gene_id "YNCD0032C"; gene_biotype "ncRNA"; +chrIV SGD transcript 1492477 1493026 . - . transcript_id "YNCD0032C_snoRNA"; gene_id "YNCD0032C"; gene_name "SNR84"; transcript_biotype "ncRNA"; +chrIV SGD exon 1492477 1493026 . - . transcript_id "YNCD0032C_snoRNA"; gene_name "SNR84"; gene_id "YNCD0032C"; +chrIV SGD gene 1494268 1495996 . + . gene_id "YDR528W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1494268 1495996 . + . transcript_id "YDR528W_id002"; gene_id "YDR528W"; gene_name "HLR1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1494268 1495996 . + . transcript_id "YDR528W_id002"; gene_id "YDR528W"; gene_name "HLR1"; +chrIV SGD transcript 1494586 1495857 . + . transcript_id "YDR528W_id001"; gene_id "YDR528W"; gene_name "HLR1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1494586 1495857 . + 0 transcript_id "YDR528W_id001"; gene_name "HLR1"; gene_id "YDR528W"; +chrIV SGD gene 1495808 1496579 . - . gene_id "YDR529C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1495808 1496579 . - . transcript_id "YDR529C_id002"; gene_id "YDR529C"; gene_name "QCR7"; transcript_biotype "protein_coding"; +chrIV SGD exon 1495808 1496579 . - . transcript_id "YDR529C_id002"; gene_id "YDR529C"; gene_name "QCR7"; +chrIV SGD transcript 1496165 1496548 . - . transcript_id "YDR529C_id001"; gene_id "YDR529C"; gene_name "QCR7"; transcript_biotype "protein_coding"; +chrIV SGD exon 1496165 1496548 . - 0 transcript_id "YDR529C_id001"; gene_name "QCR7"; gene_id "YDR529C"; +chrIV SGD gene 1496628 1498018 . - . gene_id "YDR530C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1496628 1498018 . - . transcript_id "YDR530C_id001"; gene_id "YDR530C"; gene_name "APA2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1496628 1498018 . - . transcript_id "YDR530C_id001"; gene_id "YDR530C"; gene_name "APA2"; +chrIV SGD transcript 1496791 1497768 . - . transcript_id "YDR530C_id004"; gene_id "YDR530C"; gene_name "APA2"; transcript_biotype "protein_coding"; +chrIV SGD exon 1496791 1497768 . - 0 transcript_id "YDR530C_id004"; gene_name "APA2"; gene_id "YDR530C"; +chrIV SGD gene 1498123 1499416 . + . gene_id "YDR531W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1498123 1499416 . + . transcript_id "YDR531W_id010"; gene_id "YDR531W"; gene_name "CAB1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1498123 1499416 . + . transcript_id "YDR531W_id010"; gene_id "YDR531W"; gene_name "CAB1"; +chrIV SGD transcript 1498232 1499335 . + . transcript_id "YDR531W_id001"; gene_id "YDR531W"; gene_name "CAB1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1498232 1499335 . + 0 transcript_id "YDR531W_id001"; gene_name "CAB1"; gene_id "YDR531W"; +chrIV SGD gene 1499338 1500793 . - . gene_id "YDR532C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1499338 1500793 . - . transcript_id "YDR532C_id003"; gene_id "YDR532C"; gene_name "KRE28"; transcript_biotype "protein_coding"; +chrIV SGD exon 1499338 1500793 . - . transcript_id "YDR532C_id003"; gene_id "YDR532C"; gene_name "KRE28"; +chrIV SGD transcript 1499396 1500553 . - . transcript_id "YDR532C_id001"; gene_id "YDR532C"; gene_name "KRE28"; transcript_biotype "protein_coding"; +chrIV SGD exon 1499396 1500553 . - 0 transcript_id "YDR532C_id001"; gene_name "KRE28"; gene_id "YDR532C"; +chrIV SGD gene 1501208 1502385 . - . gene_id "YDR533C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1501208 1502385 . - . transcript_id "YDR533C_id001"; gene_id "YDR533C"; gene_name "HSP31"; transcript_biotype "protein_coding"; +chrIV SGD exon 1501208 1502385 . - . transcript_id "YDR533C_id001"; gene_id "YDR533C"; gene_name "HSP31"; +chrIV SGD transcript 1501447 1502160 . - . transcript_id "YDR533C_id004"; gene_id "YDR533C"; gene_name "HSP31"; transcript_biotype "protein_coding"; +chrIV SGD exon 1501447 1502160 . - 0 transcript_id "YDR533C_id004"; gene_name "HSP31"; gene_id "YDR533C"; +chrIV SGD gene 1503314 1504900 . - . gene_id "YDR534C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1503314 1504900 . - . transcript_id "YDR534C_id001"; gene_id "YDR534C"; gene_name "FIT1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1503314 1504900 . - 0 transcript_id "YDR534C_id001"; gene_name "FIT1"; gene_id "YDR534C"; +chrIV SGD gene 1506606 1507362 . - . gene_id "YDR535C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1506606 1507362 . - . transcript_id "YDR535C_mRNA"; gene_id "YDR535C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1506606 1507058 . - 0 transcript_id "YDR535C_mRNA"; gene_id "YDR535C"; +chrIV SGD CDS 1507315 1507362 . - 0 transcript_id "YDR535C_mRNA"; gene_id "YDR535C"; +chrIV SGD gene 1508005 1509714 . + . gene_id "YDR536W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1508005 1509714 . + . transcript_id "YDR536W_id001"; gene_id "YDR536W"; gene_name "STL1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1508005 1509714 . + 0 transcript_id "YDR536W_id001"; gene_name "STL1"; gene_id "YDR536W"; +chrIV SGD gene 1509972 1511919 . + . gene_id "YDR538W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1509972 1511919 . + . transcript_id "YDR538W_id001"; gene_id "YDR538W"; gene_name "PAD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1509972 1511919 . + . transcript_id "YDR538W_id001"; gene_id "YDR538W"; gene_name "PAD1"; +chrIV SGD gene 1510856 1511461 . - . gene_id "YDR537C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1510856 1511461 . - . transcript_id "YDR537C_mRNA"; gene_id "YDR537C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1510856 1511461 . - 0 transcript_id "YDR537C_mRNA"; gene_id "YDR537C"; +chrIV SGD transcript 1510902 1511630 . + . transcript_id "YDR538W_id003"; gene_id "YDR538W"; gene_name "PAD1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1510902 1511630 . + 0 transcript_id "YDR538W_id003"; gene_name "PAD1"; gene_id "YDR538W"; +chrIV SGD gene 1512000 1513953 . + . gene_id "YDR539W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1512000 1513953 . + . transcript_id "YDR539W_id001"; gene_id "YDR539W"; gene_name "FDC1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1512000 1513953 . + . transcript_id "YDR539W_id001"; gene_id "YDR539W"; gene_name "FDC1"; +chrIV SGD transcript 1512094 1513605 . + . transcript_id "YDR539W_id003"; gene_id "YDR539W"; gene_name "FDC1"; transcript_biotype "protein_coding"; +chrIV SGD exon 1512094 1513605 . + 0 transcript_id "YDR539W_id003"; gene_name "FDC1"; gene_id "YDR539W"; +chrIV SGD gene 1516282 1517758 . - . gene_id "YDR540C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1516282 1517758 . - . transcript_id "YDR540C_id001"; gene_id "YDR540C"; gene_name "IRC4"; transcript_biotype "protein_coding"; +chrIV SGD exon 1516282 1517758 . - . transcript_id "YDR540C_id001"; gene_id "YDR540C"; gene_name "IRC4"; +chrIV SGD transcript 1517136 1517675 . - . transcript_id "YDR540C_id002"; gene_id "YDR540C"; gene_name "IRC4"; transcript_biotype "protein_coding"; +chrIV SGD exon 1517136 1517675 . - 0 transcript_id "YDR540C_id002"; gene_name "IRC4"; gene_id "YDR540C"; +chrIV SGD gene 1519437 1520919 . - . gene_id "YDR541C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1519437 1520919 . - . transcript_id "YDR541C_id001"; gene_id "YDR541C"; transcript_biotype "protein_coding"; +chrIV SGD exon 1519437 1520919 . - . transcript_id "YDR541C_id001"; gene_id "YDR541C"; +chrIV SGD transcript 1519664 1520698 . - . transcript_id "YDR541C_id002"; gene_id "YDR541C"; transcript_biotype "protein_coding"; +chrIV SGD exon 1519664 1520698 . - 0 transcript_id "YDR541C_id002"; gene_id "YDR541C"; +chrIV SGD gene 1523249 1523611 . + . gene_id "YDR542W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1523249 1523611 . + . transcript_id "YDR542W_mRNA"; gene_id "YDR542W"; gene_name "PAU10"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1523249 1523611 . + 0 transcript_id "YDR542W_mRNA"; gene_name "PAU10"; gene_id "YDR542W"; +chrIV SGD gene 1524634 1524933 . - . gene_id "YDR543C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1524634 1524933 . - . transcript_id "YDR543C_mRNA"; gene_id "YDR543C"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1524634 1524933 . - 0 transcript_id "YDR543C_mRNA"; gene_id "YDR543C"; +chrIV SGD gene 1525095 1525523 . - . gene_id "YDR544C"; gene_biotype "protein_coding"; +chrIV SGD transcript 1525095 1525523 . - . transcript_id "YDR544C_mRNA"; gene_id "YDR544C"; transcript_biotype "protein_coding"; +chrIV SGD exon 1525095 1525523 . - . transcript_id "YDR544C_mRNA"; gene_id "YDR544C"; +chrIV SGD CDS 1525095 1525523 . - 0 transcript_id "YDR544C_mRNA"; gene_id "YDR544C"; +chrIV SGD gene 1526321 1531711 . + . gene_id "YDR545W"; gene_biotype "protein_coding"; +chrIV SGD transcript 1526321 1531711 . + . transcript_id "YDR545W_mRNA"; gene_id "YDR545W"; gene_name "YRF1-1"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1526321 1531711 . + 0 transcript_id "YDR545W_mRNA"; gene_name "YRF1-1"; gene_id "YDR545W"; +chrIV SGD gene 1530863 1531342 . - . gene_id "YDR545C-A"; gene_biotype "protein_coding"; +chrIV SGD transcript 1530863 1531342 . - . transcript_id "YDR545C-A_mRNA"; gene_id "YDR545C-A"; transcript_biotype "protein_coding"; +chrIV SGD CDS 1530863 1531342 . - 0 transcript_id "YDR545C-A_mRNA"; gene_id "YDR545C-A"; +chrV SGD gene 264 4097 . - . gene_id "YEL077C"; gene_biotype "protein_coding"; +chrV SGD transcript 264 4097 . - . transcript_id "YEL077C_mRNA"; gene_id "YEL077C"; transcript_biotype "protein_coding"; +chrV SGD CDS 264 4097 . - 0 transcript_id "YEL077C_mRNA"; gene_id "YEL077C"; +chrV SGD gene 630 1112 . + . gene_id "YEL077W-A"; gene_biotype "protein_coding"; +chrV SGD transcript 630 1112 . + . transcript_id "YEL077W-A_mRNA"; gene_id "YEL077W-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 630 1112 . + 0 transcript_id "YEL077W-A_mRNA"; gene_id "YEL077W-A"; +chrV SGD gene 4185 5114 . - . gene_id "YEL076C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 4185 5114 . - . transcript_id "YEL076C-A_mRNA"; gene_id "YEL076C-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 4185 4322 . - 0 transcript_id "YEL076C-A_mRNA"; gene_id "YEL076C-A"; +chrV SGD CDS 4602 5114 . - 0 transcript_id "YEL076C-A_mRNA"; gene_id "YEL076C-A"; +chrV SGD gene 4464 5114 . - . gene_id "YEL076C"; gene_biotype "protein_coding"; +chrV SGD transcript 4464 5114 . - . transcript_id "YEL076C_mRNA"; gene_id "YEL076C"; transcript_biotype "protein_coding"; +chrV SGD CDS 4464 5114 . - 0 transcript_id "YEL076C_mRNA"; gene_id "YEL076C"; +chrV SGD gene 4870 5481 . + . gene_id "YEL075W-A"; gene_biotype "protein_coding"; +chrV SGD transcript 4870 5481 . + . transcript_id "YEL075W-A_mRNA"; gene_id "YEL075W-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 4870 5481 . + 0 transcript_id "YEL075W-A_mRNA"; gene_id "YEL075W-A"; +chrV SGD gene 5345 5713 . - . gene_id "YEL075C"; gene_biotype "protein_coding"; +chrV SGD transcript 5345 5713 . - . transcript_id "YEL075C_mRNA"; gene_id "YEL075C"; transcript_biotype "protein_coding"; +chrV SGD CDS 5345 5713 . - 0 transcript_id "YEL075C_mRNA"; gene_id "YEL075C"; +chrV SGD gene 6126 6464 . + . gene_id "YEL074W"; gene_biotype "protein_coding"; +chrV SGD transcript 6126 6464 . + . transcript_id "YEL074W_mRNA"; gene_id "YEL074W"; transcript_biotype "protein_coding"; +chrV SGD CDS 6126 6464 . + 0 transcript_id "YEL074W_mRNA"; gene_id "YEL074W"; +chrV SGD gene 6526 7684 . - . gene_id "YEL073C"; gene_biotype "protein_coding"; +chrV SGD transcript 6526 7684 . - . transcript_id "YEL073C_id004"; gene_id "YEL073C"; transcript_biotype "protein_coding"; +chrV SGD exon 6526 7684 . - . transcript_id "YEL073C_id004"; gene_id "YEL073C"; +chrV SGD transcript 7230 7553 . - . transcript_id "YEL073C_id001"; gene_id "YEL073C"; transcript_biotype "protein_coding"; +chrV SGD exon 7230 7553 . - 0 transcript_id "YEL073C_id001"; gene_id "YEL073C"; +chrV SGD gene 13584 14756 . + . gene_id "YEL072W"; gene_biotype "protein_coding"; +chrV SGD transcript 13584 14756 . + . transcript_id "YEL072W_id001"; gene_id "YEL072W"; gene_name "RMD6"; transcript_biotype "protein_coding"; +chrV SGD exon 13584 14756 . + . transcript_id "YEL072W_id001"; gene_id "YEL072W"; gene_name "RMD6"; +chrV SGD transcript 13720 14415 . + . transcript_id "YEL072W_id002"; gene_id "YEL072W"; gene_name "RMD6"; transcript_biotype "protein_coding"; +chrV SGD exon 13720 14415 . + 0 transcript_id "YEL072W_id002"; gene_name "RMD6"; gene_id "YEL072W"; +chrV SGD gene 16326 18109 . + . gene_id "YEL071W"; gene_biotype "protein_coding"; +chrV SGD transcript 16326 18109 . + . transcript_id "YEL071W_id002"; gene_id "YEL071W"; gene_name "DLD3"; transcript_biotype "protein_coding"; +chrV SGD exon 16326 18109 . + . transcript_id "YEL071W_id002"; gene_id "YEL071W"; gene_name "DLD3"; +chrV SGD transcript 16355 17845 . + . transcript_id "YEL071W_id001"; gene_id "YEL071W"; gene_name "DLD3"; transcript_biotype "protein_coding"; +chrV SGD exon 16355 17845 . + 0 transcript_id "YEL071W_id001"; gene_name "DLD3"; gene_id "YEL071W"; +chrV SGD gene 19589 21097 . + . gene_id "YEL070W"; gene_biotype "protein_coding"; +chrV SGD transcript 19589 21097 . + . transcript_id "YEL070W_mRNA"; gene_id "YEL070W"; gene_name "DSF1"; transcript_biotype "protein_coding"; +chrV SGD CDS 19589 21097 . + 0 transcript_id "YEL070W_mRNA"; gene_name "DSF1"; gene_id "YEL070W"; +chrV SGD gene 21537 23231 . - . gene_id "YEL069C"; gene_biotype "protein_coding"; +chrV SGD transcript 21537 23231 . - . transcript_id "YEL069C_mRNA"; gene_id "YEL069C"; gene_name "HXT13"; transcript_biotype "protein_coding"; +chrV SGD CDS 21537 23231 . - 0 transcript_id "YEL069C_mRNA"; gene_name "HXT13"; gene_id "YEL069C"; +chrV SGD gene 25646 25978 . - . gene_id "YEL068C"; gene_biotype "protein_coding"; +chrV SGD transcript 25646 25978 . - . transcript_id "YEL068C_id001"; gene_id "YEL068C"; transcript_biotype "protein_coding"; +chrV SGD exon 25646 25978 . - 0 transcript_id "YEL068C_id001"; gene_id "YEL068C"; +chrV SGD gene 26117 27291 . + . gene_id "YEL066W"; gene_biotype "protein_coding"; +chrV SGD transcript 26117 27291 . + . transcript_id "YEL066W_id004"; gene_id "YEL066W"; gene_name "HPA3"; transcript_biotype "protein_coding"; +chrV SGD exon 26117 27291 . + . transcript_id "YEL066W_id004"; gene_id "YEL066W"; gene_name "HPA3"; +chrV SGD gene 26189 26776 . - . gene_id "YEL067C"; gene_biotype "protein_coding"; +chrV SGD transcript 26189 26776 . - . transcript_id "YEL067C_mRNA"; gene_id "YEL067C"; transcript_biotype "protein_coding"; +chrV SGD CDS 26189 26776 . - 0 transcript_id "YEL067C_mRNA"; gene_id "YEL067C"; +chrV SGD transcript 26721 27206 . + . transcript_id "YEL066W_id001"; gene_id "YEL066W"; gene_name "HPA3"; transcript_biotype "protein_coding"; +chrV SGD exon 26721 27206 . + 0 transcript_id "YEL066W_id001"; gene_name "HPA3"; gene_id "YEL066W"; +chrV SGD gene 27345 29608 . + . gene_id "YEL065W"; gene_biotype "protein_coding"; +chrV SGD transcript 27345 29608 . + . transcript_id "YEL065W_id001"; gene_id "YEL065W"; gene_name "SIT1"; transcript_biotype "protein_coding"; +chrV SGD exon 27345 29608 . + . transcript_id "YEL065W_id001"; gene_id "YEL065W"; gene_name "SIT1"; +chrV SGD transcript 27657 29543 . + . transcript_id "YEL065W_id003"; gene_id "YEL065W"; gene_name "SIT1"; transcript_biotype "protein_coding"; +chrV SGD exon 27657 29543 . + 0 transcript_id "YEL065W_id003"; gene_name "SIT1"; gene_id "YEL065W"; +chrV SGD gene 29469 31299 . - . gene_id "YEL064C"; gene_biotype "protein_coding"; +chrV SGD transcript 29469 31299 . - . transcript_id "YEL064C_id001"; gene_id "YEL064C"; gene_name "AVT2"; transcript_biotype "protein_coding"; +chrV SGD exon 29469 31299 . - . transcript_id "YEL064C_id001"; gene_id "YEL064C"; gene_name "AVT2"; +chrV SGD transcript 29797 31239 . - . transcript_id "YEL064C_id004"; gene_id "YEL064C"; gene_name "AVT2"; transcript_biotype "protein_coding"; +chrV SGD exon 29797 31239 . - 0 transcript_id "YEL064C_id004"; gene_name "AVT2"; gene_id "YEL064C"; +chrV SGD gene 31377 33713 . - . gene_id "YEL063C"; gene_biotype "protein_coding"; +chrV SGD transcript 31377 33713 . - . transcript_id "YEL063C_id001"; gene_id "YEL063C"; gene_name "CAN1"; transcript_biotype "protein_coding"; +chrV SGD exon 31377 33713 . - . transcript_id "YEL063C_id001"; gene_id "YEL063C"; gene_name "CAN1"; +chrV SGD transcript 31694 33466 . - . transcript_id "YEL063C_id002"; gene_id "YEL063C"; gene_name "CAN1"; transcript_biotype "protein_coding"; +chrV SGD exon 31694 33466 . - 0 transcript_id "YEL063C_id002"; gene_name "CAN1"; gene_id "YEL063C"; +chrV SGD gene 34386 36393 . + . gene_id "YEL062W"; gene_biotype "protein_coding"; +chrV SGD transcript 34386 36393 . + . transcript_id "YEL062W_id002"; gene_id "YEL062W"; gene_name "NPR2"; transcript_biotype "protein_coding"; +chrV SGD exon 34386 36393 . + . transcript_id "YEL062W_id002"; gene_id "YEL062W"; gene_name "NPR2"; +chrV SGD transcript 34407 36254 . + . transcript_id "YEL062W_id001"; gene_id "YEL062W"; gene_name "NPR2"; transcript_biotype "protein_coding"; +chrV SGD exon 34407 36254 . + 0 transcript_id "YEL062W_id001"; gene_name "NPR2"; gene_id "YEL062W"; +chrV SGD gene 36279 39660 . - . gene_id "YEL061C"; gene_biotype "protein_coding"; +chrV SGD transcript 36279 39660 . - . transcript_id "YEL061C_id001"; gene_id "YEL061C"; gene_name "CIN8"; transcript_biotype "protein_coding"; +chrV SGD exon 36279 39660 . - . transcript_id "YEL061C_id001"; gene_id "YEL061C"; gene_name "CIN8"; +chrV SGD transcript 36535 39537 . - . transcript_id "YEL061C_id002"; gene_id "YEL061C"; gene_name "CIN8"; transcript_biotype "protein_coding"; +chrV SGD exon 36535 39537 . - 0 transcript_id "YEL061C_id002"; gene_name "CIN8"; gene_id "YEL061C"; +chrV SGD gene 39811 42008 . - . gene_id "YEL060C"; gene_biotype "protein_coding"; +chrV SGD transcript 39811 42008 . - . transcript_id "YEL060C_id008"; gene_id "YEL060C"; gene_name "PRB1"; transcript_biotype "protein_coding"; +chrV SGD exon 39811 42008 . - . transcript_id "YEL060C_id008"; gene_id "YEL060C"; gene_name "PRB1"; +chrV SGD transcript 40046 41953 . - . transcript_id "YEL060C_id001"; gene_id "YEL060C"; gene_name "PRB1"; transcript_biotype "protein_coding"; +chrV SGD exon 40046 41953 . - 0 transcript_id "YEL060C_id001"; gene_name "PRB1"; gene_id "YEL060C"; +chrV SGD gene 42329 43077 . - . gene_id "YEL059C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 42329 43077 . - . transcript_id "YEL059C-A_id001"; gene_id "YEL059C-A"; gene_name "SOM1"; transcript_biotype "protein_coding"; +chrV SGD exon 42329 43077 . - . transcript_id "YEL059C-A_id001"; gene_id "YEL059C-A"; gene_name "SOM1"; +chrV SGD transcript 42400 42624 . - . transcript_id "YEL059C-A_id002"; gene_id "YEL059C-A"; gene_name "SOM1"; transcript_biotype "protein_coding"; +chrV SGD exon 42400 42624 . - 0 transcript_id "YEL059C-A_id002"; gene_name "SOM1"; gene_id "YEL059C-A"; +chrV SGD gene 42652 42960 . + . gene_id "YEL059W"; gene_biotype "protein_coding"; +chrV SGD transcript 42652 42960 . + . transcript_id "YEL059W_mRNA"; gene_id "YEL059W"; gene_name "HHY1"; transcript_biotype "protein_coding"; +chrV SGD CDS 42652 42960 . + 0 transcript_id "YEL059W_mRNA"; gene_name "HHY1"; gene_id "YEL059W"; +chrV SGD gene 43208 45326 . + . gene_id "YEL058W"; gene_biotype "protein_coding"; +chrV SGD transcript 43208 45326 . + . transcript_id "YEL058W_id001"; gene_id "YEL058W"; gene_name "PCM1"; transcript_biotype "protein_coding"; +chrV SGD exon 43208 45326 . + . transcript_id "YEL058W_id001"; gene_id "YEL058W"; gene_name "PCM1"; +chrV SGD transcript 43252 44925 . + . transcript_id "YEL058W_id003"; gene_id "YEL058W"; gene_name "PCM1"; transcript_biotype "protein_coding"; +chrV SGD exon 43252 44925 . + 0 transcript_id "YEL058W_id003"; gene_name "PCM1"; gene_id "YEL058W"; +chrV SGD gene 45020 45721 . - . gene_id "YEL057C"; gene_biotype "protein_coding"; +chrV SGD transcript 45020 45721 . - . transcript_id "YEL057C_id001"; gene_id "YEL057C"; gene_name "SDD1"; transcript_biotype "protein_coding"; +chrV SGD exon 45020 45721 . - 0 transcript_id "YEL057C_id001"; gene_name "SDD1"; gene_id "YEL057C"; +chrV SGD gene 47130 48483 . + . gene_id "YEL056W"; gene_biotype "protein_coding"; +chrV SGD transcript 47130 48483 . + . transcript_id "YEL056W_id004"; gene_id "YEL056W"; gene_name "HAT2"; transcript_biotype "protein_coding"; +chrV SGD exon 47130 48483 . + . transcript_id "YEL056W_id004"; gene_id "YEL056W"; gene_name "HAT2"; +chrV SGD transcript 47168 48373 . + . transcript_id "YEL056W_id001"; gene_id "YEL056W"; gene_name "HAT2"; transcript_biotype "protein_coding"; +chrV SGD exon 47168 48373 . + 0 transcript_id "YEL056W_id001"; gene_name "HAT2"; gene_id "YEL056W"; +chrV SGD gene 48281 51594 . - . gene_id "YEL055C"; gene_biotype "protein_coding"; +chrV SGD transcript 48281 51594 . - . transcript_id "YEL055C_id001"; gene_id "YEL055C"; gene_name "POL5"; transcript_biotype "protein_coding"; +chrV SGD exon 48281 51594 . - . transcript_id "YEL055C_id001"; gene_id "YEL055C"; gene_name "POL5"; +chrV SGD transcript 48471 51539 . - . transcript_id "YEL055C_id004"; gene_id "YEL055C"; gene_name "POL5"; transcript_biotype "protein_coding"; +chrV SGD exon 48471 51539 . - 0 transcript_id "YEL055C_id004"; gene_name "POL5"; gene_id "YEL055C"; +chrV SGD gene 52150 52320 . - . gene_id "YNCE0001C"; gene_biotype "ncRNA"; +chrV SGD transcript 52150 52320 . - . transcript_id "YNCE0001C_snoRNA"; gene_id "YNCE0001C"; gene_name "SNR80"; transcript_biotype "ncRNA"; +chrV SGD exon 52150 52320 . - . transcript_id "YNCE0001C_snoRNA"; gene_name "SNR80"; gene_id "YNCE0001C"; +chrV SGD gene 52181 53254 . - . gene_id "YEL054C"; gene_biotype "protein_coding"; +chrV SGD transcript 52181 53254 . - . transcript_id "YEL054C_id003"; gene_id "YEL054C"; gene_name "RPL12A"; transcript_biotype "protein_coding"; +chrV SGD exon 52181 53254 . - . transcript_id "YEL054C_id003"; gene_id "YEL054C"; gene_name "RPL12A"; +chrV SGD transcript 52721 53218 . - . transcript_id "YEL054C_id001"; gene_id "YEL054C"; gene_name "RPL12A"; transcript_biotype "protein_coding"; +chrV SGD exon 52721 53218 . - 0 transcript_id "YEL054C_id001"; gene_name "RPL12A"; gene_id "YEL054C"; +chrV SGD gene 52908 53255 . + . gene_id "YEL053W-A"; gene_biotype "protein_coding"; +chrV SGD transcript 52908 53255 . + . transcript_id "YEL053W-A_mRNA"; gene_id "YEL053W-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 52908 53255 . + 0 transcript_id "YEL053W-A_mRNA"; gene_id "YEL053W-A"; +chrV SGD gene 53794 56185 . - . gene_id "YEL053C"; gene_biotype "protein_coding"; +chrV SGD transcript 53794 56185 . - . transcript_id "YEL053C_id002"; gene_id "YEL053C"; gene_name "MAK10"; transcript_biotype "protein_coding"; +chrV SGD exon 53794 56185 . - . transcript_id "YEL053C_id002"; gene_id "YEL053C"; gene_name "MAK10"; +chrV SGD transcript 53901 56102 . - . transcript_id "YEL053C_id001"; gene_id "YEL053C"; gene_name "MAK10"; transcript_biotype "protein_coding"; +chrV SGD exon 53901 56102 . - 0 transcript_id "YEL053C_id001"; gene_name "MAK10"; gene_id "YEL053C"; +chrV SGD gene 56343 58169 . + . gene_id "YEL052W"; gene_biotype "protein_coding"; +chrV SGD transcript 56343 58169 . + . transcript_id "YEL052W_id002"; gene_id "YEL052W"; gene_name "AFG1"; transcript_biotype "protein_coding"; +chrV SGD exon 56343 58169 . + . transcript_id "YEL052W_id002"; gene_id "YEL052W"; gene_name "AFG1"; +chrV SGD transcript 56571 58100 . + . transcript_id "YEL052W_id001"; gene_id "YEL052W"; gene_name "AFG1"; transcript_biotype "protein_coding"; +chrV SGD exon 56571 58100 . + 0 transcript_id "YEL052W_id001"; gene_name "AFG1"; gene_id "YEL052W"; +chrV SGD gene 58312 59359 . + . gene_id "YEL051W"; gene_biotype "protein_coding"; +chrV SGD transcript 58312 59359 . + . transcript_id "YEL051W_id001"; gene_id "YEL051W"; gene_name "VMA8"; transcript_biotype "protein_coding"; +chrV SGD exon 58312 59359 . + . transcript_id "YEL051W_id001"; gene_id "YEL051W"; gene_name "VMA8"; +chrV SGD transcript 58378 59148 . + . transcript_id "YEL051W_id002"; gene_id "YEL051W"; gene_name "VMA8"; transcript_biotype "protein_coding"; +chrV SGD exon 58378 59148 . + 0 transcript_id "YEL051W_id002"; gene_name "VMA8"; gene_id "YEL051W"; +chrV SGD gene 59524 61031 . - . gene_id "YEL050C"; gene_biotype "protein_coding"; +chrV SGD transcript 59524 61031 . - . transcript_id "YEL050C_id001"; gene_id "YEL050C"; gene_name "RML2"; transcript_biotype "protein_coding"; +chrV SGD exon 59524 61031 . - . transcript_id "YEL050C_id001"; gene_id "YEL050C"; gene_name "RML2"; +chrV SGD gene 59549 59740 . + . gene_id "YEL050W-A"; gene_biotype "protein_coding"; +chrV SGD transcript 59549 59740 . + . transcript_id "YEL050W-A_id001"; gene_id "YEL050W-A"; transcript_biotype "protein_coding"; +chrV SGD exon 59549 59740 . + 0 transcript_id "YEL050W-A_id001"; gene_id "YEL050W-A"; +chrV SGD transcript 59670 60851 . - . transcript_id "YEL050C_id002"; gene_id "YEL050C"; gene_name "RML2"; transcript_biotype "protein_coding"; +chrV SGD exon 59670 60851 . - 0 transcript_id "YEL050C_id002"; gene_name "RML2"; gene_id "YEL050C"; +chrV SGD gene 61352 61433 . + . gene_id "YNCE0002W"; gene_biotype "ncRNA"; +chrV SGD transcript 61352 61433 . + . transcript_id "YNCE0002W_snoRNA"; gene_id "YNCE0002W"; gene_name "SNR67"; transcript_biotype "ncRNA"; +chrV SGD exon 61352 61433 . + . transcript_id "YNCE0002W_snoRNA"; gene_name "SNR67"; gene_id "YNCE0002W"; +chrV SGD gene 61699 61789 . + . gene_id "YNCE0003W"; gene_biotype "ncRNA"; +chrV SGD transcript 61699 61789 . + . transcript_id "YNCE0003W_snoRNA"; gene_id "YNCE0003W"; gene_name "SNR53"; transcript_biotype "ncRNA"; +chrV SGD exon 61699 61789 . + . transcript_id "YNCE0003W_snoRNA"; gene_name "SNR53"; gene_id "YNCE0003W"; +chrV SGD gene 61890 61960 . - . gene_id "YNCE0004C"; gene_biotype "ncRNA"; +chrV SGD transcript 61890 61960 . - . transcript_id "YNCE0004C_tRNA"; gene_id "YNCE0004C"; transcript_biotype "ncRNA"; +chrV SGD exon 61890 61960 . - . transcript_id "YNCE0004C_tRNA"; gene_id "YNCE0004C"; +chrV SGD gene 63710 64235 . + . gene_id "YEL049W"; gene_biotype "protein_coding"; +chrV SGD transcript 63710 64235 . + . transcript_id "YEL049W_id005"; gene_id "YEL049W"; gene_name "PAU2"; transcript_biotype "protein_coding"; +chrV SGD exon 63710 64235 . + . transcript_id "YEL049W_id005"; gene_id "YEL049W"; gene_name "PAU2"; +chrV SGD transcript 63728 64090 . + . transcript_id "YEL049W_id001"; gene_id "YEL049W"; gene_name "PAU2"; transcript_biotype "protein_coding"; +chrV SGD exon 63728 64090 . + 0 transcript_id "YEL049W_id001"; gene_name "PAU2"; gene_id "YEL049W"; +chrV SGD gene 64089 65265 . - . gene_id "YEL048C"; gene_biotype "protein_coding"; +chrV SGD transcript 64089 65265 . - . transcript_id "YEL048C_id004"; gene_id "YEL048C"; gene_name "TCA17"; transcript_biotype "protein_coding"; +chrV SGD exon 64089 65265 . - . transcript_id "YEL048C_id004"; gene_id "YEL048C"; gene_name "TCA17"; +chrV SGD transcript 64709 65167 . - . transcript_id "YEL048C_id001"; gene_id "YEL048C"; gene_name "TCA17"; transcript_biotype "protein_coding"; +chrV SGD exon 64709 65167 . - 0 transcript_id "YEL048C_id001"; gene_name "TCA17"; gene_id "YEL048C"; +chrV SGD gene 65385 66797 . - . gene_id "YEL047C"; gene_biotype "protein_coding"; +chrV SGD transcript 65385 66797 . - . transcript_id "YEL047C_mRNA"; gene_id "YEL047C"; gene_name "FRD1"; transcript_biotype "protein_coding"; +chrV SGD CDS 65385 66797 . - 0 transcript_id "YEL047C_mRNA"; gene_name "FRD1"; gene_id "YEL047C"; +chrV SGD gene 67007 68910 . - . gene_id "YEL046C"; gene_biotype "protein_coding"; +chrV SGD transcript 67007 68910 . - . transcript_id "YEL046C_id001"; gene_id "YEL046C"; gene_name "GLY1"; transcript_biotype "protein_coding"; +chrV SGD exon 67007 68910 . - . transcript_id "YEL046C_id001"; gene_id "YEL046C"; gene_name "GLY1"; +chrV SGD transcript 67629 68792 . - . transcript_id "YEL046C_id002"; gene_id "YEL046C"; gene_name "GLY1"; transcript_biotype "protein_coding"; +chrV SGD exon 67629 68792 . - 0 transcript_id "YEL046C_id002"; gene_name "GLY1"; gene_id "YEL046C"; +chrV SGD gene 68840 69265 . - . gene_id "YEL045C"; gene_biotype "protein_coding"; +chrV SGD transcript 68840 69265 . - . transcript_id "YEL045C_mRNA"; gene_id "YEL045C"; transcript_biotype "protein_coding"; +chrV SGD CDS 68840 69265 . - 0 transcript_id "YEL045C_mRNA"; gene_id "YEL045C"; +chrV SGD gene 69050 70395 . + . gene_id "YEL044W"; gene_biotype "protein_coding"; +chrV SGD transcript 69050 70395 . + . transcript_id "YEL044W_id001"; gene_id "YEL044W"; gene_name "IES6"; transcript_biotype "protein_coding"; +chrV SGD exon 69050 70395 . + . transcript_id "YEL044W_id001"; gene_id "YEL044W"; gene_name "IES6"; +chrV SGD transcript 69757 70257 . + . transcript_id "YEL044W_id004"; gene_id "YEL044W"; gene_name "IES6"; transcript_biotype "protein_coding"; +chrV SGD exon 69757 70257 . + 0 transcript_id "YEL044W_id004"; gene_name "IES6"; gene_id "YEL044W"; +chrV SGD gene 70433 73436 . + . gene_id "YEL043W"; gene_biotype "protein_coding"; +chrV SGD transcript 70433 73436 . + . transcript_id "YEL043W_id001"; gene_id "YEL043W"; gene_name "GTA1"; transcript_biotype "protein_coding"; +chrV SGD exon 70433 73436 . + . transcript_id "YEL043W_id001"; gene_id "YEL043W"; gene_name "GTA1"; +chrV SGD transcript 70478 73348 . + . transcript_id "YEL043W_id002"; gene_id "YEL043W"; gene_name "GTA1"; transcript_biotype "protein_coding"; +chrV SGD exon 70478 73348 . + 0 transcript_id "YEL043W_id002"; gene_name "GTA1"; gene_id "YEL043W"; +chrV SGD gene 73626 75903 . + . gene_id "YEL042W"; gene_biotype "protein_coding"; +chrV SGD transcript 73626 75903 . + . transcript_id "YEL042W_id002"; gene_id "YEL042W"; gene_name "GDA1"; transcript_biotype "protein_coding"; +chrV SGD exon 73626 75903 . + . transcript_id "YEL042W_id002"; gene_id "YEL042W"; gene_name "GDA1"; +chrV SGD transcript 73771 75327 . + . transcript_id "YEL042W_id001"; gene_id "YEL042W"; gene_name "GDA1"; transcript_biotype "protein_coding"; +chrV SGD exon 73771 75327 . + 0 transcript_id "YEL042W_id001"; gene_name "GDA1"; gene_id "YEL042W"; +chrV SGD gene 75944 77431 . + . gene_id "YEL041W"; gene_biotype "protein_coding"; +chrV SGD transcript 75944 77431 . + . transcript_id "YEL041W_id001"; gene_id "YEL041W"; gene_name "YEF1"; transcript_biotype "protein_coding"; +chrV SGD exon 75944 77431 . + 0 transcript_id "YEL041W_id001"; gene_name "YEF1"; gene_id "YEL041W"; +chrV SGD gene 78005 79662 . + . gene_id "YEL040W"; gene_biotype "protein_coding"; +chrV SGD transcript 78005 79662 . + . transcript_id "YEL040W_id001"; gene_id "YEL040W"; gene_name "UTR2"; transcript_biotype "protein_coding"; +chrV SGD exon 78005 79662 . + . transcript_id "YEL040W_id001"; gene_id "YEL040W"; gene_name "UTR2"; +chrV SGD transcript 78053 79456 . + . transcript_id "YEL040W_id004"; gene_id "YEL040W"; gene_name "UTR2"; transcript_biotype "protein_coding"; +chrV SGD exon 78053 79456 . + 0 transcript_id "YEL040W_id004"; gene_name "UTR2"; gene_id "YEL040W"; +chrV SGD gene 79521 80170 . - . gene_id "YEL039C"; gene_biotype "protein_coding"; +chrV SGD transcript 79521 80170 . - . transcript_id "YEL039C_id007"; gene_id "YEL039C"; gene_name "CYC7"; transcript_biotype "protein_coding"; +chrV SGD exon 79521 80170 . - . transcript_id "YEL039C_id007"; gene_id "YEL039C"; gene_name "CYC7"; +chrV SGD transcript 79636 79977 . - . transcript_id "YEL039C_id001"; gene_id "YEL039C"; gene_name "CYC7"; transcript_biotype "protein_coding"; +chrV SGD exon 79636 79977 . - 0 transcript_id "YEL039C_id001"; gene_name "CYC7"; gene_id "YEL039C"; +chrV SGD gene 80443 81364 . + . gene_id "YEL038W"; gene_biotype "protein_coding"; +chrV SGD transcript 80443 81364 . + . transcript_id "YEL038W_id003"; gene_id "YEL038W"; gene_name "UTR4"; transcript_biotype "protein_coding"; +chrV SGD exon 80443 81364 . + . transcript_id "YEL038W_id003"; gene_id "YEL038W"; gene_name "UTR4"; +chrV SGD transcript 80462 81145 . + . transcript_id "YEL038W_id001"; gene_id "YEL038W"; gene_name "UTR4"; transcript_biotype "protein_coding"; +chrV SGD exon 80462 81145 . + 0 transcript_id "YEL038W_id001"; gene_name "UTR4"; gene_id "YEL038W"; +chrV SGD gene 81215 82788 . - . gene_id "YEL037C"; gene_biotype "protein_coding"; +chrV SGD transcript 81215 82788 . - . transcript_id "YEL037C_id003"; gene_id "YEL037C"; gene_name "RAD23"; transcript_biotype "protein_coding"; +chrV SGD exon 81215 82788 . - . transcript_id "YEL037C_id003"; gene_id "YEL037C"; gene_name "RAD23"; +chrV SGD transcript 81407 82603 . - . transcript_id "YEL037C_id001"; gene_id "YEL037C"; gene_name "RAD23"; transcript_biotype "protein_coding"; +chrV SGD exon 81407 82603 . - 0 transcript_id "YEL037C_id001"; gene_name "RAD23"; gene_id "YEL037C"; +chrV SGD gene 82971 84832 . - . gene_id "YEL036C"; gene_biotype "protein_coding"; +chrV SGD transcript 82971 84832 . - . transcript_id "YEL036C_id001"; gene_id "YEL036C"; gene_name "ANP1"; transcript_biotype "protein_coding"; +chrV SGD exon 82971 84832 . - . transcript_id "YEL036C_id001"; gene_id "YEL036C"; gene_name "ANP1"; +chrV SGD transcript 83050 84552 . - . transcript_id "YEL036C_id002"; gene_id "YEL036C"; gene_name "ANP1"; transcript_biotype "protein_coding"; +chrV SGD exon 83050 84552 . - 0 transcript_id "YEL036C_id002"; gene_name "ANP1"; gene_id "YEL036C"; +chrV SGD gene 85045 85545 . - . gene_id "YEL035C"; gene_biotype "protein_coding"; +chrV SGD transcript 85045 85545 . - . transcript_id "YEL035C_mRNA"; gene_id "YEL035C"; gene_name "UTR5"; transcript_biotype "protein_coding"; +chrV SGD CDS 85045 85545 . - 0 transcript_id "YEL035C_mRNA"; gene_name "UTR5"; gene_id "YEL035C"; +chrV SGD gene 85195 86368 . + . gene_id "YEL034W"; gene_biotype "protein_coding"; +chrV SGD transcript 85195 86368 . + . transcript_id "YEL034W_id001"; gene_id "YEL034W"; gene_name "HYP2"; transcript_biotype "protein_coding"; +chrV SGD exon 85195 86368 . + . transcript_id "YEL034W_id001"; gene_id "YEL034W"; gene_name "HYP2"; +chrV SGD gene 85440 86268 . - . gene_id "YEL034C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 85440 86268 . - . transcript_id "YEL034C-A_id005"; gene_id "YEL034C-A"; transcript_biotype "protein_coding"; +chrV SGD exon 85440 86268 . - . transcript_id "YEL034C-A_id005"; gene_id "YEL034C-A"; +chrV SGD transcript 85613 86215 . - . transcript_id "YEL034C-A_id001"; gene_id "YEL034C-A"; transcript_biotype "protein_coding"; +chrV SGD exon 85613 86215 . - 0 transcript_id "YEL034C-A_id001"; gene_id "YEL034C-A"; +chrV SGD transcript 85676 86149 . + . transcript_id "YEL034W_id003"; gene_id "YEL034W"; gene_name "HYP2"; transcript_biotype "protein_coding"; +chrV SGD exon 85676 86149 . + 0 transcript_id "YEL034W_id003"; gene_name "HYP2"; gene_id "YEL034W"; +chrV SGD gene 86179 86598 . + . gene_id "YEL033W"; gene_biotype "protein_coding"; +chrV SGD transcript 86179 86598 . + . transcript_id "YEL033W_mRNA"; gene_id "YEL033W"; gene_name "MTC7"; transcript_biotype "protein_coding"; +chrV SGD CDS 86179 86598 . + 0 transcript_id "YEL033W_mRNA"; gene_name "MTC7"; gene_id "YEL033W"; +chrV SGD gene 86604 86685 . + . gene_id "YNCE0005W"; gene_biotype "ncRNA"; +chrV SGD transcript 86604 86685 . + . transcript_id "YNCE0005W_tRNA"; gene_id "YNCE0005W"; transcript_biotype "ncRNA"; +chrV SGD exon 86604 86685 . + . transcript_id "YNCE0005W_tRNA"; gene_id "YNCE0005W"; +chrV SGD gene 86853 90004 . + . gene_id "YEL032W"; gene_biotype "protein_coding"; +chrV SGD transcript 86853 90004 . + . transcript_id "YEL032W_id003"; gene_id "YEL032W"; gene_name "MCM3"; transcript_biotype "protein_coding"; +chrV SGD exon 86853 90004 . + . transcript_id "YEL032W_id003"; gene_id "YEL032W"; gene_name "MCM3"; +chrV SGD transcript 86937 89852 . + . transcript_id "YEL032W_id001"; gene_id "YEL032W"; gene_name "MCM3"; transcript_biotype "protein_coding"; +chrV SGD exon 86937 89852 . + 0 transcript_id "YEL032W_id001"; gene_name "MCM3"; gene_id "YEL032W"; +chrV SGD gene 87040 87201 . - . gene_id "YEL032C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 87040 87201 . - . transcript_id "YEL032C-A_mRNA"; gene_id "YEL032C-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 87040 87201 . - 0 transcript_id "YEL032C-A_mRNA"; gene_id "YEL032C-A"; +chrV SGD gene 90187 94007 . + . gene_id "YEL031W"; gene_biotype "protein_coding"; +chrV SGD transcript 90187 94007 . + . transcript_id "YEL031W_id001"; gene_id "YEL031W"; gene_name "SPF1"; transcript_biotype "protein_coding"; +chrV SGD exon 90187 94007 . + . transcript_id "YEL031W_id001"; gene_id "YEL031W"; gene_name "SPF1"; +chrV SGD transcript 90258 93905 . + . transcript_id "YEL031W_id007"; gene_id "YEL031W"; gene_name "SPF1"; transcript_biotype "protein_coding"; +chrV SGD exon 90258 93905 . + 0 transcript_id "YEL031W_id007"; gene_name "SPF1"; gene_id "YEL031W"; +chrV SGD gene 94191 96948 . + . gene_id "YEL030W"; gene_biotype "protein_coding"; +chrV SGD transcript 94191 96948 . + . transcript_id "YEL030W_id001"; gene_id "YEL030W"; gene_name "ECM10"; transcript_biotype "protein_coding"; +chrV SGD exon 94191 96948 . + . transcript_id "YEL030W_id001"; gene_id "YEL030W"; gene_name "ECM10"; +chrV SGD gene 94583 94897 . - . gene_id "YEL030C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 94583 94897 . - . transcript_id "YEL030C-A_mRNA"; gene_id "YEL030C-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 94583 94897 . - 0 transcript_id "YEL030C-A_mRNA"; gene_id "YEL030C-A"; +chrV SGD transcript 94644 96578 . + . transcript_id "YEL030W_id002"; gene_id "YEL030W"; gene_name "ECM10"; transcript_biotype "protein_coding"; +chrV SGD exon 94644 96578 . + 0 transcript_id "YEL030W_id002"; gene_name "ECM10"; gene_id "YEL030W"; +chrV SGD gene 96494 97909 . - . gene_id "YEL029C"; gene_biotype "protein_coding"; +chrV SGD transcript 96494 97909 . - . transcript_id "YEL029C_id001"; gene_id "YEL029C"; gene_name "BUD16"; transcript_biotype "protein_coding"; +chrV SGD exon 96494 97909 . - . transcript_id "YEL029C_id001"; gene_id "YEL029C"; gene_name "BUD16"; +chrV SGD transcript 96858 97796 . - . transcript_id "YEL029C_id003"; gene_id "YEL029C"; gene_name "BUD16"; transcript_biotype "protein_coding"; +chrV SGD exon 96858 97796 . - 0 transcript_id "YEL029C_id003"; gene_name "BUD16"; gene_id "YEL029C"; +chrV SGD gene 97084 99203 . + . gene_id "YEL028W"; gene_biotype "protein_coding"; +chrV SGD transcript 97084 99203 . + . transcript_id "YEL028W_id001"; gene_id "YEL028W"; transcript_biotype "protein_coding"; +chrV SGD exon 97084 99203 . + . transcript_id "YEL028W_id001"; gene_id "YEL028W"; +chrV SGD transcript 98668 99129 . + . transcript_id "YEL028W_id002"; gene_id "YEL028W"; transcript_biotype "protein_coding"; +chrV SGD exon 98668 99129 . + 0 transcript_id "YEL028W_id002"; gene_id "YEL028W"; +chrV SGD gene 100133 100204 . + . gene_id "YNCE0006W"; gene_biotype "ncRNA"; +chrV SGD transcript 100133 100204 . + . transcript_id "YNCE0006W_tRNA"; gene_id "YNCE0006W"; gene_name "IMT4"; transcript_biotype "ncRNA"; +chrV SGD exon 100133 100204 . + . transcript_id "YNCE0006W_tRNA"; gene_name "IMT4"; gene_id "YNCE0006W"; +chrV SGD gene 100706 101634 . + . gene_id "YEL027W"; gene_biotype "protein_coding"; +chrV SGD transcript 100706 101634 . + . transcript_id "YEL027W_id003"; gene_id "YEL027W"; gene_name "VMA3"; transcript_biotype "protein_coding"; +chrV SGD exon 100706 101634 . + . transcript_id "YEL027W_id003"; gene_id "YEL027W"; gene_name "VMA3"; +chrV SGD transcript 100769 101251 . + . transcript_id "YEL027W_id001"; gene_id "YEL027W"; gene_name "VMA3"; transcript_biotype "protein_coding"; +chrV SGD exon 100769 101251 . + 0 transcript_id "YEL027W_id001"; gene_name "VMA3"; gene_id "YEL027W"; +chrV SGD gene 100905 102394 . + . gene_id "YEL026W"; gene_biotype "protein_coding"; +chrV SGD transcript 100905 102394 . + . transcript_id "YEL026W_id001"; gene_id "YEL026W"; gene_name "SNU13"; transcript_biotype "protein_coding"; +chrV SGD exon 100905 102394 . + . transcript_id "YEL026W_id001"; gene_id "YEL026W"; gene_name "SNU13"; +chrV SGD transcript 101943 102323 . + . transcript_id "YEL026W_id002"; gene_id "YEL026W"; gene_name "SNU13"; transcript_biotype "protein_coding"; +chrV SGD exon 101943 102323 . + 0 transcript_id "YEL026W_id002"; gene_name "SNU13"; gene_id "YEL026W"; +chrV SGD gene 102581 106147 . - . gene_id "YEL025C"; gene_biotype "protein_coding"; +chrV SGD transcript 102581 106147 . - . transcript_id "YEL025C_mRNA"; gene_id "YEL025C"; transcript_biotype "protein_coding"; +chrV SGD CDS 102581 106147 . - 0 transcript_id "YEL025C_mRNA"; gene_id "YEL025C"; +chrV SGD gene 107159 108524 . + . gene_id "YEL024W"; gene_biotype "protein_coding"; +chrV SGD transcript 107159 108524 . + . transcript_id "YEL024W_id003"; gene_id "YEL024W"; gene_name "RIP1"; transcript_biotype "protein_coding"; +chrV SGD exon 107159 108524 . + . transcript_id "YEL024W_id003"; gene_id "YEL024W"; gene_name "RIP1"; +chrV SGD transcript 107260 107907 . + . transcript_id "YEL024W_id001"; gene_id "YEL024W"; gene_name "RIP1"; transcript_biotype "protein_coding"; +chrV SGD exon 107260 107907 . + 0 transcript_id "YEL024W_id001"; gene_name "RIP1"; gene_id "YEL024W"; +chrV SGD gene 108378 111112 . - . gene_id "YEL023C"; gene_biotype "protein_coding"; +chrV SGD transcript 108378 111112 . - . transcript_id "YEL023C_id001"; gene_id "YEL023C"; transcript_biotype "protein_coding"; +chrV SGD exon 108378 111112 . - . transcript_id "YEL023C_id001"; gene_id "YEL023C"; +chrV SGD transcript 108504 110552 . - . transcript_id "YEL023C_id002"; gene_id "YEL023C"; transcript_biotype "protein_coding"; +chrV SGD exon 108504 110552 . - 0 transcript_id "YEL023C_id002"; gene_id "YEL023C"; +chrV SGD gene 111421 115800 . + . gene_id "YEL022W"; gene_biotype "protein_coding"; +chrV SGD transcript 111421 115800 . + . transcript_id "YEL022W_id001"; gene_id "YEL022W"; gene_name "GEA2"; transcript_biotype "protein_coding"; +chrV SGD exon 111421 115800 . + 0 transcript_id "YEL022W_id001"; gene_name "GEA2"; gene_id "YEL022W"; +chrV SGD gene 116112 117120 . + . gene_id "YEL021W"; gene_biotype "protein_coding"; +chrV SGD transcript 116112 117120 . + . transcript_id "YEL021W_id002"; gene_id "YEL021W"; gene_name "URA3"; transcript_biotype "protein_coding"; +chrV SGD exon 116112 117120 . + . transcript_id "YEL021W_id002"; gene_id "YEL021W"; gene_name "URA3"; +chrV SGD transcript 116167 116970 . + . transcript_id "YEL021W_id001"; gene_id "YEL021W"; gene_name "URA3"; transcript_biotype "protein_coding"; +chrV SGD exon 116167 116970 . + 0 transcript_id "YEL021W_id001"; gene_name "URA3"; gene_id "YEL021W"; +chrV SGD gene 116531 117566 . + . gene_id "YEL020W-A"; gene_biotype "protein_coding"; +chrV SGD transcript 116531 117566 . + . transcript_id "YEL020W-A_id001"; gene_id "YEL020W-A"; gene_name "TIM9"; transcript_biotype "protein_coding"; +chrV SGD exon 116531 117566 . + . transcript_id "YEL020W-A_id001"; gene_id "YEL020W-A"; gene_name "TIM9"; +chrV SGD gene 117183 117380 . - . gene_id "YEL020C-B"; gene_biotype "protein_coding"; +chrV SGD transcript 117183 117380 . - . transcript_id "YEL020C-B_mRNA"; gene_id "YEL020C-B"; transcript_biotype "protein_coding"; +chrV SGD CDS 117183 117380 . - 0 transcript_id "YEL020C-B_mRNA"; gene_id "YEL020C-B"; +chrV SGD transcript 117211 117474 . + . transcript_id "YEL020W-A_id006"; gene_id "YEL020W-A"; gene_name "TIM9"; transcript_biotype "protein_coding"; +chrV SGD exon 117211 117474 . + 0 transcript_id "YEL020W-A_id006"; gene_name "TIM9"; gene_id "YEL020W-A"; +chrV SGD gene 117667 118035 . - . gene_id "YNCE0007C"; gene_biotype "ncRNA"; +chrV SGD transcript 117667 118035 . - . transcript_id "YNCE0007C_ncRNA"; gene_id "YNCE0007C"; gene_name "RPR1"; transcript_biotype "ncRNA"; +chrV SGD exon 117667 118035 . - . transcript_id "YNCE0007C_ncRNA"; gene_name "RPR1"; gene_id "YNCE0007C"; +chrV SGD gene 118617 120299 . - . gene_id "YEL020C"; gene_biotype "protein_coding"; +chrV SGD transcript 118617 120299 . - . transcript_id "YEL020C_mRNA"; gene_id "YEL020C"; gene_name "PXP1"; transcript_biotype "protein_coding"; +chrV SGD CDS 118617 120299 . - 0 transcript_id "YEL020C_mRNA"; gene_name "PXP1"; gene_id "YEL020C"; +chrV SGD gene 120498 121301 . - . gene_id "YEL019C"; gene_biotype "protein_coding"; +chrV SGD transcript 120498 121301 . - . transcript_id "YEL019C_id001"; gene_id "YEL019C"; gene_name "MMS21"; transcript_biotype "protein_coding"; +chrV SGD exon 120498 121301 . - 0 transcript_id "YEL019C_id001"; gene_name "MMS21"; gene_id "YEL019C"; +chrV SGD gene 121437 122462 . + . gene_id "YEL018W"; gene_biotype "protein_coding"; +chrV SGD transcript 121437 122462 . + . transcript_id "YEL018W_id001"; gene_id "YEL018W"; gene_name "EAF5"; transcript_biotype "protein_coding"; +chrV SGD exon 121437 122462 . + . transcript_id "YEL018W_id001"; gene_id "YEL018W"; gene_name "EAF5"; +chrV SGD gene 121455 121988 . - . gene_id "YEL018C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 121455 121988 . - . transcript_id "YEL018C-A_mRNA"; gene_id "YEL018C-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 121455 121988 . - 0 transcript_id "YEL018C-A_mRNA"; gene_id "YEL018C-A"; +chrV SGD transcript 121471 122310 . + . transcript_id "YEL018W_id003"; gene_id "YEL018W"; gene_name "EAF5"; transcript_biotype "protein_coding"; +chrV SGD exon 121471 122310 . + 0 transcript_id "YEL018W_id003"; gene_name "EAF5"; gene_id "YEL018W"; +chrV SGD gene 122091 122964 . - . gene_id "YEL017C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 122091 122964 . - . transcript_id "YEL017C-A_id001"; gene_id "YEL017C-A"; gene_name "PMP2"; transcript_biotype "protein_coding"; +chrV SGD exon 122091 122964 . - . transcript_id "YEL017C-A_id001"; gene_id "YEL017C-A"; gene_name "PMP2"; +chrV SGD transcript 122798 122929 . - . transcript_id "YEL017C-A_id006"; gene_id "YEL017C-A"; gene_name "PMP2"; transcript_biotype "protein_coding"; +chrV SGD exon 122798 122929 . - 0 transcript_id "YEL017C-A_id006"; gene_name "PMP2"; gene_id "YEL017C-A"; +chrV SGD gene 123176 124767 . + . gene_id "YEL017W"; gene_biotype "protein_coding"; +chrV SGD transcript 123176 124767 . + . transcript_id "YEL017W_id001"; gene_id "YEL017W"; gene_name "GTT3"; transcript_biotype "protein_coding"; +chrV SGD exon 123176 124767 . + . transcript_id "YEL017W_id001"; gene_id "YEL017W"; gene_name "GTT3"; +chrV SGD transcript 123657 124670 . + . transcript_id "YEL017W_id003"; gene_id "YEL017W"; gene_name "GTT3"; transcript_biotype "protein_coding"; +chrV SGD exon 123657 124670 . + 0 transcript_id "YEL017W_id003"; gene_name "GTT3"; gene_id "YEL017W"; +chrV SGD gene 124566 126430 . - . gene_id "YEL016C"; gene_biotype "protein_coding"; +chrV SGD transcript 124566 126430 . - . transcript_id "YEL016C_id001"; gene_id "YEL016C"; gene_name "NPP2"; transcript_biotype "protein_coding"; +chrV SGD exon 124566 126430 . - . transcript_id "YEL016C_id001"; gene_id "YEL016C"; gene_name "NPP2"; +chrV SGD transcript 124737 126218 . - . transcript_id "YEL016C_id004"; gene_id "YEL016C"; gene_name "NPP2"; transcript_biotype "protein_coding"; +chrV SGD exon 124737 126218 . - 0 transcript_id "YEL016C_id004"; gene_name "NPP2"; gene_id "YEL016C"; +chrV SGD gene 126580 128450 . + . gene_id "YEL015W"; gene_biotype "protein_coding"; +chrV SGD transcript 126580 128450 . + . transcript_id "YEL015W_id006"; gene_id "YEL015W"; gene_name "EDC3"; transcript_biotype "protein_coding"; +chrV SGD exon 126580 128450 . + . transcript_id "YEL015W_id006"; gene_id "YEL015W"; gene_name "EDC3"; +chrV SGD transcript 126629 128284 . + . transcript_id "YEL015W_id001"; gene_id "YEL015W"; gene_name "EDC3"; transcript_biotype "protein_coding"; +chrV SGD exon 126629 128284 . + 0 transcript_id "YEL015W_id001"; gene_name "EDC3"; gene_id "YEL015W"; +chrV SGD gene 128303 128608 . - . gene_id "YEL014C"; gene_biotype "protein_coding"; +chrV SGD transcript 128303 128608 . - . transcript_id "YEL014C_mRNA"; gene_id "YEL014C"; transcript_biotype "protein_coding"; +chrV SGD CDS 128303 128608 . - 0 transcript_id "YEL014C_mRNA"; gene_id "YEL014C"; +chrV SGD gene 128555 131010 . + . gene_id "YEL013W"; gene_biotype "protein_coding"; +chrV SGD transcript 128555 131010 . + . transcript_id "YEL013W_id002"; gene_id "YEL013W"; gene_name "VAC8"; transcript_biotype "protein_coding"; +chrV SGD exon 128555 131010 . + . transcript_id "YEL013W_id002"; gene_id "YEL013W"; gene_name "VAC8"; +chrV SGD transcript 128825 130561 . + . transcript_id "YEL013W_id001"; gene_id "YEL013W"; gene_name "VAC8"; transcript_biotype "protein_coding"; +chrV SGD exon 128825 130561 . + 0 transcript_id "YEL013W_id001"; gene_name "VAC8"; gene_id "YEL013W"; +chrV SGD gene 131082 131153 . - . gene_id "YNCE0008C"; gene_biotype "ncRNA"; +chrV SGD transcript 131082 131153 . - . transcript_id "YNCE0008C_tRNA"; gene_id "YNCE0008C"; transcript_biotype "ncRNA"; +chrV SGD exon 131082 131153 . - . transcript_id "YNCE0008C_tRNA"; gene_id "YNCE0008C"; +chrV SGD gene 131627 132660 . + . gene_id "YEL012W"; gene_biotype "protein_coding"; +chrV SGD transcript 131627 132660 . + . transcript_id "YEL012W_id003"; gene_id "YEL012W"; gene_name "UBC8"; transcript_biotype "protein_coding"; +chrV SGD exon 131627 132660 . + . transcript_id "YEL012W_id003"; gene_id "YEL012W"; gene_name "UBC8"; +chrV SGD transcript 131772 132551 . + . transcript_id "YEL012W_id001"; gene_id "YEL012W"; gene_name "UBC8"; transcript_biotype "protein_coding"; +chrV SGD exon 131772 131776 . + 0 transcript_id "YEL012W_id001"; gene_name "UBC8"; gene_id "YEL012W"; +chrV SGD exon 131900 132551 . + 1 transcript_id "YEL012W_id001"; gene_name "UBC8"; gene_id "YEL012W"; +chrV SGD gene 133011 135350 . + . gene_id "YEL011W"; gene_biotype "protein_coding"; +chrV SGD transcript 133011 135350 . + . transcript_id "YEL011W_id001"; gene_id "YEL011W"; gene_name "GLC3"; transcript_biotype "protein_coding"; +chrV SGD exon 133011 135350 . + . transcript_id "YEL011W_id001"; gene_id "YEL011W"; gene_name "GLC3"; +chrV SGD transcript 133120 135234 . + . transcript_id "YEL011W_id003"; gene_id "YEL011W"; gene_name "GLC3"; transcript_biotype "protein_coding"; +chrV SGD exon 133120 135234 . + 0 transcript_id "YEL011W_id003"; gene_name "GLC3"; gene_id "YEL011W"; +chrV SGD gene 135425 135497 . - . gene_id "YNCE0009C"; gene_biotype "ncRNA"; +chrV SGD transcript 135425 135497 . - . transcript_id "YNCE0009C_tRNA"; gene_id "YNCE0009C"; transcript_biotype "ncRNA"; +chrV SGD exon 135425 135497 . - . transcript_id "YNCE0009C_tRNA"; gene_id "YNCE0009C"; +chrV SGD gene 136279 136629 . + . gene_id "YEL010W"; gene_biotype "protein_coding"; +chrV SGD transcript 136279 136629 . + . transcript_id "YEL010W_mRNA"; gene_id "YEL010W"; transcript_biotype "protein_coding"; +chrV SGD CDS 136279 136629 . + 0 transcript_id "YEL010W_mRNA"; gene_id "YEL010W"; +chrV SGD gene 136371 136778 . - . gene_id "YEL009C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 136371 136778 . - . transcript_id "YEL009C-A_mRNA"; gene_id "YEL009C-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 136371 136778 . - 0 transcript_id "YEL009C-A_mRNA"; gene_id "YEL009C-A"; +chrV SGD gene 138666 138737 . + . gene_id "YNCE0010W"; gene_biotype "ncRNA"; +chrV SGD transcript 138666 138737 . + . transcript_id "YNCE0010W_tRNA"; gene_id "YNCE0010W"; transcript_biotype "ncRNA"; +chrV SGD exon 138666 138737 . + . transcript_id "YNCE0010W_tRNA"; gene_id "YNCE0010W"; +chrV SGD gene 138823 140489 . - . gene_id "YEL009C"; gene_biotype "protein_coding"; +chrV SGD transcript 138823 140489 . - . transcript_id "YEL009C_id001"; gene_id "YEL009C"; gene_name "GCN4"; transcript_biotype "protein_coding"; +chrV SGD exon 138823 140489 . - . transcript_id "YEL009C_id001"; gene_id "YEL009C"; gene_name "GCN4"; +chrV SGD transcript 138918 140124 . - . transcript_id "YEL009C_id002"; gene_id "YEL009C"; gene_name "GCN4"; transcript_biotype "protein_coding"; +chrV SGD exon 138918 139763 . - . transcript_id "YEL009C_id002"; gene_name "GCN4"; gene_id "YEL009C"; +chrV SGD exon 140113 140124 . - . transcript_id "YEL009C_id002"; gene_name "GCN4"; gene_id "YEL009C"; +chrV SGD exon 138918 139763 . - 0 transcript_id "YEL009C_id002"; gene_name "GCN4"; gene_id "YEL009C"; +chrV SGD gene 140310 141050 . - . gene_id "YEL008C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 140310 141050 . - . transcript_id "YEL008C-A_id001"; gene_id "YEL008C-A"; transcript_biotype "protein_coding"; +chrV SGD exon 140310 141050 . - . transcript_id "YEL008C-A_id001"; gene_id "YEL008C-A"; +chrV SGD gene 140400 141261 . + . gene_id "YEL008W"; gene_biotype "protein_coding"; +chrV SGD transcript 140400 141261 . + . transcript_id "YEL008W_id002"; gene_id "YEL008W"; transcript_biotype "protein_coding"; +chrV SGD exon 140400 141261 . + . transcript_id "YEL008W_id002"; gene_id "YEL008W"; +chrV SGD transcript 140512 140892 . + . transcript_id "YEL008W_id001"; gene_id "YEL008W"; transcript_biotype "protein_coding"; +chrV SGD exon 140512 140892 . + 0 transcript_id "YEL008W_id001"; gene_id "YEL008W"; +chrV SGD transcript 140726 140818 . - . transcript_id "YEL008C-A_id002"; gene_id "YEL008C-A"; transcript_biotype "protein_coding"; +chrV SGD exon 140726 140818 . - 0 transcript_id "YEL008C-A_id002"; gene_id "YEL008C-A"; +chrV SGD gene 141892 143892 . + . gene_id "YEL007W"; gene_biotype "protein_coding"; +chrV SGD transcript 141892 143892 . + . transcript_id "YEL007W_mRNA"; gene_id "YEL007W"; gene_name "MIT1"; transcript_biotype "protein_coding"; +chrV SGD CDS 141892 143892 . + 0 transcript_id "YEL007W_mRNA"; gene_name "MIT1"; gene_id "YEL007W"; +chrV SGD gene 144264 145702 . + . gene_id "YEL006W"; gene_biotype "protein_coding"; +chrV SGD transcript 144264 145702 . + . transcript_id "YEL006W_id007"; gene_id "YEL006W"; gene_name "YEA6"; transcript_biotype "protein_coding"; +chrV SGD exon 144264 145702 . + . transcript_id "YEL006W_id007"; gene_id "YEL006W"; gene_name "YEA6"; +chrV SGD transcript 144327 145334 . + . transcript_id "YEL006W_id001"; gene_id "YEL006W"; gene_name "YEA6"; transcript_biotype "protein_coding"; +chrV SGD exon 144327 145334 . + 0 transcript_id "YEL006W_id001"; gene_name "YEA6"; gene_id "YEL006W"; +chrV SGD gene 145810 146795 . - . gene_id "YEL005C"; gene_biotype "protein_coding"; +chrV SGD transcript 145810 146795 . - . transcript_id "YEL005C_id005"; gene_id "YEL005C"; gene_name "VAB2"; transcript_biotype "protein_coding"; +chrV SGD exon 145810 146795 . - . transcript_id "YEL005C_id005"; gene_id "YEL005C"; gene_name "VAB2"; +chrV SGD transcript 145907 146755 . - . transcript_id "YEL005C_id001"; gene_id "YEL005C"; gene_name "VAB2"; transcript_biotype "protein_coding"; +chrV SGD exon 145907 146755 . - 0 transcript_id "YEL005C_id001"; gene_name "VAB2"; gene_id "YEL005C"; +chrV SGD gene 146894 148321 . + . gene_id "YEL004W"; gene_biotype "protein_coding"; +chrV SGD transcript 146894 148321 . + . transcript_id "YEL004W_id002"; gene_id "YEL004W"; gene_name "YEA4"; transcript_biotype "protein_coding"; +chrV SGD exon 146894 148321 . + . transcript_id "YEL004W_id002"; gene_id "YEL004W"; gene_name "YEA4"; +chrV SGD transcript 146951 147979 . + . transcript_id "YEL004W_id001"; gene_id "YEL004W"; gene_name "YEA4"; transcript_biotype "protein_coding"; +chrV SGD exon 146951 147979 . + 0 transcript_id "YEL004W_id001"; gene_name "YEA4"; gene_id "YEL004W"; +chrV SGD gene 147953 148711 . + . gene_id "YEL003W"; gene_biotype "protein_coding"; +chrV SGD transcript 147953 148711 . + . transcript_id "YEL003W_id002"; gene_id "YEL003W"; gene_name "GIM4"; transcript_biotype "protein_coding"; +chrV SGD exon 147953 148711 . + . transcript_id "YEL003W_id002"; gene_id "YEL003W"; gene_name "GIM4"; +chrV SGD transcript 148176 148599 . + . transcript_id "YEL003W_id001"; gene_id "YEL003W"; gene_name "GIM4"; transcript_biotype "protein_coding"; +chrV SGD exon 148176 148194 . + 0 transcript_id "YEL003W_id001"; gene_name "GIM4"; gene_id "YEL003W"; +chrV SGD exon 148283 148599 . + 2 transcript_id "YEL003W_id001"; gene_name "GIM4"; gene_id "YEL003W"; +chrV SGD gene 148562 150077 . - . gene_id "YEL002C"; gene_biotype "protein_coding"; +chrV SGD transcript 148562 150077 . - . transcript_id "YEL002C_id002"; gene_id "YEL002C"; gene_name "WBP1"; transcript_biotype "protein_coding"; +chrV SGD exon 148562 150077 . - . transcript_id "YEL002C_id002"; gene_id "YEL002C"; gene_name "WBP1"; +chrV SGD transcript 148722 150014 . - . transcript_id "YEL002C_id001"; gene_id "YEL002C"; gene_name "WBP1"; transcript_biotype "protein_coding"; +chrV SGD exon 148722 150014 . - 0 transcript_id "YEL002C_id001"; gene_name "WBP1"; gene_id "YEL002C"; +chrV SGD gene 149991 151013 . - . gene_id "YEL001C"; gene_biotype "protein_coding"; +chrV SGD transcript 149991 151013 . - . transcript_id "YEL001C_id001"; gene_id "YEL001C"; gene_name "IRC22"; transcript_biotype "protein_coding"; +chrV SGD exon 149991 151013 . - . transcript_id "YEL001C_id001"; gene_id "YEL001C"; gene_name "IRC22"; +chrV SGD transcript 150301 150978 . - . transcript_id "YEL001C_id002"; gene_id "YEL001C"; gene_name "IRC22"; transcript_biotype "protein_coding"; +chrV SGD exon 150301 150978 . - 0 transcript_id "YEL001C_id002"; gene_name "IRC22"; gene_id "YEL001C"; +chrV SGD gene 153471 156098 . + . gene_id "YER001W"; gene_biotype "protein_coding"; +chrV SGD transcript 153471 156098 . + . transcript_id "YER001W_id001"; gene_id "YER001W"; gene_name "MNN1"; transcript_biotype "protein_coding"; +chrV SGD exon 153471 156098 . + . transcript_id "YER001W_id001"; gene_id "YER001W"; gene_name "MNN1"; +chrV SGD transcript 153520 155808 . + . transcript_id "YER001W_id006"; gene_id "YER001W"; gene_name "MNN1"; transcript_biotype "protein_coding"; +chrV SGD exon 153520 155808 . + 0 transcript_id "YER001W_id006"; gene_name "MNN1"; gene_id "YER001W"; +chrV SGD gene 156369 157606 . + . gene_id "YER002W"; gene_biotype "protein_coding"; +chrV SGD transcript 156369 157606 . + . transcript_id "YER002W_id001"; gene_id "YER002W"; gene_name "NOP16"; transcript_biotype "protein_coding"; +chrV SGD exon 156369 157606 . + . transcript_id "YER002W_id001"; gene_id "YER002W"; gene_name "NOP16"; +chrV SGD transcript 156803 157498 . + . transcript_id "YER002W_id005"; gene_id "YER002W"; gene_name "NOP16"; transcript_biotype "protein_coding"; +chrV SGD exon 156803 157498 . + 0 transcript_id "YER002W_id005"; gene_name "NOP16"; gene_id "YER002W"; +chrV SGD gene 157442 159162 . - . gene_id "YER003C"; gene_biotype "protein_coding"; +chrV SGD transcript 157442 159162 . - . transcript_id "YER003C_id001"; gene_id "YER003C"; gene_name "PMI40"; transcript_biotype "protein_coding"; +chrV SGD exon 157442 159162 . - . transcript_id "YER003C_id001"; gene_id "YER003C"; gene_name "PMI40"; +chrV SGD transcript 157736 159118 . - . transcript_id "YER003C_id002"; gene_id "YER003C"; gene_name "PMI40"; transcript_biotype "protein_coding"; +chrV SGD exon 157736 158994 . - 2 transcript_id "YER003C_id002"; gene_name "PMI40"; gene_id "YER003C"; +chrV SGD exon 159088 159118 . - 0 transcript_id "YER003C_id002"; gene_name "PMI40"; gene_id "YER003C"; +chrV SGD gene 159284 160536 . + . gene_id "YER004W"; gene_biotype "protein_coding"; +chrV SGD transcript 159284 160536 . + . transcript_id "YER004W_id003"; gene_id "YER004W"; gene_name "FMP52"; transcript_biotype "protein_coding"; +chrV SGD exon 159284 160536 . + . transcript_id "YER004W_id003"; gene_id "YER004W"; gene_name "FMP52"; +chrV SGD transcript 159580 160275 . + . transcript_id "YER004W_id001"; gene_id "YER004W"; gene_name "FMP52"; transcript_biotype "protein_coding"; +chrV SGD exon 159580 160275 . + 0 transcript_id "YER004W_id001"; gene_name "FMP52"; gene_id "YER004W"; +chrV SGD gene 160501 162733 . + . gene_id "YER005W"; gene_biotype "protein_coding"; +chrV SGD transcript 160501 162733 . + . transcript_id "YER005W_id001"; gene_id "YER005W"; gene_name "YND1"; transcript_biotype "protein_coding"; +chrV SGD exon 160501 162733 . + . transcript_id "YER005W_id001"; gene_id "YER005W"; gene_name "YND1"; +chrV SGD transcript 160550 162442 . + . transcript_id "YER005W_id002"; gene_id "YER005W"; gene_name "YND1"; transcript_biotype "protein_coding"; +chrV SGD exon 160550 162442 . + 0 transcript_id "YER005W_id002"; gene_name "YND1"; gene_id "YER005W"; +chrV SGD gene 162684 164511 . + . gene_id "YER006W"; gene_biotype "protein_coding"; +chrV SGD transcript 162684 164511 . + . transcript_id "YER006W_id001"; gene_id "YER006W"; gene_name "NUG1"; transcript_biotype "protein_coding"; +chrV SGD exon 162684 164511 . + . transcript_id "YER006W_id001"; gene_id "YER006W"; gene_name "NUG1"; +chrV SGD transcript 162723 164285 . + . transcript_id "YER006W_id004"; gene_id "YER006W"; gene_name "NUG1"; transcript_biotype "protein_coding"; +chrV SGD exon 162723 164285 . + 0 transcript_id "YER006W_id004"; gene_name "NUG1"; gene_id "YER006W"; +chrV SGD gene 164344 164661 . - . gene_id "YER006C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 164344 164661 . - . transcript_id "YER006C-A_mRNA"; gene_id "YER006C-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 164344 164661 . - 0 transcript_id "YER006C-A_mRNA"; gene_id "YER006C-A"; +chrV SGD gene 164486 166230 . + . gene_id "YER007W"; gene_biotype "protein_coding"; +chrV SGD transcript 164486 166230 . + . transcript_id "YER007W_id001"; gene_id "YER007W"; gene_name "PAC2"; transcript_biotype "protein_coding"; +chrV SGD exon 164486 166230 . + . transcript_id "YER007W_id001"; gene_id "YER007W"; gene_name "PAC2"; +chrV SGD transcript 164527 166083 . + . transcript_id "YER007W_id003"; gene_id "YER007W"; gene_name "PAC2"; transcript_biotype "protein_coding"; +chrV SGD exon 164527 166083 . + 0 transcript_id "YER007W_id003"; gene_name "PAC2"; gene_id "YER007W"; +chrV SGD gene 165671 166910 . - . gene_id "YER007C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 165671 166910 . - . transcript_id "YER007C-A_id001"; gene_id "YER007C-A"; gene_name "TMA20"; transcript_biotype "protein_coding"; +chrV SGD exon 165671 166910 . - . transcript_id "YER007C-A_id001"; gene_id "YER007C-A"; gene_name "TMA20"; +chrV SGD transcript 166237 166885 . - . transcript_id "YER007C-A_id002"; gene_id "YER007C-A"; gene_name "TMA20"; transcript_biotype "protein_coding"; +chrV SGD exon 166237 166771 . - 1 transcript_id "YER007C-A_id002"; gene_name "TMA20"; gene_id "YER007C-A"; +chrV SGD exon 166875 166885 . - 0 transcript_id "YER007C-A_id002"; gene_name "TMA20"; gene_id "YER007C-A"; +chrV SGD gene 167427 167586 . - . gene_id "YNCE0011C"; gene_biotype "ncRNA"; +chrV SGD transcript 167427 167586 . - . transcript_id "YNCE0011C_snRNA"; gene_id "YNCE0011C"; gene_name "SNR14"; transcript_biotype "ncRNA"; +chrV SGD exon 167427 167586 . - . transcript_id "YNCE0011C_snRNA"; gene_name "SNR14"; gene_id "YNCE0011C"; +chrV SGD gene 167724 171884 . - . gene_id "YER008C"; gene_biotype "protein_coding"; +chrV SGD transcript 167724 171884 . - . transcript_id "YER008C_id002"; gene_id "YER008C"; gene_name "SEC3"; transcript_biotype "protein_coding"; +chrV SGD exon 167724 171884 . - . transcript_id "YER008C_id002"; gene_id "YER008C"; gene_name "SEC3"; +chrV SGD transcript 167808 171818 . - . transcript_id "YER008C_id001"; gene_id "YER008C"; gene_name "SEC3"; transcript_biotype "protein_coding"; +chrV SGD exon 167808 171818 . - 0 transcript_id "YER008C_id001"; gene_name "SEC3"; gene_id "YER008C"; +chrV SGD gene 172050 172753 . + . gene_id "YER009W"; gene_biotype "protein_coding"; +chrV SGD transcript 172050 172753 . + . transcript_id "YER009W_id001"; gene_id "YER009W"; gene_name "NTF2"; transcript_biotype "protein_coding"; +chrV SGD exon 172050 172753 . + . transcript_id "YER009W_id001"; gene_id "YER009W"; gene_name "NTF2"; +chrV SGD transcript 172115 172492 . + . transcript_id "YER009W_id002"; gene_id "YER009W"; gene_name "NTF2"; transcript_biotype "protein_coding"; +chrV SGD exon 172115 172492 . + 0 transcript_id "YER009W_id002"; gene_name "NTF2"; gene_id "YER009W"; +chrV SGD gene 172546 173440 . - . gene_id "YER010C"; gene_biotype "protein_coding"; +chrV SGD transcript 172546 173440 . - . transcript_id "YER010C_id001"; gene_id "YER010C"; transcript_biotype "protein_coding"; +chrV SGD exon 172546 173440 . - . transcript_id "YER010C_id001"; gene_id "YER010C"; +chrV SGD transcript 172634 173338 . - . transcript_id "YER010C_id002"; gene_id "YER010C"; transcript_biotype "protein_coding"; +chrV SGD exon 172634 173338 . - 0 transcript_id "YER010C_id002"; gene_id "YER010C"; +chrV SGD gene 175194 176279 . + . gene_id "YER011W"; gene_biotype "protein_coding"; +chrV SGD transcript 175194 176279 . + . transcript_id "YER011W_id002"; gene_id "YER011W"; gene_name "TIR1"; transcript_biotype "protein_coding"; +chrV SGD exon 175194 176279 . + . transcript_id "YER011W_id002"; gene_id "YER011W"; gene_name "TIR1"; +chrV SGD transcript 175248 176012 . + . transcript_id "YER011W_id001"; gene_id "YER011W"; gene_name "TIR1"; transcript_biotype "protein_coding"; +chrV SGD exon 175248 176012 . + 0 transcript_id "YER011W_id001"; gene_name "TIR1"; gene_id "YER011W"; +chrV SGD gene 177099 177170 . + . gene_id "YNCE0012W"; gene_biotype "ncRNA"; +chrV SGD transcript 177099 177170 . + . transcript_id "YNCE0012W_tRNA"; gene_id "YNCE0012W"; transcript_biotype "ncRNA"; +chrV SGD exon 177099 177170 . + . transcript_id "YNCE0012W_tRNA"; gene_id "YNCE0012W"; +chrV SGD gene 177720 178639 . + . gene_id "YER012W"; gene_biotype "protein_coding"; +chrV SGD transcript 177720 178639 . + . transcript_id "YER012W_id001"; gene_id "YER012W"; gene_name "PRE1"; transcript_biotype "protein_coding"; +chrV SGD exon 177720 178639 . + . transcript_id "YER012W_id001"; gene_id "YER012W"; gene_name "PRE1"; +chrV SGD transcript 177835 178431 . + . transcript_id "YER012W_id003"; gene_id "YER012W"; gene_name "PRE1"; transcript_biotype "protein_coding"; +chrV SGD exon 177835 178431 . + 0 transcript_id "YER012W_id003"; gene_name "PRE1"; gene_id "YER012W"; +chrV SGD gene 178841 182278 . + . gene_id "YER013W"; gene_biotype "protein_coding"; +chrV SGD transcript 178841 182278 . + . transcript_id "YER013W_mRNA"; gene_id "YER013W"; gene_name "PRP22"; transcript_biotype "protein_coding"; +chrV SGD CDS 178841 182278 . + 0 transcript_id "YER013W_mRNA"; gene_name "PRP22"; gene_id "YER013W"; +chrV SGD gene 182546 184349 . + . gene_id "YER014W"; gene_biotype "protein_coding"; +chrV SGD transcript 182546 184349 . + . transcript_id "YER014W_id001"; gene_id "YER014W"; gene_name "HEM14"; transcript_biotype "protein_coding"; +chrV SGD exon 182546 184349 . + . transcript_id "YER014W_id001"; gene_id "YER014W"; gene_name "HEM14"; +chrV SGD transcript 182600 184219 . + . transcript_id "YER014W_id002"; gene_id "YER014W"; gene_name "HEM14"; transcript_biotype "protein_coding"; +chrV SGD exon 182600 184219 . + 0 transcript_id "YER014W_id002"; gene_name "HEM14"; gene_id "YER014W"; +chrV SGD gene 183731 184700 . - . gene_id "YER014C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 183731 184700 . - . transcript_id "YER014C-A_mRNA"; gene_id "YER014C-A"; gene_name "BUD25"; transcript_biotype "protein_coding"; +chrV SGD CDS 183731 184169 . - 1 transcript_id "YER014C-A_mRNA"; gene_name "BUD25"; gene_id "YER014C-A"; +chrV SGD CDS 184678 184700 . - 0 transcript_id "YER014C-A_mRNA"; gene_name "BUD25"; gene_id "YER014C-A"; +chrV SGD gene 184541 186775 . + . gene_id "YER015W"; gene_biotype "protein_coding"; +chrV SGD transcript 184541 186775 . + . transcript_id "YER015W_id001"; gene_id "YER015W"; gene_name "FAA2"; transcript_biotype "protein_coding"; +chrV SGD exon 184541 186775 . + 0 transcript_id "YER015W_id001"; gene_name "FAA2"; gene_id "YER015W"; +chrV SGD gene 188225 189429 . + . gene_id "YER016W"; gene_biotype "protein_coding"; +chrV SGD transcript 188225 189429 . + . transcript_id "YER016W_id004"; gene_id "YER016W"; gene_name "BIM1"; transcript_biotype "protein_coding"; +chrV SGD exon 188225 189429 . + . transcript_id "YER016W_id004"; gene_id "YER016W"; gene_name "BIM1"; +chrV SGD transcript 188277 189311 . + . transcript_id "YER016W_id001"; gene_id "YER016W"; gene_name "BIM1"; transcript_biotype "protein_coding"; +chrV SGD exon 188277 189311 . + 0 transcript_id "YER016W_id001"; gene_name "BIM1"; gene_id "YER016W"; +chrV SGD gene 189340 191884 . - . gene_id "YER017C"; gene_biotype "protein_coding"; +chrV SGD transcript 189340 191884 . - . transcript_id "YER017C_id002"; gene_id "YER017C"; gene_name "AFG3"; transcript_biotype "protein_coding"; +chrV SGD exon 189340 191884 . - . transcript_id "YER017C_id002"; gene_id "YER017C"; gene_name "AFG3"; +chrV SGD transcript 189503 191788 . - . transcript_id "YER017C_id001"; gene_id "YER017C"; gene_name "AFG3"; transcript_biotype "protein_coding"; +chrV SGD exon 189503 191788 . - 0 transcript_id "YER017C_id001"; gene_name "AFG3"; gene_id "YER017C"; +chrV SGD gene 191885 193907 . - . gene_id "YER018C"; gene_biotype "protein_coding"; +chrV SGD transcript 191885 193907 . - . transcript_id "YER018C_id002"; gene_id "YER018C"; gene_name "SPC25"; transcript_biotype "protein_coding"; +chrV SGD exon 191885 193907 . - . transcript_id "YER018C_id002"; gene_id "YER018C"; gene_name "SPC25"; +chrV SGD transcript 191959 192624 . - . transcript_id "YER018C_id001"; gene_id "YER018C"; gene_name "SPC25"; transcript_biotype "protein_coding"; +chrV SGD exon 191959 192624 . - 0 transcript_id "YER018C_id001"; gene_name "SPC25"; gene_id "YER018C"; +chrV SGD gene 192438 194592 . - . gene_id "YER019C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 192438 194592 . - . transcript_id "YER019C-A_id001"; gene_id "YER019C-A"; gene_name "SBH2"; transcript_biotype "protein_coding"; +chrV SGD exon 192438 194592 . - . transcript_id "YER019C-A_id001"; gene_id "YER019C-A"; gene_name "SBH2"; +chrV SGD gene 192751 194318 . + . gene_id "YER019W"; gene_biotype "protein_coding"; +chrV SGD transcript 192751 194318 . + . transcript_id "YER019W_id003"; gene_id "YER019W"; gene_name "ISC1"; transcript_biotype "protein_coding"; +chrV SGD exon 192751 194318 . + . transcript_id "YER019W_id003"; gene_id "YER019W"; gene_name "ISC1"; +chrV SGD transcript 192797 194230 . + . transcript_id "YER019W_id001"; gene_id "YER019W"; gene_name "ISC1"; transcript_biotype "protein_coding"; +chrV SGD exon 192797 194230 . + 0 transcript_id "YER019W_id001"; gene_name "ISC1"; gene_id "YER019W"; +chrV SGD transcript 194273 194539 . - . transcript_id "YER019C-A_id004"; gene_id "YER019C-A"; gene_name "SBH2"; transcript_biotype "protein_coding"; +chrV SGD exon 194273 194539 . - 0 transcript_id "YER019C-A_id004"; gene_name "SBH2"; gene_id "YER019C-A"; +chrV SGD gene 195040 197181 . + . gene_id "YER020W"; gene_biotype "protein_coding"; +chrV SGD transcript 195040 197181 . + . transcript_id "YER020W_id001"; gene_id "YER020W"; gene_name "GPA2"; transcript_biotype "protein_coding"; +chrV SGD exon 195040 197181 . + . transcript_id "YER020W_id001"; gene_id "YER020W"; gene_name "GPA2"; +chrV SGD transcript 195168 196517 . + . transcript_id "YER020W_id002"; gene_id "YER020W"; gene_name "GPA2"; transcript_biotype "protein_coding"; +chrV SGD exon 195168 196517 . + 0 transcript_id "YER020W_id002"; gene_name "GPA2"; gene_id "YER020W"; +chrV SGD gene 196886 198650 . + . gene_id "YER021W"; gene_biotype "protein_coding"; +chrV SGD transcript 196886 198650 . + . transcript_id "YER021W_id003"; gene_id "YER021W"; gene_name "RPN3"; transcript_biotype "protein_coding"; +chrV SGD exon 196886 198650 . + . transcript_id "YER021W_id003"; gene_id "YER021W"; gene_name "RPN3"; +chrV SGD transcript 196948 198519 . + . transcript_id "YER021W_id001"; gene_id "YER021W"; gene_name "RPN3"; transcript_biotype "protein_coding"; +chrV SGD exon 196948 198519 . + 0 transcript_id "YER021W_id001"; gene_name "RPN3"; gene_id "YER021W"; +chrV SGD gene 198776 200974 . + . gene_id "YER022W"; gene_biotype "protein_coding"; +chrV SGD transcript 198776 200974 . + . transcript_id "YER022W_id002"; gene_id "YER022W"; gene_name "SRB4"; transcript_biotype "protein_coding"; +chrV SGD exon 198776 200974 . + . transcript_id "YER022W_id002"; gene_id "YER022W"; gene_name "SRB4"; +chrV SGD transcript 198812 200875 . + . transcript_id "YER022W_id001"; gene_id "YER022W"; gene_name "SRB4"; transcript_biotype "protein_coding"; +chrV SGD exon 198812 200875 . + 0 transcript_id "YER022W_id001"; gene_name "SRB4"; gene_id "YER022W"; +chrV SGD gene 200997 202153 . + . gene_id "YER023W"; gene_biotype "protein_coding"; +chrV SGD transcript 200997 202153 . + . transcript_id "YER023W_id002"; gene_id "YER023W"; gene_name "PRO3"; transcript_biotype "protein_coding"; +chrV SGD exon 200997 202153 . + . transcript_id "YER023W_id002"; gene_id "YER023W"; gene_name "PRO3"; +chrV SGD transcript 201076 201936 . + . transcript_id "YER023W_id001"; gene_id "YER023W"; gene_name "PRO3"; transcript_biotype "protein_coding"; +chrV SGD exon 201076 201936 . + 0 transcript_id "YER023W_id001"; gene_name "PRO3"; gene_id "YER023W"; +chrV SGD gene 201522 201734 . - . gene_id "YER023C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 201522 201734 . - . transcript_id "YER023C-A_mRNA"; gene_id "YER023C-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 201522 201734 . - 0 transcript_id "YER023C-A_mRNA"; gene_id "YER023C-A"; +chrV SGD gene 202192 204963 . + . gene_id "YER024W"; gene_biotype "protein_coding"; +chrV SGD transcript 202192 204963 . + . transcript_id "YER024W_mRNA"; gene_id "YER024W"; gene_name "YAT2"; transcript_biotype "protein_coding"; +chrV SGD CDS 202192 204963 . + 0 transcript_id "YER024W_mRNA"; gene_name "YAT2"; gene_id "YER024W"; +chrV SGD gene 205193 207132 . + . gene_id "YER025W"; gene_biotype "protein_coding"; +chrV SGD transcript 205193 207132 . + . transcript_id "YER025W_id002"; gene_id "YER025W"; gene_name "GCD11"; transcript_biotype "protein_coding"; +chrV SGD exon 205193 207132 . + . transcript_id "YER025W_id002"; gene_id "YER025W"; gene_name "GCD11"; +chrV SGD transcript 205251 206834 . + . transcript_id "YER025W_id001"; gene_id "YER025W"; gene_name "GCD11"; transcript_biotype "protein_coding"; +chrV SGD exon 205251 206834 . + 0 transcript_id "YER025W_id001"; gene_name "GCD11"; gene_id "YER025W"; +chrV SGD gene 207357 207428 . + . gene_id "YNCE0013W"; gene_biotype "ncRNA"; +chrV SGD transcript 207357 207428 . + . transcript_id "YNCE0013W_tRNA"; gene_id "YNCE0013W"; transcript_biotype "ncRNA"; +chrV SGD exon 207357 207428 . + . transcript_id "YNCE0013W_tRNA"; gene_id "YNCE0013W"; +chrV SGD gene 207644 208474 . - . gene_id "YER026C"; gene_biotype "protein_coding"; +chrV SGD transcript 207644 208474 . - . transcript_id "YER026C_id001"; gene_id "YER026C"; gene_name "CHO1"; transcript_biotype "protein_coding"; +chrV SGD exon 207644 208474 . - 0 transcript_id "YER026C_id001"; gene_name "CHO1"; gene_id "YER026C"; +chrV SGD gene 208683 210308 . - . gene_id "YER027C"; gene_biotype "protein_coding"; +chrV SGD transcript 208683 210308 . - . transcript_id "YER027C_id002"; gene_id "YER027C"; gene_name "GAL83"; transcript_biotype "protein_coding"; +chrV SGD exon 208683 210308 . - . transcript_id "YER027C_id002"; gene_id "YER027C"; gene_name "GAL83"; +chrV SGD transcript 208979 210232 . - . transcript_id "YER027C_id001"; gene_id "YER027C"; gene_name "GAL83"; transcript_biotype "protein_coding"; +chrV SGD exon 208979 210232 . - 0 transcript_id "YER027C_id001"; gene_name "GAL83"; gene_id "YER027C"; +chrV SGD gene 210692 211876 . - . gene_id "YER028C"; gene_biotype "protein_coding"; +chrV SGD transcript 210692 211876 . - . transcript_id "YER028C_id001"; gene_id "YER028C"; gene_name "MIG3"; transcript_biotype "protein_coding"; +chrV SGD exon 210692 211876 . - 0 transcript_id "YER028C_id001"; gene_name "MIG3"; gene_id "YER028C"; +chrV SGD gene 212475 213481 . - . gene_id "YER029C"; gene_biotype "protein_coding"; +chrV SGD transcript 212475 213481 . - . transcript_id "YER029C_id001"; gene_id "YER029C"; gene_name "SMB1"; transcript_biotype "protein_coding"; +chrV SGD exon 212475 213481 . - . transcript_id "YER029C_id001"; gene_id "YER029C"; gene_name "SMB1"; +chrV SGD transcript 212587 213177 . - . transcript_id "YER029C_id002"; gene_id "YER029C"; gene_name "SMB1"; transcript_biotype "protein_coding"; +chrV SGD exon 212587 213177 . - 0 transcript_id "YER029C_id002"; gene_name "SMB1"; gene_id "YER029C"; +chrV SGD gene 213349 214098 . + . gene_id "YER030W"; gene_biotype "protein_coding"; +chrV SGD transcript 213349 214098 . + . transcript_id "YER030W_id005"; gene_id "YER030W"; gene_name "CHZ1"; transcript_biotype "protein_coding"; +chrV SGD exon 213349 214098 . + . transcript_id "YER030W_id005"; gene_id "YER030W"; gene_name "CHZ1"; +chrV SGD transcript 213437 213898 . + . transcript_id "YER030W_id001"; gene_id "YER030W"; gene_name "CHZ1"; transcript_biotype "protein_coding"; +chrV SGD exon 213437 213898 . + 0 transcript_id "YER030W_id001"; gene_name "CHZ1"; gene_id "YER030W"; +chrV SGD gene 213769 214782 . - . gene_id "YER031C"; gene_biotype "protein_coding"; +chrV SGD transcript 213769 214782 . - . transcript_id "YER031C_id002"; gene_id "YER031C"; gene_name "YPT31"; transcript_biotype "protein_coding"; +chrV SGD exon 213769 214782 . - . transcript_id "YER031C_id002"; gene_id "YER031C"; gene_name "YPT31"; +chrV SGD transcript 214076 214747 . - . transcript_id "YER031C_id001"; gene_id "YER031C"; gene_name "YPT31"; transcript_biotype "protein_coding"; +chrV SGD exon 214076 214747 . - 0 transcript_id "YER031C_id001"; gene_name "YPT31"; gene_id "YER031C"; +chrV SGD gene 214963 217951 . + . gene_id "YER032W"; gene_biotype "protein_coding"; +chrV SGD transcript 214963 217951 . + . transcript_id "YER032W_id001"; gene_id "YER032W"; gene_name "FIR1"; transcript_biotype "protein_coding"; +chrV SGD exon 214963 217951 . + . transcript_id "YER032W_id001"; gene_id "YER032W"; gene_name "FIR1"; +chrV SGD transcript 215063 217693 . + . transcript_id "YER032W_id004"; gene_id "YER032W"; gene_name "FIR1"; transcript_biotype "protein_coding"; +chrV SGD exon 215063 217693 . + 0 transcript_id "YER032W_id004"; gene_name "FIR1"; gene_id "YER032W"; +chrV SGD gene 218057 221287 . - . gene_id "YER033C"; gene_biotype "protein_coding"; +chrV SGD transcript 218057 221287 . - . transcript_id "YER033C_mRNA"; gene_id "YER033C"; gene_name "ZRG8"; transcript_biotype "protein_coding"; +chrV SGD CDS 218057 221287 . - 0 transcript_id "YER033C_mRNA"; gene_name "ZRG8"; gene_id "YER033C"; +chrV SGD gene 221807 222744 . + . gene_id "YER034W"; gene_biotype "protein_coding"; +chrV SGD transcript 221807 222744 . + . transcript_id "YER034W_id001"; gene_id "YER034W"; transcript_biotype "protein_coding"; +chrV SGD exon 221807 222744 . + . transcript_id "YER034W_id001"; gene_id "YER034W"; +chrV SGD transcript 221846 222403 . + . transcript_id "YER034W_id002"; gene_id "YER034W"; transcript_biotype "protein_coding"; +chrV SGD exon 221846 222403 . + 0 transcript_id "YER034W_id002"; gene_id "YER034W"; +chrV SGD gene 222324 223217 . + . gene_id "YER035W"; gene_biotype "protein_coding"; +chrV SGD transcript 222324 223217 . + . transcript_id "YER035W_id004"; gene_id "YER035W"; gene_name "EDC2"; transcript_biotype "protein_coding"; +chrV SGD exon 222324 223217 . + . transcript_id "YER035W_id004"; gene_id "YER035W"; gene_name "EDC2"; +chrV SGD transcript 222639 223076 . + . transcript_id "YER035W_id001"; gene_id "YER035W"; gene_name "EDC2"; transcript_biotype "protein_coding"; +chrV SGD exon 222639 223076 . + 0 transcript_id "YER035W_id001"; gene_name "EDC2"; gene_id "YER035W"; +chrV SGD gene 223237 225236 . - . gene_id "YER036C"; gene_biotype "protein_coding"; +chrV SGD transcript 223237 225236 . - . transcript_id "YER036C_id009"; gene_id "YER036C"; gene_name "ARB1"; transcript_biotype "protein_coding"; +chrV SGD exon 223237 225236 . - . transcript_id "YER036C_id009"; gene_id "YER036C"; gene_name "ARB1"; +chrV SGD transcript 223367 225199 . - . transcript_id "YER036C_id001"; gene_id "YER036C"; gene_name "ARB1"; transcript_biotype "protein_coding"; +chrV SGD exon 223367 225199 . - 0 transcript_id "YER036C_id001"; gene_name "ARB1"; gene_id "YER036C"; +chrV SGD gene 225866 227074 . + . gene_id "YER037W"; gene_biotype "protein_coding"; +chrV SGD transcript 225866 227074 . + . transcript_id "YER037W_id006"; gene_id "YER037W"; gene_name "PHM8"; transcript_biotype "protein_coding"; +chrV SGD exon 225866 227074 . + . transcript_id "YER037W_id006"; gene_id "YER037W"; gene_name "PHM8"; +chrV SGD transcript 225889 226854 . + . transcript_id "YER037W_id001"; gene_id "YER037W"; gene_name "PHM8"; transcript_biotype "protein_coding"; +chrV SGD exon 225889 226854 . + 0 transcript_id "YER037W_id001"; gene_name "PHM8"; gene_id "YER037W"; +chrV SGD gene 226056 228262 . - . gene_id "YER038C"; gene_biotype "protein_coding"; +chrV SGD transcript 226056 228262 . - . transcript_id "YER038C_id001"; gene_id "YER038C"; gene_name "KRE29"; transcript_biotype "protein_coding"; +chrV SGD exon 226056 228262 . - . transcript_id "YER038C_id001"; gene_id "YER038C"; gene_name "KRE29"; +chrV SGD transcript 226858 228252 . - . transcript_id "YER038C_id003"; gene_id "YER038C"; gene_name "KRE29"; transcript_biotype "protein_coding"; +chrV SGD exon 226858 228252 . - 0 transcript_id "YER038C_id003"; gene_name "KRE29"; gene_id "YER038C"; +chrV SGD gene 228360 229450 . - . gene_id "YER039C"; gene_biotype "protein_coding"; +chrV SGD transcript 228360 229450 . - . transcript_id "YER039C_id001"; gene_id "YER039C"; gene_name "HVG1"; transcript_biotype "protein_coding"; +chrV SGD exon 228360 229450 . - . transcript_id "YER039C_id001"; gene_id "YER039C"; gene_name "HVG1"; +chrV SGD gene 228379 229572 . + . gene_id "YER038W-A"; gene_biotype "protein_coding"; +chrV SGD transcript 228379 229572 . + . transcript_id "YER038W-A_id003"; gene_id "YER038W-A"; gene_name "FMP49"; transcript_biotype "protein_coding"; +chrV SGD exon 228379 229572 . + . transcript_id "YER038W-A_id003"; gene_id "YER038W-A"; gene_name "FMP49"; +chrV SGD transcript 228451 228831 . + . transcript_id "YER038W-A_id001"; gene_id "YER038W-A"; gene_name "FMP49"; transcript_biotype "protein_coding"; +chrV SGD exon 228451 228831 . + 0 transcript_id "YER038W-A_id001"; gene_name "FMP49"; gene_id "YER038W-A"; +chrV SGD transcript 228456 229205 . - . transcript_id "YER039C_id003"; gene_id "YER039C"; gene_name "HVG1"; transcript_biotype "protein_coding"; +chrV SGD exon 228456 229205 . - 0 transcript_id "YER039C_id003"; gene_name "HVG1"; gene_id "YER039C"; +chrV SGD gene 229263 229481 . - . gene_id "YER039C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 229263 229481 . - . transcript_id "YER039C-A_id001"; gene_id "YER039C-A"; transcript_biotype "protein_coding"; +chrV SGD exon 229263 229481 . - 0 transcript_id "YER039C-A_id001"; gene_id "YER039C-A"; +chrV SGD gene 229710 232250 . + . gene_id "YER040W"; gene_biotype "protein_coding"; +chrV SGD transcript 229710 232250 . + . transcript_id "YER040W_id003"; gene_id "YER040W"; gene_name "GLN3"; transcript_biotype "protein_coding"; +chrV SGD exon 229710 232250 . + . transcript_id "YER040W_id003"; gene_id "YER040W"; gene_name "GLN3"; +chrV SGD transcript 229795 231987 . + . transcript_id "YER040W_id001"; gene_id "YER040W"; gene_name "GLN3"; transcript_biotype "protein_coding"; +chrV SGD exon 229795 231987 . + 0 transcript_id "YER040W_id001"; gene_name "GLN3"; gene_id "YER040W"; +chrV SGD gene 232375 234905 . + . gene_id "YER041W"; gene_biotype "protein_coding"; +chrV SGD transcript 232375 234905 . + . transcript_id "YER041W_id002"; gene_id "YER041W"; gene_name "YEN1"; transcript_biotype "protein_coding"; +chrV SGD exon 232375 234905 . + . transcript_id "YER041W_id002"; gene_id "YER041W"; gene_name "YEN1"; +chrV SGD transcript 232461 234740 . + . transcript_id "YER041W_id001"; gene_id "YER041W"; gene_name "YEN1"; transcript_biotype "protein_coding"; +chrV SGD exon 232461 234740 . + 0 transcript_id "YER041W_id001"; gene_name "YEN1"; gene_id "YER041W"; +chrV SGD gene 234841 235703 . + . gene_id "YER042W"; gene_biotype "protein_coding"; +chrV SGD transcript 234841 235703 . + . transcript_id "YER042W_id001"; gene_id "YER042W"; gene_name "MXR1"; transcript_biotype "protein_coding"; +chrV SGD exon 234841 235703 . + . transcript_id "YER042W_id001"; gene_id "YER042W"; gene_name "MXR1"; +chrV SGD transcript 234937 235491 . + . transcript_id "YER042W_id002"; gene_id "YER042W"; gene_name "MXR1"; transcript_biotype "protein_coding"; +chrV SGD exon 234937 235491 . + 0 transcript_id "YER042W_id002"; gene_name "MXR1"; gene_id "YER042W"; +chrV SGD gene 235535 237221 . - . gene_id "YER043C"; gene_biotype "protein_coding"; +chrV SGD transcript 235535 237221 . - . transcript_id "YER043C_id001"; gene_id "YER043C"; gene_name "SAH1"; transcript_biotype "protein_coding"; +chrV SGD exon 235535 237221 . - . transcript_id "YER043C_id001"; gene_id "YER043C"; gene_name "SAH1"; +chrV SGD transcript 235770 237119 . - . transcript_id "YER043C_id002"; gene_id "YER043C"; gene_name "SAH1"; transcript_biotype "protein_coding"; +chrV SGD exon 235770 237119 . - 0 transcript_id "YER043C_id002"; gene_name "SAH1"; gene_id "YER043C"; +chrV SGD gene 237439 238423 . - . gene_id "YER044C"; gene_biotype "protein_coding"; +chrV SGD transcript 237439 238423 . - . transcript_id "YER044C_id003"; gene_id "YER044C"; gene_name "ERG28"; transcript_biotype "protein_coding"; +chrV SGD exon 237439 238423 . - . transcript_id "YER044C_id003"; gene_id "YER044C"; gene_name "ERG28"; +chrV SGD transcript 237570 238016 . - . transcript_id "YER044C_id001"; gene_id "YER044C"; gene_name "ERG28"; transcript_biotype "protein_coding"; +chrV SGD exon 237570 238016 . - 0 transcript_id "YER044C_id001"; gene_name "ERG28"; gene_id "YER044C"; +chrV SGD gene 238460 239774 . - . gene_id "YER044C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 238460 239774 . - . transcript_id "YER044C-A_mRNA"; gene_id "YER044C-A"; gene_name "MEI4"; transcript_biotype "protein_coding"; +chrV SGD CDS 238460 239623 . - 0 transcript_id "YER044C-A_mRNA"; gene_name "MEI4"; gene_id "YER044C-A"; +chrV SGD CDS 239712 239774 . - 0 transcript_id "YER044C-A_mRNA"; gene_name "MEI4"; gene_id "YER044C-A"; +chrV SGD gene 239914 241801 . - . gene_id "YER045C"; gene_biotype "protein_coding"; +chrV SGD transcript 239914 241801 . - . transcript_id "YER045C_id001"; gene_id "YER045C"; gene_name "ACA1"; transcript_biotype "protein_coding"; +chrV SGD exon 239914 241801 . - . transcript_id "YER045C_id001"; gene_id "YER045C"; gene_name "ACA1"; +chrV SGD transcript 240032 241501 . - . transcript_id "YER045C_id002"; gene_id "YER045C"; gene_name "ACA1"; transcript_biotype "protein_coding"; +chrV SGD exon 240032 241501 . - 0 transcript_id "YER045C_id002"; gene_name "ACA1"; gene_id "YER045C"; +chrV SGD gene 242514 243707 . + . gene_id "YER046W"; gene_biotype "protein_coding"; +chrV SGD transcript 242514 243707 . + . transcript_id "YER046W_id001"; gene_id "YER046W"; gene_name "SPO73"; transcript_biotype "protein_coding"; +chrV SGD exon 242514 243707 . + . transcript_id "YER046W_id001"; gene_id "YER046W"; gene_name "SPO73"; +chrV SGD transcript 243180 243611 . + . transcript_id "YER046W_id003"; gene_id "YER046W"; gene_name "SPO73"; transcript_biotype "protein_coding"; +chrV SGD exon 243180 243611 . + 0 transcript_id "YER046W_id003"; gene_name "SPO73"; gene_id "YER046W"; +chrV SGD gene 243700 244029 . + . gene_id "YER046W-A"; gene_biotype "protein_coding"; +chrV SGD transcript 243700 244029 . + . transcript_id "YER046W-A_mRNA"; gene_id "YER046W-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 243700 244029 . + 0 transcript_id "YER046W-A_mRNA"; gene_id "YER046W-A"; +chrV SGD gene 243810 246503 . - . gene_id "YER047C"; gene_biotype "protein_coding"; +chrV SGD transcript 243810 246503 . - . transcript_id "YER047C_mRNA"; gene_id "YER047C"; gene_name "SAP1"; transcript_biotype "protein_coding"; +chrV SGD CDS 243810 246503 . - 0 transcript_id "YER047C_mRNA"; gene_name "SAP1"; gene_id "YER047C"; +chrV SGD gene 246581 248234 . - . gene_id "YER048C"; gene_biotype "protein_coding"; +chrV SGD transcript 246581 248234 . - . transcript_id "YER048C_id001"; gene_id "YER048C"; gene_name "CAJ1"; transcript_biotype "protein_coding"; +chrV SGD exon 246581 248234 . - . transcript_id "YER048C_id001"; gene_id "YER048C"; gene_name "CAJ1"; +chrV SGD transcript 246982 248157 . - . transcript_id "YER048C_id002"; gene_id "YER048C"; gene_name "CAJ1"; transcript_biotype "protein_coding"; +chrV SGD exon 246982 248157 . - 0 transcript_id "YER048C_id002"; gene_name "CAJ1"; gene_id "YER048C"; +chrV SGD gene 250286 250357 . + . gene_id "YNCE0014W"; gene_biotype "ncRNA"; +chrV SGD transcript 250286 250357 . + . transcript_id "YNCE0014W_tRNA"; gene_id "YNCE0014W"; transcript_biotype "ncRNA"; +chrV SGD exon 250286 250357 . + . transcript_id "YNCE0014W_tRNA"; gene_id "YNCE0014W"; +chrV SGD gene 250637 251721 . + . gene_id "YER048W-A"; gene_biotype "protein_coding"; +chrV SGD transcript 250637 251721 . + . transcript_id "YER048W-A_id001"; gene_id "YER048W-A"; gene_name "ISD11"; transcript_biotype "protein_coding"; +chrV SGD exon 250637 251721 . + . transcript_id "YER048W-A_id001"; gene_id "YER048W-A"; gene_name "ISD11"; +chrV SGD transcript 250718 251002 . + . transcript_id "YER048W-A_id002"; gene_id "YER048W-A"; gene_name "ISD11"; transcript_biotype "protein_coding"; +chrV SGD exon 250718 251002 . + 0 transcript_id "YER048W-A_id002"; gene_name "ISD11"; gene_id "YER048W-A"; +chrV SGD gene 251629 253754 . + . gene_id "YER049W"; gene_biotype "protein_coding"; +chrV SGD transcript 251629 253754 . + . transcript_id "YER049W_id003"; gene_id "YER049W"; gene_name "TPA1"; transcript_biotype "protein_coding"; +chrV SGD exon 251629 253754 . + . transcript_id "YER049W_id003"; gene_id "YER049W"; gene_name "TPA1"; +chrV SGD transcript 251728 253662 . + . transcript_id "YER049W_id001"; gene_id "YER049W"; gene_name "TPA1"; transcript_biotype "protein_coding"; +chrV SGD exon 251728 253662 . + 0 transcript_id "YER049W_id001"; gene_name "TPA1"; gene_id "YER049W"; +chrV SGD gene 253654 254444 . - . gene_id "YER050C"; gene_biotype "protein_coding"; +chrV SGD transcript 253654 254444 . - . transcript_id "YER050C_id001"; gene_id "YER050C"; gene_name "RSM18"; transcript_biotype "protein_coding"; +chrV SGD exon 253654 254444 . - . transcript_id "YER050C_id001"; gene_id "YER050C"; gene_name "RSM18"; +chrV SGD transcript 253971 254387 . - . transcript_id "YER050C_id002"; gene_id "YER050C"; gene_name "RSM18"; transcript_biotype "protein_coding"; +chrV SGD exon 253971 254387 . - 0 transcript_id "YER050C_id002"; gene_name "RSM18"; gene_id "YER050C"; +chrV SGD gene 254656 256134 . + . gene_id "YER051W"; gene_biotype "protein_coding"; +chrV SGD transcript 254656 256134 . + . transcript_id "YER051W_id001"; gene_id "YER051W"; gene_name "JHD1"; transcript_biotype "protein_coding"; +chrV SGD exon 254656 256134 . + 0 transcript_id "YER051W_id001"; gene_name "JHD1"; gene_id "YER051W"; +chrV SGD gene 256214 258068 . - . gene_id "YER052C"; gene_biotype "protein_coding"; +chrV SGD transcript 256214 258068 . - . transcript_id "YER052C_id001"; gene_id "YER052C"; gene_name "HOM3"; transcript_biotype "protein_coding"; +chrV SGD exon 256214 258068 . - . transcript_id "YER052C_id001"; gene_id "YER052C"; gene_name "HOM3"; +chrV SGD transcript 256375 257958 . - . transcript_id "YER052C_id003"; gene_id "YER052C"; gene_name "HOM3"; transcript_biotype "protein_coding"; +chrV SGD exon 256375 257958 . - 0 transcript_id "YER052C_id003"; gene_name "HOM3"; gene_id "YER052C"; +chrV SGD gene 258594 260023 . - . gene_id "YER053C"; gene_biotype "protein_coding"; +chrV SGD transcript 258594 260023 . - . transcript_id "YER053C_id003"; gene_id "YER053C"; gene_name "PIC2"; transcript_biotype "protein_coding"; +chrV SGD exon 258594 260023 . - . transcript_id "YER053C_id003"; gene_id "YER053C"; gene_name "PIC2"; +chrV SGD transcript 258737 259639 . - . transcript_id "YER053C_id001"; gene_id "YER053C"; gene_name "PIC2"; transcript_biotype "protein_coding"; +chrV SGD exon 258737 259639 . - 0 transcript_id "YER053C_id001"; gene_name "PIC2"; gene_id "YER053C"; +chrV SGD gene 260560 261280 . - . gene_id "YER053C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 260560 261280 . - . transcript_id "YER053C-A_id001"; gene_id "YER053C-A"; transcript_biotype "protein_coding"; +chrV SGD exon 260560 261280 . - . transcript_id "YER053C-A_id001"; gene_id "YER053C-A"; +chrV SGD transcript 260933 261046 . - . transcript_id "YER053C-A_id002"; gene_id "YER053C-A"; transcript_biotype "protein_coding"; +chrV SGD exon 260933 261046 . - 0 transcript_id "YER053C-A_id002"; gene_id "YER053C-A"; +chrV SGD gene 262052 263698 . - . gene_id "YER054C"; gene_biotype "protein_coding"; +chrV SGD transcript 262052 263698 . - . transcript_id "YER054C_id001"; gene_id "YER054C"; gene_name "GIP2"; transcript_biotype "protein_coding"; +chrV SGD exon 262052 263698 . - 0 transcript_id "YER054C_id001"; gene_name "GIP2"; gene_id "YER054C"; +chrV SGD gene 263733 265844 . - . gene_id "YER055C"; gene_biotype "protein_coding"; +chrV SGD transcript 263733 265844 . - . transcript_id "YER055C_id001"; gene_id "YER055C"; gene_name "HIS1"; transcript_biotype "protein_coding"; +chrV SGD exon 263733 265844 . - . transcript_id "YER055C_id001"; gene_id "YER055C"; gene_name "HIS1"; +chrV SGD transcript 264892 265785 . - . transcript_id "YER055C_id004"; gene_id "YER055C"; gene_name "HIS1"; transcript_biotype "protein_coding"; +chrV SGD exon 264892 265785 . - 0 transcript_id "YER055C_id004"; gene_name "HIS1"; gene_id "YER055C"; +chrV SGD gene 264973 269343 . - . gene_id "YER056C"; gene_biotype "protein_coding"; +chrV SGD transcript 264973 269343 . - . transcript_id "YER056C_id001"; gene_id "YER056C"; gene_name "FCY2"; transcript_biotype "protein_coding"; +chrV SGD exon 264973 269343 . - . transcript_id "YER056C_id001"; gene_id "YER056C"; gene_name "FCY2"; +chrV SGD transcript 266512 268113 . - . transcript_id "YER056C_id002"; gene_id "YER056C"; gene_name "FCY2"; transcript_biotype "protein_coding"; +chrV SGD exon 266512 268113 . - 0 transcript_id "YER056C_id002"; gene_name "FCY2"; gene_id "YER056C"; +chrV SGD gene 269344 270757 . - . gene_id "YER056C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 269344 270757 . - . transcript_id "YER056C-A_id002"; gene_id "YER056C-A"; gene_name "RPL34A"; transcript_biotype "protein_coding"; +chrV SGD exon 269344 270757 . - . transcript_id "YER056C-A_id002"; gene_id "YER056C-A"; gene_name "RPL34A"; +chrV SGD transcript 269423 270185 . - . transcript_id "YER056C-A_id001"; gene_id "YER056C-A"; gene_name "RPL34A"; transcript_biotype "protein_coding"; +chrV SGD exon 269423 269751 . - 2 transcript_id "YER056C-A_id001"; gene_name "RPL34A"; gene_id "YER056C-A"; +chrV SGD exon 270149 270185 . - 0 transcript_id "YER056C-A_id001"; gene_name "RPL34A"; gene_id "YER056C-A"; +chrV SGD gene 270647 271538 . - . gene_id "YER057C"; gene_biotype "protein_coding"; +chrV SGD transcript 270647 271538 . - . transcript_id "YER057C_id001"; gene_id "YER057C"; gene_name "HMF1"; transcript_biotype "protein_coding"; +chrV SGD exon 270647 271538 . - . transcript_id "YER057C_id001"; gene_id "YER057C"; gene_name "HMF1"; +chrV SGD transcript 270737 271126 . - . transcript_id "YER057C_id002"; gene_id "YER057C"; gene_name "HMF1"; transcript_biotype "protein_coding"; +chrV SGD exon 270737 271126 . - 0 transcript_id "YER057C_id002"; gene_name "HMF1"; gene_id "YER057C"; +chrV SGD gene 271706 272239 . + . gene_id "YER058W"; gene_biotype "protein_coding"; +chrV SGD transcript 271706 272239 . + . transcript_id "YER058W_id003"; gene_id "YER058W"; gene_name "PET117"; transcript_biotype "protein_coding"; +chrV SGD exon 271706 272239 . + . transcript_id "YER058W_id003"; gene_id "YER058W"; gene_name "PET117"; +chrV SGD transcript 271768 272091 . + . transcript_id "YER058W_id001"; gene_id "YER058W"; gene_name "PET117"; transcript_biotype "protein_coding"; +chrV SGD exon 271768 272091 . + 0 transcript_id "YER058W_id001"; gene_name "PET117"; gene_id "YER058W"; +chrV SGD gene 272442 274466 . + . gene_id "YER059W"; gene_biotype "protein_coding"; +chrV SGD transcript 272442 274466 . + . transcript_id "YER059W_id001"; gene_id "YER059W"; gene_name "PCL6"; transcript_biotype "protein_coding"; +chrV SGD exon 272442 274466 . + . transcript_id "YER059W_id001"; gene_id "YER059W"; gene_name "PCL6"; +chrV SGD transcript 272624 273886 . + . transcript_id "YER059W_id002"; gene_id "YER059W"; gene_name "PCL6"; transcript_biotype "protein_coding"; +chrV SGD exon 272624 273886 . + 0 transcript_id "YER059W_id002"; gene_name "PCL6"; gene_id "YER059W"; +chrV SGD gene 274567 276153 . + . gene_id "YER060W"; gene_biotype "protein_coding"; +chrV SGD transcript 274567 276153 . + . transcript_id "YER060W_id001"; gene_id "YER060W"; gene_name "FCY21"; transcript_biotype "protein_coding"; +chrV SGD exon 274567 276153 . + 0 transcript_id "YER060W_id001"; gene_name "FCY21"; gene_id "YER060W"; +chrV SGD gene 276572 278164 . + . gene_id "YER060W-A"; gene_biotype "protein_coding"; +chrV SGD transcript 276572 278164 . + . transcript_id "YER060W-A_id001"; gene_id "YER060W-A"; gene_name "FCY22"; transcript_biotype "protein_coding"; +chrV SGD exon 276572 278164 . + 0 transcript_id "YER060W-A_id001"; gene_name "FCY22"; gene_id "YER060W-A"; +chrV SGD gene 277831 279711 . - . gene_id "YER061C"; gene_biotype "protein_coding"; +chrV SGD transcript 277831 279711 . - . transcript_id "YER061C_id001"; gene_id "YER061C"; gene_name "CEM1"; transcript_biotype "protein_coding"; +chrV SGD exon 277831 279711 . - . transcript_id "YER061C_id001"; gene_id "YER061C"; gene_name "CEM1"; +chrV SGD transcript 278298 279626 . - . transcript_id "YER061C_id002"; gene_id "YER061C"; gene_name "CEM1"; transcript_biotype "protein_coding"; +chrV SGD exon 278298 279626 . - 0 transcript_id "YER061C_id002"; gene_name "CEM1"; gene_id "YER061C"; +chrV SGD gene 279692 280839 . - . gene_id "YER062C"; gene_biotype "protein_coding"; +chrV SGD transcript 279692 280839 . - . transcript_id "YER062C_id001"; gene_id "YER062C"; gene_name "GPP2"; transcript_biotype "protein_coding"; +chrV SGD exon 279692 280839 . - . transcript_id "YER062C_id001"; gene_id "YER062C"; gene_name "GPP2"; +chrV SGD transcript 279930 280682 . - . transcript_id "YER062C_id003"; gene_id "YER062C"; gene_name "GPP2"; transcript_biotype "protein_coding"; +chrV SGD exon 279930 280682 . - 0 transcript_id "YER062C_id003"; gene_name "GPP2"; gene_id "YER062C"; +chrV SGD gene 281575 284306 . - . gene_id "YER064C"; gene_biotype "protein_coding"; +chrV SGD transcript 281575 284306 . - . transcript_id "YER064C_id001"; gene_id "YER064C"; gene_name "VHR2"; transcript_biotype "protein_coding"; +chrV SGD exon 281575 284306 . - . transcript_id "YER064C_id001"; gene_id "YER064C"; gene_name "VHR2"; +chrV SGD gene 281587 282591 . + . gene_id "YER063W"; gene_biotype "protein_coding"; +chrV SGD transcript 281587 282591 . + . transcript_id "YER063W_id002"; gene_id "YER063W"; gene_name "THO1"; transcript_biotype "protein_coding"; +chrV SGD exon 281587 282591 . + . transcript_id "YER063W_id002"; gene_id "YER063W"; gene_name "THO1"; +chrV SGD transcript 281710 282366 . + . transcript_id "YER063W_id001"; gene_id "YER063W"; gene_name "THO1"; transcript_biotype "protein_coding"; +chrV SGD exon 281710 282366 . + 0 transcript_id "YER063W_id001"; gene_name "THO1"; gene_id "YER063W"; +chrV SGD transcript 282705 284222 . - . transcript_id "YER064C_id002"; gene_id "YER064C"; gene_name "VHR2"; transcript_biotype "protein_coding"; +chrV SGD exon 282705 284222 . - 0 transcript_id "YER064C_id002"; gene_name "VHR2"; gene_id "YER064C"; +chrV SGD gene 285114 287255 . - . gene_id "YER065C"; gene_biotype "protein_coding"; +chrV SGD transcript 285114 287255 . - . transcript_id "YER065C_id001"; gene_id "YER065C"; gene_name "ICL1"; transcript_biotype "protein_coding"; +chrV SGD exon 285114 287255 . - . transcript_id "YER065C_id001"; gene_id "YER065C"; gene_name "ICL1"; +chrV SGD transcript 285241 286914 . - . transcript_id "YER065C_id002"; gene_id "YER065C"; gene_name "ICL1"; transcript_biotype "protein_coding"; +chrV SGD exon 285241 286914 . - 0 transcript_id "YER065C_id002"; gene_name "ICL1"; gene_id "YER065C"; +chrV SGD gene 288443 288524 . - . gene_id "YNCE0015C"; gene_biotype "ncRNA"; +chrV SGD transcript 288443 288524 . - . transcript_id "YNCE0015C_tRNA"; gene_id "YNCE0015C"; gene_name "SUP19"; transcript_biotype "ncRNA"; +chrV SGD exon 288443 288524 . - . transcript_id "YNCE0015C_tRNA"; gene_name "SUP19"; gene_id "YNCE0015C"; +chrV SGD gene 289300 290938 . + . gene_id "YER066W"; gene_biotype "protein_coding"; +chrV SGD transcript 289300 290938 . + . transcript_id "YER066W_id002"; gene_id "YER066W"; gene_name "RRT13"; transcript_biotype "protein_coding"; +chrV SGD exon 289300 290938 . + . transcript_id "YER066W_id002"; gene_id "YER066W"; gene_name "RRT13"; +chrV SGD transcript 290242 290799 . + . transcript_id "YER066W_id001"; gene_id "YER066W"; gene_name "RRT13"; transcript_biotype "protein_coding"; +chrV SGD exon 290242 290799 . + 0 transcript_id "YER066W_id001"; gene_name "RRT13"; gene_id "YER066W"; +chrV SGD gene 291703 292203 . - . gene_id "YER066C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 291703 292203 . - . transcript_id "YER066C-A_mRNA"; gene_id "YER066C-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 291703 292203 . - 0 transcript_id "YER066C-A_mRNA"; gene_id "YER066C-A"; +chrV SGD gene 291787 292745 . + . gene_id "YER067W"; gene_biotype "protein_coding"; +chrV SGD transcript 291787 292745 . + . transcript_id "YER067W_id001"; gene_id "YER067W"; gene_name "RGI1"; transcript_biotype "protein_coding"; +chrV SGD exon 291787 292745 . + . transcript_id "YER067W_id001"; gene_id "YER067W"; gene_name "RGI1"; +chrV SGD transcript 292066 292551 . + . transcript_id "YER067W_id002"; gene_id "YER067W"; gene_name "RGI1"; transcript_biotype "protein_coding"; +chrV SGD exon 292066 292551 . + 0 transcript_id "YER067W_id002"; gene_name "RGI1"; gene_id "YER067W"; +chrV SGD gene 292240 292563 . - . gene_id "YER067C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 292240 292563 . - . transcript_id "YER067C-A_mRNA"; gene_id "YER067C-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 292240 292563 . - 0 transcript_id "YER067C-A_mRNA"; gene_id "YER067C-A"; +chrV SGD gene 292930 294924 . + . gene_id "YER068W"; gene_biotype "protein_coding"; +chrV SGD transcript 292930 294924 . + . transcript_id "YER068W_id002"; gene_id "YER068W"; gene_name "MOT2"; transcript_biotype "protein_coding"; +chrV SGD exon 292930 294924 . + . transcript_id "YER068W_id002"; gene_id "YER068W"; gene_name "MOT2"; +chrV SGD transcript 293050 294813 . + . transcript_id "YER068W_id001"; gene_id "YER068W"; gene_name "MOT2"; transcript_biotype "protein_coding"; +chrV SGD exon 293050 294813 . + 0 transcript_id "YER068W_id001"; gene_name "MOT2"; gene_id "YER068W"; +chrV SGD gene 295301 295732 . - . gene_id "YER068C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 295301 295732 . - . transcript_id "YER068C-A_mRNA"; gene_id "YER068C-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 295301 295732 . - 0 transcript_id "YER068C-A_mRNA"; gene_id "YER068C-A"; +chrV SGD gene 295335 298162 . + . gene_id "YER069W"; gene_biotype "protein_coding"; +chrV SGD transcript 295335 298162 . + . transcript_id "YER069W_id001"; gene_id "YER069W"; gene_name "ARG56"; transcript_biotype "protein_coding"; +chrV SGD exon 295335 298162 . + . transcript_id "YER069W_id001"; gene_id "YER069W"; gene_name "ARG56"; +chrV SGD transcript 295410 298001 . + . transcript_id "YER069W_id012"; gene_id "YER069W"; gene_name "ARG56"; transcript_biotype "protein_coding"; +chrV SGD exon 295410 298001 . + 0 transcript_id "YER069W_id012"; gene_name "ARG56"; gene_id "YER069W"; +chrV SGD gene 298872 301822 . + . gene_id "YER070W"; gene_biotype "protein_coding"; +chrV SGD transcript 298872 301822 . + . transcript_id "YER070W_id002"; gene_id "YER070W"; gene_name "RNR1"; transcript_biotype "protein_coding"; +chrV SGD exon 298872 301822 . + . transcript_id "YER070W_id002"; gene_id "YER070W"; gene_name "RNR1"; +chrV SGD transcript 298950 301616 . + . transcript_id "YER070W_id001"; gene_id "YER070W"; gene_name "RNR1"; transcript_biotype "protein_coding"; +chrV SGD exon 298950 301616 . + 0 transcript_id "YER070W_id001"; gene_name "RNR1"; gene_id "YER070W"; +chrV SGD gene 301703 302487 . - . gene_id "YER071C"; gene_biotype "protein_coding"; +chrV SGD transcript 301703 302487 . - . transcript_id "YER071C_id001"; gene_id "YER071C"; gene_name "TDA2"; transcript_biotype "protein_coding"; +chrV SGD exon 301703 302487 . - . transcript_id "YER071C_id001"; gene_id "YER071C"; gene_name "TDA2"; +chrV SGD transcript 301947 302327 . - . transcript_id "YER071C_id003"; gene_id "YER071C"; gene_name "TDA2"; transcript_biotype "protein_coding"; +chrV SGD exon 301947 302327 . - 0 transcript_id "YER071C_id003"; gene_name "TDA2"; gene_id "YER071C"; +chrV SGD gene 302569 303341 . + . gene_id "YER072W"; gene_biotype "protein_coding"; +chrV SGD transcript 302569 303341 . + . transcript_id "YER072W_id002"; gene_id "YER072W"; gene_name "VTC1"; transcript_biotype "protein_coding"; +chrV SGD exon 302569 303341 . + . transcript_id "YER072W_id002"; gene_id "YER072W"; gene_name "VTC1"; +chrV SGD transcript 302806 303195 . + . transcript_id "YER072W_id001"; gene_id "YER072W"; gene_name "VTC1"; transcript_biotype "protein_coding"; +chrV SGD exon 302806 303195 . + 0 transcript_id "YER072W_id001"; gene_name "VTC1"; gene_id "YER072W"; +chrV SGD gene 303339 306296 . + . gene_id "YER073W"; gene_biotype "protein_coding"; +chrV SGD transcript 303339 306296 . + . transcript_id "YER073W_id001"; gene_id "YER073W"; gene_name "ALD5"; transcript_biotype "protein_coding"; +chrV SGD exon 303339 306296 . + . transcript_id "YER073W_id001"; gene_id "YER073W"; gene_name "ALD5"; +chrV SGD transcript 304030 305592 . + . transcript_id "YER073W_id003"; gene_id "YER073W"; gene_name "ALD5"; transcript_biotype "protein_coding"; +chrV SGD exon 304030 305592 . + 0 transcript_id "YER073W_id003"; gene_name "ALD5"; gene_id "YER073W"; +chrV SGD gene 306246 307350 . + . gene_id "YER074W"; gene_biotype "protein_coding"; +chrV SGD transcript 306246 307350 . + . transcript_id "YER074W_id005"; gene_id "YER074W"; gene_name "RPS24A"; transcript_biotype "protein_coding"; +chrV SGD exon 306246 307350 . + . transcript_id "YER074W_id005"; gene_id "YER074W"; gene_name "RPS24A"; +chrV SGD transcript 306323 307196 . + . transcript_id "YER074W_id001"; gene_id "YER074W"; gene_name "RPS24A"; transcript_biotype "protein_coding"; +chrV SGD exon 306323 306325 . + 0 transcript_id "YER074W_id001"; gene_name "RPS24A"; gene_id "YER074W"; +chrV SGD exon 306792 307196 . + 0 transcript_id "YER074W_id001"; gene_name "RPS24A"; gene_id "YER074W"; +chrV SGD gene 307639 308520 . + . gene_id "YER074W-A"; gene_biotype "protein_coding"; +chrV SGD transcript 307639 308520 . + . transcript_id "YER074W-A_id002"; gene_id "YER074W-A"; gene_name "YOS1"; transcript_biotype "protein_coding"; +chrV SGD exon 307639 308520 . + . transcript_id "YER074W-A_id002"; gene_id "YER074W-A"; gene_name "YOS1"; +chrV SGD transcript 307653 308123 . + . transcript_id "YER074W-A_id001"; gene_id "YER074W-A"; gene_name "YOS1"; transcript_biotype "protein_coding"; +chrV SGD exon 307653 307746 . + 0 transcript_id "YER074W-A_id001"; gene_name "YOS1"; gene_id "YER074W-A"; +chrV SGD exon 307849 307956 . + 2 transcript_id "YER074W-A_id001"; gene_name "YOS1"; gene_id "YER074W-A"; +chrV SGD exon 308068 308123 . + 2 transcript_id "YER074W-A_id001"; gene_name "YOS1"; gene_id "YER074W-A"; +chrV SGD gene 308413 311199 . - . gene_id "YER075C"; gene_biotype "protein_coding"; +chrV SGD transcript 308413 311199 . - . transcript_id "YER075C_mRNA"; gene_id "YER075C"; gene_name "PTP3"; transcript_biotype "protein_coding"; +chrV SGD CDS 308413 311199 . - 0 transcript_id "YER075C_mRNA"; gene_name "PTP3"; gene_id "YER075C"; +chrV SGD gene 312023 312095 . - . gene_id "YNCE0016C"; gene_biotype "ncRNA"; +chrV SGD transcript 312023 312095 . - . transcript_id "YNCE0016C_tRNA"; gene_id "YNCE0016C"; transcript_biotype "ncRNA"; +chrV SGD exon 312023 312095 . - . transcript_id "YNCE0016C_tRNA"; gene_id "YNCE0016C"; +chrV SGD gene 312439 313918 . - . gene_id "YER076C"; gene_biotype "protein_coding"; +chrV SGD transcript 312439 313918 . - . transcript_id "YER076C_id006"; gene_id "YER076C"; transcript_biotype "protein_coding"; +chrV SGD exon 312439 313918 . - . transcript_id "YER076C_id006"; gene_id "YER076C"; +chrV SGD transcript 312590 313498 . - . transcript_id "YER076C_id001"; gene_id "YER076C"; transcript_biotype "protein_coding"; +chrV SGD exon 312590 313498 . - 0 transcript_id "YER076C_id001"; gene_id "YER076C"; +chrV SGD gene 313390 313737 . + . gene_id "YER076W-A"; gene_biotype "protein_coding"; +chrV SGD transcript 313390 313737 . + . transcript_id "YER076W-A_mRNA"; gene_id "YER076W-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 313390 313737 . + 0 transcript_id "YER076W-A_mRNA"; gene_id "YER076W-A"; +chrV SGD gene 314534 316600 . - . gene_id "YER077C"; gene_biotype "protein_coding"; +chrV SGD transcript 314534 316600 . - . transcript_id "YER077C_id001"; gene_id "YER077C"; gene_name "MRX1"; transcript_biotype "protein_coding"; +chrV SGD exon 314534 316600 . - 0 transcript_id "YER077C_id001"; gene_name "MRX1"; gene_id "YER077C"; +chrV SGD gene 316692 318552 . - . gene_id "YER078C"; gene_biotype "protein_coding"; +chrV SGD transcript 316692 318552 . - . transcript_id "YER078C_id002"; gene_id "YER078C"; gene_name "ICP55"; transcript_biotype "protein_coding"; +chrV SGD exon 316692 318552 . - . transcript_id "YER078C_id002"; gene_id "YER078C"; gene_name "ICP55"; +chrV SGD gene 316769 318863 . + . gene_id "YER078W-A"; gene_biotype "protein_coding"; +chrV SGD transcript 316769 318863 . + . transcript_id "YER078W-A_id001"; gene_id "YER078W-A"; transcript_biotype "protein_coding"; +chrV SGD exon 316769 318863 . + . transcript_id "YER078W-A_id001"; gene_id "YER078W-A"; +chrV SGD transcript 316807 318342 . - . transcript_id "YER078C_id001"; gene_id "YER078C"; gene_name "ICP55"; transcript_biotype "protein_coding"; +chrV SGD exon 316807 318342 . - 0 transcript_id "YER078C_id001"; gene_name "ICP55"; gene_id "YER078C"; +chrV SGD transcript 318646 318810 . + . transcript_id "YER078W-A_id002"; gene_id "YER078W-A"; transcript_biotype "protein_coding"; +chrV SGD exon 318646 318810 . + 0 transcript_id "YER078W-A_id002"; gene_id "YER078W-A"; +chrV SGD gene 318839 319828 . + . gene_id "YER079W"; gene_biotype "protein_coding"; +chrV SGD transcript 318839 319828 . + . transcript_id "YER079W_id003"; gene_id "YER079W"; transcript_biotype "protein_coding"; +chrV SGD exon 318839 319828 . + . transcript_id "YER079W_id003"; gene_id "YER079W"; +chrV SGD transcript 318920 319552 . + . transcript_id "YER079W_id001"; gene_id "YER079W"; transcript_biotype "protein_coding"; +chrV SGD exon 318920 319552 . + 0 transcript_id "YER079W_id001"; gene_id "YER079W"; +chrV SGD gene 319902 320240 . - . gene_id "YER079C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 319902 320240 . - . transcript_id "YER079C-A_mRNA"; gene_id "YER079C-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 319902 320240 . - 0 transcript_id "YER079C-A_mRNA"; gene_id "YER079C-A"; +chrV SGD gene 319918 321940 . + . gene_id "YER080W"; gene_biotype "protein_coding"; +chrV SGD transcript 319918 321940 . + . transcript_id "YER080W_id005"; gene_id "YER080W"; gene_name "AIM9"; transcript_biotype "protein_coding"; +chrV SGD exon 319918 321940 . + . transcript_id "YER080W_id005"; gene_id "YER080W"; gene_name "AIM9"; +chrV SGD transcript 319963 321846 . + . transcript_id "YER080W_id001"; gene_id "YER080W"; gene_name "AIM9"; transcript_biotype "protein_coding"; +chrV SGD exon 319963 321846 . + 0 transcript_id "YER080W_id001"; gene_name "AIM9"; gene_id "YER080W"; +chrV SGD gene 322212 322762 . + . gene_id "YNCE0017W"; gene_biotype "ncRNA"; +chrV SGD transcript 322212 322762 . + . transcript_id "YNCE0017W_ncRNA"; gene_id "YNCE0017W"; gene_name "SRG1"; transcript_biotype "ncRNA"; +chrV SGD exon 322212 322762 . + . transcript_id "YNCE0017W_ncRNA"; gene_name "SRG1"; gene_id "YNCE0017W"; +chrV SGD gene 322686 324095 . + . gene_id "YER081W"; gene_biotype "protein_coding"; +chrV SGD transcript 322686 324095 . + . transcript_id "YER081W_id001"; gene_id "YER081W"; gene_name "SER3"; transcript_biotype "protein_coding"; +chrV SGD exon 322686 324095 . + 0 transcript_id "YER081W_id001"; gene_name "SER3"; gene_id "YER081W"; +chrV SGD gene 323934 325995 . - . gene_id "YER082C"; gene_biotype "protein_coding"; +chrV SGD transcript 323934 325995 . - . transcript_id "YER082C_id002"; gene_id "YER082C"; gene_name "UTP7"; transcript_biotype "protein_coding"; +chrV SGD exon 323934 325995 . - . transcript_id "YER082C_id002"; gene_id "YER082C"; gene_name "UTP7"; +chrV SGD transcript 324272 325936 . - . transcript_id "YER082C_id001"; gene_id "YER082C"; gene_name "UTP7"; transcript_biotype "protein_coding"; +chrV SGD exon 324272 325936 . - 0 transcript_id "YER082C_id001"; gene_name "UTP7"; gene_id "YER082C"; +chrV SGD gene 325946 327064 . - . gene_id "YER083C"; gene_biotype "protein_coding"; +chrV SGD transcript 325946 327064 . - . transcript_id "YER083C_id005"; gene_id "YER083C"; gene_name "GET2"; transcript_biotype "protein_coding"; +chrV SGD exon 325946 327064 . - . transcript_id "YER083C_id005"; gene_id "YER083C"; gene_name "GET2"; +chrV SGD transcript 326174 327031 . - . transcript_id "YER083C_id001"; gene_id "YER083C"; gene_name "GET2"; transcript_biotype "protein_coding"; +chrV SGD exon 326174 327031 . - 0 transcript_id "YER083C_id001"; gene_name "GET2"; gene_id "YER083C"; +chrV SGD gene 327065 327451 . + . gene_id "YER084W"; gene_biotype "protein_coding"; +chrV SGD transcript 327065 327451 . + . transcript_id "YER084W_mRNA"; gene_id "YER084W"; transcript_biotype "protein_coding"; +chrV SGD CDS 327065 327451 . + 0 transcript_id "YER084W_mRNA"; gene_id "YER084W"; +chrV SGD gene 327475 328288 . - . gene_id "YER085C"; gene_biotype "protein_coding"; +chrV SGD transcript 327475 328288 . - . transcript_id "YER085C_id001"; gene_id "YER085C"; transcript_biotype "protein_coding"; +chrV SGD exon 327475 328288 . - . transcript_id "YER085C_id001"; gene_id "YER085C"; +chrV SGD gene 327598 328110 . + . gene_id "YER084W-A"; gene_biotype "protein_coding"; +chrV SGD transcript 327598 328110 . + . transcript_id "YER084W-A_mRNA"; gene_id "YER084W-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 327598 328110 . + 0 transcript_id "YER084W-A_mRNA"; gene_id "YER084W-A"; +chrV SGD transcript 327619 328140 . - . transcript_id "YER085C_id004"; gene_id "YER085C"; transcript_biotype "protein_coding"; +chrV SGD exon 327619 328140 . - 0 transcript_id "YER085C_id004"; gene_id "YER085C"; +chrV SGD gene 328332 330346 . + . gene_id "YER086W"; gene_biotype "protein_coding"; +chrV SGD transcript 328332 330346 . + . transcript_id "YER086W_id001"; gene_id "YER086W"; gene_name "ILV1"; transcript_biotype "protein_coding"; +chrV SGD exon 328332 330346 . + . transcript_id "YER086W_id001"; gene_id "YER086W"; gene_name "ILV1"; +chrV SGD transcript 328477 330207 . + . transcript_id "YER086W_id004"; gene_id "YER086W"; gene_name "ILV1"; transcript_biotype "protein_coding"; +chrV SGD exon 328477 330207 . + 0 transcript_id "YER086W_id004"; gene_name "ILV1"; gene_id "YER086W"; +chrV SGD gene 330512 332470 . + . gene_id "YER087W"; gene_biotype "protein_coding"; +chrV SGD transcript 330512 332470 . + . transcript_id "YER087W_id001"; gene_id "YER087W"; gene_name "AIM10"; transcript_biotype "protein_coding"; +chrV SGD exon 330512 332470 . + . transcript_id "YER087W_id001"; gene_id "YER087W"; gene_name "AIM10"; +chrV SGD transcript 330576 332306 . + . transcript_id "YER087W_id002"; gene_id "YER087W"; gene_name "AIM10"; transcript_biotype "protein_coding"; +chrV SGD exon 330576 332306 . + 0 transcript_id "YER087W_id002"; gene_name "AIM10"; gene_id "YER087W"; +chrV SGD gene 331817 332368 . - . gene_id "YER087C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 331817 332368 . - . transcript_id "YER087C-A_mRNA"; gene_id "YER087C-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 331817 332368 . - 0 transcript_id "YER087C-A_mRNA"; gene_id "YER087C-A"; +chrV SGD gene 332218 332873 . - . gene_id "YER087C-B"; gene_biotype "protein_coding"; +chrV SGD transcript 332218 332873 . - . transcript_id "YER087C-B_id002"; gene_id "YER087C-B"; gene_name "SBH1"; transcript_biotype "protein_coding"; +chrV SGD exon 332218 332873 . - . transcript_id "YER087C-B_id002"; gene_id "YER087C-B"; gene_name "SBH1"; +chrV SGD transcript 332582 332830 . - . transcript_id "YER087C-B_id001"; gene_id "YER087C-B"; gene_name "SBH1"; transcript_biotype "protein_coding"; +chrV SGD exon 332582 332830 . - 0 transcript_id "YER087C-B_id001"; gene_name "SBH1"; gene_id "YER087C-B"; +chrV SGD gene 333024 335458 . - . gene_id "YER088C"; gene_biotype "protein_coding"; +chrV SGD transcript 333024 335458 . - . transcript_id "YER088C_id001"; gene_id "YER088C"; gene_name "DOT6"; transcript_biotype "protein_coding"; +chrV SGD exon 333024 335458 . - . transcript_id "YER088C_id001"; gene_id "YER088C"; gene_name "DOT6"; +chrV SGD transcript 333176 335188 . - . transcript_id "YER088C_id002"; gene_id "YER088C"; gene_name "DOT6"; transcript_biotype "protein_coding"; +chrV SGD exon 333176 335188 . - 0 transcript_id "YER088C_id002"; gene_name "DOT6"; gene_id "YER088C"; +chrV SGD gene 335262 337294 . - . gene_id "YER088C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 335262 337294 . - . transcript_id "YER088C-A_id001"; gene_id "YER088C-A"; transcript_biotype "protein_coding"; +chrV SGD exon 335262 337294 . - . transcript_id "YER088C-A_id001"; gene_id "YER088C-A"; +chrV SGD transcript 335696 336019 . - . transcript_id "YER088C-A_id004"; gene_id "YER088C-A"; transcript_biotype "protein_coding"; +chrV SGD exon 335696 336019 . - 0 transcript_id "YER088C-A_id004"; gene_id "YER088C-A"; +chrV SGD gene 335862 337679 . - . gene_id "YER089C"; gene_biotype "protein_coding"; +chrV SGD transcript 335862 337679 . - . transcript_id "YER089C_id003"; gene_id "YER089C"; gene_name "PTC2"; transcript_biotype "protein_coding"; +chrV SGD exon 335862 337679 . - . transcript_id "YER089C_id003"; gene_id "YER089C"; gene_name "PTC2"; +chrV SGD gene 335927 336073 . + . gene_id "YER088W-B"; gene_biotype "protein_coding"; +chrV SGD transcript 335927 336073 . + . transcript_id "YER088W-B_id001"; gene_id "YER088W-B"; transcript_biotype "protein_coding"; +chrV SGD exon 335927 336073 . + 0 transcript_id "YER088W-B_id001"; gene_id "YER088W-B"; +chrV SGD transcript 335946 337340 . - . transcript_id "YER089C_id001"; gene_id "YER089C"; gene_name "PTC2"; transcript_biotype "protein_coding"; +chrV SGD exon 335946 337340 . - 0 transcript_id "YER089C_id001"; gene_name "PTC2"; gene_id "YER089C"; +chrV SGD gene 337911 339718 . + . gene_id "YER090W"; gene_biotype "protein_coding"; +chrV SGD transcript 337911 339718 . + . transcript_id "YER090W_id003"; gene_id "YER090W"; gene_name "TRP2"; transcript_biotype "protein_coding"; +chrV SGD exon 337911 339718 . + . transcript_id "YER090W_id003"; gene_id "YER090W"; gene_name "TRP2"; +chrV SGD transcript 337949 339472 . + . transcript_id "YER090W_id001"; gene_id "YER090W"; gene_name "TRP2"; transcript_biotype "protein_coding"; +chrV SGD exon 337949 339472 . + 0 transcript_id "YER090W_id001"; gene_name "TRP2"; gene_id "YER090W"; +chrV SGD gene 338322 338411 . - . gene_id "YER090C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 338322 338411 . - . transcript_id "YER090C-A_mRNA"; gene_id "YER090C-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 338322 338411 . - 0 transcript_id "YER090C-A_mRNA"; gene_id "YER090C-A"; +chrV SGD gene 339639 342381 . - . gene_id "YER091C"; gene_biotype "protein_coding"; +chrV SGD transcript 339639 342381 . - . transcript_id "YER091C_id002"; gene_id "YER091C"; gene_name "MET6"; transcript_biotype "protein_coding"; +chrV SGD exon 339639 342381 . - . transcript_id "YER091C_id002"; gene_id "YER091C"; gene_name "MET6"; +chrV SGD transcript 339864 342167 . - . transcript_id "YER091C_id001"; gene_id "YER091C"; gene_name "MET6"; transcript_biotype "protein_coding"; +chrV SGD exon 339864 342167 . - 0 transcript_id "YER091C_id001"; gene_name "MET6"; gene_id "YER091C"; +chrV SGD gene 342390 342611 . - . gene_id "YER091C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 342390 342611 . - . transcript_id "YER091C-A_mRNA"; gene_id "YER091C-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 342390 342611 . - 0 transcript_id "YER091C-A_mRNA"; gene_id "YER091C-A"; +chrV SGD gene 342846 343656 . + . gene_id "YER092W"; gene_biotype "protein_coding"; +chrV SGD transcript 342846 343656 . + . transcript_id "YER092W_id002"; gene_id "YER092W"; gene_name "IES5"; transcript_biotype "protein_coding"; +chrV SGD exon 342846 343656 . + . transcript_id "YER092W_id002"; gene_id "YER092W"; gene_name "IES5"; +chrV SGD transcript 342855 343232 . + . transcript_id "YER092W_id001"; gene_id "YER092W"; gene_name "IES5"; transcript_biotype "protein_coding"; +chrV SGD exon 342855 343232 . + 0 transcript_id "YER092W_id001"; gene_name "IES5"; gene_id "YER092W"; +chrV SGD gene 343320 347612 . - . gene_id "YER093C"; gene_biotype "protein_coding"; +chrV SGD transcript 343320 347612 . - . transcript_id "YER093C_mRNA"; gene_id "YER093C"; gene_name "TSC11"; transcript_biotype "protein_coding"; +chrV SGD CDS 343320 347612 . - 0 transcript_id "YER093C_mRNA"; gene_name "TSC11"; gene_id "YER093C"; +chrV SGD gene 347774 348423 . - . gene_id "YER093C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 347774 348423 . - . transcript_id "YER093C-A_id004"; gene_id "YER093C-A"; gene_name "AIM11"; transcript_biotype "protein_coding"; +chrV SGD exon 347774 348423 . - . transcript_id "YER093C-A_id004"; gene_id "YER093C-A"; gene_name "AIM11"; +chrV SGD transcript 347912 348400 . - . transcript_id "YER093C-A_id001"; gene_id "YER093C-A"; gene_name "AIM11"; transcript_biotype "protein_coding"; +chrV SGD exon 347912 348201 . - 2 transcript_id "YER093C-A_id001"; gene_name "AIM11"; gene_id "YER093C-A"; +chrV SGD exon 348277 348400 . - 0 transcript_id "YER093C-A_id001"; gene_name "AIM11"; gene_id "YER093C-A"; +chrV SGD gene 348575 349676 . - . gene_id "YER094C"; gene_biotype "protein_coding"; +chrV SGD transcript 348575 349676 . - . transcript_id "YER094C_id004"; gene_id "YER094C"; gene_name "PUP3"; transcript_biotype "protein_coding"; +chrV SGD exon 348575 349676 . - . transcript_id "YER094C_id004"; gene_id "YER094C"; gene_name "PUP3"; +chrV SGD transcript 348729 349346 . - . transcript_id "YER094C_id001"; gene_id "YER094C"; gene_name "PUP3"; transcript_biotype "protein_coding"; +chrV SGD exon 348729 349346 . - 0 transcript_id "YER094C_id001"; gene_name "PUP3"; gene_id "YER094C"; +chrV SGD gene 349913 351605 . + . gene_id "YER095W"; gene_biotype "protein_coding"; +chrV SGD transcript 349913 351605 . + . transcript_id "YER095W_id002"; gene_id "YER095W"; gene_name "RAD51"; transcript_biotype "protein_coding"; +chrV SGD exon 349913 351605 . + . transcript_id "YER095W_id002"; gene_id "YER095W"; gene_name "RAD51"; +chrV SGD transcript 349980 351182 . + . transcript_id "YER095W_id001"; gene_id "YER095W"; gene_name "RAD51"; transcript_biotype "protein_coding"; +chrV SGD exon 349980 351182 . + 0 transcript_id "YER095W_id001"; gene_name "RAD51"; gene_id "YER095W"; +chrV SGD gene 351534 353265 . + . gene_id "YER096W"; gene_biotype "protein_coding"; +chrV SGD transcript 351534 353265 . + . transcript_id "YER096W_id003"; gene_id "YER096W"; gene_name "SHC1"; transcript_biotype "protein_coding"; +chrV SGD exon 351534 353265 . + . transcript_id "YER096W_id003"; gene_id "YER096W"; gene_name "SHC1"; +chrV SGD transcript 351698 353236 . + . transcript_id "YER096W_id001"; gene_id "YER096W"; gene_name "SHC1"; transcript_biotype "protein_coding"; +chrV SGD exon 351698 353236 . + 0 transcript_id "YER096W_id001"; gene_name "SHC1"; gene_id "YER096W"; +chrV SGD gene 354934 355005 . + . gene_id "YNCE0018W"; gene_biotype "ncRNA"; +chrV SGD transcript 354934 355005 . + . transcript_id "YNCE0018W_tRNA"; gene_id "YNCE0018W"; transcript_biotype "ncRNA"; +chrV SGD exon 354934 355005 . + . transcript_id "YNCE0018W_tRNA"; gene_id "YNCE0018W"; +chrV SGD gene 355140 355469 . + . gene_id "YER097W"; gene_biotype "protein_coding"; +chrV SGD transcript 355140 355469 . + . transcript_id "YER097W_mRNA"; gene_id "YER097W"; transcript_biotype "protein_coding"; +chrV SGD CDS 355140 355469 . + 0 transcript_id "YER097W_mRNA"; gene_id "YER097W"; +chrV SGD gene 355283 357934 . + . gene_id "YER098W"; gene_biotype "protein_coding"; +chrV SGD transcript 355283 357934 . + . transcript_id "YER098W_id002"; gene_id "YER098W"; gene_name "UBP9"; transcript_biotype "protein_coding"; +chrV SGD exon 355283 357934 . + . transcript_id "YER098W_id002"; gene_id "YER098W"; gene_name "UBP9"; +chrV SGD transcript 355466 357730 . + . transcript_id "YER098W_id001"; gene_id "YER098W"; gene_name "UBP9"; transcript_biotype "protein_coding"; +chrV SGD exon 355466 357730 . + 0 transcript_id "YER098W_id001"; gene_name "UBP9"; gene_id "YER098W"; +chrV SGD gene 357212 359080 . - . gene_id "YER099C"; gene_biotype "protein_coding"; +chrV SGD transcript 357212 359080 . - . transcript_id "YER099C_id002"; gene_id "YER099C"; gene_name "PRS2"; transcript_biotype "protein_coding"; +chrV SGD exon 357212 359080 . - . transcript_id "YER099C_id002"; gene_id "YER099C"; gene_name "PRS2"; +chrV SGD transcript 358105 359061 . - . transcript_id "YER099C_id001"; gene_id "YER099C"; gene_name "PRS2"; transcript_biotype "protein_coding"; +chrV SGD exon 358105 359061 . - 0 transcript_id "YER099C_id001"; gene_name "PRS2"; gene_id "YER099C"; +chrV SGD gene 359276 360415 . + . gene_id "YER100W"; gene_biotype "protein_coding"; +chrV SGD transcript 359276 360415 . + . transcript_id "YER100W_id002"; gene_id "YER100W"; gene_name "UBC6"; transcript_biotype "protein_coding"; +chrV SGD exon 359276 360415 . + . transcript_id "YER100W_id002"; gene_id "YER100W"; gene_name "UBC6"; +chrV SGD transcript 359562 360314 . + . transcript_id "YER100W_id001"; gene_id "YER100W"; gene_name "UBC6"; transcript_biotype "protein_coding"; +chrV SGD exon 359562 360314 . + 0 transcript_id "YER100W_id001"; gene_name "UBC6"; gene_id "YER100W"; +chrV SGD gene 360322 361876 . - . gene_id "YER101C"; gene_biotype "protein_coding"; +chrV SGD transcript 360322 361876 . - . transcript_id "YER101C_id002"; gene_id "YER101C"; gene_name "AST2"; transcript_biotype "protein_coding"; +chrV SGD exon 360322 361876 . - . transcript_id "YER101C_id002"; gene_id "YER101C"; gene_name "AST2"; +chrV SGD transcript 360502 361794 . - . transcript_id "YER101C_id001"; gene_id "YER101C"; gene_name "AST2"; transcript_biotype "protein_coding"; +chrV SGD exon 360502 361794 . - 0 transcript_id "YER101C_id001"; gene_name "AST2"; gene_id "YER101C"; +chrV SGD gene 362714 364048 . + . gene_id "YER102W"; gene_biotype "protein_coding"; +chrV SGD transcript 362714 364048 . + . transcript_id "YER102W_id002"; gene_id "YER102W"; gene_name "RPS8B"; transcript_biotype "protein_coding"; +chrV SGD exon 362714 364048 . + . transcript_id "YER102W_id002"; gene_id "YER102W"; gene_name "RPS8B"; +chrV SGD transcript 362733 363702 . + . transcript_id "YER102W_id001"; gene_id "YER102W"; gene_name "RPS8B"; transcript_biotype "protein_coding"; +chrV SGD exon 362733 363092 . + . transcript_id "YER102W_id001"; gene_name "RPS8B"; gene_id "YER102W"; +chrV SGD exon 363100 363702 . + . transcript_id "YER102W_id001"; gene_name "RPS8B"; gene_id "YER102W"; +chrV SGD exon 363100 363702 . + 0 transcript_id "YER102W_id001"; gene_name "RPS8B"; gene_id "YER102W"; +chrV SGD gene 363853 366637 . + . gene_id "YER103W"; gene_biotype "protein_coding"; +chrV SGD transcript 363853 366637 . + . transcript_id "YER103W_id001"; gene_id "YER103W"; gene_name "SSA4"; transcript_biotype "protein_coding"; +chrV SGD exon 363853 366637 . + . transcript_id "YER103W_id001"; gene_id "YER103W"; gene_name "SSA4"; +chrV SGD transcript 364589 366517 . + . transcript_id "YER103W_id005"; gene_id "YER103W"; gene_name "SSA4"; transcript_biotype "protein_coding"; +chrV SGD exon 364589 366517 . + 0 transcript_id "YER103W_id005"; gene_name "SSA4"; gene_id "YER103W"; +chrV SGD gene 366784 368486 . + . gene_id "YER104W"; gene_biotype "protein_coding"; +chrV SGD transcript 366784 368486 . + . transcript_id "YER104W_id003"; gene_id "YER104W"; gene_name "RTT105"; transcript_biotype "protein_coding"; +chrV SGD exon 366784 368486 . + . transcript_id "YER104W_id003"; gene_id "YER104W"; gene_name "RTT105"; +chrV SGD transcript 366802 367428 . + . transcript_id "YER104W_id001"; gene_id "YER104W"; gene_name "RTT105"; transcript_biotype "protein_coding"; +chrV SGD exon 366802 367428 . + 0 transcript_id "YER104W_id001"; gene_name "RTT105"; gene_id "YER104W"; +chrV SGD gene 367593 372032 . - . gene_id "YER105C"; gene_biotype "protein_coding"; +chrV SGD transcript 367593 372032 . - . transcript_id "YER105C_id001"; gene_id "YER105C"; gene_name "NUP157"; transcript_biotype "protein_coding"; +chrV SGD exon 367593 372032 . - . transcript_id "YER105C_id001"; gene_id "YER105C"; gene_name "NUP157"; +chrV SGD transcript 367838 372013 . - . transcript_id "YER105C_id004"; gene_id "YER105C"; gene_name "NUP157"; transcript_biotype "protein_coding"; +chrV SGD exon 367838 372013 . - 0 transcript_id "YER105C_id004"; gene_name "NUP157"; gene_id "YER105C"; +chrV SGD gene 372326 373234 . + . gene_id "YER106W"; gene_biotype "protein_coding"; +chrV SGD transcript 372326 373234 . + . transcript_id "YER106W_mRNA"; gene_id "YER106W"; gene_name "MAM1"; transcript_biotype "protein_coding"; +chrV SGD CDS 372326 373234 . + 0 transcript_id "YER106W_mRNA"; gene_name "MAM1"; gene_id "YER106W"; +chrV SGD gene 373204 374732 . - . gene_id "YER107C"; gene_biotype "protein_coding"; +chrV SGD transcript 373204 374732 . - . transcript_id "YER107C_id001"; gene_id "YER107C"; gene_name "GLE2"; transcript_biotype "protein_coding"; +chrV SGD exon 373204 374732 . - . transcript_id "YER107C_id001"; gene_id "YER107C"; gene_name "GLE2"; +chrV SGD transcript 373448 374545 . - . transcript_id "YER107C_id002"; gene_id "YER107C"; gene_name "GLE2"; transcript_biotype "protein_coding"; +chrV SGD exon 373448 374545 . - 0 transcript_id "YER107C_id002"; gene_name "GLE2"; gene_id "YER107C"; +chrV SGD gene 374394 374714 . + . gene_id "YER107W-A"; gene_biotype "protein_coding"; +chrV SGD transcript 374394 374714 . + . transcript_id "YER107W-A_mRNA"; gene_id "YER107W-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 374394 374714 . + 0 transcript_id "YER107W-A_mRNA"; gene_id "YER107W-A"; +chrV SGD gene 378610 382244 . - . gene_id "YER110C"; gene_biotype "protein_coding"; +chrV SGD transcript 378610 382244 . - . transcript_id "YER110C_id003"; gene_id "YER110C"; gene_name "KAP123"; transcript_biotype "protein_coding"; +chrV SGD exon 378610 382244 . - . transcript_id "YER110C_id003"; gene_id "YER110C"; gene_name "KAP123"; +chrV SGD transcript 378762 382103 . - . transcript_id "YER110C_id001"; gene_id "YER110C"; gene_name "KAP123"; transcript_biotype "protein_coding"; +chrV SGD exon 378762 382103 . - 0 transcript_id "YER110C_id001"; gene_name "KAP123"; gene_id "YER110C"; +chrV SGD gene 382595 385876 . - . gene_id "YER111C"; gene_biotype "protein_coding"; +chrV SGD transcript 382595 385876 . - . transcript_id "YER111C_mRNA"; gene_id "YER111C"; gene_name "SWI4"; transcript_biotype "protein_coding"; +chrV SGD CDS 382595 385876 . - 0 transcript_id "YER111C_mRNA"; gene_name "SWI4"; gene_id "YER111C"; +chrV SGD gene 387131 387910 . + . gene_id "YER112W"; gene_biotype "protein_coding"; +chrV SGD transcript 387131 387910 . + . transcript_id "YER112W_id001"; gene_id "YER112W"; gene_name "LSM4"; transcript_biotype "protein_coding"; +chrV SGD exon 387131 387910 . + . transcript_id "YER112W_id001"; gene_id "YER112W"; gene_name "LSM4"; +chrV SGD transcript 387232 387795 . + . transcript_id "YER112W_id009"; gene_id "YER112W"; gene_name "LSM4"; transcript_biotype "protein_coding"; +chrV SGD exon 387232 387795 . + 0 transcript_id "YER112W_id009"; gene_name "LSM4"; gene_id "YER112W"; +chrV SGD gene 387794 390207 . - . gene_id "YER113C"; gene_biotype "protein_coding"; +chrV SGD transcript 387794 390207 . - . transcript_id "YER113C_id003"; gene_id "YER113C"; gene_name "TMN3"; transcript_biotype "protein_coding"; +chrV SGD exon 387794 390207 . - . transcript_id "YER113C_id003"; gene_id "YER113C"; gene_name "TMN3"; +chrV SGD transcript 387932 390052 . - . transcript_id "YER113C_id001"; gene_id "YER113C"; gene_name "TMN3"; transcript_biotype "protein_coding"; +chrV SGD exon 387932 390052 . - 0 transcript_id "YER113C_id001"; gene_name "TMN3"; gene_id "YER113C"; +chrV SGD gene 390590 393712 . - . gene_id "YER114C"; gene_biotype "protein_coding"; +chrV SGD transcript 390590 393712 . - . transcript_id "YER114C_id001"; gene_id "YER114C"; gene_name "BOI2"; transcript_biotype "protein_coding"; +chrV SGD exon 390590 393712 . - 0 transcript_id "YER114C_id001"; gene_name "BOI2"; gene_id "YER114C"; +chrV SGD gene 394179 395818 . - . gene_id "YER115C"; gene_biotype "protein_coding"; +chrV SGD transcript 394179 395818 . - . transcript_id "YER115C_id002"; gene_id "YER115C"; gene_name "SPR6"; transcript_biotype "protein_coding"; +chrV SGD exon 394179 395818 . - . transcript_id "YER115C_id002"; gene_id "YER115C"; gene_name "SPR6"; +chrV SGD transcript 394292 394867 . - . transcript_id "YER115C_id001"; gene_id "YER115C"; gene_name "SPR6"; transcript_biotype "protein_coding"; +chrV SGD exon 394292 394867 . - 0 transcript_id "YER115C_id001"; gene_name "SPR6"; gene_id "YER115C"; +chrV SGD gene 394899 396272 . - . gene_id "YER116C"; gene_biotype "protein_coding"; +chrV SGD transcript 394899 396272 . - . transcript_id "YER116C_id005"; gene_id "YER116C"; gene_name "SLX8"; transcript_biotype "protein_coding"; +chrV SGD exon 394899 396272 . - . transcript_id "YER116C_id005"; gene_id "YER116C"; gene_name "SLX8"; +chrV SGD transcript 395348 396172 . - . transcript_id "YER116C_id001"; gene_id "YER116C"; gene_name "SLX8"; transcript_biotype "protein_coding"; +chrV SGD exon 395348 396172 . - 0 transcript_id "YER116C_id001"; gene_name "SLX8"; gene_id "YER116C"; +chrV SGD gene 395711 397716 . + . gene_id "YER117W"; gene_biotype "protein_coding"; +chrV SGD transcript 395711 397716 . + . transcript_id "YER117W_id001"; gene_id "YER117W"; gene_name "RPL23B"; transcript_biotype "protein_coding"; +chrV SGD exon 395711 397716 . + . transcript_id "YER117W_id001"; gene_id "YER117W"; gene_name "RPL23B"; +chrV SGD transcript 396769 397653 . + . transcript_id "YER117W_id003"; gene_id "YER117W"; gene_name "RPL23B"; transcript_biotype "protein_coding"; +chrV SGD exon 396769 396810 . + 0 transcript_id "YER117W_id003"; gene_name "RPL23B"; gene_id "YER117W"; +chrV SGD exon 397282 397653 . + 0 transcript_id "YER117W_id003"; gene_name "RPL23B"; gene_id "YER117W"; +chrV SGD gene 397773 399354 . - . gene_id "YER118C"; gene_biotype "protein_coding"; +chrV SGD transcript 397773 399354 . - . transcript_id "YER118C_id004"; gene_id "YER118C"; gene_name "SHO1"; transcript_biotype "protein_coding"; +chrV SGD exon 397773 399354 . - . transcript_id "YER118C_id004"; gene_id "YER118C"; gene_name "SHO1"; +chrV SGD transcript 397952 399055 . - . transcript_id "YER118C_id001"; gene_id "YER118C"; gene_name "SHO1"; transcript_biotype "protein_coding"; +chrV SGD exon 397952 399055 . - 0 transcript_id "YER118C_id001"; gene_name "SHO1"; gene_id "YER118C"; +chrV SGD gene 399335 400864 . - . gene_id "YER119C"; gene_biotype "protein_coding"; +chrV SGD transcript 399335 400864 . - . transcript_id "YER119C_id005"; gene_id "YER119C"; gene_name "AVT6"; transcript_biotype "protein_coding"; +chrV SGD exon 399335 400864 . - . transcript_id "YER119C_id005"; gene_id "YER119C"; gene_name "AVT6"; +chrV SGD transcript 399496 400842 . - . transcript_id "YER119C_id001"; gene_id "YER119C"; gene_name "AVT6"; transcript_biotype "protein_coding"; +chrV SGD exon 399496 400842 . - 0 transcript_id "YER119C_id001"; gene_name "AVT6"; gene_id "YER119C"; +chrV SGD gene 400867 401238 . - . gene_id "YER119C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 400867 401238 . - . transcript_id "YER119C-A_mRNA"; gene_id "YER119C-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 400867 401238 . - 0 transcript_id "YER119C-A_mRNA"; gene_id "YER119C-A"; +chrV SGD gene 401047 402104 . + . gene_id "YER120W"; gene_biotype "protein_coding"; +chrV SGD transcript 401047 402104 . + . transcript_id "YER120W_id004"; gene_id "YER120W"; gene_name "SCS2"; transcript_biotype "protein_coding"; +chrV SGD exon 401047 402104 . + . transcript_id "YER120W_id004"; gene_id "YER120W"; gene_name "SCS2"; +chrV SGD transcript 401135 401869 . + . transcript_id "YER120W_id001"; gene_id "YER120W"; gene_name "SCS2"; transcript_biotype "protein_coding"; +chrV SGD exon 401135 401869 . + 0 transcript_id "YER120W_id001"; gene_name "SCS2"; gene_id "YER120W"; +chrV SGD gene 402229 402912 . + . gene_id "YER121W"; gene_biotype "protein_coding"; +chrV SGD transcript 402229 402912 . + . transcript_id "YER121W_id003"; gene_id "YER121W"; transcript_biotype "protein_coding"; +chrV SGD exon 402229 402912 . + . transcript_id "YER121W_id003"; gene_id "YER121W"; +chrV SGD transcript 402375 402719 . + . transcript_id "YER121W_id001"; gene_id "YER121W"; transcript_biotype "protein_coding"; +chrV SGD exon 402375 402719 . + 0 transcript_id "YER121W_id001"; gene_id "YER121W"; +chrV SGD gene 402724 404433 . - . gene_id "YER122C"; gene_biotype "protein_coding"; +chrV SGD transcript 402724 404433 . - . transcript_id "YER122C_id004"; gene_id "YER122C"; gene_name "GLO3"; transcript_biotype "protein_coding"; +chrV SGD exon 402724 404433 . - . transcript_id "YER122C_id004"; gene_id "YER122C"; gene_name "GLO3"; +chrV SGD transcript 402871 404352 . - . transcript_id "YER122C_id001"; gene_id "YER122C"; gene_name "GLO3"; transcript_biotype "protein_coding"; +chrV SGD exon 402871 404352 . - 0 transcript_id "YER122C_id001"; gene_name "GLO3"; gene_id "YER122C"; +chrV SGD gene 404625 406936 . + . gene_id "YER123W"; gene_biotype "protein_coding"; +chrV SGD transcript 404625 406936 . + . transcript_id "YER123W_id001"; gene_id "YER123W"; gene_name "YCK3"; transcript_biotype "protein_coding"; +chrV SGD exon 404625 406936 . + . transcript_id "YER123W_id001"; gene_id "YER123W"; gene_name "YCK3"; +chrV SGD transcript 404813 406387 . + . transcript_id "YER123W_id002"; gene_id "YER123W"; gene_name "YCK3"; transcript_biotype "protein_coding"; +chrV SGD exon 404813 406387 . + 0 transcript_id "YER123W_id002"; gene_name "YCK3"; gene_id "YER123W"; +chrV SGD gene 406818 409103 . - . gene_id "YER124C"; gene_biotype "protein_coding"; +chrV SGD transcript 406818 409103 . - . transcript_id "YER124C_id002"; gene_id "YER124C"; gene_name "DSE1"; transcript_biotype "protein_coding"; +chrV SGD exon 406818 409103 . - . transcript_id "YER124C_id002"; gene_id "YER124C"; gene_name "DSE1"; +chrV SGD transcript 407342 409063 . - . transcript_id "YER124C_id001"; gene_id "YER124C"; gene_name "DSE1"; transcript_biotype "protein_coding"; +chrV SGD exon 407342 409063 . - 0 transcript_id "YER124C_id001"; gene_name "DSE1"; gene_id "YER124C"; +chrV SGD gene 410189 412618 . + . gene_id "YER125W"; gene_biotype "protein_coding"; +chrV SGD transcript 410189 412618 . + . transcript_id "YER125W_id001"; gene_id "YER125W"; gene_name "RSP5"; transcript_biotype "protein_coding"; +chrV SGD exon 410189 412618 . + 0 transcript_id "YER125W_id001"; gene_name "RSP5"; gene_id "YER125W"; +chrV SGD gene 412891 414281 . - . gene_id "YER126C"; gene_biotype "protein_coding"; +chrV SGD transcript 412891 414281 . - . transcript_id "YER126C_id001"; gene_id "YER126C"; gene_name "NSA2"; transcript_biotype "protein_coding"; +chrV SGD exon 412891 414281 . - . transcript_id "YER126C_id001"; gene_id "YER126C"; gene_name "NSA2"; +chrV SGD transcript 413394 414179 . - . transcript_id "YER126C_id002"; gene_id "YER126C"; gene_name "NSA2"; transcript_biotype "protein_coding"; +chrV SGD exon 413394 414179 . - 0 transcript_id "YER126C_id002"; gene_name "NSA2"; gene_id "YER126C"; +chrV SGD gene 414457 415753 . + . gene_id "YER127W"; gene_biotype "protein_coding"; +chrV SGD transcript 414457 415753 . + . transcript_id "YER127W_id002"; gene_id "YER127W"; gene_name "LCP5"; transcript_biotype "protein_coding"; +chrV SGD exon 414457 415753 . + . transcript_id "YER127W_id002"; gene_id "YER127W"; gene_name "LCP5"; +chrV SGD transcript 414481 415554 . + . transcript_id "YER127W_id001"; gene_id "YER127W"; gene_name "LCP5"; transcript_biotype "protein_coding"; +chrV SGD exon 414481 415554 . + 0 transcript_id "YER127W_id001"; gene_name "LCP5"; gene_id "YER127W"; +chrV SGD gene 415854 417079 . + . gene_id "YER128W"; gene_biotype "protein_coding"; +chrV SGD transcript 415854 417079 . + . transcript_id "YER128W_id001"; gene_id "YER128W"; gene_name "VFA1"; transcript_biotype "protein_coding"; +chrV SGD exon 415854 417079 . + . transcript_id "YER128W_id001"; gene_id "YER128W"; gene_name "VFA1"; +chrV SGD transcript 415859 416470 . + . transcript_id "YER128W_id006"; gene_id "YER128W"; gene_name "VFA1"; transcript_biotype "protein_coding"; +chrV SGD exon 415859 416470 . + 0 transcript_id "YER128W_id006"; gene_name "VFA1"; gene_id "YER128W"; +chrV SGD gene 417281 420709 . + . gene_id "YER129W"; gene_biotype "protein_coding"; +chrV SGD transcript 417281 420709 . + . transcript_id "YER129W_mRNA"; gene_id "YER129W"; gene_name "SAK1"; transcript_biotype "protein_coding"; +chrV SGD CDS 417281 420709 . + 0 transcript_id "YER129W_mRNA"; gene_name "SAK1"; gene_id "YER129W"; +chrV SGD gene 420863 422542 . - . gene_id "YER130C"; gene_biotype "protein_coding"; +chrV SGD transcript 420863 422542 . - . transcript_id "YER130C_id002"; gene_id "YER130C"; gene_name "COM2"; transcript_biotype "protein_coding"; +chrV SGD exon 420863 422542 . - . transcript_id "YER130C_id002"; gene_id "YER130C"; gene_name "COM2"; +chrV SGD transcript 421115 422446 . - . transcript_id "YER130C_id001"; gene_id "YER130C"; gene_name "COM2"; transcript_biotype "protein_coding"; +chrV SGD exon 421115 422446 . - 0 transcript_id "YER130C_id001"; gene_name "COM2"; gene_id "YER130C"; +chrV SGD gene 423445 424454 . + . gene_id "YER131W"; gene_biotype "protein_coding"; +chrV SGD transcript 423445 424454 . + . transcript_id "YER131W_id001"; gene_id "YER131W"; gene_name "RPS26B"; transcript_biotype "protein_coding"; +chrV SGD exon 423445 424454 . + . transcript_id "YER131W_id001"; gene_id "YER131W"; gene_name "RPS26B"; +chrV SGD transcript 423591 424311 . + . transcript_id "YER131W_id003"; gene_id "YER131W"; gene_name "RPS26B"; transcript_biotype "protein_coding"; +chrV SGD exon 423591 424311 . + . transcript_id "YER131W_id003"; gene_name "RPS26B"; gene_id "YER131W"; +chrV SGD exon 423952 424311 . + 0 transcript_id "YER131W_id003"; gene_name "RPS26B"; gene_id "YER131W"; +chrV SGD gene 424698 424883 . + . gene_id "YNCE0019W"; gene_biotype "ncRNA"; +chrV SGD transcript 424698 424883 . + . transcript_id "YNCE0019W_snoRNA"; gene_id "YNCE0019W"; gene_name "SNR4"; transcript_biotype "ncRNA"; +chrV SGD exon 424698 424883 . + . transcript_id "YNCE0019W_snoRNA"; gene_name "SNR4"; gene_id "YNCE0019W"; +chrV SGD gene 425188 430449 . - . gene_id "YER132C"; gene_biotype "protein_coding"; +chrV SGD transcript 425188 430449 . - . transcript_id "YER132C_mRNA"; gene_id "YER132C"; gene_name "PMD1"; transcript_biotype "protein_coding"; +chrV SGD CDS 425188 430449 . - 0 transcript_id "YER132C_mRNA"; gene_name "PMD1"; gene_id "YER132C"; +chrV SGD gene 431129 431220 . - . gene_id "YNCE0020C"; gene_biotype "ncRNA"; +chrV SGD transcript 431129 431220 . - . transcript_id "YNCE0020C_snoRNA"; gene_id "YNCE0020C"; gene_name "SNR52"; transcript_biotype "ncRNA"; +chrV SGD exon 431129 431220 . - . transcript_id "YNCE0020C_snoRNA"; gene_name "SNR52"; gene_id "YNCE0020C"; +chrV SGD gene 432426 434424 . + . gene_id "YER133W"; gene_biotype "protein_coding"; +chrV SGD transcript 432426 434424 . + . transcript_id "YER133W_id003"; gene_id "YER133W"; gene_name "GLC7"; transcript_biotype "protein_coding"; +chrV SGD exon 432426 434424 . + . transcript_id "YER133W_id003"; gene_id "YER133W"; gene_name "GLC7"; +chrV SGD transcript 432495 433958 . + . transcript_id "YER133W_id001"; gene_id "YER133W"; gene_name "GLC7"; transcript_biotype "protein_coding"; +chrV SGD exon 432495 432671 . + 0 transcript_id "YER133W_id001"; gene_name "GLC7"; gene_id "YER133W"; +chrV SGD exon 433197 433958 . + 0 transcript_id "YER133W_id001"; gene_name "GLC7"; gene_id "YER133W"; +chrV SGD gene 434541 434612 . - . gene_id "YNCE0021C"; gene_biotype "ncRNA"; +chrV SGD transcript 434541 434612 . - . transcript_id "YNCE0021C_tRNA"; gene_id "YNCE0021C"; transcript_biotype "ncRNA"; +chrV SGD exon 434541 434612 . - . transcript_id "YNCE0021C_tRNA"; gene_id "YNCE0021C"; +chrV SGD gene 435752 435824 . - . gene_id "YNCE0022C"; gene_biotype "ncRNA"; +chrV SGD transcript 435752 435824 . - . transcript_id "YNCE0022C_tRNA"; gene_id "YNCE0022C"; transcript_biotype "ncRNA"; +chrV SGD exon 435752 435824 . - . transcript_id "YNCE0022C_tRNA"; gene_id "YNCE0022C"; +chrV SGD gene 436308 437979 . - . gene_id "YER134C"; gene_biotype "protein_coding"; +chrV SGD transcript 436308 437979 . - . transcript_id "YER134C_id001"; gene_id "YER134C"; transcript_biotype "protein_coding"; +chrV SGD exon 436308 437979 . - . transcript_id "YER134C_id001"; gene_id "YER134C"; +chrV SGD gene 437191 437532 . + . gene_id "YER133W-A"; gene_biotype "protein_coding"; +chrV SGD transcript 437191 437532 . + . transcript_id "YER133W-A_mRNA"; gene_id "YER133W-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 437191 437532 . + 0 transcript_id "YER133W-A_mRNA"; gene_id "YER133W-A"; +chrV SGD transcript 437267 437803 . - . transcript_id "YER134C_id003"; gene_id "YER134C"; transcript_biotype "protein_coding"; +chrV SGD exon 437267 437803 . - 0 transcript_id "YER134C_id003"; gene_id "YER134C"; +chrV SGD gene 437952 438344 . - . gene_id "YER135C"; gene_biotype "protein_coding"; +chrV SGD transcript 437952 438344 . - . transcript_id "YER135C_id001"; gene_id "YER135C"; transcript_biotype "protein_coding"; +chrV SGD exon 437952 438344 . - 0 transcript_id "YER135C_id001"; gene_id "YER135C"; +chrV SGD gene 438700 438773 . + . gene_id "YNCE0023W"; gene_biotype "ncRNA"; +chrV SGD transcript 438700 438773 . + . transcript_id "YNCE0023W_tRNA"; gene_id "YNCE0023W"; transcript_biotype "ncRNA"; +chrV SGD exon 438700 438773 . + . transcript_id "YNCE0023W_tRNA"; gene_id "YNCE0023W"; +chrV SGD gene 439461 441300 . + . gene_id "YER136W"; gene_biotype "protein_coding"; +chrV SGD transcript 439461 441300 . + . transcript_id "YER136W_id002"; gene_id "YER136W"; gene_name "GDI1"; transcript_biotype "protein_coding"; +chrV SGD exon 439461 441300 . + . transcript_id "YER136W_id002"; gene_id "YER136W"; gene_name "GDI1"; +chrV SGD transcript 439616 440971 . + . transcript_id "YER136W_id001"; gene_id "YER136W"; gene_name "GDI1"; transcript_biotype "protein_coding"; +chrV SGD exon 439616 440971 . + 0 transcript_id "YER136W_id001"; gene_name "GDI1"; gene_id "YER136W"; +chrV SGD gene 441206 441919 . - . gene_id "YER137C"; gene_biotype "protein_coding"; +chrV SGD transcript 441206 441919 . - . transcript_id "YER137C_id004"; gene_id "YER137C"; transcript_biotype "protein_coding"; +chrV SGD exon 441206 441919 . - . transcript_id "YER137C_id004"; gene_id "YER137C"; +chrV SGD transcript 441373 441819 . - . transcript_id "YER137C_id001"; gene_id "YER137C"; transcript_biotype "protein_coding"; +chrV SGD exon 441373 441819 . - 0 transcript_id "YER137C_id001"; gene_id "YER137C"; +chrV SGD gene 441575 441880 . + . gene_id "YER137W-A"; gene_biotype "protein_coding"; +chrV SGD transcript 441575 441880 . + . transcript_id "YER137W-A_mRNA"; gene_id "YER137W-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 441575 441880 . + 0 transcript_id "YER137W-A_mRNA"; gene_id "YER137W-A"; +chrV SGD gene 441987 442508 . + . gene_id "YNCE0024W"; gene_biotype "ncRNA"; +chrV SGD transcript 441987 442508 . + . transcript_id "YNCE0024W_ncRNA"; gene_id "YNCE0024W"; gene_name "SCR1"; transcript_biotype "ncRNA"; +chrV SGD exon 441987 442508 . + . transcript_id "YNCE0024W_ncRNA"; gene_name "SCR1"; gene_id "YNCE0024W"; +chrV SGD gene 443202 443275 . - . gene_id "YNCE0025C"; gene_biotype "ncRNA"; +chrV SGD transcript 443202 443275 . - . transcript_id "YNCE0025C_tRNA"; gene_id "YNCE0025C"; transcript_biotype "ncRNA"; +chrV SGD exon 443202 443275 . - . transcript_id "YNCE0025C_tRNA"; gene_id "YNCE0025C"; +chrV SGD gene 443756 449024 . - . gene_id "YER138C"; gene_biotype "protein_coding"; +chrV SGD transcript 443756 449024 . - . transcript_id "YER138C_dummy"; gene_id "YER138C"; transcript_biotype "protein_coding"; +chrV SGD exon 443756 447721 . - 0 transcript_id "YER138C_dummy"; gene_id "YER138C"; +chrV SGD exon 447723 449024 . - 0 transcript_id "YER138C_dummy"; gene_id "YER138C"; +chrV SGD gene 447702 449024 . - . gene_id "YER137C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 447702 449024 . - . transcript_id "YER137C-A_dummy"; gene_id "YER137C-A"; transcript_biotype "protein_coding"; +chrV SGD exon 447702 449024 . - 0 transcript_id "YER137C-A_dummy"; gene_id "YER137C-A"; +chrV SGD gene 449474 449578 . + . gene_id "YER138W-A"; gene_biotype "protein_coding"; +chrV SGD transcript 449474 449578 . + . transcript_id "YER138W-A_mRNA"; gene_id "YER138W-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 449474 449578 . + 0 transcript_id "YER138W-A_mRNA"; gene_id "YER138W-A"; +chrV SGD gene 449837 451399 . - . gene_id "YER139C"; gene_biotype "protein_coding"; +chrV SGD transcript 449837 451399 . - . transcript_id "YER139C_id004"; gene_id "YER139C"; gene_name "RTR1"; transcript_biotype "protein_coding"; +chrV SGD exon 449837 451399 . - . transcript_id "YER139C_id004"; gene_id "YER139C"; gene_name "RTR1"; +chrV SGD transcript 450563 451243 . - . transcript_id "YER139C_id001"; gene_id "YER139C"; gene_name "RTR1"; transcript_biotype "protein_coding"; +chrV SGD exon 450563 451243 . - 0 transcript_id "YER139C_id001"; gene_name "RTR1"; gene_id "YER139C"; +chrV SGD gene 451493 453628 . + . gene_id "YER140W"; gene_biotype "protein_coding"; +chrV SGD transcript 451493 453628 . + . transcript_id "YER140W_id001"; gene_id "YER140W"; gene_name "EMP65"; transcript_biotype "protein_coding"; +chrV SGD exon 451493 453628 . + . transcript_id "YER140W_id001"; gene_id "YER140W"; gene_name "EMP65"; +chrV SGD transcript 451565 453235 . + . transcript_id "YER140W_id002"; gene_id "YER140W"; gene_name "EMP65"; transcript_biotype "protein_coding"; +chrV SGD exon 451565 453235 . + 0 transcript_id "YER140W_id002"; gene_name "EMP65"; gene_id "YER140W"; +chrV SGD gene 453380 455150 . + . gene_id "YER141W"; gene_biotype "protein_coding"; +chrV SGD transcript 453380 455150 . + . transcript_id "YER141W_id007"; gene_id "YER141W"; gene_name "COX15"; transcript_biotype "protein_coding"; +chrV SGD exon 453380 455150 . + . transcript_id "YER141W_id007"; gene_id "YER141W"; gene_name "COX15"; +chrV SGD transcript 453459 454919 . + . transcript_id "YER141W_id001"; gene_id "YER141W"; gene_name "COX15"; transcript_biotype "protein_coding"; +chrV SGD exon 453459 454919 . + 0 transcript_id "YER141W_id001"; gene_name "COX15"; gene_id "YER141W"; +chrV SGD gene 455060 456384 . - . gene_id "YER142C"; gene_biotype "protein_coding"; +chrV SGD transcript 455060 456384 . - . transcript_id "YER142C_id001"; gene_id "YER142C"; gene_name "MAG1"; transcript_biotype "protein_coding"; +chrV SGD exon 455060 456384 . - . transcript_id "YER142C_id001"; gene_id "YER142C"; gene_name "MAG1"; +chrV SGD transcript 455146 456036 . - . transcript_id "YER142C_id002"; gene_id "YER142C"; gene_name "MAG1"; transcript_biotype "protein_coding"; +chrV SGD exon 455146 456036 . - 0 transcript_id "YER142C_id002"; gene_name "MAG1"; gene_id "YER142C"; +chrV SGD gene 456261 457810 . + . gene_id "YER143W"; gene_biotype "protein_coding"; +chrV SGD transcript 456261 457810 . + . transcript_id "YER143W_id003"; gene_id "YER143W"; gene_name "DDI1"; transcript_biotype "protein_coding"; +chrV SGD exon 456261 457810 . + . transcript_id "YER143W_id003"; gene_id "YER143W"; gene_name "DDI1"; +chrV SGD transcript 456319 457605 . + . transcript_id "YER143W_id001"; gene_id "YER143W"; gene_name "DDI1"; transcript_biotype "protein_coding"; +chrV SGD exon 456319 457605 . + 0 transcript_id "YER143W_id001"; gene_name "DDI1"; gene_id "YER143W"; +chrV SGD gene 457689 460317 . - . gene_id "YER144C"; gene_biotype "protein_coding"; +chrV SGD transcript 457689 460317 . - . transcript_id "YER144C_id001"; gene_id "YER144C"; gene_name "UBP5"; transcript_biotype "protein_coding"; +chrV SGD exon 457689 460317 . - . transcript_id "YER144C_id001"; gene_id "YER144C"; gene_name "UBP5"; +chrV SGD transcript 457806 460223 . - . transcript_id "YER144C_id002"; gene_id "YER144C"; gene_name "UBP5"; transcript_biotype "protein_coding"; +chrV SGD exon 457806 460223 . - 0 transcript_id "YER144C_id002"; gene_name "UBP5"; gene_id "YER144C"; +chrV SGD gene 460290 461758 . - . gene_id "YER145C"; gene_biotype "protein_coding"; +chrV SGD transcript 460290 461758 . - . transcript_id "YER145C_id001"; gene_id "YER145C"; gene_name "FTR1"; transcript_biotype "protein_coding"; +chrV SGD exon 460290 461758 . - . transcript_id "YER145C_id001"; gene_id "YER145C"; gene_name "FTR1"; +chrV SGD transcript 460526 461740 . - . transcript_id "YER145C_id003"; gene_id "YER145C"; gene_name "FTR1"; transcript_biotype "protein_coding"; +chrV SGD exon 460526 461740 . - 0 transcript_id "YER145C_id003"; gene_name "FTR1"; gene_id "YER145C"; +chrV SGD gene 462163 462951 . + . gene_id "YER146W"; gene_biotype "protein_coding"; +chrV SGD transcript 462163 462951 . + . transcript_id "YER146W_id002"; gene_id "YER146W"; gene_name "LSM5"; transcript_biotype "protein_coding"; +chrV SGD exon 462163 462951 . + . transcript_id "YER146W_id002"; gene_id "YER146W"; gene_name "LSM5"; +chrV SGD gene 462386 462823 . - . gene_id "YER145C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 462386 462823 . - . transcript_id "YER145C-A_mRNA"; gene_id "YER145C-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 462386 462823 . - 0 transcript_id "YER145C-A_mRNA"; gene_id "YER145C-A"; +chrV SGD transcript 462585 462866 . + . transcript_id "YER146W_id001"; gene_id "YER146W"; gene_name "LSM5"; transcript_biotype "protein_coding"; +chrV SGD exon 462585 462866 . + 0 transcript_id "YER146W_id001"; gene_name "LSM5"; gene_id "YER146W"; +chrV SGD gene 462863 464882 . - . gene_id "YER147C"; gene_biotype "protein_coding"; +chrV SGD transcript 462863 464882 . - . transcript_id "YER147C_id010"; gene_id "YER147C"; gene_name "SCC4"; transcript_biotype "protein_coding"; +chrV SGD exon 462863 464882 . - . transcript_id "YER147C_id010"; gene_id "YER147C"; gene_name "SCC4"; +chrV SGD transcript 462968 464842 . - . transcript_id "YER147C_id001"; gene_id "YER147C"; gene_name "SCC4"; transcript_biotype "protein_coding"; +chrV SGD exon 462968 464842 . - 0 transcript_id "YER147C_id001"; gene_name "SCC4"; gene_id "YER147C"; +chrV SGD gene 465114 466372 . + . gene_id "YER148W"; gene_biotype "protein_coding"; +chrV SGD transcript 465114 466372 . + . transcript_id "YER148W_id001"; gene_id "YER148W"; gene_name "SPT15"; transcript_biotype "protein_coding"; +chrV SGD exon 465114 466372 . + . transcript_id "YER148W_id001"; gene_id "YER148W"; gene_name "SPT15"; +chrV SGD gene 465203 465613 . - . gene_id "YER147C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 465203 465613 . - . transcript_id "YER147C-A_mRNA"; gene_id "YER147C-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 465203 465613 . - 0 transcript_id "YER147C-A_mRNA"; gene_id "YER147C-A"; +chrV SGD transcript 465303 466025 . + . transcript_id "YER148W_id005"; gene_id "YER148W"; gene_name "SPT15"; transcript_biotype "protein_coding"; +chrV SGD exon 465303 466025 . + 0 transcript_id "YER148W_id005"; gene_name "SPT15"; gene_id "YER148W"; +chrV SGD gene 466130 467563 . - . gene_id "YER149C"; gene_biotype "protein_coding"; +chrV SGD transcript 466130 467563 . - . transcript_id "YER149C_id002"; gene_id "YER149C"; gene_name "PEA2"; transcript_biotype "protein_coding"; +chrV SGD exon 466130 467563 . - . transcript_id "YER149C_id002"; gene_id "YER149C"; gene_name "PEA2"; +chrV SGD gene 466185 466763 . + . gene_id "YER148W-A"; gene_biotype "protein_coding"; +chrV SGD transcript 466185 466763 . + . transcript_id "YER148W-A_mRNA"; gene_id "YER148W-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 466185 466763 . + 0 transcript_id "YER148W-A_mRNA"; gene_id "YER148W-A"; +chrV SGD transcript 466208 467470 . - . transcript_id "YER149C_id001"; gene_id "YER149C"; gene_name "PEA2"; transcript_biotype "protein_coding"; +chrV SGD exon 466208 467470 . - 0 transcript_id "YER149C_id001"; gene_name "PEA2"; gene_id "YER149C"; +chrV SGD gene 467715 468982 . + . gene_id "YER150W"; gene_biotype "protein_coding"; +chrV SGD transcript 467715 468982 . + . transcript_id "YER150W_id001"; gene_id "YER150W"; gene_name "SPI1"; transcript_biotype "protein_coding"; +chrV SGD exon 467715 468982 . + . transcript_id "YER150W_id001"; gene_id "YER150W"; gene_name "SPI1"; +chrV SGD transcript 468370 468816 . + . transcript_id "YER150W_id002"; gene_id "YER150W"; gene_name "SPI1"; transcript_biotype "protein_coding"; +chrV SGD exon 468370 468816 . + 0 transcript_id "YER150W_id002"; gene_name "SPI1"; gene_id "YER150W"; +chrV SGD gene 469457 469530 . + . gene_id "YNCE0026W"; gene_biotype "ncRNA"; +chrV SGD transcript 469457 469530 . + . transcript_id "YNCE0026W_tRNA"; gene_id "YNCE0026W"; transcript_biotype "ncRNA"; +chrV SGD exon 469457 469530 . + . transcript_id "YNCE0026W_tRNA"; gene_id "YNCE0026W"; +chrV SGD gene 469686 472424 . - . gene_id "YER151C"; gene_biotype "protein_coding"; +chrV SGD transcript 469686 472424 . - . transcript_id "YER151C_id001"; gene_id "YER151C"; gene_name "UBP3"; transcript_biotype "protein_coding"; +chrV SGD exon 469686 472424 . - 0 transcript_id "YER151C_id001"; gene_name "UBP3"; gene_id "YER151C"; +chrV SGD gene 472620 474562 . - . gene_id "YER152C"; gene_biotype "protein_coding"; +chrV SGD transcript 472620 474562 . - . transcript_id "YER152C_id004"; gene_id "YER152C"; transcript_biotype "protein_coding"; +chrV SGD exon 472620 474562 . - . transcript_id "YER152C_id004"; gene_id "YER152C"; +chrV SGD transcript 472657 473988 . - . transcript_id "YER152C_id001"; gene_id "YER152C"; transcript_biotype "protein_coding"; +chrV SGD exon 472657 473988 . - 0 transcript_id "YER152C_id001"; gene_id "YER152C"; +chrV SGD gene 473485 474051 . + . gene_id "YER152W-A"; gene_biotype "protein_coding"; +chrV SGD transcript 473485 474051 . + . transcript_id "YER152W-A_mRNA"; gene_id "YER152W-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 473485 474051 . + 0 transcript_id "YER152W-A_mRNA"; gene_id "YER152W-A"; +chrV SGD gene 474041 474805 . - . gene_id "YER153C"; gene_biotype "protein_coding"; +chrV SGD transcript 474041 474805 . - . transcript_id "YER153C_mRNA"; gene_id "YER153C"; gene_name "PET122"; transcript_biotype "protein_coding"; +chrV SGD CDS 474041 474805 . - 0 transcript_id "YER153C_mRNA"; gene_name "PET122"; gene_id "YER153C"; +chrV SGD gene 474311 476293 . + . gene_id "YER154W"; gene_biotype "protein_coding"; +chrV SGD transcript 474311 476293 . + . transcript_id "YER154W_id003"; gene_id "YER154W"; gene_name "OXA1"; transcript_biotype "protein_coding"; +chrV SGD exon 474311 476293 . + . transcript_id "YER154W_id003"; gene_id "YER154W"; gene_name "OXA1"; +chrV SGD transcript 475020 476228 . + . transcript_id "YER154W_id001"; gene_id "YER154W"; gene_name "OXA1"; transcript_biotype "protein_coding"; +chrV SGD exon 475020 476228 . + 0 transcript_id "YER154W_id001"; gene_name "OXA1"; gene_id "YER154W"; +chrV SGD gene 476345 482848 . - . gene_id "YER155C"; gene_biotype "protein_coding"; +chrV SGD transcript 476345 482848 . - . transcript_id "YER155C_mRNA"; gene_id "YER155C"; gene_name "BEM2"; transcript_biotype "protein_coding"; +chrV SGD CDS 476345 482848 . - 0 transcript_id "YER155C_mRNA"; gene_name "BEM2"; gene_id "YER155C"; +chrV SGD gene 483219 484628 . - . gene_id "YER156C"; gene_biotype "protein_coding"; +chrV SGD transcript 483219 484628 . - . transcript_id "YER156C_id001"; gene_id "YER156C"; gene_name "MYG1"; transcript_biotype "protein_coding"; +chrV SGD exon 483219 484628 . - . transcript_id "YER156C_id001"; gene_id "YER156C"; gene_name "MYG1"; +chrV SGD transcript 483325 484341 . - . transcript_id "YER156C_id008"; gene_id "YER156C"; gene_name "MYG1"; transcript_biotype "protein_coding"; +chrV SGD exon 483325 484341 . - 0 transcript_id "YER156C_id008"; gene_name "MYG1"; gene_id "YER156C"; +chrV SGD gene 484772 487274 . + . gene_id "YER157W"; gene_biotype "protein_coding"; +chrV SGD transcript 484772 487274 . + . transcript_id "YER157W_id002"; gene_id "YER157W"; gene_name "COG3"; transcript_biotype "protein_coding"; +chrV SGD exon 484772 487274 . + . transcript_id "YER157W_id002"; gene_id "YER157W"; gene_name "COG3"; +chrV SGD transcript 484788 487193 . + . transcript_id "YER157W_id001"; gene_id "YER157W"; gene_name "COG3"; transcript_biotype "protein_coding"; +chrV SGD exon 484788 487193 . + 0 transcript_id "YER157W_id001"; gene_name "COG3"; gene_id "YER157W"; +chrV SGD gene 487331 487402 . - . gene_id "YNCE0027C"; gene_biotype "ncRNA"; +chrV SGD transcript 487331 487402 . - . transcript_id "YNCE0027C_tRNA"; gene_id "YNCE0027C"; transcript_biotype "ncRNA"; +chrV SGD exon 487331 487402 . - . transcript_id "YNCE0027C_tRNA"; gene_id "YNCE0027C"; +chrV SGD gene 488736 490782 . - . gene_id "YER158C"; gene_biotype "protein_coding"; +chrV SGD transcript 488736 490782 . - . transcript_id "YER158C_id003"; gene_id "YER158C"; transcript_biotype "protein_coding"; +chrV SGD exon 488736 490782 . - . transcript_id "YER158C_id003"; gene_id "YER158C"; +chrV SGD transcript 488857 490578 . - . transcript_id "YER158C_id001"; gene_id "YER158C"; transcript_biotype "protein_coding"; +chrV SGD exon 488857 490578 . - 0 transcript_id "YER158C_id001"; gene_id "YER158C"; +chrV SGD gene 491282 492141 . - . gene_id "YER159C"; gene_biotype "protein_coding"; +chrV SGD transcript 491282 492141 . - . transcript_id "YER159C_id001"; gene_id "YER159C"; gene_name "BUR6"; transcript_biotype "protein_coding"; +chrV SGD exon 491282 492141 . - . transcript_id "YER159C_id001"; gene_id "YER159C"; gene_name "BUR6"; +chrV SGD gene 491487 491702 . + . gene_id "YER158W-A"; gene_biotype "protein_coding"; +chrV SGD transcript 491487 491702 . + . transcript_id "YER158W-A_id001"; gene_id "YER158W-A"; transcript_biotype "protein_coding"; +chrV SGD exon 491487 491702 . + 0 transcript_id "YER158W-A_id001"; gene_id "YER158W-A"; +chrV SGD transcript 491530 491958 . - . transcript_id "YER159C_id002"; gene_id "YER159C"; gene_name "BUR6"; transcript_biotype "protein_coding"; +chrV SGD exon 491530 491958 . - 0 transcript_id "YER159C_id002"; gene_name "BUR6"; gene_id "YER159C"; +chrV SGD gene 492352 492424 . - . gene_id "YNCE0028C"; gene_biotype "ncRNA"; +chrV SGD transcript 492352 492424 . - . transcript_id "YNCE0028C_tRNA"; gene_id "YNCE0028C"; transcript_biotype "ncRNA"; +chrV SGD exon 492352 492424 . - . transcript_id "YNCE0028C_tRNA"; gene_id "YNCE0028C"; +chrV SGD gene 492856 498124 . - . gene_id "YER160C"; gene_biotype "protein_coding"; +chrV SGD transcript 492856 498124 . - . transcript_id "YER160C_dummy"; gene_id "YER160C"; transcript_biotype "protein_coding"; +chrV SGD exon 492856 496821 . - 0 transcript_id "YER160C_dummy"; gene_id "YER160C"; +chrV SGD exon 496823 498124 . - 0 transcript_id "YER160C_dummy"; gene_id "YER160C"; +chrV SGD gene 496802 498124 . - . gene_id "YER159C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 496802 498124 . - . transcript_id "YER159C-A_dummy"; gene_id "YER159C-A"; transcript_biotype "protein_coding"; +chrV SGD exon 496802 498124 . - 0 transcript_id "YER159C-A_dummy"; gene_id "YER159C-A"; +chrV SGD gene 499078 500416 . - . gene_id "YER161C"; gene_biotype "protein_coding"; +chrV SGD transcript 499078 500416 . - . transcript_id "YER161C_id005"; gene_id "YER161C"; gene_name "SPT2"; transcript_biotype "protein_coding"; +chrV SGD exon 499078 500416 . - . transcript_id "YER161C_id005"; gene_id "YER161C"; gene_name "SPT2"; +chrV SGD transcript 499347 500348 . - . transcript_id "YER161C_id001"; gene_id "YER161C"; gene_name "SPT2"; transcript_biotype "protein_coding"; +chrV SGD exon 499347 500348 . - 0 transcript_id "YER161C_id001"; gene_name "SPT2"; gene_id "YER161C"; +chrV SGD gene 500630 502894 . - . gene_id "YER162C"; gene_biotype "protein_coding"; +chrV SGD transcript 500630 502894 . - . transcript_id "YER162C_id001"; gene_id "YER162C"; gene_name "RAD4"; transcript_biotype "protein_coding"; +chrV SGD exon 500630 502894 . - 0 transcript_id "YER162C_id001"; gene_name "RAD4"; gene_id "YER162C"; +chrV SGD gene 502982 503902 . - . gene_id "YER163C"; gene_biotype "protein_coding"; +chrV SGD transcript 502982 503902 . - . transcript_id "YER163C_id002"; gene_id "YER163C"; gene_name "GCG1"; transcript_biotype "protein_coding"; +chrV SGD exon 502982 503902 . - . transcript_id "YER163C_id002"; gene_id "YER163C"; gene_name "GCG1"; +chrV SGD transcript 503084 503782 . - . transcript_id "YER163C_id001"; gene_id "YER163C"; gene_name "GCG1"; transcript_biotype "protein_coding"; +chrV SGD exon 503084 503782 . - 0 transcript_id "YER163C_id001"; gene_name "GCG1"; gene_id "YER163C"; +chrV SGD gene 505392 509798 . + . gene_id "YER164W"; gene_biotype "protein_coding"; +chrV SGD transcript 505392 509798 . + . transcript_id "YER164W_mRNA"; gene_id "YER164W"; gene_name "CHD1"; transcript_biotype "protein_coding"; +chrV SGD CDS 505392 509798 . + 0 transcript_id "YER164W_mRNA"; gene_name "CHD1"; gene_id "YER164W"; +chrV SGD gene 510231 512308 . + . gene_id "YER165W"; gene_biotype "protein_coding"; +chrV SGD transcript 510231 512308 . + . transcript_id "YER165W_id006"; gene_id "YER165W"; gene_name "PAB1"; transcript_biotype "protein_coding"; +chrV SGD exon 510231 512308 . + . transcript_id "YER165W_id006"; gene_id "YER165W"; gene_name "PAB1"; +chrV SGD transcript 510373 512106 . + . transcript_id "YER165W_id001"; gene_id "YER165W"; gene_name "PAB1"; transcript_biotype "protein_coding"; +chrV SGD exon 510373 512106 . + 0 transcript_id "YER165W_id001"; gene_name "PAB1"; gene_id "YER165W"; +chrV SGD gene 512627 512983 . - . gene_id "YER165C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 512627 512983 . - . transcript_id "YER165C-A_mRNA"; gene_id "YER165C-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 512627 512983 . - 0 transcript_id "YER165C-A_mRNA"; gene_id "YER165C-A"; +chrV SGD gene 512744 517459 . + . gene_id "YER166W"; gene_biotype "protein_coding"; +chrV SGD transcript 512744 517459 . + . transcript_id "YER166W_mRNA"; gene_id "YER166W"; gene_name "DNF1"; transcript_biotype "protein_coding"; +chrV SGD CDS 512744 517459 . + 0 transcript_id "YER166W_mRNA"; gene_name "DNF1"; gene_id "YER166W"; +chrV SGD gene 517790 520781 . + . gene_id "YER167W"; gene_biotype "protein_coding"; +chrV SGD transcript 517790 520781 . + . transcript_id "YER167W_id001"; gene_id "YER167W"; gene_name "BCK2"; transcript_biotype "protein_coding"; +chrV SGD exon 517790 520781 . + . transcript_id "YER167W_id001"; gene_id "YER167W"; gene_name "BCK2"; +chrV SGD transcript 518216 520771 . + . transcript_id "YER167W_id002"; gene_id "YER167W"; gene_name "BCK2"; transcript_biotype "protein_coding"; +chrV SGD exon 518216 520771 . + 0 transcript_id "YER167W_id002"; gene_name "BCK2"; gene_id "YER167W"; +chrV SGD gene 520934 522724 . - . gene_id "YER168C"; gene_biotype "protein_coding"; +chrV SGD transcript 520934 522724 . - . transcript_id "YER168C_id005"; gene_id "YER168C"; gene_name "CCA1"; transcript_biotype "protein_coding"; +chrV SGD exon 520934 522724 . - . transcript_id "YER168C_id005"; gene_id "YER168C"; gene_name "CCA1"; +chrV SGD transcript 521029 522669 . - . transcript_id "YER168C_id001"; gene_id "YER168C"; gene_name "CCA1"; transcript_biotype "protein_coding"; +chrV SGD exon 521029 522669 . - 0 transcript_id "YER168C_id001"; gene_name "CCA1"; gene_id "YER168C"; +chrV SGD gene 523079 525967 . + . gene_id "YER169W"; gene_biotype "protein_coding"; +chrV SGD transcript 523079 525967 . + . transcript_id "YER169W_id001"; gene_id "YER169W"; gene_name "RPH1"; transcript_biotype "protein_coding"; +chrV SGD exon 523079 525967 . + . transcript_id "YER169W_id001"; gene_id "YER169W"; gene_name "RPH1"; +chrV SGD transcript 523369 525759 . + . transcript_id "YER169W_id002"; gene_id "YER169W"; gene_name "RPH1"; transcript_biotype "protein_coding"; +chrV SGD exon 523369 525759 . + 0 transcript_id "YER169W_id002"; gene_name "RPH1"; gene_id "YER169W"; +chrV SGD gene 525943 527033 . + . gene_id "YER170W"; gene_biotype "protein_coding"; +chrV SGD transcript 525943 527033 . + . transcript_id "YER170W_id006"; gene_id "YER170W"; gene_name "ADK2"; transcript_biotype "protein_coding"; +chrV SGD exon 525943 527033 . + . transcript_id "YER170W_id006"; gene_id "YER170W"; gene_name "ADK2"; +chrV SGD transcript 525974 526651 . + . transcript_id "YER170W_id001"; gene_id "YER170W"; gene_name "ADK2"; transcript_biotype "protein_coding"; +chrV SGD exon 525974 526651 . + 0 transcript_id "YER170W_id001"; gene_name "ADK2"; gene_id "YER170W"; +chrV SGD gene 526959 529547 . + . gene_id "YER171W"; gene_biotype "protein_coding"; +chrV SGD transcript 526959 529547 . + . transcript_id "YER171W_id003"; gene_id "YER171W"; gene_name "RAD3"; transcript_biotype "protein_coding"; +chrV SGD exon 526959 529547 . + . transcript_id "YER171W_id003"; gene_id "YER171W"; gene_name "RAD3"; +chrV SGD transcript 527082 529418 . + . transcript_id "YER171W_id001"; gene_id "YER171W"; gene_name "RAD3"; transcript_biotype "protein_coding"; +chrV SGD exon 527082 529418 . + 0 transcript_id "YER171W_id001"; gene_name "RAD3"; gene_id "YER171W"; +chrV SGD gene 529530 536021 . - . gene_id "YER172C"; gene_biotype "protein_coding"; +chrV SGD transcript 529530 536021 . - . transcript_id "YER172C_mRNA"; gene_id "YER172C"; gene_name "BRR2"; transcript_biotype "protein_coding"; +chrV SGD CDS 529530 536021 . - 0 transcript_id "YER172C_mRNA"; gene_name "BRR2"; gene_id "YER172C"; +chrV SGD gene 536275 536655 . - . gene_id "YER172C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 536275 536655 . - . transcript_id "YER172C-A_mRNA"; gene_id "YER172C-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 536275 536655 . - 0 transcript_id "YER172C-A_mRNA"; gene_id "YER172C-A"; +chrV SGD gene 536300 538279 . + . gene_id "YER173W"; gene_biotype "protein_coding"; +chrV SGD transcript 536300 538279 . + . transcript_id "YER173W_id001"; gene_id "YER173W"; gene_name "RAD24"; transcript_biotype "protein_coding"; +chrV SGD exon 536300 538279 . + 0 transcript_id "YER173W_id001"; gene_name "RAD24"; gene_id "YER173W"; +chrV SGD gene 538335 539320 . - . gene_id "YER174C"; gene_biotype "protein_coding"; +chrV SGD transcript 538335 539320 . - . transcript_id "YER174C_id001"; gene_id "YER174C"; gene_name "GRX4"; transcript_biotype "protein_coding"; +chrV SGD exon 538335 539320 . - . transcript_id "YER174C_id001"; gene_id "YER174C"; gene_name "GRX4"; +chrV SGD transcript 538434 539168 . - . transcript_id "YER174C_id005"; gene_id "YER174C"; gene_name "GRX4"; transcript_biotype "protein_coding"; +chrV SGD exon 538434 539168 . - 0 transcript_id "YER174C_id005"; gene_name "GRX4"; gene_id "YER174C"; +chrV SGD gene 539176 541451 . - . gene_id "YER175C"; gene_biotype "protein_coding"; +chrV SGD transcript 539176 541451 . - . transcript_id "YER175C_id001"; gene_id "YER175C"; gene_name "TMT1"; transcript_biotype "protein_coding"; +chrV SGD exon 539176 541451 . - . transcript_id "YER175C_id001"; gene_id "YER175C"; gene_name "TMT1"; +chrV SGD transcript 539464 540363 . - . transcript_id "YER175C_id003"; gene_id "YER175C"; gene_name "TMT1"; transcript_biotype "protein_coding"; +chrV SGD exon 539464 540363 . - 0 transcript_id "YER175C_id003"; gene_name "TMT1"; gene_id "YER175C"; +chrV SGD gene 540650 540814 . + . gene_id "YER175W-A"; gene_biotype "protein_coding"; +chrV SGD transcript 540650 540814 . + . transcript_id "YER175W-A_id001"; gene_id "YER175W-A"; transcript_biotype "protein_coding"; +chrV SGD exon 540650 540814 . + 0 transcript_id "YER175W-A_id001"; gene_id "YER175W-A"; +chrV SGD gene 541670 545169 . + . gene_id "YER176W"; gene_biotype "protein_coding"; +chrV SGD transcript 541670 545169 . + . transcript_id "YER176W_id004"; gene_id "YER176W"; gene_name "ECM32"; transcript_biotype "protein_coding"; +chrV SGD exon 541670 545169 . + . transcript_id "YER176W_id004"; gene_id "YER176W"; gene_name "ECM32"; +chrV SGD transcript 541690 545055 . + . transcript_id "YER176W_id001"; gene_id "YER176W"; gene_name "ECM32"; transcript_biotype "protein_coding"; +chrV SGD exon 541690 545055 . + 0 transcript_id "YER176W_id001"; gene_name "ECM32"; gene_id "YER176W"; +chrV SGD gene 545199 546589 . + . gene_id "YER177W"; gene_biotype "protein_coding"; +chrV SGD transcript 545199 546589 . + . transcript_id "YER177W_id002"; gene_id "YER177W"; gene_name "BMH1"; transcript_biotype "protein_coding"; +chrV SGD exon 545199 546589 . + . transcript_id "YER177W_id002"; gene_id "YER177W"; gene_name "BMH1"; +chrV SGD transcript 545611 546414 . + . transcript_id "YER177W_id001"; gene_id "YER177W"; gene_name "BMH1"; transcript_biotype "protein_coding"; +chrV SGD exon 545611 546414 . + 0 transcript_id "YER177W_id001"; gene_name "BMH1"; gene_id "YER177W"; +chrV SGD gene 546805 548344 . + . gene_id "YER178W"; gene_biotype "protein_coding"; +chrV SGD transcript 546805 548344 . + . transcript_id "YER178W_id005"; gene_id "YER178W"; gene_name "PDA1"; transcript_biotype "protein_coding"; +chrV SGD exon 546805 548344 . + . transcript_id "YER178W_id005"; gene_id "YER178W"; gene_name "PDA1"; +chrV SGD transcript 546817 548079 . + . transcript_id "YER178W_id001"; gene_id "YER178W"; gene_name "PDA1"; transcript_biotype "protein_coding"; +chrV SGD exon 546817 548079 . + 0 transcript_id "YER178W_id001"; gene_name "PDA1"; gene_id "YER178W"; +chrV SGD gene 548421 549517 . + . gene_id "YER179W"; gene_biotype "protein_coding"; +chrV SGD transcript 548421 549517 . + . transcript_id "YER179W_id001"; gene_id "YER179W"; gene_name "DMC1"; transcript_biotype "protein_coding"; +chrV SGD exon 548421 548552 . + 0 transcript_id "YER179W_id001"; gene_name "DMC1"; gene_id "YER179W"; +chrV SGD exon 548645 549517 . + 0 transcript_id "YER179W_id001"; gene_name "DMC1"; gene_id "YER179W"; +chrV SGD gene 549668 551095 . - . gene_id "YER180C"; gene_biotype "protein_coding"; +chrV SGD transcript 549668 551095 . - . transcript_id "YER180C_id001"; gene_id "YER180C"; gene_name "ISC10"; transcript_biotype "protein_coding"; +chrV SGD exon 549668 551095 . - . transcript_id "YER180C_id001"; gene_id "YER180C"; gene_name "ISC10"; +chrV SGD transcript 549724 550527 . - . transcript_id "YER180C_id002"; gene_id "YER180C"; gene_name "ISC10"; transcript_biotype "protein_coding"; +chrV SGD exon 549724 550527 . - 0 transcript_id "YER180C_id002"; gene_name "ISC10"; gene_id "YER180C"; +chrV SGD gene 550193 551170 . - . gene_id "YER180C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 550193 551170 . - . transcript_id "YER180C-A_id003"; gene_id "YER180C-A"; gene_name "SLO1"; transcript_biotype "protein_coding"; +chrV SGD exon 550193 551170 . - . transcript_id "YER180C-A_id003"; gene_id "YER180C-A"; gene_name "SLO1"; +chrV SGD transcript 550865 551122 . - . transcript_id "YER180C-A_id001"; gene_id "YER180C-A"; gene_name "SLO1"; transcript_biotype "protein_coding"; +chrV SGD exon 550865 551122 . - 0 transcript_id "YER180C-A_id001"; gene_name "SLO1"; gene_id "YER180C-A"; +chrV SGD gene 551285 551358 . - . gene_id "YNCE0029C"; gene_biotype "ncRNA"; +chrV SGD transcript 551285 551358 . - . transcript_id "YNCE0029C_tRNA"; gene_id "YNCE0029C"; transcript_biotype "ncRNA"; +chrV SGD exon 551285 551358 . - . transcript_id "YNCE0029C_tRNA"; gene_id "YNCE0029C"; +chrV SGD gene 551473 551796 . - . gene_id "YER181C"; gene_biotype "protein_coding"; +chrV SGD transcript 551473 551796 . - . transcript_id "YER181C_id001"; gene_id "YER181C"; transcript_biotype "protein_coding"; +chrV SGD exon 551473 551796 . - 0 transcript_id "YER181C_id001"; gene_id "YER181C"; +chrV SGD gene 552347 553357 . + . gene_id "YER182W"; gene_biotype "protein_coding"; +chrV SGD transcript 552347 553357 . + . transcript_id "YER182W_id002"; gene_id "YER182W"; gene_name "FMP10"; transcript_biotype "protein_coding"; +chrV SGD exon 552347 553357 . + . transcript_id "YER182W_id002"; gene_id "YER182W"; gene_name "FMP10"; +chrV SGD transcript 552525 553259 . + . transcript_id "YER182W_id001"; gene_id "YER182W"; gene_name "FMP10"; transcript_biotype "protein_coding"; +chrV SGD exon 552525 553259 . + 0 transcript_id "YER182W_id001"; gene_name "FMP10"; gene_id "YER182W"; +chrV SGD gene 553242 554032 . - . gene_id "YER183C"; gene_biotype "protein_coding"; +chrV SGD transcript 553242 554032 . - . transcript_id "YER183C_id001"; gene_id "YER183C"; gene_name "FAU1"; transcript_biotype "protein_coding"; +chrV SGD exon 553242 554032 . - . transcript_id "YER183C_id001"; gene_id "YER183C"; gene_name "FAU1"; +chrV SGD transcript 553334 553969 . - . transcript_id "YER183C_id002"; gene_id "YER183C"; gene_name "FAU1"; transcript_biotype "protein_coding"; +chrV SGD exon 553334 553969 . - 0 transcript_id "YER183C_id002"; gene_name "FAU1"; gene_id "YER183C"; +chrV SGD gene 556296 558680 . - . gene_id "YER184C"; gene_biotype "protein_coding"; +chrV SGD transcript 556296 558680 . - . transcript_id "YER184C_id001"; gene_id "YER184C"; gene_name "TOG1"; transcript_biotype "protein_coding"; +chrV SGD exon 556296 558680 . - 0 transcript_id "YER184C_id001"; gene_name "TOG1"; gene_id "YER184C"; +chrV SGD gene 558961 560400 . + . gene_id "YER185W"; gene_biotype "protein_coding"; +chrV SGD transcript 558961 560400 . + . transcript_id "YER185W_id001"; gene_id "YER185W"; gene_name "PUG1"; transcript_biotype "protein_coding"; +chrV SGD exon 558961 560400 . + . transcript_id "YER185W_id001"; gene_id "YER185W"; gene_name "PUG1"; +chrV SGD transcript 559454 560365 . + . transcript_id "YER185W_id002"; gene_id "YER185W"; gene_name "PUG1"; transcript_biotype "protein_coding"; +chrV SGD exon 559454 560365 . + 0 transcript_id "YER185W_id002"; gene_name "PUG1"; gene_id "YER185W"; +chrV SGD gene 561200 562770 . - . gene_id "YER186C"; gene_biotype "protein_coding"; +chrV SGD transcript 561200 562770 . - . transcript_id "YER186C_id002"; gene_id "YER186C"; transcript_biotype "protein_coding"; +chrV SGD exon 561200 562770 . - . transcript_id "YER186C_id002"; gene_id "YER186C"; +chrV SGD transcript 561705 562625 . - . transcript_id "YER186C_id001"; gene_id "YER186C"; transcript_biotype "protein_coding"; +chrV SGD exon 561705 562625 . - 0 transcript_id "YER186C_id001"; gene_id "YER186C"; +chrV SGD gene 565535 566856 . + . gene_id "YER187W"; gene_biotype "protein_coding"; +chrV SGD transcript 565535 566856 . + . transcript_id "YER187W_id001"; gene_id "YER187W"; transcript_biotype "protein_coding"; +chrV SGD exon 565535 566856 . + . transcript_id "YER187W_id001"; gene_id "YER187W"; +chrV SGD transcript 566230 566655 . + . transcript_id "YER187W_id005"; gene_id "YER187W"; transcript_biotype "protein_coding"; +chrV SGD exon 566230 566655 . + 0 transcript_id "YER187W_id005"; gene_id "YER187W"; +chrV SGD gene 567725 568989 . + . gene_id "YER188W"; gene_biotype "protein_coding"; +chrV SGD transcript 567725 568989 . + . transcript_id "YER188W_id002"; gene_id "YER188W"; transcript_biotype "protein_coding"; +chrV SGD exon 567725 568989 . + . transcript_id "YER188W_id002"; gene_id "YER188W"; +chrV SGD transcript 568040 568759 . + . transcript_id "YER188W_id001"; gene_id "YER188W"; transcript_biotype "protein_coding"; +chrV SGD exon 568040 568759 . + 0 transcript_id "YER188W_id001"; gene_id "YER188W"; +chrV SGD gene 569608 569907 . - . gene_id "YER188C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 569608 569907 . - . transcript_id "YER188C-A_mRNA"; gene_id "YER188C-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 569608 569907 . - 0 transcript_id "YER188C-A_mRNA"; gene_id "YER188C-A"; +chrV SGD gene 571155 571523 . + . gene_id "YER189W"; gene_biotype "protein_coding"; +chrV SGD transcript 571155 571523 . + . transcript_id "YER189W_mRNA"; gene_id "YER189W"; transcript_biotype "protein_coding"; +chrV SGD CDS 571155 571523 . + 0 transcript_id "YER189W_mRNA"; gene_id "YER189W"; +chrV SGD gene 571480 576525 . + . gene_id "YER190W"; gene_biotype "protein_coding"; +chrV SGD transcript 571480 576525 . + . transcript_id "YER190W_mRNA"; gene_id "YER190W"; gene_name "YRF1-2"; transcript_biotype "protein_coding"; +chrV SGD CDS 571480 576525 . + 0 transcript_id "YER190W_mRNA"; gene_name "YRF1-2"; gene_id "YER190W"; +chrV SGD gene 574804 575379 . - . gene_id "YER190C-A"; gene_biotype "protein_coding"; +chrV SGD transcript 574804 575379 . - . transcript_id "YER190C-A_mRNA"; gene_id "YER190C-A"; transcript_biotype "protein_coding"; +chrV SGD CDS 574804 575379 . - 0 transcript_id "YER190C-A_mRNA"; gene_id "YER190C-A"; +chrV SGD gene 575680 576162 . - . gene_id "YER190C-B"; gene_biotype "protein_coding"; +chrV SGD transcript 575680 576162 . - . transcript_id "YER190C-B_mRNA"; gene_id "YER190C-B"; transcript_biotype "protein_coding"; +chrV SGD CDS 575680 576162 . - 0 transcript_id "YER190C-B_mRNA"; gene_id "YER190C-B"; +chrVI SGD gene 53 535 . + . gene_id "YFL068W"; gene_biotype "protein_coding"; +chrVI SGD transcript 53 535 . + . transcript_id "YFL068W_mRNA"; gene_id "YFL068W"; transcript_biotype "protein_coding"; +chrVI SGD CDS 53 535 . + 0 transcript_id "YFL068W_mRNA"; gene_id "YFL068W"; +chrVI SGD gene 836 1363 . + . gene_id "YFL067W"; gene_biotype "protein_coding"; +chrVI SGD transcript 836 1363 . + . transcript_id "YFL067W_mRNA"; gene_id "YFL067W"; transcript_biotype "protein_coding"; +chrVI SGD CDS 836 1363 . + 0 transcript_id "YFL067W_mRNA"; gene_id "YFL067W"; +chrVI SGD gene 1437 2615 . - . gene_id "YFL066C"; gene_biotype "protein_coding"; +chrVI SGD transcript 1437 2615 . - . transcript_id "YFL066C_mRNA"; gene_id "YFL066C"; transcript_biotype "protein_coding"; +chrVI SGD CDS 1437 2615 . - 0 transcript_id "YFL066C_mRNA"; gene_id "YFL066C"; +chrVI SGD gene 3030 3338 . - . gene_id "YFL065C"; gene_biotype "protein_coding"; +chrVI SGD transcript 3030 3338 . - . transcript_id "YFL065C_mRNA"; gene_id "YFL065C"; transcript_biotype "protein_coding"; +chrVI SGD CDS 3030 3338 . - 0 transcript_id "YFL065C_mRNA"; gene_id "YFL065C"; +chrVI SGD gene 3322 3846 . - . gene_id "YFL064C"; gene_biotype "protein_coding"; +chrVI SGD transcript 3322 3846 . - . transcript_id "YFL064C_mRNA"; gene_id "YFL064C"; transcript_biotype "protein_coding"; +chrVI SGD CDS 3322 3846 . - 0 transcript_id "YFL064C_mRNA"; gene_id "YFL064C"; +chrVI SGD gene 5066 5521 . + . gene_id "YFL063W"; gene_biotype "protein_coding"; +chrVI SGD transcript 5066 5521 . + . transcript_id "YFL063W_mRNA"; gene_id "YFL063W"; transcript_biotype "protein_coding"; +chrVI SGD CDS 5066 5521 . + 0 transcript_id "YFL063W_mRNA"; gene_id "YFL063W"; +chrVI SGD gene 6426 7565 . + . gene_id "YFL062W"; gene_biotype "protein_coding"; +chrVI SGD transcript 6426 7565 . + . transcript_id "YFL062W_id001"; gene_id "YFL062W"; gene_name "COS4"; transcript_biotype "protein_coding"; +chrVI SGD exon 6426 7565 . + 0 transcript_id "YFL062W_id001"; gene_name "COS4"; gene_id "YFL062W"; +chrVI SGD gene 9545 10222 . + . gene_id "YFL061W"; gene_biotype "protein_coding"; +chrVI SGD transcript 9545 10222 . + . transcript_id "YFL061W_mRNA"; gene_id "YFL061W"; gene_name "DDI3"; transcript_biotype "protein_coding"; +chrVI SGD CDS 9545 10222 . + 0 transcript_id "YFL061W_mRNA"; gene_name "DDI3"; gene_id "YFL061W"; +chrVI SGD gene 10301 10969 . - . gene_id "YFL060C"; gene_biotype "protein_coding"; +chrVI SGD transcript 10301 10969 . - . transcript_id "YFL060C_mRNA"; gene_id "YFL060C"; gene_name "SNO3"; transcript_biotype "protein_coding"; +chrVI SGD CDS 10301 10969 . - 0 transcript_id "YFL060C_mRNA"; gene_name "SNO3"; gene_id "YFL060C"; +chrVI SGD gene 11363 12259 . + . gene_id "YFL059W"; gene_biotype "protein_coding"; +chrVI SGD transcript 11363 12259 . + . transcript_id "YFL059W_mRNA"; gene_id "YFL059W"; gene_name "SNZ3"; transcript_biotype "protein_coding"; +chrVI SGD CDS 11363 12259 . + 0 transcript_id "YFL059W_mRNA"; gene_name "SNZ3"; gene_id "YFL059W"; +chrVI SGD gene 12929 13951 . + . gene_id "YFL058W"; gene_biotype "protein_coding"; +chrVI SGD transcript 12929 13951 . + . transcript_id "YFL058W_mRNA"; gene_id "YFL058W"; gene_name "THI5"; transcript_biotype "protein_coding"; +chrVI SGD CDS 12929 13951 . + 0 transcript_id "YFL058W_mRNA"; gene_name "THI5"; gene_id "YFL058W"; +chrVI SGD gene 17004 18680 . + . gene_id "YFL055W"; gene_biotype "protein_coding"; +chrVI SGD transcript 17004 18680 . + . transcript_id "YFL055W_id001"; gene_id "YFL055W"; gene_name "AGP3"; transcript_biotype "protein_coding"; +chrVI SGD exon 17004 18680 . + 0 transcript_id "YFL055W_id001"; gene_name "AGP3"; gene_id "YFL055W"; +chrVI SGD gene 20847 22787 . - . gene_id "YFL054C"; gene_biotype "protein_coding"; +chrVI SGD transcript 20847 22787 . - . transcript_id "YFL054C_id001"; gene_id "YFL054C"; gene_name "AQY3"; transcript_biotype "protein_coding"; +chrVI SGD exon 20847 22787 . - 0 transcript_id "YFL054C_id001"; gene_name "AQY3"; gene_id "YFL054C"; +chrVI SGD gene 23423 25198 . + . gene_id "YFL053W"; gene_biotype "protein_coding"; +chrVI SGD transcript 23423 25198 . + . transcript_id "YFL053W_mRNA"; gene_id "YFL053W"; gene_name "DAK2"; transcript_biotype "protein_coding"; +chrVI SGD CDS 23423 25198 . + 0 transcript_id "YFL053W_mRNA"; gene_name "DAK2"; gene_id "YFL053W"; +chrVI SGD gene 28232 29629 . + . gene_id "YFL052W"; gene_biotype "protein_coding"; +chrVI SGD transcript 28232 29629 . + . transcript_id "YFL052W_id001"; gene_id "YFL052W"; gene_name "ZNF1"; transcript_biotype "protein_coding"; +chrVI SGD exon 28232 29629 . + 0 transcript_id "YFL052W_id001"; gene_name "ZNF1"; gene_id "YFL052W"; +chrVI SGD gene 30058 30540 . - . gene_id "YFL051C"; gene_biotype "protein_coding"; +chrVI SGD transcript 30058 30540 . - . transcript_id "YFL051C_mRNA"; gene_id "YFL051C"; transcript_biotype "protein_coding"; +chrVI SGD CDS 30058 30540 . - 0 transcript_id "YFL051C_mRNA"; gene_id "YFL051C"; +chrVI SGD gene 33272 35848 . - . gene_id "YFL050C"; gene_biotype "protein_coding"; +chrVI SGD transcript 33272 35848 . - . transcript_id "YFL050C_mRNA"; gene_id "YFL050C"; gene_name "ALR2"; transcript_biotype "protein_coding"; +chrVI SGD CDS 33272 35848 . - 0 transcript_id "YFL050C_mRNA"; gene_name "ALR2"; gene_id "YFL050C"; +chrVI SGD gene 36772 38821 . + . gene_id "YFL049W"; gene_biotype "protein_coding"; +chrVI SGD transcript 36772 38821 . + . transcript_id "YFL049W_id004"; gene_id "YFL049W"; gene_name "SWP82"; transcript_biotype "protein_coding"; +chrVI SGD exon 36772 38821 . + . transcript_id "YFL049W_id004"; gene_id "YFL049W"; gene_name "SWP82"; +chrVI SGD transcript 36803 38674 . + . transcript_id "YFL049W_id001"; gene_id "YFL049W"; gene_name "SWP82"; transcript_biotype "protein_coding"; +chrVI SGD exon 36803 38674 . + 0 transcript_id "YFL049W_id001"; gene_name "SWP82"; gene_id "YFL049W"; +chrVI SGD gene 38695 40222 . - . gene_id "YFL048C"; gene_biotype "protein_coding"; +chrVI SGD transcript 38695 40222 . - . transcript_id "YFL048C_id001"; gene_id "YFL048C"; gene_name "EMP47"; transcript_biotype "protein_coding"; +chrVI SGD exon 38695 40222 . - . transcript_id "YFL048C_id001"; gene_id "YFL048C"; gene_name "EMP47"; +chrVI SGD transcript 38843 40180 . - . transcript_id "YFL048C_id002"; gene_id "YFL048C"; gene_name "EMP47"; transcript_biotype "protein_coding"; +chrVI SGD exon 38843 40180 . - 0 transcript_id "YFL048C_id002"; gene_name "EMP47"; gene_id "YFL048C"; +chrVI SGD gene 40403 42665 . + . gene_id "YFL047W"; gene_biotype "protein_coding"; +chrVI SGD transcript 40403 42665 . + . transcript_id "YFL047W_id002"; gene_id "YFL047W"; gene_name "RGD2"; transcript_biotype "protein_coding"; +chrVI SGD exon 40403 42665 . + . transcript_id "YFL047W_id002"; gene_id "YFL047W"; gene_name "RGD2"; +chrVI SGD transcript 40421 42565 . + . transcript_id "YFL047W_id001"; gene_id "YFL047W"; gene_name "RGD2"; transcript_biotype "protein_coding"; +chrVI SGD exon 40421 42565 . + 0 transcript_id "YFL047W_id001"; gene_name "RGD2"; gene_id "YFL047W"; +chrVI SGD gene 42615 43587 . + . gene_id "YFL046W"; gene_biotype "protein_coding"; +chrVI SGD transcript 42615 43587 . + . transcript_id "YFL046W_id002"; gene_id "YFL046W"; gene_name "FMP32"; transcript_biotype "protein_coding"; +chrVI SGD exon 42615 43587 . + . transcript_id "YFL046W_id002"; gene_id "YFL046W"; gene_name "FMP32"; +chrVI SGD transcript 42815 43438 . + . transcript_id "YFL046W_id001"; gene_id "YFL046W"; gene_name "FMP32"; transcript_biotype "protein_coding"; +chrVI SGD exon 42815 43438 . + 0 transcript_id "YFL046W_id001"; gene_name "FMP32"; gene_id "YFL046W"; +chrVI SGD gene 43468 45460 . - . gene_id "YFL045C"; gene_biotype "protein_coding"; +chrVI SGD transcript 43468 45460 . - . transcript_id "YFL045C_id001"; gene_id "YFL045C"; gene_name "SEC53"; transcript_biotype "protein_coding"; +chrVI SGD exon 43468 45460 . - . transcript_id "YFL045C_id001"; gene_id "YFL045C"; gene_name "SEC53"; +chrVI SGD transcript 43628 44392 . - . transcript_id "YFL045C_id005"; gene_id "YFL045C"; gene_name "SEC53"; transcript_biotype "protein_coding"; +chrVI SGD exon 43628 44392 . - 0 transcript_id "YFL045C_id005"; gene_name "SEC53"; gene_id "YFL045C"; +chrVI SGD gene 44388 45595 . - . gene_id "YFL044C"; gene_biotype "protein_coding"; +chrVI SGD transcript 44388 45595 . - . transcript_id "YFL044C_id001"; gene_id "YFL044C"; gene_name "OTU1"; transcript_biotype "protein_coding"; +chrVI SGD exon 44388 45595 . - . transcript_id "YFL044C_id001"; gene_id "YFL044C"; gene_name "OTU1"; +chrVI SGD transcript 44655 45560 . - . transcript_id "YFL044C_id003"; gene_id "YFL044C"; gene_name "OTU1"; transcript_biotype "protein_coding"; +chrVI SGD exon 44655 45560 . - 0 transcript_id "YFL044C_id003"; gene_name "OTU1"; gene_id "YFL044C"; +chrVI SGD gene 45720 47744 . - . gene_id "YFL042C"; gene_biotype "protein_coding"; +chrVI SGD transcript 45720 47744 . - . transcript_id "YFL042C_id001"; gene_id "YFL042C"; gene_name "LAM5"; transcript_biotype "protein_coding"; +chrVI SGD exon 45720 47744 . - 0 transcript_id "YFL042C_id001"; gene_name "LAM5"; gene_id "YFL042C"; +chrVI SGD gene 47859 48986 . + . gene_id "YFL041W-A"; gene_biotype "protein_coding"; +chrVI SGD transcript 47859 48986 . + . transcript_id "YFL041W-A_id001"; gene_id "YFL041W-A"; transcript_biotype "protein_coding"; +chrVI SGD exon 47859 48986 . + . transcript_id "YFL041W-A_id001"; gene_id "YFL041W-A"; +chrVI SGD transcript 48734 48925 . + . transcript_id "YFL041W-A_id002"; gene_id "YFL041W-A"; transcript_biotype "protein_coding"; +chrVI SGD exon 48734 48925 . + 0 transcript_id "YFL041W-A_id002"; gene_id "YFL041W-A"; +chrVI SGD gene 49139 51007 . + . gene_id "YFL041W"; gene_biotype "protein_coding"; +chrVI SGD transcript 49139 51007 . + . transcript_id "YFL041W_id001"; gene_id "YFL041W"; gene_name "FET5"; transcript_biotype "protein_coding"; +chrVI SGD exon 49139 51007 . + 0 transcript_id "YFL041W_id001"; gene_name "FET5"; gene_id "YFL041W"; +chrVI SGD gene 51350 52972 . + . gene_id "YFL040W"; gene_biotype "protein_coding"; +chrVI SGD transcript 51350 52972 . + . transcript_id "YFL040W_mRNA"; gene_id "YFL040W"; transcript_biotype "protein_coding"; +chrVI SGD CDS 51350 52972 . + 0 transcript_id "YFL040W_mRNA"; gene_id "YFL040W"; +chrVI SGD gene 52973 54903 . - . gene_id "YFL039C"; gene_biotype "protein_coding"; +chrVI SGD transcript 52973 54903 . - . transcript_id "YFL039C_id002"; gene_id "YFL039C"; gene_name "ACT1"; transcript_biotype "protein_coding"; +chrVI SGD exon 52973 54903 . - . transcript_id "YFL039C_id002"; gene_id "YFL039C"; gene_name "ACT1"; +chrVI SGD transcript 53260 54696 . - . transcript_id "YFL039C_id001"; gene_id "YFL039C"; gene_name "ACT1"; transcript_biotype "protein_coding"; +chrVI SGD exon 53260 54377 . - 2 transcript_id "YFL039C_id001"; gene_name "ACT1"; gene_id "YFL039C"; +chrVI SGD exon 54687 54696 . - 0 transcript_id "YFL039C_id001"; gene_name "ACT1"; gene_id "YFL039C"; +chrVI SGD gene 55139 56053 . - . gene_id "YFL038C"; gene_biotype "protein_coding"; +chrVI SGD transcript 55139 56053 . - . transcript_id "YFL038C_id002"; gene_id "YFL038C"; gene_name "YPT1"; transcript_biotype "protein_coding"; +chrVI SGD exon 55139 56053 . - . transcript_id "YFL038C_id002"; gene_id "YFL038C"; gene_name "YPT1"; +chrVI SGD transcript 55366 55986 . - . transcript_id "YFL038C_id001"; gene_id "YFL038C"; gene_name "YPT1"; transcript_biotype "protein_coding"; +chrVI SGD exon 55366 55986 . - 0 transcript_id "YFL038C_id001"; gene_name "YPT1"; gene_id "YFL038C"; +chrVI SGD gene 56236 57934 . + . gene_id "YFL037W"; gene_biotype "protein_coding"; +chrVI SGD transcript 56236 57934 . + . transcript_id "YFL037W_id002"; gene_id "YFL037W"; gene_name "TUB2"; transcript_biotype "protein_coding"; +chrVI SGD exon 56236 57934 . + . transcript_id "YFL037W_id002"; gene_id "YFL037W"; gene_name "TUB2"; +chrVI SGD transcript 56336 57709 . + . transcript_id "YFL037W_id001"; gene_id "YFL037W"; gene_name "TUB2"; transcript_biotype "protein_coding"; +chrVI SGD exon 56336 57709 . + 0 transcript_id "YFL037W_id001"; gene_name "TUB2"; gene_id "YFL037W"; +chrVI SGD gene 57815 58521 . - . gene_id "YNCF0001C"; gene_biotype "ncRNA"; +chrVI SGD transcript 57815 58521 . - . transcript_id "YNCF0001C_ncRNA"; gene_id "YNCF0001C"; gene_name "RUF21"; transcript_biotype "ncRNA"; +chrVI SGD exon 57815 58521 . - . transcript_id "YNCF0001C_ncRNA"; gene_name "RUF21"; gene_id "YNCF0001C"; +chrVI SGD gene 58782 62837 . + . gene_id "YFL036W"; gene_biotype "protein_coding"; +chrVI SGD transcript 58782 62837 . + . transcript_id "YFL036W_mRNA"; gene_id "YFL036W"; gene_name "RPO41"; transcript_biotype "protein_coding"; +chrVI SGD CDS 58782 62837 . + 0 transcript_id "YFL036W_mRNA"; gene_name "RPO41"; gene_id "YFL036W"; +chrVI SGD gene 62812 64057 . - . gene_id "YFL034C-B"; gene_biotype "protein_coding"; +chrVI SGD transcript 62812 64057 . - . transcript_id "YFL034C-B_id001"; gene_id "YFL034C-B"; gene_name "MOB2"; transcript_biotype "protein_coding"; +chrVI SGD exon 62812 64057 . - . transcript_id "YFL034C-B_id001"; gene_id "YFL034C-B"; gene_name "MOB2"; +chrVI SGD transcript 63016 63993 . - . transcript_id "YFL034C-B_id002"; gene_id "YFL034C-B"; gene_name "MOB2"; transcript_biotype "protein_coding"; +chrVI SGD exon 63016 63859 . - 1 transcript_id "YFL034C-B_id002"; gene_name "MOB2"; gene_id "YFL034C-B"; +chrVI SGD exon 63974 63993 . - 0 transcript_id "YFL034C-B_id002"; gene_name "MOB2"; gene_id "YFL034C-B"; +chrVI SGD gene 64061 64977 . - . gene_id "YFL034C-A"; gene_biotype "protein_coding"; +chrVI SGD transcript 64061 64977 . - . transcript_id "YFL034C-A_id001"; gene_id "YFL034C-A"; gene_name "RPL22B"; transcript_biotype "protein_coding"; +chrVI SGD exon 64061 64977 . - . transcript_id "YFL034C-A_id001"; gene_id "YFL034C-A"; gene_name "RPL22B"; +chrVI SGD transcript 64243 64932 . - . transcript_id "YFL034C-A_id002"; gene_id "YFL034C-A"; gene_name "RPL22B"; transcript_biotype "protein_coding"; +chrVI SGD exon 64243 64599 . - 0 transcript_id "YFL034C-A_id002"; gene_name "RPL22B"; gene_id "YFL034C-A"; +chrVI SGD exon 64921 64932 . - 0 transcript_id "YFL034C-A_id002"; gene_name "RPL22B"; gene_id "YFL034C-A"; +chrVI SGD gene 65307 68810 . + . gene_id "YFL034W"; gene_biotype "protein_coding"; +chrVI SGD transcript 65307 68810 . + . transcript_id "YFL034W_id002"; gene_id "YFL034W"; gene_name "MIL1"; transcript_biotype "protein_coding"; +chrVI SGD exon 65307 68810 . + . transcript_id "YFL034W_id002"; gene_id "YFL034W"; gene_name "MIL1"; +chrVI SGD transcript 65477 68698 . + . transcript_id "YFL034W_id001"; gene_id "YFL034W"; gene_name "MIL1"; transcript_biotype "protein_coding"; +chrVI SGD exon 65477 68698 . + 0 transcript_id "YFL034W_id001"; gene_name "MIL1"; gene_id "YFL034W"; +chrVI SGD gene 69115 74427 . - . gene_id "YFL033C"; gene_biotype "protein_coding"; +chrVI SGD transcript 69115 74427 . - . transcript_id "YFL033C_mRNA"; gene_id "YFL033C"; gene_name "RIM15"; transcript_biotype "protein_coding"; +chrVI SGD CDS 69115 74427 . - 0 transcript_id "YFL033C_mRNA"; gene_name "RIM15"; gene_id "YFL033C"; +chrVI SGD gene 74872 75192 . + . gene_id "YFL032W"; gene_biotype "protein_coding"; +chrVI SGD transcript 74872 75192 . + . transcript_id "YFL032W_mRNA"; gene_id "YFL032W"; transcript_biotype "protein_coding"; +chrVI SGD CDS 74872 75192 . + 0 transcript_id "YFL032W_mRNA"; gene_id "YFL032W"; +chrVI SGD gene 75113 76624 . + . gene_id "YFL031W"; gene_biotype "protein_coding"; +chrVI SGD transcript 75113 76624 . + . transcript_id "YFL031W_id001"; gene_id "YFL031W"; gene_name "HAC1"; transcript_biotype "protein_coding"; +chrVI SGD exon 75113 76624 . + . transcript_id "YFL031W_id001"; gene_id "YFL031W"; gene_name "HAC1"; +chrVI SGD transcript 75179 76147 . + . transcript_id "YFL031W_id002"; gene_id "YFL031W"; gene_name "HAC1"; transcript_biotype "protein_coding"; +chrVI SGD exon 75179 75839 . + 0 transcript_id "YFL031W_id002"; gene_name "HAC1"; gene_id "YFL031W"; +chrVI SGD exon 76092 76147 . + 2 transcript_id "YFL031W_id002"; gene_name "HAC1"; gene_id "YFL031W"; +chrVI SGD gene 76014 76115 . - . gene_id "YFL031C-A"; gene_biotype "protein_coding"; +chrVI SGD transcript 76014 76115 . - . transcript_id "YFL031C-A_mRNA"; gene_id "YFL031C-A"; transcript_biotype "protein_coding"; +chrVI SGD CDS 76014 76115 . - 0 transcript_id "YFL031C-A_mRNA"; gene_id "YFL031C-A"; +chrVI SGD gene 76831 77988 . + . gene_id "YFL030W"; gene_biotype "protein_coding"; +chrVI SGD transcript 76831 77988 . + . transcript_id "YFL030W_id001"; gene_id "YFL030W"; gene_name "AGX1"; transcript_biotype "protein_coding"; +chrVI SGD exon 76831 77988 . + 0 transcript_id "YFL030W_id001"; gene_name "AGX1"; gene_id "YFL030W"; +chrVI SGD gene 77991 79215 . - . gene_id "YFL029C"; gene_biotype "protein_coding"; +chrVI SGD transcript 77991 79215 . - . transcript_id "YFL029C_id002"; gene_id "YFL029C"; gene_name "CAK1"; transcript_biotype "protein_coding"; +chrVI SGD exon 77991 79215 . - . transcript_id "YFL029C_id002"; gene_id "YFL029C"; gene_name "CAK1"; +chrVI SGD transcript 78055 79161 . - . transcript_id "YFL029C_id001"; gene_id "YFL029C"; gene_name "CAK1"; transcript_biotype "protein_coding"; +chrVI SGD exon 78055 79161 . - 0 transcript_id "YFL029C_id001"; gene_name "CAK1"; gene_id "YFL029C"; +chrVI SGD gene 79210 80243 . - . gene_id "YFL028C"; gene_biotype "protein_coding"; +chrVI SGD transcript 79210 80243 . - . transcript_id "YFL028C_id001"; gene_id "YFL028C"; gene_name "CAF16"; transcript_biotype "protein_coding"; +chrVI SGD exon 79210 80243 . - . transcript_id "YFL028C_id001"; gene_id "YFL028C"; gene_name "CAF16"; +chrVI SGD transcript 79344 80213 . - . transcript_id "YFL028C_id002"; gene_id "YFL028C"; gene_name "CAF16"; transcript_biotype "protein_coding"; +chrVI SGD exon 79344 80213 . - 0 transcript_id "YFL028C_id002"; gene_name "CAF16"; gene_id "YFL028C"; +chrVI SGD gene 80348 81963 . - . gene_id "YFL027C"; gene_biotype "protein_coding"; +chrVI SGD transcript 80348 81963 . - . transcript_id "YFL027C_id001"; gene_id "YFL027C"; gene_name "GYP8"; transcript_biotype "protein_coding"; +chrVI SGD exon 80348 81963 . - . transcript_id "YFL027C_id001"; gene_id "YFL027C"; gene_name "GYP8"; +chrVI SGD transcript 80419 81912 . - . transcript_id "YFL027C_id002"; gene_id "YFL027C"; gene_name "GYP8"; transcript_biotype "protein_coding"; +chrVI SGD exon 80419 81912 . - 0 transcript_id "YFL027C_id002"; gene_name "GYP8"; gene_id "YFL027C"; +chrVI SGD gene 82580 83875 . + . gene_id "YFL026W"; gene_biotype "protein_coding"; +chrVI SGD transcript 82580 83875 . + . transcript_id "YFL026W_id001"; gene_id "YFL026W"; gene_name "STE2"; transcript_biotype "protein_coding"; +chrVI SGD exon 82580 83875 . + 0 transcript_id "YFL026W_id001"; gene_name "STE2"; gene_id "YFL026W"; +chrVI SGD gene 84145 87234 . - . gene_id "YFL025C"; gene_biotype "protein_coding"; +chrVI SGD transcript 84145 87234 . - . transcript_id "YFL025C_mRNA"; gene_id "YFL025C"; gene_name "BST1"; transcript_biotype "protein_coding"; +chrVI SGD CDS 84145 87234 . - 0 transcript_id "YFL025C_mRNA"; gene_name "BST1"; gene_id "YFL025C"; +chrVI SGD gene 87443 90648 . - . gene_id "YFL024C"; gene_biotype "protein_coding"; +chrVI SGD transcript 87443 90648 . - . transcript_id "YFL024C_id001"; gene_id "YFL024C"; gene_name "EPL1"; transcript_biotype "protein_coding"; +chrVI SGD exon 87443 90648 . - . transcript_id "YFL024C_id001"; gene_id "YFL024C"; gene_name "EPL1"; +chrVI SGD transcript 87847 90345 . - . transcript_id "YFL024C_id002"; gene_id "YFL024C"; gene_name "EPL1"; transcript_biotype "protein_coding"; +chrVI SGD exon 87847 90345 . - 0 transcript_id "YFL024C_id002"; gene_name "EPL1"; gene_id "YFL024C"; +chrVI SGD gene 90962 93476 . + . gene_id "YFL023W"; gene_biotype "protein_coding"; +chrVI SGD transcript 90962 93476 . + . transcript_id "YFL023W_id002"; gene_id "YFL023W"; gene_name "BUD27"; transcript_biotype "protein_coding"; +chrVI SGD exon 90962 93476 . + . transcript_id "YFL023W_id002"; gene_id "YFL023W"; gene_name "BUD27"; +chrVI SGD transcript 90986 93376 . + . transcript_id "YFL023W_id001"; gene_id "YFL023W"; gene_name "BUD27"; transcript_biotype "protein_coding"; +chrVI SGD exon 90986 93376 . + 0 transcript_id "YFL023W_id001"; gene_name "BUD27"; gene_id "YFL023W"; +chrVI SGD gene 93384 95083 . - . gene_id "YFL022C"; gene_biotype "protein_coding"; +chrVI SGD transcript 93384 95083 . - . transcript_id "YFL022C_id005"; gene_id "YFL022C"; gene_name "FRS2"; transcript_biotype "protein_coding"; +chrVI SGD exon 93384 95083 . - . transcript_id "YFL022C_id005"; gene_id "YFL022C"; gene_name "FRS2"; +chrVI SGD transcript 93499 95010 . - . transcript_id "YFL022C_id001"; gene_id "YFL022C"; gene_name "FRS2"; transcript_biotype "protein_coding"; +chrVI SGD exon 93499 95010 . - 0 transcript_id "YFL022C_id001"; gene_name "FRS2"; gene_id "YFL022C"; +chrVI SGD gene 95761 96615 . - . gene_id "YFL021C-A"; gene_biotype "protein_coding"; +chrVI SGD transcript 95761 96615 . - . transcript_id "YFL021C-A_id001"; gene_id "YFL021C-A"; transcript_biotype "protein_coding"; +chrVI SGD exon 95761 96615 . - 0 transcript_id "YFL021C-A_id001"; gene_id "YFL021C-A"; +chrVI SGD gene 95966 97498 . + . gene_id "YFL021W"; gene_biotype "protein_coding"; +chrVI SGD transcript 95966 97498 . + . transcript_id "YFL021W_id001"; gene_id "YFL021W"; gene_name "GAT1"; transcript_biotype "protein_coding"; +chrVI SGD exon 95966 97498 . + 0 transcript_id "YFL021W_id001"; gene_name "GAT1"; gene_id "YFL021W"; +chrVI SGD gene 99116 100293 . - . gene_id "YFL020C"; gene_biotype "protein_coding"; +chrVI SGD transcript 99116 100293 . - . transcript_id "YFL020C_id001"; gene_id "YFL020C"; gene_name "PAU5"; transcript_biotype "protein_coding"; +chrVI SGD exon 99116 100293 . - . transcript_id "YFL020C_id001"; gene_id "YFL020C"; gene_name "PAU5"; +chrVI SGD transcript 99231 99599 . - . transcript_id "YFL020C_id003"; gene_id "YFL020C"; gene_name "PAU5"; transcript_biotype "protein_coding"; +chrVI SGD exon 99231 99599 . - 0 transcript_id "YFL020C_id003"; gene_name "PAU5"; gene_id "YFL020C"; +chrVI SGD gene 100252 100605 . - . gene_id "YFL019C"; gene_biotype "protein_coding"; +chrVI SGD transcript 100252 100605 . - . transcript_id "YFL019C_mRNA"; gene_id "YFL019C"; transcript_biotype "protein_coding"; +chrVI SGD CDS 100252 100605 . - 0 transcript_id "YFL019C_mRNA"; gene_id "YFL019C"; +chrVI SGD gene 101376 101478 . + . gene_id "YNCF0002W"; gene_biotype "ncRNA"; +chrVI SGD transcript 101376 101478 . + . transcript_id "YNCF0002W_tRNA"; gene_id "YNCF0002W"; gene_name "SUF9"; transcript_biotype "ncRNA"; +chrVI SGD exon 101376 101411 . + . transcript_id "YNCF0002W_tRNA"; gene_name "SUF9"; gene_id "YNCF0002W"; +chrVI SGD exon 101443 101478 . + . transcript_id "YNCF0002W_tRNA"; gene_name "SUF9"; gene_id "YNCF0002W"; +chrVI SGD gene 101497 103218 . - . gene_id "YFL018C"; gene_biotype "protein_coding"; +chrVI SGD transcript 101497 103218 . - . transcript_id "YFL018C_id001"; gene_id "YFL018C"; gene_name "LPD1"; transcript_biotype "protein_coding"; +chrVI SGD exon 101497 103218 . - . transcript_id "YFL018C_id001"; gene_id "YFL018C"; gene_name "LPD1"; +chrVI SGD transcript 101628 103127 . - . transcript_id "YFL018C_id002"; gene_id "YFL018C"; gene_name "LPD1"; transcript_biotype "protein_coding"; +chrVI SGD exon 101628 103127 . - 0 transcript_id "YFL018C_id002"; gene_name "LPD1"; gene_id "YFL018C"; +chrVI SGD gene 103365 103998 . + . gene_id "YFL017W-A"; gene_biotype "protein_coding"; +chrVI SGD transcript 103365 103998 . + . transcript_id "YFL017W-A_id002"; gene_id "YFL017W-A"; gene_name "SMX2"; transcript_biotype "protein_coding"; +chrVI SGD exon 103365 103998 . + . transcript_id "YFL017W-A_id002"; gene_id "YFL017W-A"; gene_name "SMX2"; +chrVI SGD gene 103590 104470 . - . gene_id "YFL017C"; gene_biotype "protein_coding"; +chrVI SGD transcript 103590 104470 . - . transcript_id "YFL017C_id001"; gene_id "YFL017C"; gene_name "GNA1"; transcript_biotype "protein_coding"; +chrVI SGD exon 103590 104470 . - . transcript_id "YFL017C_id001"; gene_id "YFL017C"; gene_name "GNA1"; +chrVI SGD transcript 103699 103932 . + . transcript_id "YFL017W-A_id001"; gene_id "YFL017W-A"; gene_name "SMX2"; transcript_biotype "protein_coding"; +chrVI SGD exon 103699 103932 . + 0 transcript_id "YFL017W-A_id001"; gene_name "SMX2"; gene_id "YFL017W-A"; +chrVI SGD transcript 103983 104462 . - . transcript_id "YFL017C_id004"; gene_id "YFL017C"; gene_name "GNA1"; transcript_biotype "protein_coding"; +chrVI SGD exon 103983 104462 . - 0 transcript_id "YFL017C_id004"; gene_name "GNA1"; gene_id "YFL017C"; +chrVI SGD gene 104598 106329 . - . gene_id "YFL016C"; gene_biotype "protein_coding"; +chrVI SGD transcript 104598 106329 . - . transcript_id "YFL016C_id001"; gene_id "YFL016C"; gene_name "MDJ1"; transcript_biotype "protein_coding"; +chrVI SGD exon 104598 106329 . - . transcript_id "YFL016C_id001"; gene_id "YFL016C"; gene_name "MDJ1"; +chrVI SGD transcript 104701 106236 . - . transcript_id "YFL016C_id002"; gene_id "YFL016C"; gene_name "MDJ1"; transcript_biotype "protein_coding"; +chrVI SGD exon 104701 106236 . - 0 transcript_id "YFL016C_id002"; gene_name "MDJ1"; gene_id "YFL016C"; +chrVI SGD gene 106415 106732 . + . gene_id "YFL015W-A"; gene_biotype "protein_coding"; +chrVI SGD transcript 106415 106732 . + . transcript_id "YFL015W-A_mRNA"; gene_id "YFL015W-A"; transcript_biotype "protein_coding"; +chrVI SGD CDS 106415 106732 . + 0 transcript_id "YFL015W-A_mRNA"; gene_id "YFL015W-A"; +chrVI SGD gene 106469 106963 . - . gene_id "YFL015C"; gene_biotype "protein_coding"; +chrVI SGD transcript 106469 106963 . - . transcript_id "YFL015C_mRNA"; gene_id "YFL015C"; transcript_biotype "protein_coding"; +chrVI SGD CDS 106469 106963 . - 0 transcript_id "YFL015C_mRNA"; gene_id "YFL015C"; +chrVI SGD gene 106830 107779 . + . gene_id "YFL014W"; gene_biotype "protein_coding"; +chrVI SGD transcript 106830 107779 . + . transcript_id "YFL014W_id001"; gene_id "YFL014W"; gene_name "HSP12"; transcript_biotype "protein_coding"; +chrVI SGD exon 106830 107779 . + . transcript_id "YFL014W_id001"; gene_id "YFL014W"; gene_name "HSP12"; +chrVI SGD transcript 107256 107585 . + . transcript_id "YFL014W_id002"; gene_id "YFL014W"; gene_name "HSP12"; transcript_biotype "protein_coding"; +chrVI SGD exon 107256 107585 . + 0 transcript_id "YFL014W_id002"; gene_name "HSP12"; gene_id "YFL014W"; +chrVI SGD gene 107621 110015 . - . gene_id "YFL013C"; gene_biotype "protein_coding"; +chrVI SGD transcript 107621 110015 . - . transcript_id "YFL013C_id001"; gene_id "YFL013C"; gene_name "IES1"; transcript_biotype "protein_coding"; +chrVI SGD exon 107621 110015 . - . transcript_id "YFL013C_id001"; gene_id "YFL013C"; gene_name "IES1"; +chrVI SGD gene 107799 108602 . + . gene_id "YFL013W-A"; gene_biotype "protein_coding"; +chrVI SGD transcript 107799 108602 . + . transcript_id "YFL013W-A_mRNA"; gene_id "YFL013W-A"; transcript_biotype "protein_coding"; +chrVI SGD CDS 107799 108602 . + 0 transcript_id "YFL013W-A_mRNA"; gene_id "YFL013W-A"; +chrVI SGD transcript 107852 109930 . - . transcript_id "YFL013C_id003"; gene_id "YFL013C"; gene_name "IES1"; transcript_biotype "protein_coding"; +chrVI SGD exon 107852 109930 . - 0 transcript_id "YFL013C_id003"; gene_name "IES1"; gene_id "YFL013C"; +chrVI SGD gene 109810 110184 . + . gene_id "YFL012W-A"; gene_biotype "protein_coding"; +chrVI SGD transcript 109810 110184 . + . transcript_id "YFL012W-A_mRNA"; gene_id "YFL012W-A"; transcript_biotype "protein_coding"; +chrVI SGD CDS 109810 110184 . + 0 transcript_id "YFL012W-A_mRNA"; gene_id "YFL012W-A"; +chrVI SGD gene 110586 111546 . + . gene_id "YFL012W"; gene_biotype "protein_coding"; +chrVI SGD transcript 110586 111546 . + . transcript_id "YFL012W_id001"; gene_id "YFL012W"; transcript_biotype "protein_coding"; +chrVI SGD exon 110586 111546 . + . transcript_id "YFL012W_id001"; gene_id "YFL012W"; +chrVI SGD transcript 110647 111093 . + . transcript_id "YFL012W_id006"; gene_id "YFL012W"; transcript_biotype "protein_coding"; +chrVI SGD exon 110647 111093 . + 0 transcript_id "YFL012W_id006"; gene_id "YFL012W"; +chrVI SGD gene 112345 113985 . + . gene_id "YFL011W"; gene_biotype "protein_coding"; +chrVI SGD transcript 112345 113985 . + . transcript_id "YFL011W_mRNA"; gene_id "YFL011W"; gene_name "HXT10"; transcript_biotype "protein_coding"; +chrVI SGD CDS 112345 113985 . + 0 transcript_id "YFL011W_mRNA"; gene_name "HXT10"; gene_id "YFL011W"; +chrVI SGD gene 114731 115760 . - . gene_id "YFL010C"; gene_biotype "protein_coding"; +chrVI SGD transcript 114731 115760 . - . transcript_id "YFL010C_id002"; gene_id "YFL010C"; gene_name "WWM1"; transcript_biotype "protein_coding"; +chrVI SGD exon 114731 115760 . - . transcript_id "YFL010C_id002"; gene_id "YFL010C"; gene_name "WWM1"; +chrVI SGD gene 114990 115274 . + . gene_id "YFL010W-A"; gene_biotype "protein_coding"; +chrVI SGD transcript 114990 115274 . + . transcript_id "YFL010W-A_mRNA"; gene_id "YFL010W-A"; gene_name "AUA1"; transcript_biotype "protein_coding"; +chrVI SGD CDS 114990 115274 . + 0 transcript_id "YFL010W-A_mRNA"; gene_name "AUA1"; gene_id "YFL010W-A"; +chrVI SGD transcript 115108 115743 . - . transcript_id "YFL010C_id001"; gene_id "YFL010C"; gene_name "WWM1"; transcript_biotype "protein_coding"; +chrVI SGD exon 115108 115743 . - 0 transcript_id "YFL010C_id001"; gene_name "WWM1"; gene_id "YFL010C"; +chrVI SGD gene 115965 118621 . + . gene_id "YFL009W"; gene_biotype "protein_coding"; +chrVI SGD transcript 115965 118621 . + . transcript_id "YFL009W_id001"; gene_id "YFL009W"; gene_name "CDC4"; transcript_biotype "protein_coding"; +chrVI SGD exon 115965 118621 . + . transcript_id "YFL009W_id001"; gene_id "YFL009W"; gene_name "CDC4"; +chrVI SGD transcript 116145 118484 . + . transcript_id "YFL009W_id002"; gene_id "YFL009W"; gene_name "CDC4"; transcript_biotype "protein_coding"; +chrVI SGD exon 116145 118484 . + 0 transcript_id "YFL009W_id002"; gene_name "CDC4"; gene_id "YFL009W"; +chrVI SGD gene 119429 123106 . + . gene_id "YFL008W"; gene_biotype "protein_coding"; +chrVI SGD transcript 119429 123106 . + . transcript_id "YFL008W_id001"; gene_id "YFL008W"; gene_name "SMC1"; transcript_biotype "protein_coding"; +chrVI SGD exon 119429 123106 . + 0 transcript_id "YFL008W_id001"; gene_name "SMC1"; gene_id "YFL008W"; +chrVI SGD gene 123479 129910 . + . gene_id "YFL007W"; gene_biotype "protein_coding"; +chrVI SGD transcript 123479 129910 . + . transcript_id "YFL007W_mRNA"; gene_id "YFL007W"; gene_name "BLM10"; transcript_biotype "protein_coding"; +chrVI SGD CDS 123479 129910 . + 0 transcript_id "YFL007W_mRNA"; gene_name "BLM10"; gene_id "YFL007W"; +chrVI SGD gene 130102 131202 . + . gene_id "YFL005W"; gene_biotype "protein_coding"; +chrVI SGD transcript 130102 131202 . + . transcript_id "YFL005W_id002"; gene_id "YFL005W"; gene_name "SEC4"; transcript_biotype "protein_coding"; +chrVI SGD exon 130102 131202 . + . transcript_id "YFL005W_id002"; gene_id "YFL005W"; gene_name "SEC4"; +chrVI SGD transcript 130334 130981 . + . transcript_id "YFL005W_id001"; gene_id "YFL005W"; gene_name "SEC4"; transcript_biotype "protein_coding"; +chrVI SGD exon 130334 130981 . + 0 transcript_id "YFL005W_id001"; gene_name "SEC4"; gene_id "YFL005W"; +chrVI SGD gene 131061 131503 . - . gene_id "YNCF0003C"; gene_biotype "ncRNA"; +chrVI SGD transcript 131061 131503 . - . transcript_id "YNCF0003C_ncRNA"; gene_id "YNCF0003C"; gene_name "RUF20"; transcript_biotype "ncRNA"; +chrVI SGD exon 131061 131503 . - . transcript_id "YNCF0003C_ncRNA"; gene_name "RUF20"; gene_id "YNCF0003C"; +chrVI SGD gene 131652 134510 . + . gene_id "YFL004W"; gene_biotype "protein_coding"; +chrVI SGD transcript 131652 134510 . + . transcript_id "YFL004W_id002"; gene_id "YFL004W"; gene_name "VTC2"; transcript_biotype "protein_coding"; +chrVI SGD exon 131652 134510 . + . transcript_id "YFL004W_id002"; gene_id "YFL004W"; gene_name "VTC2"; +chrVI SGD transcript 131810 134296 . + . transcript_id "YFL004W_id001"; gene_id "YFL004W"; gene_name "VTC2"; transcript_biotype "protein_coding"; +chrVI SGD exon 131810 134296 . + 0 transcript_id "YFL004W_id001"; gene_name "VTC2"; gene_id "YFL004W"; +chrVI SGD gene 134521 137157 . - . gene_id "YFL003C"; gene_biotype "protein_coding"; +chrVI SGD transcript 134521 137157 . - . transcript_id "YFL003C_mRNA"; gene_id "YFL003C"; gene_name "MSH4"; transcript_biotype "protein_coding"; +chrVI SGD CDS 134521 137157 . - 0 transcript_id "YFL003C_mRNA"; gene_name "MSH4"; gene_id "YFL003C"; +chrVI SGD gene 137486 137559 . - . gene_id "YNCF0004C"; gene_biotype "ncRNA"; +chrVI SGD transcript 137486 137559 . - . transcript_id "YNCF0004C_tRNA"; gene_id "YNCF0004C"; transcript_biotype "ncRNA"; +chrVI SGD exon 137486 137559 . - . transcript_id "YNCF0004C_tRNA"; gene_id "YNCF0004C"; +chrVI SGD gene 138204 139520 . + . gene_id "YFL002W-B"; gene_biotype "protein_coding"; +chrVI SGD transcript 138204 139520 . + . transcript_id "YFL002W-B_dummy"; gene_id "YFL002W-B"; transcript_biotype "protein_coding"; +chrVI SGD exon 138204 139520 . + 0 transcript_id "YFL002W-B_dummy"; gene_id "YFL002W-B"; +chrVI SGD gene 138204 143517 . + . gene_id "YFL002W-A"; gene_biotype "protein_coding"; +chrVI SGD transcript 138204 143517 . + . transcript_id "YFL002W-A_dummy"; gene_id "YFL002W-A"; transcript_biotype "protein_coding"; +chrVI SGD exon 138204 139496 . + 0 transcript_id "YFL002W-A_dummy"; gene_id "YFL002W-A"; +chrVI SGD exon 139498 143517 . + 0 transcript_id "YFL002W-A_dummy"; gene_id "YFL002W-A"; +chrVI SGD gene 144976 146970 . - . gene_id "YFL002C"; gene_biotype "protein_coding"; +chrVI SGD transcript 144976 146970 . - . transcript_id "YFL002C_id003"; gene_id "YFL002C"; gene_name "SPB4"; transcript_biotype "protein_coding"; +chrVI SGD exon 144976 146970 . - . transcript_id "YFL002C_id003"; gene_id "YFL002C"; gene_name "SPB4"; +chrVI SGD transcript 145114 146934 . - . transcript_id "YFL002C_id001"; gene_id "YFL002C"; gene_name "SPB4"; transcript_biotype "protein_coding"; +chrVI SGD exon 145114 146934 . - 0 transcript_id "YFL002C_id001"; gene_name "SPB4"; gene_id "YFL002C"; +chrVI SGD gene 147073 148494 . + . gene_id "YFL001W"; gene_biotype "protein_coding"; +chrVI SGD transcript 147073 148494 . + . transcript_id "YFL001W_id002"; gene_id "YFL001W"; gene_name "DEG1"; transcript_biotype "protein_coding"; +chrVI SGD exon 147073 148494 . + . transcript_id "YFL001W_id002"; gene_id "YFL001W"; gene_name "DEG1"; +chrVI SGD transcript 147131 148459 . + . transcript_id "YFL001W_id001"; gene_id "YFL001W"; gene_name "DEG1"; transcript_biotype "protein_coding"; +chrVI SGD exon 147131 148459 . + 0 transcript_id "YFL001W_id001"; gene_name "DEG1"; gene_id "YFL001W"; +chrVI SGD gene 148988 149850 . + . gene_id "YFR001W"; gene_biotype "protein_coding"; +chrVI SGD transcript 148988 149850 . + . transcript_id "YFR001W_id002"; gene_id "YFR001W"; gene_name "LOC1"; transcript_biotype "protein_coding"; +chrVI SGD exon 148988 149850 . + . transcript_id "YFR001W_id002"; gene_id "YFR001W"; gene_name "LOC1"; +chrVI SGD transcript 149110 149724 . + . transcript_id "YFR001W_id001"; gene_id "YFR001W"; gene_name "LOC1"; transcript_biotype "protein_coding"; +chrVI SGD exon 149110 149724 . + 0 transcript_id "YFR001W_id001"; gene_name "LOC1"; gene_id "YFR001W"; +chrVI SGD gene 149988 152650 . + . gene_id "YFR002W"; gene_biotype "protein_coding"; +chrVI SGD transcript 149988 152650 . + . transcript_id "YFR002W_id002"; gene_id "YFR002W"; gene_name "NIC96"; transcript_biotype "protein_coding"; +chrVI SGD exon 149988 152650 . + . transcript_id "YFR002W_id002"; gene_id "YFR002W"; gene_name "NIC96"; +chrVI SGD transcript 150016 152535 . + . transcript_id "YFR002W_id001"; gene_id "YFR002W"; gene_name "NIC96"; transcript_biotype "protein_coding"; +chrVI SGD exon 150016 152535 . + 0 transcript_id "YFR002W_id001"; gene_name "NIC96"; gene_id "YFR002W"; +chrVI SGD gene 152443 153187 . - . gene_id "YFR003C"; gene_biotype "protein_coding"; +chrVI SGD transcript 152443 153187 . - . transcript_id "YFR003C_id002"; gene_id "YFR003C"; gene_name "YPI1"; transcript_biotype "protein_coding"; +chrVI SGD exon 152443 153187 . - . transcript_id "YFR003C_id002"; gene_id "YFR003C"; gene_name "YPI1"; +chrVI SGD transcript 152657 153124 . - . transcript_id "YFR003C_id001"; gene_id "YFR003C"; gene_name "YPI1"; transcript_biotype "protein_coding"; +chrVI SGD exon 152657 153124 . - 0 transcript_id "YFR003C_id001"; gene_name "YPI1"; gene_id "YFR003C"; +chrVI SGD gene 153322 154412 . + . gene_id "YFR004W"; gene_biotype "protein_coding"; +chrVI SGD transcript 153322 154412 . + . transcript_id "YFR004W_id003"; gene_id "YFR004W"; gene_name "RPN11"; transcript_biotype "protein_coding"; +chrVI SGD exon 153322 154412 . + . transcript_id "YFR004W_id003"; gene_id "YFR004W"; gene_name "RPN11"; +chrVI SGD transcript 153393 154313 . + . transcript_id "YFR004W_id001"; gene_id "YFR004W"; gene_name "RPN11"; transcript_biotype "protein_coding"; +chrVI SGD exon 153393 154313 . + 0 transcript_id "YFR004W_id001"; gene_name "RPN11"; gene_id "YFR004W"; +chrVI SGD gene 154273 155920 . - . gene_id "YFR005C"; gene_biotype "protein_coding"; +chrVI SGD transcript 154273 155920 . - . transcript_id "YFR005C_id002"; gene_id "YFR005C"; gene_name "SAD1"; transcript_biotype "protein_coding"; +chrVI SGD exon 154273 155920 . - . transcript_id "YFR005C_id002"; gene_id "YFR005C"; gene_name "SAD1"; +chrVI SGD transcript 154527 155873 . - . transcript_id "YFR005C_id001"; gene_id "YFR005C"; gene_name "SAD1"; transcript_biotype "protein_coding"; +chrVI SGD exon 154527 155873 . - 0 transcript_id "YFR005C_id001"; gene_name "SAD1"; gene_id "YFR005C"; +chrVI SGD gene 155862 157840 . + . gene_id "YFR006W"; gene_biotype "protein_coding"; +chrVI SGD transcript 155862 157840 . + . transcript_id "YFR006W_id001"; gene_id "YFR006W"; transcript_biotype "protein_coding"; +chrVI SGD exon 155862 157840 . + . transcript_id "YFR006W_id001"; gene_id "YFR006W"; +chrVI SGD transcript 156145 157752 . + . transcript_id "YFR006W_id003"; gene_id "YFR006W"; transcript_biotype "protein_coding"; +chrVI SGD exon 156145 157752 . + 0 transcript_id "YFR006W_id003"; gene_id "YFR006W"; +chrVI SGD gene 157916 158007 . - . gene_id "YNCF0005C"; gene_biotype "ncRNA"; +chrVI SGD transcript 157916 158007 . - . transcript_id "YNCF0005C_tRNA"; gene_id "YNCF0005C"; transcript_biotype "ncRNA"; +chrVI SGD exon 157916 157951 . - . transcript_id "YNCF0005C_tRNA"; gene_id "YNCF0005C"; +chrVI SGD exon 157971 158007 . - . transcript_id "YNCF0005C_tRNA"; gene_id "YNCF0005C"; +chrVI SGD gene 159224 160429 . + . gene_id "YFR007W"; gene_biotype "protein_coding"; +chrVI SGD transcript 159224 160429 . + . transcript_id "YFR007W_id001"; gene_id "YFR007W"; gene_name "YFH7"; transcript_biotype "protein_coding"; +chrVI SGD exon 159224 160429 . + . transcript_id "YFR007W_id001"; gene_id "YFR007W"; gene_name "YFH7"; +chrVI SGD transcript 159299 160360 . + . transcript_id "YFR007W_id002"; gene_id "YFR007W"; gene_name "YFH7"; transcript_biotype "protein_coding"; +chrVI SGD exon 159299 160360 . + 0 transcript_id "YFR007W_id002"; gene_name "YFH7"; gene_id "YFR007W"; +chrVI SGD gene 160196 161547 . + . gene_id "YFR008W"; gene_biotype "protein_coding"; +chrVI SGD transcript 160196 161547 . + . transcript_id "YFR008W_id001"; gene_id "YFR008W"; gene_name "FAR7"; transcript_biotype "protein_coding"; +chrVI SGD exon 160196 161547 . + . transcript_id "YFR008W_id001"; gene_id "YFR008W"; gene_name "FAR7"; +chrVI SGD transcript 160535 161200 . + . transcript_id "YFR008W_id002"; gene_id "YFR008W"; gene_name "FAR7"; transcript_biotype "protein_coding"; +chrVI SGD exon 160535 161200 . + 0 transcript_id "YFR008W_id002"; gene_name "FAR7"; gene_id "YFR008W"; +chrVI SGD gene 162228 162298 . + . gene_id "YNCF0006W"; gene_biotype "ncRNA"; +chrVI SGD transcript 162228 162298 . + . transcript_id "YNCF0006W_tRNA"; gene_id "YNCF0006W"; gene_name "SUF20"; transcript_biotype "ncRNA"; +chrVI SGD exon 162228 162298 . + . transcript_id "YNCF0006W_tRNA"; gene_name "SUF20"; gene_id "YNCF0006W"; +chrVI SGD gene 162488 164746 . + . gene_id "YFR009W"; gene_biotype "protein_coding"; +chrVI SGD transcript 162488 164746 . + . transcript_id "YFR009W_id001"; gene_id "YFR009W"; gene_name "GCN20"; transcript_biotype "protein_coding"; +chrVI SGD exon 162488 164746 . + 0 transcript_id "YFR009W_id001"; gene_name "GCN20"; gene_id "YFR009W"; +chrVI SGD gene 162827 164940 . + . gene_id "YFR009W-A"; gene_biotype "protein_coding"; +chrVI SGD transcript 162827 164940 . + . transcript_id "YFR009W-A_id001"; gene_id "YFR009W-A"; transcript_biotype "protein_coding"; +chrVI SGD exon 162827 164940 . + . transcript_id "YFR009W-A_id001"; gene_id "YFR009W-A"; +chrVI SGD transcript 163875 164132 . + . transcript_id "YFR009W-A_id002"; gene_id "YFR009W-A"; transcript_biotype "protein_coding"; +chrVI SGD exon 163875 164132 . + 0 transcript_id "YFR009W-A_id002"; gene_id "YFR009W-A"; +chrVI SGD gene 164975 166660 . + . gene_id "YFR010W"; gene_biotype "protein_coding"; +chrVI SGD transcript 164975 166660 . + . transcript_id "YFR010W_id002"; gene_id "YFR010W"; gene_name "UBP6"; transcript_biotype "protein_coding"; +chrVI SGD exon 164975 166660 . + . transcript_id "YFR010W_id002"; gene_id "YFR010W"; gene_name "UBP6"; +chrVI SGD transcript 165067 166566 . + . transcript_id "YFR010W_id001"; gene_id "YFR010W"; gene_name "UBP6"; transcript_biotype "protein_coding"; +chrVI SGD exon 165067 166566 . + 0 transcript_id "YFR010W_id001"; gene_name "UBP6"; gene_id "YFR010W"; +chrVI SGD gene 166525 167302 . - . gene_id "YFR011C"; gene_biotype "protein_coding"; +chrVI SGD transcript 166525 167302 . - . transcript_id "YFR011C_id001"; gene_id "YFR011C"; gene_name "MIC19"; transcript_biotype "protein_coding"; +chrVI SGD exon 166525 167302 . - . transcript_id "YFR011C_id001"; gene_id "YFR011C"; gene_name "MIC19"; +chrVI SGD gene 166728 166916 . + . gene_id "YFR010W-A"; gene_biotype "protein_coding"; +chrVI SGD transcript 166728 166916 . + . transcript_id "YFR010W-A_mRNA"; gene_id "YFR010W-A"; transcript_biotype "protein_coding"; +chrVI SGD CDS 166728 166916 . + 0 transcript_id "YFR010W-A_mRNA"; gene_id "YFR010W-A"; +chrVI SGD transcript 166746 167258 . - . transcript_id "YFR011C_id002"; gene_id "YFR011C"; gene_name "MIC19"; transcript_biotype "protein_coding"; +chrVI SGD exon 166746 167258 . - 0 transcript_id "YFR011C_id002"; gene_name "MIC19"; gene_id "YFR011C"; +chrVI SGD gene 167437 167525 . + . gene_id "YNCF0007W"; gene_biotype "ncRNA"; +chrVI SGD transcript 167437 167525 . + . transcript_id "YNCF0007W_tRNA"; gene_id "YNCF0007W"; gene_name "SUP11"; transcript_biotype "ncRNA"; +chrVI SGD exon 167437 167475 . + . transcript_id "YNCF0007W_tRNA"; gene_name "SUP11"; gene_id "YNCF0007W"; +chrVI SGD exon 167490 167525 . + . transcript_id "YNCF0007W_tRNA"; gene_name "SUP11"; gene_id "YNCF0007W"; +chrVI SGD gene 167888 168496 . + . gene_id "YFR012W"; gene_biotype "protein_coding"; +chrVI SGD transcript 167888 168496 . + . transcript_id "YFR012W_mRNA"; gene_id "YFR012W"; gene_name "DCV1"; transcript_biotype "protein_coding"; +chrVI SGD CDS 167888 168496 . + 0 transcript_id "YFR012W_mRNA"; gene_name "DCV1"; gene_id "YFR012W"; +chrVI SGD gene 167964 169543 . + . gene_id "YFR012W-A"; gene_biotype "protein_coding"; +chrVI SGD transcript 167964 169543 . + . transcript_id "YFR012W-A_id001"; gene_id "YFR012W-A"; transcript_biotype "protein_coding"; +chrVI SGD exon 167964 169543 . + . transcript_id "YFR012W-A_id001"; gene_id "YFR012W-A"; +chrVI SGD transcript 169224 169310 . + . transcript_id "YFR012W-A_id002"; gene_id "YFR012W-A"; transcript_biotype "protein_coding"; +chrVI SGD exon 169224 169310 . + 0 transcript_id "YFR012W-A_id002"; gene_id "YFR012W-A"; +chrVI SGD gene 169866 172427 . + . gene_id "YFR013W"; gene_biotype "protein_coding"; +chrVI SGD transcript 169866 172427 . + . transcript_id "YFR013W_id002"; gene_id "YFR013W"; gene_name "IOC3"; transcript_biotype "protein_coding"; +chrVI SGD exon 169866 172427 . + . transcript_id "YFR013W_id002"; gene_id "YFR013W"; gene_name "IOC3"; +chrVI SGD transcript 169922 172285 . + . transcript_id "YFR013W_id001"; gene_id "YFR013W"; gene_name "IOC3"; transcript_biotype "protein_coding"; +chrVI SGD exon 169922 172285 . + 0 transcript_id "YFR013W_id001"; gene_name "IOC3"; gene_id "YFR013W"; +chrVI SGD gene 172315 174005 . - . gene_id "YFR014C"; gene_biotype "protein_coding"; +chrVI SGD transcript 172315 174005 . - . transcript_id "YFR014C_id002"; gene_id "YFR014C"; gene_name "CMK1"; transcript_biotype "protein_coding"; +chrVI SGD exon 172315 174005 . - . transcript_id "YFR014C_id002"; gene_id "YFR014C"; gene_name "CMK1"; +chrVI SGD transcript 172537 173877 . - . transcript_id "YFR014C_id001"; gene_id "YFR014C"; gene_name "CMK1"; transcript_biotype "protein_coding"; +chrVI SGD exon 172537 173877 . - 0 transcript_id "YFR014C_id001"; gene_name "CMK1"; gene_id "YFR014C"; +chrVI SGD gene 174088 176480 . - . gene_id "YFR015C"; gene_biotype "protein_coding"; +chrVI SGD transcript 174088 176480 . - . transcript_id "YFR015C_id003"; gene_id "YFR015C"; gene_name "GSY1"; transcript_biotype "protein_coding"; +chrVI SGD exon 174088 176480 . - . transcript_id "YFR015C_id003"; gene_id "YFR015C"; gene_name "GSY1"; +chrVI SGD transcript 174265 176391 . - . transcript_id "YFR015C_id001"; gene_id "YFR015C"; gene_name "GSY1"; transcript_biotype "protein_coding"; +chrVI SGD exon 174265 176391 . - 0 transcript_id "YFR015C_id001"; gene_name "GSY1"; gene_id "YFR015C"; +chrVI SGD gene 176998 180837 . - . gene_id "YFR016C"; gene_biotype "protein_coding"; +chrVI SGD transcript 176998 180837 . - . transcript_id "YFR016C_id002"; gene_id "YFR016C"; gene_name "AIP5"; transcript_biotype "protein_coding"; +chrVI SGD exon 176998 180837 . - . transcript_id "YFR016C_id002"; gene_id "YFR016C"; gene_name "AIP5"; +chrVI SGD transcript 177042 180743 . - . transcript_id "YFR016C_id001"; gene_id "YFR016C"; gene_name "AIP5"; transcript_biotype "protein_coding"; +chrVI SGD exon 177042 180743 . - 0 transcript_id "YFR016C_id001"; gene_name "AIP5"; gene_id "YFR016C"; +chrVI SGD gene 180974 181044 . - . gene_id "YNCF0008C"; gene_biotype "ncRNA"; +chrVI SGD transcript 180974 181044 . - . transcript_id "YNCF0008C_tRNA"; gene_id "YNCF0008C"; transcript_biotype "ncRNA"; +chrVI SGD exon 180974 181044 . - . transcript_id "YNCF0008C_tRNA"; gene_id "YNCF0008C"; +chrVI SGD gene 182154 183837 . - . gene_id "YFR017C"; gene_biotype "protein_coding"; +chrVI SGD transcript 182154 183837 . - . transcript_id "YFR017C_id001"; gene_id "YFR017C"; gene_name "IGD1"; transcript_biotype "protein_coding"; +chrVI SGD exon 182154 183837 . - . transcript_id "YFR017C_id001"; gene_id "YFR017C"; gene_name "IGD1"; +chrVI SGD transcript 182274 182861 . - . transcript_id "YFR017C_id004"; gene_id "YFR017C"; gene_name "IGD1"; transcript_biotype "protein_coding"; +chrVI SGD exon 182274 182861 . - 0 transcript_id "YFR017C_id004"; gene_name "IGD1"; gene_id "YFR017C"; +chrVI SGD gene 182957 184282 . - . gene_id "YFR018C"; gene_biotype "protein_coding"; +chrVI SGD transcript 182957 184282 . - . transcript_id "YFR018C_id006"; gene_id "YFR018C"; transcript_biotype "protein_coding"; +chrVI SGD exon 182957 184282 . - . transcript_id "YFR018C_id006"; gene_id "YFR018C"; +chrVI SGD transcript 183131 184222 . - . transcript_id "YFR018C_id001"; gene_id "YFR018C"; transcript_biotype "protein_coding"; +chrVI SGD exon 183131 184222 . - 0 transcript_id "YFR018C_id001"; gene_id "YFR018C"; +chrVI SGD gene 184502 191338 . + . gene_id "YFR019W"; gene_biotype "protein_coding"; +chrVI SGD transcript 184502 191338 . + . transcript_id "YFR019W_mRNA"; gene_id "YFR019W"; gene_name "FAB1"; transcript_biotype "protein_coding"; +chrVI SGD CDS 184502 191338 . + 0 transcript_id "YFR019W_mRNA"; gene_name "FAB1"; gene_id "YFR019W"; +chrVI SGD gene 191513 191613 . - . gene_id "YNCF0009C"; gene_biotype "ncRNA"; +chrVI SGD transcript 191513 191613 . - . transcript_id "YNCF0009C_tRNA"; gene_id "YNCF0009C"; transcript_biotype "ncRNA"; +chrVI SGD exon 191513 191557 . - . transcript_id "YNCF0009C_tRNA"; gene_id "YNCF0009C"; +chrVI SGD exon 191577 191613 . - . transcript_id "YNCF0009C_tRNA"; gene_id "YNCF0009C"; +chrVI SGD gene 191794 193833 . + . gene_id "YFR020W"; gene_biotype "protein_coding"; +chrVI SGD transcript 191794 193833 . + . transcript_id "YFR020W_id002"; gene_id "YFR020W"; gene_name "CSS2"; transcript_biotype "protein_coding"; +chrVI SGD exon 191794 193833 . + . transcript_id "YFR020W_id002"; gene_id "YFR020W"; gene_name "CSS2"; +chrVI SGD transcript 192737 193435 . + . transcript_id "YFR020W_id001"; gene_id "YFR020W"; gene_name "CSS2"; transcript_biotype "protein_coding"; +chrVI SGD exon 192737 193435 . + 0 transcript_id "YFR020W_id001"; gene_name "CSS2"; gene_id "YFR020W"; +chrVI SGD gene 194697 196512 . + . gene_id "YFR021W"; gene_biotype "protein_coding"; +chrVI SGD transcript 194697 196512 . + . transcript_id "YFR021W_id001"; gene_id "YFR021W"; gene_name "ATG18"; transcript_biotype "protein_coding"; +chrVI SGD exon 194697 196512 . + . transcript_id "YFR021W_id001"; gene_id "YFR021W"; gene_name "ATG18"; +chrVI SGD transcript 194812 196314 . + . transcript_id "YFR021W_id002"; gene_id "YFR021W"; gene_name "ATG18"; transcript_biotype "protein_coding"; +chrVI SGD exon 194812 196314 . + 0 transcript_id "YFR021W_id002"; gene_name "ATG18"; gene_id "YFR021W"; +chrVI SGD gene 196565 199196 . + . gene_id "YFR022W"; gene_biotype "protein_coding"; +chrVI SGD transcript 196565 199196 . + . transcript_id "YFR022W_id001"; gene_id "YFR022W"; gene_name "ROG3"; transcript_biotype "protein_coding"; +chrVI SGD exon 196565 199196 . + . transcript_id "YFR022W_id001"; gene_id "YFR022W"; gene_name "ROG3"; +chrVI SGD transcript 196833 199034 . + . transcript_id "YFR022W_id003"; gene_id "YFR022W"; gene_name "ROG3"; transcript_biotype "protein_coding"; +chrVI SGD exon 196833 199034 . + 0 transcript_id "YFR022W_id003"; gene_name "ROG3"; gene_id "YFR022W"; +chrVI SGD gene 199299 199813 . - . gene_id "YNCF0010C"; gene_biotype "ncRNA"; +chrVI SGD transcript 199299 199813 . - . transcript_id "YNCF0010C_ncRNA"; gene_id "YNCF0010C"; gene_name "RUF22"; transcript_biotype "ncRNA"; +chrVI SGD exon 199299 199813 . - . transcript_id "YNCF0010C_ncRNA"; gene_name "RUF22"; gene_id "YNCF0010C"; +chrVI SGD gene 199874 201709 . + . gene_id "YFR023W"; gene_biotype "protein_coding"; +chrVI SGD transcript 199874 201709 . + . transcript_id "YFR023W_mRNA"; gene_id "YFR023W"; gene_name "PES4"; transcript_biotype "protein_coding"; +chrVI SGD CDS 199874 201709 . + 0 transcript_id "YFR023W_mRNA"; gene_name "PES4"; gene_id "YFR023W"; +chrVI SGD gene 201729 203658 . - . gene_id "YFR024C-A"; gene_biotype "protein_coding"; +chrVI SGD transcript 201729 203658 . - . transcript_id "YFR024C-A_id001"; gene_id "YFR024C-A"; gene_name "LSB3"; transcript_biotype "protein_coding"; +chrVI SGD exon 201729 203658 . - . transcript_id "YFR024C-A_id001"; gene_id "YFR024C-A"; gene_name "LSB3"; +chrVI SGD transcript 201960 203433 . - . transcript_id "YFR024C-A_id003"; gene_id "YFR024C-A"; gene_name "LSB3"; transcript_biotype "protein_coding"; +chrVI SGD exon 201960 203292 . - 1 transcript_id "YFR024C-A_id003"; gene_name "LSB3"; gene_id "YFR024C-A"; +chrVI SGD exon 203387 203433 . - 0 transcript_id "YFR024C-A_id003"; gene_name "LSB3"; gene_id "YFR024C-A"; +chrVI SGD gene 203600 204790 . - . gene_id "YFR025C"; gene_biotype "protein_coding"; +chrVI SGD transcript 203600 204790 . - . transcript_id "YFR025C_id003"; gene_id "YFR025C"; gene_name "HIS2"; transcript_biotype "protein_coding"; +chrVI SGD exon 203600 204790 . - . transcript_id "YFR025C_id003"; gene_id "YFR025C"; gene_name "HIS2"; +chrVI SGD transcript 203743 204750 . - . transcript_id "YFR025C_id001"; gene_id "YFR025C"; gene_name "HIS2"; transcript_biotype "protein_coding"; +chrVI SGD exon 203743 204750 . - 0 transcript_id "YFR025C_id001"; gene_name "HIS2"; gene_id "YFR025C"; +chrVI SGD gene 204924 204996 . - . gene_id "YNCF0011C"; gene_biotype "ncRNA"; +chrVI SGD transcript 204924 204996 . - . transcript_id "YNCF0011C_tRNA"; gene_id "YNCF0011C"; transcript_biotype "ncRNA"; +chrVI SGD exon 204924 204996 . - . transcript_id "YNCF0011C_tRNA"; gene_id "YNCF0011C"; +chrVI SGD gene 205502 207225 . - . gene_id "YFR026C"; gene_biotype "protein_coding"; +chrVI SGD transcript 205502 207225 . - . transcript_id "YFR026C_id002"; gene_id "YFR026C"; gene_name "ULI1"; transcript_biotype "protein_coding"; +chrVI SGD exon 205502 207225 . - . transcript_id "YFR026C_id002"; gene_id "YFR026C"; gene_name "ULI1"; +chrVI SGD transcript 205748 206257 . - . transcript_id "YFR026C_id001"; gene_id "YFR026C"; gene_name "ULI1"; transcript_biotype "protein_coding"; +chrVI SGD exon 205748 206257 . - 0 transcript_id "YFR026C_id001"; gene_name "ULI1"; gene_id "YFR026C"; +chrVI SGD gene 207380 208430 . + . gene_id "YFR027W"; gene_biotype "protein_coding"; +chrVI SGD transcript 207380 208430 . + . transcript_id "YFR027W_id001"; gene_id "YFR027W"; gene_name "ECO1"; transcript_biotype "protein_coding"; +chrVI SGD exon 207380 208430 . + . transcript_id "YFR027W_id001"; gene_id "YFR027W"; gene_name "ECO1"; +chrVI SGD transcript 207452 208297 . + . transcript_id "YFR027W_id002"; gene_id "YFR027W"; gene_name "ECO1"; transcript_biotype "protein_coding"; +chrVI SGD exon 207452 208297 . + 0 transcript_id "YFR027W_id002"; gene_name "ECO1"; gene_id "YFR027W"; +chrVI SGD gene 208337 210160 . - . gene_id "YFR028C"; gene_biotype "protein_coding"; +chrVI SGD transcript 208337 210160 . - . transcript_id "YFR028C_id001"; gene_id "YFR028C"; gene_name "CDC14"; transcript_biotype "protein_coding"; +chrVI SGD exon 208337 210160 . - . transcript_id "YFR028C_id001"; gene_id "YFR028C"; gene_name "CDC14"; +chrVI SGD transcript 208413 210068 . - . transcript_id "YFR028C_id003"; gene_id "YFR028C"; gene_name "CDC14"; transcript_biotype "protein_coding"; +chrVI SGD exon 208413 210068 . - 0 transcript_id "YFR028C_id003"; gene_name "CDC14"; gene_id "YFR028C"; +chrVI SGD gene 210619 210707 . - . gene_id "YNCF0012C"; gene_biotype "ncRNA"; +chrVI SGD transcript 210619 210707 . - . transcript_id "YNCF0012C_tRNA"; gene_id "YNCF0012C"; gene_name "SUP6"; transcript_biotype "ncRNA"; +chrVI SGD exon 210619 210654 . - . transcript_id "YNCF0012C_tRNA"; gene_name "SUP6"; gene_id "YNCF0012C"; +chrVI SGD exon 210669 210707 . - . transcript_id "YNCF0012C_tRNA"; gene_name "SUP6"; gene_id "YNCF0012C"; +chrVI SGD gene 210837 213045 . + . gene_id "YFR029W"; gene_biotype "protein_coding"; +chrVI SGD transcript 210837 213045 . + . transcript_id "YFR029W_id001"; gene_id "YFR029W"; gene_name "PTR3"; transcript_biotype "protein_coding"; +chrVI SGD exon 210837 213045 . + . transcript_id "YFR029W_id001"; gene_id "YFR029W"; gene_name "PTR3"; +chrVI SGD transcript 210937 212973 . + . transcript_id "YFR029W_id002"; gene_id "YFR029W"; gene_name "PTR3"; transcript_biotype "protein_coding"; +chrVI SGD exon 210937 212973 . + 0 transcript_id "YFR029W_id002"; gene_name "PTR3"; gene_id "YFR029W"; +chrVI SGD gene 213193 216476 . + . gene_id "YFR030W"; gene_biotype "protein_coding"; +chrVI SGD transcript 213193 216476 . + . transcript_id "YFR030W_id002"; gene_id "YFR030W"; gene_name "MET10"; transcript_biotype "protein_coding"; +chrVI SGD exon 213193 216476 . + . transcript_id "YFR030W_id002"; gene_id "YFR030W"; gene_name "MET10"; +chrVI SGD transcript 213312 216419 . + . transcript_id "YFR030W_id001"; gene_id "YFR030W"; gene_name "MET10"; transcript_biotype "protein_coding"; +chrVI SGD exon 213312 216419 . + 0 transcript_id "YFR030W_id001"; gene_name "MET10"; gene_id "YFR030W"; +chrVI SGD gene 216594 220106 . - . gene_id "YFR031C"; gene_biotype "protein_coding"; +chrVI SGD transcript 216594 220106 . - . transcript_id "YFR031C_mRNA"; gene_id "YFR031C"; gene_name "SMC2"; transcript_biotype "protein_coding"; +chrVI SGD CDS 216594 220106 . - 0 transcript_id "YFR031C_mRNA"; gene_name "SMC2"; gene_id "YFR031C"; +chrVI SGD gene 220319 221767 . - . gene_id "YFR031C-A"; gene_biotype "protein_coding"; +chrVI SGD transcript 220319 221767 . - . transcript_id "YFR031C-A_id001"; gene_id "YFR031C-A"; gene_name "RPL2A"; transcript_biotype "protein_coding"; +chrVI SGD exon 220319 221767 . - . transcript_id "YFR031C-A_id001"; gene_id "YFR031C-A"; gene_name "RPL2A"; +chrVI SGD transcript 220507 221418 . - . transcript_id "YFR031C-A_id002"; gene_id "YFR031C-A"; gene_name "RPL2A"; transcript_biotype "protein_coding"; +chrVI SGD exon 220507 221267 . - 2 transcript_id "YFR031C-A_id002"; gene_name "RPL2A"; gene_id "YFR031C-A"; +chrVI SGD exon 221415 221418 . - 0 transcript_id "YFR031C-A_id002"; gene_name "RPL2A"; gene_id "YFR031C-A"; +chrVI SGD gene 221714 221967 . + . gene_id "YNCF0013W"; gene_biotype "ncRNA"; +chrVI SGD transcript 221714 221967 . + . transcript_id "YNCF0013W_ncRNA"; gene_id "YNCF0013W"; gene_name "RUF23"; transcript_biotype "ncRNA"; +chrVI SGD exon 221714 221967 . + . transcript_id "YNCF0013W_ncRNA"; gene_name "RUF23"; gene_id "YNCF0013W"; +chrVI SGD gene 221988 223036 . - . gene_id "YFR032C"; gene_biotype "protein_coding"; +chrVI SGD transcript 221988 223036 . - . transcript_id "YFR032C_id002"; gene_id "YFR032C"; gene_name "RRT5"; transcript_biotype "protein_coding"; +chrVI SGD exon 221988 223036 . - . transcript_id "YFR032C_id002"; gene_id "YFR032C"; gene_name "RRT5"; +chrVI SGD transcript 222090 222959 . - . transcript_id "YFR032C_id001"; gene_id "YFR032C"; gene_name "RRT5"; transcript_biotype "protein_coding"; +chrVI SGD exon 222090 222959 . - 0 transcript_id "YFR032C_id001"; gene_name "RRT5"; gene_id "YFR032C"; +chrVI SGD gene 223162 223964 . - . gene_id "YFR032C-A"; gene_biotype "protein_coding"; +chrVI SGD transcript 223162 223964 . - . transcript_id "YFR032C-A_id002"; gene_id "YFR032C-A"; gene_name "RPL29"; transcript_biotype "protein_coding"; +chrVI SGD exon 223162 223964 . - . transcript_id "YFR032C-A_id002"; gene_id "YFR032C-A"; gene_name "RPL29"; +chrVI SGD transcript 223258 223771 . - . transcript_id "YFR032C-A_id001"; gene_id "YFR032C-A"; gene_name "RPL29"; transcript_biotype "protein_coding"; +chrVI SGD exon 223258 223437 . - . transcript_id "YFR032C-A_id001"; gene_name "RPL29"; gene_id "YFR032C-A"; +chrVI SGD exon 223441 223771 . - . transcript_id "YFR032C-A_id001"; gene_name "RPL29"; gene_id "YFR032C-A"; +chrVI SGD exon 223258 223437 . - 0 transcript_id "YFR032C-A_id001"; gene_name "RPL29"; gene_id "YFR032C-A"; +chrVI SGD gene 223710 223973 . - . gene_id "YFR032C-B"; gene_biotype "protein_coding"; +chrVI SGD transcript 223710 223973 . - . transcript_id "YFR032C-B_mRNA"; gene_id "YFR032C-B"; gene_name "MIN10"; transcript_biotype "protein_coding"; +chrVI SGD CDS 223710 223973 . - 0 transcript_id "YFR032C-B_mRNA"; gene_name "MIN10"; gene_id "YFR032C-B"; +chrVI SGD gene 224182 225525 . - . gene_id "YFR033C"; gene_biotype "protein_coding"; +chrVI SGD transcript 224182 225525 . - . transcript_id "YFR033C_id003"; gene_id "YFR033C"; gene_name "QCR6"; transcript_biotype "protein_coding"; +chrVI SGD exon 224182 225525 . - . transcript_id "YFR033C_id003"; gene_id "YFR033C"; gene_name "QCR6"; +chrVI SGD transcript 224326 224769 . - . transcript_id "YFR033C_id001"; gene_id "YFR033C"; gene_name "QCR6"; transcript_biotype "protein_coding"; +chrVI SGD exon 224326 224769 . - 0 transcript_id "YFR033C_id001"; gene_name "QCR6"; gene_id "YFR033C"; +chrVI SGD gene 225020 225958 . - . gene_id "YFR034C"; gene_biotype "protein_coding"; +chrVI SGD transcript 225020 225958 . - . transcript_id "YFR034C_id001"; gene_id "YFR034C"; gene_name "PHO4"; transcript_biotype "protein_coding"; +chrVI SGD exon 225020 225958 . - 0 transcript_id "YFR034C_id001"; gene_name "PHO4"; gene_id "YFR034C"; +chrVI SGD gene 225560 226609 . + . gene_id "YFR034W-A"; gene_biotype "protein_coding"; +chrVI SGD transcript 225560 226609 . + . transcript_id "YFR034W-A_id003"; gene_id "YFR034W-A"; transcript_biotype "protein_coding"; +chrVI SGD exon 225560 226609 . + . transcript_id "YFR034W-A_id003"; gene_id "YFR034W-A"; +chrVI SGD transcript 226022 226309 . + . transcript_id "YFR034W-A_id001"; gene_id "YFR034W-A"; transcript_biotype "protein_coding"; +chrVI SGD exon 226022 226309 . + 0 transcript_id "YFR034W-A_id001"; gene_id "YFR034W-A"; +chrVI SGD gene 226121 226465 . - . gene_id "YFR035C"; gene_biotype "protein_coding"; +chrVI SGD transcript 226121 226465 . - . transcript_id "YFR035C_mRNA"; gene_id "YFR035C"; transcript_biotype "protein_coding"; +chrVI SGD CDS 226121 226465 . - 0 transcript_id "YFR035C_mRNA"; gene_id "YFR035C"; +chrVI SGD gene 226688 226760 . - . gene_id "YNCF0014C"; gene_biotype "ncRNA"; +chrVI SGD transcript 226688 226760 . - . transcript_id "YNCF0014C_tRNA"; gene_id "YNCF0014C"; transcript_biotype "ncRNA"; +chrVI SGD exon 226688 226760 . - . transcript_id "YNCF0014C_tRNA"; gene_id "YNCF0014C"; +chrVI SGD gene 226913 227476 . + . gene_id "YFR036W"; gene_biotype "protein_coding"; +chrVI SGD transcript 226913 227476 . + . transcript_id "YFR036W_id007"; gene_id "YFR036W"; gene_name "CDC26"; transcript_biotype "protein_coding"; +chrVI SGD exon 226913 227476 . + . transcript_id "YFR036W_id007"; gene_id "YFR036W"; gene_name "CDC26"; +chrVI SGD transcript 226963 227337 . + . transcript_id "YFR036W_id001"; gene_id "YFR036W"; gene_name "CDC26"; transcript_biotype "protein_coding"; +chrVI SGD exon 226963 227337 . + 0 transcript_id "YFR036W_id001"; gene_name "CDC26"; gene_id "YFR036W"; +chrVI SGD gene 227336 229219 . - . gene_id "YFR037C"; gene_biotype "protein_coding"; +chrVI SGD transcript 227336 229219 . - . transcript_id "YFR037C_id001"; gene_id "YFR037C"; gene_name "RSC8"; transcript_biotype "protein_coding"; +chrVI SGD exon 227336 229219 . - . transcript_id "YFR037C_id001"; gene_id "YFR037C"; gene_name "RSC8"; +chrVI SGD gene 227451 228101 . + . gene_id "YFR036W-A"; gene_biotype "protein_coding"; +chrVI SGD transcript 227451 228101 . + . transcript_id "YFR036W-A_mRNA"; gene_id "YFR036W-A"; transcript_biotype "protein_coding"; +chrVI SGD CDS 227451 228101 . + 0 transcript_id "YFR036W-A_mRNA"; gene_id "YFR036W-A"; +chrVI SGD transcript 227513 229186 . - . transcript_id "YFR037C_id003"; gene_id "YFR037C"; gene_name "RSC8"; transcript_biotype "protein_coding"; +chrVI SGD exon 227513 229186 . - 0 transcript_id "YFR037C_id003"; gene_name "RSC8"; gene_id "YFR037C"; +chrVI SGD gene 229362 232029 . + . gene_id "YFR038W"; gene_biotype "protein_coding"; +chrVI SGD transcript 229362 232029 . + . transcript_id "YFR038W_id002"; gene_id "YFR038W"; gene_name "IRC5"; transcript_biotype "protein_coding"; +chrVI SGD exon 229362 232029 . + . transcript_id "YFR038W_id002"; gene_id "YFR038W"; gene_name "IRC5"; +chrVI SGD transcript 229380 231941 . + . transcript_id "YFR038W_id001"; gene_id "YFR038W"; gene_name "IRC5"; transcript_biotype "protein_coding"; +chrVI SGD exon 229380 231941 . + 0 transcript_id "YFR038W_id001"; gene_name "IRC5"; gene_id "YFR038W"; +chrVI SGD gene 231945 233687 . - . gene_id "YFR039C"; gene_biotype "protein_coding"; +chrVI SGD transcript 231945 233687 . - . transcript_id "YFR039C_id001"; gene_id "YFR039C"; gene_name "OSW7"; transcript_biotype "protein_coding"; +chrVI SGD exon 231945 233687 . - . transcript_id "YFR039C_id001"; gene_id "YFR039C"; gene_name "OSW7"; +chrVI SGD transcript 232012 233544 . - . transcript_id "YFR039C_id003"; gene_id "YFR039C"; gene_name "OSW7"; transcript_biotype "protein_coding"; +chrVI SGD exon 232012 233544 . - 0 transcript_id "YFR039C_id003"; gene_name "OSW7"; gene_id "YFR039C"; +chrVI SGD gene 234242 237250 . + . gene_id "YFR040W"; gene_biotype "protein_coding"; +chrVI SGD transcript 234242 237250 . + . transcript_id "YFR040W_id001"; gene_id "YFR040W"; gene_name "SAP155"; transcript_biotype "protein_coding"; +chrVI SGD exon 234242 237250 . + 0 transcript_id "YFR040W_id001"; gene_name "SAP155"; gene_id "YFR040W"; +chrVI SGD gene 237233 238300 . - . gene_id "YFR041C"; gene_biotype "protein_coding"; +chrVI SGD transcript 237233 238300 . - . transcript_id "YFR041C_id003"; gene_id "YFR041C"; gene_name "ERJ5"; transcript_biotype "protein_coding"; +chrVI SGD exon 237233 238300 . - . transcript_id "YFR041C_id003"; gene_id "YFR041C"; gene_name "ERJ5"; +chrVI SGD transcript 237368 238255 . - . transcript_id "YFR041C_id001"; gene_id "YFR041C"; gene_name "ERJ5"; transcript_biotype "protein_coding"; +chrVI SGD exon 237368 238255 . - 0 transcript_id "YFR041C_id001"; gene_name "ERJ5"; gene_id "YFR041C"; +chrVI SGD gene 238413 239385 . + . gene_id "YFR042W"; gene_biotype "protein_coding"; +chrVI SGD transcript 238413 239385 . + . transcript_id "YFR042W_id005"; gene_id "YFR042W"; gene_name "KEG1"; transcript_biotype "protein_coding"; +chrVI SGD exon 238413 239385 . + . transcript_id "YFR042W_id005"; gene_id "YFR042W"; gene_name "KEG1"; +chrVI SGD transcript 238458 239060 . + . transcript_id "YFR042W_id001"; gene_id "YFR042W"; gene_name "KEG1"; transcript_biotype "protein_coding"; +chrVI SGD exon 238458 239060 . + 0 transcript_id "YFR042W_id001"; gene_name "KEG1"; gene_id "YFR042W"; +chrVI SGD gene 239039 239867 . - . gene_id "YFR043C"; gene_biotype "protein_coding"; +chrVI SGD transcript 239039 239867 . - . transcript_id "YFR043C_id002"; gene_id "YFR043C"; gene_name "IRC6"; transcript_biotype "protein_coding"; +chrVI SGD exon 239039 239867 . - . transcript_id "YFR043C_id002"; gene_id "YFR043C"; gene_name "IRC6"; +chrVI SGD transcript 239114 239827 . - . transcript_id "YFR043C_id001"; gene_id "YFR043C"; gene_name "IRC6"; transcript_biotype "protein_coding"; +chrVI SGD exon 239114 239827 . - 0 transcript_id "YFR043C_id001"; gene_name "IRC6"; gene_id "YFR043C"; +chrVI SGD gene 239944 241661 . - . gene_id "YFR044C"; gene_biotype "protein_coding"; +chrVI SGD transcript 239944 241661 . - . transcript_id "YFR044C_id007"; gene_id "YFR044C"; gene_name "DUG1"; transcript_biotype "protein_coding"; +chrVI SGD exon 239944 241661 . - . transcript_id "YFR044C_id007"; gene_id "YFR044C"; gene_name "DUG1"; +chrVI SGD transcript 239992 241437 . - . transcript_id "YFR044C_id001"; gene_id "YFR044C"; gene_name "DUG1"; transcript_biotype "protein_coding"; +chrVI SGD exon 239992 241437 . - 0 transcript_id "YFR044C_id001"; gene_name "DUG1"; gene_id "YFR044C"; +chrVI SGD gene 241982 243136 . + . gene_id "YFR045W"; gene_biotype "protein_coding"; +chrVI SGD transcript 241982 243136 . + . transcript_id "YFR045W_id005"; gene_id "YFR045W"; gene_name "MRX20"; transcript_biotype "protein_coding"; +chrVI SGD exon 241982 243136 . + . transcript_id "YFR045W_id005"; gene_id "YFR045W"; gene_name "MRX20"; +chrVI SGD transcript 241998 242999 . + . transcript_id "YFR045W_id001"; gene_id "YFR045W"; gene_name "MRX20"; transcript_biotype "protein_coding"; +chrVI SGD exon 241998 242009 . + 0 transcript_id "YFR045W_id001"; gene_name "MRX20"; gene_id "YFR045W"; +chrVI SGD exon 242082 242999 . + 0 transcript_id "YFR045W_id001"; gene_name "MRX20"; gene_id "YFR045W"; +chrVI SGD gene 242814 244179 . - . gene_id "YFR046C"; gene_biotype "protein_coding"; +chrVI SGD transcript 242814 244179 . - . transcript_id "YFR046C_id001"; gene_id "YFR046C"; gene_name "CNN1"; transcript_biotype "protein_coding"; +chrVI SGD exon 242814 244179 . - . transcript_id "YFR046C_id001"; gene_id "YFR046C"; gene_name "CNN1"; +chrVI SGD transcript 243074 244159 . - . transcript_id "YFR046C_id002"; gene_id "YFR046C"; gene_name "CNN1"; transcript_biotype "protein_coding"; +chrVI SGD exon 243074 244159 . - 0 transcript_id "YFR046C_id002"; gene_name "CNN1"; gene_id "YFR046C"; +chrVI SGD gene 244007 245201 . - . gene_id "YFR047C"; gene_biotype "protein_coding"; +chrVI SGD transcript 244007 245201 . - . transcript_id "YFR047C_id002"; gene_id "YFR047C"; gene_name "BNA6"; transcript_biotype "protein_coding"; +chrVI SGD exon 244007 245201 . - . transcript_id "YFR047C_id002"; gene_id "YFR047C"; gene_name "BNA6"; +chrVI SGD transcript 244279 245166 . - . transcript_id "YFR047C_id001"; gene_id "YFR047C"; gene_name "BNA6"; transcript_biotype "protein_coding"; +chrVI SGD exon 244279 245166 . - 0 transcript_id "YFR047C_id001"; gene_name "BNA6"; gene_id "YFR047C"; +chrVI SGD gene 246108 248209 . + . gene_id "YFR048W"; gene_biotype "protein_coding"; +chrVI SGD transcript 246108 248209 . + . transcript_id "YFR048W_id002"; gene_id "YFR048W"; gene_name "RMD8"; transcript_biotype "protein_coding"; +chrVI SGD exon 246108 248209 . + . transcript_id "YFR048W_id002"; gene_id "YFR048W"; gene_name "RMD8"; +chrVI SGD transcript 246146 248134 . + . transcript_id "YFR048W_id001"; gene_id "YFR048W"; gene_name "RMD8"; transcript_biotype "protein_coding"; +chrVI SGD exon 246146 248134 . + 0 transcript_id "YFR048W_id001"; gene_name "RMD8"; gene_id "YFR048W"; +chrVI SGD gene 248350 249125 . + . gene_id "YFR049W"; gene_biotype "protein_coding"; +chrVI SGD transcript 248350 249125 . + . transcript_id "YFR049W_id003"; gene_id "YFR049W"; gene_name "YMR31"; transcript_biotype "protein_coding"; +chrVI SGD exon 248350 249125 . + . transcript_id "YFR049W_id003"; gene_id "YFR049W"; gene_name "YMR31"; +chrVI SGD transcript 248523 248894 . + . transcript_id "YFR049W_id001"; gene_id "YFR049W"; gene_name "YMR31"; transcript_biotype "protein_coding"; +chrVI SGD exon 248523 248894 . + 0 transcript_id "YFR049W_id001"; gene_name "YMR31"; gene_id "YFR049W"; +chrVI SGD gene 248900 249947 . - . gene_id "YFR050C"; gene_biotype "protein_coding"; +chrVI SGD transcript 248900 249947 . - . transcript_id "YFR050C_id001"; gene_id "YFR050C"; gene_name "PRE4"; transcript_biotype "protein_coding"; +chrVI SGD exon 248900 249947 . - . transcript_id "YFR050C_id001"; gene_id "YFR050C"; gene_name "PRE4"; +chrVI SGD transcript 249066 249866 . - . transcript_id "YFR050C_id002"; gene_id "YFR050C"; gene_name "PRE4"; transcript_biotype "protein_coding"; +chrVI SGD exon 249066 249866 . - 0 transcript_id "YFR050C_id002"; gene_name "PRE4"; gene_id "YFR050C"; +chrVI SGD gene 250047 251842 . - . gene_id "YFR051C"; gene_biotype "protein_coding"; +chrVI SGD transcript 250047 251842 . - . transcript_id "YFR051C_id002"; gene_id "YFR051C"; gene_name "RET2"; transcript_biotype "protein_coding"; +chrVI SGD exon 250047 251842 . - . transcript_id "YFR051C_id002"; gene_id "YFR051C"; gene_name "RET2"; +chrVI SGD transcript 250163 251803 . - . transcript_id "YFR051C_id001"; gene_id "YFR051C"; gene_name "RET2"; transcript_biotype "protein_coding"; +chrVI SGD exon 250163 251803 . - 0 transcript_id "YFR051C_id001"; gene_name "RET2"; gene_id "YFR051C"; +chrVI SGD gene 252446 253577 . + . gene_id "YFR052W"; gene_biotype "protein_coding"; +chrVI SGD transcript 252446 253577 . + . transcript_id "YFR052W_id001"; gene_id "YFR052W"; gene_name "RPN12"; transcript_biotype "protein_coding"; +chrVI SGD exon 252446 253577 . + . transcript_id "YFR052W_id001"; gene_id "YFR052W"; gene_name "RPN12"; +chrVI SGD transcript 252505 253329 . + . transcript_id "YFR052W_id002"; gene_id "YFR052W"; gene_name "RPN12"; transcript_biotype "protein_coding"; +chrVI SGD exon 252505 253329 . + 0 transcript_id "YFR052W_id002"; gene_name "RPN12"; gene_id "YFR052W"; +chrVI SGD gene 253422 254620 . - . gene_id "YFR052C-A"; gene_biotype "protein_coding"; +chrVI SGD transcript 253422 254620 . - . transcript_id "YFR052C-A_id013"; gene_id "YFR052C-A"; transcript_biotype "protein_coding"; +chrVI SGD exon 253422 254620 . - . transcript_id "YFR052C-A_id013"; gene_id "YFR052C-A"; +chrVI SGD transcript 253429 253734 . - . transcript_id "YFR052C-A_id001"; gene_id "YFR052C-A"; transcript_biotype "protein_coding"; +chrVI SGD exon 253429 253734 . - 0 transcript_id "YFR052C-A_id001"; gene_id "YFR052C-A"; +chrVI SGD gene 253523 255160 . - . gene_id "YFR053C"; gene_biotype "protein_coding"; +chrVI SGD transcript 253523 255160 . - . transcript_id "YFR053C_id030"; gene_id "YFR053C"; gene_name "HXK1"; transcript_biotype "protein_coding"; +chrVI SGD exon 253523 255160 . - . transcript_id "YFR053C_id030"; gene_id "YFR053C"; gene_name "HXK1"; +chrVI SGD transcript 253592 255049 . - . transcript_id "YFR053C_id001"; gene_id "YFR053C"; gene_name "HXK1"; transcript_biotype "protein_coding"; +chrVI SGD exon 253592 255049 . - 0 transcript_id "YFR053C_id001"; gene_name "HXK1"; gene_id "YFR053C"; +chrVI SGD gene 258855 259433 . - . gene_id "YFR054C"; gene_biotype "protein_coding"; +chrVI SGD transcript 258855 259433 . - . transcript_id "YFR054C_id001"; gene_id "YFR054C"; transcript_biotype "protein_coding"; +chrVI SGD exon 258855 259433 . - 0 transcript_id "YFR054C_id001"; gene_id "YFR054C"; +chrVI SGD gene 263663 265704 . + . gene_id "YFR055W"; gene_biotype "protein_coding"; +chrVI SGD transcript 263663 265704 . + . transcript_id "YFR055W_id001"; gene_id "YFR055W"; gene_name "IRC7"; transcript_biotype "protein_coding"; +chrVI SGD exon 263663 265704 . + . transcript_id "YFR055W_id001"; gene_id "YFR055W"; gene_name "IRC7"; +chrVI SGD gene 263957 264325 . - . gene_id "YFR056C"; gene_biotype "protein_coding"; +chrVI SGD transcript 263957 264325 . - . transcript_id "YFR056C_mRNA"; gene_id "YFR056C"; transcript_biotype "protein_coding"; +chrVI SGD CDS 263957 264325 . - 0 transcript_id "YFR056C_mRNA"; gene_id "YFR056C"; +chrVI SGD transcript 264204 265226 . + . transcript_id "YFR055W_id002"; gene_id "YFR055W"; gene_name "IRC7"; transcript_biotype "protein_coding"; +chrVI SGD exon 264204 265226 . + 0 transcript_id "YFR055W_id002"; gene_name "IRC7"; gene_id "YFR055W"; +chrVI SGD gene 269061 269516 . + . gene_id "YFR057W"; gene_biotype "protein_coding"; +chrVI SGD transcript 269061 269516 . + . transcript_id "YFR057W_mRNA"; gene_id "YFR057W"; transcript_biotype "protein_coding"; +chrVI SGD CDS 269061 269516 . + 0 transcript_id "YFR057W_mRNA"; gene_id "YFR057W"; +chrVII SGD gene 2778 4081 . + . gene_id "YGL263W"; gene_biotype "protein_coding"; +chrVII SGD transcript 2778 4081 . + . transcript_id "YGL263W_id002"; gene_id "YGL263W"; gene_name "COS12"; transcript_biotype "protein_coding"; +chrVII SGD exon 2778 4081 . + . transcript_id "YGL263W_id002"; gene_id "YGL263W"; gene_name "COS12"; +chrVII SGD transcript 2790 3932 . + . transcript_id "YGL263W_id001"; gene_id "YGL263W"; gene_name "COS12"; transcript_biotype "protein_coding"; +chrVII SGD exon 2790 3932 . + 0 transcript_id "YGL263W_id001"; gene_name "COS12"; gene_id "YGL263W"; +chrVII SGD gene 5312 5839 . + . gene_id "YGL262W"; gene_biotype "protein_coding"; +chrVII SGD transcript 5312 5839 . + . transcript_id "YGL262W_mRNA"; gene_id "YGL262W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 5312 5839 . + 0 transcript_id "YGL262W_mRNA"; gene_id "YGL262W"; +chrVII SGD gene 6290 6652 . - . gene_id "YGL261C"; gene_biotype "protein_coding"; +chrVII SGD transcript 6290 6652 . - . transcript_id "YGL261C_mRNA"; gene_id "YGL261C"; gene_name "PAU11"; transcript_biotype "protein_coding"; +chrVII SGD CDS 6290 6652 . - 0 transcript_id "YGL261C_mRNA"; gene_name "PAU11"; gene_id "YGL261C"; +chrVII SGD gene 6860 7090 . + . gene_id "YGL260W"; gene_biotype "protein_coding"; +chrVII SGD transcript 6860 7090 . + . transcript_id "YGL260W_mRNA"; gene_id "YGL260W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 6860 7090 . + 0 transcript_id "YGL260W_mRNA"; gene_id "YGL260W"; +chrVII SGD gene 8470 8967 . + . gene_id "YGL259W"; gene_biotype "protein_coding"; +chrVII SGD transcript 8470 8967 . + . transcript_id "YGL259W_mRNA"; gene_id "YGL259W"; gene_name "YPS5"; transcript_biotype "protein_coding"; +chrVII SGD CDS 8470 8967 . + 0 transcript_id "YGL259W_mRNA"; gene_name "YPS5"; gene_id "YGL259W"; +chrVII SGD gene 9162 9395 . + . gene_id "YGL258W-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 9162 9395 . + . transcript_id "YGL258W-A_mRNA"; gene_id "YGL258W-A"; transcript_biotype "protein_coding"; +chrVII SGD CDS 9162 9395 . + 0 transcript_id "YGL258W-A_mRNA"; gene_id "YGL258W-A"; +chrVII SGD gene 10443 12004 . + . gene_id "YGL258W"; gene_biotype "protein_coding"; +chrVII SGD transcript 10443 12004 . + . transcript_id "YGL258W_id001"; gene_id "YGL258W"; gene_name "VEL1"; transcript_biotype "protein_coding"; +chrVII SGD exon 10443 12004 . + . transcript_id "YGL258W_id001"; gene_id "YGL258W"; gene_name "VEL1"; +chrVII SGD transcript 11110 11730 . + . transcript_id "YGL258W_id002"; gene_id "YGL258W"; gene_name "VEL1"; transcript_biotype "protein_coding"; +chrVII SGD exon 11110 11730 . + 0 transcript_id "YGL258W_id002"; gene_name "VEL1"; gene_id "YGL258W"; +chrVII SGD gene 12274 14321 . - . gene_id "YGL257C"; gene_biotype "protein_coding"; +chrVII SGD transcript 12274 14321 . - . transcript_id "YGL257C_id002"; gene_id "YGL257C"; gene_name "MNT2"; transcript_biotype "protein_coding"; +chrVII SGD exon 12274 14321 . - . transcript_id "YGL257C_id002"; gene_id "YGL257C"; gene_name "MNT2"; +chrVII SGD transcript 12481 14157 . - . transcript_id "YGL257C_id001"; gene_id "YGL257C"; gene_name "MNT2"; transcript_biotype "protein_coding"; +chrVII SGD exon 12481 14157 . - 0 transcript_id "YGL257C_id001"; gene_name "MNT2"; gene_id "YGL257C"; +chrVII SGD gene 15159 16307 . + . gene_id "YGL256W"; gene_biotype "protein_coding"; +chrVII SGD transcript 15159 16307 . + . transcript_id "YGL256W_id001"; gene_id "YGL256W"; gene_name "ADH4"; transcript_biotype "protein_coding"; +chrVII SGD exon 15159 16307 . + 0 transcript_id "YGL256W_id001"; gene_name "ADH4"; gene_id "YGL256W"; +chrVII SGD gene 20662 22212 . + . gene_id "YGL255W"; gene_biotype "protein_coding"; +chrVII SGD transcript 20662 22212 . + . transcript_id "YGL255W_id002"; gene_id "YGL255W"; gene_name "ZRT1"; transcript_biotype "protein_coding"; +chrVII SGD exon 20662 22212 . + . transcript_id "YGL255W_id002"; gene_id "YGL255W"; gene_name "ZRT1"; +chrVII SGD transcript 20978 22108 . + . transcript_id "YGL255W_id001"; gene_id "YGL255W"; gene_name "ZRT1"; transcript_biotype "protein_coding"; +chrVII SGD exon 20978 22108 . + 0 transcript_id "YGL255W_id001"; gene_name "ZRT1"; gene_id "YGL255W"; +chrVII SGD gene 22289 23948 . + . gene_id "YGL254W"; gene_biotype "protein_coding"; +chrVII SGD transcript 22289 23948 . + . transcript_id "YGL254W_id004"; gene_id "YGL254W"; gene_name "FZF1"; transcript_biotype "protein_coding"; +chrVII SGD exon 22289 23948 . + . transcript_id "YGL254W_id004"; gene_id "YGL254W"; gene_name "FZF1"; +chrVII SGD transcript 22304 23203 . + . transcript_id "YGL254W_id001"; gene_id "YGL254W"; gene_name "FZF1"; transcript_biotype "protein_coding"; +chrVII SGD exon 22304 23203 . + 0 transcript_id "YGL254W_id001"; gene_name "FZF1"; gene_id "YGL254W"; +chrVII SGD gene 23813 25581 . + . gene_id "YGL253W"; gene_biotype "protein_coding"; +chrVII SGD transcript 23813 25581 . + . transcript_id "YGL253W_id005"; gene_id "YGL253W"; gene_name "HXK2"; transcript_biotype "protein_coding"; +chrVII SGD exon 23813 25581 . + . transcript_id "YGL253W_id005"; gene_id "YGL253W"; gene_name "HXK2"; +chrVII SGD transcript 23935 25395 . + . transcript_id "YGL253W_id001"; gene_id "YGL253W"; gene_name "HXK2"; transcript_biotype "protein_coding"; +chrVII SGD exon 23935 25395 . + 0 transcript_id "YGL253W_id001"; gene_name "HXK2"; gene_id "YGL253W"; +chrVII SGD gene 25495 27515 . - . gene_id "YGL252C"; gene_biotype "protein_coding"; +chrVII SGD transcript 25495 27515 . - . transcript_id "YGL252C_id003"; gene_id "YGL252C"; gene_name "RTG2"; transcript_biotype "protein_coding"; +chrVII SGD exon 25495 27515 . - . transcript_id "YGL252C_id003"; gene_id "YGL252C"; gene_name "RTG2"; +chrVII SGD transcript 25718 27484 . - . transcript_id "YGL252C_id001"; gene_id "YGL252C"; gene_name "RTG2"; transcript_biotype "protein_coding"; +chrVII SGD exon 25718 27484 . - 0 transcript_id "YGL252C_id001"; gene_name "RTG2"; gene_id "YGL252C"; +chrVII SGD gene 27921 31636 . - . gene_id "YGL251C"; gene_biotype "protein_coding"; +chrVII SGD transcript 27921 31636 . - . transcript_id "YGL251C_mRNA"; gene_id "YGL251C"; gene_name "HFM1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 27921 31426 . - 2 transcript_id "YGL251C_mRNA"; gene_name "HFM1"; gene_id "YGL251C"; +chrVII SGD CDS 31579 31636 . - 0 transcript_id "YGL251C_mRNA"; gene_name "HFM1"; gene_id "YGL251C"; +chrVII SGD gene 31875 32937 . + . gene_id "YGL250W"; gene_biotype "protein_coding"; +chrVII SGD transcript 31875 32937 . + . transcript_id "YGL250W_id006"; gene_id "YGL250W"; gene_name "RMR1"; transcript_biotype "protein_coding"; +chrVII SGD exon 31875 32937 . + . transcript_id "YGL250W_id006"; gene_id "YGL250W"; gene_name "RMR1"; +chrVII SGD transcript 31910 32635 . + . transcript_id "YGL250W_id001"; gene_id "YGL250W"; gene_name "RMR1"; transcript_biotype "protein_coding"; +chrVII SGD exon 31910 32635 . + 0 transcript_id "YGL250W_id001"; gene_name "RMR1"; gene_id "YGL250W"; +chrVII SGD gene 33098 35212 . + . gene_id "YGL249W"; gene_biotype "protein_coding"; +chrVII SGD transcript 33098 35212 . + . transcript_id "YGL249W_mRNA"; gene_id "YGL249W"; gene_name "ZIP2"; transcript_biotype "protein_coding"; +chrVII SGD CDS 33098 35212 . + 0 transcript_id "YGL249W_mRNA"; gene_name "ZIP2"; gene_id "YGL249W"; +chrVII SGD gene 33109 35013 . - . gene_id "YNCG0001C"; gene_biotype "ncRNA"; +chrVII SGD transcript 33109 35013 . - . transcript_id "YNCG0001C_ncRNA"; gene_id "YNCG0001C"; gene_name "RME3"; transcript_biotype "ncRNA"; +chrVII SGD exon 33109 35013 . - . transcript_id "YNCG0001C_ncRNA"; gene_name "RME3"; gene_id "YNCG0001C"; +chrVII SGD gene 35531 37153 . + . gene_id "YGL248W"; gene_biotype "protein_coding"; +chrVII SGD transcript 35531 37153 . + . transcript_id "YGL248W_id003"; gene_id "YGL248W"; gene_name "PDE1"; transcript_biotype "protein_coding"; +chrVII SGD exon 35531 37153 . + . transcript_id "YGL248W_id003"; gene_id "YGL248W"; gene_name "PDE1"; +chrVII SGD transcript 35653 36762 . + . transcript_id "YGL248W_id001"; gene_id "YGL248W"; gene_name "PDE1"; transcript_biotype "protein_coding"; +chrVII SGD exon 35653 36762 . + 0 transcript_id "YGL248W_id001"; gene_name "PDE1"; gene_id "YGL248W"; +chrVII SGD gene 36913 37677 . + . gene_id "YGL247W"; gene_biotype "protein_coding"; +chrVII SGD transcript 36913 37677 . + . transcript_id "YGL247W_id001"; gene_id "YGL247W"; gene_name "BRR6"; transcript_biotype "protein_coding"; +chrVII SGD exon 36913 37677 . + . transcript_id "YGL247W_id001"; gene_id "YGL247W"; gene_name "BRR6"; +chrVII SGD transcript 36933 37526 . + . transcript_id "YGL247W_id010"; gene_id "YGL247W"; gene_name "BRR6"; transcript_biotype "protein_coding"; +chrVII SGD exon 36933 37526 . + 0 transcript_id "YGL247W_id010"; gene_name "BRR6"; gene_id "YGL247W"; +chrVII SGD gene 37469 38851 . - . gene_id "YGL246C"; gene_biotype "protein_coding"; +chrVII SGD transcript 37469 38851 . - . transcript_id "YGL246C_id002"; gene_id "YGL246C"; gene_name "RAI1"; transcript_biotype "protein_coding"; +chrVII SGD exon 37469 38851 . - . transcript_id "YGL246C_id002"; gene_id "YGL246C"; gene_name "RAI1"; +chrVII SGD transcript 37617 38780 . - . transcript_id "YGL246C_id001"; gene_id "YGL246C"; gene_name "RAI1"; transcript_biotype "protein_coding"; +chrVII SGD exon 37617 38780 . - 0 transcript_id "YGL246C_id001"; gene_name "RAI1"; gene_id "YGL246C"; +chrVII SGD gene 39008 41379 . + . gene_id "YGL245W"; gene_biotype "protein_coding"; +chrVII SGD transcript 39008 41379 . + . transcript_id "YGL245W_id003"; gene_id "YGL245W"; gene_name "GUS1"; transcript_biotype "protein_coding"; +chrVII SGD exon 39008 41379 . + . transcript_id "YGL245W_id003"; gene_id "YGL245W"; gene_name "GUS1"; +chrVII SGD transcript 39023 41149 . + . transcript_id "YGL245W_id001"; gene_id "YGL245W"; gene_name "GUS1"; transcript_biotype "protein_coding"; +chrVII SGD exon 39023 41149 . + 0 transcript_id "YGL245W_id001"; gene_name "GUS1"; gene_id "YGL245W"; +chrVII SGD gene 41498 43174 . + . gene_id "YGL244W"; gene_biotype "protein_coding"; +chrVII SGD transcript 41498 43174 . + . transcript_id "YGL244W_id001"; gene_id "YGL244W"; gene_name "RTF1"; transcript_biotype "protein_coding"; +chrVII SGD exon 41498 43174 . + 0 transcript_id "YGL244W_id001"; gene_name "RTF1"; gene_id "YGL244W"; +chrVII SGD gene 43283 44643 . + . gene_id "YGL243W"; gene_biotype "protein_coding"; +chrVII SGD transcript 43283 44643 . + . transcript_id "YGL243W_id001"; gene_id "YGL243W"; gene_name "TAD1"; transcript_biotype "protein_coding"; +chrVII SGD exon 43283 44643 . + . transcript_id "YGL243W_id001"; gene_id "YGL243W"; gene_name "TAD1"; +chrVII SGD transcript 43307 44509 . + . transcript_id "YGL243W_id002"; gene_id "YGL243W"; gene_name "TAD1"; transcript_biotype "protein_coding"; +chrVII SGD exon 43307 44509 . + 0 transcript_id "YGL243W_id002"; gene_name "TAD1"; gene_id "YGL243W"; +chrVII SGD gene 44446 45269 . - . gene_id "YGL242C"; gene_biotype "protein_coding"; +chrVII SGD transcript 44446 45269 . - . transcript_id "YGL242C_id003"; gene_id "YGL242C"; transcript_biotype "protein_coding"; +chrVII SGD exon 44446 45269 . - . transcript_id "YGL242C_id003"; gene_id "YGL242C"; +chrVII SGD transcript 44652 45197 . - . transcript_id "YGL242C_id001"; gene_id "YGL242C"; transcript_biotype "protein_coding"; +chrVII SGD exon 44652 45197 . - 0 transcript_id "YGL242C_id001"; gene_id "YGL242C"; +chrVII SGD gene 45428 48567 . + . gene_id "YGL241W"; gene_biotype "protein_coding"; +chrVII SGD transcript 45428 48567 . + . transcript_id "YGL241W_id002"; gene_id "YGL241W"; gene_name "KAP114"; transcript_biotype "protein_coding"; +chrVII SGD exon 45428 48567 . + . transcript_id "YGL241W_id002"; gene_id "YGL241W"; gene_name "KAP114"; +chrVII SGD transcript 45445 48459 . + . transcript_id "YGL241W_id001"; gene_id "YGL241W"; gene_name "KAP114"; transcript_biotype "protein_coding"; +chrVII SGD exon 45445 48459 . + 0 transcript_id "YGL241W_id001"; gene_name "KAP114"; gene_id "YGL241W"; +chrVII SGD gene 48594 50519 . + . gene_id "YGL240W"; gene_biotype "protein_coding"; +chrVII SGD transcript 48594 50519 . + . transcript_id "YGL240W_id001"; gene_id "YGL240W"; gene_name "DOC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 48594 50519 . + . transcript_id "YGL240W_id001"; gene_id "YGL240W"; gene_name "DOC1"; +chrVII SGD transcript 48613 49365 . + . transcript_id "YGL240W_id002"; gene_id "YGL240W"; gene_name "DOC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 48613 49365 . + 0 transcript_id "YGL240W_id002"; gene_name "DOC1"; gene_id "YGL240W"; +chrVII SGD gene 49431 49745 . - . gene_id "YGL239C"; gene_biotype "protein_coding"; +chrVII SGD transcript 49431 49745 . - . transcript_id "YGL239C_mRNA"; gene_id "YGL239C"; transcript_biotype "protein_coding"; +chrVII SGD CDS 49431 49745 . - 0 transcript_id "YGL239C_mRNA"; gene_id "YGL239C"; +chrVII SGD gene 49507 52604 . + . gene_id "YGL238W"; gene_biotype "protein_coding"; +chrVII SGD transcript 49507 52604 . + . transcript_id "YGL238W_id001"; gene_id "YGL238W"; gene_name "CSE1"; transcript_biotype "protein_coding"; +chrVII SGD exon 49507 52604 . + . transcript_id "YGL238W_id001"; gene_id "YGL238W"; gene_name "CSE1"; +chrVII SGD transcript 49552 52434 . + . transcript_id "YGL238W_id002"; gene_id "YGL238W"; gene_name "CSE1"; transcript_biotype "protein_coding"; +chrVII SGD exon 49552 52434 . + 0 transcript_id "YGL238W_id002"; gene_name "CSE1"; gene_id "YGL238W"; +chrVII SGD gene 52478 53622 . - . gene_id "YGL237C"; gene_biotype "protein_coding"; +chrVII SGD transcript 52478 53622 . - . transcript_id "YGL237C_id002"; gene_id "YGL237C"; gene_name "HAP2"; transcript_biotype "protein_coding"; +chrVII SGD exon 52478 53622 . - . transcript_id "YGL237C_id002"; gene_id "YGL237C"; gene_name "HAP2"; +chrVII SGD transcript 52731 53528 . - . transcript_id "YGL237C_id001"; gene_id "YGL237C"; gene_name "HAP2"; transcript_biotype "protein_coding"; +chrVII SGD exon 52731 53528 . - 0 transcript_id "YGL237C_id001"; gene_name "HAP2"; gene_id "YGL237C"; +chrVII SGD gene 53717 56047 . - . gene_id "YGL236C"; gene_biotype "protein_coding"; +chrVII SGD transcript 53717 56047 . - . transcript_id "YGL236C_id004"; gene_id "YGL236C"; gene_name "MTO1"; transcript_biotype "protein_coding"; +chrVII SGD exon 53717 56047 . - . transcript_id "YGL236C_id004"; gene_id "YGL236C"; gene_name "MTO1"; +chrVII SGD transcript 53787 55796 . - . transcript_id "YGL236C_id001"; gene_id "YGL236C"; gene_name "MTO1"; transcript_biotype "protein_coding"; +chrVII SGD exon 53787 55796 . - 0 transcript_id "YGL236C_id001"; gene_name "MTO1"; gene_id "YGL236C"; +chrVII SGD gene 55279 55815 . + . gene_id "YGL235W"; gene_biotype "protein_coding"; +chrVII SGD transcript 55279 55815 . + . transcript_id "YGL235W_mRNA"; gene_id "YGL235W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 55279 55815 . + 0 transcript_id "YGL235W_mRNA"; gene_id "YGL235W"; +chrVII SGD gene 55835 58977 . + . gene_id "YGL234W"; gene_biotype "protein_coding"; +chrVII SGD transcript 55835 58977 . + . transcript_id "YGL234W_id001"; gene_id "YGL234W"; gene_name "ADE57"; transcript_biotype "protein_coding"; +chrVII SGD exon 55835 58977 . + . transcript_id "YGL234W_id001"; gene_id "YGL234W"; gene_name "ADE57"; +chrVII SGD transcript 56482 58890 . + . transcript_id "YGL234W_id003"; gene_id "YGL234W"; gene_name "ADE57"; transcript_biotype "protein_coding"; +chrVII SGD exon 56482 58890 . + 0 transcript_id "YGL234W_id003"; gene_name "ADE57"; gene_id "YGL234W"; +chrVII SGD gene 59044 61919 . + . gene_id "YGL233W"; gene_biotype "protein_coding"; +chrVII SGD transcript 59044 61919 . + . transcript_id "YGL233W_id001"; gene_id "YGL233W"; gene_name "SEC15"; transcript_biotype "protein_coding"; +chrVII SGD exon 59044 61919 . + . transcript_id "YGL233W_id001"; gene_id "YGL233W"; gene_name "SEC15"; +chrVII SGD transcript 59122 61854 . + . transcript_id "YGL233W_id002"; gene_id "YGL233W"; gene_name "SEC15"; transcript_biotype "protein_coding"; +chrVII SGD exon 59122 61854 . + 0 transcript_id "YGL233W_id002"; gene_name "SEC15"; gene_id "YGL233W"; +chrVII SGD gene 62012 63071 . + . gene_id "YGL232W"; gene_biotype "protein_coding"; +chrVII SGD transcript 62012 63071 . + . transcript_id "YGL232W_id006"; gene_id "YGL232W"; gene_name "TAN1"; transcript_biotype "protein_coding"; +chrVII SGD exon 62012 63071 . + . transcript_id "YGL232W_id006"; gene_id "YGL232W"; gene_name "TAN1"; +chrVII SGD transcript 62075 63002 . + . transcript_id "YGL232W_id001"; gene_id "YGL232W"; gene_name "TAN1"; transcript_biotype "protein_coding"; +chrVII SGD exon 62075 62131 . + 0 transcript_id "YGL232W_id001"; gene_name "TAN1"; gene_id "YGL232W"; +chrVII SGD exon 62190 63002 . + 0 transcript_id "YGL232W_id001"; gene_name "TAN1"; gene_id "YGL232W"; +chrVII SGD gene 62675 63632 . - . gene_id "YGL231C"; gene_biotype "protein_coding"; +chrVII SGD transcript 62675 63632 . - . transcript_id "YGL231C_id003"; gene_id "YGL231C"; gene_name "EMC4"; transcript_biotype "protein_coding"; +chrVII SGD exon 62675 63632 . - . transcript_id "YGL231C_id003"; gene_id "YGL231C"; gene_name "EMC4"; +chrVII SGD transcript 63048 63620 . - . transcript_id "YGL231C_id001"; gene_id "YGL231C"; gene_name "EMC4"; transcript_biotype "protein_coding"; +chrVII SGD exon 63048 63620 . - 0 transcript_id "YGL231C_id001"; gene_name "EMC4"; gene_id "YGL231C"; +chrVII SGD gene 63699 64257 . - . gene_id "YGL230C"; gene_biotype "protein_coding"; +chrVII SGD transcript 63699 64257 . - . transcript_id "YGL230C_id006"; gene_id "YGL230C"; transcript_biotype "protein_coding"; +chrVII SGD exon 63699 64257 . - . transcript_id "YGL230C_id006"; gene_id "YGL230C"; +chrVII SGD transcript 63772 64215 . - . transcript_id "YGL230C_id001"; gene_id "YGL230C"; transcript_biotype "protein_coding"; +chrVII SGD exon 63772 64215 . - 0 transcript_id "YGL230C_id001"; gene_id "YGL230C"; +chrVII SGD gene 64228 67200 . - . gene_id "YGL229C"; gene_biotype "protein_coding"; +chrVII SGD transcript 64228 67200 . - . transcript_id "YGL229C_id001"; gene_id "YGL229C"; gene_name "SAP4"; transcript_biotype "protein_coding"; +chrVII SGD exon 64228 67200 . - . transcript_id "YGL229C_id001"; gene_id "YGL229C"; gene_name "SAP4"; +chrVII SGD transcript 64503 66959 . - . transcript_id "YGL229C_id002"; gene_id "YGL229C"; gene_name "SAP4"; transcript_biotype "protein_coding"; +chrVII SGD exon 64503 66959 . - 0 transcript_id "YGL229C_id002"; gene_name "SAP4"; gene_id "YGL229C"; +chrVII SGD gene 67418 69498 . + . gene_id "YGL228W"; gene_biotype "protein_coding"; +chrVII SGD transcript 67418 69498 . + . transcript_id "YGL228W_id002"; gene_id "YGL228W"; gene_name "SHE10"; transcript_biotype "protein_coding"; +chrVII SGD exon 67418 69498 . + . transcript_id "YGL228W_id002"; gene_id "YGL228W"; gene_name "SHE10"; +chrVII SGD transcript 67598 69331 . + . transcript_id "YGL228W_id001"; gene_id "YGL228W"; gene_name "SHE10"; transcript_biotype "protein_coding"; +chrVII SGD exon 67598 69331 . + 0 transcript_id "YGL228W_id001"; gene_name "SHE10"; gene_id "YGL228W"; +chrVII SGD gene 69629 72752 . + . gene_id "YGL227W"; gene_biotype "protein_coding"; +chrVII SGD transcript 69629 72752 . + . transcript_id "YGL227W_id002"; gene_id "YGL227W"; gene_name "VID30"; transcript_biotype "protein_coding"; +chrVII SGD exon 69629 72752 . + . transcript_id "YGL227W_id002"; gene_id "YGL227W"; gene_name "VID30"; +chrVII SGD transcript 69671 72547 . + . transcript_id "YGL227W_id001"; gene_id "YGL227W"; gene_name "VID30"; transcript_biotype "protein_coding"; +chrVII SGD exon 69671 72547 . + 0 transcript_id "YGL227W_id001"; gene_name "VID30"; gene_id "YGL227W"; +chrVII SGD gene 72177 73207 . - . gene_id "YGL226C-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 72177 73207 . - . transcript_id "YGL226C-A_id002"; gene_id "YGL226C-A"; gene_name "OST5"; transcript_biotype "protein_coding"; +chrVII SGD exon 72177 73207 . - . transcript_id "YGL226C-A_id002"; gene_id "YGL226C-A"; gene_name "OST5"; +chrVII SGD transcript 72749 73158 . - . transcript_id "YGL226C-A_id001"; gene_id "YGL226C-A"; gene_name "OST5"; transcript_biotype "protein_coding"; +chrVII SGD exon 72749 72988 . - 0 transcript_id "YGL226C-A_id001"; gene_name "OST5"; gene_id "YGL226C-A"; +chrVII SGD exon 73138 73158 . - 0 transcript_id "YGL226C-A_id001"; gene_name "OST5"; gene_id "YGL226C-A"; +chrVII SGD gene 73335 73818 . + . gene_id "YGL226W"; gene_biotype "protein_coding"; +chrVII SGD transcript 73335 73818 . + . transcript_id "YGL226W_id016"; gene_id "YGL226W"; gene_name "MTC3"; transcript_biotype "protein_coding"; +chrVII SGD exon 73335 73818 . + . transcript_id "YGL226W_id016"; gene_id "YGL226W"; gene_name "MTC3"; +chrVII SGD transcript 73340 73711 . + . transcript_id "YGL226W_id001"; gene_id "YGL226W"; gene_name "MTC3"; transcript_biotype "protein_coding"; +chrVII SGD exon 73340 73711 . + 0 transcript_id "YGL226W_id001"; gene_name "MTC3"; gene_id "YGL226W"; +chrVII SGD gene 73829 73902 . - . gene_id "YNCG0002C"; gene_biotype "ncRNA"; +chrVII SGD transcript 73829 73902 . - . transcript_id "YNCG0002C_tRNA"; gene_id "YNCG0002C"; transcript_biotype "ncRNA"; +chrVII SGD exon 73829 73902 . - . transcript_id "YNCG0002C_tRNA"; gene_id "YNCG0002C"; +chrVII SGD gene 74914 78030 . + . gene_id "YGL225W"; gene_biotype "protein_coding"; +chrVII SGD transcript 74914 78030 . + . transcript_id "YGL225W_id001"; gene_id "YGL225W"; gene_name "VRG4"; transcript_biotype "protein_coding"; +chrVII SGD exon 74914 78030 . + . transcript_id "YGL225W_id001"; gene_id "YGL225W"; gene_name "VRG4"; +chrVII SGD transcript 76894 77907 . + . transcript_id "YGL225W_id002"; gene_id "YGL225W"; gene_name "VRG4"; transcript_biotype "protein_coding"; +chrVII SGD exon 76894 77907 . + 0 transcript_id "YGL225W_id002"; gene_name "VRG4"; gene_id "YGL225W"; +chrVII SGD gene 77914 78984 . - . gene_id "YGL224C"; gene_biotype "protein_coding"; +chrVII SGD transcript 77914 78984 . - . transcript_id "YGL224C_id003"; gene_id "YGL224C"; gene_name "SDT1"; transcript_biotype "protein_coding"; +chrVII SGD exon 77914 78984 . - . transcript_id "YGL224C_id003"; gene_id "YGL224C"; gene_name "SDT1"; +chrVII SGD transcript 78015 78857 . - . transcript_id "YGL224C_id001"; gene_id "YGL224C"; gene_name "SDT1"; transcript_biotype "protein_coding"; +chrVII SGD exon 78015 78857 . - 0 transcript_id "YGL224C_id001"; gene_name "SDT1"; gene_id "YGL224C"; +chrVII SGD gene 79112 80365 . - . gene_id "YGL223C"; gene_biotype "protein_coding"; +chrVII SGD transcript 79112 80365 . - . transcript_id "YGL223C_id001"; gene_id "YGL223C"; gene_name "COG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 79112 80365 . - 0 transcript_id "YGL223C_id001"; gene_name "COG1"; gene_id "YGL223C"; +chrVII SGD gene 80659 81186 . - . gene_id "YGL222C"; gene_biotype "protein_coding"; +chrVII SGD transcript 80659 81186 . - . transcript_id "YGL222C_id001"; gene_id "YGL222C"; gene_name "EDC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 80659 81186 . - 0 transcript_id "YGL222C_id001"; gene_name "EDC1"; gene_id "YGL222C"; +chrVII SGD gene 81173 82311 . - . gene_id "YGL221C"; gene_biotype "protein_coding"; +chrVII SGD transcript 81173 82311 . - . transcript_id "YGL221C_id001"; gene_id "YGL221C"; gene_name "NIF3"; transcript_biotype "protein_coding"; +chrVII SGD exon 81173 82311 . - . transcript_id "YGL221C_id001"; gene_id "YGL221C"; gene_name "NIF3"; +chrVII SGD transcript 81426 82292 . - . transcript_id "YGL221C_id007"; gene_id "YGL221C"; gene_name "NIF3"; transcript_biotype "protein_coding"; +chrVII SGD exon 81426 82292 . - 0 transcript_id "YGL221C_id007"; gene_name "NIF3"; gene_id "YGL221C"; +chrVII SGD gene 81762 82912 . + . gene_id "YGL220W"; gene_biotype "protein_coding"; +chrVII SGD transcript 81762 82912 . + . transcript_id "YGL220W_id001"; gene_id "YGL220W"; gene_name "BOL2"; transcript_biotype "protein_coding"; +chrVII SGD exon 81762 82912 . + . transcript_id "YGL220W_id001"; gene_id "YGL220W"; gene_name "BOL2"; +chrVII SGD transcript 82374 82736 . + . transcript_id "YGL220W_id002"; gene_id "YGL220W"; gene_name "BOL2"; transcript_biotype "protein_coding"; +chrVII SGD exon 82374 82736 . + 0 transcript_id "YGL220W_id002"; gene_name "BOL2"; gene_id "YGL220W"; +chrVII SGD gene 82794 84323 . - . gene_id "YGL219C"; gene_biotype "protein_coding"; +chrVII SGD transcript 82794 84323 . - . transcript_id "YGL219C_id003"; gene_id "YGL219C"; gene_name "MDM34"; transcript_biotype "protein_coding"; +chrVII SGD exon 82794 84323 . - . transcript_id "YGL219C_id003"; gene_id "YGL219C"; gene_name "MDM34"; +chrVII SGD transcript 82878 84257 . - . transcript_id "YGL219C_id001"; gene_id "YGL219C"; gene_name "MDM34"; transcript_biotype "protein_coding"; +chrVII SGD exon 82878 84257 . - 0 transcript_id "YGL219C_id001"; gene_name "MDM34"; gene_id "YGL219C"; +chrVII SGD gene 83650 84300 . + . gene_id "YGL218W"; gene_biotype "protein_coding"; +chrVII SGD transcript 83650 84300 . + . transcript_id "YGL218W_mRNA"; gene_id "YGL218W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 83650 84300 . + 0 transcript_id "YGL218W_mRNA"; gene_id "YGL218W"; +chrVII SGD gene 84839 85180 . - . gene_id "YGL217C"; gene_biotype "protein_coding"; +chrVII SGD transcript 84839 85180 . - . transcript_id "YGL217C_mRNA"; gene_id "YGL217C"; transcript_biotype "protein_coding"; +chrVII SGD CDS 84839 85180 . - 0 transcript_id "YGL217C_mRNA"; gene_id "YGL217C"; +chrVII SGD gene 84885 87302 . + . gene_id "YGL216W"; gene_biotype "protein_coding"; +chrVII SGD transcript 84885 87302 . + . transcript_id "YGL216W_id001"; gene_id "YGL216W"; gene_name "KIP3"; transcript_biotype "protein_coding"; +chrVII SGD exon 84885 87302 . + 0 transcript_id "YGL216W_id001"; gene_name "KIP3"; gene_id "YGL216W"; +chrVII SGD gene 87509 89921 . + . gene_id "YGL215W"; gene_biotype "protein_coding"; +chrVII SGD transcript 87509 89921 . + . transcript_id "YGL215W_id001"; gene_id "YGL215W"; gene_name "CLG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 87509 89921 . + . transcript_id "YGL215W_id001"; gene_id "YGL215W"; gene_name "CLG1"; +chrVII SGD transcript 87981 89339 . + . transcript_id "YGL215W_id003"; gene_id "YGL215W"; gene_name "CLG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 87981 89339 . + 0 transcript_id "YGL215W_id003"; gene_name "CLG1"; gene_id "YGL215W"; +chrVII SGD gene 89794 91283 . - . gene_id "YGL213C"; gene_biotype "protein_coding"; +chrVII SGD transcript 89794 91283 . - . transcript_id "YGL213C_id002"; gene_id "YGL213C"; gene_name "SKI8"; transcript_biotype "protein_coding"; +chrVII SGD exon 89794 91283 . - . transcript_id "YGL213C_id002"; gene_id "YGL213C"; gene_name "SKI8"; +chrVII SGD gene 90010 90495 . + . gene_id "YGL214W"; gene_biotype "protein_coding"; +chrVII SGD transcript 90010 90495 . + . transcript_id "YGL214W_mRNA"; gene_id "YGL214W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 90010 90495 . + 0 transcript_id "YGL214W_mRNA"; gene_id "YGL214W"; +chrVII SGD transcript 90054 91247 . - . transcript_id "YGL213C_id001"; gene_id "YGL213C"; gene_name "SKI8"; transcript_biotype "protein_coding"; +chrVII SGD exon 90054 91247 . - 0 transcript_id "YGL213C_id001"; gene_name "SKI8"; gene_id "YGL213C"; +chrVII SGD gene 91398 92477 . + . gene_id "YGL212W"; gene_biotype "protein_coding"; +chrVII SGD transcript 91398 92477 . + . transcript_id "YGL212W_id002"; gene_id "YGL212W"; gene_name "VAM7"; transcript_biotype "protein_coding"; +chrVII SGD exon 91398 92477 . + . transcript_id "YGL212W_id002"; gene_id "YGL212W"; gene_name "VAM7"; +chrVII SGD transcript 91432 92382 . + . transcript_id "YGL212W_id001"; gene_id "YGL212W"; gene_name "VAM7"; transcript_biotype "protein_coding"; +chrVII SGD exon 91432 92382 . + 0 transcript_id "YGL212W_id001"; gene_name "VAM7"; gene_id "YGL212W"; +chrVII SGD gene 91775 94301 . + . gene_id "YGL211W"; gene_biotype "protein_coding"; +chrVII SGD transcript 91775 94301 . + . transcript_id "YGL211W_id002"; gene_id "YGL211W"; gene_name "NCS6"; transcript_biotype "protein_coding"; +chrVII SGD exon 91775 94301 . + . transcript_id "YGL211W_id002"; gene_id "YGL211W"; gene_name "NCS6"; +chrVII SGD transcript 92512 93591 . + . transcript_id "YGL211W_id001"; gene_id "YGL211W"; gene_name "NCS6"; transcript_biotype "protein_coding"; +chrVII SGD exon 92512 93591 . + 0 transcript_id "YGL211W_id001"; gene_name "NCS6"; gene_id "YGL211W"; +chrVII SGD gene 93300 94566 . + . gene_id "YGL210W"; gene_biotype "protein_coding"; +chrVII SGD transcript 93300 94566 . + . transcript_id "YGL210W_id003"; gene_id "YGL210W"; gene_name "YPT32"; transcript_biotype "protein_coding"; +chrVII SGD exon 93300 94566 . + . transcript_id "YGL210W_id003"; gene_id "YGL210W"; gene_name "YPT32"; +chrVII SGD transcript 93792 94460 . + . transcript_id "YGL210W_id001"; gene_id "YGL210W"; gene_name "YPT32"; transcript_biotype "protein_coding"; +chrVII SGD exon 93792 94460 . + 0 transcript_id "YGL210W_id001"; gene_name "YPT32"; gene_id "YGL210W"; +chrVII SGD gene 95806 97291 . + . gene_id "YGL209W"; gene_biotype "protein_coding"; +chrVII SGD transcript 95806 97291 . + . transcript_id "YGL209W_id001"; gene_id "YGL209W"; gene_name "MIG2"; transcript_biotype "protein_coding"; +chrVII SGD exon 95806 97291 . + . transcript_id "YGL209W_id001"; gene_id "YGL209W"; gene_name "MIG2"; +chrVII SGD transcript 95858 97006 . + . transcript_id "YGL209W_id034"; gene_id "YGL209W"; gene_name "MIG2"; transcript_biotype "protein_coding"; +chrVII SGD exon 95858 97006 . + 0 transcript_id "YGL209W_id034"; gene_name "MIG2"; gene_id "YGL209W"; +chrVII SGD gene 97288 98741 . + . gene_id "YGL208W"; gene_biotype "protein_coding"; +chrVII SGD transcript 97288 98741 . + . transcript_id "YGL208W_id002"; gene_id "YGL208W"; gene_name "SIP2"; transcript_biotype "protein_coding"; +chrVII SGD exon 97288 98741 . + . transcript_id "YGL208W_id002"; gene_id "YGL208W"; gene_name "SIP2"; +chrVII SGD transcript 97338 98585 . + . transcript_id "YGL208W_id001"; gene_id "YGL208W"; gene_name "SIP2"; transcript_biotype "protein_coding"; +chrVII SGD exon 97338 98585 . + 0 transcript_id "YGL208W_id001"; gene_name "SIP2"; gene_id "YGL208W"; +chrVII SGD gene 98863 102210 . + . gene_id "YGL207W"; gene_biotype "protein_coding"; +chrVII SGD transcript 98863 102210 . + . transcript_id "YGL207W_id003"; gene_id "YGL207W"; gene_name "SPT16"; transcript_biotype "protein_coding"; +chrVII SGD exon 98863 102210 . + . transcript_id "YGL207W_id003"; gene_id "YGL207W"; gene_name "SPT16"; +chrVII SGD transcript 98969 102076 . + . transcript_id "YGL207W_id001"; gene_id "YGL207W"; gene_name "SPT16"; transcript_biotype "protein_coding"; +chrVII SGD exon 98969 102076 . + 0 transcript_id "YGL207W_id001"; gene_name "SPT16"; gene_id "YGL207W"; +chrVII SGD gene 102543 107504 . - . gene_id "YGL206C"; gene_biotype "protein_coding"; +chrVII SGD transcript 102543 107504 . - . transcript_id "YGL206C_mRNA"; gene_id "YGL206C"; gene_name "CHC1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 102543 107504 . - 0 transcript_id "YGL206C_mRNA"; gene_name "CHC1"; gene_id "YGL206C"; +chrVII SGD gene 108158 110404 . + . gene_id "YGL205W"; gene_biotype "protein_coding"; +chrVII SGD transcript 108158 110404 . + . transcript_id "YGL205W_id001"; gene_id "YGL205W"; gene_name "POX1"; transcript_biotype "protein_coding"; +chrVII SGD exon 108158 110404 . + 0 transcript_id "YGL205W_id001"; gene_name "POX1"; gene_id "YGL205W"; +chrVII SGD gene 110625 110696 . - . gene_id "YNCG0003C"; gene_biotype "ncRNA"; +chrVII SGD transcript 110625 110696 . - . transcript_id "YNCG0003C_tRNA"; gene_id "YNCG0003C"; transcript_biotype "ncRNA"; +chrVII SGD exon 110625 110696 . - . transcript_id "YNCG0003C_tRNA"; gene_id "YNCG0003C"; +chrVII SGD gene 111700 112005 . - . gene_id "YGL204C"; gene_biotype "protein_coding"; +chrVII SGD transcript 111700 112005 . - . transcript_id "YGL204C_id001"; gene_id "YGL204C"; transcript_biotype "protein_coding"; +chrVII SGD exon 111700 112005 . - 0 transcript_id "YGL204C_id001"; gene_id "YGL204C"; +chrVII SGD gene 112073 114731 . - . gene_id "YGL203C"; gene_biotype "protein_coding"; +chrVII SGD transcript 112073 114731 . - . transcript_id "YGL203C_id001"; gene_id "YGL203C"; gene_name "KEX1"; transcript_biotype "protein_coding"; +chrVII SGD exon 112073 114731 . - . transcript_id "YGL203C_id001"; gene_id "YGL203C"; gene_name "KEX1"; +chrVII SGD transcript 112475 114664 . - . transcript_id "YGL203C_id002"; gene_id "YGL203C"; gene_name "KEX1"; transcript_biotype "protein_coding"; +chrVII SGD exon 112475 114664 . - 0 transcript_id "YGL203C_id002"; gene_name "KEX1"; gene_id "YGL203C"; +chrVII SGD gene 115488 115583 . + . gene_id "YNCG0004W"; gene_biotype "ncRNA"; +chrVII SGD transcript 115488 115583 . + . transcript_id "YNCG0004W_tRNA"; gene_id "YNCG0004W"; transcript_biotype "ncRNA"; +chrVII SGD exon 115488 115524 . + . transcript_id "YNCG0004W_tRNA"; gene_id "YNCG0004W"; +chrVII SGD exon 115548 115583 . + . transcript_id "YNCG0004W_tRNA"; gene_id "YNCG0004W"; +chrVII SGD gene 115995 118196 . + . gene_id "YGL202W"; gene_biotype "protein_coding"; +chrVII SGD transcript 115995 118196 . + . transcript_id "YGL202W_id001"; gene_id "YGL202W"; gene_name "ARO8"; transcript_biotype "protein_coding"; +chrVII SGD exon 115995 118196 . + . transcript_id "YGL202W_id001"; gene_id "YGL202W"; gene_name "ARO8"; +chrVII SGD transcript 116059 117561 . + . transcript_id "YGL202W_id005"; gene_id "YGL202W"; gene_name "ARO8"; transcript_biotype "protein_coding"; +chrVII SGD exon 116059 117561 . + 0 transcript_id "YGL202W_id005"; gene_name "ARO8"; gene_id "YGL202W"; +chrVII SGD gene 117653 120974 . - . gene_id "YGL201C"; gene_biotype "protein_coding"; +chrVII SGD transcript 117653 120974 . - . transcript_id "YGL201C_id001"; gene_id "YGL201C"; gene_name "MCM6"; transcript_biotype "protein_coding"; +chrVII SGD exon 117653 120974 . - . transcript_id "YGL201C_id001"; gene_id "YGL201C"; gene_name "MCM6"; +chrVII SGD transcript 117854 120907 . - . transcript_id "YGL201C_id002"; gene_id "YGL201C"; gene_name "MCM6"; transcript_biotype "protein_coding"; +chrVII SGD exon 117854 120907 . - 0 transcript_id "YGL201C_id002"; gene_name "MCM6"; gene_id "YGL201C"; +chrVII SGD gene 122269 122341 . + . gene_id "YNCG0005W"; gene_biotype "ncRNA"; +chrVII SGD transcript 122269 122341 . + . transcript_id "YNCG0005W_tRNA"; gene_id "YNCG0005W"; transcript_biotype "ncRNA"; +chrVII SGD exon 122269 122341 . + . transcript_id "YNCG0005W_tRNA"; gene_id "YNCG0005W"; +chrVII SGD gene 122460 123382 . - . gene_id "YGL200C"; gene_biotype "protein_coding"; +chrVII SGD transcript 122460 123382 . - . transcript_id "YGL200C_id001"; gene_id "YGL200C"; gene_name "EMP24"; transcript_biotype "protein_coding"; +chrVII SGD exon 122460 123382 . - . transcript_id "YGL200C_id001"; gene_id "YGL200C"; gene_name "EMP24"; +chrVII SGD transcript 122694 123305 . - . transcript_id "YGL200C_id004"; gene_id "YGL200C"; gene_name "EMP24"; transcript_biotype "protein_coding"; +chrVII SGD exon 122694 123305 . - 0 transcript_id "YGL200C_id004"; gene_name "EMP24"; gene_id "YGL200C"; +chrVII SGD gene 123569 124673 . + . gene_id "YGL198W"; gene_biotype "protein_coding"; +chrVII SGD transcript 123569 124673 . + . transcript_id "YGL198W_id001"; gene_id "YGL198W"; gene_name "YIP4"; transcript_biotype "protein_coding"; +chrVII SGD exon 123569 124673 . + . transcript_id "YGL198W_id001"; gene_id "YGL198W"; gene_name "YIP4"; +chrVII SGD gene 123572 124042 . - . gene_id "YGL199C"; gene_biotype "protein_coding"; +chrVII SGD transcript 123572 124042 . - . transcript_id "YGL199C_id001"; gene_id "YGL199C"; transcript_biotype "protein_coding"; +chrVII SGD exon 123572 124042 . - 0 transcript_id "YGL199C_id001"; gene_id "YGL199C"; +chrVII SGD transcript 123591 124298 . + . transcript_id "YGL198W_id002"; gene_id "YGL198W"; gene_name "YIP4"; transcript_biotype "protein_coding"; +chrVII SGD exon 123591 124298 . + 0 transcript_id "YGL198W_id002"; gene_name "YIP4"; gene_id "YGL198W"; +chrVII SGD gene 124698 129161 . + . gene_id "YGL197W"; gene_biotype "protein_coding"; +chrVII SGD transcript 124698 129161 . + . transcript_id "YGL197W_mRNA"; gene_id "YGL197W"; gene_name "MDS3"; transcript_biotype "protein_coding"; +chrVII SGD CDS 124698 129161 . + 0 transcript_id "YGL197W_mRNA"; gene_name "MDS3"; gene_id "YGL197W"; +chrVII SGD gene 129474 131269 . + . gene_id "YGL196W"; gene_biotype "protein_coding"; +chrVII SGD transcript 129474 131269 . + . transcript_id "YGL196W_id002"; gene_id "YGL196W"; gene_name "DSD1"; transcript_biotype "protein_coding"; +chrVII SGD exon 129474 131269 . + . transcript_id "YGL196W_id002"; gene_id "YGL196W"; gene_name "DSD1"; +chrVII SGD transcript 129883 131169 . + . transcript_id "YGL196W_id001"; gene_id "YGL196W"; gene_name "DSD1"; transcript_biotype "protein_coding"; +chrVII SGD exon 129883 131169 . + 0 transcript_id "YGL196W_id001"; gene_name "DSD1"; gene_id "YGL196W"; +chrVII SGD gene 131525 139543 . + . gene_id "YGL195W"; gene_biotype "protein_coding"; +chrVII SGD transcript 131525 139543 . + . transcript_id "YGL195W_mRNA"; gene_id "YGL195W"; gene_name "GCN1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 131525 139543 . + 0 transcript_id "YGL195W_mRNA"; gene_name "GCN1"; gene_id "YGL195W"; +chrVII SGD gene 139523 140245 . - . gene_id "YGL194C-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 139523 140245 . - . transcript_id "YGL194C-A_id002"; gene_id "YGL194C-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 139523 140245 . - . transcript_id "YGL194C-A_id002"; gene_id "YGL194C-A"; +chrVII SGD transcript 139719 139961 . - . transcript_id "YGL194C-A_id001"; gene_id "YGL194C-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 139719 139961 . - 0 transcript_id "YGL194C-A_id001"; gene_id "YGL194C-A"; +chrVII SGD gene 140157 141792 . - . gene_id "YGL194C"; gene_biotype "protein_coding"; +chrVII SGD transcript 140157 141792 . - . transcript_id "YGL194C_id001"; gene_id "YGL194C"; gene_name "HOS2"; transcript_biotype "protein_coding"; +chrVII SGD exon 140157 141792 . - . transcript_id "YGL194C_id001"; gene_id "YGL194C"; gene_name "HOS2"; +chrVII SGD transcript 140368 141726 . - . transcript_id "YGL194C_id002"; gene_id "YGL194C"; gene_name "HOS2"; transcript_biotype "protein_coding"; +chrVII SGD exon 140368 141726 . - 0 transcript_id "YGL194C_id002"; gene_name "HOS2"; gene_id "YGL194C"; +chrVII SGD gene 141871 142345 . - . gene_id "YGL193C"; gene_biotype "protein_coding"; +chrVII SGD transcript 141871 142345 . - . transcript_id "YGL193C_id005"; gene_id "YGL193C"; transcript_biotype "protein_coding"; +chrVII SGD exon 141871 142345 . - . transcript_id "YGL193C_id005"; gene_id "YGL193C"; +chrVII SGD gene 141898 144120 . - . gene_id "YNCG0006C"; gene_biotype "ncRNA"; +chrVII SGD transcript 141898 144120 . - . transcript_id "YNCG0006C_ncRNA"; gene_id "YNCG0006C"; gene_name "RME2"; transcript_biotype "ncRNA"; +chrVII SGD exon 141898 144120 . - . transcript_id "YNCG0006C_ncRNA"; gene_name "RME2"; gene_id "YNCG0006C"; +chrVII SGD transcript 141916 142227 . - . transcript_id "YGL193C_id001"; gene_id "YGL193C"; transcript_biotype "protein_coding"; +chrVII SGD exon 141916 142227 . - 0 transcript_id "YGL193C_id001"; gene_id "YGL193C"; +chrVII SGD gene 142200 144826 . + . gene_id "YGL192W"; gene_biotype "protein_coding"; +chrVII SGD transcript 142200 144826 . + . transcript_id "YGL192W_id001"; gene_id "YGL192W"; gene_name "IME4"; transcript_biotype "protein_coding"; +chrVII SGD exon 142200 144826 . + . transcript_id "YGL192W_id001"; gene_id "YGL192W"; gene_name "IME4"; +chrVII SGD transcript 142246 144048 . + . transcript_id "YGL192W_id002"; gene_id "YGL192W"; gene_name "IME4"; transcript_biotype "protein_coding"; +chrVII SGD exon 142246 144048 . + 0 transcript_id "YGL192W_id002"; gene_name "IME4"; gene_id "YGL192W"; +chrVII SGD gene 144701 145471 . + . gene_id "YGL191W"; gene_biotype "protein_coding"; +chrVII SGD transcript 144701 145471 . + . transcript_id "YGL191W_id005"; gene_id "YGL191W"; gene_name "COX13"; transcript_biotype "protein_coding"; +chrVII SGD exon 144701 145471 . + . transcript_id "YGL191W_id005"; gene_id "YGL191W"; gene_name "COX13"; +chrVII SGD transcript 144808 145197 . + . transcript_id "YGL191W_id001"; gene_id "YGL191W"; gene_name "COX13"; transcript_biotype "protein_coding"; +chrVII SGD exon 144808 145197 . + 0 transcript_id "YGL191W_id001"; gene_name "COX13"; gene_id "YGL191W"; +chrVII SGD gene 145809 147389 . - . gene_id "YGL190C"; gene_biotype "protein_coding"; +chrVII SGD transcript 145809 147389 . - . transcript_id "YGL190C_id001"; gene_id "YGL190C"; gene_name "CDC55"; transcript_biotype "protein_coding"; +chrVII SGD exon 145809 147389 . - 0 transcript_id "YGL190C_id001"; gene_name "CDC55"; gene_id "YGL190C"; +chrVII SGD gene 148229 148966 . - . gene_id "YGL189C"; gene_biotype "protein_coding"; +chrVII SGD transcript 148229 148966 . - . transcript_id "YGL189C_id001"; gene_id "YGL189C"; gene_name "RPS26A"; transcript_biotype "protein_coding"; +chrVII SGD exon 148229 148588 . - . transcript_id "YGL189C_id001"; gene_name "RPS26A"; gene_id "YGL189C"; +chrVII SGD exon 148599 148966 . - . transcript_id "YGL189C_id001"; gene_name "RPS26A"; gene_id "YGL189C"; +chrVII SGD exon 148229 148588 . - 0 transcript_id "YGL189C_id001"; gene_name "RPS26A"; gene_id "YGL189C"; +chrVII SGD gene 148612 149422 . - . gene_id "YGL188C-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 148612 149422 . - . transcript_id "YGL188C-A_id001"; gene_id "YGL188C-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 148612 149422 . - . transcript_id "YGL188C-A_id001"; gene_id "YGL188C-A"; +chrVII SGD transcript 148824 148964 . - . transcript_id "YGL188C-A_id002"; gene_id "YGL188C-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 148824 148964 . - 0 transcript_id "YGL188C-A_id002"; gene_id "YGL188C-A"; +chrVII SGD gene 149343 149516 . - . gene_id "YGL188C"; gene_biotype "protein_coding"; +chrVII SGD transcript 149343 149516 . - . transcript_id "YGL188C_mRNA"; gene_id "YGL188C"; transcript_biotype "protein_coding"; +chrVII SGD CDS 149343 149516 . - 0 transcript_id "YGL188C_mRNA"; gene_id "YGL188C"; +chrVII SGD gene 149401 150695 . - . gene_id "YGL187C"; gene_biotype "protein_coding"; +chrVII SGD transcript 149401 150695 . - . transcript_id "YGL187C_id001"; gene_id "YGL187C"; gene_name "COX4"; transcript_biotype "protein_coding"; +chrVII SGD exon 149401 150695 . - . transcript_id "YGL187C_id001"; gene_id "YGL187C"; gene_name "COX4"; +chrVII SGD transcript 149704 150525 . - . transcript_id "YGL187C_id003"; gene_id "YGL187C"; gene_name "COX4"; transcript_biotype "protein_coding"; +chrVII SGD exon 149704 150171 . - . transcript_id "YGL187C_id003"; gene_name "COX4"; gene_id "YGL187C"; +chrVII SGD exon 150184 150525 . - . transcript_id "YGL187C_id003"; gene_name "COX4"; gene_id "YGL187C"; +chrVII SGD exon 149704 150171 . - 0 transcript_id "YGL187C_id003"; gene_name "COX4"; gene_id "YGL187C"; +chrVII SGD gene 150874 152828 . - . gene_id "YGL186C"; gene_biotype "protein_coding"; +chrVII SGD transcript 150874 152828 . - . transcript_id "YGL186C_id001"; gene_id "YGL186C"; gene_name "TPN1"; transcript_biotype "protein_coding"; +chrVII SGD exon 150874 152828 . - . transcript_id "YGL186C_id001"; gene_id "YGL186C"; gene_name "TPN1"; +chrVII SGD transcript 151037 152776 . - . transcript_id "YGL186C_id004"; gene_id "YGL186C"; gene_name "TPN1"; transcript_biotype "protein_coding"; +chrVII SGD exon 151037 152776 . - 0 transcript_id "YGL186C_id004"; gene_name "TPN1"; gene_id "YGL186C"; +chrVII SGD gene 152785 154329 . - . gene_id "YGL185C"; gene_biotype "protein_coding"; +chrVII SGD transcript 152785 154329 . - . transcript_id "YGL185C_id002"; gene_id "YGL185C"; transcript_biotype "protein_coding"; +chrVII SGD exon 152785 154329 . - . transcript_id "YGL185C_id002"; gene_id "YGL185C"; +chrVII SGD transcript 153167 154306 . - . transcript_id "YGL185C_id001"; gene_id "YGL185C"; transcript_biotype "protein_coding"; +chrVII SGD exon 153167 154306 . - 0 transcript_id "YGL185C_id001"; gene_id "YGL185C"; +chrVII SGD gene 154504 156060 . - . gene_id "YGL184C"; gene_biotype "protein_coding"; +chrVII SGD transcript 154504 156060 . - . transcript_id "YGL184C_id002"; gene_id "YGL184C"; gene_name "STR3"; transcript_biotype "protein_coding"; +chrVII SGD exon 154504 156060 . - . transcript_id "YGL184C_id002"; gene_id "YGL184C"; gene_name "STR3"; +chrVII SGD transcript 154615 156012 . - . transcript_id "YGL184C_id001"; gene_id "YGL184C"; gene_name "STR3"; transcript_biotype "protein_coding"; +chrVII SGD exon 154615 156012 . - 0 transcript_id "YGL184C_id001"; gene_name "STR3"; gene_id "YGL184C"; +chrVII SGD gene 156543 157285 . - . gene_id "YGL183C"; gene_biotype "protein_coding"; +chrVII SGD transcript 156543 157285 . - . transcript_id "YGL183C_mRNA"; gene_id "YGL183C"; gene_name "MND1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 156543 157199 . - 0 transcript_id "YGL183C_mRNA"; gene_name "MND1"; gene_id "YGL183C"; +chrVII SGD CDS 157283 157285 . - 0 transcript_id "YGL183C_mRNA"; gene_name "MND1"; gene_id "YGL183C"; +chrVII SGD gene 157273 157596 . - . gene_id "YGL182C"; gene_biotype "protein_coding"; +chrVII SGD transcript 157273 157596 . - . transcript_id "YGL182C_mRNA"; gene_id "YGL182C"; transcript_biotype "protein_coding"; +chrVII SGD CDS 157273 157596 . - 0 transcript_id "YGL182C_mRNA"; gene_id "YGL182C"; +chrVII SGD gene 157529 159173 . + . gene_id "YGL181W"; gene_biotype "protein_coding"; +chrVII SGD transcript 157529 159173 . + . transcript_id "YGL181W_id001"; gene_id "YGL181W"; gene_name "GTS1"; transcript_biotype "protein_coding"; +chrVII SGD exon 157529 159173 . + . transcript_id "YGL181W_id001"; gene_id "YGL181W"; gene_name "GTS1"; +chrVII SGD transcript 157906 159096 . + . transcript_id "YGL181W_id002"; gene_id "YGL181W"; gene_name "GTS1"; transcript_biotype "protein_coding"; +chrVII SGD exon 157906 159096 . + 0 transcript_id "YGL181W_id002"; gene_name "GTS1"; gene_id "YGL181W"; +chrVII SGD gene 159502 163108 . + . gene_id "YGL180W"; gene_biotype "protein_coding"; +chrVII SGD transcript 159502 163108 . + . transcript_id "YGL180W_id001"; gene_id "YGL180W"; gene_name "ATG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 159502 163108 . + . transcript_id "YGL180W_id001"; gene_id "YGL180W"; gene_name "ATG1"; +chrVII SGD transcript 160065 162758 . + . transcript_id "YGL180W_id002"; gene_id "YGL180W"; gene_name "ATG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 160065 162758 . + 0 transcript_id "YGL180W_id002"; gene_name "ATG1"; gene_id "YGL180W"; +chrVII SGD gene 163358 165179 . - . gene_id "YGL179C"; gene_biotype "protein_coding"; +chrVII SGD transcript 163358 165179 . - . transcript_id "YGL179C_id003"; gene_id "YGL179C"; gene_name "TOS3"; transcript_biotype "protein_coding"; +chrVII SGD exon 163358 165179 . - . transcript_id "YGL179C_id003"; gene_id "YGL179C"; gene_name "TOS3"; +chrVII SGD transcript 163409 165091 . - . transcript_id "YGL179C_id001"; gene_id "YGL179C"; gene_name "TOS3"; transcript_biotype "protein_coding"; +chrVII SGD exon 163409 165091 . - 0 transcript_id "YGL179C_id001"; gene_name "TOS3"; gene_id "YGL179C"; +chrVII SGD gene 167352 170571 . + . gene_id "YGL178W"; gene_biotype "protein_coding"; +chrVII SGD transcript 167352 170571 . + . transcript_id "YGL178W_mRNA"; gene_id "YGL178W"; gene_name "MPT5"; transcript_biotype "protein_coding"; +chrVII SGD CDS 167352 167354 . + 0 transcript_id "YGL178W_mRNA"; gene_name "MPT5"; gene_id "YGL178W"; +chrVII SGD CDS 167995 170571 . + 0 transcript_id "YGL178W_mRNA"; gene_name "MPT5"; gene_id "YGL178W"; +chrVII SGD gene 167559 167906 . + . gene_id "YGL177W"; gene_biotype "protein_coding"; +chrVII SGD transcript 167559 167906 . + . transcript_id "YGL177W_id001"; gene_id "YGL177W"; transcript_biotype "protein_coding"; +chrVII SGD exon 167559 167906 . + 0 transcript_id "YGL177W_id001"; gene_id "YGL177W"; +chrVII SGD gene 171312 173961 . - . gene_id "YGL176C"; gene_biotype "protein_coding"; +chrVII SGD transcript 171312 173961 . - . transcript_id "YGL176C_id001"; gene_id "YGL176C"; transcript_biotype "protein_coding"; +chrVII SGD exon 171312 173961 . - . transcript_id "YGL176C_id001"; gene_id "YGL176C"; +chrVII SGD transcript 171415 173079 . - . transcript_id "YGL176C_id002"; gene_id "YGL176C"; transcript_biotype "protein_coding"; +chrVII SGD exon 171415 173079 . - 0 transcript_id "YGL176C_id002"; gene_id "YGL176C"; +chrVII SGD gene 173285 174322 . - . gene_id "YGL175C"; gene_biotype "protein_coding"; +chrVII SGD transcript 173285 174322 . - . transcript_id "YGL175C_id001"; gene_id "YGL175C"; gene_name "SAE2"; transcript_biotype "protein_coding"; +chrVII SGD exon 173285 174322 . - 0 transcript_id "YGL175C_id001"; gene_name "SAE2"; gene_id "YGL175C"; +chrVII SGD gene 174529 175541 . + . gene_id "YGL174W"; gene_biotype "protein_coding"; +chrVII SGD transcript 174529 175541 . + . transcript_id "YGL174W_id006"; gene_id "YGL174W"; gene_name "BUD13"; transcript_biotype "protein_coding"; +chrVII SGD exon 174529 175541 . + . transcript_id "YGL174W_id006"; gene_id "YGL174W"; gene_name "BUD13"; +chrVII SGD transcript 174545 175345 . + . transcript_id "YGL174W_id001"; gene_id "YGL174W"; gene_name "BUD13"; transcript_biotype "protein_coding"; +chrVII SGD exon 174545 175345 . + 0 transcript_id "YGL174W_id001"; gene_name "BUD13"; gene_id "YGL174W"; +chrVII SGD gene 175527 180113 . - . gene_id "YGL173C"; gene_biotype "protein_coding"; +chrVII SGD transcript 175527 180113 . - . transcript_id "YGL173C_mRNA"; gene_id "YGL173C"; gene_name "XRN1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 175527 180113 . - 0 transcript_id "YGL173C_mRNA"; gene_name "XRN1"; gene_id "YGL173C"; +chrVII SGD gene 180656 182231 . + . gene_id "YGL172W"; gene_biotype "protein_coding"; +chrVII SGD transcript 180656 182231 . + . transcript_id "YGL172W_id002"; gene_id "YGL172W"; gene_name "NUP49"; transcript_biotype "protein_coding"; +chrVII SGD exon 180656 182231 . + . transcript_id "YGL172W_id002"; gene_id "YGL172W"; gene_name "NUP49"; +chrVII SGD transcript 180700 182118 . + . transcript_id "YGL172W_id001"; gene_id "YGL172W"; gene_name "NUP49"; transcript_biotype "protein_coding"; +chrVII SGD exon 180700 182118 . + 0 transcript_id "YGL172W_id001"; gene_name "NUP49"; gene_id "YGL172W"; +chrVII SGD gene 182286 184383 . + . gene_id "YGL171W"; gene_biotype "protein_coding"; +chrVII SGD transcript 182286 184084 . + . transcript_id "YGL171W_id002"; gene_id "YGL171W"; gene_name "ROK1"; transcript_biotype "protein_coding"; +chrVII SGD exon 182286 184084 . + . transcript_id "YGL171W_id002"; gene_name "ROK1"; gene_id "YGL171W"; +chrVII SGD exon 182390 184084 . + 0 transcript_id "YGL171W_id002"; gene_name "ROK1"; gene_id "YGL171W"; +chrVII SGD transcript 182374 184383 . + . transcript_id "YGL171W_id001"; gene_id "YGL171W"; gene_name "ROK1"; transcript_biotype "protein_coding"; +chrVII SGD exon 182374 184383 . + . transcript_id "YGL171W_id001"; gene_id "YGL171W"; gene_name "ROK1"; +chrVII SGD gene 184153 185394 . - . gene_id "YGL170C"; gene_biotype "protein_coding"; +chrVII SGD transcript 184153 185394 . - . transcript_id "YGL170C_mRNA"; gene_id "YGL170C"; gene_name "SPO74"; transcript_biotype "protein_coding"; +chrVII SGD CDS 184153 185394 . - 0 transcript_id "YGL170C_mRNA"; gene_name "SPO74"; gene_id "YGL170C"; +chrVII SGD gene 185714 185786 . - . gene_id "YNCG0007C"; gene_biotype "ncRNA"; +chrVII SGD transcript 185714 185786 . - . transcript_id "YNCG0007C_tRNA"; gene_id "YNCG0007C"; transcript_biotype "ncRNA"; +chrVII SGD exon 185714 185786 . - . transcript_id "YNCG0007C_tRNA"; gene_id "YNCG0007C"; +chrVII SGD gene 186003 187562 . + . gene_id "YGL169W"; gene_biotype "protein_coding"; +chrVII SGD transcript 186003 187562 . + . transcript_id "YGL169W_id003"; gene_id "YGL169W"; gene_name "SUA5"; transcript_biotype "protein_coding"; +chrVII SGD exon 186003 187562 . + . transcript_id "YGL169W_id003"; gene_id "YGL169W"; gene_name "SUA5"; +chrVII SGD transcript 186059 187339 . + . transcript_id "YGL169W_id001"; gene_id "YGL169W"; gene_name "SUA5"; transcript_biotype "protein_coding"; +chrVII SGD exon 186059 187339 . + 0 transcript_id "YGL169W_id001"; gene_name "SUA5"; gene_id "YGL169W"; +chrVII SGD gene 187414 190875 . - . gene_id "YGL167C"; gene_biotype "protein_coding"; +chrVII SGD transcript 187414 190875 . - . transcript_id "YGL167C_id002"; gene_id "YGL167C"; gene_name "PMR1"; transcript_biotype "protein_coding"; +chrVII SGD exon 187414 190875 . - . transcript_id "YGL167C_id002"; gene_id "YGL167C"; gene_name "PMR1"; +chrVII SGD gene 187464 187796 . + . gene_id "YGL168W"; gene_biotype "protein_coding"; +chrVII SGD transcript 187464 187796 . + . transcript_id "YGL168W_mRNA"; gene_id "YGL168W"; gene_name "HUR1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 187464 187796 . + 0 transcript_id "YGL168W_mRNA"; gene_name "HUR1"; gene_id "YGL168W"; +chrVII SGD transcript 187616 190468 . - . transcript_id "YGL167C_id001"; gene_id "YGL167C"; gene_name "PMR1"; transcript_biotype "protein_coding"; +chrVII SGD exon 187616 190468 . - 0 transcript_id "YGL167C_id001"; gene_name "PMR1"; gene_id "YGL167C"; +chrVII SGD gene 191089 192013 . + . gene_id "YGL166W"; gene_biotype "protein_coding"; +chrVII SGD transcript 191089 192013 . + . transcript_id "YGL166W_id001"; gene_id "YGL166W"; gene_name "CUP2"; transcript_biotype "protein_coding"; +chrVII SGD exon 191089 192013 . + . transcript_id "YGL166W_id001"; gene_id "YGL166W"; gene_name "CUP2"; +chrVII SGD transcript 191129 191806 . + . transcript_id "YGL166W_id002"; gene_id "YGL166W"; gene_name "CUP2"; transcript_biotype "protein_coding"; +chrVII SGD exon 191129 191806 . + 0 transcript_id "YGL166W_id002"; gene_name "CUP2"; gene_id "YGL166W"; +chrVII SGD gene 191398 191976 . - . gene_id "YGL165C"; gene_biotype "protein_coding"; +chrVII SGD transcript 191398 191976 . - . transcript_id "YGL165C_mRNA"; gene_id "YGL165C"; transcript_biotype "protein_coding"; +chrVII SGD CDS 191398 191976 . - 0 transcript_id "YGL165C_mRNA"; gene_id "YGL165C"; +chrVII SGD gene 191854 193365 . - . gene_id "YGL164C"; gene_biotype "protein_coding"; +chrVII SGD transcript 191854 193365 . - . transcript_id "YGL164C_id003"; gene_id "YGL164C"; gene_name "YRB30"; transcript_biotype "protein_coding"; +chrVII SGD exon 191854 193365 . - . transcript_id "YGL164C_id003"; gene_id "YGL164C"; gene_name "YRB30"; +chrVII SGD transcript 191978 193300 . - . transcript_id "YGL164C_id001"; gene_id "YGL164C"; gene_name "YRB30"; transcript_biotype "protein_coding"; +chrVII SGD exon 191978 193300 . - 0 transcript_id "YGL164C_id001"; gene_name "YRB30"; gene_id "YGL164C"; +chrVII SGD gene 193572 196537 . - . gene_id "YGL163C"; gene_biotype "protein_coding"; +chrVII SGD transcript 193572 196537 . - . transcript_id "YGL163C_id006"; gene_id "YGL163C"; gene_name "RAD54"; transcript_biotype "protein_coding"; +chrVII SGD exon 193572 196537 . - . transcript_id "YGL163C_id006"; gene_id "YGL163C"; gene_name "RAD54"; +chrVII SGD transcript 193707 196403 . - . transcript_id "YGL163C_id001"; gene_id "YGL163C"; gene_name "RAD54"; transcript_biotype "protein_coding"; +chrVII SGD exon 193707 196403 . - 0 transcript_id "YGL163C_id001"; gene_name "RAD54"; gene_id "YGL163C"; +chrVII SGD gene 197430 199211 . + . gene_id "YGL162W"; gene_biotype "protein_coding"; +chrVII SGD transcript 197430 199211 . + . transcript_id "YGL162W_id001"; gene_id "YGL162W"; gene_name "SUT1"; transcript_biotype "protein_coding"; +chrVII SGD exon 197430 199211 . + . transcript_id "YGL162W_id001"; gene_id "YGL162W"; gene_name "SUT1"; +chrVII SGD transcript 198138 199037 . + . transcript_id "YGL162W_id002"; gene_id "YGL162W"; gene_name "SUT1"; transcript_biotype "protein_coding"; +chrVII SGD exon 198138 199037 . + 0 transcript_id "YGL162W_id002"; gene_name "SUT1"; gene_id "YGL162W"; +chrVII SGD gene 199055 200251 . - . gene_id "YGL161C"; gene_biotype "protein_coding"; +chrVII SGD transcript 199055 200251 . - . transcript_id "YGL161C_id004"; gene_id "YGL161C"; gene_name "YIP5"; transcript_biotype "protein_coding"; +chrVII SGD exon 199055 200251 . - . transcript_id "YGL161C_id004"; gene_id "YGL161C"; gene_name "YIP5"; +chrVII SGD transcript 199210 200142 . - . transcript_id "YGL161C_id001"; gene_id "YGL161C"; gene_name "YIP5"; transcript_biotype "protein_coding"; +chrVII SGD exon 199210 200142 . - 0 transcript_id "YGL161C_id001"; gene_name "YIP5"; gene_id "YGL161C"; +chrVII SGD gene 200453 202429 . + . gene_id "YGL160W"; gene_biotype "protein_coding"; +chrVII SGD transcript 200453 202429 . + . transcript_id "YGL160W_id002"; gene_id "YGL160W"; gene_name "AIM14"; transcript_biotype "protein_coding"; +chrVII SGD exon 200453 202429 . + . transcript_id "YGL160W_id002"; gene_id "YGL160W"; gene_name "AIM14"; +chrVII SGD transcript 200561 202273 . + . transcript_id "YGL160W_id001"; gene_id "YGL160W"; gene_name "AIM14"; transcript_biotype "protein_coding"; +chrVII SGD exon 200561 202273 . + 0 transcript_id "YGL160W_id001"; gene_name "AIM14"; gene_id "YGL160W"; +chrVII SGD gene 202705 204209 . + . gene_id "YGL159W"; gene_biotype "protein_coding"; +chrVII SGD transcript 202705 204209 . + . transcript_id "YGL159W_id003"; gene_id "YGL159W"; transcript_biotype "protein_coding"; +chrVII SGD exon 202705 204209 . + . transcript_id "YGL159W_id003"; gene_id "YGL159W"; +chrVII SGD transcript 202721 203833 . + . transcript_id "YGL159W_id001"; gene_id "YGL159W"; transcript_biotype "protein_coding"; +chrVII SGD exon 202721 203833 . + 0 transcript_id "YGL159W_id001"; gene_id "YGL159W"; +chrVII SGD gene 205521 205634 . + . gene_id "YNCG0008W"; gene_biotype "ncRNA"; +chrVII SGD transcript 205521 205634 . + . transcript_id "YNCG0008W_tRNA"; gene_id "YNCG0008W"; transcript_biotype "ncRNA"; +chrVII SGD exon 205521 205558 . + . transcript_id "YNCG0008W_tRNA"; gene_id "YNCG0008W"; +chrVII SGD exon 205591 205634 . + . transcript_id "YNCG0008W_tRNA"; gene_id "YNCG0008W"; +chrVII SGD gene 207033 208571 . + . gene_id "YGL158W"; gene_biotype "protein_coding"; +chrVII SGD transcript 207033 208571 . + . transcript_id "YGL158W_id001"; gene_id "YGL158W"; gene_name "RCK1"; transcript_biotype "protein_coding"; +chrVII SGD exon 207033 208571 . + 0 transcript_id "YGL158W_id001"; gene_name "RCK1"; gene_id "YGL158W"; +chrVII SGD gene 208875 210141 . + . gene_id "YGL157W"; gene_biotype "protein_coding"; +chrVII SGD transcript 208875 210141 . + . transcript_id "YGL157W_id001"; gene_id "YGL157W"; gene_name "ARI1"; transcript_biotype "protein_coding"; +chrVII SGD exon 208875 210141 . + . transcript_id "YGL157W_id001"; gene_id "YGL157W"; gene_name "ARI1"; +chrVII SGD transcript 209006 210049 . + . transcript_id "YGL157W_id006"; gene_id "YGL157W"; gene_name "ARI1"; transcript_biotype "protein_coding"; +chrVII SGD exon 209006 210049 . + 0 transcript_id "YGL157W_id006"; gene_name "ARI1"; gene_id "YGL157W"; +chrVII SGD gene 210416 213667 . + . gene_id "YGL156W"; gene_biotype "protein_coding"; +chrVII SGD transcript 210416 213667 . + . transcript_id "YGL156W_id001"; gene_id "YGL156W"; gene_name "AMS1"; transcript_biotype "protein_coding"; +chrVII SGD exon 210416 213667 . + 0 transcript_id "YGL156W_id001"; gene_name "AMS1"; gene_id "YGL156W"; +chrVII SGD gene 213925 215625 . + . gene_id "YGL155W"; gene_biotype "protein_coding"; +chrVII SGD transcript 213925 215625 . + . transcript_id "YGL155W_id001"; gene_id "YGL155W"; gene_name "CDC43"; transcript_biotype "protein_coding"; +chrVII SGD exon 213925 215625 . + . transcript_id "YGL155W_id001"; gene_id "YGL155W"; gene_name "CDC43"; +chrVII SGD transcript 214081 215211 . + . transcript_id "YGL155W_id002"; gene_id "YGL155W"; gene_name "CDC43"; transcript_biotype "protein_coding"; +chrVII SGD exon 214081 215211 . + 0 transcript_id "YGL155W_id002"; gene_name "CDC43"; gene_id "YGL155W"; +chrVII SGD gene 215155 216112 . - . gene_id "YGL154C"; gene_biotype "protein_coding"; +chrVII SGD transcript 215155 216112 . - . transcript_id "YGL154C_id001"; gene_id "YGL154C"; gene_name "LYS5"; transcript_biotype "protein_coding"; +chrVII SGD exon 215155 216112 . - . transcript_id "YGL154C_id001"; gene_id "YGL154C"; gene_name "LYS5"; +chrVII SGD transcript 215278 216096 . - . transcript_id "YGL154C_id004"; gene_id "YGL154C"; gene_name "LYS5"; transcript_biotype "protein_coding"; +chrVII SGD exon 215278 216096 . - 0 transcript_id "YGL154C_id004"; gene_name "LYS5"; gene_id "YGL154C"; +chrVII SGD gene 216211 217383 . + . gene_id "YGL153W"; gene_biotype "protein_coding"; +chrVII SGD transcript 216211 217383 . + . transcript_id "YGL153W_id001"; gene_id "YGL153W"; gene_name "PEX14"; transcript_biotype "protein_coding"; +chrVII SGD exon 216211 217383 . + . transcript_id "YGL153W_id001"; gene_id "YGL153W"; gene_name "PEX14"; +chrVII SGD transcript 216273 217298 . + . transcript_id "YGL153W_id002"; gene_id "YGL153W"; gene_name "PEX14"; transcript_biotype "protein_coding"; +chrVII SGD exon 216273 217298 . + 0 transcript_id "YGL153W_id002"; gene_name "PEX14"; gene_id "YGL153W"; +chrVII SGD gene 216692 217369 . - . gene_id "YGL152C"; gene_biotype "protein_coding"; +chrVII SGD transcript 216692 217369 . - . transcript_id "YGL152C_mRNA"; gene_id "YGL152C"; transcript_biotype "protein_coding"; +chrVII SGD CDS 216692 217369 . - 0 transcript_id "YGL152C_mRNA"; gene_id "YGL152C"; +chrVII SGD gene 217469 221007 . + . gene_id "YGL151W"; gene_biotype "protein_coding"; +chrVII SGD transcript 217469 221007 . + . transcript_id "YGL151W_id002"; gene_id "YGL151W"; gene_name "NUT1"; transcript_biotype "protein_coding"; +chrVII SGD exon 217469 221007 . + . transcript_id "YGL151W_id002"; gene_id "YGL151W"; gene_name "NUT1"; +chrVII SGD transcript 217524 220922 . + . transcript_id "YGL151W_id001"; gene_id "YGL151W"; gene_name "NUT1"; transcript_biotype "protein_coding"; +chrVII SGD exon 217524 220922 . + 0 transcript_id "YGL151W_id001"; gene_name "NUT1"; gene_id "YGL151W"; +chrVII SGD gene 221104 225573 . - . gene_id "YGL150C"; gene_biotype "protein_coding"; +chrVII SGD transcript 221104 225573 . - . transcript_id "YGL150C_id001"; gene_id "YGL150C"; gene_name "INO80"; transcript_biotype "protein_coding"; +chrVII SGD exon 221104 225573 . - 0 transcript_id "YGL150C_id001"; gene_name "INO80"; gene_id "YGL150C"; +chrVII SGD gene 225572 225877 . + . gene_id "YGL149W"; gene_biotype "protein_coding"; +chrVII SGD transcript 225572 225877 . + . transcript_id "YGL149W_mRNA"; gene_id "YGL149W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 225572 225877 . + 0 transcript_id "YGL149W_mRNA"; gene_id "YGL149W"; +chrVII SGD gene 225888 228346 . - . gene_id "YGL147C"; gene_biotype "protein_coding"; +chrVII SGD transcript 225888 228346 . - . transcript_id "YGL147C_id001"; gene_id "YGL147C"; gene_name "RPL9A"; transcript_biotype "protein_coding"; +chrVII SGD exon 225888 228346 . - . transcript_id "YGL147C_id001"; gene_id "YGL147C"; gene_name "RPL9A"; +chrVII SGD gene 226259 227685 . + . gene_id "YGL148W"; gene_biotype "protein_coding"; +chrVII SGD transcript 226259 227685 . + . transcript_id "YGL148W_id001"; gene_id "YGL148W"; gene_name "ARO2"; transcript_biotype "protein_coding"; +chrVII SGD exon 226259 227685 . + . transcript_id "YGL148W_id001"; gene_id "YGL148W"; gene_name "ARO2"; +chrVII SGD transcript 226399 227529 . + . transcript_id "YGL148W_id002"; gene_id "YGL148W"; gene_name "ARO2"; transcript_biotype "protein_coding"; +chrVII SGD exon 226399 227529 . + 0 transcript_id "YGL148W_id002"; gene_name "ARO2"; gene_id "YGL148W"; +chrVII SGD transcript 227754 228329 . - . transcript_id "YGL147C_id002"; gene_id "YGL147C"; gene_name "RPL9A"; transcript_biotype "protein_coding"; +chrVII SGD exon 227754 228329 . - 0 transcript_id "YGL147C_id002"; gene_name "RPL9A"; gene_id "YGL147C"; +chrVII SGD gene 228590 229860 . - . gene_id "YGL146C"; gene_biotype "protein_coding"; +chrVII SGD transcript 228590 229860 . - . transcript_id "YGL146C_id010"; gene_id "YGL146C"; gene_name "RRT6"; transcript_biotype "protein_coding"; +chrVII SGD exon 228590 229860 . - . transcript_id "YGL146C_id010"; gene_id "YGL146C"; gene_name "RRT6"; +chrVII SGD transcript 228751 229686 . - . transcript_id "YGL146C_id001"; gene_id "YGL146C"; gene_name "RRT6"; transcript_biotype "protein_coding"; +chrVII SGD exon 228751 229686 . - 0 transcript_id "YGL146C_id001"; gene_name "RRT6"; gene_id "YGL146C"; +chrVII SGD gene 230173 232466 . + . gene_id "YGL145W"; gene_biotype "protein_coding"; +chrVII SGD transcript 230173 232466 . + . transcript_id "YGL145W_id003"; gene_id "YGL145W"; gene_name "TIP20"; transcript_biotype "protein_coding"; +chrVII SGD exon 230173 232466 . + . transcript_id "YGL145W_id003"; gene_id "YGL145W"; gene_name "TIP20"; +chrVII SGD transcript 230243 232348 . + . transcript_id "YGL145W_id001"; gene_id "YGL145W"; gene_name "TIP20"; transcript_biotype "protein_coding"; +chrVII SGD exon 230243 232348 . + 0 transcript_id "YGL145W_id001"; gene_name "TIP20"; gene_id "YGL145W"; +chrVII SGD gene 232291 234521 . - . gene_id "YGL144C"; gene_biotype "protein_coding"; +chrVII SGD transcript 232291 234521 . - . transcript_id "YGL144C_id001"; gene_id "YGL144C"; gene_name "ROG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 232291 234521 . - . transcript_id "YGL144C_id001"; gene_id "YGL144C"; gene_name "ROG1"; +chrVII SGD transcript 232450 234507 . - . transcript_id "YGL144C_id002"; gene_id "YGL144C"; gene_name "ROG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 232450 234507 . - 0 transcript_id "YGL144C_id002"; gene_name "ROG1"; gene_id "YGL144C"; +chrVII SGD gene 234569 236164 . - . gene_id "YGL143C"; gene_biotype "protein_coding"; +chrVII SGD transcript 234569 236164 . - . transcript_id "YGL143C_id001"; gene_id "YGL143C"; gene_name "MRF1"; transcript_biotype "protein_coding"; +chrVII SGD exon 234569 236164 . - . transcript_id "YGL143C_id001"; gene_id "YGL143C"; gene_name "MRF1"; +chrVII SGD transcript 234717 235958 . - . transcript_id "YGL143C_id003"; gene_id "YGL143C"; gene_name "MRF1"; transcript_biotype "protein_coding"; +chrVII SGD exon 234717 235958 . - 0 transcript_id "YGL143C_id003"; gene_name "MRF1"; gene_id "YGL143C"; +chrVII SGD gene 236064 238164 . - . gene_id "YGL142C"; gene_biotype "protein_coding"; +chrVII SGD transcript 236064 238164 . - . transcript_id "YGL142C_id001"; gene_id "YGL142C"; gene_name "GPI10"; transcript_biotype "protein_coding"; +chrVII SGD exon 236064 238164 . - . transcript_id "YGL142C_id001"; gene_id "YGL142C"; gene_name "GPI10"; +chrVII SGD transcript 236269 238119 . - . transcript_id "YGL142C_id002"; gene_id "YGL142C"; gene_name "GPI10"; transcript_biotype "protein_coding"; +chrVII SGD exon 236269 238119 . - 0 transcript_id "YGL142C_id002"; gene_name "GPI10"; gene_id "YGL142C"; +chrVII SGD gene 238292 241205 . + . gene_id "YGL141W"; gene_biotype "protein_coding"; +chrVII SGD transcript 238292 241205 . + . transcript_id "YGL141W_id001"; gene_id "YGL141W"; gene_name "HUL5"; transcript_biotype "protein_coding"; +chrVII SGD exon 238292 241205 . + . transcript_id "YGL141W_id001"; gene_id "YGL141W"; gene_name "HUL5"; +chrVII SGD transcript 238353 241085 . + . transcript_id "YGL141W_id002"; gene_id "YGL141W"; gene_name "HUL5"; transcript_biotype "protein_coding"; +chrVII SGD exon 238353 241085 . + 0 transcript_id "YGL141W_id002"; gene_name "HUL5"; gene_id "YGL141W"; +chrVII SGD gene 241353 245012 . - . gene_id "YGL140C"; gene_biotype "protein_coding"; +chrVII SGD transcript 241353 245012 . - . transcript_id "YGL140C_id001"; gene_id "YGL140C"; transcript_biotype "protein_coding"; +chrVII SGD exon 241353 245012 . - 0 transcript_id "YGL140C_id001"; gene_id "YGL140C"; +chrVII SGD gene 245402 248444 . + . gene_id "YGL139W"; gene_biotype "protein_coding"; +chrVII SGD transcript 245402 248444 . + . transcript_id "YGL139W_id004"; gene_id "YGL139W"; gene_name "FLC3"; transcript_biotype "protein_coding"; +chrVII SGD exon 245402 248444 . + . transcript_id "YGL139W_id004"; gene_id "YGL139W"; gene_name "FLC3"; +chrVII SGD transcript 245716 248124 . + . transcript_id "YGL139W_id001"; gene_id "YGL139W"; gene_name "FLC3"; transcript_biotype "protein_coding"; +chrVII SGD exon 245716 248124 . + 0 transcript_id "YGL139W_id001"; gene_name "FLC3"; gene_id "YGL139W"; +chrVII SGD gene 248494 249531 . - . gene_id "YGL138C"; gene_biotype "protein_coding"; +chrVII SGD transcript 248494 249531 . - . transcript_id "YGL138C_mRNA"; gene_id "YGL138C"; transcript_biotype "protein_coding"; +chrVII SGD CDS 248494 249531 . - 0 transcript_id "YGL138C_mRNA"; gene_id "YGL138C"; +chrVII SGD gene 249845 253055 . + . gene_id "YGL137W"; gene_biotype "protein_coding"; +chrVII SGD transcript 249845 253055 . + . transcript_id "YGL137W_id003"; gene_id "YGL137W"; gene_name "SEC27"; transcript_biotype "protein_coding"; +chrVII SGD exon 249845 253055 . + . transcript_id "YGL137W_id003"; gene_id "YGL137W"; gene_name "SEC27"; +chrVII SGD transcript 249869 252738 . + . transcript_id "YGL137W_id001"; gene_id "YGL137W"; gene_name "SEC27"; transcript_biotype "protein_coding"; +chrVII SGD exon 249869 249886 . + 0 transcript_id "YGL137W_id001"; gene_name "SEC27"; gene_id "YGL137W"; +chrVII SGD exon 250087 252738 . + 0 transcript_id "YGL137W_id001"; gene_name "SEC27"; gene_id "YGL137W"; +chrVII SGD gene 252763 254004 . - . gene_id "YGL136C"; gene_biotype "protein_coding"; +chrVII SGD transcript 252763 254004 . - . transcript_id "YGL136C_id001"; gene_id "YGL136C"; gene_name "MRM2"; transcript_biotype "protein_coding"; +chrVII SGD exon 252763 254004 . - . transcript_id "YGL136C_id001"; gene_id "YGL136C"; gene_name "MRM2"; +chrVII SGD transcript 252897 253859 . - . transcript_id "YGL136C_id005"; gene_id "YGL136C"; gene_name "MRM2"; transcript_biotype "protein_coding"; +chrVII SGD exon 252897 253859 . - 0 transcript_id "YGL136C_id005"; gene_name "MRM2"; gene_id "YGL136C"; +chrVII SGD gene 254577 255579 . + . gene_id "YGL135W"; gene_biotype "protein_coding"; +chrVII SGD transcript 254577 255579 . + . transcript_id "YGL135W_id002"; gene_id "YGL135W"; gene_name "RPL1B"; transcript_biotype "protein_coding"; +chrVII SGD exon 254577 255579 . + . transcript_id "YGL135W_id002"; gene_id "YGL135W"; gene_name "RPL1B"; +chrVII SGD transcript 254641 255294 . + . transcript_id "YGL135W_id001"; gene_id "YGL135W"; gene_name "RPL1B"; transcript_biotype "protein_coding"; +chrVII SGD exon 254641 255294 . + 0 transcript_id "YGL135W_id001"; gene_name "RPL1B"; gene_id "YGL135W"; +chrVII SGD gene 255566 257264 . + . gene_id "YGL134W"; gene_biotype "protein_coding"; +chrVII SGD transcript 255566 257264 . + . transcript_id "YGL134W_id002"; gene_id "YGL134W"; gene_name "PCL10"; transcript_biotype "protein_coding"; +chrVII SGD exon 255566 257264 . + . transcript_id "YGL134W_id002"; gene_id "YGL134W"; gene_name "PCL10"; +chrVII SGD transcript 255663 256964 . + . transcript_id "YGL134W_id001"; gene_id "YGL134W"; gene_name "PCL10"; transcript_biotype "protein_coding"; +chrVII SGD exon 255663 256964 . + 0 transcript_id "YGL134W_id001"; gene_name "PCL10"; gene_id "YGL134W"; +chrVII SGD gene 257707 261501 . + . gene_id "YGL133W"; gene_biotype "protein_coding"; +chrVII SGD transcript 257707 261501 . + . transcript_id "YGL133W_mRNA"; gene_id "YGL133W"; gene_name "ITC1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 257707 261501 . + 0 transcript_id "YGL133W_mRNA"; gene_name "ITC1"; gene_id "YGL133W"; +chrVII SGD gene 261580 261915 . + . gene_id "YGL132W"; gene_biotype "protein_coding"; +chrVII SGD transcript 261580 261915 . + . transcript_id "YGL132W_mRNA"; gene_id "YGL132W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 261580 261915 . + 0 transcript_id "YGL132W_mRNA"; gene_id "YGL132W"; +chrVII SGD gene 261648 265859 . - . gene_id "YGL131C"; gene_biotype "protein_coding"; +chrVII SGD transcript 261648 265859 . - . transcript_id "YGL131C_mRNA"; gene_id "YGL131C"; gene_name "SNT2"; transcript_biotype "protein_coding"; +chrVII SGD CDS 261648 265859 . - 0 transcript_id "YGL131C_mRNA"; gene_name "SNT2"; gene_id "YGL131C"; +chrVII SGD gene 266065 267764 . + . gene_id "YGL130W"; gene_biotype "protein_coding"; +chrVII SGD transcript 266065 267764 . + . transcript_id "YGL130W_id004"; gene_id "YGL130W"; gene_name "CEG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 266065 267764 . + . transcript_id "YGL130W_id004"; gene_id "YGL130W"; gene_name "CEG1"; +chrVII SGD transcript 266145 267524 . + . transcript_id "YGL130W_id001"; gene_id "YGL130W"; gene_name "CEG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 266145 267524 . + 0 transcript_id "YGL130W_id001"; gene_name "CEG1"; gene_id "YGL130W"; +chrVII SGD gene 267574 269164 . - . gene_id "YGL129C"; gene_biotype "protein_coding"; +chrVII SGD transcript 267574 269164 . - . transcript_id "YGL129C_id002"; gene_id "YGL129C"; gene_name "RSM23"; transcript_biotype "protein_coding"; +chrVII SGD exon 267574 269164 . - . transcript_id "YGL129C_id002"; gene_id "YGL129C"; gene_name "RSM23"; +chrVII SGD transcript 267723 269075 . - . transcript_id "YGL129C_id001"; gene_id "YGL129C"; gene_name "RSM23"; transcript_biotype "protein_coding"; +chrVII SGD exon 267723 269075 . - 0 transcript_id "YGL129C_id001"; gene_name "RSM23"; gene_id "YGL129C"; +chrVII SGD gene 269080 270160 . - . gene_id "YGL128C"; gene_biotype "protein_coding"; +chrVII SGD transcript 269080 270160 . - . transcript_id "YGL128C_id002"; gene_id "YGL128C"; gene_name "CWC23"; transcript_biotype "protein_coding"; +chrVII SGD exon 269080 270160 . - . transcript_id "YGL128C_id002"; gene_id "YGL128C"; gene_name "CWC23"; +chrVII SGD transcript 269293 270144 . - . transcript_id "YGL128C_id001"; gene_id "YGL128C"; gene_name "CWC23"; transcript_biotype "protein_coding"; +chrVII SGD exon 269293 270144 . - 0 transcript_id "YGL128C_id001"; gene_name "CWC23"; gene_id "YGL128C"; +chrVII SGD gene 270174 270831 . - . gene_id "YGL127C"; gene_biotype "protein_coding"; +chrVII SGD transcript 270174 270831 . - . transcript_id "YGL127C_id001"; gene_id "YGL127C"; gene_name "SOH1"; transcript_biotype "protein_coding"; +chrVII SGD exon 270174 270831 . - . transcript_id "YGL127C_id001"; gene_id "YGL127C"; gene_name "SOH1"; +chrVII SGD transcript 270392 270775 . - . transcript_id "YGL127C_id005"; gene_id "YGL127C"; gene_name "SOH1"; transcript_biotype "protein_coding"; +chrVII SGD exon 270392 270775 . - 0 transcript_id "YGL127C_id005"; gene_name "SOH1"; gene_id "YGL127C"; +chrVII SGD gene 270997 272139 . + . gene_id "YGL126W"; gene_biotype "protein_coding"; +chrVII SGD transcript 270997 272139 . + . transcript_id "YGL126W_mRNA"; gene_id "YGL126W"; gene_name "SCS3"; transcript_biotype "protein_coding"; +chrVII SGD CDS 270997 272139 . + 0 transcript_id "YGL126W_mRNA"; gene_name "SCS3"; gene_id "YGL126W"; +chrVII SGD gene 272334 274614 . + . gene_id "YGL125W"; gene_biotype "protein_coding"; +chrVII SGD transcript 272334 274614 . + . transcript_id "YGL125W_id002"; gene_id "YGL125W"; gene_name "MET13"; transcript_biotype "protein_coding"; +chrVII SGD exon 272334 274614 . + . transcript_id "YGL125W_id002"; gene_id "YGL125W"; gene_name "MET13"; +chrVII SGD transcript 272520 274322 . + . transcript_id "YGL125W_id001"; gene_id "YGL125W"; gene_name "MET13"; transcript_biotype "protein_coding"; +chrVII SGD exon 272520 274322 . + 0 transcript_id "YGL125W_id001"; gene_name "MET13"; gene_id "YGL125W"; +chrVII SGD gene 274780 276714 . - . gene_id "YGL124C"; gene_biotype "protein_coding"; +chrVII SGD transcript 274780 276714 . - . transcript_id "YGL124C_id001"; gene_id "YGL124C"; gene_name "MON1"; transcript_biotype "protein_coding"; +chrVII SGD exon 274780 276714 . - 0 transcript_id "YGL124C_id001"; gene_name "MON1"; gene_id "YGL124C"; +chrVII SGD gene 277328 278470 . + . gene_id "YGL123W"; gene_biotype "protein_coding"; +chrVII SGD transcript 277328 278470 . + . transcript_id "YGL123W_id002"; gene_id "YGL123W"; gene_name "RPS2"; transcript_biotype "protein_coding"; +chrVII SGD exon 277328 278470 . + . transcript_id "YGL123W_id002"; gene_id "YGL123W"; gene_name "RPS2"; +chrVII SGD transcript 277617 278381 . + . transcript_id "YGL123W_id001"; gene_id "YGL123W"; gene_name "RPS2"; transcript_biotype "protein_coding"; +chrVII SGD exon 277617 278381 . + 0 transcript_id "YGL123W_id001"; gene_name "RPS2"; gene_id "YGL123W"; +chrVII SGD gene 277634 277864 . - . gene_id "YGL123C-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 277634 277864 . - . transcript_id "YGL123C-A_mRNA"; gene_id "YGL123C-A"; transcript_biotype "protein_coding"; +chrVII SGD CDS 277634 277864 . - 0 transcript_id "YGL123C-A_mRNA"; gene_id "YGL123C-A"; +chrVII SGD gene 278548 280532 . - . gene_id "YGL122C"; gene_biotype "protein_coding"; +chrVII SGD transcript 278548 280532 . - . transcript_id "YGL122C_id003"; gene_id "YGL122C"; gene_name "NAB2"; transcript_biotype "protein_coding"; +chrVII SGD exon 278548 280532 . - . transcript_id "YGL122C_id003"; gene_id "YGL122C"; gene_name "NAB2"; +chrVII SGD transcript 278946 280523 . - . transcript_id "YGL122C_id001"; gene_id "YGL122C"; gene_name "NAB2"; transcript_biotype "protein_coding"; +chrVII SGD exon 278946 280523 . - 0 transcript_id "YGL122C_id001"; gene_name "NAB2"; gene_id "YGL122C"; +chrVII SGD gene 280549 281262 . - . gene_id "YGL121C"; gene_biotype "protein_coding"; +chrVII SGD transcript 280549 281262 . - . transcript_id "YGL121C_id003"; gene_id "YGL121C"; gene_name "GPG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 280549 281262 . - . transcript_id "YGL121C_id003"; gene_id "YGL121C"; gene_name "GPG1"; +chrVII SGD transcript 280777 281157 . - . transcript_id "YGL121C_id001"; gene_id "YGL121C"; gene_name "GPG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 280777 281157 . - 0 transcript_id "YGL121C_id001"; gene_name "GPG1"; gene_id "YGL121C"; +chrVII SGD gene 281426 283993 . - . gene_id "YGL120C"; gene_biotype "protein_coding"; +chrVII SGD transcript 281426 283993 . - . transcript_id "YGL120C_id001"; gene_id "YGL120C"; gene_name "PRP43"; transcript_biotype "protein_coding"; +chrVII SGD exon 281426 283993 . - . transcript_id "YGL120C_id001"; gene_id "YGL120C"; gene_name "PRP43"; +chrVII SGD transcript 281634 283937 . - . transcript_id "YGL120C_id005"; gene_id "YGL120C"; gene_name "PRP43"; transcript_biotype "protein_coding"; +chrVII SGD exon 281634 283937 . - 0 transcript_id "YGL120C_id005"; gene_name "PRP43"; gene_id "YGL120C"; +chrVII SGD gene 284156 286030 . + . gene_id "YGL119W"; gene_biotype "protein_coding"; +chrVII SGD transcript 284156 286030 . + . transcript_id "YGL119W_id001"; gene_id "YGL119W"; gene_name "COQ8"; transcript_biotype "protein_coding"; +chrVII SGD exon 284156 286030 . + . transcript_id "YGL119W_id001"; gene_id "YGL119W"; gene_name "COQ8"; +chrVII SGD transcript 284442 285947 . + . transcript_id "YGL119W_id003"; gene_id "YGL119W"; gene_name "COQ8"; transcript_biotype "protein_coding"; +chrVII SGD exon 284442 285947 . + 0 transcript_id "YGL119W_id003"; gene_name "COQ8"; gene_id "YGL119W"; +chrVII SGD gene 287350 287455 . - . gene_id "YNCG0009C"; gene_biotype "ncRNA"; +chrVII SGD transcript 287350 287455 . - . transcript_id "YNCG0009C_tRNA"; gene_id "YNCG0009C"; transcript_biotype "ncRNA"; +chrVII SGD exon 287350 287385 . - . transcript_id "YNCG0009C_tRNA"; gene_id "YNCG0009C"; +chrVII SGD exon 287420 287455 . - . transcript_id "YNCG0009C_tRNA"; gene_id "YNCG0009C"; +chrVII SGD gene 288014 288451 . - . gene_id "YGL118C"; gene_biotype "protein_coding"; +chrVII SGD transcript 288014 288451 . - . transcript_id "YGL118C_mRNA"; gene_id "YGL118C"; transcript_biotype "protein_coding"; +chrVII SGD CDS 288014 288451 . - 0 transcript_id "YGL118C_mRNA"; gene_id "YGL118C"; +chrVII SGD gene 288426 289786 . + . gene_id "YGL117W"; gene_biotype "protein_coding"; +chrVII SGD transcript 288426 289786 . + . transcript_id "YGL117W_id001"; gene_id "YGL117W"; gene_name "ARO5"; transcript_biotype "protein_coding"; +chrVII SGD exon 288426 289786 . + . transcript_id "YGL117W_id001"; gene_id "YGL117W"; gene_name "ARO5"; +chrVII SGD transcript 288512 289309 . + . transcript_id "YGL117W_id002"; gene_id "YGL117W"; gene_name "ARO5"; transcript_biotype "protein_coding"; +chrVII SGD exon 288512 289309 . + 0 transcript_id "YGL117W_id002"; gene_name "ARO5"; gene_id "YGL117W"; +chrVII SGD gene 289809 291641 . + . gene_id "YGL116W"; gene_biotype "protein_coding"; +chrVII SGD transcript 289809 291641 . + . transcript_id "YGL116W_id001"; gene_id "YGL116W"; gene_name "CDC20"; transcript_biotype "protein_coding"; +chrVII SGD exon 289809 291641 . + 0 transcript_id "YGL116W_id001"; gene_name "CDC20"; gene_id "YGL116W"; +chrVII SGD gene 291885 293114 . + . gene_id "YGL115W"; gene_biotype "protein_coding"; +chrVII SGD transcript 291885 293114 . + . transcript_id "YGL115W_id001"; gene_id "YGL115W"; gene_name "SNF4"; transcript_biotype "protein_coding"; +chrVII SGD exon 291885 293114 . + . transcript_id "YGL115W_id001"; gene_id "YGL115W"; gene_name "SNF4"; +chrVII SGD transcript 292033 293001 . + . transcript_id "YGL115W_id002"; gene_id "YGL115W"; gene_name "SNF4"; transcript_biotype "protein_coding"; +chrVII SGD exon 292033 293001 . + 0 transcript_id "YGL115W_id002"; gene_name "SNF4"; gene_id "YGL115W"; +chrVII SGD gene 293226 295731 . + . gene_id "YGL114W"; gene_biotype "protein_coding"; +chrVII SGD transcript 293226 295731 . + . transcript_id "YGL114W_id002"; gene_id "YGL114W"; transcript_biotype "protein_coding"; +chrVII SGD exon 293226 295731 . + . transcript_id "YGL114W_id002"; gene_id "YGL114W"; +chrVII SGD transcript 293460 295637 . + . transcript_id "YGL114W_id001"; gene_id "YGL114W"; transcript_biotype "protein_coding"; +chrVII SGD exon 293460 295637 . + 0 transcript_id "YGL114W_id001"; gene_id "YGL114W"; +chrVII SGD gene 295885 298184 . + . gene_id "YGL113W"; gene_biotype "protein_coding"; +chrVII SGD transcript 295885 298184 . + . transcript_id "YGL113W_id002"; gene_id "YGL113W"; gene_name "SLD3"; transcript_biotype "protein_coding"; +chrVII SGD exon 295885 298184 . + . transcript_id "YGL113W_id002"; gene_id "YGL113W"; gene_name "SLD3"; +chrVII SGD transcript 295932 297938 . + . transcript_id "YGL113W_id001"; gene_id "YGL113W"; gene_name "SLD3"; transcript_biotype "protein_coding"; +chrVII SGD exon 295932 297938 . + 0 transcript_id "YGL113W_id001"; gene_name "SLD3"; gene_id "YGL113W"; +chrVII SGD gene 298048 299800 . - . gene_id "YGL112C"; gene_biotype "protein_coding"; +chrVII SGD transcript 298048 299800 . - . transcript_id "YGL112C_id002"; gene_id "YGL112C"; gene_name "TAF6"; transcript_biotype "protein_coding"; +chrVII SGD exon 298048 299800 . - . transcript_id "YGL112C_id002"; gene_id "YGL112C"; gene_name "TAF6"; +chrVII SGD transcript 298178 299728 . - . transcript_id "YGL112C_id001"; gene_id "YGL112C"; gene_name "TAF6"; transcript_biotype "protein_coding"; +chrVII SGD exon 298178 299728 . - 0 transcript_id "YGL112C_id001"; gene_name "TAF6"; gene_id "YGL112C"; +chrVII SGD gene 299951 301697 . + . gene_id "YGL111W"; gene_biotype "protein_coding"; +chrVII SGD transcript 299951 301697 . + . transcript_id "YGL111W_id001"; gene_id "YGL111W"; gene_name "NSA1"; transcript_biotype "protein_coding"; +chrVII SGD exon 299951 301697 . + . transcript_id "YGL111W_id001"; gene_id "YGL111W"; gene_name "NSA1"; +chrVII SGD transcript 299978 301369 . + . transcript_id "YGL111W_id002"; gene_id "YGL111W"; gene_name "NSA1"; transcript_biotype "protein_coding"; +chrVII SGD exon 299978 301369 . + 0 transcript_id "YGL111W_id002"; gene_name "NSA1"; gene_id "YGL111W"; +chrVII SGD gene 301371 303421 . - . gene_id "YGL110C"; gene_biotype "protein_coding"; +chrVII SGD transcript 301371 303421 . - . transcript_id "YGL110C_id003"; gene_id "YGL110C"; gene_name "CUE3"; transcript_biotype "protein_coding"; +chrVII SGD exon 301371 303421 . - . transcript_id "YGL110C_id003"; gene_id "YGL110C"; gene_name "CUE3"; +chrVII SGD transcript 301537 303411 . - . transcript_id "YGL110C_id001"; gene_id "YGL110C"; gene_name "CUE3"; transcript_biotype "protein_coding"; +chrVII SGD exon 301537 303411 . - 0 transcript_id "YGL110C_id001"; gene_name "CUE3"; gene_id "YGL110C"; +chrVII SGD gene 303225 304115 . - . gene_id "YGL108C"; gene_biotype "protein_coding"; +chrVII SGD transcript 303225 304115 . - . transcript_id "YGL108C_id002"; gene_id "YGL108C"; transcript_biotype "protein_coding"; +chrVII SGD exon 303225 304115 . - . transcript_id "YGL108C_id002"; gene_id "YGL108C"; +chrVII SGD gene 303513 303836 . + . gene_id "YGL109W"; gene_biotype "protein_coding"; +chrVII SGD transcript 303513 303836 . + . transcript_id "YGL109W_mRNA"; gene_id "YGL109W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 303513 303836 . + 0 transcript_id "YGL109W_mRNA"; gene_id "YGL109W"; +chrVII SGD transcript 303649 304071 . - . transcript_id "YGL108C_id001"; gene_id "YGL108C"; transcript_biotype "protein_coding"; +chrVII SGD exon 303649 304071 . - 0 transcript_id "YGL108C_id001"; gene_id "YGL108C"; +chrVII SGD gene 304333 306273 . - . gene_id "YGL107C"; gene_biotype "protein_coding"; +chrVII SGD transcript 304333 306273 . - . transcript_id "YGL107C_id001"; gene_id "YGL107C"; gene_name "RMD9"; transcript_biotype "protein_coding"; +chrVII SGD exon 304333 306273 . - 0 transcript_id "YGL107C_id001"; gene_name "RMD9"; gene_id "YGL107C"; +chrVII SGD gene 306535 307168 . + . gene_id "YGL106W"; gene_biotype "protein_coding"; +chrVII SGD transcript 306535 307168 . + . transcript_id "YGL106W_id009"; gene_id "YGL106W"; gene_name "MLC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 306535 307168 . + . transcript_id "YGL106W_id009"; gene_id "YGL106W"; gene_name "MLC1"; +chrVII SGD transcript 306560 307009 . + . transcript_id "YGL106W_id001"; gene_id "YGL106W"; gene_name "MLC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 306560 307009 . + 0 transcript_id "YGL106W_id001"; gene_name "MLC1"; gene_id "YGL106W"; +chrVII SGD gene 307264 308664 . + . gene_id "YGL105W"; gene_biotype "protein_coding"; +chrVII SGD transcript 307264 308664 . + . transcript_id "YGL105W_id004"; gene_id "YGL105W"; gene_name "ARC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 307264 308664 . + . transcript_id "YGL105W_id004"; gene_id "YGL105W"; gene_name "ARC1"; +chrVII SGD transcript 307437 308567 . + . transcript_id "YGL105W_id001"; gene_id "YGL105W"; gene_name "ARC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 307437 308567 . + 0 transcript_id "YGL105W_id001"; gene_name "ARC1"; gene_id "YGL105W"; +chrVII SGD gene 308491 311999 . + . gene_id "YGL103W"; gene_biotype "protein_coding"; +chrVII SGD transcript 308491 311999 . + . transcript_id "YGL103W_id001"; gene_id "YGL103W"; gene_name "RPL28"; transcript_biotype "protein_coding"; +chrVII SGD exon 308491 311999 . + . transcript_id "YGL103W_id001"; gene_id "YGL103W"; gene_name "RPL28"; +chrVII SGD gene 308576 310189 . - . gene_id "YGL104C"; gene_biotype "protein_coding"; +chrVII SGD transcript 308576 310189 . - . transcript_id "YGL104C_id006"; gene_id "YGL104C"; gene_name "VPS73"; transcript_biotype "protein_coding"; +chrVII SGD exon 308576 310189 . - . transcript_id "YGL104C_id006"; gene_id "YGL104C"; gene_name "VPS73"; +chrVII SGD transcript 308713 310173 . - . transcript_id "YGL104C_id001"; gene_id "YGL104C"; gene_name "VPS73"; transcript_biotype "protein_coding"; +chrVII SGD exon 308713 310173 . - 0 transcript_id "YGL104C_id001"; gene_name "VPS73"; gene_id "YGL104C"; +chrVII SGD transcript 310967 311927 . + . transcript_id "YGL103W_id003"; gene_id "YGL103W"; gene_name "RPL28"; transcript_biotype "protein_coding"; +chrVII SGD exon 310967 311015 . + 0 transcript_id "YGL103W_id003"; gene_name "RPL28"; gene_id "YGL103W"; +chrVII SGD exon 311527 311927 . + 2 transcript_id "YGL103W_id003"; gene_name "RPL28"; gene_id "YGL103W"; +chrVII SGD gene 311505 311933 . - . gene_id "YGL102C"; gene_biotype "protein_coding"; +chrVII SGD transcript 311505 311933 . - . transcript_id "YGL102C_mRNA"; gene_id "YGL102C"; transcript_biotype "protein_coding"; +chrVII SGD CDS 311505 311933 . - 0 transcript_id "YGL102C_mRNA"; gene_id "YGL102C"; +chrVII SGD gene 312147 313116 . + . gene_id "YGL101W"; gene_biotype "protein_coding"; +chrVII SGD transcript 312147 313116 . + . transcript_id "YGL101W_id005"; gene_id "YGL101W"; gene_name "YGK1"; transcript_biotype "protein_coding"; +chrVII SGD exon 312147 313116 . + . transcript_id "YGL101W_id005"; gene_id "YGL101W"; gene_name "YGK1"; +chrVII SGD transcript 312193 312840 . + . transcript_id "YGL101W_id001"; gene_id "YGL101W"; gene_name "YGK1"; transcript_biotype "protein_coding"; +chrVII SGD exon 312193 312840 . + 0 transcript_id "YGL101W_id001"; gene_name "YGK1"; gene_id "YGL101W"; +chrVII SGD gene 313156 314399 . + . gene_id "YGL100W"; gene_biotype "protein_coding"; +chrVII SGD transcript 313156 314399 . + . transcript_id "YGL100W_id002"; gene_id "YGL100W"; gene_name "SEH1"; transcript_biotype "protein_coding"; +chrVII SGD exon 313156 314399 . + . transcript_id "YGL100W_id002"; gene_id "YGL100W"; gene_name "SEH1"; +chrVII SGD transcript 313234 314283 . + . transcript_id "YGL100W_id001"; gene_id "YGL100W"; gene_name "SEH1"; transcript_biotype "protein_coding"; +chrVII SGD exon 313234 314283 . + 0 transcript_id "YGL100W_id001"; gene_name "SEH1"; gene_id "YGL100W"; +chrVII SGD gene 314567 316611 . + . gene_id "YGL099W"; gene_biotype "protein_coding"; +chrVII SGD transcript 314567 316611 . + . transcript_id "YGL099W_id001"; gene_id "YGL099W"; gene_name "LSG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 314567 316611 . + . transcript_id "YGL099W_id001"; gene_id "YGL099W"; gene_name "LSG1"; +chrVII SGD transcript 314631 316553 . + . transcript_id "YGL099W_id002"; gene_id "YGL099W"; gene_name "LSG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 314631 316553 . + 0 transcript_id "YGL099W_id002"; gene_name "LSG1"; gene_id "YGL099W"; +chrVII SGD gene 316788 317055 . + . gene_id "YNCG0010W"; gene_biotype "ncRNA"; +chrVII SGD transcript 316788 317055 . + . transcript_id "YNCG0010W_snoRNA"; gene_id "YNCG0010W"; gene_name "SNR82"; transcript_biotype "ncRNA"; +chrVII SGD exon 316788 317055 . + . transcript_id "YNCG0010W_snoRNA"; gene_name "SNR82"; gene_id "YNCG0010W"; +chrVII SGD gene 317289 319046 . + . gene_id "YGL098W"; gene_biotype "protein_coding"; +chrVII SGD transcript 317289 319046 . + . transcript_id "YGL098W_id003"; gene_id "YGL098W"; gene_name "USE1"; transcript_biotype "protein_coding"; +chrVII SGD exon 317289 319046 . + . transcript_id "YGL098W_id003"; gene_id "YGL098W"; gene_name "USE1"; +chrVII SGD transcript 317342 318079 . + . transcript_id "YGL098W_id001"; gene_id "YGL098W"; gene_name "USE1"; transcript_biotype "protein_coding"; +chrVII SGD exon 317342 318079 . + 0 transcript_id "YGL098W_id001"; gene_name "USE1"; gene_id "YGL098W"; +chrVII SGD gene 319781 319852 . + . gene_id "YNCG0011W"; gene_biotype "ncRNA"; +chrVII SGD transcript 319781 319852 . + . transcript_id "YNCG0011W_tRNA"; gene_id "YNCG0011W"; transcript_biotype "ncRNA"; +chrVII SGD exon 319781 319852 . + . transcript_id "YNCG0011W_tRNA"; gene_id "YNCG0011W"; +chrVII SGD gene 321706 323346 . + . gene_id "YGL097W"; gene_biotype "protein_coding"; +chrVII SGD transcript 321706 323346 . + . transcript_id "YGL097W_id004"; gene_id "YGL097W"; gene_name "SRM1"; transcript_biotype "protein_coding"; +chrVII SGD exon 321706 323346 . + . transcript_id "YGL097W_id004"; gene_id "YGL097W"; gene_name "SRM1"; +chrVII SGD transcript 321782 323230 . + . transcript_id "YGL097W_id001"; gene_id "YGL097W"; gene_name "SRM1"; transcript_biotype "protein_coding"; +chrVII SGD exon 321782 323230 . + 0 transcript_id "YGL097W_id001"; gene_name "SRM1"; gene_id "YGL097W"; +chrVII SGD gene 324810 326269 . + . gene_id "YGL096W"; gene_biotype "protein_coding"; +chrVII SGD transcript 324810 326269 . + . transcript_id "YGL096W_id007"; gene_id "YGL096W"; gene_name "TOS8"; transcript_biotype "protein_coding"; +chrVII SGD exon 324810 326269 . + . transcript_id "YGL096W_id007"; gene_id "YGL096W"; gene_name "TOS8"; +chrVII SGD transcript 325331 326161 . + . transcript_id "YGL096W_id001"; gene_id "YGL096W"; gene_name "TOS8"; transcript_biotype "protein_coding"; +chrVII SGD exon 325331 326161 . + 0 transcript_id "YGL096W_id001"; gene_name "TOS8"; gene_id "YGL096W"; +chrVII SGD gene 328583 328654 . + . gene_id "YNCG0012W"; gene_biotype "ncRNA"; +chrVII SGD transcript 328583 328654 . + . transcript_id "YNCG0012W_tRNA"; gene_id "YNCG0012W"; gene_name "SOE1"; transcript_biotype "ncRNA"; +chrVII SGD exon 328583 328654 . + . transcript_id "YNCG0012W_tRNA"; gene_name "SOE1"; gene_id "YNCG0012W"; +chrVII SGD gene 328782 330685 . - . gene_id "YGL095C"; gene_biotype "protein_coding"; +chrVII SGD transcript 328782 330685 . - . transcript_id "YGL095C_id009"; gene_id "YGL095C"; gene_name "VPS45"; transcript_biotype "protein_coding"; +chrVII SGD exon 328782 330685 . - . transcript_id "YGL095C_id009"; gene_id "YGL095C"; gene_name "VPS45"; +chrVII SGD transcript 328874 330607 . - . transcript_id "YGL095C_id001"; gene_id "YGL095C"; gene_name "VPS45"; transcript_biotype "protein_coding"; +chrVII SGD exon 328874 330607 . - 0 transcript_id "YGL095C_id001"; gene_name "VPS45"; gene_id "YGL095C"; +chrVII SGD gene 331118 334465 . - . gene_id "YGL094C"; gene_biotype "protein_coding"; +chrVII SGD transcript 331118 334465 . - . transcript_id "YGL094C_id001"; gene_id "YGL094C"; gene_name "PAN2"; transcript_biotype "protein_coding"; +chrVII SGD exon 331118 334465 . - 0 transcript_id "YGL094C_id001"; gene_name "PAN2"; gene_id "YGL094C"; +chrVII SGD gene 334846 337679 . + . gene_id "YGL093W"; gene_biotype "protein_coding"; +chrVII SGD transcript 334846 337679 . + . transcript_id "YGL093W_id002"; gene_id "YGL093W"; gene_name "SPC105"; transcript_biotype "protein_coding"; +chrVII SGD exon 334846 337679 . + . transcript_id "YGL093W_id002"; gene_id "YGL093W"; gene_name "SPC105"; +chrVII SGD transcript 334886 337639 . + . transcript_id "YGL093W_id001"; gene_id "YGL093W"; gene_name "SPC105"; transcript_biotype "protein_coding"; +chrVII SGD exon 334886 337639 . + 0 transcript_id "YGL093W_id001"; gene_name "SPC105"; gene_id "YGL093W"; +chrVII SGD gene 337782 341915 . + . gene_id "YGL092W"; gene_biotype "protein_coding"; +chrVII SGD transcript 337782 341915 . + . transcript_id "YGL092W_id001"; gene_id "YGL092W"; gene_name "NUP145"; transcript_biotype "protein_coding"; +chrVII SGD exon 337782 341915 . + . transcript_id "YGL092W_id001"; gene_id "YGL092W"; gene_name "NUP145"; +chrVII SGD transcript 337906 341859 . + . transcript_id "YGL092W_id002"; gene_id "YGL092W"; gene_name "NUP145"; transcript_biotype "protein_coding"; +chrVII SGD exon 337906 341859 . + 0 transcript_id "YGL092W_id002"; gene_name "NUP145"; gene_id "YGL092W"; +chrVII SGD gene 341905 343126 . - . gene_id "YGL091C"; gene_biotype "protein_coding"; +chrVII SGD transcript 341905 343126 . - . transcript_id "YGL091C_id006"; gene_id "YGL091C"; gene_name "NBP35"; transcript_biotype "protein_coding"; +chrVII SGD exon 341905 343126 . - . transcript_id "YGL091C_id006"; gene_id "YGL091C"; gene_name "NBP35"; +chrVII SGD transcript 342056 343042 . - . transcript_id "YGL091C_id001"; gene_id "YGL091C"; gene_name "NBP35"; transcript_biotype "protein_coding"; +chrVII SGD exon 342056 343042 . - 0 transcript_id "YGL091C_id001"; gene_name "NBP35"; gene_id "YGL091C"; +chrVII SGD gene 343287 345261 . + . gene_id "YGL090W"; gene_biotype "protein_coding"; +chrVII SGD transcript 343287 345261 . + . transcript_id "YGL090W_id003"; gene_id "YGL090W"; gene_name "LIF1"; transcript_biotype "protein_coding"; +chrVII SGD exon 343287 345261 . + . transcript_id "YGL090W_id003"; gene_id "YGL090W"; gene_name "LIF1"; +chrVII SGD transcript 343319 344584 . + . transcript_id "YGL090W_id001"; gene_id "YGL090W"; gene_name "LIF1"; transcript_biotype "protein_coding"; +chrVII SGD exon 343319 344584 . + 0 transcript_id "YGL090W_id001"; gene_name "LIF1"; gene_id "YGL090W"; +chrVII SGD gene 344791 345153 . - . gene_id "YGL089C"; gene_biotype "protein_coding"; +chrVII SGD transcript 344791 345153 . - . transcript_id "YGL089C_id001"; gene_id "YGL089C"; gene_name "MF%28ALPHA%292"; transcript_biotype "protein_coding"; +chrVII SGD exon 344791 345153 . - 0 transcript_id "YGL089C_id001"; gene_name "MF%28ALPHA%292"; gene_id "YGL089C"; +chrVII SGD gene 345836 346201 . + . gene_id "YGL088W"; gene_biotype "protein_coding"; +chrVII SGD transcript 345836 346201 . + . transcript_id "YGL088W_mRNA"; gene_id "YGL088W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 345836 346201 . + 0 transcript_id "YGL088W_mRNA"; gene_id "YGL088W"; +chrVII SGD gene 345986 346230 . + . gene_id "YNCG0013W"; gene_biotype "ncRNA"; +chrVII SGD transcript 345986 346230 . + . transcript_id "YNCG0013W_snoRNA"; gene_id "YNCG0013W"; gene_name "SNR10"; transcript_biotype "ncRNA"; +chrVII SGD exon 345986 346230 . + . transcript_id "YNCG0013W_snoRNA"; gene_name "SNR10"; gene_id "YNCG0013W"; +chrVII SGD gene 346205 346943 . - . gene_id "YGL087C"; gene_biotype "protein_coding"; +chrVII SGD transcript 346205 346943 . - . transcript_id "YGL087C_id002"; gene_id "YGL087C"; gene_name "MMS2"; transcript_biotype "protein_coding"; +chrVII SGD exon 346205 346943 . - . transcript_id "YGL087C_id002"; gene_id "YGL087C"; gene_name "MMS2"; +chrVII SGD transcript 346406 346904 . - . transcript_id "YGL087C_id001"; gene_id "YGL087C"; gene_name "MMS2"; transcript_biotype "protein_coding"; +chrVII SGD exon 346406 346808 . - 1 transcript_id "YGL087C_id001"; gene_name "MMS2"; gene_id "YGL087C"; +chrVII SGD exon 346894 346904 . - 0 transcript_id "YGL087C_id001"; gene_name "MMS2"; gene_id "YGL087C"; +chrVII SGD gene 347119 349368 . + . gene_id "YGL086W"; gene_biotype "protein_coding"; +chrVII SGD transcript 347119 349368 . + . transcript_id "YGL086W_mRNA"; gene_id "YGL086W"; gene_name "MAD1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 347119 349368 . + 0 transcript_id "YGL086W_mRNA"; gene_name "MAD1"; gene_id "YGL086W"; +chrVII SGD gene 349554 350620 . + . gene_id "YGL085W"; gene_biotype "protein_coding"; +chrVII SGD transcript 349554 350620 . + . transcript_id "YGL085W_id006"; gene_id "YGL085W"; gene_name "LCL3"; transcript_biotype "protein_coding"; +chrVII SGD exon 349554 350620 . + . transcript_id "YGL085W_id006"; gene_id "YGL085W"; gene_name "LCL3"; +chrVII SGD transcript 349616 350440 . + . transcript_id "YGL085W_id001"; gene_id "YGL085W"; gene_name "LCL3"; transcript_biotype "protein_coding"; +chrVII SGD exon 349616 350440 . + 0 transcript_id "YGL085W_id001"; gene_name "LCL3"; gene_id "YGL085W"; +chrVII SGD gene 350391 352345 . - . gene_id "YGL084C"; gene_biotype "protein_coding"; +chrVII SGD transcript 350391 352345 . - . transcript_id "YGL084C_id002"; gene_id "YGL084C"; gene_name "GUP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 350391 352345 . - . transcript_id "YGL084C_id002"; gene_id "YGL084C"; gene_name "GUP1"; +chrVII SGD transcript 350616 352298 . - . transcript_id "YGL084C_id001"; gene_id "YGL084C"; gene_name "GUP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 350616 352298 . - 0 transcript_id "YGL084C_id001"; gene_name "GUP1"; gene_id "YGL084C"; +chrVII SGD gene 352994 355652 . + . gene_id "YGL083W"; gene_biotype "protein_coding"; +chrVII SGD transcript 352994 355652 . + . transcript_id "YGL083W_id001"; gene_id "YGL083W"; gene_name "SCY1"; transcript_biotype "protein_coding"; +chrVII SGD exon 352994 355652 . + . transcript_id "YGL083W_id001"; gene_id "YGL083W"; gene_name "SCY1"; +chrVII SGD transcript 353058 355472 . + . transcript_id "YGL083W_id002"; gene_id "YGL083W"; gene_name "SCY1"; transcript_biotype "protein_coding"; +chrVII SGD exon 353058 355472 . + 0 transcript_id "YGL083W_id002"; gene_name "SCY1"; gene_id "YGL083W"; +chrVII SGD gene 355737 357167 . + . gene_id "YGL082W"; gene_biotype "protein_coding"; +chrVII SGD transcript 355737 357167 . + . transcript_id "YGL082W_id002"; gene_id "YGL082W"; transcript_biotype "protein_coding"; +chrVII SGD exon 355737 357167 . + . transcript_id "YGL082W_id002"; gene_id "YGL082W"; +chrVII SGD transcript 355827 356972 . + . transcript_id "YGL082W_id001"; gene_id "YGL082W"; transcript_biotype "protein_coding"; +chrVII SGD exon 355827 356972 . + 0 transcript_id "YGL082W_id001"; gene_id "YGL082W"; +chrVII SGD gene 357199 358628 . + . gene_id "YGL081W"; gene_biotype "protein_coding"; +chrVII SGD transcript 357199 358628 . + . transcript_id "YGL081W_id002"; gene_id "YGL081W"; transcript_biotype "protein_coding"; +chrVII SGD exon 357199 358628 . + . transcript_id "YGL081W_id002"; gene_id "YGL081W"; +chrVII SGD transcript 357377 358339 . + . transcript_id "YGL081W_id001"; gene_id "YGL081W"; transcript_biotype "protein_coding"; +chrVII SGD exon 357377 358339 . + 0 transcript_id "YGL081W_id001"; gene_id "YGL081W"; +chrVII SGD gene 358555 359306 . + . gene_id "YGL080W"; gene_biotype "protein_coding"; +chrVII SGD transcript 358555 359306 . + . transcript_id "YGL080W_id011"; gene_id "YGL080W"; gene_name "MPC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 358555 359306 . + . transcript_id "YGL080W_id011"; gene_id "YGL080W"; gene_name "MPC1"; +chrVII SGD transcript 358636 359028 . + . transcript_id "YGL080W_id001"; gene_id "YGL080W"; gene_name "MPC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 358636 359028 . + 0 transcript_id "YGL080W_id001"; gene_name "MPC1"; gene_id "YGL080W"; +chrVII SGD gene 359407 360797 . + . gene_id "YGL079W"; gene_biotype "protein_coding"; +chrVII SGD transcript 359407 360797 . + . transcript_id "YGL079W_id001"; gene_id "YGL079W"; gene_name "KXD1"; transcript_biotype "protein_coding"; +chrVII SGD exon 359407 360797 . + . transcript_id "YGL079W_id001"; gene_id "YGL079W"; gene_name "KXD1"; +chrVII SGD transcript 359444 360100 . + . transcript_id "YGL079W_id004"; gene_id "YGL079W"; gene_name "KXD1"; transcript_biotype "protein_coding"; +chrVII SGD exon 359444 360100 . + 0 transcript_id "YGL079W_id004"; gene_name "KXD1"; gene_id "YGL079W"; +chrVII SGD gene 360096 361986 . - . gene_id "YGL078C"; gene_biotype "protein_coding"; +chrVII SGD transcript 360096 361986 . - . transcript_id "YGL078C_id002"; gene_id "YGL078C"; gene_name "DBP3"; transcript_biotype "protein_coding"; +chrVII SGD exon 360096 361986 . - . transcript_id "YGL078C_id002"; gene_id "YGL078C"; gene_name "DBP3"; +chrVII SGD transcript 360288 361859 . - . transcript_id "YGL078C_id001"; gene_id "YGL078C"; gene_name "DBP3"; transcript_biotype "protein_coding"; +chrVII SGD exon 360288 361859 . - 0 transcript_id "YGL078C_id001"; gene_name "DBP3"; gene_id "YGL078C"; +chrVII SGD gene 362141 364083 . - . gene_id "YGL077C"; gene_biotype "protein_coding"; +chrVII SGD transcript 362141 364083 . - . transcript_id "YGL077C_id005"; gene_id "YGL077C"; gene_name "HNM1"; transcript_biotype "protein_coding"; +chrVII SGD exon 362141 364083 . - . transcript_id "YGL077C_id005"; gene_id "YGL077C"; gene_name "HNM1"; +chrVII SGD transcript 362225 363916 . - . transcript_id "YGL077C_id001"; gene_id "YGL077C"; gene_name "HNM1"; transcript_biotype "protein_coding"; +chrVII SGD exon 362225 363916 . - 0 transcript_id "YGL077C_id001"; gene_name "HNM1"; gene_id "YGL077C"; +chrVII SGD gene 364219 366148 . - . gene_id "YGL076C"; gene_biotype "protein_coding"; +chrVII SGD transcript 364219 366148 . - . transcript_id "YGL076C_id002"; gene_id "YGL076C"; gene_name "RPL7A"; transcript_biotype "protein_coding"; +chrVII SGD exon 364219 366148 . - . transcript_id "YGL076C_id002"; gene_id "YGL076C"; gene_name "RPL7A"; +chrVII SGD transcript 364335 365996 . - . transcript_id "YGL076C_id001"; gene_id "YGL076C"; gene_name "RPL7A"; transcript_biotype "protein_coding"; +chrVII SGD exon 364335 364964 . - 0 transcript_id "YGL076C_id001"; gene_name "RPL7A"; gene_id "YGL076C"; +chrVII SGD exon 365433 365526 . - 1 transcript_id "YGL076C_id001"; gene_name "RPL7A"; gene_id "YGL076C"; +chrVII SGD exon 365986 365996 . - 0 transcript_id "YGL076C_id001"; gene_name "RPL7A"; gene_id "YGL076C"; +chrVII SGD gene 365163 365251 . - . gene_id "YNCG0014C"; gene_biotype "ncRNA"; +chrVII SGD transcript 365163 365251 . - . transcript_id "YNCG0014C_snoRNA"; gene_id "YNCG0014C"; gene_name "SNR39"; transcript_biotype "ncRNA"; +chrVII SGD exon 365163 365251 . - . transcript_id "YNCG0014C_snoRNA"; gene_name "SNR39"; gene_id "YNCG0014C"; +chrVII SGD gene 366374 366469 . - . gene_id "YNCG0015C"; gene_biotype "ncRNA"; +chrVII SGD transcript 366374 366469 . - . transcript_id "YNCG0015C_snoRNA"; gene_id "YNCG0015C"; gene_name "SNR39B"; transcript_biotype "ncRNA"; +chrVII SGD exon 366374 366469 . - . transcript_id "YNCG0015C_snoRNA"; gene_name "SNR39B"; gene_id "YNCG0015C"; +chrVII SGD gene 366819 368283 . - . gene_id "YGL075C"; gene_biotype "protein_coding"; +chrVII SGD transcript 366819 368283 . - . transcript_id "YGL075C_id004"; gene_id "YGL075C"; gene_name "MPS2"; transcript_biotype "protein_coding"; +chrVII SGD exon 366819 368283 . - . transcript_id "YGL075C_id004"; gene_id "YGL075C"; gene_name "MPS2"; +chrVII SGD transcript 366925 368088 . - . transcript_id "YGL075C_id001"; gene_id "YGL075C"; gene_name "MPS2"; transcript_biotype "protein_coding"; +chrVII SGD exon 366925 368088 . - 0 transcript_id "YGL075C_id001"; gene_name "MPS2"; gene_id "YGL075C"; +chrVII SGD gene 368424 371311 . + . gene_id "YGL073W"; gene_biotype "protein_coding"; +chrVII SGD transcript 368424 371311 . + . transcript_id "YGL073W_id001"; gene_id "YGL073W"; gene_name "HSF1"; transcript_biotype "protein_coding"; +chrVII SGD exon 368424 371311 . + . transcript_id "YGL073W_id001"; gene_id "YGL073W"; gene_name "HSF1"; +chrVII SGD gene 368596 368922 . - . gene_id "YGL074C"; gene_biotype "protein_coding"; +chrVII SGD transcript 368596 368922 . - . transcript_id "YGL074C_mRNA"; gene_id "YGL074C"; transcript_biotype "protein_coding"; +chrVII SGD CDS 368596 368922 . - 0 transcript_id "YGL074C_mRNA"; gene_id "YGL074C"; +chrVII SGD transcript 368753 371254 . + . transcript_id "YGL073W_id002"; gene_id "YGL073W"; gene_name "HSF1"; transcript_biotype "protein_coding"; +chrVII SGD exon 368753 371254 . + 0 transcript_id "YGL073W_id002"; gene_name "HSF1"; gene_id "YGL073W"; +chrVII SGD gene 371003 371362 . - . gene_id "YGL072C"; gene_biotype "protein_coding"; +chrVII SGD transcript 371003 371362 . - . transcript_id "YGL072C_mRNA"; gene_id "YGL072C"; transcript_biotype "protein_coding"; +chrVII SGD CDS 371003 371362 . - 0 transcript_id "YGL072C_mRNA"; gene_id "YGL072C"; +chrVII SGD gene 371906 374252 . + . gene_id "YGL071W"; gene_biotype "protein_coding"; +chrVII SGD transcript 371906 374252 . + . transcript_id "YGL071W_id014"; gene_id "YGL071W"; gene_name "AFT1"; transcript_biotype "protein_coding"; +chrVII SGD exon 371906 374252 . + . transcript_id "YGL071W_id014"; gene_id "YGL071W"; gene_name "AFT1"; +chrVII SGD transcript 372012 374084 . + . transcript_id "YGL071W_id001"; gene_id "YGL071W"; gene_name "AFT1"; transcript_biotype "protein_coding"; +chrVII SGD exon 372012 374084 . + 0 transcript_id "YGL071W_id001"; gene_name "AFT1"; gene_id "YGL071W"; +chrVII SGD gene 374069 374861 . - . gene_id "YGL070C"; gene_biotype "protein_coding"; +chrVII SGD transcript 374069 374861 . - . transcript_id "YGL070C_id003"; gene_id "YGL070C"; gene_name "RPB9"; transcript_biotype "protein_coding"; +chrVII SGD exon 374069 374861 . - . transcript_id "YGL070C_id003"; gene_id "YGL070C"; gene_name "RPB9"; +chrVII SGD transcript 374459 374827 . - . transcript_id "YGL070C_id001"; gene_id "YGL070C"; gene_name "RPB9"; transcript_biotype "protein_coding"; +chrVII SGD exon 374459 374827 . - 0 transcript_id "YGL070C_id001"; gene_name "RPB9"; gene_id "YGL070C"; +chrVII SGD gene 375049 375941 . + . gene_id "YGL068W"; gene_biotype "protein_coding"; +chrVII SGD transcript 375049 375941 . + . transcript_id "YGL068W_id002"; gene_id "YGL068W"; gene_name "MNP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 375049 375941 . + . transcript_id "YGL068W_id002"; gene_id "YGL068W"; gene_name "MNP1"; +chrVII SGD gene 375050 375514 . - . gene_id "YGL069C"; gene_biotype "protein_coding"; +chrVII SGD transcript 375050 375514 . - . transcript_id "YGL069C_mRNA"; gene_id "YGL069C"; transcript_biotype "protein_coding"; +chrVII SGD CDS 375050 375514 . - 0 transcript_id "YGL069C_mRNA"; gene_id "YGL069C"; +chrVII SGD transcript 375087 375671 . + . transcript_id "YGL068W_id001"; gene_id "YGL068W"; gene_name "MNP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 375087 375671 . + 0 transcript_id "YGL068W_id001"; gene_name "MNP1"; gene_id "YGL068W"; +chrVII SGD gene 376046 377488 . + . gene_id "YGL067W"; gene_biotype "protein_coding"; +chrVII SGD transcript 376046 377488 . + . transcript_id "YGL067W_id002"; gene_id "YGL067W"; gene_name "NPY1"; transcript_biotype "protein_coding"; +chrVII SGD exon 376046 377488 . + . transcript_id "YGL067W_id002"; gene_id "YGL067W"; gene_name "NPY1"; +chrVII SGD transcript 376101 377255 . + . transcript_id "YGL067W_id001"; gene_id "YGL067W"; gene_name "NPY1"; transcript_biotype "protein_coding"; +chrVII SGD exon 376101 377255 . + 0 transcript_id "YGL067W_id001"; gene_name "NPY1"; gene_id "YGL067W"; +chrVII SGD gene 377418 379778 . + . gene_id "YGL066W"; gene_biotype "protein_coding"; +chrVII SGD transcript 377418 379778 . + . transcript_id "YGL066W_id001"; gene_id "YGL066W"; gene_name "SGF73"; transcript_biotype "protein_coding"; +chrVII SGD exon 377418 379778 . + . transcript_id "YGL066W_id001"; gene_id "YGL066W"; gene_name "SGF73"; +chrVII SGD transcript 377609 379582 . + . transcript_id "YGL066W_id002"; gene_id "YGL066W"; gene_name "SGF73"; transcript_biotype "protein_coding"; +chrVII SGD exon 377609 379582 . + 0 transcript_id "YGL066W_id002"; gene_name "SGF73"; gene_id "YGL066W"; +chrVII SGD gene 379637 381327 . - . gene_id "YGL065C"; gene_biotype "protein_coding"; +chrVII SGD transcript 379637 381327 . - . transcript_id "YGL065C_id002"; gene_id "YGL065C"; gene_name "ALG2"; transcript_biotype "protein_coding"; +chrVII SGD exon 379637 381327 . - . transcript_id "YGL065C_id002"; gene_id "YGL065C"; gene_name "ALG2"; +chrVII SGD transcript 379760 381271 . - . transcript_id "YGL065C_id001"; gene_id "YGL065C"; gene_name "ALG2"; transcript_biotype "protein_coding"; +chrVII SGD exon 379760 381271 . - 0 transcript_id "YGL065C_id001"; gene_name "ALG2"; gene_id "YGL065C"; +chrVII SGD gene 381523 383208 . - . gene_id "YGL064C"; gene_biotype "protein_coding"; +chrVII SGD transcript 381523 383208 . - . transcript_id "YGL064C_id001"; gene_id "YGL064C"; gene_name "MRH4"; transcript_biotype "protein_coding"; +chrVII SGD exon 381523 383208 . - 0 transcript_id "YGL064C_id001"; gene_name "MRH4"; gene_id "YGL064C"; +chrVII SGD gene 383448 385226 . + . gene_id "YGL063W"; gene_biotype "protein_coding"; +chrVII SGD transcript 383448 385226 . + . transcript_id "YGL063W_id002"; gene_id "YGL063W"; gene_name "PUS2"; transcript_biotype "protein_coding"; +chrVII SGD exon 383448 385226 . + . transcript_id "YGL063W_id002"; gene_id "YGL063W"; gene_name "PUS2"; +chrVII SGD transcript 383654 384766 . + . transcript_id "YGL063W_id001"; gene_id "YGL063W"; gene_name "PUS2"; transcript_biotype "protein_coding"; +chrVII SGD exon 383654 384766 . + 0 transcript_id "YGL063W_id001"; gene_name "PUS2"; gene_id "YGL063W"; +chrVII SGD gene 384502 384651 . - . gene_id "YGL063C-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 384502 384651 . - . transcript_id "YGL063C-A_id001"; gene_id "YGL063C-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 384502 384651 . - 0 transcript_id "YGL063C-A_id001"; gene_id "YGL063C-A"; +chrVII SGD gene 385140 388783 . + . gene_id "YGL062W"; gene_biotype "protein_coding"; +chrVII SGD transcript 385140 388783 . + . transcript_id "YGL062W_id008"; gene_id "YGL062W"; gene_name "PYC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 385140 388783 . + . transcript_id "YGL062W_id008"; gene_id "YGL062W"; gene_name "PYC1"; +chrVII SGD transcript 385196 388732 . + . transcript_id "YGL062W_id001"; gene_id "YGL062W"; gene_name "PYC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 385196 388732 . + 0 transcript_id "YGL062W_id001"; gene_name "PYC1"; gene_id "YGL062W"; +chrVII SGD gene 388718 389779 . - . gene_id "YGL061C"; gene_biotype "protein_coding"; +chrVII SGD transcript 388718 389779 . - . transcript_id "YGL061C_id004"; gene_id "YGL061C"; gene_name "DUO1"; transcript_biotype "protein_coding"; +chrVII SGD exon 388718 389779 . - . transcript_id "YGL061C_id004"; gene_id "YGL061C"; gene_name "DUO1"; +chrVII SGD transcript 388968 389711 . - . transcript_id "YGL061C_id001"; gene_id "YGL061C"; gene_name "DUO1"; transcript_biotype "protein_coding"; +chrVII SGD exon 388968 389711 . - 0 transcript_id "YGL061C_id001"; gene_name "DUO1"; gene_id "YGL061C"; +chrVII SGD gene 389935 392265 . + . gene_id "YGL060W"; gene_biotype "protein_coding"; +chrVII SGD transcript 389935 392265 . + . transcript_id "YGL060W_id001"; gene_id "YGL060W"; gene_name "YBP2"; transcript_biotype "protein_coding"; +chrVII SGD exon 389935 392265 . + . transcript_id "YGL060W_id001"; gene_id "YGL060W"; gene_name "YBP2"; +chrVII SGD transcript 390065 391990 . + . transcript_id "YGL060W_id002"; gene_id "YGL060W"; gene_name "YBP2"; transcript_biotype "protein_coding"; +chrVII SGD exon 390065 391990 . + 0 transcript_id "YGL060W_id002"; gene_name "YBP2"; gene_id "YGL060W"; +chrVII SGD gene 392170 393891 . + . gene_id "YGL059W"; gene_biotype "protein_coding"; +chrVII SGD transcript 392170 393891 . + . transcript_id "YGL059W_id001"; gene_id "YGL059W"; gene_name "PKP2"; transcript_biotype "protein_coding"; +chrVII SGD exon 392170 393891 . + . transcript_id "YGL059W_id001"; gene_id "YGL059W"; gene_name "PKP2"; +chrVII SGD transcript 392223 393698 . + . transcript_id "YGL059W_id003"; gene_id "YGL059W"; gene_name "PKP2"; transcript_biotype "protein_coding"; +chrVII SGD exon 392223 393698 . + 0 transcript_id "YGL059W_id003"; gene_name "PKP2"; gene_id "YGL059W"; +chrVII SGD gene 393658 394900 . + . gene_id "YGL058W"; gene_biotype "protein_coding"; +chrVII SGD transcript 393658 394900 . + . transcript_id "YGL058W_id001"; gene_id "YGL058W"; gene_name "RAD6"; transcript_biotype "protein_coding"; +chrVII SGD exon 393658 394900 . + . transcript_id "YGL058W_id001"; gene_id "YGL058W"; gene_name "RAD6"; +chrVII SGD transcript 393986 394504 . + . transcript_id "YGL058W_id004"; gene_id "YGL058W"; gene_name "RAD6"; transcript_biotype "protein_coding"; +chrVII SGD exon 393986 394504 . + 0 transcript_id "YGL058W_id004"; gene_name "RAD6"; gene_id "YGL058W"; +chrVII SGD gene 394754 395866 . - . gene_id "YGL057C"; gene_biotype "protein_coding"; +chrVII SGD transcript 394754 395866 . - . transcript_id "YGL057C_id001"; gene_id "YGL057C"; gene_name "GEP7"; transcript_biotype "protein_coding"; +chrVII SGD exon 394754 395866 . - . transcript_id "YGL057C_id001"; gene_id "YGL057C"; gene_name "GEP7"; +chrVII SGD transcript 394966 395829 . - . transcript_id "YGL057C_id002"; gene_id "YGL057C"; gene_name "GEP7"; transcript_biotype "protein_coding"; +chrVII SGD exon 394966 395829 . - 0 transcript_id "YGL057C_id002"; gene_name "GEP7"; gene_id "YGL057C"; +chrVII SGD gene 395953 397716 . - . gene_id "YGL056C"; gene_biotype "protein_coding"; +chrVII SGD transcript 395953 397716 . - . transcript_id "YGL056C_id004"; gene_id "YGL056C"; gene_name "SDS23"; transcript_biotype "protein_coding"; +chrVII SGD exon 395953 397716 . - . transcript_id "YGL056C_id004"; gene_id "YGL056C"; gene_name "SDS23"; +chrVII SGD transcript 396035 397618 . - . transcript_id "YGL056C_id001"; gene_id "YGL056C"; gene_name "SDS23"; transcript_biotype "protein_coding"; +chrVII SGD exon 396035 397618 . - 0 transcript_id "YGL056C_id001"; gene_name "SDS23"; gene_id "YGL056C"; +chrVII SGD gene 398536 400441 . + . gene_id "YGL055W"; gene_biotype "protein_coding"; +chrVII SGD transcript 398536 400441 . + . transcript_id "YGL055W_id001"; gene_id "YGL055W"; gene_name "OLE1"; transcript_biotype "protein_coding"; +chrVII SGD exon 398536 400441 . + . transcript_id "YGL055W_id001"; gene_id "YGL055W"; gene_name "OLE1"; +chrVII SGD transcript 398628 400160 . + . transcript_id "YGL055W_id004"; gene_id "YGL055W"; gene_name "OLE1"; transcript_biotype "protein_coding"; +chrVII SGD exon 398628 400160 . + 0 transcript_id "YGL055W_id004"; gene_name "OLE1"; gene_id "YGL055W"; +chrVII SGD gene 400538 401380 . - . gene_id "YGL054C"; gene_biotype "protein_coding"; +chrVII SGD transcript 400538 401380 . - . transcript_id "YGL054C_id002"; gene_id "YGL054C"; gene_name "ERV14"; transcript_biotype "protein_coding"; +chrVII SGD exon 400538 401380 . - . transcript_id "YGL054C_id002"; gene_id "YGL054C"; gene_name "ERV14"; +chrVII SGD transcript 400871 401287 . - . transcript_id "YGL054C_id001"; gene_id "YGL054C"; gene_name "ERV14"; transcript_biotype "protein_coding"; +chrVII SGD exon 400871 401287 . - 0 transcript_id "YGL054C_id001"; gene_name "ERV14"; gene_id "YGL054C"; +chrVII SGD gene 401527 401598 . - . gene_id "YNCG0016C"; gene_biotype "ncRNA"; +chrVII SGD transcript 401527 401598 . - . transcript_id "YNCG0016C_tRNA"; gene_id "YNCG0016C"; transcript_biotype "ncRNA"; +chrVII SGD exon 401527 401598 . - . transcript_id "YNCG0016C_tRNA"; gene_id "YNCG0016C"; +chrVII SGD gene 402490 403626 . + . gene_id "YGL053W"; gene_biotype "protein_coding"; +chrVII SGD transcript 402490 403626 . + . transcript_id "YGL053W_id002"; gene_id "YGL053W"; gene_name "PRM8"; transcript_biotype "protein_coding"; +chrVII SGD exon 402490 403626 . + . transcript_id "YGL053W_id002"; gene_id "YGL053W"; gene_name "PRM8"; +chrVII SGD transcript 402589 403302 . + . transcript_id "YGL053W_id001"; gene_id "YGL053W"; gene_name "PRM8"; transcript_biotype "protein_coding"; +chrVII SGD exon 402589 403302 . + 0 transcript_id "YGL053W_id001"; gene_name "PRM8"; gene_id "YGL053W"; +chrVII SGD gene 403437 403742 . + . gene_id "YGL052W"; gene_biotype "protein_coding"; +chrVII SGD transcript 403437 403742 . + . transcript_id "YGL052W_mRNA"; gene_id "YGL052W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 403437 403742 . + 0 transcript_id "YGL052W_mRNA"; gene_id "YGL052W"; +chrVII SGD gene 403687 404391 . + . gene_id "YGL051W"; gene_biotype "protein_coding"; +chrVII SGD transcript 403687 404391 . + . transcript_id "YGL051W_mRNA"; gene_id "YGL051W"; gene_name "MST27"; transcript_biotype "protein_coding"; +chrVII SGD CDS 403687 404391 . + 0 transcript_id "YGL051W_mRNA"; gene_name "MST27"; gene_id "YGL051W"; +chrVII SGD gene 405470 405541 . + . gene_id "YNCG0017W"; gene_biotype "ncRNA"; +chrVII SGD transcript 405470 405541 . + . transcript_id "YNCG0017W_tRNA"; gene_id "YNCG0017W"; transcript_biotype "ncRNA"; +chrVII SGD exon 405470 405541 . + . transcript_id "YNCG0017W_tRNA"; gene_id "YNCG0017W"; +chrVII SGD gene 405691 406865 . + . gene_id "YGL050W"; gene_biotype "protein_coding"; +chrVII SGD transcript 405691 406865 . + . transcript_id "YGL050W_id002"; gene_id "YGL050W"; gene_name "TYW3"; transcript_biotype "protein_coding"; +chrVII SGD exon 405691 406865 . + . transcript_id "YGL050W_id002"; gene_id "YGL050W"; gene_name "TYW3"; +chrVII SGD transcript 405776 406597 . + . transcript_id "YGL050W_id001"; gene_id "YGL050W"; gene_name "TYW3"; transcript_biotype "protein_coding"; +chrVII SGD exon 405776 406597 . + 0 transcript_id "YGL050W_id001"; gene_name "TYW3"; gene_id "YGL050W"; +chrVII SGD gene 406693 409765 . - . gene_id "YGL049C"; gene_biotype "protein_coding"; +chrVII SGD transcript 406693 409765 . - . transcript_id "YGL049C_id004"; gene_id "YGL049C"; gene_name "TIF4632"; transcript_biotype "protein_coding"; +chrVII SGD exon 406693 409765 . - . transcript_id "YGL049C_id004"; gene_id "YGL049C"; gene_name "TIF4632"; +chrVII SGD transcript 406860 409604 . - . transcript_id "YGL049C_id001"; gene_id "YGL049C"; gene_name "TIF4632"; transcript_biotype "protein_coding"; +chrVII SGD exon 406860 409604 . - 0 transcript_id "YGL049C_id001"; gene_name "TIF4632"; gene_id "YGL049C"; +chrVII SGD gene 409852 411314 . - . gene_id "YGL048C"; gene_biotype "protein_coding"; +chrVII SGD transcript 409852 411314 . - . transcript_id "YGL048C_id001"; gene_id "YGL048C"; gene_name "RPT6"; transcript_biotype "protein_coding"; +chrVII SGD exon 409852 411314 . - . transcript_id "YGL048C_id001"; gene_id "YGL048C"; gene_name "RPT6"; +chrVII SGD transcript 410069 411286 . - . transcript_id "YGL048C_id003"; gene_id "YGL048C"; gene_name "RPT6"; transcript_biotype "protein_coding"; +chrVII SGD exon 410069 411286 . - 0 transcript_id "YGL048C_id003"; gene_name "RPT6"; gene_id "YGL048C"; +chrVII SGD gene 411465 412279 . + . gene_id "YGL047W"; gene_biotype "protein_coding"; +chrVII SGD transcript 411465 412279 . + . transcript_id "YGL047W_id005"; gene_id "YGL047W"; gene_name "ALG13"; transcript_biotype "protein_coding"; +chrVII SGD exon 411465 412279 . + . transcript_id "YGL047W_id005"; gene_id "YGL047W"; gene_name "ALG13"; +chrVII SGD transcript 411552 412160 . + . transcript_id "YGL047W_id001"; gene_id "YGL047W"; gene_name "ALG13"; transcript_biotype "protein_coding"; +chrVII SGD exon 411552 412160 . + 0 transcript_id "YGL047W_id001"; gene_name "ALG13"; gene_id "YGL047W"; +chrVII SGD gene 412294 412367 . - . gene_id "YNCG0018C"; gene_biotype "ncRNA"; +chrVII SGD transcript 412294 412367 . - . transcript_id "YNCG0018C_tRNA"; gene_id "YNCG0018C"; transcript_biotype "ncRNA"; +chrVII SGD exon 412294 412367 . - . transcript_id "YNCG0018C_tRNA"; gene_id "YNCG0018C"; +chrVII SGD gene 413730 415957 . + . gene_id "YGL045W"; gene_biotype "protein_coding"; +chrVII SGD transcript 413730 415957 . + . transcript_id "YGL045W_id001"; gene_id "YGL045W"; gene_name "RIM8"; transcript_biotype "protein_coding"; +chrVII SGD exon 413730 415957 . + . transcript_id "YGL045W_id001"; gene_id "YGL045W"; gene_name "RIM8"; +chrVII SGD transcript 414102 415730 . + . transcript_id "YGL045W_id002"; gene_id "YGL045W"; gene_name "RIM8"; transcript_biotype "protein_coding"; +chrVII SGD exon 414102 415730 . + 0 transcript_id "YGL045W_id002"; gene_name "RIM8"; gene_id "YGL045W"; +chrVII SGD gene 415860 417264 . - . gene_id "YGL044C"; gene_biotype "protein_coding"; +chrVII SGD transcript 415860 417264 . - . transcript_id "YGL044C_id005"; gene_id "YGL044C"; gene_name "RNA15"; transcript_biotype "protein_coding"; +chrVII SGD exon 415860 417264 . - . transcript_id "YGL044C_id005"; gene_id "YGL044C"; gene_name "RNA15"; +chrVII SGD transcript 416146 417036 . - . transcript_id "YGL044C_id001"; gene_id "YGL044C"; gene_name "RNA15"; transcript_biotype "protein_coding"; +chrVII SGD exon 416146 417036 . - 0 transcript_id "YGL044C_id001"; gene_name "RNA15"; gene_id "YGL044C"; +chrVII SGD gene 417479 418860 . + . gene_id "YGL043W"; gene_biotype "protein_coding"; +chrVII SGD transcript 417479 418860 . + . transcript_id "YGL043W_id002"; gene_id "YGL043W"; gene_name "DST1"; transcript_biotype "protein_coding"; +chrVII SGD exon 417479 418860 . + . transcript_id "YGL043W_id002"; gene_id "YGL043W"; gene_name "DST1"; +chrVII SGD transcript 417483 418412 . + . transcript_id "YGL043W_id001"; gene_id "YGL043W"; gene_name "DST1"; transcript_biotype "protein_coding"; +chrVII SGD exon 417483 418412 . + 0 transcript_id "YGL043W_id001"; gene_name "DST1"; gene_id "YGL043W"; +chrVII SGD gene 418288 418593 . - . gene_id "YGL042C"; gene_biotype "protein_coding"; +chrVII SGD transcript 418288 418593 . - . transcript_id "YGL042C_id001"; gene_id "YGL042C"; transcript_biotype "protein_coding"; +chrVII SGD exon 418288 418593 . - 0 transcript_id "YGL042C_id001"; gene_id "YGL042C"; +chrVII SGD gene 418560 419184 . - . gene_id "YGL041C-B"; gene_biotype "protein_coding"; +chrVII SGD transcript 418560 419184 . - . transcript_id "YGL041C-B_id002"; gene_id "YGL041C-B"; transcript_biotype "protein_coding"; +chrVII SGD exon 418560 419184 . - . transcript_id "YGL041C-B_id002"; gene_id "YGL041C-B"; +chrVII SGD transcript 418704 418886 . - . transcript_id "YGL041C-B_id001"; gene_id "YGL041C-B"; transcript_biotype "protein_coding"; +chrVII SGD exon 418704 418886 . - 0 transcript_id "YGL041C-B_id001"; gene_id "YGL041C-B"; +chrVII SGD gene 418809 419501 . + . gene_id "YGL041W-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 418809 419501 . + . transcript_id "YGL041W-A_id004"; gene_id "YGL041W-A"; gene_name "DPC13"; transcript_biotype "protein_coding"; +chrVII SGD exon 418809 419501 . + . transcript_id "YGL041W-A_id004"; gene_id "YGL041W-A"; gene_name "DPC13"; +chrVII SGD transcript 418825 419289 . + . transcript_id "YGL041W-A_id001"; gene_id "YGL041W-A"; gene_name "DPC13"; transcript_biotype "protein_coding"; +chrVII SGD exon 418825 419289 . + 0 transcript_id "YGL041W-A_id001"; gene_name "DPC13"; gene_id "YGL041W-A"; +chrVII SGD gene 419022 419225 . - . gene_id "YGL041C"; gene_biotype "protein_coding"; +chrVII SGD transcript 419022 419225 . - . transcript_id "YGL041C_mRNA"; gene_id "YGL041C"; transcript_biotype "protein_coding"; +chrVII SGD CDS 419022 419225 . - 0 transcript_id "YGL041C_mRNA"; gene_id "YGL041C"; +chrVII SGD gene 419301 420680 . - . gene_id "YGL040C"; gene_biotype "protein_coding"; +chrVII SGD transcript 419301 420680 . - . transcript_id "YGL040C_id006"; gene_id "YGL040C"; gene_name "HEM2"; transcript_biotype "protein_coding"; +chrVII SGD exon 419301 420680 . - . transcript_id "YGL040C_id006"; gene_id "YGL040C"; gene_name "HEM2"; +chrVII SGD transcript 419527 420555 . - . transcript_id "YGL040C_id001"; gene_id "YGL040C"; gene_name "HEM2"; transcript_biotype "protein_coding"; +chrVII SGD exon 419527 420555 . - 0 transcript_id "YGL040C_id001"; gene_name "HEM2"; gene_id "YGL040C"; +chrVII SGD gene 423092 423205 . + . gene_id "YNCG0019W"; gene_biotype "ncRNA"; +chrVII SGD transcript 423092 423205 . + . transcript_id "YNCG0019W_tRNA"; gene_id "YNCG0019W"; gene_name "SUP54"; transcript_biotype "ncRNA"; +chrVII SGD exon 423092 423129 . + . transcript_id "YNCG0019W_tRNA"; gene_name "SUP54"; gene_id "YNCG0019W"; +chrVII SGD exon 423162 423205 . + . transcript_id "YNCG0019W_tRNA"; gene_name "SUP54"; gene_id "YNCG0019W"; +chrVII SGD gene 423450 425101 . + . gene_id "YGL039W"; gene_biotype "protein_coding"; +chrVII SGD transcript 423450 425101 . + . transcript_id "YGL039W_id006"; gene_id "YGL039W"; transcript_biotype "protein_coding"; +chrVII SGD exon 423450 425101 . + . transcript_id "YGL039W_id006"; gene_id "YGL039W"; +chrVII SGD transcript 423961 425007 . + . transcript_id "YGL039W_id001"; gene_id "YGL039W"; transcript_biotype "protein_coding"; +chrVII SGD exon 423961 425007 . + 0 transcript_id "YGL039W_id001"; gene_id "YGL039W"; +chrVII SGD gene 424902 426916 . - . gene_id "YGL038C"; gene_biotype "protein_coding"; +chrVII SGD transcript 424902 426916 . - . transcript_id "YGL038C_id001"; gene_id "YGL038C"; gene_name "OCH1"; transcript_biotype "protein_coding"; +chrVII SGD exon 424902 426916 . - . transcript_id "YGL038C_id001"; gene_id "YGL038C"; gene_name "OCH1"; +chrVII SGD transcript 425362 426804 . - . transcript_id "YGL038C_id007"; gene_id "YGL038C"; gene_name "OCH1"; transcript_biotype "protein_coding"; +chrVII SGD exon 425362 426804 . - 0 transcript_id "YGL038C_id007"; gene_name "OCH1"; gene_id "YGL038C"; +chrVII SGD gene 427158 428067 . - . gene_id "YGL037C"; gene_biotype "protein_coding"; +chrVII SGD transcript 427158 428067 . - . transcript_id "YGL037C_id002"; gene_id "YGL037C"; gene_name "PNC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 427158 428067 . - . transcript_id "YGL037C_id002"; gene_id "YGL037C"; gene_name "PNC1"; +chrVII SGD transcript 427297 427947 . - . transcript_id "YGL037C_id001"; gene_id "YGL037C"; gene_name "PNC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 427297 427947 . - 0 transcript_id "YGL037C_id001"; gene_name "PNC1"; gene_id "YGL037C"; +chrVII SGD gene 428601 431330 . + . gene_id "YGL036W"; gene_biotype "protein_coding"; +chrVII SGD transcript 428601 431330 . + . transcript_id "YGL036W_mRNA"; gene_id "YGL036W"; gene_name "VIR1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 428601 431330 . + 0 transcript_id "YGL036W_mRNA"; gene_name "VIR1"; gene_id "YGL036W"; +chrVII SGD gene 431548 433062 . - . gene_id "YGL035C"; gene_biotype "protein_coding"; +chrVII SGD transcript 431548 433062 . - . transcript_id "YGL035C_mRNA"; gene_id "YGL035C"; gene_name "MIG1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 431548 433062 . - 0 transcript_id "YGL035C_mRNA"; gene_name "MIG1"; gene_id "YGL035C"; +chrVII SGD gene 433214 433579 . - . gene_id "YGL034C"; gene_biotype "protein_coding"; +chrVII SGD transcript 433214 433579 . - . transcript_id "YGL034C_id001"; gene_id "YGL034C"; transcript_biotype "protein_coding"; +chrVII SGD exon 433214 433579 . - 0 transcript_id "YGL034C_id001"; gene_id "YGL034C"; +chrVII SGD gene 435625 436401 . + . gene_id "YGL033W"; gene_biotype "protein_coding"; +chrVII SGD transcript 435625 436401 . + . transcript_id "YGL033W_mRNA"; gene_id "YGL033W"; gene_name "HOP2"; transcript_biotype "protein_coding"; +chrVII SGD CDS 435625 435679 . + 0 transcript_id "YGL033W_mRNA"; gene_name "HOP2"; gene_id "YGL033W"; +chrVII SGD CDS 435750 436312 . + 2 transcript_id "YGL033W_mRNA"; gene_name "HOP2"; gene_id "YGL033W"; +chrVII SGD CDS 436375 436401 . + 0 transcript_id "YGL033W_mRNA"; gene_name "HOP2"; gene_id "YGL033W"; +chrVII SGD gene 436470 437054 . - . gene_id "YGL032C"; gene_biotype "protein_coding"; +chrVII SGD transcript 436470 437054 . - . transcript_id "YGL032C_id002"; gene_id "YGL032C"; gene_name "AGA2"; transcript_biotype "protein_coding"; +chrVII SGD exon 436470 437054 . - . transcript_id "YGL032C_id002"; gene_id "YGL032C"; gene_name "AGA2"; +chrVII SGD transcript 436570 436833 . - . transcript_id "YGL032C_id001"; gene_id "YGL032C"; gene_name "AGA2"; transcript_biotype "protein_coding"; +chrVII SGD exon 436570 436833 . - 0 transcript_id "YGL032C_id001"; gene_name "AGA2"; gene_id "YGL032C"; +chrVII SGD gene 437223 438447 . - . gene_id "YGL031C"; gene_biotype "protein_coding"; +chrVII SGD transcript 437223 438447 . - . transcript_id "YGL031C_id005"; gene_id "YGL031C"; gene_name "RPL24A"; transcript_biotype "protein_coding"; +chrVII SGD exon 437223 438447 . - . transcript_id "YGL031C_id005"; gene_id "YGL031C"; gene_name "RPL24A"; +chrVII SGD transcript 437467 438397 . - . transcript_id "YGL031C_id001"; gene_id "YGL031C"; gene_name "RPL24A"; transcript_biotype "protein_coding"; +chrVII SGD exon 437467 437934 . - . transcript_id "YGL031C_id001"; gene_name "RPL24A"; gene_id "YGL031C"; +chrVII SGD exon 437942 438397 . - . transcript_id "YGL031C_id001"; gene_name "RPL24A"; gene_id "YGL031C"; +chrVII SGD exon 437467 437934 . - 0 transcript_id "YGL031C_id001"; gene_name "RPL24A"; gene_id "YGL031C"; +chrVII SGD gene 439041 439908 . + . gene_id "YGL030W"; gene_biotype "protein_coding"; +chrVII SGD transcript 439041 439908 . + . transcript_id "YGL030W_id002"; gene_id "YGL030W"; gene_name "RPL30"; transcript_biotype "protein_coding"; +chrVII SGD exon 439041 439908 . + . transcript_id "YGL030W_id002"; gene_id "YGL030W"; gene_name "RPL30"; +chrVII SGD transcript 439091 439638 . + . transcript_id "YGL030W_id001"; gene_id "YGL030W"; gene_name "RPL30"; transcript_biotype "protein_coding"; +chrVII SGD exon 439091 439093 . + 0 transcript_id "YGL030W_id001"; gene_name "RPL30"; gene_id "YGL030W"; +chrVII SGD exon 439324 439638 . + 0 transcript_id "YGL030W_id001"; gene_name "RPL30"; gene_id "YGL030W"; +chrVII SGD gene 439782 440606 . + . gene_id "YGL029W"; gene_biotype "protein_coding"; +chrVII SGD transcript 439782 440606 . + . transcript_id "YGL029W_id002"; gene_id "YGL029W"; gene_name "CGR1"; transcript_biotype "protein_coding"; +chrVII SGD exon 439782 440606 . + . transcript_id "YGL029W_id002"; gene_id "YGL029W"; gene_name "CGR1"; +chrVII SGD transcript 440063 440425 . + . transcript_id "YGL029W_id001"; gene_id "YGL029W"; gene_name "CGR1"; transcript_biotype "protein_coding"; +chrVII SGD exon 440063 440425 . + 0 transcript_id "YGL029W_id001"; gene_name "CGR1"; gene_id "YGL029W"; +chrVII SGD gene 440716 440807 . - . gene_id "YNCG0020C"; gene_biotype "ncRNA"; +chrVII SGD transcript 440716 440807 . - . transcript_id "YNCG0020C_tRNA"; gene_id "YNCG0020C"; transcript_biotype "ncRNA"; +chrVII SGD exon 440716 440751 . - . transcript_id "YNCG0020C_tRNA"; gene_id "YNCG0020C"; +chrVII SGD exon 440771 440807 . - . transcript_id "YNCG0020C_tRNA"; gene_id "YNCG0020C"; +chrVII SGD gene 440982 443316 . - . gene_id "YGL028C"; gene_biotype "protein_coding"; +chrVII SGD transcript 440982 443316 . - . transcript_id "YGL028C_id001"; gene_id "YGL028C"; gene_name "SCW11"; transcript_biotype "protein_coding"; +chrVII SGD exon 440982 443316 . - . transcript_id "YGL028C_id001"; gene_id "YGL028C"; gene_name "SCW11"; +chrVII SGD transcript 441281 442909 . - . transcript_id "YGL028C_id003"; gene_id "YGL028C"; gene_name "SCW11"; transcript_biotype "protein_coding"; +chrVII SGD exon 441281 442909 . - 0 transcript_id "YGL028C_id003"; gene_name "SCW11"; gene_id "YGL028C"; +chrVII SGD gene 443550 446182 . - . gene_id "YGL027C"; gene_biotype "protein_coding"; +chrVII SGD transcript 443550 446182 . - . transcript_id "YGL027C_id002"; gene_id "YGL027C"; gene_name "CWH41"; transcript_biotype "protein_coding"; +chrVII SGD exon 443550 446182 . - . transcript_id "YGL027C_id002"; gene_id "YGL027C"; gene_name "CWH41"; +chrVII SGD transcript 443642 446143 . - . transcript_id "YGL027C_id001"; gene_id "YGL027C"; gene_name "CWH41"; transcript_biotype "protein_coding"; +chrVII SGD exon 443642 446143 . - 0 transcript_id "YGL027C_id001"; gene_name "CWH41"; gene_id "YGL027C"; +chrVII SGD gene 446250 448563 . - . gene_id "YGL026C"; gene_biotype "protein_coding"; +chrVII SGD transcript 446250 448563 . - . transcript_id "YGL026C_id003"; gene_id "YGL026C"; gene_name "TRP5"; transcript_biotype "protein_coding"; +chrVII SGD exon 446250 448563 . - . transcript_id "YGL026C_id003"; gene_id "YGL026C"; gene_name "TRP5"; +chrVII SGD transcript 446412 448535 . - . transcript_id "YGL026C_id001"; gene_id "YGL026C"; gene_name "TRP5"; transcript_biotype "protein_coding"; +chrVII SGD exon 446412 448535 . - 0 transcript_id "YGL026C_id001"; gene_name "TRP5"; gene_id "YGL026C"; +chrVII SGD gene 448764 449957 . - . gene_id "YGL025C"; gene_biotype "protein_coding"; +chrVII SGD transcript 448764 449957 . - . transcript_id "YGL025C_mRNA"; gene_id "YGL025C"; gene_name "PGD1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 448764 449957 . - 0 transcript_id "YGL025C_mRNA"; gene_name "PGD1"; gene_id "YGL025C"; +chrVII SGD gene 449788 450123 . + . gene_id "YGL024W"; gene_biotype "protein_coding"; +chrVII SGD transcript 449788 450123 . + . transcript_id "YGL024W_mRNA"; gene_id "YGL024W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 449788 450123 . + 0 transcript_id "YGL024W_mRNA"; gene_id "YGL024W"; +chrVII SGD gene 450069 452153 . - . gene_id "YGL023C"; gene_biotype "protein_coding"; +chrVII SGD transcript 450069 452153 . - . transcript_id "YGL023C_id001"; gene_id "YGL023C"; gene_name "PIB2"; transcript_biotype "protein_coding"; +chrVII SGD exon 450069 452153 . - . transcript_id "YGL023C_id001"; gene_id "YGL023C"; gene_name "PIB2"; +chrVII SGD transcript 450197 452104 . - . transcript_id "YGL023C_id002"; gene_id "YGL023C"; gene_name "PIB2"; transcript_biotype "protein_coding"; +chrVII SGD exon 450197 452104 . - 0 transcript_id "YGL023C_id002"; gene_name "PIB2"; gene_id "YGL023C"; +chrVII SGD gene 452331 454726 . + . gene_id "YGL022W"; gene_biotype "protein_coding"; +chrVII SGD transcript 452331 454726 . + . transcript_id "YGL022W_id002"; gene_id "YGL022W"; gene_name "STT3"; transcript_biotype "protein_coding"; +chrVII SGD exon 452331 454726 . + . transcript_id "YGL022W_id002"; gene_id "YGL022W"; gene_name "STT3"; +chrVII SGD transcript 452404 454560 . + . transcript_id "YGL022W_id001"; gene_id "YGL022W"; gene_name "STT3"; transcript_biotype "protein_coding"; +chrVII SGD exon 452404 454560 . + 0 transcript_id "YGL022W_id001"; gene_name "STT3"; gene_id "YGL022W"; +chrVII SGD gene 454785 457067 . + . gene_id "YGL021W"; gene_biotype "protein_coding"; +chrVII SGD transcript 454785 457067 . + . transcript_id "YGL021W_mRNA"; gene_id "YGL021W"; gene_name "ALK1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 454785 457067 . + 0 transcript_id "YGL021W_mRNA"; gene_name "ALK1"; gene_id "YGL021W"; +chrVII SGD gene 457075 457978 . - . gene_id "YGL020C"; gene_biotype "protein_coding"; +chrVII SGD transcript 457075 457978 . - . transcript_id "YGL020C_id001"; gene_id "YGL020C"; gene_name "GET1"; transcript_biotype "protein_coding"; +chrVII SGD exon 457075 457978 . - . transcript_id "YGL020C_id001"; gene_id "YGL020C"; gene_name "GET1"; +chrVII SGD transcript 457163 457870 . - . transcript_id "YGL020C_id002"; gene_id "YGL020C"; gene_name "GET1"; transcript_biotype "protein_coding"; +chrVII SGD exon 457163 457870 . - 0 transcript_id "YGL020C_id002"; gene_name "GET1"; gene_id "YGL020C"; +chrVII SGD gene 458014 459108 . + . gene_id "YGL019W"; gene_biotype "protein_coding"; +chrVII SGD transcript 458014 459108 . + . transcript_id "YGL019W_id002"; gene_id "YGL019W"; gene_name "CKB1"; transcript_biotype "protein_coding"; +chrVII SGD exon 458014 459108 . + . transcript_id "YGL019W_id002"; gene_id "YGL019W"; gene_name "CKB1"; +chrVII SGD transcript 458156 458992 . + . transcript_id "YGL019W_id001"; gene_id "YGL019W"; gene_name "CKB1"; transcript_biotype "protein_coding"; +chrVII SGD exon 458156 458992 . + 0 transcript_id "YGL019W_id001"; gene_name "CKB1"; gene_id "YGL019W"; +chrVII SGD gene 458843 459716 . - . gene_id "YGL018C"; gene_biotype "protein_coding"; +chrVII SGD transcript 458843 459716 . - . transcript_id "YGL018C_id003"; gene_id "YGL018C"; gene_name "JAC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 458843 459716 . - . transcript_id "YGL018C_id003"; gene_id "YGL018C"; gene_name "JAC1"; +chrVII SGD transcript 459110 459664 . - . transcript_id "YGL018C_id001"; gene_id "YGL018C"; gene_name "JAC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 459110 459664 . - 0 transcript_id "YGL018C_id001"; gene_name "JAC1"; gene_id "YGL018C"; +chrVII SGD gene 459660 461519 . + . gene_id "YGL017W"; gene_biotype "protein_coding"; +chrVII SGD transcript 459660 461519 . + . transcript_id "YGL017W_id001"; gene_id "YGL017W"; gene_name "ATE1"; transcript_biotype "protein_coding"; +chrVII SGD exon 459660 461519 . + . transcript_id "YGL017W_id001"; gene_id "YGL017W"; gene_name "ATE1"; +chrVII SGD transcript 459854 461365 . + . transcript_id "YGL017W_id003"; gene_id "YGL017W"; gene_name "ATE1"; transcript_biotype "protein_coding"; +chrVII SGD exon 459854 461365 . + 0 transcript_id "YGL017W_id003"; gene_name "ATE1"; gene_id "YGL017W"; +chrVII SGD gene 461666 464911 . + . gene_id "YGL016W"; gene_biotype "protein_coding"; +chrVII SGD transcript 461666 464911 . + . transcript_id "YGL016W_id001"; gene_id "YGL016W"; gene_name "KAP122"; transcript_biotype "protein_coding"; +chrVII SGD exon 461666 464911 . + 0 transcript_id "YGL016W_id001"; gene_name "KAP122"; gene_id "YGL016W"; +chrVII SGD gene 464796 465693 . - . gene_id "YGL015C"; gene_biotype "protein_coding"; +chrVII SGD transcript 464796 465693 . - . transcript_id "YGL015C_id001"; gene_id "YGL015C"; gene_name "BIL2"; transcript_biotype "protein_coding"; +chrVII SGD exon 464796 465693 . - . transcript_id "YGL015C_id001"; gene_id "YGL015C"; gene_name "BIL2"; +chrVII SGD transcript 465043 465435 . - . transcript_id "YGL015C_id002"; gene_id "YGL015C"; gene_name "BIL2"; transcript_biotype "protein_coding"; +chrVII SGD exon 465043 465435 . - 0 transcript_id "YGL015C_id002"; gene_name "BIL2"; gene_id "YGL015C"; +chrVII SGD gene 465720 468896 . + . gene_id "YGL014W"; gene_biotype "protein_coding"; +chrVII SGD transcript 465720 468896 . + . transcript_id "YGL014W_id001"; gene_id "YGL014W"; gene_name "PUF4"; transcript_biotype "protein_coding"; +chrVII SGD exon 465720 468896 . + . transcript_id "YGL014W_id001"; gene_id "YGL014W"; gene_name "PUF4"; +chrVII SGD transcript 466141 468807 . + . transcript_id "YGL014W_id002"; gene_id "YGL014W"; gene_name "PUF4"; transcript_biotype "protein_coding"; +chrVII SGD exon 466141 468807 . + 0 transcript_id "YGL014W_id002"; gene_name "PUF4"; gene_id "YGL014W"; +chrVII SGD gene 466237 466398 . - . gene_id "YGL014C-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 466237 466398 . - . transcript_id "YGL014C-A_mRNA"; gene_id "YGL014C-A"; transcript_biotype "protein_coding"; +chrVII SGD CDS 466237 466398 . - 0 transcript_id "YGL014C-A_mRNA"; gene_id "YGL014C-A"; +chrVII SGD gene 469092 472298 . - . gene_id "YGL013C"; gene_biotype "protein_coding"; +chrVII SGD transcript 469092 472298 . - . transcript_id "YGL013C_id001"; gene_id "YGL013C"; gene_name "PDR1"; transcript_biotype "protein_coding"; +chrVII SGD exon 469092 472298 . - 0 transcript_id "YGL013C_id001"; gene_name "PDR1"; gene_id "YGL013C"; +chrVII SGD gene 472818 474684 . + . gene_id "YGL012W"; gene_biotype "protein_coding"; +chrVII SGD transcript 472818 474684 . + . transcript_id "YGL012W_id001"; gene_id "YGL012W"; gene_name "ERG4"; transcript_biotype "protein_coding"; +chrVII SGD exon 472818 474684 . + . transcript_id "YGL012W_id001"; gene_id "YGL012W"; gene_name "ERG4"; +chrVII SGD transcript 472855 474276 . + . transcript_id "YGL012W_id002"; gene_id "YGL012W"; gene_name "ERG4"; transcript_biotype "protein_coding"; +chrVII SGD exon 472855 474276 . + 0 transcript_id "YGL012W_id002"; gene_name "ERG4"; gene_id "YGL012W"; +chrVII SGD gene 474200 475272 . - . gene_id "YGL011C"; gene_biotype "protein_coding"; +chrVII SGD transcript 474200 475272 . - . transcript_id "YGL011C_id003"; gene_id "YGL011C"; gene_name "SCL1"; transcript_biotype "protein_coding"; +chrVII SGD exon 474200 475272 . - . transcript_id "YGL011C_id003"; gene_id "YGL011C"; gene_name "SCL1"; +chrVII SGD transcript 474489 475247 . - . transcript_id "YGL011C_id001"; gene_id "YGL011C"; gene_name "SCL1"; transcript_biotype "protein_coding"; +chrVII SGD exon 474489 475247 . - 0 transcript_id "YGL011C_id001"; gene_name "SCL1"; gene_id "YGL011C"; +chrVII SGD gene 475438 476282 . + . gene_id "YGL010W"; gene_biotype "protein_coding"; +chrVII SGD transcript 475438 476282 . + . transcript_id "YGL010W_id002"; gene_id "YGL010W"; gene_name "MPO1"; transcript_biotype "protein_coding"; +chrVII SGD exon 475438 476282 . + . transcript_id "YGL010W_id002"; gene_id "YGL010W"; gene_name "MPO1"; +chrVII SGD transcript 475545 476069 . + . transcript_id "YGL010W_id001"; gene_id "YGL010W"; gene_name "MPO1"; transcript_biotype "protein_coding"; +chrVII SGD exon 475545 476069 . + 0 transcript_id "YGL010W_id001"; gene_name "MPO1"; gene_id "YGL010W"; +chrVII SGD gene 476115 478707 . - . gene_id "YGL009C"; gene_biotype "protein_coding"; +chrVII SGD transcript 476115 478707 . - . transcript_id "YGL009C_id001"; gene_id "YGL009C"; gene_name "LEU1"; transcript_biotype "protein_coding"; +chrVII SGD exon 476115 478707 . - . transcript_id "YGL009C_id001"; gene_id "YGL009C"; gene_name "LEU1"; +chrVII SGD transcript 476313 478652 . - . transcript_id "YGL009C_id003"; gene_id "YGL009C"; gene_name "LEU1"; transcript_biotype "protein_coding"; +chrVII SGD exon 476313 478652 . - 0 transcript_id "YGL009C_id003"; gene_name "LEU1"; gene_id "YGL009C"; +chrVII SGD gene 479380 482905 . - . gene_id "YGL008C"; gene_biotype "protein_coding"; +chrVII SGD transcript 479380 482905 . - . transcript_id "YGL008C_id001"; gene_id "YGL008C"; gene_name "PMA1"; transcript_biotype "protein_coding"; +chrVII SGD exon 479380 482905 . - . transcript_id "YGL008C_id001"; gene_id "YGL008C"; gene_name "PMA1"; +chrVII SGD transcript 479910 482666 . - . transcript_id "YGL008C_id002"; gene_id "YGL008C"; gene_name "PMA1"; transcript_biotype "protein_coding"; +chrVII SGD exon 479910 482666 . - 0 transcript_id "YGL008C_id002"; gene_name "PMA1"; gene_id "YGL008C"; +chrVII SGD gene 482644 483949 . - . gene_id "YGL007C-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 482644 483949 . - . transcript_id "YGL007C-A_id001"; gene_id "YGL007C-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 482644 483949 . - . transcript_id "YGL007C-A_id001"; gene_id "YGL007C-A"; +chrVII SGD transcript 482941 483027 . - . transcript_id "YGL007C-A_id002"; gene_id "YGL007C-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 482941 483027 . - 0 transcript_id "YGL007C-A_id002"; gene_id "YGL007C-A"; +chrVII SGD gene 483202 484287 . + . gene_id "YGL007W"; gene_biotype "protein_coding"; +chrVII SGD transcript 483202 484287 . + . transcript_id "YGL007W_id002"; gene_id "YGL007W"; gene_name "BRP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 483202 484287 . + . transcript_id "YGL007W_id002"; gene_id "YGL007W"; gene_name "BRP1"; +chrVII SGD transcript 483260 483637 . + . transcript_id "YGL007W_id001"; gene_id "YGL007W"; gene_name "BRP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 483260 483637 . + 0 transcript_id "YGL007W_id001"; gene_name "BRP1"; gene_id "YGL007W"; +chrVII SGD gene 485423 485533 . + . gene_id "YGL006W-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 485423 485533 . + . transcript_id "YGL006W-A_mRNA"; gene_id "YGL006W-A"; transcript_biotype "protein_coding"; +chrVII SGD CDS 485423 485533 . + 0 transcript_id "YGL006W-A_mRNA"; gene_id "YGL006W-A"; +chrVII SGD gene 485921 489442 . + . gene_id "YGL006W"; gene_biotype "protein_coding"; +chrVII SGD transcript 485921 489442 . + . transcript_id "YGL006W_id001"; gene_id "YGL006W"; gene_name "PMC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 485921 489442 . + 0 transcript_id "YGL006W_id001"; gene_name "PMC1"; gene_id "YGL006W"; +chrVII SGD gene 489497 490935 . - . gene_id "YGL005C"; gene_biotype "protein_coding"; +chrVII SGD transcript 489497 490935 . - . transcript_id "YGL005C_id001"; gene_id "YGL005C"; gene_name "COG7"; transcript_biotype "protein_coding"; +chrVII SGD exon 489497 490935 . - . transcript_id "YGL005C_id001"; gene_id "YGL005C"; gene_name "COG7"; +chrVII SGD transcript 489708 490547 . - . transcript_id "YGL005C_id005"; gene_id "YGL005C"; gene_name "COG7"; transcript_biotype "protein_coding"; +chrVII SGD exon 489708 490547 . - 0 transcript_id "YGL005C_id005"; gene_name "COG7"; gene_id "YGL005C"; +chrVII SGD gene 490571 491971 . - . gene_id "YGL004C"; gene_biotype "protein_coding"; +chrVII SGD transcript 490571 491971 . - . transcript_id "YGL004C_id001"; gene_id "YGL004C"; gene_name "RPN14"; transcript_biotype "protein_coding"; +chrVII SGD exon 490571 491971 . - . transcript_id "YGL004C_id001"; gene_id "YGL004C"; gene_name "RPN14"; +chrVII SGD transcript 490703 491956 . - . transcript_id "YGL004C_id002"; gene_id "YGL004C"; gene_name "RPN14"; transcript_biotype "protein_coding"; +chrVII SGD exon 490703 491956 . - 0 transcript_id "YGL004C_id002"; gene_name "RPN14"; gene_id "YGL004C"; +chrVII SGD gene 492285 494249 . - . gene_id "YGL003C"; gene_biotype "protein_coding"; +chrVII SGD transcript 492285 494249 . - . transcript_id "YGL003C_id004"; gene_id "YGL003C"; gene_name "CDH1"; transcript_biotype "protein_coding"; +chrVII SGD exon 492285 494249 . - . transcript_id "YGL003C_id004"; gene_id "YGL003C"; gene_name "CDH1"; +chrVII SGD transcript 492474 494174 . - . transcript_id "YGL003C_id001"; gene_id "YGL003C"; gene_name "CDH1"; transcript_biotype "protein_coding"; +chrVII SGD exon 492474 494174 . - 0 transcript_id "YGL003C_id001"; gene_name "CDH1"; gene_id "YGL003C"; +chrVII SGD gene 494406 495421 . + . gene_id "YGL002W"; gene_biotype "protein_coding"; +chrVII SGD transcript 494406 495421 . + . transcript_id "YGL002W_id002"; gene_id "YGL002W"; gene_name "ERP6"; transcript_biotype "protein_coding"; +chrVII SGD exon 494406 495421 . + . transcript_id "YGL002W_id002"; gene_id "YGL002W"; gene_name "ERP6"; +chrVII SGD transcript 494517 495167 . + . transcript_id "YGL002W_id001"; gene_id "YGL002W"; gene_name "ERP6"; transcript_biotype "protein_coding"; +chrVII SGD exon 494517 495167 . + 0 transcript_id "YGL002W_id001"; gene_name "ERP6"; gene_id "YGL002W"; +chrVII SGD gene 495330 496774 . - . gene_id "YGL001C"; gene_biotype "protein_coding"; +chrVII SGD transcript 495330 496774 . - . transcript_id "YGL001C_id001"; gene_id "YGL001C"; gene_name "ERG26"; transcript_biotype "protein_coding"; +chrVII SGD exon 495330 496774 . - . transcript_id "YGL001C_id001"; gene_id "YGL001C"; gene_name "ERG26"; +chrVII SGD transcript 495453 496502 . - . transcript_id "YGL001C_id003"; gene_id "YGL001C"; gene_name "ERG26"; transcript_biotype "protein_coding"; +chrVII SGD exon 495453 496502 . - 0 transcript_id "YGL001C_id003"; gene_name "ERG26"; gene_id "YGL001C"; +chrVII SGD gene 497061 498099 . - . gene_id "YGR001C"; gene_biotype "protein_coding"; +chrVII SGD transcript 497061 498099 . - . transcript_id "YGR001C_id001"; gene_id "YGR001C"; gene_name "EFM5"; transcript_biotype "protein_coding"; +chrVII SGD exon 497061 498099 . - . transcript_id "YGR001C_id001"; gene_id "YGR001C"; gene_name "EFM5"; +chrVII SGD transcript 497133 498034 . - . transcript_id "YGR001C_id002"; gene_id "YGR001C"; gene_name "EFM5"; transcript_biotype "protein_coding"; +chrVII SGD exon 497133 497365 . - 2 transcript_id "YGR001C_id002"; gene_name "EFM5"; gene_id "YGR001C"; +chrVII SGD exon 497459 497937 . - 1 transcript_id "YGR001C_id002"; gene_name "EFM5"; gene_id "YGR001C"; +chrVII SGD exon 498000 498034 . - 0 transcript_id "YGR001C_id002"; gene_name "EFM5"; gene_id "YGR001C"; +chrVII SGD gene 498168 499915 . - . gene_id "YGR002C"; gene_biotype "protein_coding"; +chrVII SGD transcript 498168 499915 . - . transcript_id "YGR002C_id001"; gene_id "YGR002C"; gene_name "SWC4"; transcript_biotype "protein_coding"; +chrVII SGD exon 498168 499915 . - . transcript_id "YGR002C_id001"; gene_id "YGR002C"; gene_name "SWC4"; +chrVII SGD transcript 498476 499906 . - . transcript_id "YGR002C_id002"; gene_id "YGR002C"; gene_name "SWC4"; transcript_biotype "protein_coding"; +chrVII SGD exon 498476 499906 . - 0 transcript_id "YGR002C_id002"; gene_name "SWC4"; gene_id "YGR002C"; +chrVII SGD gene 500103 502611 . + . gene_id "YGR003W"; gene_biotype "protein_coding"; +chrVII SGD transcript 500103 502611 . + . transcript_id "YGR003W_id001"; gene_id "YGR003W"; gene_name "CUL3"; transcript_biotype "protein_coding"; +chrVII SGD exon 500103 502611 . + . transcript_id "YGR003W_id001"; gene_id "YGR003W"; gene_name "CUL3"; +chrVII SGD transcript 500132 502366 . + . transcript_id "YGR003W_id003"; gene_id "YGR003W"; gene_name "CUL3"; transcript_biotype "protein_coding"; +chrVII SGD exon 500132 502366 . + 0 transcript_id "YGR003W_id003"; gene_name "CUL3"; gene_id "YGR003W"; +chrVII SGD gene 502864 504654 . + . gene_id "YGR004W"; gene_biotype "protein_coding"; +chrVII SGD transcript 502864 504654 . + . transcript_id "YGR004W_id001"; gene_id "YGR004W"; gene_name "PEX31"; transcript_biotype "protein_coding"; +chrVII SGD exon 502864 504654 . + . transcript_id "YGR004W_id001"; gene_id "YGR004W"; gene_name "PEX31"; +chrVII SGD transcript 502938 504326 . + . transcript_id "YGR004W_id002"; gene_id "YGR004W"; gene_name "PEX31"; transcript_biotype "protein_coding"; +chrVII SGD exon 502938 504326 . + 0 transcript_id "YGR004W_id002"; gene_name "PEX31"; gene_id "YGR004W"; +chrVII SGD gene 504480 505900 . - . gene_id "YGR005C"; gene_biotype "protein_coding"; +chrVII SGD transcript 504480 505900 . - . transcript_id "YGR005C_id001"; gene_id "YGR005C"; gene_name "TFG2"; transcript_biotype "protein_coding"; +chrVII SGD exon 504480 505900 . - . transcript_id "YGR005C_id001"; gene_id "YGR005C"; gene_name "TFG2"; +chrVII SGD transcript 504657 505859 . - . transcript_id "YGR005C_id002"; gene_id "YGR005C"; gene_name "TFG2"; transcript_biotype "protein_coding"; +chrVII SGD exon 504657 505859 . - 0 transcript_id "YGR005C_id002"; gene_name "TFG2"; gene_id "YGR005C"; +chrVII SGD gene 506035 507418 . + . gene_id "YGR006W"; gene_biotype "protein_coding"; +chrVII SGD transcript 506035 507418 . + . transcript_id "YGR006W_id001"; gene_id "YGR006W"; gene_name "PRP18"; transcript_biotype "protein_coding"; +chrVII SGD exon 506035 507418 . + . transcript_id "YGR006W_id001"; gene_id "YGR006W"; gene_name "PRP18"; +chrVII SGD transcript 506070 506825 . + . transcript_id "YGR006W_id003"; gene_id "YGR006W"; gene_name "PRP18"; transcript_biotype "protein_coding"; +chrVII SGD exon 506070 506825 . + 0 transcript_id "YGR006W_id003"; gene_name "PRP18"; gene_id "YGR006W"; +chrVII SGD gene 506454 508079 . + . gene_id "YGR007W"; gene_biotype "protein_coding"; +chrVII SGD transcript 506454 508079 . + . transcript_id "YGR007W_id003"; gene_id "YGR007W"; gene_name "ECT1"; transcript_biotype "protein_coding"; +chrVII SGD exon 506454 508079 . + . transcript_id "YGR007W_id003"; gene_id "YGR007W"; gene_name "ECT1"; +chrVII SGD transcript 506969 507940 . + . transcript_id "YGR007W_id001"; gene_id "YGR007W"; gene_name "ECT1"; transcript_biotype "protein_coding"; +chrVII SGD exon 506969 507940 . + 0 transcript_id "YGR007W_id001"; gene_name "ECT1"; gene_id "YGR007W"; +chrVII SGD gene 507332 508409 . - . gene_id "YGR008C"; gene_biotype "protein_coding"; +chrVII SGD transcript 507332 508409 . - . transcript_id "YGR008C_id004"; gene_id "YGR008C"; gene_name "STF2"; transcript_biotype "protein_coding"; +chrVII SGD exon 507332 508409 . - . transcript_id "YGR008C_id004"; gene_id "YGR008C"; gene_name "STF2"; +chrVII SGD transcript 508110 508364 . - . transcript_id "YGR008C_id001"; gene_id "YGR008C"; gene_name "STF2"; transcript_biotype "protein_coding"; +chrVII SGD exon 508110 508364 . - 0 transcript_id "YGR008C_id001"; gene_name "STF2"; gene_id "YGR008C"; +chrVII SGD gene 508908 511073 . - . gene_id "YGR009C"; gene_biotype "protein_coding"; +chrVII SGD transcript 508908 511073 . - . transcript_id "YGR009C_id003"; gene_id "YGR009C"; gene_name "SEC9"; transcript_biotype "protein_coding"; +chrVII SGD exon 508908 511073 . - . transcript_id "YGR009C_id003"; gene_id "YGR009C"; gene_name "SEC9"; +chrVII SGD transcript 509047 511002 . - . transcript_id "YGR009C_id001"; gene_id "YGR009C"; gene_name "SEC9"; transcript_biotype "protein_coding"; +chrVII SGD exon 509047 511002 . - 0 transcript_id "YGR009C_id001"; gene_name "SEC9"; gene_id "YGR009C"; +chrVII SGD gene 511545 512732 . + . gene_id "YGR010W"; gene_biotype "protein_coding"; +chrVII SGD transcript 511545 512732 . + . transcript_id "YGR010W_mRNA"; gene_id "YGR010W"; gene_name "NMA2"; transcript_biotype "protein_coding"; +chrVII SGD CDS 511545 512732 . + 0 transcript_id "YGR010W_mRNA"; gene_name "NMA2"; gene_id "YGR010W"; +chrVII SGD gene 511903 512923 . + . gene_id "YGR011W"; gene_biotype "protein_coding"; +chrVII SGD transcript 511903 512923 . + . transcript_id "YGR011W_id009"; gene_id "YGR011W"; transcript_biotype "protein_coding"; +chrVII SGD exon 511903 512923 . + . transcript_id "YGR011W_id009"; gene_id "YGR011W"; +chrVII SGD transcript 512497 512823 . + . transcript_id "YGR011W_id001"; gene_id "YGR011W"; transcript_biotype "protein_coding"; +chrVII SGD exon 512497 512823 . + 0 transcript_id "YGR011W_id001"; gene_id "YGR011W"; +chrVII SGD gene 513142 514469 . + . gene_id "YGR012W"; gene_biotype "protein_coding"; +chrVII SGD transcript 513142 514469 . + . transcript_id "YGR012W_id005"; gene_id "YGR012W"; gene_name "MCY1"; transcript_biotype "protein_coding"; +chrVII SGD exon 513142 514469 . + . transcript_id "YGR012W_id005"; gene_id "YGR012W"; gene_name "MCY1"; +chrVII SGD transcript 513159 514340 . + . transcript_id "YGR012W_id001"; gene_id "YGR012W"; gene_name "MCY1"; transcript_biotype "protein_coding"; +chrVII SGD exon 513159 514340 . + 0 transcript_id "YGR012W_id001"; gene_name "MCY1"; gene_id "YGR012W"; +chrVII SGD gene 514512 516696 . + . gene_id "YGR013W"; gene_biotype "protein_coding"; +chrVII SGD transcript 514512 516696 . + . transcript_id "YGR013W_id003"; gene_id "YGR013W"; gene_name "SNU71"; transcript_biotype "protein_coding"; +chrVII SGD exon 514512 516696 . + . transcript_id "YGR013W_id003"; gene_id "YGR013W"; gene_name "SNU71"; +chrVII SGD transcript 514554 516416 . + . transcript_id "YGR013W_id001"; gene_id "YGR013W"; gene_name "SNU71"; transcript_biotype "protein_coding"; +chrVII SGD exon 514554 516416 . + 0 transcript_id "YGR013W_id001"; gene_name "SNU71"; gene_id "YGR013W"; +chrVII SGD gene 516668 520990 . + . gene_id "YGR014W"; gene_biotype "protein_coding"; +chrVII SGD transcript 516668 520990 . + . transcript_id "YGR014W_id003"; gene_id "YGR014W"; gene_name "MSB2"; transcript_biotype "protein_coding"; +chrVII SGD exon 516668 520990 . + . transcript_id "YGR014W_id003"; gene_id "YGR014W"; gene_name "MSB2"; +chrVII SGD transcript 516943 520863 . + . transcript_id "YGR014W_id001"; gene_id "YGR014W"; gene_name "MSB2"; transcript_biotype "protein_coding"; +chrVII SGD exon 516943 520863 . + 0 transcript_id "YGR014W_id001"; gene_name "MSB2"; gene_id "YGR014W"; +chrVII SGD gene 520862 522099 . - . gene_id "YGR015C"; gene_biotype "protein_coding"; +chrVII SGD transcript 520862 522099 . - . transcript_id "YGR015C_id003"; gene_id "YGR015C"; gene_name "EAT1"; transcript_biotype "protein_coding"; +chrVII SGD exon 520862 522099 . - . transcript_id "YGR015C_id003"; gene_id "YGR015C"; gene_name "EAT1"; +chrVII SGD transcript 521090 522076 . - . transcript_id "YGR015C_id001"; gene_id "YGR015C"; gene_name "EAT1"; transcript_biotype "protein_coding"; +chrVII SGD exon 521090 522076 . - 0 transcript_id "YGR015C_id001"; gene_name "EAT1"; gene_id "YGR015C"; +chrVII SGD gene 521934 523299 . + . gene_id "YGR016W"; gene_biotype "protein_coding"; +chrVII SGD transcript 521934 523299 . + . transcript_id "YGR016W_id003"; gene_id "YGR016W"; transcript_biotype "protein_coding"; +chrVII SGD exon 521934 523299 . + . transcript_id "YGR016W_id003"; gene_id "YGR016W"; +chrVII SGD transcript 522261 522833 . + . transcript_id "YGR016W_id001"; gene_id "YGR016W"; transcript_biotype "protein_coding"; +chrVII SGD exon 522261 522833 . + 0 transcript_id "YGR016W_id001"; gene_id "YGR016W"; +chrVII SGD gene 523213 524794 . + . gene_id "YGR017W"; gene_biotype "protein_coding"; +chrVII SGD transcript 523213 524794 . + . transcript_id "YGR017W_id003"; gene_id "YGR017W"; transcript_biotype "protein_coding"; +chrVII SGD exon 523213 524794 . + . transcript_id "YGR017W_id003"; gene_id "YGR017W"; +chrVII SGD gene 523713 524756 . - . gene_id "YGR018C"; gene_biotype "protein_coding"; +chrVII SGD transcript 523713 524756 . - . transcript_id "YGR018C_id001"; gene_id "YGR018C"; transcript_biotype "protein_coding"; +chrVII SGD exon 523713 524756 . - . transcript_id "YGR018C_id001"; gene_id "YGR018C"; +chrVII SGD transcript 523787 524680 . + . transcript_id "YGR017W_id001"; gene_id "YGR017W"; transcript_biotype "protein_coding"; +chrVII SGD exon 523787 524680 . + 0 transcript_id "YGR017W_id001"; gene_id "YGR017W"; +chrVII SGD transcript 524365 524694 . - . transcript_id "YGR018C_id002"; gene_id "YGR018C"; transcript_biotype "protein_coding"; +chrVII SGD exon 524365 524694 . - 0 transcript_id "YGR018C_id002"; gene_id "YGR018C"; +chrVII SGD gene 525175 526917 . + . gene_id "YGR019W"; gene_biotype "protein_coding"; +chrVII SGD transcript 525175 526917 . + . transcript_id "YGR019W_id001"; gene_id "YGR019W"; gene_name "UGA1"; transcript_biotype "protein_coding"; +chrVII SGD exon 525175 526917 . + . transcript_id "YGR019W_id001"; gene_id "YGR019W"; gene_name "UGA1"; +chrVII SGD transcript 525229 526644 . + . transcript_id "YGR019W_id004"; gene_id "YGR019W"; gene_name "UGA1"; transcript_biotype "protein_coding"; +chrVII SGD exon 525229 526644 . + 0 transcript_id "YGR019W_id004"; gene_name "UGA1"; gene_id "YGR019W"; +chrVII SGD gene 526612 527380 . - . gene_id "YGR020C"; gene_biotype "protein_coding"; +chrVII SGD transcript 526612 527380 . - . transcript_id "YGR020C_id003"; gene_id "YGR020C"; gene_name "VMA7"; transcript_biotype "protein_coding"; +chrVII SGD exon 526612 527380 . - . transcript_id "YGR020C_id003"; gene_id "YGR020C"; gene_name "VMA7"; +chrVII SGD transcript 526973 527329 . - . transcript_id "YGR020C_id001"; gene_id "YGR020C"; gene_name "VMA7"; transcript_biotype "protein_coding"; +chrVII SGD exon 526973 527329 . - 0 transcript_id "YGR020C_id001"; gene_name "VMA7"; gene_id "YGR020C"; +chrVII SGD gene 527581 528597 . + . gene_id "YGR021W"; gene_biotype "protein_coding"; +chrVII SGD transcript 527581 528597 . + . transcript_id "YGR021W_id006"; gene_id "YGR021W"; gene_name "DPC29"; transcript_biotype "protein_coding"; +chrVII SGD exon 527581 528597 . + . transcript_id "YGR021W_id006"; gene_id "YGR021W"; gene_name "DPC29"; +chrVII SGD transcript 527632 528504 . + . transcript_id "YGR021W_id001"; gene_id "YGR021W"; gene_name "DPC29"; transcript_biotype "protein_coding"; +chrVII SGD exon 527632 528504 . + 0 transcript_id "YGR021W_id001"; gene_name "DPC29"; gene_id "YGR021W"; +chrVII SGD gene 529078 531190 . + . gene_id "YGR023W"; gene_biotype "protein_coding"; +chrVII SGD transcript 529078 531190 . + . transcript_id "YGR023W_id001"; gene_id "YGR023W"; gene_name "MTL1"; transcript_biotype "protein_coding"; +chrVII SGD exon 529078 531190 . + . transcript_id "YGR023W_id001"; gene_id "YGR023W"; gene_name "MTL1"; +chrVII SGD gene 529257 529586 . - . gene_id "YGR022C"; gene_biotype "protein_coding"; +chrVII SGD transcript 529257 529586 . - . transcript_id "YGR022C_mRNA"; gene_id "YGR022C"; transcript_biotype "protein_coding"; +chrVII SGD CDS 529257 529586 . - 0 transcript_id "YGR022C_mRNA"; gene_id "YGR022C"; +chrVII SGD transcript 529264 530919 . + . transcript_id "YGR023W_id002"; gene_id "YGR023W"; gene_name "MTL1"; transcript_biotype "protein_coding"; +chrVII SGD exon 529264 530919 . + 0 transcript_id "YGR023W_id002"; gene_name "MTL1"; gene_id "YGR023W"; +chrVII SGD gene 531610 531681 . + . gene_id "YNCG0021W"; gene_biotype "ncRNA"; +chrVII SGD transcript 531610 531681 . + . transcript_id "YNCG0021W_tRNA"; gene_id "YNCG0021W"; transcript_biotype "ncRNA"; +chrVII SGD exon 531610 531681 . + . transcript_id "YNCG0021W_tRNA"; gene_id "YNCG0021W"; +chrVII SGD gene 531883 532596 . - . gene_id "YGR024C"; gene_biotype "protein_coding"; +chrVII SGD transcript 531883 532596 . - . transcript_id "YGR024C_mRNA"; gene_id "YGR024C"; gene_name "THG1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 531883 532596 . - 0 transcript_id "YGR024C_mRNA"; gene_name "THG1"; gene_id "YGR024C"; +chrVII SGD gene 532639 532941 . + . gene_id "YGR025W"; gene_biotype "protein_coding"; +chrVII SGD transcript 532639 532941 . + . transcript_id "YGR025W_mRNA"; gene_id "YGR025W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 532639 532941 . + 0 transcript_id "YGR025W_mRNA"; gene_id "YGR025W"; +chrVII SGD gene 532858 534091 . + . gene_id "YGR026W"; gene_biotype "protein_coding"; +chrVII SGD transcript 532858 534091 . + . transcript_id "YGR026W_id007"; gene_id "YGR026W"; transcript_biotype "protein_coding"; +chrVII SGD exon 532858 534091 . + . transcript_id "YGR026W_id007"; gene_id "YGR026W"; +chrVII SGD transcript 532985 533821 . + . transcript_id "YGR026W_id001"; gene_id "YGR026W"; transcript_biotype "protein_coding"; +chrVII SGD exon 532985 533821 . + 0 transcript_id "YGR026W_id001"; gene_id "YGR026W"; +chrVII SGD gene 533944 534897 . - . gene_id "YGR027C"; gene_biotype "protein_coding"; +chrVII SGD transcript 533944 534897 . - . transcript_id "YGR027C_id002"; gene_id "YGR027C"; gene_name "RPS25A"; transcript_biotype "protein_coding"; +chrVII SGD exon 533944 534897 . - . transcript_id "YGR027C_id002"; gene_id "YGR027C"; gene_name "RPS25A"; +chrVII SGD transcript 534132 534785 . - . transcript_id "YGR027C_id001"; gene_id "YGR027C"; gene_name "RPS25A"; transcript_biotype "protein_coding"; +chrVII SGD exon 534132 534458 . - . transcript_id "YGR027C_id001"; gene_name "RPS25A"; gene_id "YGR027C"; +chrVII SGD exon 534474 534785 . - . transcript_id "YGR027C_id001"; gene_name "RPS25A"; gene_id "YGR027C"; +chrVII SGD exon 534132 534458 . - 0 transcript_id "YGR027C_id001"; gene_name "RPS25A"; gene_id "YGR027C"; +chrVII SGD gene 536057 537379 . + . gene_id "YGR027W-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 536057 537379 . + . transcript_id "YGR027W-A_dummy"; gene_id "YGR027W-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 536057 537379 . + 0 transcript_id "YGR027W-A_dummy"; gene_id "YGR027W-A"; +chrVII SGD gene 536057 541325 . + . gene_id "YGR027W-B"; gene_biotype "protein_coding"; +chrVII SGD transcript 536057 541325 . + . transcript_id "YGR027W-B_dummy"; gene_id "YGR027W-B"; transcript_biotype "protein_coding"; +chrVII SGD exon 536057 537361 . + 0 transcript_id "YGR027W-B_dummy"; gene_id "YGR027W-B"; +chrVII SGD exon 537363 541325 . + 0 transcript_id "YGR027W-B_dummy"; gene_id "YGR027W-B"; +chrVII SGD gene 541850 541921 . + . gene_id "YNCG0022W"; gene_biotype "ncRNA"; +chrVII SGD transcript 541850 541921 . + . transcript_id "YNCG0022W_tRNA"; gene_id "YNCG0022W"; transcript_biotype "ncRNA"; +chrVII SGD exon 541850 541921 . + . transcript_id "YNCG0022W_tRNA"; gene_id "YNCG0022W"; +chrVII SGD gene 542048 543474 . + . gene_id "YGR028W"; gene_biotype "protein_coding"; +chrVII SGD transcript 542048 543474 . + . transcript_id "YGR028W_id004"; gene_id "YGR028W"; gene_name "MSP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 542048 543474 . + . transcript_id "YGR028W_id004"; gene_id "YGR028W"; gene_name "MSP1"; +chrVII SGD transcript 542203 543291 . + . transcript_id "YGR028W_id001"; gene_id "YGR028W"; gene_name "MSP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 542203 543291 . + 0 transcript_id "YGR028W_id001"; gene_name "MSP1"; gene_id "YGR028W"; +chrVII SGD gene 543512 544438 . + . gene_id "YGR029W"; gene_biotype "protein_coding"; +chrVII SGD transcript 543512 544438 . + . transcript_id "YGR029W_id001"; gene_id "YGR029W"; gene_name "ERV1"; transcript_biotype "protein_coding"; +chrVII SGD exon 543512 544438 . + . transcript_id "YGR029W_id001"; gene_id "YGR029W"; gene_name "ERV1"; +chrVII SGD transcript 543553 544205 . + . transcript_id "YGR029W_id002"; gene_id "YGR029W"; gene_name "ERV1"; transcript_biotype "protein_coding"; +chrVII SGD exon 543553 543638 . + 0 transcript_id "YGR029W_id002"; gene_name "ERV1"; gene_id "YGR029W"; +chrVII SGD exon 543722 544205 . + 1 transcript_id "YGR029W_id002"; gene_name "ERV1"; gene_id "YGR029W"; +chrVII SGD gene 544577 544648 . - . gene_id "YNCG0023C"; gene_biotype "ncRNA"; +chrVII SGD transcript 544577 544648 . - . transcript_id "YNCG0023C_tRNA"; gene_id "YNCG0023C"; transcript_biotype "ncRNA"; +chrVII SGD exon 544577 544648 . - . transcript_id "YNCG0023C_tRNA"; gene_id "YNCG0023C"; +chrVII SGD gene 545370 545566 . + . gene_id "YNCG0024W"; gene_biotype "ncRNA"; +chrVII SGD transcript 545370 545566 . + . transcript_id "YNCG0024W_snoRNA"; gene_id "YNCG0024W"; gene_name "SNR46"; transcript_biotype "ncRNA"; +chrVII SGD exon 545370 545566 . + . transcript_id "YNCG0024W_snoRNA"; gene_name "SNR46"; gene_id "YNCG0024W"; +chrVII SGD gene 545594 546482 . - . gene_id "YGR030C"; gene_biotype "protein_coding"; +chrVII SGD transcript 545594 546482 . - . transcript_id "YGR030C_id001"; gene_id "YGR030C"; gene_name "POP6"; transcript_biotype "protein_coding"; +chrVII SGD exon 545594 546482 . - . transcript_id "YGR030C_id001"; gene_id "YGR030C"; gene_name "POP6"; +chrVII SGD transcript 545681 546157 . - . transcript_id "YGR030C_id004"; gene_id "YGR030C"; gene_name "POP6"; transcript_biotype "protein_coding"; +chrVII SGD exon 545681 546157 . - 0 transcript_id "YGR030C_id004"; gene_name "POP6"; gene_id "YGR030C"; +chrVII SGD gene 546332 548032 . + . gene_id "YGR031W"; gene_biotype "protein_coding"; +chrVII SGD transcript 546332 548032 . + . transcript_id "YGR031W_id004"; gene_id "YGR031W"; gene_name "IMO32"; transcript_biotype "protein_coding"; +chrVII SGD exon 546332 548032 . + . transcript_id "YGR031W_id004"; gene_id "YGR031W"; gene_name "IMO32"; +chrVII SGD transcript 546441 547469 . + . transcript_id "YGR031W_id001"; gene_id "YGR031W"; gene_name "IMO32"; transcript_biotype "protein_coding"; +chrVII SGD exon 546441 547469 . + 0 transcript_id "YGR031W_id001"; gene_name "IMO32"; gene_id "YGR031W"; +chrVII SGD gene 546809 547300 . - . gene_id "YGR031C-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 546809 547300 . - . transcript_id "YGR031C-A_mRNA"; gene_id "YGR031C-A"; gene_name "NAG1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 546809 547300 . - 0 transcript_id "YGR031C-A_mRNA"; gene_name "NAG1"; gene_id "YGR031C-A"; +chrVII SGD gene 548264 553951 . + . gene_id "YGR032W"; gene_biotype "protein_coding"; +chrVII SGD transcript 548264 553951 . + . transcript_id "YGR032W_mRNA"; gene_id "YGR032W"; gene_name "GSC2"; transcript_biotype "protein_coding"; +chrVII SGD CDS 548264 553951 . + 0 transcript_id "YGR032W_mRNA"; gene_name "GSC2"; gene_id "YGR032W"; +chrVII SGD gene 553938 555097 . - . gene_id "YGR033C"; gene_biotype "protein_coding"; +chrVII SGD transcript 553938 555097 . - . transcript_id "YGR033C_id003"; gene_id "YGR033C"; gene_name "TIM21"; transcript_biotype "protein_coding"; +chrVII SGD exon 553938 555097 . - . transcript_id "YGR033C_id003"; gene_id "YGR033C"; gene_name "TIM21"; +chrVII SGD transcript 554248 554967 . - . transcript_id "YGR033C_id001"; gene_id "YGR033C"; gene_name "TIM21"; transcript_biotype "protein_coding"; +chrVII SGD exon 554248 554967 . - 0 transcript_id "YGR033C_id001"; gene_name "TIM21"; gene_id "YGR033C"; +chrVII SGD gene 555454 556771 . + . gene_id "YGR034W"; gene_biotype "protein_coding"; +chrVII SGD transcript 555454 556771 . + . transcript_id "YGR034W_id001"; gene_id "YGR034W"; gene_name "RPL26B"; transcript_biotype "protein_coding"; +chrVII SGD exon 555454 556771 . + . transcript_id "YGR034W_id001"; gene_id "YGR034W"; gene_name "RPL26B"; +chrVII SGD transcript 555812 556672 . + . transcript_id "YGR034W_id002"; gene_id "YGR034W"; gene_name "RPL26B"; transcript_biotype "protein_coding"; +chrVII SGD exon 555812 555830 . + 0 transcript_id "YGR034W_id002"; gene_name "RPL26B"; gene_id "YGR034W"; +chrVII SGD exon 556308 556672 . + 2 transcript_id "YGR034W_id002"; gene_name "RPL26B"; gene_id "YGR034W"; +chrVII SGD gene 556805 559197 . + . gene_id "YGR035W-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 556805 559197 . + . transcript_id "YGR035W-A_id002"; gene_id "YGR035W-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 556805 559197 . + . transcript_id "YGR035W-A_id002"; gene_id "YGR035W-A"; +chrVII SGD gene 556885 557518 . - . gene_id "YGR035C"; gene_biotype "protein_coding"; +chrVII SGD transcript 556885 557518 . - . transcript_id "YGR035C_id003"; gene_id "YGR035C"; transcript_biotype "protein_coding"; +chrVII SGD exon 556885 557518 . - . transcript_id "YGR035C_id003"; gene_id "YGR035C"; +chrVII SGD transcript 557072 557422 . - . transcript_id "YGR035C_id001"; gene_id "YGR035C"; transcript_biotype "protein_coding"; +chrVII SGD exon 557072 557422 . - 0 transcript_id "YGR035C_id001"; gene_id "YGR035C"; +chrVII SGD gene 557519 559310 . - . gene_id "YGR036C"; gene_biotype "protein_coding"; +chrVII SGD transcript 557519 559310 . - . transcript_id "YGR036C_id002"; gene_id "YGR036C"; gene_name "CAX4"; transcript_biotype "protein_coding"; +chrVII SGD exon 557519 559310 . - . transcript_id "YGR036C_id002"; gene_id "YGR036C"; gene_name "CAX4"; +chrVII SGD transcript 557565 557786 . + . transcript_id "YGR035W-A_id001"; gene_id "YGR035W-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 557565 557786 . + 0 transcript_id "YGR035W-A_id001"; gene_id "YGR035W-A"; +chrVII SGD transcript 558149 558868 . - . transcript_id "YGR036C_id001"; gene_id "YGR036C"; gene_name "CAX4"; transcript_biotype "protein_coding"; +chrVII SGD exon 558149 558868 . - 0 transcript_id "YGR036C_id001"; gene_name "CAX4"; gene_id "YGR036C"; +chrVII SGD gene 559550 561058 . - . gene_id "YGR037C"; gene_biotype "protein_coding"; +chrVII SGD transcript 559550 561058 . - . transcript_id "YGR037C_id003"; gene_id "YGR037C"; gene_name "ACB1"; transcript_biotype "protein_coding"; +chrVII SGD exon 559550 561058 . - . transcript_id "YGR037C_id003"; gene_id "YGR037C"; gene_name "ACB1"; +chrVII SGD transcript 559731 559994 . - . transcript_id "YGR037C_id001"; gene_id "YGR037C"; gene_name "ACB1"; transcript_biotype "protein_coding"; +chrVII SGD exon 559731 559994 . - 0 transcript_id "YGR037C_id001"; gene_name "ACB1"; gene_id "YGR037C"; +chrVII SGD gene 560331 561518 . + . gene_id "YGR038W"; gene_biotype "protein_coding"; +chrVII SGD transcript 560331 561518 . + . transcript_id "YGR038W_id003"; gene_id "YGR038W"; gene_name "ORM1"; transcript_biotype "protein_coding"; +chrVII SGD exon 560331 561518 . + . transcript_id "YGR038W_id003"; gene_id "YGR038W"; gene_name "ORM1"; +chrVII SGD transcript 560682 561350 . + . transcript_id "YGR038W_id001"; gene_id "YGR038W"; gene_name "ORM1"; transcript_biotype "protein_coding"; +chrVII SGD exon 560682 561350 . + 0 transcript_id "YGR038W_id001"; gene_name "ORM1"; gene_id "YGR038W"; +chrVII SGD gene 561662 561743 . - . gene_id "YNCG0025C"; gene_biotype "ncRNA"; +chrVII SGD transcript 561662 561743 . - . transcript_id "YNCG0025C_tRNA"; gene_id "YNCG0025C"; transcript_biotype "ncRNA"; +chrVII SGD exon 561662 561743 . - . transcript_id "YNCG0025C_tRNA"; gene_id "YNCG0025C"; +chrVII SGD gene 562199 567467 . - . gene_id "YGR038C-B"; gene_biotype "protein_coding"; +chrVII SGD transcript 562199 567467 . - . transcript_id "YGR038C-B_dummy"; gene_id "YGR038C-B"; transcript_biotype "protein_coding"; +chrVII SGD exon 562199 566161 . - 0 transcript_id "YGR038C-B_dummy"; gene_id "YGR038C-B"; +chrVII SGD exon 566163 567467 . - 0 transcript_id "YGR038C-B_dummy"; gene_id "YGR038C-B"; +chrVII SGD gene 566145 567467 . - . gene_id "YGR038C-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 566145 567467 . - . transcript_id "YGR038C-A_dummy"; gene_id "YGR038C-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 566145 567467 . - 0 transcript_id "YGR038C-A_dummy"; gene_id "YGR038C-A"; +chrVII SGD gene 574888 575199 . + . gene_id "YGR039W"; gene_biotype "protein_coding"; +chrVII SGD transcript 574888 575199 . + . transcript_id "YGR039W_id001"; gene_id "YGR039W"; transcript_biotype "protein_coding"; +chrVII SGD exon 574888 575199 . + 0 transcript_id "YGR039W_id001"; gene_id "YGR039W"; +chrVII SGD gene 575005 577115 . + . gene_id "YGR040W"; gene_biotype "protein_coding"; +chrVII SGD transcript 575005 577115 . + . transcript_id "YGR040W_id001"; gene_id "YGR040W"; gene_name "KSS1"; transcript_biotype "protein_coding"; +chrVII SGD exon 575005 577115 . + . transcript_id "YGR040W_id001"; gene_id "YGR040W"; gene_name "KSS1"; +chrVII SGD transcript 575398 576504 . + . transcript_id "YGR040W_id004"; gene_id "YGR040W"; gene_name "KSS1"; transcript_biotype "protein_coding"; +chrVII SGD exon 575398 576504 . + 0 transcript_id "YGR040W_id004"; gene_name "KSS1"; gene_id "YGR040W"; +chrVII SGD gene 576983 579265 . + . gene_id "YGR041W"; gene_biotype "protein_coding"; +chrVII SGD transcript 576983 579265 . + . transcript_id "YGR041W_id004"; gene_id "YGR041W"; gene_name "BUD9"; transcript_biotype "protein_coding"; +chrVII SGD exon 576983 579265 . + . transcript_id "YGR041W_id004"; gene_id "YGR041W"; gene_name "BUD9"; +chrVII SGD transcript 577487 579130 . + . transcript_id "YGR041W_id001"; gene_id "YGR041W"; gene_name "BUD9"; transcript_biotype "protein_coding"; +chrVII SGD exon 577487 579130 . + 0 transcript_id "YGR041W_id001"; gene_name "BUD9"; gene_id "YGR041W"; +chrVII SGD gene 578999 580375 . + . gene_id "YGR042W"; gene_biotype "protein_coding"; +chrVII SGD transcript 578999 580375 . + . transcript_id "YGR042W_id003"; gene_id "YGR042W"; gene_name "MTE1"; transcript_biotype "protein_coding"; +chrVII SGD exon 578999 580375 . + . transcript_id "YGR042W_id003"; gene_id "YGR042W"; gene_name "MTE1"; +chrVII SGD transcript 579476 580291 . + . transcript_id "YGR042W_id001"; gene_id "YGR042W"; gene_name "MTE1"; transcript_biotype "protein_coding"; +chrVII SGD exon 579476 580291 . + 0 transcript_id "YGR042W_id001"; gene_name "MTE1"; gene_id "YGR042W"; +chrVII SGD gene 580435 581436 . - . gene_id "YGR043C"; gene_biotype "protein_coding"; +chrVII SGD transcript 580435 581436 . - . transcript_id "YGR043C_id001"; gene_id "YGR043C"; gene_name "NQM1"; transcript_biotype "protein_coding"; +chrVII SGD exon 580435 581436 . - 0 transcript_id "YGR043C_id001"; gene_name "NQM1"; gene_id "YGR043C"; +chrVII SGD gene 582725 583984 . - . gene_id "YGR044C"; gene_biotype "protein_coding"; +chrVII SGD transcript 582725 583984 . - . transcript_id "YGR044C_id005"; gene_id "YGR044C"; gene_name "RME1"; transcript_biotype "protein_coding"; +chrVII SGD exon 582725 583984 . - . transcript_id "YGR044C_id005"; gene_id "YGR044C"; gene_name "RME1"; +chrVII SGD transcript 582990 583892 . - . transcript_id "YGR044C_id001"; gene_id "YGR044C"; gene_name "RME1"; transcript_biotype "protein_coding"; +chrVII SGD exon 582990 583892 . - 0 transcript_id "YGR044C_id001"; gene_name "RME1"; gene_id "YGR044C"; +chrVII SGD gene 583775 584558 . - . gene_id "YGR045C"; gene_biotype "protein_coding"; +chrVII SGD transcript 583775 584558 . - . transcript_id "YGR045C_id001"; gene_id "YGR045C"; transcript_biotype "protein_coding"; +chrVII SGD exon 583775 584558 . - . transcript_id "YGR045C_id001"; gene_id "YGR045C"; +chrVII SGD transcript 583934 584296 . - . transcript_id "YGR045C_id002"; gene_id "YGR045C"; transcript_biotype "protein_coding"; +chrVII SGD exon 583934 584296 . - 0 transcript_id "YGR045C_id002"; gene_id "YGR045C"; +chrVII SGD gene 584773 586393 . + . gene_id "YGR046W"; gene_biotype "protein_coding"; +chrVII SGD transcript 584773 586393 . + . transcript_id "YGR046W_id003"; gene_id "YGR046W"; gene_name "TAM41"; transcript_biotype "protein_coding"; +chrVII SGD exon 584773 586393 . + . transcript_id "YGR046W_id003"; gene_id "YGR046W"; gene_name "TAM41"; +chrVII SGD transcript 584895 586052 . + . transcript_id "YGR046W_id001"; gene_id "YGR046W"; gene_name "TAM41"; transcript_biotype "protein_coding"; +chrVII SGD exon 584895 586052 . + 0 transcript_id "YGR046W_id001"; gene_name "TAM41"; gene_id "YGR046W"; +chrVII SGD gene 586283 589498 . - . gene_id "YGR047C"; gene_biotype "protein_coding"; +chrVII SGD transcript 586283 589498 . - . transcript_id "YGR047C_id001"; gene_id "YGR047C"; gene_name "TFC4"; transcript_biotype "protein_coding"; +chrVII SGD exon 586283 589498 . - . transcript_id "YGR047C_id001"; gene_id "YGR047C"; gene_name "TFC4"; +chrVII SGD transcript 586392 589469 . - . transcript_id "YGR047C_id004"; gene_id "YGR047C"; gene_name "TFC4"; transcript_biotype "protein_coding"; +chrVII SGD exon 586392 589469 . - 0 transcript_id "YGR047C_id004"; gene_name "TFC4"; gene_id "YGR047C"; +chrVII SGD gene 589776 591075 . + . gene_id "YGR048W"; gene_biotype "protein_coding"; +chrVII SGD transcript 589776 591075 . + . transcript_id "YGR048W_id001"; gene_id "YGR048W"; gene_name "UFD1"; transcript_biotype "protein_coding"; +chrVII SGD exon 589776 591075 . + . transcript_id "YGR048W_id001"; gene_id "YGR048W"; gene_name "UFD1"; +chrVII SGD transcript 589826 590911 . + . transcript_id "YGR048W_id002"; gene_id "YGR048W"; gene_name "UFD1"; transcript_biotype "protein_coding"; +chrVII SGD exon 589826 590911 . + 0 transcript_id "YGR048W_id002"; gene_name "UFD1"; gene_id "YGR048W"; +chrVII SGD gene 591231 592205 . + . gene_id "YGR049W"; gene_biotype "protein_coding"; +chrVII SGD transcript 591231 592205 . + . transcript_id "YGR049W_id002"; gene_id "YGR049W"; gene_name "SCM4"; transcript_biotype "protein_coding"; +chrVII SGD exon 591231 592205 . + . transcript_id "YGR049W_id002"; gene_id "YGR049W"; gene_name "SCM4"; +chrVII SGD transcript 591314 591877 . + . transcript_id "YGR049W_id001"; gene_id "YGR049W"; gene_name "SCM4"; transcript_biotype "protein_coding"; +chrVII SGD exon 591314 591877 . + 0 transcript_id "YGR049W_id001"; gene_name "SCM4"; gene_id "YGR049W"; +chrVII SGD gene 591896 592537 . - . gene_id "YGR050C"; gene_biotype "protein_coding"; +chrVII SGD transcript 591896 592537 . - . transcript_id "YGR050C_id003"; gene_id "YGR050C"; transcript_biotype "protein_coding"; +chrVII SGD exon 591896 592537 . - . transcript_id "YGR050C_id003"; gene_id "YGR050C"; +chrVII SGD transcript 592086 592442 . - . transcript_id "YGR050C_id001"; gene_id "YGR050C"; transcript_biotype "protein_coding"; +chrVII SGD exon 592086 592442 . - 0 transcript_id "YGR050C_id001"; gene_id "YGR050C"; +chrVII SGD gene 592906 593229 . - . gene_id "YGR051C"; gene_biotype "protein_coding"; +chrVII SGD transcript 592906 593229 . - . transcript_id "YGR051C_mRNA"; gene_id "YGR051C"; transcript_biotype "protein_coding"; +chrVII SGD CDS 592906 593229 . - 0 transcript_id "YGR051C_mRNA"; gene_id "YGR051C"; +chrVII SGD gene 593596 594705 . + . gene_id "YGR052W"; gene_biotype "protein_coding"; +chrVII SGD transcript 593596 594705 . + . transcript_id "YGR052W_mRNA"; gene_id "YGR052W"; gene_name "FMP48"; transcript_biotype "protein_coding"; +chrVII SGD CDS 593596 594705 . + 0 transcript_id "YGR052W_mRNA"; gene_name "FMP48"; gene_id "YGR052W"; +chrVII SGD gene 594866 595962 . - . gene_id "YGR053C"; gene_biotype "protein_coding"; +chrVII SGD transcript 594866 595962 . - . transcript_id "YGR053C_id002"; gene_id "YGR053C"; gene_name "MCO32"; transcript_biotype "protein_coding"; +chrVII SGD exon 594866 595962 . - . transcript_id "YGR053C_id002"; gene_id "YGR053C"; gene_name "MCO32"; +chrVII SGD transcript 594986 595837 . - . transcript_id "YGR053C_id001"; gene_id "YGR053C"; gene_name "MCO32"; transcript_biotype "protein_coding"; +chrVII SGD exon 594986 595837 . - 0 transcript_id "YGR053C_id001"; gene_name "MCO32"; gene_id "YGR053C"; +chrVII SGD gene 596503 598811 . + . gene_id "YGR054W"; gene_biotype "protein_coding"; +chrVII SGD transcript 596503 598811 . + . transcript_id "YGR054W_id004"; gene_id "YGR054W"; transcript_biotype "protein_coding"; +chrVII SGD exon 596503 598811 . + . transcript_id "YGR054W_id004"; gene_id "YGR054W"; +chrVII SGD transcript 596693 598621 . + . transcript_id "YGR054W_id001"; gene_id "YGR054W"; transcript_biotype "protein_coding"; +chrVII SGD exon 596693 598621 . + 0 transcript_id "YGR054W_id001"; gene_id "YGR054W"; +chrVII SGD gene 599287 601256 . + . gene_id "YGR055W"; gene_biotype "protein_coding"; +chrVII SGD transcript 599287 601256 . + . transcript_id "YGR055W_id001"; gene_id "YGR055W"; gene_name "MUP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 599287 601256 . + . transcript_id "YGR055W_id001"; gene_id "YGR055W"; gene_name "MUP1"; +chrVII SGD transcript 599417 601141 . + . transcript_id "YGR055W_id002"; gene_id "YGR055W"; gene_name "MUP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 599417 601141 . + 0 transcript_id "YGR055W_id002"; gene_name "MUP1"; gene_id "YGR055W"; +chrVII SGD gene 601661 604447 . + . gene_id "YGR056W"; gene_biotype "protein_coding"; +chrVII SGD transcript 601661 604447 . + . transcript_id "YGR056W_id001"; gene_id "YGR056W"; gene_name "RSC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 601661 604447 . + 0 transcript_id "YGR056W_id001"; gene_name "RSC1"; gene_id "YGR056W"; +chrVII SGD gene 603595 605574 . - . gene_id "YGR057C"; gene_biotype "protein_coding"; +chrVII SGD transcript 603595 605574 . - . transcript_id "YGR057C_id001"; gene_id "YGR057C"; gene_name "LST7"; transcript_biotype "protein_coding"; +chrVII SGD exon 603595 605574 . - . transcript_id "YGR057C_id001"; gene_id "YGR057C"; gene_name "LST7"; +chrVII SGD transcript 604773 605501 . - . transcript_id "YGR057C_id002"; gene_id "YGR057C"; gene_name "LST7"; transcript_biotype "protein_coding"; +chrVII SGD exon 604773 605501 . - 0 transcript_id "YGR057C_id002"; gene_name "LST7"; gene_id "YGR057C"; +chrVII SGD gene 606114 607552 . + . gene_id "YGR058W"; gene_biotype "protein_coding"; +chrVII SGD transcript 606114 607552 . + . transcript_id "YGR058W_id002"; gene_id "YGR058W"; gene_name "PEF1"; transcript_biotype "protein_coding"; +chrVII SGD exon 606114 607552 . + . transcript_id "YGR058W_id002"; gene_id "YGR058W"; gene_name "PEF1"; +chrVII SGD transcript 606136 607143 . + . transcript_id "YGR058W_id001"; gene_id "YGR058W"; gene_name "PEF1"; transcript_biotype "protein_coding"; +chrVII SGD exon 606136 607143 . + 0 transcript_id "YGR058W_id001"; gene_name "PEF1"; gene_id "YGR058W"; +chrVII SGD gene 607563 609101 . + . gene_id "YGR059W"; gene_biotype "protein_coding"; +chrVII SGD transcript 607563 609101 . + . transcript_id "YGR059W_mRNA"; gene_id "YGR059W"; gene_name "SPR3"; transcript_biotype "protein_coding"; +chrVII SGD CDS 607563 609101 . + 0 transcript_id "YGR059W_mRNA"; gene_name "SPR3"; gene_id "YGR059W"; +chrVII SGD gene 609584 609696 . + . gene_id "YNCG0026W"; gene_biotype "ncRNA"; +chrVII SGD transcript 609584 609696 . + . transcript_id "YNCG0026W_snoRNA"; gene_id "YNCG0026W"; gene_name "SNR48"; transcript_biotype "ncRNA"; +chrVII SGD exon 609584 609696 . + . transcript_id "YNCG0026W_snoRNA"; gene_name "SNR48"; gene_id "YNCG0026W"; +chrVII SGD gene 610473 611816 . + . gene_id "YGR060W"; gene_biotype "protein_coding"; +chrVII SGD transcript 610473 611816 . + . transcript_id "YGR060W_id002"; gene_id "YGR060W"; gene_name "ERG25"; transcript_biotype "protein_coding"; +chrVII SGD exon 610473 611816 . + . transcript_id "YGR060W_id002"; gene_id "YGR060W"; gene_name "ERG25"; +chrVII SGD transcript 610564 611493 . + . transcript_id "YGR060W_id001"; gene_id "YGR060W"; gene_name "ERG25"; transcript_biotype "protein_coding"; +chrVII SGD exon 610564 611493 . + 0 transcript_id "YGR060W_id001"; gene_name "ERG25"; gene_id "YGR060W"; +chrVII SGD gene 611813 616084 . - . gene_id "YGR061C"; gene_biotype "protein_coding"; +chrVII SGD transcript 611813 616084 . - . transcript_id "YGR061C_id001"; gene_id "YGR061C"; gene_name "ADE6"; transcript_biotype "protein_coding"; +chrVII SGD exon 611813 616084 . - . transcript_id "YGR061C_id001"; gene_id "YGR061C"; gene_name "ADE6"; +chrVII SGD transcript 611889 615965 . - . transcript_id "YGR061C_id002"; gene_id "YGR061C"; gene_name "ADE6"; transcript_biotype "protein_coding"; +chrVII SGD exon 611889 615965 . - 0 transcript_id "YGR061C_id002"; gene_name "ADE6"; gene_id "YGR061C"; +chrVII SGD gene 615983 617313 . - . gene_id "YGR062C"; gene_biotype "protein_coding"; +chrVII SGD transcript 615983 617313 . - . transcript_id "YGR062C_id001"; gene_id "YGR062C"; gene_name "COX18"; transcript_biotype "protein_coding"; +chrVII SGD exon 615983 617313 . - . transcript_id "YGR062C_id001"; gene_id "YGR062C"; gene_name "COX18"; +chrVII SGD gene 616034 618133 . + . gene_id "YGR064W"; gene_biotype "protein_coding"; +chrVII SGD transcript 616034 618133 . + . transcript_id "YGR064W_id001"; gene_id "YGR064W"; transcript_biotype "protein_coding"; +chrVII SGD exon 616034 618133 . + . transcript_id "YGR064W_id001"; gene_id "YGR064W"; +chrVII SGD transcript 616328 617278 . - . transcript_id "YGR062C_id002"; gene_id "YGR062C"; gene_name "COX18"; transcript_biotype "protein_coding"; +chrVII SGD exon 616328 617278 . - 0 transcript_id "YGR062C_id002"; gene_name "COX18"; gene_id "YGR062C"; +chrVII SGD gene 616874 617841 . - . gene_id "YGR063C"; gene_biotype "protein_coding"; +chrVII SGD transcript 616874 617841 . - . transcript_id "YGR063C_id001"; gene_id "YGR063C"; gene_name "SPT4"; transcript_biotype "protein_coding"; +chrVII SGD exon 616874 617841 . - . transcript_id "YGR063C_id001"; gene_id "YGR063C"; gene_name "SPT4"; +chrVII SGD transcript 617516 617824 . - . transcript_id "YGR063C_id002"; gene_id "YGR063C"; gene_name "SPT4"; transcript_biotype "protein_coding"; +chrVII SGD exon 617516 617824 . - 0 transcript_id "YGR063C_id002"; gene_name "SPT4"; gene_id "YGR063C"; +chrVII SGD transcript 617621 617989 . + . transcript_id "YGR064W_id002"; gene_id "YGR064W"; transcript_biotype "protein_coding"; +chrVII SGD exon 617621 617989 . + 0 transcript_id "YGR064W_id002"; gene_id "YGR064W"; +chrVII SGD gene 617935 619968 . - . gene_id "YGR065C"; gene_biotype "protein_coding"; +chrVII SGD transcript 617935 619968 . - . transcript_id "YGR065C_id001"; gene_id "YGR065C"; gene_name "VHT1"; transcript_biotype "protein_coding"; +chrVII SGD exon 617935 619968 . - . transcript_id "YGR065C_id001"; gene_id "YGR065C"; gene_name "VHT1"; +chrVII SGD transcript 618077 619858 . - . transcript_id "YGR065C_id002"; gene_id "YGR065C"; gene_name "VHT1"; transcript_biotype "protein_coding"; +chrVII SGD exon 618077 619858 . - 0 transcript_id "YGR065C_id002"; gene_name "VHT1"; gene_id "YGR065C"; +chrVII SGD gene 620921 621799 . - . gene_id "YGR066C"; gene_biotype "protein_coding"; +chrVII SGD transcript 620921 621799 . - . transcript_id "YGR066C_id001"; gene_id "YGR066C"; gene_name "GID10"; transcript_biotype "protein_coding"; +chrVII SGD exon 620921 621799 . - 0 transcript_id "YGR066C_id001"; gene_name "GID10"; gene_id "YGR066C"; +chrVII SGD gene 622372 624786 . - . gene_id "YGR067C"; gene_biotype "protein_coding"; +chrVII SGD transcript 622372 624786 . - . transcript_id "YGR067C_id001"; gene_id "YGR067C"; transcript_biotype "protein_coding"; +chrVII SGD exon 622372 624786 . - 0 transcript_id "YGR067C_id001"; gene_id "YGR067C"; +chrVII SGD gene 624926 627157 . - . gene_id "YGR068C"; gene_biotype "protein_coding"; +chrVII SGD transcript 624926 627157 . - . transcript_id "YGR068C_id003"; gene_id "YGR068C"; gene_name "ART5"; transcript_biotype "protein_coding"; +chrVII SGD exon 624926 627157 . - . transcript_id "YGR068C_id003"; gene_id "YGR068C"; gene_name "ART5"; +chrVII SGD transcript 625324 627084 . - . transcript_id "YGR068C_id001"; gene_id "YGR068C"; gene_name "ART5"; transcript_biotype "protein_coding"; +chrVII SGD exon 625324 627084 . - 0 transcript_id "YGR068C_id001"; gene_name "ART5"; gene_id "YGR068C"; +chrVII SGD gene 626294 626389 . + . gene_id "YGR068W-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 626294 626389 . + . transcript_id "YGR068W-A_id001"; gene_id "YGR068W-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 626294 626389 . + 0 transcript_id "YGR068W-A_id001"; gene_id "YGR068W-A"; +chrVII SGD gene 627083 627418 . + . gene_id "YGR069W"; gene_biotype "protein_coding"; +chrVII SGD transcript 627083 627418 . + . transcript_id "YGR069W_mRNA"; gene_id "YGR069W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 627083 627418 . + 0 transcript_id "YGR069W_mRNA"; gene_id "YGR069W"; +chrVII SGD gene 627806 631273 . + . gene_id "YGR070W"; gene_biotype "protein_coding"; +chrVII SGD transcript 627806 631273 . + . transcript_id "YGR070W_mRNA"; gene_id "YGR070W"; gene_name "ROM1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 627806 631273 . + 0 transcript_id "YGR070W_mRNA"; gene_name "ROM1"; gene_id "YGR070W"; +chrVII SGD gene 631481 634063 . - . gene_id "YGR071C"; gene_biotype "protein_coding"; +chrVII SGD transcript 631481 634063 . - . transcript_id "YGR071C_id001"; gene_id "YGR071C"; gene_name "ENV11"; transcript_biotype "protein_coding"; +chrVII SGD exon 631481 634063 . - 0 transcript_id "YGR071C_id001"; gene_name "ENV11"; gene_id "YGR071C"; +chrVII SGD gene 634255 635574 . + . gene_id "YGR072W"; gene_biotype "protein_coding"; +chrVII SGD transcript 634255 635574 . + . transcript_id "YGR072W_id003"; gene_id "YGR072W"; gene_name "UPF3"; transcript_biotype "protein_coding"; +chrVII SGD exon 634255 635574 . + . transcript_id "YGR072W_id003"; gene_id "YGR072W"; gene_name "UPF3"; +chrVII SGD transcript 634304 635467 . + . transcript_id "YGR072W_id001"; gene_id "YGR072W"; gene_name "UPF3"; transcript_biotype "protein_coding"; +chrVII SGD exon 634304 635467 . + 0 transcript_id "YGR072W_id001"; gene_name "UPF3"; gene_id "YGR072W"; +chrVII SGD gene 635582 636521 . - . gene_id "YGR073C"; gene_biotype "protein_coding"; +chrVII SGD transcript 635582 636521 . - . transcript_id "YGR073C_id003"; gene_id "YGR073C"; transcript_biotype "protein_coding"; +chrVII SGD exon 635582 636521 . - . transcript_id "YGR073C_id003"; gene_id "YGR073C"; +chrVII SGD transcript 635615 635986 . - . transcript_id "YGR073C_id001"; gene_id "YGR073C"; transcript_biotype "protein_coding"; +chrVII SGD exon 635615 635986 . - 0 transcript_id "YGR073C_id001"; gene_id "YGR073C"; +chrVII SGD gene 635658 636915 . - . gene_id "YGR075C"; gene_biotype "protein_coding"; +chrVII SGD transcript 635658 636915 . - . transcript_id "YGR075C_id006"; gene_id "YGR075C"; gene_name "PRP38"; transcript_biotype "protein_coding"; +chrVII SGD exon 635658 636915 . - . transcript_id "YGR075C_id006"; gene_id "YGR075C"; gene_name "PRP38"; +chrVII SGD gene 635661 636452 . + . gene_id "YGR074W"; gene_biotype "protein_coding"; +chrVII SGD transcript 635661 636452 . + . transcript_id "YGR074W_id001"; gene_id "YGR074W"; gene_name "SMD1"; transcript_biotype "protein_coding"; +chrVII SGD exon 635661 636452 . + . transcript_id "YGR074W_id001"; gene_id "YGR074W"; gene_name "SMD1"; +chrVII SGD transcript 635712 636152 . + . transcript_id "YGR074W_id002"; gene_id "YGR074W"; gene_name "SMD1"; transcript_biotype "protein_coding"; +chrVII SGD exon 635712 636152 . + 0 transcript_id "YGR074W_id002"; gene_name "SMD1"; gene_id "YGR074W"; +chrVII SGD transcript 636147 636875 . - . transcript_id "YGR075C_id001"; gene_id "YGR075C"; gene_name "PRP38"; transcript_biotype "protein_coding"; +chrVII SGD exon 636147 636875 . - 0 transcript_id "YGR075C_id001"; gene_name "PRP38"; gene_id "YGR075C"; +chrVII SGD gene 636975 637649 . - . gene_id "YGR076C"; gene_biotype "protein_coding"; +chrVII SGD transcript 636975 637649 . - . transcript_id "YGR076C_id002"; gene_id "YGR076C"; gene_name "MRPL25"; transcript_biotype "protein_coding"; +chrVII SGD exon 636975 637649 . - . transcript_id "YGR076C_id002"; gene_id "YGR076C"; gene_name "MRPL25"; +chrVII SGD transcript 637104 637577 . - . transcript_id "YGR076C_id001"; gene_id "YGR076C"; gene_name "MRPL25"; transcript_biotype "protein_coding"; +chrVII SGD exon 637104 637577 . - 0 transcript_id "YGR076C_id001"; gene_name "MRPL25"; gene_id "YGR076C"; +chrVII SGD gene 637672 639553 . - . gene_id "YGR077C"; gene_biotype "protein_coding"; +chrVII SGD transcript 637672 639553 . - . transcript_id "YGR077C_id001"; gene_id "YGR077C"; gene_name "PEX8"; transcript_biotype "protein_coding"; +chrVII SGD exon 637672 639553 . - . transcript_id "YGR077C_id001"; gene_id "YGR077C"; gene_name "PEX8"; +chrVII SGD transcript 637744 639513 . - . transcript_id "YGR077C_id002"; gene_id "YGR077C"; gene_name "PEX8"; transcript_biotype "protein_coding"; +chrVII SGD exon 637744 639513 . - 0 transcript_id "YGR077C_id002"; gene_name "PEX8"; gene_id "YGR077C"; +chrVII SGD gene 639638 640402 . - . gene_id "YGR078C"; gene_biotype "protein_coding"; +chrVII SGD transcript 639638 640402 . - . transcript_id "YGR078C_id001"; gene_id "YGR078C"; gene_name "PAC10"; transcript_biotype "protein_coding"; +chrVII SGD exon 639638 640402 . - . transcript_id "YGR078C_id001"; gene_id "YGR078C"; gene_name "PAC10"; +chrVII SGD transcript 639772 640371 . - . transcript_id "YGR078C_id002"; gene_id "YGR078C"; gene_name "PAC10"; transcript_biotype "protein_coding"; +chrVII SGD exon 639772 640371 . - 0 transcript_id "YGR078C_id002"; gene_name "PAC10"; gene_id "YGR078C"; +chrVII SGD gene 640720 641832 . + . gene_id "YGR079W"; gene_biotype "protein_coding"; +chrVII SGD transcript 640720 641832 . + . transcript_id "YGR079W_mRNA"; gene_id "YGR079W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 640720 641832 . + 0 transcript_id "YGR079W_mRNA"; gene_id "YGR079W"; +chrVII SGD gene 641968 643162 . + . gene_id "YGR080W"; gene_biotype "protein_coding"; +chrVII SGD transcript 641968 643162 . + . transcript_id "YGR080W_id004"; gene_id "YGR080W"; gene_name "TWF1"; transcript_biotype "protein_coding"; +chrVII SGD exon 641968 643162 . + . transcript_id "YGR080W_id004"; gene_id "YGR080W"; gene_name "TWF1"; +chrVII SGD transcript 642010 643008 . + . transcript_id "YGR080W_id001"; gene_id "YGR080W"; gene_name "TWF1"; transcript_biotype "protein_coding"; +chrVII SGD exon 642010 643008 . + 0 transcript_id "YGR080W_id001"; gene_name "TWF1"; gene_id "YGR080W"; +chrVII SGD gene 642780 643784 . - . gene_id "YGR081C"; gene_biotype "protein_coding"; +chrVII SGD transcript 642780 643784 . - . transcript_id "YGR081C_id002"; gene_id "YGR081C"; gene_name "SLX9"; transcript_biotype "protein_coding"; +chrVII SGD exon 642780 643784 . - . transcript_id "YGR081C_id002"; gene_id "YGR081C"; gene_name "SLX9"; +chrVII SGD transcript 643148 643780 . - . transcript_id "YGR081C_id001"; gene_id "YGR081C"; gene_name "SLX9"; transcript_biotype "protein_coding"; +chrVII SGD exon 643148 643780 . - 0 transcript_id "YGR081C_id001"; gene_name "SLX9"; gene_id "YGR081C"; +chrVII SGD gene 643847 644745 . + . gene_id "YGR082W"; gene_biotype "protein_coding"; +chrVII SGD transcript 643847 644745 . + . transcript_id "YGR082W_id001"; gene_id "YGR082W"; gene_name "TOM20"; transcript_biotype "protein_coding"; +chrVII SGD exon 643847 644745 . + . transcript_id "YGR082W_id001"; gene_id "YGR082W"; gene_name "TOM20"; +chrVII SGD transcript 644044 644595 . + . transcript_id "YGR082W_id003"; gene_id "YGR082W"; gene_name "TOM20"; transcript_biotype "protein_coding"; +chrVII SGD exon 644044 644595 . + 0 transcript_id "YGR082W_id003"; gene_name "TOM20"; gene_id "YGR082W"; +chrVII SGD gene 644860 646815 . - . gene_id "YGR083C"; gene_biotype "protein_coding"; +chrVII SGD transcript 644860 646815 . - . transcript_id "YGR083C_mRNA"; gene_id "YGR083C"; gene_name "GCD2"; transcript_biotype "protein_coding"; +chrVII SGD CDS 644860 646815 . - 0 transcript_id "YGR083C_mRNA"; gene_name "GCD2"; gene_id "YGR083C"; +chrVII SGD gene 647076 648356 . - . gene_id "YGR084C"; gene_biotype "protein_coding"; +chrVII SGD transcript 647076 648356 . - . transcript_id "YGR084C_id001"; gene_id "YGR084C"; gene_name "MRP13"; transcript_biotype "protein_coding"; +chrVII SGD exon 647076 648356 . - . transcript_id "YGR084C_id001"; gene_id "YGR084C"; gene_name "MRP13"; +chrVII SGD transcript 647123 648142 . - . transcript_id "YGR084C_id002"; gene_id "YGR084C"; gene_name "MRP13"; transcript_biotype "protein_coding"; +chrVII SGD exon 647123 648142 . - 0 transcript_id "YGR084C_id002"; gene_name "MRP13"; gene_id "YGR084C"; +chrVII SGD gene 648296 649824 . - . gene_id "YGR085C"; gene_biotype "protein_coding"; +chrVII SGD transcript 648296 649824 . - . transcript_id "YGR085C_id003"; gene_id "YGR085C"; gene_name "RPL11B"; transcript_biotype "protein_coding"; +chrVII SGD exon 648296 649824 . - . transcript_id "YGR085C_id003"; gene_id "YGR085C"; gene_name "RPL11B"; +chrVII SGD transcript 648383 648907 . - . transcript_id "YGR085C_id001"; gene_id "YGR085C"; gene_name "RPL11B"; transcript_biotype "protein_coding"; +chrVII SGD exon 648383 648907 . - 0 transcript_id "YGR085C_id001"; gene_name "RPL11B"; gene_id "YGR085C"; +chrVII SGD gene 649336 650935 . - . gene_id "YGR086C"; gene_biotype "protein_coding"; +chrVII SGD transcript 649336 650935 . - . transcript_id "YGR086C_id001"; gene_id "YGR086C"; gene_name "PIL1"; transcript_biotype "protein_coding"; +chrVII SGD exon 649336 650935 . - . transcript_id "YGR086C_id001"; gene_id "YGR086C"; gene_name "PIL1"; +chrVII SGD transcript 649598 650617 . - . transcript_id "YGR086C_id002"; gene_id "YGR086C"; gene_name "PIL1"; transcript_biotype "protein_coding"; +chrVII SGD exon 649598 650617 . - 0 transcript_id "YGR086C_id002"; gene_name "PIL1"; gene_id "YGR086C"; +chrVII SGD gene 651290 652981 . - . gene_id "YGR087C"; gene_biotype "protein_coding"; +chrVII SGD transcript 651290 652981 . - . transcript_id "YGR087C_mRNA"; gene_id "YGR087C"; gene_name "PDC6"; transcript_biotype "protein_coding"; +chrVII SGD CDS 651290 652981 . - 0 transcript_id "YGR087C_mRNA"; gene_name "PDC6"; gene_id "YGR087C"; +chrVII SGD gene 653562 656387 . + . gene_id "YGR088W"; gene_biotype "protein_coding"; +chrVII SGD transcript 653562 656387 . + . transcript_id "YGR088W_id001"; gene_id "YGR088W"; gene_name "CTT1"; transcript_biotype "protein_coding"; +chrVII SGD exon 653562 656387 . + . transcript_id "YGR088W_id001"; gene_id "YGR088W"; gene_name "CTT1"; +chrVII SGD transcript 654634 656322 . + . transcript_id "YGR088W_id003"; gene_id "YGR088W"; gene_name "CTT1"; transcript_biotype "protein_coding"; +chrVII SGD exon 654634 656322 . + 0 transcript_id "YGR088W_id003"; gene_name "CTT1"; gene_id "YGR088W"; +chrVII SGD gene 656680 659836 . + . gene_id "YGR089W"; gene_biotype "protein_coding"; +chrVII SGD transcript 656680 659836 . + . transcript_id "YGR089W_id002"; gene_id "YGR089W"; gene_name "NNF2"; transcript_biotype "protein_coding"; +chrVII SGD exon 656680 659836 . + . transcript_id "YGR089W_id002"; gene_id "YGR089W"; gene_name "NNF2"; +chrVII SGD transcript 656960 659770 . + . transcript_id "YGR089W_id001"; gene_id "YGR089W"; gene_name "NNF2"; transcript_biotype "protein_coding"; +chrVII SGD exon 656960 659770 . + 0 transcript_id "YGR089W_id001"; gene_name "NNF2"; gene_id "YGR089W"; +chrVII SGD gene 661749 661820 . + . gene_id "YNCG0027W"; gene_biotype "ncRNA"; +chrVII SGD transcript 661749 661820 . + . transcript_id "YNCG0027W_tRNA"; gene_id "YNCG0027W"; transcript_biotype "ncRNA"; +chrVII SGD exon 661749 661820 . + . transcript_id "YNCG0027W_tRNA"; gene_id "YNCG0027W"; +chrVII SGD gene 662090 666186 . + . gene_id "YGR090W"; gene_biotype "protein_coding"; +chrVII SGD transcript 662090 666186 . + . transcript_id "YGR090W_id002"; gene_id "YGR090W"; gene_name "UTP22"; transcript_biotype "protein_coding"; +chrVII SGD exon 662090 666186 . + . transcript_id "YGR090W_id002"; gene_id "YGR090W"; gene_name "UTP22"; +chrVII SGD transcript 662358 666071 . + . transcript_id "YGR090W_id001"; gene_id "YGR090W"; gene_name "UTP22"; transcript_biotype "protein_coding"; +chrVII SGD exon 662358 666071 . + 0 transcript_id "YGR090W_id001"; gene_name "UTP22"; gene_id "YGR090W"; +chrVII SGD gene 666272 668002 . + . gene_id "YGR091W"; gene_biotype "protein_coding"; +chrVII SGD transcript 666272 668002 . + . transcript_id "YGR091W_id003"; gene_id "YGR091W"; gene_name "PRP31"; transcript_biotype "protein_coding"; +chrVII SGD exon 666272 668002 . + . transcript_id "YGR091W_id003"; gene_id "YGR091W"; gene_name "PRP31"; +chrVII SGD transcript 666341 667825 . + . transcript_id "YGR091W_id001"; gene_id "YGR091W"; gene_name "PRP31"; transcript_biotype "protein_coding"; +chrVII SGD exon 666341 667825 . + 0 transcript_id "YGR091W_id001"; gene_name "PRP31"; gene_id "YGR091W"; +chrVII SGD gene 668114 670006 . + . gene_id "YGR092W"; gene_biotype "protein_coding"; +chrVII SGD transcript 668114 670006 . + . transcript_id "YGR092W_id003"; gene_id "YGR092W"; gene_name "DBF2"; transcript_biotype "protein_coding"; +chrVII SGD exon 668114 670006 . + . transcript_id "YGR092W_id003"; gene_id "YGR092W"; gene_name "DBF2"; +chrVII SGD transcript 668189 669907 . + . transcript_id "YGR092W_id001"; gene_id "YGR092W"; gene_name "DBF2"; transcript_biotype "protein_coding"; +chrVII SGD exon 668189 669907 . + 0 transcript_id "YGR092W_id001"; gene_name "DBF2"; gene_id "YGR092W"; +chrVII SGD gene 670302 672035 . + . gene_id "YGR093W"; gene_biotype "protein_coding"; +chrVII SGD transcript 670302 672035 . + . transcript_id "YGR093W_id001"; gene_id "YGR093W"; gene_name "DRN1"; transcript_biotype "protein_coding"; +chrVII SGD exon 670302 672035 . + . transcript_id "YGR093W_id001"; gene_id "YGR093W"; gene_name "DRN1"; +chrVII SGD transcript 670388 671911 . + . transcript_id "YGR093W_id002"; gene_id "YGR093W"; gene_name "DRN1"; transcript_biotype "protein_coding"; +chrVII SGD exon 670388 671911 . + 0 transcript_id "YGR093W_id002"; gene_name "DRN1"; gene_id "YGR093W"; +chrVII SGD gene 672186 675500 . + . gene_id "YGR094W"; gene_biotype "protein_coding"; +chrVII SGD transcript 672186 675500 . + . transcript_id "YGR094W_id001"; gene_id "YGR094W"; gene_name "VAS1"; transcript_biotype "protein_coding"; +chrVII SGD exon 672186 675500 . + 0 transcript_id "YGR094W_id001"; gene_name "VAS1"; gene_id "YGR094W"; +chrVII SGD gene 675620 677115 . - . gene_id "YGR095C"; gene_biotype "protein_coding"; +chrVII SGD transcript 675620 677115 . - . transcript_id "YGR095C_id001"; gene_id "YGR095C"; gene_name "RRP46"; transcript_biotype "protein_coding"; +chrVII SGD exon 675620 677115 . - . transcript_id "YGR095C_id001"; gene_id "YGR095C"; gene_name "RRP46"; +chrVII SGD transcript 675671 676342 . - . transcript_id "YGR095C_id007"; gene_id "YGR095C"; gene_name "RRP46"; transcript_biotype "protein_coding"; +chrVII SGD exon 675671 676342 . - 0 transcript_id "YGR095C_id007"; gene_name "RRP46"; gene_id "YGR095C"; +chrVII SGD gene 676615 677757 . + . gene_id "YGR096W"; gene_biotype "protein_coding"; +chrVII SGD transcript 676615 677757 . + . transcript_id "YGR096W_id001"; gene_id "YGR096W"; gene_name "TPC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 676615 677757 . + . transcript_id "YGR096W_id001"; gene_id "YGR096W"; gene_name "TPC1"; +chrVII SGD transcript 676621 677565 . + . transcript_id "YGR096W_id002"; gene_id "YGR096W"; gene_name "TPC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 676621 677565 . + 0 transcript_id "YGR096W_id002"; gene_name "TPC1"; gene_id "YGR096W"; +chrVII SGD gene 678425 682284 . + . gene_id "YGR097W"; gene_biotype "protein_coding"; +chrVII SGD transcript 678425 682284 . + . transcript_id "YGR097W_id001"; gene_id "YGR097W"; gene_name "ASK10"; transcript_biotype "protein_coding"; +chrVII SGD exon 678425 682284 . + . transcript_id "YGR097W_id001"; gene_id "YGR097W"; gene_name "ASK10"; +chrVII SGD transcript 678695 682135 . + . transcript_id "YGR097W_id003"; gene_id "YGR097W"; gene_name "ASK10"; transcript_biotype "protein_coding"; +chrVII SGD exon 678695 682135 . + 0 transcript_id "YGR097W_id003"; gene_name "ASK10"; gene_id "YGR097W"; +chrVII SGD gene 682566 687458 . - . gene_id "YGR098C"; gene_biotype "protein_coding"; +chrVII SGD transcript 682566 687458 . - . transcript_id "YGR098C_mRNA"; gene_id "YGR098C"; gene_name "ESP1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 682566 687458 . - 0 transcript_id "YGR098C_mRNA"; gene_name "ESP1"; gene_id "YGR098C"; +chrVII SGD gene 687819 690028 . + . gene_id "YGR099W"; gene_biotype "protein_coding"; +chrVII SGD transcript 687819 690028 . + . transcript_id "YGR099W_id001"; gene_id "YGR099W"; gene_name "TEL2"; transcript_biotype "protein_coding"; +chrVII SGD exon 687819 690028 . + . transcript_id "YGR099W_id001"; gene_id "YGR099W"; gene_name "TEL2"; +chrVII SGD transcript 687899 689965 . + . transcript_id "YGR099W_id002"; gene_id "YGR099W"; gene_name "TEL2"; transcript_biotype "protein_coding"; +chrVII SGD exon 687899 689965 . + 0 transcript_id "YGR099W_id002"; gene_name "TEL2"; gene_id "YGR099W"; +chrVII SGD gene 690105 693204 . + . gene_id "YGR100W"; gene_biotype "protein_coding"; +chrVII SGD transcript 690105 693204 . + . transcript_id "YGR100W_id003"; gene_id "YGR100W"; gene_name "MDR1"; transcript_biotype "protein_coding"; +chrVII SGD exon 690105 693204 . + . transcript_id "YGR100W_id003"; gene_id "YGR100W"; gene_name "MDR1"; +chrVII SGD transcript 690245 693097 . + . transcript_id "YGR100W_id001"; gene_id "YGR100W"; gene_name "MDR1"; transcript_biotype "protein_coding"; +chrVII SGD exon 690245 693097 . + 0 transcript_id "YGR100W_id001"; gene_name "MDR1"; gene_id "YGR100W"; +chrVII SGD gene 693281 694577 . + . gene_id "YGR101W"; gene_biotype "protein_coding"; +chrVII SGD transcript 693281 694577 . + . transcript_id "YGR101W_id002"; gene_id "YGR101W"; gene_name "PCP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 693281 694577 . + . transcript_id "YGR101W_id002"; gene_id "YGR101W"; gene_name "PCP1"; +chrVII SGD transcript 693363 694403 . + . transcript_id "YGR101W_id001"; gene_id "YGR101W"; gene_name "PCP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 693363 694403 . + 0 transcript_id "YGR101W_id001"; gene_name "PCP1"; gene_id "YGR101W"; +chrVII SGD gene 694427 695245 . - . gene_id "YGR102C"; gene_biotype "protein_coding"; +chrVII SGD transcript 694427 695245 . - . transcript_id "YGR102C_id001"; gene_id "YGR102C"; gene_name "GTF1"; transcript_biotype "protein_coding"; +chrVII SGD exon 694427 695245 . - . transcript_id "YGR102C_id001"; gene_id "YGR102C"; gene_name "GTF1"; +chrVII SGD transcript 694584 695135 . - . transcript_id "YGR102C_id003"; gene_id "YGR102C"; gene_name "GTF1"; transcript_biotype "protein_coding"; +chrVII SGD exon 694584 695135 . - 0 transcript_id "YGR102C_id003"; gene_name "GTF1"; gene_id "YGR102C"; +chrVII SGD gene 695366 697439 . + . gene_id "YGR103W"; gene_biotype "protein_coding"; +chrVII SGD transcript 695366 697439 . + . transcript_id "YGR103W_id002"; gene_id "YGR103W"; gene_name "NOP7"; transcript_biotype "protein_coding"; +chrVII SGD exon 695366 697439 . + . transcript_id "YGR103W_id002"; gene_id "YGR103W"; gene_name "NOP7"; +chrVII SGD transcript 695417 697234 . + . transcript_id "YGR103W_id001"; gene_id "YGR103W"; gene_name "NOP7"; transcript_biotype "protein_coding"; +chrVII SGD exon 695417 697234 . + 0 transcript_id "YGR103W_id001"; gene_name "NOP7"; gene_id "YGR103W"; +chrVII SGD gene 697306 698419 . - . gene_id "YGR104C"; gene_biotype "protein_coding"; +chrVII SGD transcript 697306 698419 . - . transcript_id "YGR104C_id007"; gene_id "YGR104C"; gene_name "SRB5"; transcript_biotype "protein_coding"; +chrVII SGD exon 697306 698419 . - . transcript_id "YGR104C_id007"; gene_id "YGR104C"; gene_name "SRB5"; +chrVII SGD transcript 697445 698368 . - . transcript_id "YGR104C_id001"; gene_id "YGR104C"; gene_name "SRB5"; transcript_biotype "protein_coding"; +chrVII SGD exon 697445 698368 . - 0 transcript_id "YGR104C_id001"; gene_name "SRB5"; gene_id "YGR104C"; +chrVII SGD gene 698221 699010 . + . gene_id "YGR105W"; gene_biotype "protein_coding"; +chrVII SGD transcript 698221 699010 . + . transcript_id "YGR105W_id001"; gene_id "YGR105W"; gene_name "VMA21"; transcript_biotype "protein_coding"; +chrVII SGD exon 698221 699010 . + . transcript_id "YGR105W_id001"; gene_id "YGR105W"; gene_name "VMA21"; +chrVII SGD transcript 698599 698832 . + . transcript_id "YGR105W_id003"; gene_id "YGR105W"; gene_name "VMA21"; transcript_biotype "protein_coding"; +chrVII SGD exon 698599 698832 . + 0 transcript_id "YGR105W_id003"; gene_name "VMA21"; gene_id "YGR105W"; +chrVII SGD gene 698809 699846 . - . gene_id "YGR106C"; gene_biotype "protein_coding"; +chrVII SGD transcript 698809 699846 . - . transcript_id "YGR106C_id001"; gene_id "YGR106C"; gene_name "VOA1"; transcript_biotype "protein_coding"; +chrVII SGD exon 698809 699846 . - . transcript_id "YGR106C_id001"; gene_id "YGR106C"; gene_name "VOA1"; +chrVII SGD transcript 698989 699786 . - . transcript_id "YGR106C_id005"; gene_id "YGR106C"; gene_name "VOA1"; transcript_biotype "protein_coding"; +chrVII SGD exon 698989 699786 . - 0 transcript_id "YGR106C_id005"; gene_name "VOA1"; gene_id "YGR106C"; +chrVII SGD gene 700675 700756 . + . gene_id "YNCG0028W"; gene_biotype "ncRNA"; +chrVII SGD transcript 700675 700756 . + . transcript_id "YNCG0028W_tRNA"; gene_id "YNCG0028W"; transcript_biotype "ncRNA"; +chrVII SGD exon 700675 700756 . + . transcript_id "YNCG0028W_tRNA"; gene_id "YNCG0028W"; +chrVII SGD gene 700953 701048 . - . gene_id "YNCG0029C"; gene_biotype "ncRNA"; +chrVII SGD transcript 700953 701048 . - . transcript_id "YNCG0029C_tRNA"; gene_id "YNCG0029C"; transcript_biotype "ncRNA"; +chrVII SGD exon 700953 700988 . - . transcript_id "YNCG0029C_tRNA"; gene_id "YNCG0029C"; +chrVII SGD exon 701012 701048 . - . transcript_id "YNCG0029C_tRNA"; gene_id "YNCG0029C"; +chrVII SGD gene 702568 703790 . + . gene_id "YGR107W"; gene_biotype "protein_coding"; +chrVII SGD transcript 702568 703790 . + . transcript_id "YGR107W_id001"; gene_id "YGR107W"; transcript_biotype "protein_coding"; +chrVII SGD exon 702568 703790 . + . transcript_id "YGR107W_id001"; gene_id "YGR107W"; +chrVII SGD transcript 702667 703116 . + . transcript_id "YGR107W_id002"; gene_id "YGR107W"; transcript_biotype "protein_coding"; +chrVII SGD exon 702667 703116 . + 0 transcript_id "YGR107W_id002"; gene_id "YGR107W"; +chrVII SGD gene 703418 705311 . + . gene_id "YGR108W"; gene_biotype "protein_coding"; +chrVII SGD transcript 703418 705311 . + . transcript_id "YGR108W_id001"; gene_id "YGR108W"; gene_name "CLB1"; transcript_biotype "protein_coding"; +chrVII SGD exon 703418 705311 . + . transcript_id "YGR108W_id001"; gene_id "YGR108W"; gene_name "CLB1"; +chrVII SGD transcript 703636 705051 . + . transcript_id "YGR108W_id002"; gene_id "YGR108W"; gene_name "CLB1"; transcript_biotype "protein_coding"; +chrVII SGD exon 703636 705051 . + 0 transcript_id "YGR108W_id002"; gene_name "CLB1"; gene_id "YGR108W"; +chrVII SGD gene 705245 706595 . - . gene_id "YGR109C"; gene_biotype "protein_coding"; +chrVII SGD transcript 705245 706595 . - . transcript_id "YGR109C_id002"; gene_id "YGR109C"; gene_name "CLB6"; transcript_biotype "protein_coding"; +chrVII SGD exon 705245 706595 . - . transcript_id "YGR109C_id002"; gene_id "YGR109C"; gene_name "CLB6"; +chrVII SGD transcript 705359 706501 . - . transcript_id "YGR109C_id001"; gene_id "YGR109C"; gene_name "CLB6"; transcript_biotype "protein_coding"; +chrVII SGD exon 705359 706501 . - 0 transcript_id "YGR109C_id001"; gene_name "CLB6"; gene_id "YGR109C"; +chrVII SGD gene 707108 707179 . - . gene_id "YNCG0030C"; gene_biotype "ncRNA"; +chrVII SGD transcript 707108 707179 . - . transcript_id "YNCG0030C_tRNA"; gene_id "YNCG0030C"; transcript_biotype "ncRNA"; +chrVII SGD exon 707108 707179 . - . transcript_id "YNCG0030C_tRNA"; gene_id "YNCG0030C"; +chrVII SGD gene 707610 708482 . + . gene_id "YGR109W-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 707610 708482 . + . transcript_id "YGR109W-A_dummy"; gene_id "YGR109W-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 707610 708482 . + 0 transcript_id "YGR109W-A_dummy"; gene_id "YGR109W-A"; +chrVII SGD gene 707610 712254 . + . gene_id "YGR109W-B"; gene_biotype "protein_coding"; +chrVII SGD transcript 707610 712254 . + . transcript_id "YGR109W-B_dummy"; gene_id "YGR109W-B"; transcript_biotype "protein_coding"; +chrVII SGD exon 707610 708459 . + 0 transcript_id "YGR109W-B_dummy"; gene_id "YGR109W-B"; +chrVII SGD exon 708461 712254 . + 2 transcript_id "YGR109W-B_dummy"; gene_id "YGR109W-B"; +chrVII SGD gene 713658 715142 . + . gene_id "YGR110W"; gene_biotype "protein_coding"; +chrVII SGD transcript 713658 715142 . + . transcript_id "YGR110W_id021"; gene_id "YGR110W"; gene_name "CLD1"; transcript_biotype "protein_coding"; +chrVII SGD exon 713658 715142 . + . transcript_id "YGR110W_id021"; gene_id "YGR110W"; gene_name "CLD1"; +chrVII SGD transcript 713709 715046 . + . transcript_id "YGR110W_id001"; gene_id "YGR110W"; gene_name "CLD1"; transcript_biotype "protein_coding"; +chrVII SGD exon 713709 715046 . + 0 transcript_id "YGR110W_id001"; gene_name "CLD1"; gene_id "YGR110W"; +chrVII SGD gene 715735 717158 . + . gene_id "YGR111W"; gene_biotype "protein_coding"; +chrVII SGD transcript 715735 717158 . + . transcript_id "YGR111W_id002"; gene_id "YGR111W"; transcript_biotype "protein_coding"; +chrVII SGD exon 715735 717158 . + . transcript_id "YGR111W_id002"; gene_id "YGR111W"; +chrVII SGD transcript 715828 717030 . + . transcript_id "YGR111W_id001"; gene_id "YGR111W"; transcript_biotype "protein_coding"; +chrVII SGD exon 715828 717030 . + 0 transcript_id "YGR111W_id001"; gene_id "YGR111W"; +chrVII SGD gene 717300 718785 . + . gene_id "YGR112W"; gene_biotype "protein_coding"; +chrVII SGD transcript 717300 718785 . + . transcript_id "YGR112W_id002"; gene_id "YGR112W"; gene_name "SHY1"; transcript_biotype "protein_coding"; +chrVII SGD exon 717300 718785 . + . transcript_id "YGR112W_id002"; gene_id "YGR112W"; gene_name "SHY1"; +chrVII SGD transcript 717358 718527 . + . transcript_id "YGR112W_id001"; gene_id "YGR112W"; gene_name "SHY1"; transcript_biotype "protein_coding"; +chrVII SGD exon 717358 718527 . + 0 transcript_id "YGR112W_id001"; gene_name "SHY1"; gene_id "YGR112W"; +chrVII SGD gene 718810 720242 . + . gene_id "YGR113W"; gene_biotype "protein_coding"; +chrVII SGD transcript 718810 720242 . + . transcript_id "YGR113W_id001"; gene_id "YGR113W"; gene_name "DAM1"; transcript_biotype "protein_coding"; +chrVII SGD exon 718810 720242 . + . transcript_id "YGR113W_id001"; gene_id "YGR113W"; gene_name "DAM1"; +chrVII SGD transcript 718893 719924 . + . transcript_id "YGR113W_id002"; gene_id "YGR113W"; gene_name "DAM1"; transcript_biotype "protein_coding"; +chrVII SGD exon 718893 719924 . + 0 transcript_id "YGR113W_id002"; gene_name "DAM1"; gene_id "YGR113W"; +chrVII SGD gene 720265 720654 . - . gene_id "YGR114C"; gene_biotype "protein_coding"; +chrVII SGD transcript 720265 720654 . - . transcript_id "YGR114C_mRNA"; gene_id "YGR114C"; transcript_biotype "protein_coding"; +chrVII SGD CDS 720265 720654 . - 0 transcript_id "YGR114C_mRNA"; gene_id "YGR114C"; +chrVII SGD gene 720286 724955 . + . gene_id "YGR116W"; gene_biotype "protein_coding"; +chrVII SGD transcript 720286 724955 . + . transcript_id "YGR116W_id001"; gene_id "YGR116W"; gene_name "SPT6"; transcript_biotype "protein_coding"; +chrVII SGD exon 720286 724955 . + . transcript_id "YGR116W_id001"; gene_id "YGR116W"; gene_name "SPT6"; +chrVII SGD gene 720372 721151 . - . gene_id "YGR115C"; gene_biotype "protein_coding"; +chrVII SGD transcript 720372 721151 . - . transcript_id "YGR115C_mRNA"; gene_id "YGR115C"; transcript_biotype "protein_coding"; +chrVII SGD CDS 720372 721151 . - 0 transcript_id "YGR115C_mRNA"; gene_id "YGR115C"; +chrVII SGD transcript 720409 724764 . + . transcript_id "YGR116W_id002"; gene_id "YGR116W"; gene_name "SPT6"; transcript_biotype "protein_coding"; +chrVII SGD exon 720409 724764 . + 0 transcript_id "YGR116W_id002"; gene_name "SPT6"; gene_id "YGR116W"; +chrVII SGD gene 724773 726488 . - . gene_id "YGR117C"; gene_biotype "protein_coding"; +chrVII SGD transcript 724773 726488 . - . transcript_id "YGR117C_id003"; gene_id "YGR117C"; transcript_biotype "protein_coding"; +chrVII SGD exon 724773 726488 . - . transcript_id "YGR117C_id003"; gene_id "YGR117C"; +chrVII SGD transcript 725049 726479 . - . transcript_id "YGR117C_id001"; gene_id "YGR117C"; transcript_biotype "protein_coding"; +chrVII SGD exon 725049 726479 . - 0 transcript_id "YGR117C_id001"; gene_id "YGR117C"; +chrVII SGD gene 726951 728072 . + . gene_id "YGR118W"; gene_biotype "protein_coding"; +chrVII SGD transcript 726951 728072 . + . transcript_id "YGR118W_id004"; gene_id "YGR118W"; gene_name "RPS23A"; transcript_biotype "protein_coding"; +chrVII SGD exon 726951 728072 . + . transcript_id "YGR118W_id004"; gene_id "YGR118W"; gene_name "RPS23A"; +chrVII SGD transcript 726974 727730 . + . transcript_id "YGR118W_id001"; gene_id "YGR118W"; gene_name "RPS23A"; transcript_biotype "protein_coding"; +chrVII SGD exon 726974 727038 . + 0 transcript_id "YGR118W_id001"; gene_name "RPS23A"; gene_id "YGR118W"; +chrVII SGD exon 727358 727730 . + 1 transcript_id "YGR118W_id001"; gene_name "RPS23A"; gene_id "YGR118W"; +chrVII SGD gene 727897 729780 . - . gene_id "YGR119C"; gene_biotype "protein_coding"; +chrVII SGD transcript 727897 729780 . - . transcript_id "YGR119C_id004"; gene_id "YGR119C"; gene_name "NUP57"; transcript_biotype "protein_coding"; +chrVII SGD exon 727897 729780 . - . transcript_id "YGR119C_id004"; gene_id "YGR119C"; gene_name "NUP57"; +chrVII SGD transcript 728046 729671 . - . transcript_id "YGR119C_id001"; gene_id "YGR119C"; gene_name "NUP57"; transcript_biotype "protein_coding"; +chrVII SGD exon 728046 729671 . - 0 transcript_id "YGR119C_id001"; gene_name "NUP57"; gene_id "YGR119C"; +chrVII SGD gene 729857 730905 . - . gene_id "YGR120C"; gene_biotype "protein_coding"; +chrVII SGD transcript 729857 730905 . - . transcript_id "YGR120C_id002"; gene_id "YGR120C"; gene_name "COG2"; transcript_biotype "protein_coding"; +chrVII SGD exon 729857 730905 . - . transcript_id "YGR120C_id002"; gene_id "YGR120C"; gene_name "COG2"; +chrVII SGD transcript 730033 730821 . - . transcript_id "YGR120C_id001"; gene_id "YGR120C"; gene_name "COG2"; transcript_biotype "protein_coding"; +chrVII SGD exon 730033 730821 . - 0 transcript_id "YGR120C_id001"; gene_name "COG2"; gene_id "YGR120C"; +chrVII SGD gene 731137 731210 . + . gene_id "YNCG0031W"; gene_biotype "ncRNA"; +chrVII SGD transcript 731137 731210 . + . transcript_id "YNCG0031W_tRNA"; gene_id "YNCG0031W"; transcript_biotype "ncRNA"; +chrVII SGD exon 731137 731210 . + . transcript_id "YNCG0031W_tRNA"; gene_id "YNCG0031W"; +chrVII SGD gene 731309 732962 . - . gene_id "YGR121C"; gene_biotype "protein_coding"; +chrVII SGD transcript 731309 732962 . - . transcript_id "YGR121C_id004"; gene_id "YGR121C"; gene_name "MEP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 731309 732962 . - . transcript_id "YGR121C_id004"; gene_id "YGR121C"; gene_name "MEP1"; +chrVII SGD transcript 731449 732927 . - . transcript_id "YGR121C_id001"; gene_id "YGR121C"; gene_name "MEP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 731449 732927 . - 0 transcript_id "YGR121C_id001"; gene_name "MEP1"; gene_id "YGR121C"; +chrVII SGD gene 733216 733657 . + . gene_id "YGR121W-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 733216 733657 . + . transcript_id "YGR121W-A_id002"; gene_id "YGR121W-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 733216 733657 . + . transcript_id "YGR121W-A_id002"; gene_id "YGR121W-A"; +chrVII SGD transcript 733412 733627 . + . transcript_id "YGR121W-A_id001"; gene_id "YGR121W-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 733412 733627 . + 0 transcript_id "YGR121W-A_id001"; gene_id "YGR121W-A"; +chrVII SGD gene 733728 735475 . + . gene_id "YGR122W"; gene_biotype "protein_coding"; +chrVII SGD transcript 733728 735475 . + . transcript_id "YGR122W_id005"; gene_id "YGR122W"; transcript_biotype "protein_coding"; +chrVII SGD exon 733728 735475 . + . transcript_id "YGR122W_id005"; gene_id "YGR122W"; +chrVII SGD transcript 733935 735143 . + . transcript_id "YGR122W_id001"; gene_id "YGR122W"; transcript_biotype "protein_coding"; +chrVII SGD exon 733935 735143 . + 0 transcript_id "YGR122W_id001"; gene_id "YGR122W"; +chrVII SGD gene 735182 736020 . - . gene_id "YGR122C-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 735182 736020 . - . transcript_id "YGR122C-A_id004"; gene_id "YGR122C-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 735182 736020 . - . transcript_id "YGR122C-A_id004"; gene_id "YGR122C-A"; +chrVII SGD transcript 735630 735758 . - . transcript_id "YGR122C-A_id001"; gene_id "YGR122C-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 735630 735758 . - 0 transcript_id "YGR122C-A_id001"; gene_id "YGR122C-A"; +chrVII SGD gene 736340 736411 . + . gene_id "YNCG0032W"; gene_biotype "ncRNA"; +chrVII SGD transcript 736340 736411 . + . transcript_id "YNCG0032W_tRNA"; gene_id "YNCG0032W"; transcript_biotype "ncRNA"; +chrVII SGD exon 736340 736411 . + . transcript_id "YNCG0032W_tRNA"; gene_id "YNCG0032W"; +chrVII SGD gene 736514 738304 . - . gene_id "YGR123C"; gene_biotype "protein_coding"; +chrVII SGD transcript 736514 738304 . - . transcript_id "YGR123C_id003"; gene_id "YGR123C"; gene_name "PPT1"; transcript_biotype "protein_coding"; +chrVII SGD exon 736514 738304 . - . transcript_id "YGR123C_id003"; gene_id "YGR123C"; gene_name "PPT1"; +chrVII SGD transcript 736662 738203 . - . transcript_id "YGR123C_id001"; gene_id "YGR123C"; gene_name "PPT1"; transcript_biotype "protein_coding"; +chrVII SGD exon 736662 738203 . - 0 transcript_id "YGR123C_id001"; gene_name "PPT1"; gene_id "YGR123C"; +chrVII SGD gene 739122 739195 . + . gene_id "YNCG0033W"; gene_biotype "ncRNA"; +chrVII SGD transcript 739122 739195 . + . transcript_id "YNCG0033W_tRNA"; gene_id "YNCG0033W"; transcript_biotype "ncRNA"; +chrVII SGD exon 739122 739195 . + . transcript_id "YNCG0033W_tRNA"; gene_id "YNCG0033W"; +chrVII SGD gene 739847 741955 . + . gene_id "YGR124W"; gene_biotype "protein_coding"; +chrVII SGD transcript 739847 741955 . + . transcript_id "YGR124W_id001"; gene_id "YGR124W"; gene_name "ASN2"; transcript_biotype "protein_coding"; +chrVII SGD exon 739847 741955 . + . transcript_id "YGR124W_id001"; gene_id "YGR124W"; gene_name "ASN2"; +chrVII SGD transcript 739944 741662 . + . transcript_id "YGR124W_id005"; gene_id "YGR124W"; gene_name "ASN2"; transcript_biotype "protein_coding"; +chrVII SGD exon 739944 741662 . + 0 transcript_id "YGR124W_id005"; gene_name "ASN2"; gene_id "YGR124W"; +chrVII SGD gene 742325 745435 . + . gene_id "YGR125W"; gene_biotype "protein_coding"; +chrVII SGD transcript 742325 745435 . + . transcript_id "YGR125W_id001"; gene_id "YGR125W"; gene_name "VSB1"; transcript_biotype "protein_coding"; +chrVII SGD exon 742325 745435 . + 0 transcript_id "YGR125W_id001"; gene_name "VSB1"; gene_id "YGR125W"; +chrVII SGD gene 745835 746527 . + . gene_id "YGR126W"; gene_biotype "protein_coding"; +chrVII SGD transcript 745835 746527 . + . transcript_id "YGR126W_id001"; gene_id "YGR126W"; transcript_biotype "protein_coding"; +chrVII SGD exon 745835 746527 . + 0 transcript_id "YGR126W_id001"; gene_id "YGR126W"; +chrVII SGD gene 746140 747951 . + . gene_id "YGR127W"; gene_biotype "protein_coding"; +chrVII SGD transcript 746140 747951 . + . transcript_id "YGR127W_id002"; gene_id "YGR127W"; transcript_biotype "protein_coding"; +chrVII SGD exon 746140 747951 . + . transcript_id "YGR127W_id002"; gene_id "YGR127W"; +chrVII SGD transcript 746798 747736 . + . transcript_id "YGR127W_id001"; gene_id "YGR127W"; transcript_biotype "protein_coding"; +chrVII SGD exon 746798 747736 . + 0 transcript_id "YGR127W_id001"; gene_id "YGR127W"; +chrVII SGD gene 747691 750129 . - . gene_id "YGR128C"; gene_biotype "protein_coding"; +chrVII SGD transcript 747691 750129 . - . transcript_id "YGR128C_id001"; gene_id "YGR128C"; gene_name "UTP8"; transcript_biotype "protein_coding"; +chrVII SGD exon 747691 750129 . - . transcript_id "YGR128C_id001"; gene_id "YGR128C"; gene_name "UTP8"; +chrVII SGD transcript 747950 750091 . - . transcript_id "YGR128C_id003"; gene_id "YGR128C"; gene_name "UTP8"; transcript_biotype "protein_coding"; +chrVII SGD exon 747950 750091 . - 0 transcript_id "YGR128C_id003"; gene_name "UTP8"; gene_id "YGR128C"; +chrVII SGD gene 750376 751803 . + . gene_id "YGR129W"; gene_biotype "protein_coding"; +chrVII SGD transcript 750376 751803 . + . transcript_id "YGR129W_id003"; gene_id "YGR129W"; gene_name "SYF2"; transcript_biotype "protein_coding"; +chrVII SGD exon 750376 751803 . + . transcript_id "YGR129W_id003"; gene_id "YGR129W"; gene_name "SYF2"; +chrVII SGD transcript 750400 751047 . + . transcript_id "YGR129W_id001"; gene_id "YGR129W"; gene_name "SYF2"; transcript_biotype "protein_coding"; +chrVII SGD exon 750400 751047 . + 0 transcript_id "YGR129W_id001"; gene_name "SYF2"; gene_id "YGR129W"; +chrVII SGD gene 751219 753982 . - . gene_id "YGR130C"; gene_biotype "protein_coding"; +chrVII SGD transcript 751219 753982 . - . transcript_id "YGR130C_id002"; gene_id "YGR130C"; transcript_biotype "protein_coding"; +chrVII SGD exon 751219 753982 . - . transcript_id "YGR130C_id002"; gene_id "YGR130C"; +chrVII SGD transcript 751394 753844 . - . transcript_id "YGR130C_id001"; gene_id "YGR130C"; transcript_biotype "protein_coding"; +chrVII SGD exon 751394 753844 . - 0 transcript_id "YGR130C_id001"; gene_id "YGR130C"; +chrVII SGD gene 754595 755350 . + . gene_id "YGR131W"; gene_biotype "protein_coding"; +chrVII SGD transcript 754595 755350 . + . transcript_id "YGR131W_id004"; gene_id "YGR131W"; gene_name "FHN1"; transcript_biotype "protein_coding"; +chrVII SGD exon 754595 755350 . + . transcript_id "YGR131W_id004"; gene_id "YGR131W"; gene_name "FHN1"; +chrVII SGD transcript 754726 755250 . + . transcript_id "YGR131W_id001"; gene_id "YGR131W"; gene_name "FHN1"; transcript_biotype "protein_coding"; +chrVII SGD exon 754726 755250 . + 0 transcript_id "YGR131W_id001"; gene_name "FHN1"; gene_id "YGR131W"; +chrVII SGD gene 755364 757391 . - . gene_id "YGR132C"; gene_biotype "protein_coding"; +chrVII SGD transcript 755364 757391 . - . transcript_id "YGR132C_id003"; gene_id "YGR132C"; gene_name "PHB1"; transcript_biotype "protein_coding"; +chrVII SGD exon 755364 757391 . - . transcript_id "YGR132C_id003"; gene_id "YGR132C"; gene_name "PHB1"; +chrVII SGD transcript 755589 756452 . - . transcript_id "YGR132C_id001"; gene_id "YGR132C"; gene_name "PHB1"; transcript_biotype "protein_coding"; +chrVII SGD exon 755589 756452 . - 0 transcript_id "YGR132C_id001"; gene_name "PHB1"; gene_id "YGR132C"; +chrVII SGD gene 756896 757447 . + . gene_id "YGR133W"; gene_biotype "protein_coding"; +chrVII SGD transcript 756896 757447 . + . transcript_id "YGR133W_mRNA"; gene_id "YGR133W"; gene_name "PEX4"; transcript_biotype "protein_coding"; +chrVII SGD CDS 756896 757447 . + 0 transcript_id "YGR133W_mRNA"; gene_name "PEX4"; gene_id "YGR133W"; +chrVII SGD gene 757770 761138 . + . gene_id "YGR134W"; gene_biotype "protein_coding"; +chrVII SGD transcript 757770 761138 . + . transcript_id "YGR134W_id001"; gene_id "YGR134W"; gene_name "CAF130"; transcript_biotype "protein_coding"; +chrVII SGD exon 757770 761138 . + 0 transcript_id "YGR134W_id001"; gene_name "CAF130"; gene_id "YGR134W"; +chrVII SGD gene 761300 762319 . + . gene_id "YGR135W"; gene_biotype "protein_coding"; +chrVII SGD transcript 761300 762319 . + . transcript_id "YGR135W_id002"; gene_id "YGR135W"; gene_name "PRE9"; transcript_biotype "protein_coding"; +chrVII SGD exon 761300 762319 . + . transcript_id "YGR135W_id002"; gene_id "YGR135W"; gene_name "PRE9"; +chrVII SGD transcript 761392 762168 . + . transcript_id "YGR135W_id001"; gene_id "YGR135W"; gene_name "PRE9"; transcript_biotype "protein_coding"; +chrVII SGD exon 761392 762168 . + 0 transcript_id "YGR135W_id001"; gene_name "PRE9"; gene_id "YGR135W"; +chrVII SGD gene 762428 763153 . + . gene_id "YGR136W"; gene_biotype "protein_coding"; +chrVII SGD transcript 762428 763153 . + . transcript_id "YGR136W_mRNA"; gene_id "YGR136W"; gene_name "LSB1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 762428 763153 . + 0 transcript_id "YGR136W_mRNA"; gene_name "LSB1"; gene_id "YGR136W"; +chrVII SGD gene 762454 763402 . + . gene_id "YGR137W"; gene_biotype "protein_coding"; +chrVII SGD transcript 762454 763402 . + . transcript_id "YGR137W_id002"; gene_id "YGR137W"; transcript_biotype "protein_coding"; +chrVII SGD exon 762454 763402 . + . transcript_id "YGR137W_id002"; gene_id "YGR137W"; +chrVII SGD transcript 762888 763262 . + . transcript_id "YGR137W_id001"; gene_id "YGR137W"; transcript_biotype "protein_coding"; +chrVII SGD exon 762888 763262 . + 0 transcript_id "YGR137W_id001"; gene_id "YGR137W"; +chrVII SGD gene 763678 765886 . - . gene_id "YGR138C"; gene_biotype "protein_coding"; +chrVII SGD transcript 763678 765886 . - . transcript_id "YGR138C_id002"; gene_id "YGR138C"; gene_name "TPO2"; transcript_biotype "protein_coding"; +chrVII SGD exon 763678 765886 . - . transcript_id "YGR138C_id002"; gene_id "YGR138C"; gene_name "TPO2"; +chrVII SGD transcript 763762 765606 . - . transcript_id "YGR138C_id001"; gene_id "YGR138C"; gene_name "TPO2"; transcript_biotype "protein_coding"; +chrVII SGD exon 763762 765606 . - 0 transcript_id "YGR138C_id001"; gene_name "TPO2"; gene_id "YGR138C"; +chrVII SGD gene 765726 766064 . + . gene_id "YGR139W"; gene_biotype "protein_coding"; +chrVII SGD transcript 765726 766064 . + . transcript_id "YGR139W_mRNA"; gene_id "YGR139W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 765726 766064 . + 0 transcript_id "YGR139W_mRNA"; gene_id "YGR139W"; +chrVII SGD gene 767429 770299 . + . gene_id "YGR140W"; gene_biotype "protein_coding"; +chrVII SGD transcript 767429 770299 . + . transcript_id "YGR140W_mRNA"; gene_id "YGR140W"; gene_name "CBF2"; transcript_biotype "protein_coding"; +chrVII SGD CDS 767429 770299 . + 0 transcript_id "YGR140W_mRNA"; gene_name "CBF2"; gene_id "YGR140W"; +chrVII SGD gene 770549 772399 . + . gene_id "YGR141W"; gene_biotype "protein_coding"; +chrVII SGD transcript 770549 772399 . + . transcript_id "YGR141W_id002"; gene_id "YGR141W"; gene_name "VPS62"; transcript_biotype "protein_coding"; +chrVII SGD exon 770549 772399 . + . transcript_id "YGR141W_id002"; gene_id "YGR141W"; gene_name "VPS62"; +chrVII SGD transcript 770569 771972 . + . transcript_id "YGR141W_id001"; gene_id "YGR141W"; gene_name "VPS62"; transcript_biotype "protein_coding"; +chrVII SGD exon 770569 771972 . + 0 transcript_id "YGR141W_id001"; gene_name "VPS62"; gene_id "YGR141W"; +chrVII SGD gene 772277 773781 . + . gene_id "YGR142W"; gene_biotype "protein_coding"; +chrVII SGD transcript 772277 773781 . + . transcript_id "YGR142W_id003"; gene_id "YGR142W"; gene_name "BTN2"; transcript_biotype "protein_coding"; +chrVII SGD exon 772277 773781 . + . transcript_id "YGR142W_id003"; gene_id "YGR142W"; gene_name "BTN2"; +chrVII SGD transcript 772454 773686 . + . transcript_id "YGR142W_id001"; gene_id "YGR142W"; gene_name "BTN2"; transcript_biotype "protein_coding"; +chrVII SGD exon 772454 773686 . + 0 transcript_id "YGR142W_id001"; gene_name "BTN2"; gene_id "YGR142W"; +chrVII SGD gene 774349 774421 . + . gene_id "YNCG0034W"; gene_biotype "ncRNA"; +chrVII SGD transcript 774349 774421 . + . transcript_id "YNCG0034W_tRNA"; gene_id "YNCG0034W"; transcript_biotype "ncRNA"; +chrVII SGD exon 774349 774421 . + . transcript_id "YNCG0034W_tRNA"; gene_id "YNCG0034W"; +chrVII SGD gene 775193 777508 . + . gene_id "YGR143W"; gene_biotype "protein_coding"; +chrVII SGD transcript 775193 777508 . + . transcript_id "YGR143W_mRNA"; gene_id "YGR143W"; gene_name "SKN1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 775193 777508 . + 0 transcript_id "YGR143W_mRNA"; gene_name "SKN1"; gene_id "YGR143W"; +chrVII SGD gene 779616 779687 . + . gene_id "YNCG0035W"; gene_biotype "ncRNA"; +chrVII SGD transcript 779616 779687 . + . transcript_id "YNCG0035W_tRNA"; gene_id "YNCG0035W"; gene_name "SUF4"; transcript_biotype "ncRNA"; +chrVII SGD exon 779616 779687 . + . transcript_id "YNCG0035W_tRNA"; gene_name "SUF4"; gene_id "YNCG0035W"; +chrVII SGD gene 780399 781379 . + . gene_id "YGR144W"; gene_biotype "protein_coding"; +chrVII SGD transcript 780399 781379 . + . transcript_id "YGR144W_mRNA"; gene_id "YGR144W"; gene_name "THI4"; transcript_biotype "protein_coding"; +chrVII SGD CDS 780399 781379 . + 0 transcript_id "YGR144W_mRNA"; gene_name "THI4"; gene_id "YGR144W"; +chrVII SGD gene 781704 783984 . + . gene_id "YGR145W"; gene_biotype "protein_coding"; +chrVII SGD transcript 781704 783984 . + . transcript_id "YGR145W_id003"; gene_id "YGR145W"; gene_name "ENP2"; transcript_biotype "protein_coding"; +chrVII SGD exon 781704 783984 . + . transcript_id "YGR145W_id003"; gene_id "YGR145W"; gene_name "ENP2"; +chrVII SGD transcript 781767 783890 . + . transcript_id "YGR145W_id001"; gene_id "YGR145W"; gene_name "ENP2"; transcript_biotype "protein_coding"; +chrVII SGD exon 781767 783890 . + 0 transcript_id "YGR145W_id001"; gene_name "ENP2"; gene_id "YGR145W"; +chrVII SGD gene 784040 785214 . - . gene_id "YGR146C"; gene_biotype "protein_coding"; +chrVII SGD transcript 784040 785214 . - . transcript_id "YGR146C_id003"; gene_id "YGR146C"; gene_name "ECL1"; transcript_biotype "protein_coding"; +chrVII SGD exon 784040 785214 . - . transcript_id "YGR146C_id003"; gene_id "YGR146C"; gene_name "ECL1"; +chrVII SGD transcript 784223 784858 . - . transcript_id "YGR146C_id001"; gene_id "YGR146C"; gene_name "ECL1"; transcript_biotype "protein_coding"; +chrVII SGD exon 784223 784858 . - 0 transcript_id "YGR146C_id001"; gene_name "ECL1"; gene_id "YGR146C"; +chrVII SGD gene 785106 785939 . - . gene_id "YGR146C-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 785106 785939 . - . transcript_id "YGR146C-A_id002"; gene_id "YGR146C-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 785106 785939 . - . transcript_id "YGR146C-A_id002"; gene_id "YGR146C-A"; +chrVII SGD transcript 785276 785437 . - . transcript_id "YGR146C-A_id001"; gene_id "YGR146C-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 785276 785437 . - 0 transcript_id "YGR146C-A_id001"; gene_id "YGR146C-A"; +chrVII SGD gene 785712 786983 . - . gene_id "YGR147C"; gene_biotype "protein_coding"; +chrVII SGD transcript 785712 786983 . - . transcript_id "YGR147C_id001"; gene_id "YGR147C"; gene_name "NAT2"; transcript_biotype "protein_coding"; +chrVII SGD exon 785712 786983 . - . transcript_id "YGR147C_id001"; gene_id "YGR147C"; gene_name "NAT2"; +chrVII SGD transcript 786054 786920 . - . transcript_id "YGR147C_id002"; gene_id "YGR147C"; gene_name "NAT2"; transcript_biotype "protein_coding"; +chrVII SGD exon 786054 786920 . - 0 transcript_id "YGR147C_id002"; gene_name "NAT2"; gene_id "YGR147C"; +chrVII SGD gene 787156 788433 . - . gene_id "YGR148C"; gene_biotype "protein_coding"; +chrVII SGD transcript 787156 788433 . - . transcript_id "YGR148C_id003"; gene_id "YGR148C"; gene_name "RPL24B"; transcript_biotype "protein_coding"; +chrVII SGD exon 787156 788433 . - . transcript_id "YGR148C_id003"; gene_id "YGR148C"; gene_name "RPL24B"; +chrVII SGD transcript 787312 788178 . - . transcript_id "YGR148C_id001"; gene_id "YGR148C"; gene_name "RPL24B"; transcript_biotype "protein_coding"; +chrVII SGD exon 787312 787779 . - . transcript_id "YGR148C_id001"; gene_name "RPL24B"; gene_id "YGR148C"; +chrVII SGD exon 787787 788178 . - . transcript_id "YGR148C_id001"; gene_name "RPL24B"; gene_id "YGR148C"; +chrVII SGD exon 787312 787779 . - 0 transcript_id "YGR148C_id001"; gene_name "RPL24B"; gene_id "YGR148C"; +chrVII SGD gene 788961 791164 . + . gene_id "YGR149W"; gene_biotype "protein_coding"; +chrVII SGD transcript 788961 791164 . + . transcript_id "YGR149W_id001"; gene_id "YGR149W"; gene_name "GPC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 788961 791164 . + . transcript_id "YGR149W_id001"; gene_id "YGR149W"; gene_name "GPC1"; +chrVII SGD transcript 789031 790329 . + . transcript_id "YGR149W_id004"; gene_id "YGR149W"; gene_name "GPC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 789031 790329 . + 0 transcript_id "YGR149W_id004"; gene_name "GPC1"; gene_id "YGR149W"; +chrVII SGD gene 790459 793053 . - . gene_id "YGR150C"; gene_biotype "protein_coding"; +chrVII SGD transcript 790459 793053 . - . transcript_id "YGR150C_id001"; gene_id "YGR150C"; gene_name "CCM1"; transcript_biotype "protein_coding"; +chrVII SGD exon 790459 793053 . - 0 transcript_id "YGR150C_id001"; gene_name "CCM1"; gene_id "YGR150C"; +chrVII SGD gene 794417 794489 . + . gene_id "YNCG0036W"; gene_biotype "ncRNA"; +chrVII SGD transcript 794417 794489 . + . transcript_id "YNCG0036W_tRNA"; gene_id "YNCG0036W"; transcript_biotype "ncRNA"; +chrVII SGD exon 794417 794489 . + . transcript_id "YNCG0036W_tRNA"; gene_id "YNCG0036W"; +chrVII SGD gene 794577 795028 . - . gene_id "YGR151C"; gene_biotype "protein_coding"; +chrVII SGD transcript 794577 795028 . - . transcript_id "YGR151C_id002"; gene_id "YGR151C"; transcript_biotype "protein_coding"; +chrVII SGD exon 794577 795028 . - . transcript_id "YGR151C_id002"; gene_id "YGR151C"; +chrVII SGD transcript 794655 794990 . - . transcript_id "YGR151C_id001"; gene_id "YGR151C"; transcript_biotype "protein_coding"; +chrVII SGD exon 794655 794990 . - 0 transcript_id "YGR151C_id001"; gene_id "YGR151C"; +chrVII SGD gene 794674 795492 . - . gene_id "YGR152C"; gene_biotype "protein_coding"; +chrVII SGD transcript 794674 795492 . - . transcript_id "YGR152C_mRNA"; gene_id "YGR152C"; gene_name "RSR1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 794674 795492 . - 0 transcript_id "YGR152C_mRNA"; gene_name "RSR1"; gene_id "YGR152C"; +chrVII SGD gene 795949 796842 . + . gene_id "YGR153W"; gene_biotype "protein_coding"; +chrVII SGD transcript 795949 796842 . + . transcript_id "YGR153W_id002"; gene_id "YGR153W"; transcript_biotype "protein_coding"; +chrVII SGD exon 795949 796842 . + . transcript_id "YGR153W_id002"; gene_id "YGR153W"; +chrVII SGD transcript 796092 796745 . + . transcript_id "YGR153W_id001"; gene_id "YGR153W"; transcript_biotype "protein_coding"; +chrVII SGD exon 796092 796745 . + 0 transcript_id "YGR153W_id001"; gene_id "YGR153W"; +chrVII SGD gene 796555 798347 . - . gene_id "YGR154C"; gene_biotype "protein_coding"; +chrVII SGD transcript 796555 798347 . - . transcript_id "YGR154C_id001"; gene_id "YGR154C"; gene_name "GTO1"; transcript_biotype "protein_coding"; +chrVII SGD exon 796555 798347 . - . transcript_id "YGR154C_id001"; gene_id "YGR154C"; gene_name "GTO1"; +chrVII SGD transcript 796798 797868 . - . transcript_id "YGR154C_id002"; gene_id "YGR154C"; gene_name "GTO1"; transcript_biotype "protein_coding"; +chrVII SGD exon 796798 797868 . - 0 transcript_id "YGR154C_id002"; gene_name "GTO1"; gene_id "YGR154C"; +chrVII SGD gene 798466 800198 . + . gene_id "YGR155W"; gene_biotype "protein_coding"; +chrVII SGD transcript 798466 800198 . + . transcript_id "YGR155W_id007"; gene_id "YGR155W"; gene_name "CYS4"; transcript_biotype "protein_coding"; +chrVII SGD exon 798466 800198 . + . transcript_id "YGR155W_id007"; gene_id "YGR155W"; gene_name "CYS4"; +chrVII SGD transcript 798543 800066 . + . transcript_id "YGR155W_id001"; gene_id "YGR155W"; gene_name "CYS4"; transcript_biotype "protein_coding"; +chrVII SGD exon 798543 800066 . + 0 transcript_id "YGR155W_id001"; gene_name "CYS4"; gene_id "YGR155W"; +chrVII SGD gene 800395 801986 . + . gene_id "YGR156W"; gene_biotype "protein_coding"; +chrVII SGD transcript 800395 801986 . + . transcript_id "YGR156W_id002"; gene_id "YGR156W"; gene_name "PTI1"; transcript_biotype "protein_coding"; +chrVII SGD exon 800395 801986 . + . transcript_id "YGR156W_id002"; gene_id "YGR156W"; gene_name "PTI1"; +chrVII SGD transcript 800546 801823 . + . transcript_id "YGR156W_id001"; gene_id "YGR156W"; gene_name "PTI1"; transcript_biotype "protein_coding"; +chrVII SGD exon 800546 801823 . + 0 transcript_id "YGR156W_id001"; gene_name "PTI1"; gene_id "YGR156W"; +chrVII SGD gene 802192 805237 . + . gene_id "YGR157W"; gene_biotype "protein_coding"; +chrVII SGD transcript 802192 805237 . + . transcript_id "YGR157W_id001"; gene_id "YGR157W"; gene_name "CHO2"; transcript_biotype "protein_coding"; +chrVII SGD exon 802192 805237 . + . transcript_id "YGR157W_id001"; gene_id "YGR157W"; gene_name "CHO2"; +chrVII SGD transcript 802440 805049 . + . transcript_id "YGR157W_id002"; gene_id "YGR157W"; gene_name "CHO2"; transcript_biotype "protein_coding"; +chrVII SGD exon 802440 805049 . + 0 transcript_id "YGR157W_id002"; gene_name "CHO2"; gene_id "YGR157W"; +chrVII SGD gene 805017 806100 . - . gene_id "YGR158C"; gene_biotype "protein_coding"; +chrVII SGD transcript 805017 806100 . - . transcript_id "YGR158C_id005"; gene_id "YGR158C"; gene_name "MTR3"; transcript_biotype "protein_coding"; +chrVII SGD exon 805017 806100 . - . transcript_id "YGR158C_id005"; gene_id "YGR158C"; gene_name "MTR3"; +chrVII SGD transcript 805269 806021 . - . transcript_id "YGR158C_id001"; gene_id "YGR158C"; gene_name "MTR3"; transcript_biotype "protein_coding"; +chrVII SGD exon 805269 806021 . - 0 transcript_id "YGR158C_id001"; gene_name "MTR3"; gene_id "YGR158C"; +chrVII SGD gene 806268 807802 . - . gene_id "YGR159C"; gene_biotype "protein_coding"; +chrVII SGD transcript 806268 807802 . - . transcript_id "YGR159C_id006"; gene_id "YGR159C"; gene_name "NSR1"; transcript_biotype "protein_coding"; +chrVII SGD exon 806268 807802 . - . transcript_id "YGR159C_id006"; gene_id "YGR159C"; gene_name "NSR1"; +chrVII SGD transcript 806412 807656 . - . transcript_id "YGR159C_id001"; gene_id "YGR159C"; gene_name "NSR1"; transcript_biotype "protein_coding"; +chrVII SGD exon 806412 807656 . - 0 transcript_id "YGR159C_id001"; gene_name "NSR1"; gene_id "YGR159C"; +chrVII SGD gene 807073 807684 . + . gene_id "YGR160W"; gene_biotype "protein_coding"; +chrVII SGD transcript 807073 807684 . + . transcript_id "YGR160W_mRNA"; gene_id "YGR160W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 807073 807684 . + 0 transcript_id "YGR160W_mRNA"; gene_id "YGR160W"; +chrVII SGD gene 808418 809518 . - . gene_id "YGR161C"; gene_biotype "protein_coding"; +chrVII SGD transcript 808418 809518 . - . transcript_id "YGR161C_id001"; gene_id "YGR161C"; gene_name "RTS3"; transcript_biotype "protein_coding"; +chrVII SGD exon 808418 809518 . - . transcript_id "YGR161C_id001"; gene_id "YGR161C"; gene_name "RTS3"; +chrVII SGD transcript 808629 809420 . - . transcript_id "YGR161C_id002"; gene_id "YGR161C"; gene_name "RTS3"; transcript_biotype "protein_coding"; +chrVII SGD exon 808629 809420 . - 0 transcript_id "YGR161C_id002"; gene_name "RTS3"; gene_id "YGR161C"; +chrVII SGD gene 809990 810789 . + . gene_id "YGR161W-C"; gene_biotype "protein_coding"; +chrVII SGD transcript 809990 810789 . + . transcript_id "YGR161W-C_id005"; gene_id "YGR161W-C"; transcript_biotype "protein_coding"; +chrVII SGD exon 809990 810789 . + . transcript_id "YGR161W-C_id005"; gene_id "YGR161W-C"; +chrVII SGD transcript 810227 810505 . + . transcript_id "YGR161W-C_id001"; gene_id "YGR161W-C"; transcript_biotype "protein_coding"; +chrVII SGD exon 810227 810505 . + 0 transcript_id "YGR161W-C_id001"; gene_id "YGR161W-C"; +chrVII SGD gene 811738 813054 . + . gene_id "YGR161W-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 811738 813054 . + . transcript_id "YGR161W-A_dummy"; gene_id "YGR161W-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 811738 813054 . + 0 transcript_id "YGR161W-A_dummy"; gene_id "YGR161W-A"; +chrVII SGD gene 811738 817051 . + . gene_id "YGR161W-B"; gene_biotype "protein_coding"; +chrVII SGD transcript 811738 817051 . + . transcript_id "YGR161W-B_dummy"; gene_id "YGR161W-B"; transcript_biotype "protein_coding"; +chrVII SGD exon 811738 813030 . + 0 transcript_id "YGR161W-B_dummy"; gene_id "YGR161W-B"; +chrVII SGD exon 813032 817051 . + 0 transcript_id "YGR161W-B_dummy"; gene_id "YGR161W-B"; +chrVII SGD gene 817747 823015 . - . gene_id "YGR161C-D"; gene_biotype "protein_coding"; +chrVII SGD transcript 817747 823015 . - . transcript_id "YGR161C-D_dummy"; gene_id "YGR161C-D"; transcript_biotype "protein_coding"; +chrVII SGD exon 817747 821709 . - 0 transcript_id "YGR161C-D_dummy"; gene_id "YGR161C-D"; +chrVII SGD exon 821711 823015 . - 0 transcript_id "YGR161C-D_dummy"; gene_id "YGR161C-D"; +chrVII SGD gene 821693 823015 . - . gene_id "YGR161C-C"; gene_biotype "protein_coding"; +chrVII SGD transcript 821693 823015 . - . transcript_id "YGR161C-C_dummy"; gene_id "YGR161C-C"; transcript_biotype "protein_coding"; +chrVII SGD exon 821693 823015 . - 0 transcript_id "YGR161C-C_dummy"; gene_id "YGR161C-C"; +chrVII SGD gene 823482 823555 . + . gene_id "YNCG0037W"; gene_biotype "ncRNA"; +chrVII SGD transcript 823482 823555 . + . transcript_id "YNCG0037W_tRNA"; gene_id "YNCG0037W"; transcript_biotype "ncRNA"; +chrVII SGD exon 823482 823555 . + . transcript_id "YNCG0037W_tRNA"; gene_id "YNCG0037W"; +chrVII SGD gene 824059 826917 . + . gene_id "YGR162W"; gene_biotype "protein_coding"; +chrVII SGD transcript 824059 826917 . + . transcript_id "YGR162W_mRNA"; gene_id "YGR162W"; gene_name "TIF4631"; transcript_biotype "protein_coding"; +chrVII SGD CDS 824059 826917 . + 0 transcript_id "YGR162W_mRNA"; gene_name "TIF4631"; gene_id "YGR162W"; +chrVII SGD gene 827401 828638 . + . gene_id "YGR163W"; gene_biotype "protein_coding"; +chrVII SGD transcript 827401 828638 . + . transcript_id "YGR163W_id001"; gene_id "YGR163W"; gene_name "GTR2"; transcript_biotype "protein_coding"; +chrVII SGD exon 827401 828638 . + . transcript_id "YGR163W_id001"; gene_id "YGR163W"; gene_name "GTR2"; +chrVII SGD transcript 827552 828577 . + . transcript_id "YGR163W_id003"; gene_id "YGR163W"; gene_name "GTR2"; transcript_biotype "protein_coding"; +chrVII SGD exon 827552 828577 . + 0 transcript_id "YGR163W_id003"; gene_name "GTR2"; gene_id "YGR163W"; +chrVII SGD gene 828625 828960 . + . gene_id "YGR164W"; gene_biotype "protein_coding"; +chrVII SGD transcript 828625 828960 . + . transcript_id "YGR164W_mRNA"; gene_id "YGR164W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 828625 828960 . + 0 transcript_id "YGR164W_mRNA"; gene_id "YGR164W"; +chrVII SGD gene 828723 828794 . - . gene_id "YNCG0038C"; gene_biotype "ncRNA"; +chrVII SGD transcript 828723 828794 . - . transcript_id "YNCG0038C_tRNA"; gene_id "YNCG0038C"; transcript_biotype "ncRNA"; +chrVII SGD exon 828723 828794 . - . transcript_id "YNCG0038C_tRNA"; gene_id "YNCG0038C"; +chrVII SGD gene 828989 830294 . + . gene_id "YGR165W"; gene_biotype "protein_coding"; +chrVII SGD transcript 828989 830294 . + . transcript_id "YGR165W_id001"; gene_id "YGR165W"; gene_name "MRPS35"; transcript_biotype "protein_coding"; +chrVII SGD exon 828989 830294 . + . transcript_id "YGR165W_id001"; gene_id "YGR165W"; gene_name "MRPS35"; +chrVII SGD transcript 829116 830153 . + . transcript_id "YGR165W_id002"; gene_id "YGR165W"; gene_name "MRPS35"; transcript_biotype "protein_coding"; +chrVII SGD exon 829116 830153 . + 0 transcript_id "YGR165W_id002"; gene_name "MRPS35"; gene_id "YGR165W"; +chrVII SGD gene 830408 832253 . + . gene_id "YGR166W"; gene_biotype "protein_coding"; +chrVII SGD transcript 830408 832253 . + . transcript_id "YGR166W_id002"; gene_id "YGR166W"; gene_name "TRS65"; transcript_biotype "protein_coding"; +chrVII SGD exon 830408 832253 . + . transcript_id "YGR166W_id002"; gene_id "YGR166W"; gene_name "TRS65"; +chrVII SGD transcript 830515 832197 . + . transcript_id "YGR166W_id001"; gene_id "YGR166W"; gene_name "TRS65"; transcript_biotype "protein_coding"; +chrVII SGD exon 830515 832197 . + 0 transcript_id "YGR166W_id001"; gene_name "TRS65"; gene_id "YGR166W"; +chrVII SGD gene 832406 833703 . + . gene_id "YGR167W"; gene_biotype "protein_coding"; +chrVII SGD transcript 832406 833703 . + . transcript_id "YGR167W_id001"; gene_id "YGR167W"; gene_name "CLC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 832406 833703 . + . transcript_id "YGR167W_id001"; gene_id "YGR167W"; gene_name "CLC1"; +chrVII SGD transcript 832456 833157 . + . transcript_id "YGR167W_id003"; gene_id "YGR167W"; gene_name "CLC1"; transcript_biotype "protein_coding"; +chrVII SGD exon 832456 833157 . + 0 transcript_id "YGR167W_id003"; gene_name "CLC1"; gene_id "YGR167W"; +chrVII SGD gene 833270 834602 . - . gene_id "YGR168C"; gene_biotype "protein_coding"; +chrVII SGD transcript 833270 834602 . - . transcript_id "YGR168C_id001"; gene_id "YGR168C"; gene_name "PEX35"; transcript_biotype "protein_coding"; +chrVII SGD exon 833270 834602 . - . transcript_id "YGR168C_id001"; gene_id "YGR168C"; gene_name "PEX35"; +chrVII SGD transcript 833352 834482 . - . transcript_id "YGR168C_id003"; gene_id "YGR168C"; gene_name "PEX35"; transcript_biotype "protein_coding"; +chrVII SGD exon 833352 834482 . - 0 transcript_id "YGR168C_id003"; gene_name "PEX35"; gene_id "YGR168C"; +chrVII SGD gene 834569 835970 . - . gene_id "YGR169C"; gene_biotype "protein_coding"; +chrVII SGD transcript 834569 835970 . - . transcript_id "YGR169C_id001"; gene_id "YGR169C"; gene_name "PUS6"; transcript_biotype "protein_coding"; +chrVII SGD exon 834569 835970 . - . transcript_id "YGR169C_id001"; gene_id "YGR169C"; gene_name "PUS6"; +chrVII SGD transcript 834689 835903 . - . transcript_id "YGR169C_id002"; gene_id "YGR169C"; gene_name "PUS6"; transcript_biotype "protein_coding"; +chrVII SGD exon 834689 835903 . - 0 transcript_id "YGR169C_id002"; gene_name "PUS6"; gene_id "YGR169C"; +chrVII SGD gene 835989 836786 . - . gene_id "YGR169C-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 835989 836786 . - . transcript_id "YGR169C-A_id001"; gene_id "YGR169C-A"; gene_name "LSO2"; transcript_biotype "protein_coding"; +chrVII SGD exon 835989 836786 . - . transcript_id "YGR169C-A_id001"; gene_id "YGR169C-A"; gene_name "LSO2"; +chrVII SGD transcript 836387 836665 . - . transcript_id "YGR169C-A_id006"; gene_id "YGR169C-A"; gene_name "LSO2"; transcript_biotype "protein_coding"; +chrVII SGD exon 836387 836665 . - 0 transcript_id "YGR169C-A_id006"; gene_name "LSO2"; gene_id "YGR169C-A"; +chrVII SGD gene 837142 840558 . + . gene_id "YGR170W"; gene_biotype "protein_coding"; +chrVII SGD transcript 837142 840558 . + . transcript_id "YGR170W_id001"; gene_id "YGR170W"; gene_name "PSD2"; transcript_biotype "protein_coding"; +chrVII SGD exon 837142 840558 . + 0 transcript_id "YGR170W_id001"; gene_name "PSD2"; gene_id "YGR170W"; +chrVII SGD gene 840710 842588 . - . gene_id "YGR171C"; gene_biotype "protein_coding"; +chrVII SGD transcript 840710 842588 . - . transcript_id "YGR171C_id002"; gene_id "YGR171C"; gene_name "MSM1"; transcript_biotype "protein_coding"; +chrVII SGD exon 840710 842588 . - . transcript_id "YGR171C_id002"; gene_id "YGR171C"; gene_name "MSM1"; +chrVII SGD transcript 840824 842551 . - . transcript_id "YGR171C_id001"; gene_id "YGR171C"; gene_name "MSM1"; transcript_biotype "protein_coding"; +chrVII SGD exon 840824 842551 . - 0 transcript_id "YGR171C_id001"; gene_name "MSM1"; gene_id "YGR171C"; +chrVII SGD gene 842604 843628 . - . gene_id "YGR172C"; gene_biotype "protein_coding"; +chrVII SGD transcript 842604 843628 . - . transcript_id "YGR172C_id002"; gene_id "YGR172C"; gene_name "YIP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 842604 843628 . - . transcript_id "YGR172C_id002"; gene_id "YGR172C"; gene_name "YIP1"; +chrVII SGD transcript 842845 843591 . - . transcript_id "YGR172C_id001"; gene_id "YGR172C"; gene_name "YIP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 842845 843591 . - 0 transcript_id "YGR172C_id001"; gene_name "YIP1"; gene_id "YGR172C"; +chrVII SGD gene 843803 845250 . + . gene_id "YGR173W"; gene_biotype "protein_coding"; +chrVII SGD transcript 843803 845250 . + . transcript_id "YGR173W_id008"; gene_id "YGR173W"; gene_name "RBG2"; transcript_biotype "protein_coding"; +chrVII SGD exon 843803 845250 . + . transcript_id "YGR173W_id008"; gene_id "YGR173W"; gene_name "RBG2"; +chrVII SGD transcript 843854 844960 . + . transcript_id "YGR173W_id001"; gene_id "YGR173W"; gene_name "RBG2"; transcript_biotype "protein_coding"; +chrVII SGD exon 843854 844960 . + 0 transcript_id "YGR173W_id001"; gene_name "RBG2"; gene_id "YGR173W"; +chrVII SGD gene 845649 845719 . + . gene_id "YNCG0039W"; gene_biotype "ncRNA"; +chrVII SGD transcript 845649 845719 . + . transcript_id "YNCG0039W_tRNA"; gene_id "YNCG0039W"; transcript_biotype "ncRNA"; +chrVII SGD exon 845649 845719 . + . transcript_id "YNCG0039W_tRNA"; gene_id "YNCG0039W"; +chrVII SGD gene 845835 846837 . + . gene_id "YGR174W-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 845835 846837 . + . transcript_id "YGR174W-A_id002"; gene_id "YGR174W-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 845835 846837 . + . transcript_id "YGR174W-A_id002"; gene_id "YGR174W-A"; +chrVII SGD gene 845893 846405 . - . gene_id "YGR174C"; gene_biotype "protein_coding"; +chrVII SGD transcript 845893 846405 . - . transcript_id "YGR174C_id001"; gene_id "YGR174C"; gene_name "CBP4"; transcript_biotype "protein_coding"; +chrVII SGD exon 845893 846405 . - 0 transcript_id "YGR174C_id001"; gene_name "CBP4"; gene_id "YGR174C"; +chrVII SGD transcript 846655 846741 . + . transcript_id "YGR174W-A_id001"; gene_id "YGR174W-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 846655 846741 . + 0 transcript_id "YGR174W-A_id001"; gene_id "YGR174W-A"; +chrVII SGD gene 846723 848521 . - . gene_id "YGR175C"; gene_biotype "protein_coding"; +chrVII SGD transcript 846723 848521 . - . transcript_id "YGR175C_id001"; gene_id "YGR175C"; gene_name "ERG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 846723 848521 . - . transcript_id "YGR175C_id001"; gene_id "YGR175C"; gene_name "ERG1"; +chrVII SGD transcript 846933 848423 . - . transcript_id "YGR175C_id003"; gene_id "YGR175C"; gene_name "ERG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 846933 848423 . - 0 transcript_id "YGR175C_id003"; gene_name "ERG1"; gene_id "YGR175C"; +chrVII SGD gene 848627 850833 . - . gene_id "YGR177C"; gene_biotype "protein_coding"; +chrVII SGD transcript 848627 850833 . - . transcript_id "YGR177C_id001"; gene_id "YGR177C"; gene_name "ATF2"; transcript_biotype "protein_coding"; +chrVII SGD exon 848627 850833 . - . transcript_id "YGR177C_id001"; gene_id "YGR177C"; gene_name "ATF2"; +chrVII SGD gene 848720 849067 . + . gene_id "YGR176W"; gene_biotype "protein_coding"; +chrVII SGD transcript 848720 849067 . + . transcript_id "YGR176W_mRNA"; gene_id "YGR176W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 848720 849067 . + 0 transcript_id "YGR176W_mRNA"; gene_id "YGR176W"; +chrVII SGD transcript 848829 850436 . - . transcript_id "YGR177C_id006"; gene_id "YGR177C"; gene_name "ATF2"; transcript_biotype "protein_coding"; +chrVII SGD exon 848829 850436 . - 0 transcript_id "YGR177C_id006"; gene_name "ATF2"; gene_id "YGR177C"; +chrVII SGD gene 850911 853448 . - . gene_id "YGR178C"; gene_biotype "protein_coding"; +chrVII SGD transcript 850911 853448 . - . transcript_id "YGR178C_id002"; gene_id "YGR178C"; gene_name "PBP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 850911 853448 . - . transcript_id "YGR178C_id002"; gene_id "YGR178C"; gene_name "PBP1"; +chrVII SGD transcript 851047 853215 . - . transcript_id "YGR178C_id001"; gene_id "YGR178C"; gene_name "PBP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 851047 853215 . - 0 transcript_id "YGR178C_id001"; gene_name "PBP1"; gene_id "YGR178C"; +chrVII SGD gene 853523 854954 . - . gene_id "YGR179C"; gene_biotype "protein_coding"; +chrVII SGD transcript 853523 854954 . - . transcript_id "YGR179C_id001"; gene_id "YGR179C"; gene_name "OKP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 853523 854954 . - . transcript_id "YGR179C_id001"; gene_id "YGR179C"; gene_name "OKP1"; +chrVII SGD transcript 853675 854895 . - . transcript_id "YGR179C_id003"; gene_id "YGR179C"; gene_name "OKP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 853675 854895 . - 0 transcript_id "YGR179C_id003"; gene_name "OKP1"; gene_id "YGR179C"; +chrVII SGD gene 855129 856507 . - . gene_id "YGR180C"; gene_biotype "protein_coding"; +chrVII SGD transcript 855129 856507 . - . transcript_id "YGR180C_id004"; gene_id "YGR180C"; gene_name "RNR4"; transcript_biotype "protein_coding"; +chrVII SGD exon 855129 856507 . - . transcript_id "YGR180C_id004"; gene_id "YGR180C"; gene_name "RNR4"; +chrVII SGD transcript 855264 856301 . - . transcript_id "YGR180C_id001"; gene_id "YGR180C"; gene_name "RNR4"; transcript_biotype "protein_coding"; +chrVII SGD exon 855264 856301 . - 0 transcript_id "YGR180C_id001"; gene_name "RNR4"; gene_id "YGR180C"; +chrVII SGD gene 857378 857491 . - . gene_id "YNCG0040C"; gene_biotype "ncRNA"; +chrVII SGD transcript 857378 857491 . - . transcript_id "YNCG0040C_tRNA"; gene_id "YNCG0040C"; transcript_biotype "ncRNA"; +chrVII SGD exon 857378 857421 . - . transcript_id "YNCG0040C_tRNA"; gene_id "YNCG0040C"; +chrVII SGD exon 857454 857491 . - . transcript_id "YNCG0040C_tRNA"; gene_id "YNCG0040C"; +chrVII SGD gene 858196 858827 . + . gene_id "YGR181W"; gene_biotype "protein_coding"; +chrVII SGD transcript 858196 858827 . + . transcript_id "YGR181W_id002"; gene_id "YGR181W"; gene_name "TIM13"; transcript_biotype "protein_coding"; +chrVII SGD exon 858196 858827 . + . transcript_id "YGR181W_id002"; gene_id "YGR181W"; gene_name "TIM13"; +chrVII SGD transcript 858287 858604 . + . transcript_id "YGR181W_id001"; gene_id "YGR181W"; gene_name "TIM13"; transcript_biotype "protein_coding"; +chrVII SGD exon 858287 858604 . + 0 transcript_id "YGR181W_id001"; gene_name "TIM13"; gene_id "YGR181W"; +chrVII SGD gene 858551 858904 . - . gene_id "YGR182C"; gene_biotype "protein_coding"; +chrVII SGD transcript 858551 858904 . - . transcript_id "YGR182C_mRNA"; gene_id "YGR182C"; transcript_biotype "protein_coding"; +chrVII SGD CDS 858551 858904 . - 0 transcript_id "YGR182C_mRNA"; gene_id "YGR182C"; +chrVII SGD gene 858606 859553 . - . gene_id "YGR183C"; gene_biotype "protein_coding"; +chrVII SGD transcript 858606 859553 . - . transcript_id "YGR183C_id005"; gene_id "YGR183C"; gene_name "QCR9"; transcript_biotype "protein_coding"; +chrVII SGD exon 858606 859553 . - . transcript_id "YGR183C_id005"; gene_id "YGR183C"; gene_name "QCR9"; +chrVII SGD transcript 859063 859476 . - . transcript_id "YGR183C_id001"; gene_id "YGR183C"; gene_name "QCR9"; transcript_biotype "protein_coding"; +chrVII SGD exon 859063 859260 . - 0 transcript_id "YGR183C_id001"; gene_name "QCR9"; gene_id "YGR183C"; +chrVII SGD exon 859474 859476 . - 0 transcript_id "YGR183C_id001"; gene_name "QCR9"; gene_id "YGR183C"; +chrVII SGD gene 859901 865753 . - . gene_id "YGR184C"; gene_biotype "protein_coding"; +chrVII SGD transcript 859901 865753 . - . transcript_id "YGR184C_mRNA"; gene_id "YGR184C"; gene_name "UBR1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 859901 865753 . - 0 transcript_id "YGR184C_mRNA"; gene_name "UBR1"; gene_id "YGR184C"; +chrVII SGD gene 866200 867552 . - . gene_id "YGR185C"; gene_biotype "protein_coding"; +chrVII SGD transcript 866200 867552 . - . transcript_id "YGR185C_id002"; gene_id "YGR185C"; gene_name "TYS1"; transcript_biotype "protein_coding"; +chrVII SGD exon 866200 867552 . - . transcript_id "YGR185C_id002"; gene_id "YGR185C"; gene_name "TYS1"; +chrVII SGD transcript 866336 867520 . - . transcript_id "YGR185C_id001"; gene_id "YGR185C"; gene_name "TYS1"; transcript_biotype "protein_coding"; +chrVII SGD exon 866336 867520 . - 0 transcript_id "YGR185C_id001"; gene_name "TYS1"; gene_id "YGR185C"; +chrVII SGD gene 867764 870196 . + . gene_id "YGR186W"; gene_biotype "protein_coding"; +chrVII SGD transcript 867764 870196 . + . transcript_id "YGR186W_id001"; gene_id "YGR186W"; gene_name "TFG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 867764 870196 . + . transcript_id "YGR186W_id001"; gene_id "YGR186W"; gene_name "TFG1"; +chrVII SGD transcript 867774 869981 . + . transcript_id "YGR186W_id004"; gene_id "YGR186W"; gene_name "TFG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 867774 869981 . + 0 transcript_id "YGR186W_id004"; gene_name "TFG1"; gene_id "YGR186W"; +chrVII SGD gene 870025 871501 . - . gene_id "YGR187C"; gene_biotype "protein_coding"; +chrVII SGD transcript 870025 871501 . - . transcript_id "YGR187C_id002"; gene_id "YGR187C"; gene_name "HGH1"; transcript_biotype "protein_coding"; +chrVII SGD exon 870025 871501 . - . transcript_id "YGR187C_id002"; gene_id "YGR187C"; gene_name "HGH1"; +chrVII SGD transcript 870232 871416 . - . transcript_id "YGR187C_id001"; gene_id "YGR187C"; gene_name "HGH1"; transcript_biotype "protein_coding"; +chrVII SGD exon 870232 871416 . - 0 transcript_id "YGR187C_id001"; gene_name "HGH1"; gene_id "YGR187C"; +chrVII SGD gene 872044 875109 . - . gene_id "YGR188C"; gene_biotype "protein_coding"; +chrVII SGD transcript 872044 875109 . - . transcript_id "YGR188C_id001"; gene_id "YGR188C"; gene_name "BUB1"; transcript_biotype "protein_coding"; +chrVII SGD exon 872044 875109 . - 0 transcript_id "YGR188C_id001"; gene_name "BUB1"; gene_id "YGR188C"; +chrVII SGD gene 876394 876466 . + . gene_id "YNCG0041W"; gene_biotype "ncRNA"; +chrVII SGD transcript 876394 876466 . + . transcript_id "YNCG0041W_tRNA"; gene_id "YNCG0041W"; transcript_biotype "ncRNA"; +chrVII SGD exon 876394 876466 . + . transcript_id "YNCG0041W_tRNA"; gene_id "YNCG0041W"; +chrVII SGD gene 876551 878324 . - . gene_id "YGR189C"; gene_biotype "protein_coding"; +chrVII SGD transcript 876551 878324 . - . transcript_id "YGR189C_id007"; gene_id "YGR189C"; gene_name "CRH1"; transcript_biotype "protein_coding"; +chrVII SGD exon 876551 878324 . - . transcript_id "YGR189C_id007"; gene_id "YGR189C"; gene_name "CRH1"; +chrVII SGD transcript 876669 878192 . - . transcript_id "YGR189C_id001"; gene_id "YGR189C"; gene_name "CRH1"; transcript_biotype "protein_coding"; +chrVII SGD exon 876669 878192 . - 0 transcript_id "YGR189C_id001"; gene_name "CRH1"; gene_id "YGR189C"; +chrVII SGD gene 878248 882705 . - . gene_id "YGR190C"; gene_biotype "protein_coding"; +chrVII SGD transcript 878248 882705 . - . transcript_id "YGR190C_id002"; gene_id "YGR190C"; transcript_biotype "protein_coding"; +chrVII SGD exon 878248 882705 . - . transcript_id "YGR190C_id002"; gene_id "YGR190C"; +chrVII SGD gene 878710 878815 . - . gene_id "YNCG0042C"; gene_biotype "ncRNA"; +chrVII SGD transcript 878710 878815 . - . transcript_id "YNCG0042C_tRNA"; gene_id "YNCG0042C"; transcript_biotype "ncRNA"; +chrVII SGD exon 878710 878745 . - . transcript_id "YNCG0042C_tRNA"; gene_id "YNCG0042C"; +chrVII SGD exon 878780 878815 . - . transcript_id "YNCG0042C_tRNA"; gene_id "YNCG0042C"; +chrVII SGD gene 880240 882791 . + . gene_id "YGR191W"; gene_biotype "protein_coding"; +chrVII SGD transcript 880240 882791 . + . transcript_id "YGR191W_id001"; gene_id "YGR191W"; gene_name "HIP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 880240 882791 . + . transcript_id "YGR191W_id001"; gene_id "YGR191W"; gene_name "HIP1"; +chrVII SGD transcript 880296 880661 . - . transcript_id "YGR190C_id001"; gene_id "YGR190C"; transcript_biotype "protein_coding"; +chrVII SGD exon 880296 880661 . - 0 transcript_id "YGR190C_id001"; gene_id "YGR190C"; +chrVII SGD transcript 880420 882231 . + . transcript_id "YGR191W_id002"; gene_id "YGR191W"; gene_name "HIP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 880420 882231 . + 0 transcript_id "YGR191W_id002"; gene_name "HIP1"; gene_id "YGR191W"; +chrVII SGD gene 882706 885044 . - . gene_id "YGR192C"; gene_biotype "protein_coding"; +chrVII SGD transcript 882706 885044 . - . transcript_id "YGR192C_id001"; gene_id "YGR192C"; gene_name "TDH3"; transcript_biotype "protein_coding"; +chrVII SGD exon 882706 885044 . - . transcript_id "YGR192C_id001"; gene_id "YGR192C"; gene_name "TDH3"; +chrVII SGD transcript 882812 883810 . - . transcript_id "YGR192C_id002"; gene_id "YGR192C"; gene_name "TDH3"; transcript_biotype "protein_coding"; +chrVII SGD exon 882812 883810 . - 0 transcript_id "YGR192C_id002"; gene_name "TDH3"; gene_id "YGR192C"; +chrVII SGD gene 883264 885830 . - . gene_id "YGR193C"; gene_biotype "protein_coding"; +chrVII SGD transcript 883264 885830 . - . transcript_id "YGR193C_id001"; gene_id "YGR193C"; gene_name "PDX1"; transcript_biotype "protein_coding"; +chrVII SGD exon 883264 885830 . - . transcript_id "YGR193C_id001"; gene_id "YGR193C"; gene_name "PDX1"; +chrVII SGD transcript 884509 885741 . - . transcript_id "YGR193C_id002"; gene_id "YGR193C"; gene_name "PDX1"; transcript_biotype "protein_coding"; +chrVII SGD exon 884509 885741 . - 0 transcript_id "YGR193C_id002"; gene_name "PDX1"; gene_id "YGR193C"; +chrVII SGD gene 886073 887875 . - . gene_id "YGR194C"; gene_biotype "protein_coding"; +chrVII SGD transcript 886073 887875 . - . transcript_id "YGR194C_mRNA"; gene_id "YGR194C"; gene_name "XKS1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 886073 887875 . - 0 transcript_id "YGR194C_mRNA"; gene_name "XKS1"; gene_id "YGR194C"; +chrVII SGD gene 888783 890033 . + . gene_id "YGR195W"; gene_biotype "protein_coding"; +chrVII SGD transcript 888783 890033 . + . transcript_id "YGR195W_id002"; gene_id "YGR195W"; gene_name "SKI6"; transcript_biotype "protein_coding"; +chrVII SGD exon 888783 890033 . + . transcript_id "YGR195W_id002"; gene_id "YGR195W"; gene_name "SKI6"; +chrVII SGD transcript 888882 889622 . + . transcript_id "YGR195W_id001"; gene_id "YGR195W"; gene_name "SKI6"; transcript_biotype "protein_coding"; +chrVII SGD exon 888882 889622 . + 0 transcript_id "YGR195W_id001"; gene_name "SKI6"; gene_id "YGR195W"; +chrVII SGD gene 889619 892260 . - . gene_id "YGR196C"; gene_biotype "protein_coding"; +chrVII SGD transcript 889619 892260 . - . transcript_id "YGR196C_id001"; gene_id "YGR196C"; gene_name "FYV8"; transcript_biotype "protein_coding"; +chrVII SGD exon 889619 892260 . - . transcript_id "YGR196C_id001"; gene_id "YGR196C"; gene_name "FYV8"; +chrVII SGD transcript 889733 892186 . - . transcript_id "YGR196C_id003"; gene_id "YGR196C"; gene_name "FYV8"; transcript_biotype "protein_coding"; +chrVII SGD exon 889733 892186 . - 0 transcript_id "YGR196C_id003"; gene_name "FYV8"; gene_id "YGR196C"; +chrVII SGD gene 892406 894346 . - . gene_id "YGR197C"; gene_biotype "protein_coding"; +chrVII SGD transcript 892406 894346 . - . transcript_id "YGR197C_id001"; gene_id "YGR197C"; gene_name "SNG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 892406 894346 . - . transcript_id "YGR197C_id001"; gene_id "YGR197C"; gene_name "SNG1"; +chrVII SGD transcript 892497 894140 . - . transcript_id "YGR197C_id003"; gene_id "YGR197C"; gene_name "SNG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 892497 894140 . - 0 transcript_id "YGR197C_id003"; gene_name "SNG1"; gene_id "YGR197C"; +chrVII SGD gene 894593 897284 . + . gene_id "YGR198W"; gene_biotype "protein_coding"; +chrVII SGD transcript 894593 897284 . + . transcript_id "YGR198W_id001"; gene_id "YGR198W"; gene_name "YPP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 894593 897284 . + . transcript_id "YGR198W_id001"; gene_id "YGR198W"; gene_name "YPP1"; +chrVII SGD transcript 894693 897146 . + . transcript_id "YGR198W_id002"; gene_id "YGR198W"; gene_name "YPP1"; transcript_biotype "protein_coding"; +chrVII SGD exon 894693 897146 . + 0 transcript_id "YGR198W_id002"; gene_name "YPP1"; gene_id "YGR198W"; +chrVII SGD gene 897477 900109 . + . gene_id "YGR199W"; gene_biotype "protein_coding"; +chrVII SGD transcript 897477 900109 . + . transcript_id "YGR199W_id002"; gene_id "YGR199W"; gene_name "PMT6"; transcript_biotype "protein_coding"; +chrVII SGD exon 897477 900109 . + . transcript_id "YGR199W_id002"; gene_id "YGR199W"; gene_name "PMT6"; +chrVII SGD transcript 897502 899781 . + . transcript_id "YGR199W_id001"; gene_id "YGR199W"; gene_name "PMT6"; transcript_biotype "protein_coding"; +chrVII SGD exon 897502 899781 . + 0 transcript_id "YGR199W_id001"; gene_name "PMT6"; gene_id "YGR199W"; +chrVII SGD gene 899527 902292 . - . gene_id "YGR200C"; gene_biotype "protein_coding"; +chrVII SGD transcript 899527 902292 . - . transcript_id "YGR200C_id001"; gene_id "YGR200C"; gene_name "ELP2"; transcript_biotype "protein_coding"; +chrVII SGD exon 899527 902292 . - . transcript_id "YGR200C_id001"; gene_id "YGR200C"; gene_name "ELP2"; +chrVII SGD transcript 899904 902270 . - . transcript_id "YGR200C_id002"; gene_id "YGR200C"; gene_name "ELP2"; transcript_biotype "protein_coding"; +chrVII SGD exon 899904 902270 . - 0 transcript_id "YGR200C_id002"; gene_name "ELP2"; gene_id "YGR200C"; +chrVII SGD gene 902470 903219 . - . gene_id "YGR201C"; gene_biotype "protein_coding"; +chrVII SGD transcript 902470 903219 . - . transcript_id "YGR201C_id003"; gene_id "YGR201C"; transcript_biotype "protein_coding"; +chrVII SGD exon 902470 903219 . - . transcript_id "YGR201C_id003"; gene_id "YGR201C"; +chrVII SGD transcript 902520 903197 . - . transcript_id "YGR201C_id001"; gene_id "YGR201C"; transcript_biotype "protein_coding"; +chrVII SGD exon 902520 903197 . - 0 transcript_id "YGR201C_id001"; gene_id "YGR201C"; +chrVII SGD gene 903347 904853 . - . gene_id "YGR202C"; gene_biotype "protein_coding"; +chrVII SGD transcript 903347 904853 . - . transcript_id "YGR202C_id001"; gene_id "YGR202C"; gene_name "PCT1"; transcript_biotype "protein_coding"; +chrVII SGD exon 903347 904853 . - . transcript_id "YGR202C_id001"; gene_id "YGR202C"; gene_name "PCT1"; +chrVII SGD transcript 903474 904748 . - . transcript_id "YGR202C_id004"; gene_id "YGR202C"; gene_name "PCT1"; transcript_biotype "protein_coding"; +chrVII SGD exon 903474 904748 . - 0 transcript_id "YGR202C_id004"; gene_name "PCT1"; gene_id "YGR202C"; +chrVII SGD gene 904747 905868 . + . gene_id "YGR203W"; gene_biotype "protein_coding"; +chrVII SGD transcript 904747 905868 . + . transcript_id "YGR203W_id001"; gene_id "YGR203W"; gene_name "YCH1"; transcript_biotype "protein_coding"; +chrVII SGD exon 904747 905868 . + . transcript_id "YGR203W_id001"; gene_id "YGR203W"; gene_name "YCH1"; +chrVII SGD transcript 905237 905683 . + . transcript_id "YGR203W_id002"; gene_id "YGR203W"; gene_name "YCH1"; transcript_biotype "protein_coding"; +chrVII SGD exon 905237 905683 . + 0 transcript_id "YGR203W_id002"; gene_name "YCH1"; gene_id "YGR203W"; +chrVII SGD gene 905857 908872 . + . gene_id "YGR204W"; gene_biotype "protein_coding"; +chrVII SGD transcript 905857 908872 . + . transcript_id "YGR204W_id004"; gene_id "YGR204W"; gene_name "ADE3"; transcript_biotype "protein_coding"; +chrVII SGD exon 905857 908872 . + . transcript_id "YGR204W_id004"; gene_id "YGR204W"; gene_name "ADE3"; +chrVII SGD transcript 905934 908774 . + . transcript_id "YGR204W_id001"; gene_id "YGR204W"; gene_name "ADE3"; transcript_biotype "protein_coding"; +chrVII SGD exon 905934 908774 . + 0 transcript_id "YGR204W_id001"; gene_name "ADE3"; gene_id "YGR204W"; +chrVII SGD gene 909061 909174 . - . gene_id "YGR204C-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 909061 909174 . - . transcript_id "YGR204C-A_id001"; gene_id "YGR204C-A"; transcript_biotype "protein_coding"; +chrVII SGD exon 909061 909174 . - 0 transcript_id "YGR204C-A_id001"; gene_id "YGR204C-A"; +chrVII SGD gene 909083 910320 . + . gene_id "YGR205W"; gene_biotype "protein_coding"; +chrVII SGD transcript 909083 910320 . + . transcript_id "YGR205W_id002"; gene_id "YGR205W"; gene_name "TDA10"; transcript_biotype "protein_coding"; +chrVII SGD exon 909083 910320 . + . transcript_id "YGR205W_id002"; gene_id "YGR205W"; gene_name "TDA10"; +chrVII SGD transcript 909213 910085 . + . transcript_id "YGR205W_id001"; gene_id "YGR205W"; gene_name "TDA10"; transcript_biotype "protein_coding"; +chrVII SGD exon 909213 910085 . + 0 transcript_id "YGR205W_id001"; gene_name "TDA10"; gene_id "YGR205W"; +chrVII SGD gene 910244 911673 . - . gene_id "YGR207C"; gene_biotype "protein_coding"; +chrVII SGD transcript 910244 911673 . - . transcript_id "YGR207C_id002"; gene_id "YGR207C"; gene_name "CIR1"; transcript_biotype "protein_coding"; +chrVII SGD exon 910244 911673 . - . transcript_id "YGR207C_id002"; gene_id "YGR207C"; gene_name "CIR1"; +chrVII SGD gene 910247 910826 . + . gene_id "YGR206W"; gene_biotype "protein_coding"; +chrVII SGD transcript 910247 910826 . + . transcript_id "YGR206W_id002"; gene_id "YGR206W"; gene_name "MVB12"; transcript_biotype "protein_coding"; +chrVII SGD exon 910247 910826 . + . transcript_id "YGR206W_id002"; gene_id "YGR206W"; gene_name "MVB12"; +chrVII SGD transcript 910432 910737 . + . transcript_id "YGR206W_id001"; gene_id "YGR206W"; gene_name "MVB12"; transcript_biotype "protein_coding"; +chrVII SGD exon 910432 910737 . + 0 transcript_id "YGR206W_id001"; gene_name "MVB12"; gene_id "YGR206W"; +chrVII SGD transcript 910843 911628 . - . transcript_id "YGR207C_id001"; gene_id "YGR207C"; gene_name "CIR1"; transcript_biotype "protein_coding"; +chrVII SGD exon 910843 911628 . - 0 transcript_id "YGR207C_id001"; gene_name "CIR1"; gene_id "YGR207C"; +chrVII SGD gene 911732 913318 . - . gene_id "YGR209C"; gene_biotype "protein_coding"; +chrVII SGD transcript 911732 913318 . - . transcript_id "YGR209C_id001"; gene_id "YGR209C"; gene_name "TRX2"; transcript_biotype "protein_coding"; +chrVII SGD exon 911732 913318 . - . transcript_id "YGR209C_id001"; gene_id "YGR209C"; gene_name "TRX2"; +chrVII SGD gene 911838 913060 . + . gene_id "YGR208W"; gene_biotype "protein_coding"; +chrVII SGD transcript 911838 913060 . + . transcript_id "YGR208W_id001"; gene_id "YGR208W"; gene_name "SER2"; transcript_biotype "protein_coding"; +chrVII SGD exon 911838 913060 . + . transcript_id "YGR208W_id001"; gene_id "YGR208W"; gene_name "SER2"; +chrVII SGD transcript 911883 912812 . + . transcript_id "YGR208W_id003"; gene_id "YGR208W"; gene_name "SER2"; transcript_biotype "protein_coding"; +chrVII SGD exon 911883 912812 . + 0 transcript_id "YGR208W_id003"; gene_name "SER2"; gene_id "YGR208W"; +chrVII SGD transcript 912913 913227 . - . transcript_id "YGR209C_id002"; gene_id "YGR209C"; gene_name "TRX2"; transcript_biotype "protein_coding"; +chrVII SGD exon 912913 913227 . - 0 transcript_id "YGR209C_id002"; gene_name "TRX2"; gene_id "YGR209C"; +chrVII SGD gene 913294 914863 . - . gene_id "YGR210C"; gene_biotype "protein_coding"; +chrVII SGD transcript 913294 914863 . - . transcript_id "YGR210C_id001"; gene_id "YGR210C"; transcript_biotype "protein_coding"; +chrVII SGD exon 913294 914863 . - . transcript_id "YGR210C_id001"; gene_id "YGR210C"; +chrVII SGD transcript 913503 914738 . - . transcript_id "YGR210C_id002"; gene_id "YGR210C"; transcript_biotype "protein_coding"; +chrVII SGD exon 913503 914738 . - 0 transcript_id "YGR210C_id002"; gene_id "YGR210C"; +chrVII SGD gene 915117 916900 . + . gene_id "YGR211W"; gene_biotype "protein_coding"; +chrVII SGD transcript 915117 916900 . + . transcript_id "YGR211W_id001"; gene_id "YGR211W"; gene_name "ZPR1"; transcript_biotype "protein_coding"; +chrVII SGD exon 915117 916900 . + . transcript_id "YGR211W_id001"; gene_id "YGR211W"; gene_name "ZPR1"; +chrVII SGD transcript 915241 916701 . + . transcript_id "YGR211W_id002"; gene_id "YGR211W"; gene_name "ZPR1"; transcript_biotype "protein_coding"; +chrVII SGD exon 915241 916701 . + 0 transcript_id "YGR211W_id002"; gene_name "ZPR1"; gene_id "YGR211W"; +chrVII SGD gene 917040 918446 . + . gene_id "YGR212W"; gene_biotype "protein_coding"; +chrVII SGD transcript 917040 918446 . + . transcript_id "YGR212W_id001"; gene_id "YGR212W"; gene_name "SLI1"; transcript_biotype "protein_coding"; +chrVII SGD exon 917040 918446 . + 0 transcript_id "YGR212W_id001"; gene_name "SLI1"; gene_id "YGR212W"; +chrVII SGD gene 918512 919465 . - . gene_id "YGR213C"; gene_biotype "protein_coding"; +chrVII SGD transcript 918512 919465 . - . transcript_id "YGR213C_id001"; gene_id "YGR213C"; gene_name "RTA1"; transcript_biotype "protein_coding"; +chrVII SGD exon 918512 919465 . - 0 transcript_id "YGR213C_id001"; gene_name "RTA1"; gene_id "YGR213C"; +chrVII SGD gene 920465 921958 . + . gene_id "YGR214W"; gene_biotype "protein_coding"; +chrVII SGD transcript 920465 921958 . + . transcript_id "YGR214W_id003"; gene_id "YGR214W"; gene_name "RPS0A"; transcript_biotype "protein_coding"; +chrVII SGD exon 920465 921958 . + . transcript_id "YGR214W_id003"; gene_id "YGR214W"; gene_name "RPS0A"; +chrVII SGD transcript 920575 921788 . + . transcript_id "YGR214W_id001"; gene_id "YGR214W"; gene_name "RPS0A"; transcript_biotype "protein_coding"; +chrVII SGD exon 920575 920664 . + 0 transcript_id "YGR214W_id001"; gene_name "RPS0A"; gene_id "YGR214W"; +chrVII SGD exon 921120 921788 . + 0 transcript_id "YGR214W_id001"; gene_name "RPS0A"; gene_id "YGR214W"; +chrVII SGD gene 922110 922719 . + . gene_id "YGR215W"; gene_biotype "protein_coding"; +chrVII SGD transcript 922110 922719 . + . transcript_id "YGR215W_id004"; gene_id "YGR215W"; gene_name "RSM27"; transcript_biotype "protein_coding"; +chrVII SGD exon 922110 922719 . + . transcript_id "YGR215W_id004"; gene_id "YGR215W"; gene_name "RSM27"; +chrVII SGD transcript 922175 922507 . + . transcript_id "YGR215W_id001"; gene_id "YGR215W"; gene_name "RSM27"; transcript_biotype "protein_coding"; +chrVII SGD exon 922175 922507 . + 0 transcript_id "YGR215W_id001"; gene_name "RSM27"; gene_id "YGR215W"; +chrVII SGD gene 922379 924485 . - . gene_id "YGR216C"; gene_biotype "protein_coding"; +chrVII SGD transcript 922379 924485 . - . transcript_id "YGR216C_id001"; gene_id "YGR216C"; gene_name "GPI1"; transcript_biotype "protein_coding"; +chrVII SGD exon 922379 924485 . - . transcript_id "YGR216C_id001"; gene_id "YGR216C"; gene_name "GPI1"; +chrVII SGD transcript 922633 924462 . - . transcript_id "YGR216C_id004"; gene_id "YGR216C"; gene_name "GPI1"; transcript_biotype "protein_coding"; +chrVII SGD exon 922633 924462 . - 0 transcript_id "YGR216C_id004"; gene_name "GPI1"; gene_id "YGR216C"; +chrVII SGD gene 924696 930815 . + . gene_id "YGR217W"; gene_biotype "protein_coding"; +chrVII SGD transcript 924696 930815 . + . transcript_id "YGR217W_mRNA"; gene_id "YGR217W"; gene_name "CCH1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 924696 930815 . + 0 transcript_id "YGR217W_mRNA"; gene_name "CCH1"; gene_id "YGR217W"; +chrVII SGD gene 930953 931023 . - . gene_id "YNCG0043C"; gene_biotype "ncRNA"; +chrVII SGD transcript 930953 931023 . - . transcript_id "YNCG0043C_tRNA"; gene_id "YNCG0043C"; transcript_biotype "ncRNA"; +chrVII SGD exon 930953 931023 . - . transcript_id "YNCG0043C_tRNA"; gene_id "YNCG0043C"; +chrVII SGD gene 932242 935998 . + . gene_id "YGR218W"; gene_biotype "protein_coding"; +chrVII SGD transcript 932242 935998 . + . transcript_id "YGR218W_id001"; gene_id "YGR218W"; gene_name "CRM1"; transcript_biotype "protein_coding"; +chrVII SGD exon 932242 935998 . + . transcript_id "YGR218W_id001"; gene_id "YGR218W"; gene_name "CRM1"; +chrVII SGD transcript 932541 935795 . + . transcript_id "YGR218W_id002"; gene_id "YGR218W"; gene_name "CRM1"; transcript_biotype "protein_coding"; +chrVII SGD exon 932541 935795 . + 0 transcript_id "YGR218W_id002"; gene_name "CRM1"; gene_id "YGR218W"; +chrVII SGD gene 935690 936893 . - . gene_id "YGR220C"; gene_biotype "protein_coding"; +chrVII SGD transcript 935690 936893 . - . transcript_id "YGR220C_id002"; gene_id "YGR220C"; gene_name "MRPL9"; transcript_biotype "protein_coding"; +chrVII SGD exon 935690 936893 . - . transcript_id "YGR220C_id002"; gene_id "YGR220C"; gene_name "MRPL9"; +chrVII SGD gene 936035 936376 . + . gene_id "YGR219W"; gene_biotype "protein_coding"; +chrVII SGD transcript 936035 936376 . + . transcript_id "YGR219W_mRNA"; gene_id "YGR219W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 936035 936376 . + 0 transcript_id "YGR219W_mRNA"; gene_id "YGR219W"; +chrVII SGD transcript 936074 936883 . - . transcript_id "YGR220C_id001"; gene_id "YGR220C"; gene_name "MRPL9"; transcript_biotype "protein_coding"; +chrVII SGD exon 936074 936883 . - 0 transcript_id "YGR220C_id001"; gene_name "MRPL9"; gene_id "YGR220C"; +chrVII SGD gene 937048 939162 . - . gene_id "YGR221C"; gene_biotype "protein_coding"; +chrVII SGD transcript 937048 939162 . - . transcript_id "YGR221C_id002"; gene_id "YGR221C"; gene_name "TOS2"; transcript_biotype "protein_coding"; +chrVII SGD exon 937048 939162 . - . transcript_id "YGR221C_id002"; gene_id "YGR221C"; gene_name "TOS2"; +chrVII SGD transcript 937124 938992 . - . transcript_id "YGR221C_id001"; gene_id "YGR221C"; gene_name "TOS2"; transcript_biotype "protein_coding"; +chrVII SGD exon 937124 938992 . - 0 transcript_id "YGR221C_id001"; gene_name "TOS2"; gene_id "YGR221C"; +chrVII SGD gene 939459 939672 . - . gene_id "YNCG0044C"; gene_biotype "ncRNA"; +chrVII SGD transcript 939459 939672 . - . transcript_id "YNCG0044C_snRNA"; gene_id "YNCG0044C"; gene_name "SNR7-L"; transcript_biotype "ncRNA"; +chrVII SGD exon 939459 939672 . - . transcript_id "YNCG0044C_snRNA"; gene_name "SNR7-L"; gene_id "YNCG0044C"; +chrVII SGD gene 939494 939672 . - . gene_id "YNCG0045C"; gene_biotype "ncRNA"; +chrVII SGD transcript 939494 939672 . - . transcript_id "YNCG0045C_snRNA"; gene_id "YNCG0045C"; gene_name "SNR7-S"; transcript_biotype "ncRNA"; +chrVII SGD exon 939494 939672 . - . transcript_id "YNCG0045C_snRNA"; gene_name "SNR7-S"; gene_id "YNCG0045C"; +chrVII SGD gene 939824 940889 . + . gene_id "YGR222W"; gene_biotype "protein_coding"; +chrVII SGD transcript 939824 940889 . + . transcript_id "YGR222W_id002"; gene_id "YGR222W"; gene_name "PET54"; transcript_biotype "protein_coding"; +chrVII SGD exon 939824 940889 . + . transcript_id "YGR222W_id002"; gene_id "YGR222W"; gene_name "PET54"; +chrVII SGD transcript 939923 940804 . + . transcript_id "YGR222W_id001"; gene_id "YGR222W"; gene_name "PET54"; transcript_biotype "protein_coding"; +chrVII SGD exon 939923 940804 . + 0 transcript_id "YGR222W_id001"; gene_name "PET54"; gene_id "YGR222W"; +chrVII SGD gene 940787 942274 . - . gene_id "YGR223C"; gene_biotype "protein_coding"; +chrVII SGD transcript 940787 942274 . - . transcript_id "YGR223C_id003"; gene_id "YGR223C"; gene_name "HSV2"; transcript_biotype "protein_coding"; +chrVII SGD exon 940787 942274 . - . transcript_id "YGR223C_id003"; gene_id "YGR223C"; gene_name "HSV2"; +chrVII SGD transcript 940869 942215 . - . transcript_id "YGR223C_id001"; gene_id "YGR223C"; gene_name "HSV2"; transcript_biotype "protein_coding"; +chrVII SGD exon 940869 942215 . - 0 transcript_id "YGR223C_id001"; gene_name "HSV2"; gene_id "YGR223C"; +chrVII SGD gene 942806 944647 . + . gene_id "YGR224W"; gene_biotype "protein_coding"; +chrVII SGD transcript 942806 944647 . + . transcript_id "YGR224W_mRNA"; gene_id "YGR224W"; gene_name "AZR1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 942806 944647 . + 0 transcript_id "YGR224W_mRNA"; gene_name "AZR1"; gene_id "YGR224W"; +chrVII SGD gene 945145 947019 . + . gene_id "YGR225W"; gene_biotype "protein_coding"; +chrVII SGD transcript 945145 947019 . + . transcript_id "YGR225W_id001"; gene_id "YGR225W"; gene_name "AMA1"; transcript_biotype "protein_coding"; +chrVII SGD exon 945145 946327 . + 0 transcript_id "YGR225W_id001"; gene_name "AMA1"; gene_id "YGR225W"; +chrVII SGD exon 946421 947019 . + 2 transcript_id "YGR225W_id001"; gene_name "AMA1"; gene_id "YGR225W"; +chrVII SGD gene 946792 947001 . - . gene_id "YGR226C"; gene_biotype "protein_coding"; +chrVII SGD transcript 946792 947001 . - . transcript_id "YGR226C_mRNA"; gene_id "YGR226C"; transcript_biotype "protein_coding"; +chrVII SGD CDS 946792 947001 . - 0 transcript_id "YGR226C_mRNA"; gene_id "YGR226C"; +chrVII SGD gene 947352 949216 . + . gene_id "YGR227W"; gene_biotype "protein_coding"; +chrVII SGD transcript 947352 949216 . + . transcript_id "YGR227W_id001"; gene_id "YGR227W"; gene_name "DIE2"; transcript_biotype "protein_coding"; +chrVII SGD exon 947352 949216 . + . transcript_id "YGR227W_id001"; gene_id "YGR227W"; gene_name "DIE2"; +chrVII SGD transcript 947420 948997 . + . transcript_id "YGR227W_id002"; gene_id "YGR227W"; gene_name "DIE2"; transcript_biotype "protein_coding"; +chrVII SGD exon 947420 948997 . + 0 transcript_id "YGR227W_id002"; gene_name "DIE2"; gene_id "YGR227W"; +chrVII SGD gene 949052 949225 . - . gene_id "YGR227C-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 949052 949225 . - . transcript_id "YGR227C-A_mRNA"; gene_id "YGR227C-A"; gene_name "OTO1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 949052 949225 . - 0 transcript_id "YGR227C-A_mRNA"; gene_name "OTO1"; gene_id "YGR227C-A"; +chrVII SGD gene 949180 951243 . - . gene_id "YGR229C"; gene_biotype "protein_coding"; +chrVII SGD transcript 949180 951243 . - . transcript_id "YGR229C_id001"; gene_id "YGR229C"; gene_name "SMI1"; transcript_biotype "protein_coding"; +chrVII SGD exon 949180 951243 . - . transcript_id "YGR229C_id001"; gene_id "YGR229C"; gene_name "SMI1"; +chrVII SGD gene 949365 949709 . + . gene_id "YGR228W"; gene_biotype "protein_coding"; +chrVII SGD transcript 949365 949709 . + . transcript_id "YGR228W_mRNA"; gene_id "YGR228W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 949365 949709 . + 0 transcript_id "YGR228W_mRNA"; gene_id "YGR228W"; +chrVII SGD transcript 949382 950899 . - . transcript_id "YGR229C_id004"; gene_id "YGR229C"; gene_name "SMI1"; transcript_biotype "protein_coding"; +chrVII SGD exon 949382 950899 . - 0 transcript_id "YGR229C_id004"; gene_name "SMI1"; gene_id "YGR229C"; +chrVII SGD gene 951749 952484 . + . gene_id "YGR230W"; gene_biotype "protein_coding"; +chrVII SGD transcript 951749 952484 . + . transcript_id "YGR230W_id001"; gene_id "YGR230W"; gene_name "BNS1"; transcript_biotype "protein_coding"; +chrVII SGD exon 951749 952484 . + . transcript_id "YGR230W_id001"; gene_id "YGR230W"; gene_name "BNS1"; +chrVII SGD transcript 951894 952307 . + . transcript_id "YGR230W_id002"; gene_id "YGR230W"; gene_name "BNS1"; transcript_biotype "protein_coding"; +chrVII SGD exon 951894 952307 . + 0 transcript_id "YGR230W_id002"; gene_name "BNS1"; gene_id "YGR230W"; +chrVII SGD gene 952311 953576 . - . gene_id "YGR231C"; gene_biotype "protein_coding"; +chrVII SGD transcript 952311 953576 . - . transcript_id "YGR231C_id004"; gene_id "YGR231C"; gene_name "PHB2"; transcript_biotype "protein_coding"; +chrVII SGD exon 952311 953576 . - . transcript_id "YGR231C_id004"; gene_id "YGR231C"; gene_name "PHB2"; +chrVII SGD transcript 952548 953480 . - . transcript_id "YGR231C_id001"; gene_id "YGR231C"; gene_name "PHB2"; transcript_biotype "protein_coding"; +chrVII SGD exon 952548 953480 . - 0 transcript_id "YGR231C_id001"; gene_name "PHB2"; gene_id "YGR231C"; +chrVII SGD gene 953852 954736 . + . gene_id "YGR232W"; gene_biotype "protein_coding"; +chrVII SGD transcript 953852 954736 . + . transcript_id "YGR232W_id003"; gene_id "YGR232W"; gene_name "NAS6"; transcript_biotype "protein_coding"; +chrVII SGD exon 953852 954736 . + . transcript_id "YGR232W_id003"; gene_id "YGR232W"; gene_name "NAS6"; +chrVII SGD transcript 953960 954646 . + . transcript_id "YGR232W_id001"; gene_id "YGR232W"; gene_name "NAS6"; transcript_biotype "protein_coding"; +chrVII SGD exon 953960 954646 . + 0 transcript_id "YGR232W_id001"; gene_name "NAS6"; gene_id "YGR232W"; +chrVII SGD gene 954674 958210 . - . gene_id "YGR233C"; gene_biotype "protein_coding"; +chrVII SGD transcript 954674 958210 . - . transcript_id "YGR233C_id001"; gene_id "YGR233C"; gene_name "PHO81"; transcript_biotype "protein_coding"; +chrVII SGD exon 954674 958210 . - 0 transcript_id "YGR233C_id001"; gene_name "PHO81"; gene_id "YGR233C"; +chrVII SGD gene 959796 961382 . + . gene_id "YGR234W"; gene_biotype "protein_coding"; +chrVII SGD transcript 959796 961382 . + . transcript_id "YGR234W_id001"; gene_id "YGR234W"; gene_name "YHB1"; transcript_biotype "protein_coding"; +chrVII SGD exon 959796 961382 . + . transcript_id "YGR234W_id001"; gene_id "YGR234W"; gene_name "YHB1"; +chrVII SGD transcript 959904 961103 . + . transcript_id "YGR234W_id003"; gene_id "YGR234W"; gene_name "YHB1"; transcript_biotype "protein_coding"; +chrVII SGD exon 959904 961103 . + 0 transcript_id "YGR234W_id003"; gene_name "YHB1"; gene_id "YGR234W"; +chrVII SGD gene 961273 962332 . - . gene_id "YGR235C"; gene_biotype "protein_coding"; +chrVII SGD transcript 961273 962332 . - . transcript_id "YGR235C_id001"; gene_id "YGR235C"; gene_name "MIC26"; transcript_biotype "protein_coding"; +chrVII SGD exon 961273 962332 . - . transcript_id "YGR235C_id001"; gene_id "YGR235C"; gene_name "MIC26"; +chrVII SGD transcript 961360 962061 . - . transcript_id "YGR235C_id002"; gene_id "YGR235C"; gene_name "MIC26"; transcript_biotype "protein_coding"; +chrVII SGD exon 961360 962061 . - 0 transcript_id "YGR235C_id002"; gene_name "MIC26"; gene_id "YGR235C"; +chrVII SGD gene 962337 963289 . - . gene_id "YGR236C"; gene_biotype "protein_coding"; +chrVII SGD transcript 962337 963289 . - . transcript_id "YGR236C_id002"; gene_id "YGR236C"; gene_name "SPG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 962337 963289 . - . transcript_id "YGR236C_id002"; gene_id "YGR236C"; gene_name "SPG1"; +chrVII SGD transcript 962530 962817 . - . transcript_id "YGR236C_id001"; gene_id "YGR236C"; gene_name "SPG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 962530 962817 . - 0 transcript_id "YGR236C_id001"; gene_name "SPG1"; gene_id "YGR236C"; +chrVII SGD gene 963129 965715 . - . gene_id "YGR237C"; gene_biotype "protein_coding"; +chrVII SGD transcript 963129 965715 . - . transcript_id "YGR237C_id001"; gene_id "YGR237C"; transcript_biotype "protein_coding"; +chrVII SGD exon 963129 965715 . - . transcript_id "YGR237C_id001"; gene_id "YGR237C"; +chrVII SGD transcript 963298 965655 . - . transcript_id "YGR237C_id002"; gene_id "YGR237C"; transcript_biotype "protein_coding"; +chrVII SGD exon 963298 965655 . - 0 transcript_id "YGR237C_id002"; gene_id "YGR237C"; +chrVII SGD gene 966039 968687 . - . gene_id "YGR238C"; gene_biotype "protein_coding"; +chrVII SGD transcript 966039 968687 . - . transcript_id "YGR238C_mRNA"; gene_id "YGR238C"; gene_name "KEL2"; transcript_biotype "protein_coding"; +chrVII SGD CDS 966039 968687 . - 0 transcript_id "YGR238C_mRNA"; gene_name "KEL2"; gene_id "YGR238C"; +chrVII SGD gene 968735 970157 . - . gene_id "YGR239C"; gene_biotype "protein_coding"; +chrVII SGD transcript 968735 970157 . - . transcript_id "YGR239C_id001"; gene_id "YGR239C"; gene_name "PEX21"; transcript_biotype "protein_coding"; +chrVII SGD exon 968735 970157 . - . transcript_id "YGR239C_id001"; gene_id "YGR239C"; gene_name "PEX21"; +chrVII SGD transcript 969187 970053 . - . transcript_id "YGR239C_id002"; gene_id "YGR239C"; gene_name "PEX21"; transcript_biotype "protein_coding"; +chrVII SGD exon 969187 970053 . - 0 transcript_id "YGR239C_id002"; gene_name "PEX21"; gene_id "YGR239C"; +chrVII SGD gene 970514 973968 . - . gene_id "YGR240C"; gene_biotype "protein_coding"; +chrVII SGD transcript 970514 973968 . - . transcript_id "YGR240C_id008"; gene_id "YGR240C"; gene_name "PFK1"; transcript_biotype "protein_coding"; +chrVII SGD exon 970514 973968 . - . transcript_id "YGR240C_id008"; gene_id "YGR240C"; gene_name "PFK1"; +chrVII SGD transcript 970771 973734 . - . transcript_id "YGR240C_id001"; gene_id "YGR240C"; gene_name "PFK1"; transcript_biotype "protein_coding"; +chrVII SGD exon 970771 973734 . - 0 transcript_id "YGR240C_id001"; gene_name "PFK1"; gene_id "YGR240C"; +chrVII SGD gene 974577 974777 . - . gene_id "YGR240C-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 974577 974777 . - . transcript_id "YGR240C-A_mRNA"; gene_id "YGR240C-A"; transcript_biotype "protein_coding"; +chrVII SGD CDS 974577 974777 . - 0 transcript_id "YGR240C-A_mRNA"; gene_id "YGR240C-A"; +chrVII SGD gene 974707 976748 . - . gene_id "YGR241C"; gene_biotype "protein_coding"; +chrVII SGD transcript 974707 976748 . - . transcript_id "YGR241C_id004"; gene_id "YGR241C"; gene_name "YAP1802"; transcript_biotype "protein_coding"; +chrVII SGD exon 974707 976748 . - . transcript_id "YGR241C_id004"; gene_id "YGR241C"; gene_name "YAP1802"; +chrVII SGD transcript 974875 976581 . - . transcript_id "YGR241C_id001"; gene_id "YGR241C"; gene_name "YAP1802"; transcript_biotype "protein_coding"; +chrVII SGD exon 974875 976581 . - 0 transcript_id "YGR241C_id001"; gene_name "YAP1802"; gene_id "YGR241C"; +chrVII SGD gene 976415 976723 . + . gene_id "YGR242W"; gene_biotype "protein_coding"; +chrVII SGD transcript 976415 976723 . + . transcript_id "YGR242W_mRNA"; gene_id "YGR242W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 976415 976723 . + 0 transcript_id "YGR242W_mRNA"; gene_id "YGR242W"; +chrVII SGD gene 977336 977776 . + . gene_id "YGR243W"; gene_biotype "protein_coding"; +chrVII SGD transcript 977336 977776 . + . transcript_id "YGR243W_id001"; gene_id "YGR243W"; gene_name "MPC3"; transcript_biotype "protein_coding"; +chrVII SGD exon 977336 977776 . + 0 transcript_id "YGR243W_id001"; gene_name "MPC3"; gene_id "YGR243W"; +chrVII SGD gene 977914 979457 . - . gene_id "YGR244C"; gene_biotype "protein_coding"; +chrVII SGD transcript 977914 979457 . - . transcript_id "YGR244C_id002"; gene_id "YGR244C"; gene_name "LSC2"; transcript_biotype "protein_coding"; +chrVII SGD exon 977914 979457 . - . transcript_id "YGR244C_id002"; gene_id "YGR244C"; gene_name "LSC2"; +chrVII SGD transcript 978036 979319 . - . transcript_id "YGR244C_id001"; gene_id "YGR244C"; gene_name "LSC2"; transcript_biotype "protein_coding"; +chrVII SGD exon 978036 979319 . - 0 transcript_id "YGR244C_id001"; gene_name "LSC2"; gene_id "YGR244C"; +chrVII SGD gene 979332 982150 . - . gene_id "YGR245C"; gene_biotype "protein_coding"; +chrVII SGD transcript 979332 982150 . - . transcript_id "YGR245C_id002"; gene_id "YGR245C"; gene_name "SDA1"; transcript_biotype "protein_coding"; +chrVII SGD exon 979332 982150 . - . transcript_id "YGR245C_id002"; gene_id "YGR245C"; gene_name "SDA1"; +chrVII SGD transcript 979765 982068 . - . transcript_id "YGR245C_id001"; gene_id "YGR245C"; gene_name "SDA1"; transcript_biotype "protein_coding"; +chrVII SGD exon 979765 982068 . - 0 transcript_id "YGR245C_id001"; gene_name "SDA1"; gene_id "YGR245C"; +chrVII SGD gene 982320 984442 . - . gene_id "YGR246C"; gene_biotype "protein_coding"; +chrVII SGD transcript 982320 984442 . - . transcript_id "YGR246C_id001"; gene_id "YGR246C"; gene_name "BRF1"; transcript_biotype "protein_coding"; +chrVII SGD exon 982320 984442 . - . transcript_id "YGR246C_id001"; gene_id "YGR246C"; gene_name "BRF1"; +chrVII SGD transcript 982482 984272 . - . transcript_id "YGR246C_id002"; gene_id "YGR246C"; gene_name "BRF1"; transcript_biotype "protein_coding"; +chrVII SGD exon 982482 984272 . - 0 transcript_id "YGR246C_id002"; gene_name "BRF1"; gene_id "YGR246C"; +chrVII SGD gene 984827 985907 . + . gene_id "YGR247W"; gene_biotype "protein_coding"; +chrVII SGD transcript 984827 985907 . + . transcript_id "YGR247W_id001"; gene_id "YGR247W"; gene_name "CPD1"; transcript_biotype "protein_coding"; +chrVII SGD exon 984827 985907 . + . transcript_id "YGR247W_id001"; gene_id "YGR247W"; gene_name "CPD1"; +chrVII SGD transcript 984966 985685 . + . transcript_id "YGR247W_id004"; gene_id "YGR247W"; gene_name "CPD1"; transcript_biotype "protein_coding"; +chrVII SGD exon 984966 985685 . + 0 transcript_id "YGR247W_id004"; gene_name "CPD1"; gene_id "YGR247W"; +chrVII SGD gene 985954 986947 . + . gene_id "YGR248W"; gene_biotype "protein_coding"; +chrVII SGD transcript 985954 986947 . + . transcript_id "YGR248W_id001"; gene_id "YGR248W"; gene_name "SOL4"; transcript_biotype "protein_coding"; +chrVII SGD exon 985954 986947 . + . transcript_id "YGR248W_id001"; gene_id "YGR248W"; gene_name "SOL4"; +chrVII SGD transcript 985972 986739 . + . transcript_id "YGR248W_id002"; gene_id "YGR248W"; gene_name "SOL4"; transcript_biotype "protein_coding"; +chrVII SGD exon 985972 986739 . + 0 transcript_id "YGR248W_id002"; gene_name "SOL4"; gene_id "YGR248W"; +chrVII SGD gene 988049 989419 . + . gene_id "YGR249W"; gene_biotype "protein_coding"; +chrVII SGD transcript 988049 989419 . + . transcript_id "YGR249W_mRNA"; gene_id "YGR249W"; gene_name "MGA1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 988049 989419 . + 0 transcript_id "YGR249W_mRNA"; gene_name "MGA1"; gene_id "YGR249W"; +chrVII SGD gene 991061 993772 . - . gene_id "YGR250C"; gene_biotype "protein_coding"; +chrVII SGD transcript 991061 993772 . - . transcript_id "YGR250C_id001"; gene_id "YGR250C"; gene_name "RIE1"; transcript_biotype "protein_coding"; +chrVII SGD exon 991061 993772 . - . transcript_id "YGR250C_id001"; gene_id "YGR250C"; gene_name "RIE1"; +chrVII SGD transcript 991176 993521 . - . transcript_id "YGR250C_id002"; gene_id "YGR250C"; gene_name "RIE1"; transcript_biotype "protein_coding"; +chrVII SGD exon 991176 993521 . - 0 transcript_id "YGR250C_id002"; gene_name "RIE1"; gene_id "YGR250C"; +chrVII SGD gene 995594 996771 . + . gene_id "YGR251W"; gene_biotype "protein_coding"; +chrVII SGD transcript 995594 996771 . + . transcript_id "YGR251W_id003"; gene_id "YGR251W"; gene_name "NOP19"; transcript_biotype "protein_coding"; +chrVII SGD exon 995594 996771 . + . transcript_id "YGR251W_id003"; gene_id "YGR251W"; gene_name "NOP19"; +chrVII SGD transcript 995639 996229 . + . transcript_id "YGR251W_id001"; gene_id "YGR251W"; gene_name "NOP19"; transcript_biotype "protein_coding"; +chrVII SGD exon 995639 996229 . + 0 transcript_id "YGR251W_id001"; gene_name "NOP19"; gene_id "YGR251W"; +chrVII SGD gene 996808 998396 . + . gene_id "YGR252W"; gene_biotype "protein_coding"; +chrVII SGD transcript 996808 998396 . + . transcript_id "YGR252W_id006"; gene_id "YGR252W"; gene_name "GCN5"; transcript_biotype "protein_coding"; +chrVII SGD exon 996808 998396 . + . transcript_id "YGR252W_id006"; gene_id "YGR252W"; gene_name "GCN5"; +chrVII SGD transcript 996869 998188 . + . transcript_id "YGR252W_id001"; gene_id "YGR252W"; gene_name "GCN5"; transcript_biotype "protein_coding"; +chrVII SGD exon 996869 998188 . + 0 transcript_id "YGR252W_id001"; gene_name "GCN5"; gene_id "YGR252W"; +chrVII SGD gene 997523 999200 . - . gene_id "YGR253C"; gene_biotype "protein_coding"; +chrVII SGD transcript 997523 999200 . - . transcript_id "YGR253C_id003"; gene_id "YGR253C"; gene_name "PUP2"; transcript_biotype "protein_coding"; +chrVII SGD exon 997523 999200 . - . transcript_id "YGR253C_id003"; gene_id "YGR253C"; gene_name "PUP2"; +chrVII SGD transcript 998358 999140 . - . transcript_id "YGR253C_id001"; gene_id "YGR253C"; gene_name "PUP2"; transcript_biotype "protein_coding"; +chrVII SGD exon 998358 999140 . - 0 transcript_id "YGR253C_id001"; gene_name "PUP2"; gene_id "YGR253C"; +chrVII SGD gene 1000890 1002515 . + . gene_id "YGR254W"; gene_biotype "protein_coding"; +chrVII SGD transcript 1000890 1002515 . + . transcript_id "YGR254W_id002"; gene_id "YGR254W"; gene_name "ENO1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1000890 1002515 . + . transcript_id "YGR254W_id002"; gene_id "YGR254W"; gene_name "ENO1"; +chrVII SGD transcript 1000927 1002240 . + . transcript_id "YGR254W_id001"; gene_id "YGR254W"; gene_name "ENO1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1000927 1002240 . + 0 transcript_id "YGR254W_id001"; gene_name "ENO1"; gene_id "YGR254W"; +chrVII SGD gene 1002283 1004055 . - . gene_id "YGR255C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1002283 1004055 . - . transcript_id "YGR255C_id001"; gene_id "YGR255C"; gene_name "COQ6"; transcript_biotype "protein_coding"; +chrVII SGD exon 1002283 1004055 . - . transcript_id "YGR255C_id001"; gene_id "YGR255C"; gene_name "COQ6"; +chrVII SGD transcript 1002523 1003962 . - . transcript_id "YGR255C_id002"; gene_id "YGR255C"; gene_name "COQ6"; transcript_biotype "protein_coding"; +chrVII SGD exon 1002523 1003962 . - 0 transcript_id "YGR255C_id002"; gene_name "COQ6"; gene_id "YGR255C"; +chrVII SGD gene 1004216 1004287 . + . gene_id "YNCG0046W"; gene_biotype "ncRNA"; +chrVII SGD transcript 1004216 1004287 . + . transcript_id "YNCG0046W_tRNA"; gene_id "YNCG0046W"; transcript_biotype "ncRNA"; +chrVII SGD exon 1004216 1004287 . + . transcript_id "YNCG0046W_tRNA"; gene_id "YNCG0046W"; +chrVII SGD gene 1004617 1006214 . + . gene_id "YGR256W"; gene_biotype "protein_coding"; +chrVII SGD transcript 1004617 1006214 . + . transcript_id "YGR256W_id013"; gene_id "YGR256W"; gene_name "GND2"; transcript_biotype "protein_coding"; +chrVII SGD exon 1004617 1006214 . + . transcript_id "YGR256W_id013"; gene_id "YGR256W"; gene_name "GND2"; +chrVII SGD transcript 1004624 1006102 . + . transcript_id "YGR256W_id001"; gene_id "YGR256W"; gene_name "GND2"; transcript_biotype "protein_coding"; +chrVII SGD exon 1004624 1006102 . + 0 transcript_id "YGR256W_id001"; gene_name "GND2"; gene_id "YGR256W"; +chrVII SGD gene 1006104 1007423 . - . gene_id "YGR257C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1006104 1007423 . - . transcript_id "YGR257C_id003"; gene_id "YGR257C"; gene_name "MTM1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1006104 1007423 . - . transcript_id "YGR257C_id003"; gene_id "YGR257C"; gene_name "MTM1"; +chrVII SGD transcript 1006205 1007305 . - . transcript_id "YGR257C_id001"; gene_id "YGR257C"; gene_name "MTM1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1006205 1007305 . - 0 transcript_id "YGR257C_id001"; gene_name "MTM1"; gene_id "YGR257C"; +chrVII SGD gene 1007610 1010795 . - . gene_id "YGR258C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1007610 1010795 . - . transcript_id "YGR258C_id003"; gene_id "YGR258C"; gene_name "RAD2"; transcript_biotype "protein_coding"; +chrVII SGD exon 1007610 1010795 . - . transcript_id "YGR258C_id003"; gene_id "YGR258C"; gene_name "RAD2"; +chrVII SGD transcript 1007671 1010766 . - . transcript_id "YGR258C_id001"; gene_id "YGR258C"; gene_name "RAD2"; transcript_biotype "protein_coding"; +chrVII SGD exon 1007671 1010766 . - 0 transcript_id "YGR258C_id001"; gene_name "RAD2"; gene_id "YGR258C"; +chrVII SGD gene 1012206 1013266 . - . gene_id "YGR259C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1012206 1013266 . - . transcript_id "YGR259C_id001"; gene_id "YGR259C"; transcript_biotype "protein_coding"; +chrVII SGD exon 1012206 1013266 . - . transcript_id "YGR259C_id001"; gene_id "YGR259C"; +chrVII SGD gene 1012249 1014214 . + . gene_id "YGR260W"; gene_biotype "protein_coding"; +chrVII SGD transcript 1012249 1014214 . + . transcript_id "YGR260W_id001"; gene_id "YGR260W"; gene_name "TNA1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1012249 1014214 . + . transcript_id "YGR260W_id001"; gene_id "YGR260W"; gene_name "TNA1"; +chrVII SGD transcript 1012481 1012921 . - . transcript_id "YGR259C_id002"; gene_id "YGR259C"; transcript_biotype "protein_coding"; +chrVII SGD exon 1012481 1012921 . - 0 transcript_id "YGR259C_id002"; gene_id "YGR259C"; +chrVII SGD transcript 1012485 1014089 . + . transcript_id "YGR260W_id002"; gene_id "YGR260W"; gene_name "TNA1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1012485 1014089 . + 0 transcript_id "YGR260W_id002"; gene_name "TNA1"; gene_id "YGR260W"; +chrVII SGD gene 1014200 1016813 . - . gene_id "YGR261C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1014200 1016813 . - . transcript_id "YGR261C_id001"; gene_id "YGR261C"; gene_name "APL6"; transcript_biotype "protein_coding"; +chrVII SGD exon 1014200 1016813 . - . transcript_id "YGR261C_id001"; gene_id "YGR261C"; gene_name "APL6"; +chrVII SGD transcript 1014321 1016750 . - . transcript_id "YGR261C_id002"; gene_id "YGR261C"; gene_name "APL6"; transcript_biotype "protein_coding"; +chrVII SGD exon 1014321 1016750 . - 0 transcript_id "YGR261C_id002"; gene_name "APL6"; gene_id "YGR261C"; +chrVII SGD gene 1016787 1017804 . - . gene_id "YGR262C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1016787 1017804 . - . transcript_id "YGR262C_id003"; gene_id "YGR262C"; gene_name "BUD32"; transcript_biotype "protein_coding"; +chrVII SGD exon 1016787 1017804 . - . transcript_id "YGR262C_id003"; gene_id "YGR262C"; gene_name "BUD32"; +chrVII SGD transcript 1016974 1017759 . - . transcript_id "YGR262C_id001"; gene_id "YGR262C"; gene_name "BUD32"; transcript_biotype "protein_coding"; +chrVII SGD exon 1016974 1017759 . - 0 transcript_id "YGR262C_id001"; gene_name "BUD32"; gene_id "YGR262C"; +chrVII SGD gene 1017889 1019313 . - . gene_id "YGR263C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1017889 1019313 . - . transcript_id "YGR263C_id001"; gene_id "YGR263C"; gene_name "SAY1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1017889 1019313 . - . transcript_id "YGR263C_id001"; gene_id "YGR263C"; gene_name "SAY1"; +chrVII SGD transcript 1017967 1019241 . - . transcript_id "YGR263C_id002"; gene_id "YGR263C"; gene_name "SAY1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1017967 1019241 . - 0 transcript_id "YGR263C_id002"; gene_name "SAY1"; gene_id "YGR263C"; +chrVII SGD gene 1019509 1022373 . - . gene_id "YGR264C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1019509 1022373 . - . transcript_id "YGR264C_id001"; gene_id "YGR264C"; gene_name "MES1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1019509 1022373 . - . transcript_id "YGR264C_id001"; gene_id "YGR264C"; gene_name "MES1"; +chrVII SGD transcript 1019598 1021853 . - . transcript_id "YGR264C_id002"; gene_id "YGR264C"; gene_name "MES1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1019598 1021853 . - 0 transcript_id "YGR264C_id002"; gene_name "MES1"; gene_id "YGR264C"; +chrVII SGD gene 1021648 1022058 . + . gene_id "YGR265W"; gene_biotype "protein_coding"; +chrVII SGD transcript 1021648 1022058 . + . transcript_id "YGR265W_mRNA"; gene_id "YGR265W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 1021648 1022058 . + 0 transcript_id "YGR265W_mRNA"; gene_id "YGR265W"; +chrVII SGD gene 1022600 1024912 . + . gene_id "YGR266W"; gene_biotype "protein_coding"; +chrVII SGD transcript 1022600 1024912 . + . transcript_id "YGR266W_id007"; gene_id "YGR266W"; transcript_biotype "protein_coding"; +chrVII SGD exon 1022600 1024912 . + . transcript_id "YGR266W_id007"; gene_id "YGR266W"; +chrVII SGD transcript 1022656 1024761 . + . transcript_id "YGR266W_id001"; gene_id "YGR266W"; transcript_biotype "protein_coding"; +chrVII SGD exon 1022656 1024761 . + 0 transcript_id "YGR266W_id001"; gene_id "YGR266W"; +chrVII SGD gene 1024765 1026607 . - . gene_id "YGR267C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1024765 1026607 . - . transcript_id "YGR267C_id001"; gene_id "YGR267C"; gene_name "FOL2"; transcript_biotype "protein_coding"; +chrVII SGD exon 1024765 1026607 . - . transcript_id "YGR267C_id001"; gene_id "YGR267C"; gene_name "FOL2"; +chrVII SGD transcript 1025004 1025735 . - . transcript_id "YGR267C_id002"; gene_id "YGR267C"; gene_name "FOL2"; transcript_biotype "protein_coding"; +chrVII SGD exon 1025004 1025735 . - 0 transcript_id "YGR267C_id002"; gene_name "FOL2"; gene_id "YGR267C"; +chrVII SGD gene 1025773 1026691 . - . gene_id "YGR268C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1025773 1026691 . - . transcript_id "YGR268C_id001"; gene_id "YGR268C"; gene_name "HUA1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1025773 1026691 . - . transcript_id "YGR268C_id001"; gene_id "YGR268C"; gene_name "HUA1"; +chrVII SGD transcript 1026057 1026653 . - . transcript_id "YGR268C_id003"; gene_id "YGR268C"; gene_name "HUA1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1026057 1026653 . - 0 transcript_id "YGR268C_id003"; gene_name "HUA1"; gene_id "YGR268C"; +chrVII SGD gene 1026636 1026962 . + . gene_id "YGR269W"; gene_biotype "protein_coding"; +chrVII SGD transcript 1026636 1026962 . + . transcript_id "YGR269W_mRNA"; gene_id "YGR269W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 1026636 1026962 . + 0 transcript_id "YGR269W_mRNA"; gene_id "YGR269W"; +chrVII SGD gene 1027370 1031509 . + . gene_id "YGR270W"; gene_biotype "protein_coding"; +chrVII SGD transcript 1027370 1031509 . + . transcript_id "YGR270W_mRNA"; gene_id "YGR270W"; gene_name "YTA7"; transcript_biotype "protein_coding"; +chrVII SGD CDS 1027370 1031509 . + 0 transcript_id "YGR270W_mRNA"; gene_name "YTA7"; gene_id "YGR270W"; +chrVII SGD gene 1027382 1027600 . - . gene_id "YGR270C-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 1027382 1027600 . - . transcript_id "YGR270C-A_mRNA"; gene_id "YGR270C-A"; transcript_biotype "protein_coding"; +chrVII SGD CDS 1027382 1027600 . - 0 transcript_id "YGR270C-A_mRNA"; gene_id "YGR270C-A"; +chrVII SGD gene 1031791 1037694 . + . gene_id "YGR271W"; gene_biotype "protein_coding"; +chrVII SGD transcript 1031791 1037694 . + . transcript_id "YGR271W_mRNA"; gene_id "YGR271W"; gene_name "SLH1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 1031791 1037694 . + 0 transcript_id "YGR271W_mRNA"; gene_name "SLH1"; gene_id "YGR271W"; +chrVII SGD gene 1037676 1038639 . - . gene_id "YGR271C-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 1037676 1038639 . - . transcript_id "YGR271C-A_id001"; gene_id "YGR271C-A"; gene_name "EFG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1037676 1038639 . - . transcript_id "YGR271C-A_id001"; gene_id "YGR271C-A"; gene_name "EFG1"; +chrVII SGD transcript 1037800 1038501 . - . transcript_id "YGR271C-A_id002"; gene_id "YGR271C-A"; gene_name "EFG1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1037800 1038501 . - 0 transcript_id "YGR271C-A_id002"; gene_name "EFG1"; gene_id "YGR271C-A"; +chrVII SGD gene 1038715 1039239 . - . gene_id "YGR273C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1038715 1039239 . - . transcript_id "YGR273C_id001"; gene_id "YGR273C"; transcript_biotype "protein_coding"; +chrVII SGD exon 1038715 1039239 . - 0 transcript_id "YGR273C_id001"; gene_id "YGR273C"; +chrVII SGD gene 1039810 1043103 . - . gene_id "YGR274C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1039810 1043103 . - . transcript_id "YGR274C_id002"; gene_id "YGR274C"; gene_name "TAF1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1039810 1043103 . - . transcript_id "YGR274C_id002"; gene_id "YGR274C"; gene_name "TAF1"; +chrVII SGD transcript 1039895 1043095 . - . transcript_id "YGR274C_id001"; gene_id "YGR274C"; gene_name "TAF1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1039895 1043095 . - 0 transcript_id "YGR274C_id001"; gene_name "TAF1"; gene_id "YGR274C"; +chrVII SGD gene 1043276 1043749 . + . gene_id "YGR275W"; gene_biotype "protein_coding"; +chrVII SGD transcript 1043276 1043749 . + . transcript_id "YGR275W_mRNA"; gene_id "YGR275W"; gene_name "RTT102"; transcript_biotype "protein_coding"; +chrVII SGD CDS 1043276 1043749 . + 0 transcript_id "YGR275W_mRNA"; gene_name "RTT102"; gene_id "YGR275W"; +chrVII SGD gene 1043819 1045480 . - . gene_id "YGR276C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1043819 1045480 . - . transcript_id "YGR276C_mRNA"; gene_id "YGR276C"; gene_name "RNH70"; transcript_biotype "protein_coding"; +chrVII SGD CDS 1043819 1045480 . - 0 transcript_id "YGR276C_mRNA"; gene_name "RNH70"; gene_id "YGR276C"; +chrVII SGD gene 1045477 1046574 . - . gene_id "YGR277C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1045477 1046574 . - . transcript_id "YGR277C_id001"; gene_id "YGR277C"; gene_name "CAB4"; transcript_biotype "protein_coding"; +chrVII SGD exon 1045477 1046574 . - . transcript_id "YGR277C_id001"; gene_id "YGR277C"; gene_name "CAB4"; +chrVII SGD transcript 1045644 1046561 . - . transcript_id "YGR277C_id004"; gene_id "YGR277C"; gene_name "CAB4"; transcript_biotype "protein_coding"; +chrVII SGD exon 1045644 1046561 . - 0 transcript_id "YGR277C_id004"; gene_name "CAB4"; gene_id "YGR277C"; +chrVII SGD gene 1046721 1048625 . + . gene_id "YGR278W"; gene_biotype "protein_coding"; +chrVII SGD transcript 1046721 1048625 . + . transcript_id "YGR278W_id001"; gene_id "YGR278W"; gene_name "CWC22"; transcript_biotype "protein_coding"; +chrVII SGD exon 1046721 1048625 . + . transcript_id "YGR278W_id001"; gene_id "YGR278W"; gene_name "CWC22"; +chrVII SGD transcript 1046731 1048464 . + . transcript_id "YGR278W_id002"; gene_id "YGR278W"; gene_name "CWC22"; transcript_biotype "protein_coding"; +chrVII SGD exon 1046731 1048464 . + 0 transcript_id "YGR278W_id002"; gene_name "CWC22"; gene_id "YGR278W"; +chrVII SGD gene 1048336 1050061 . - . gene_id "YGR279C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1048336 1050061 . - . transcript_id "YGR279C_id002"; gene_id "YGR279C"; gene_name "SCW4"; transcript_biotype "protein_coding"; +chrVII SGD exon 1048336 1050061 . - . transcript_id "YGR279C_id002"; gene_id "YGR279C"; gene_name "SCW4"; +chrVII SGD transcript 1048798 1049958 . - . transcript_id "YGR279C_id001"; gene_id "YGR279C"; gene_name "SCW4"; transcript_biotype "protein_coding"; +chrVII SGD exon 1048798 1049958 . - 0 transcript_id "YGR279C_id001"; gene_name "SCW4"; gene_id "YGR279C"; +chrVII SGD gene 1050609 1051764 . - . gene_id "YGR280C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1050609 1051764 . - . transcript_id "YGR280C_id003"; gene_id "YGR280C"; gene_name "PXR1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1050609 1051764 . - . transcript_id "YGR280C_id003"; gene_id "YGR280C"; gene_name "PXR1"; +chrVII SGD transcript 1050910 1051725 . - . transcript_id "YGR280C_id001"; gene_id "YGR280C"; gene_name "PXR1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1050910 1051725 . - 0 transcript_id "YGR280C_id001"; gene_name "PXR1"; gene_id "YGR280C"; +chrVII SGD gene 1052824 1057257 . + . gene_id "YGR281W"; gene_biotype "protein_coding"; +chrVII SGD transcript 1052824 1057257 . + . transcript_id "YGR281W_mRNA"; gene_id "YGR281W"; gene_name "YOR1"; transcript_biotype "protein_coding"; +chrVII SGD CDS 1052824 1057257 . + 0 transcript_id "YGR281W_mRNA"; gene_name "YOR1"; gene_id "YGR281W"; +chrVII SGD gene 1057242 1058748 . - . gene_id "YGR282C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1057242 1058748 . - . transcript_id "YGR282C_id001"; gene_id "YGR282C"; gene_name "BGL2"; transcript_biotype "protein_coding"; +chrVII SGD exon 1057242 1058748 . - . transcript_id "YGR282C_id001"; gene_id "YGR282C"; gene_name "BGL2"; +chrVII SGD transcript 1057783 1058724 . - . transcript_id "YGR282C_id002"; gene_id "YGR282C"; gene_name "BGL2"; transcript_biotype "protein_coding"; +chrVII SGD exon 1057783 1058724 . - 0 transcript_id "YGR282C_id002"; gene_name "BGL2"; gene_id "YGR282C"; +chrVII SGD gene 1058873 1060089 . - . gene_id "YGR283C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1058873 1060089 . - . transcript_id "YGR283C_id001"; gene_id "YGR283C"; gene_name "UPA1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1058873 1060089 . - . transcript_id "YGR283C_id001"; gene_id "YGR283C"; gene_name "UPA1"; +chrVII SGD transcript 1059015 1060040 . - . transcript_id "YGR283C_id002"; gene_id "YGR283C"; gene_name "UPA1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1059015 1060040 . - 0 transcript_id "YGR283C_id002"; gene_name "UPA1"; gene_id "YGR283C"; +chrVII SGD gene 1060424 1061641 . - . gene_id "YGR284C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1060424 1061641 . - . transcript_id "YGR284C_id005"; gene_id "YGR284C"; gene_name "ERV29"; transcript_biotype "protein_coding"; +chrVII SGD exon 1060424 1061641 . - . transcript_id "YGR284C_id005"; gene_id "YGR284C"; gene_name "ERV29"; +chrVII SGD transcript 1060658 1061590 . - . transcript_id "YGR284C_id001"; gene_id "YGR284C"; gene_name "ERV29"; transcript_biotype "protein_coding"; +chrVII SGD exon 1060658 1061590 . - 0 transcript_id "YGR284C_id001"; gene_name "ERV29"; gene_id "YGR284C"; +chrVII SGD gene 1061678 1063185 . - . gene_id "YGR285C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1061678 1063185 . - . transcript_id "YGR285C_id001"; gene_id "YGR285C"; gene_name "ZUO1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1061678 1063185 . - . transcript_id "YGR285C_id001"; gene_id "YGR285C"; gene_name "ZUO1"; +chrVII SGD transcript 1061852 1063153 . - . transcript_id "YGR285C_id002"; gene_id "YGR285C"; gene_name "ZUO1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1061852 1063153 . - 0 transcript_id "YGR285C_id002"; gene_name "ZUO1"; gene_id "YGR285C"; +chrVII SGD gene 1063653 1065214 . - . gene_id "YGR286C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1063653 1065214 . - . transcript_id "YGR286C_id001"; gene_id "YGR286C"; gene_name "BIO2"; transcript_biotype "protein_coding"; +chrVII SGD exon 1063653 1065214 . - . transcript_id "YGR286C_id001"; gene_id "YGR286C"; gene_name "BIO2"; +chrVII SGD transcript 1063813 1064940 . - . transcript_id "YGR286C_id002"; gene_id "YGR286C"; gene_name "BIO2"; transcript_biotype "protein_coding"; +chrVII SGD exon 1063813 1064940 . - 0 transcript_id "YGR286C_id002"; gene_name "BIO2"; gene_id "YGR286C"; +chrVII SGD gene 1067040 1069020 . - . gene_id "YGR287C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1067040 1069020 . - . transcript_id "YGR287C_id002"; gene_id "YGR287C"; gene_name "IMA1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1067040 1069020 . - . transcript_id "YGR287C_id002"; gene_id "YGR287C"; gene_name "IMA1"; +chrVII SGD transcript 1067222 1068991 . - . transcript_id "YGR287C_id001"; gene_id "YGR287C"; gene_name "IMA1"; transcript_biotype "protein_coding"; +chrVII SGD exon 1067222 1068991 . - 0 transcript_id "YGR287C_id001"; gene_name "IMA1"; gene_id "YGR287C"; +chrVII SGD gene 1070205 1072304 . + . gene_id "YGR288W"; gene_biotype "protein_coding"; +chrVII SGD transcript 1070205 1072304 . + . transcript_id "YGR288W_id001"; gene_id "YGR288W"; gene_name "MAL13"; transcript_biotype "protein_coding"; +chrVII SGD exon 1070205 1072304 . + . transcript_id "YGR288W_id001"; gene_id "YGR288W"; gene_name "MAL13"; +chrVII SGD transcript 1070293 1071714 . + . transcript_id "YGR288W_id003"; gene_id "YGR288W"; gene_name "MAL13"; transcript_biotype "protein_coding"; +chrVII SGD exon 1070293 1071714 . + 0 transcript_id "YGR288W_id003"; gene_name "MAL13"; gene_id "YGR288W"; +chrVII SGD gene 1073963 1075813 . - . gene_id "YGR289C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1073963 1075813 . - . transcript_id "YGR289C_id001"; gene_id "YGR289C"; gene_name "MAL11"; transcript_biotype "protein_coding"; +chrVII SGD exon 1073963 1075813 . - 0 transcript_id "YGR289C_id001"; gene_name "MAL11"; gene_id "YGR289C"; +chrVII SGD gene 1075482 1075925 . + . gene_id "YGR290W"; gene_biotype "protein_coding"; +chrVII SGD transcript 1075482 1075925 . + . transcript_id "YGR290W_mRNA"; gene_id "YGR290W"; transcript_biotype "protein_coding"; +chrVII SGD CDS 1075482 1075925 . + 0 transcript_id "YGR290W_mRNA"; gene_id "YGR290W"; +chrVII SGD gene 1076283 1076504 . - . gene_id "YGR291C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1076283 1076504 . - . transcript_id "YGR291C_mRNA"; gene_id "YGR291C"; transcript_biotype "protein_coding"; +chrVII SGD CDS 1076283 1076504 . - 0 transcript_id "YGR291C_mRNA"; gene_id "YGR291C"; +chrVII SGD gene 1076599 1078353 . + . gene_id "YGR292W"; gene_biotype "protein_coding"; +chrVII SGD transcript 1076599 1078353 . + . transcript_id "YGR292W_id001"; gene_id "YGR292W"; gene_name "MAL12"; transcript_biotype "protein_coding"; +chrVII SGD exon 1076599 1078353 . + 0 transcript_id "YGR292W_id001"; gene_name "MAL12"; gene_id "YGR292W"; +chrVII SGD gene 1079885 1080346 . - . gene_id "YGR293C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1079885 1080346 . - . transcript_id "YGR293C_mRNA"; gene_id "YGR293C"; transcript_biotype "protein_coding"; +chrVII SGD CDS 1079885 1080346 . - 0 transcript_id "YGR293C_mRNA"; gene_id "YGR293C"; +chrVII SGD gene 1080306 1080668 . + . gene_id "YGR294W"; gene_biotype "protein_coding"; +chrVII SGD transcript 1080306 1080668 . + . transcript_id "YGR294W_id001"; gene_id "YGR294W"; gene_name "PAU12"; transcript_biotype "protein_coding"; +chrVII SGD exon 1080306 1080668 . + 0 transcript_id "YGR294W_id001"; gene_name "PAU12"; gene_id "YGR294W"; +chrVII SGD gene 1081584 1082729 . - . gene_id "YGR295C"; gene_biotype "protein_coding"; +chrVII SGD transcript 1081584 1082729 . - . transcript_id "YGR295C_mRNA"; gene_id "YGR295C"; gene_name "COS6"; transcript_biotype "protein_coding"; +chrVII SGD CDS 1081584 1082729 . - 0 transcript_id "YGR295C_mRNA"; gene_name "COS6"; gene_id "YGR295C"; +chrVII SGD gene 1084864 1090591 . + . gene_id "YGR296W"; gene_biotype "protein_coding"; +chrVII SGD transcript 1084864 1090591 . + . transcript_id "YGR296W_mRNA"; gene_id "YGR296W"; gene_name "YRF1-3"; transcript_biotype "protein_coding"; +chrVII SGD CDS 1084864 1084882 . + 0 transcript_id "YGR296W_mRNA"; gene_name "YRF1-3"; gene_id "YGR296W"; +chrVII SGD CDS 1085031 1090591 . + 2 transcript_id "YGR296W_mRNA"; gene_name "YRF1-3"; gene_id "YGR296W"; +chrVII SGD gene 1088870 1089445 . - . gene_id "YGR296C-A"; gene_biotype "protein_coding"; +chrVII SGD transcript 1088870 1089445 . - . transcript_id "YGR296C-A_mRNA"; gene_id "YGR296C-A"; transcript_biotype "protein_coding"; +chrVII SGD CDS 1088870 1089445 . - 0 transcript_id "YGR296C-A_mRNA"; gene_id "YGR296C-A"; +chrVII SGD gene 1089746 1090228 . - . gene_id "YGR296C-B"; gene_biotype "protein_coding"; +chrVII SGD transcript 1089746 1090228 . - . transcript_id "YGR296C-B_mRNA"; gene_id "YGR296C-B"; transcript_biotype "protein_coding"; +chrVII SGD CDS 1089746 1090228 . - 0 transcript_id "YGR296C-B_mRNA"; gene_id "YGR296C-B"; +chrVIII SGD gene 445 3311 . - . gene_id "YHL050C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 445 3311 . - . transcript_id "YHL050C_mRNA"; gene_id "YHL050C"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 445 1897 . - 1 transcript_id "YHL050C_mRNA"; gene_id "YHL050C"; +chrVIII SGD CDS 2671 3311 . - 0 transcript_id "YHL050C_mRNA"; gene_id "YHL050C"; +chrVIII SGD gene 811 1293 . + . gene_id "YHL050W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 811 1293 . + . transcript_id "YHL050W-A_mRNA"; gene_id "YHL050W-A"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 811 1293 . + 0 transcript_id "YHL050W-A_mRNA"; gene_id "YHL050W-A"; +chrVIII SGD gene 3726 4541 . - . gene_id "YHL049C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 3726 4541 . - . transcript_id "YHL049C_mRNA"; gene_id "YHL049C"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 3726 4541 . - 0 transcript_id "YHL049C_mRNA"; gene_id "YHL049C"; +chrVIII SGD gene 5663 5797 . - . gene_id "YHL048C-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 5663 5797 . - . transcript_id "YHL048C-A_mRNA"; gene_id "YHL048C-A"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 5663 5797 . - 0 transcript_id "YHL048C-A_mRNA"; gene_id "YHL048C-A"; +chrVIII SGD gene 6401 7546 . + . gene_id "YHL048W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 6401 7546 . + . transcript_id "YHL048W_id001"; gene_id "YHL048W"; gene_name "COS8"; transcript_biotype "protein_coding"; +chrVIII SGD exon 6401 7546 . + 0 transcript_id "YHL048W_id001"; gene_name "COS8"; gene_id "YHL048W"; +chrVIII SGD gene 8201 10489 . - . gene_id "YHL047C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 8201 10489 . - . transcript_id "YHL047C_id008"; gene_id "YHL047C"; gene_name "ARN2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 8201 10489 . - . transcript_id "YHL047C_id008"; gene_id "YHL047C"; gene_name "ARN2"; +chrVIII SGD transcript 8351 10213 . - . transcript_id "YHL047C_id001"; gene_id "YHL047C"; gene_name "ARN2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 8351 10213 . - 0 transcript_id "YHL047C_id001"; gene_name "ARN2"; gene_id "YHL047C"; +chrVIII SGD gene 9981 10307 . + . gene_id "YHL046W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 9981 10307 . + . transcript_id "YHL046W-A_mRNA"; gene_id "YHL046W-A"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 9981 10307 . + 0 transcript_id "YHL046W-A_mRNA"; gene_id "YHL046W-A"; +chrVIII SGD gene 11923 12285 . - . gene_id "YHL046C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 11923 12285 . - . transcript_id "YHL046C_id001"; gene_id "YHL046C"; gene_name "PAU13"; transcript_biotype "protein_coding"; +chrVIII SGD exon 11923 12285 . - 0 transcript_id "YHL046C_id001"; gene_name "PAU13"; gene_id "YHL046C"; +chrVIII SGD gene 12502 12849 . + . gene_id "YHL045W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 12502 12849 . + . transcript_id "YHL045W_id001"; gene_id "YHL045W"; gene_name "PXP3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 12502 12849 . + 0 transcript_id "YHL045W_id001"; gene_name "PXP3"; gene_id "YHL045W"; +chrVIII SGD gene 13532 14569 . + . gene_id "YHL044W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 13532 14569 . + . transcript_id "YHL044W_id001"; gene_id "YHL044W"; gene_name "DFP4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 13532 14569 . + . transcript_id "YHL044W_id001"; gene_id "YHL044W"; gene_name "DFP4"; +chrVIII SGD transcript 13565 14272 . + . transcript_id "YHL044W_id004"; gene_id "YHL044W"; gene_name "DFP4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 13565 14272 . + 0 transcript_id "YHL044W_id004"; gene_name "DFP4"; gene_id "YHL044W"; +chrVIII SGD gene 14901 15413 . + . gene_id "YHL043W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 14901 15413 . + . transcript_id "YHL043W_id001"; gene_id "YHL043W"; gene_name "ECM34"; transcript_biotype "protein_coding"; +chrVIII SGD exon 14901 15413 . + 0 transcript_id "YHL043W_id001"; gene_name "ECM34"; gene_id "YHL043W"; +chrVIII SGD gene 15428 16240 . + . gene_id "YHL042W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 15428 16240 . + . transcript_id "YHL042W_id002"; gene_id "YHL042W"; transcript_biotype "protein_coding"; +chrVIII SGD exon 15428 16240 . + . transcript_id "YHL042W_id002"; gene_id "YHL042W"; +chrVIII SGD transcript 15667 16119 . + . transcript_id "YHL042W_id001"; gene_id "YHL042W"; transcript_biotype "protein_coding"; +chrVIII SGD exon 15667 16119 . + 0 transcript_id "YHL042W_id001"; gene_id "YHL042W"; +chrVIII SGD gene 17392 17841 . + . gene_id "YHL041W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 17392 17841 . + . transcript_id "YHL041W_mRNA"; gene_id "YHL041W"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 17392 17841 . + 0 transcript_id "YHL041W_mRNA"; gene_id "YHL041W"; +chrVIII SGD gene 19088 20971 . - . gene_id "YHL040C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 19088 20971 . - . transcript_id "YHL040C_id001"; gene_id "YHL040C"; gene_name "ARN1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 19088 20971 . - 0 transcript_id "YHL040C_id001"; gene_name "ARN1"; gene_id "YHL040C"; +chrVIII SGD gene 21716 23608 . + . gene_id "YHL039W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 21716 23608 . + . transcript_id "YHL039W_id004"; gene_id "YHL039W"; gene_name "EFM1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 21716 23608 . + . transcript_id "YHL039W_id004"; gene_id "YHL039W"; gene_name "EFM1"; +chrVIII SGD transcript 21783 23540 . + . transcript_id "YHL039W_id001"; gene_id "YHL039W"; gene_name "EFM1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 21783 23540 . + 0 transcript_id "YHL039W_id001"; gene_name "EFM1"; gene_id "YHL039W"; +chrVIII SGD gene 23471 25544 . - . gene_id "YHL038C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 23471 25544 . - . transcript_id "YHL038C_id002"; gene_id "YHL038C"; gene_name "CBP2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 23471 25544 . - . transcript_id "YHL038C_id002"; gene_id "YHL038C"; gene_name "CBP2"; +chrVIII SGD transcript 23617 25509 . - . transcript_id "YHL038C_id001"; gene_id "YHL038C"; gene_name "CBP2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 23617 25509 . - 0 transcript_id "YHL038C_id001"; gene_name "CBP2"; gene_id "YHL038C"; +chrVIII SGD gene 25778 26179 . - . gene_id "YHL037C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 25778 26179 . - . transcript_id "YHL037C_id001"; gene_id "YHL037C"; transcript_biotype "protein_coding"; +chrVIII SGD exon 25778 26179 . - 0 transcript_id "YHL037C_id001"; gene_id "YHL037C"; +chrVIII SGD gene 26176 27948 . + . gene_id "YHL036W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 26176 27948 . + . transcript_id "YHL036W_id005"; gene_id "YHL036W"; gene_name "MUP3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 26176 27948 . + . transcript_id "YHL036W_id005"; gene_id "YHL036W"; gene_name "MUP3"; +chrVIII SGD transcript 26241 27881 . + . transcript_id "YHL036W_id001"; gene_id "YHL036W"; gene_name "MUP3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 26241 27881 . + 0 transcript_id "YHL036W_id001"; gene_name "MUP3"; gene_id "YHL036W"; +chrVIII SGD gene 27978 32756 . - . gene_id "YHL035C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 27978 32756 . - . transcript_id "YHL035C_mRNA"; gene_id "YHL035C"; gene_name "VMR1"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 27978 32756 . - 0 transcript_id "YHL035C_mRNA"; gene_name "VMR1"; gene_id "YHL035C"; +chrVIII SGD gene 33041 34271 . - . gene_id "YHL034C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 33041 34271 . - . transcript_id "YHL034C_id001"; gene_id "YHL034C"; gene_name "SBP1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 33041 34271 . - . transcript_id "YHL034C_id001"; gene_id "YHL034C"; gene_name "SBP1"; +chrVIII SGD gene 33176 33637 . + . gene_id "YHL034W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 33176 33637 . + . transcript_id "YHL034W-A_mRNA"; gene_id "YHL034W-A"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 33176 33637 . + 0 transcript_id "YHL034W-A_mRNA"; gene_id "YHL034W-A"; +chrVIII SGD transcript 33193 34077 . - . transcript_id "YHL034C_id003"; gene_id "YHL034C"; gene_name "SBP1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 33193 34077 . - 0 transcript_id "YHL034C_id003"; gene_name "SBP1"; gene_id "YHL034C"; +chrVIII SGD gene 34507 36037 . - . gene_id "YHL033C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 34507 36037 . - . transcript_id "YHL033C_id003"; gene_id "YHL033C"; gene_name "RPL8A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 34507 36037 . - . transcript_id "YHL033C_id003"; gene_id "YHL033C"; gene_name "RPL8A"; +chrVIII SGD transcript 35255 36025 . - . transcript_id "YHL033C_id001"; gene_id "YHL033C"; gene_name "RPL8A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 35255 36025 . - 0 transcript_id "YHL033C_id001"; gene_name "RPL8A"; gene_id "YHL033C"; +chrVIII SGD gene 36322 38620 . - . gene_id "YHL032C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 36322 38620 . - . transcript_id "YHL032C_id002"; gene_id "YHL032C"; gene_name "GUT1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 36322 38620 . - . transcript_id "YHL032C_id002"; gene_id "YHL032C"; gene_name "GUT1"; +chrVIII SGD transcript 36379 38508 . - . transcript_id "YHL032C_id001"; gene_id "YHL032C"; gene_name "GUT1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 36379 38508 . - 0 transcript_id "YHL032C_id001"; gene_name "GUT1"; gene_id "YHL032C"; +chrVIII SGD gene 38755 39786 . - . gene_id "YHL031C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 38755 39786 . - . transcript_id "YHL031C_id001"; gene_id "YHL031C"; gene_name "GOS1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 38755 39786 . - . transcript_id "YHL031C_id001"; gene_id "YHL031C"; gene_name "GOS1"; +chrVIII SGD transcript 38815 39486 . - . transcript_id "YHL031C_id002"; gene_id "YHL031C"; gene_name "GOS1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 38815 39486 . - 0 transcript_id "YHL031C_id002"; gene_name "GOS1"; gene_id "YHL031C"; +chrVIII SGD gene 39074 39535 . + . gene_id "YHL030W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 39074 39535 . + . transcript_id "YHL030W-A_mRNA"; gene_id "YHL030W-A"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 39074 39535 . + 0 transcript_id "YHL030W-A_mRNA"; gene_id "YHL030W-A"; +chrVIII SGD gene 40084 45690 . + . gene_id "YHL030W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 40084 45690 . + . transcript_id "YHL030W_mRNA"; gene_id "YHL030W"; gene_name "ECM29"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 40084 45690 . + 0 transcript_id "YHL030W_mRNA"; gene_name "ECM29"; gene_id "YHL030W"; +chrVIII SGD gene 45824 47988 . - . gene_id "YHL029C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 45824 47988 . - . transcript_id "YHL029C_id007"; gene_id "YHL029C"; gene_name "OCA5"; transcript_biotype "protein_coding"; +chrVIII SGD exon 45824 47988 . - . transcript_id "YHL029C_id007"; gene_id "YHL029C"; gene_name "OCA5"; +chrVIII SGD transcript 45929 47968 . - . transcript_id "YHL029C_id001"; gene_id "YHL029C"; gene_name "OCA5"; transcript_biotype "protein_coding"; +chrVIII SGD exon 45929 47968 . - 0 transcript_id "YHL029C_id001"; gene_name "OCA5"; gene_id "YHL029C"; +chrVIII SGD gene 48677 50660 . + . gene_id "YHL028W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 48677 50660 . + . transcript_id "YHL028W_id001"; gene_id "YHL028W"; gene_name "WSC4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 48677 50660 . + . transcript_id "YHL028W_id001"; gene_id "YHL028W"; gene_name "WSC4"; +chrVIII SGD transcript 48763 50580 . + . transcript_id "YHL028W_id004"; gene_id "YHL028W"; gene_name "WSC4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 48763 50580 . + 0 transcript_id "YHL028W_id004"; gene_name "WSC4"; gene_id "YHL028W"; +chrVIII SGD gene 50969 53195 . + . gene_id "YHL027W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 50969 53195 . + . transcript_id "YHL027W_id001"; gene_id "YHL027W"; gene_name "RIM101"; transcript_biotype "protein_coding"; +chrVIII SGD exon 50969 53195 . + . transcript_id "YHL027W_id001"; gene_id "YHL027W"; gene_name "RIM101"; +chrVIII SGD transcript 51111 52988 . + . transcript_id "YHL027W_id002"; gene_id "YHL027W"; gene_name "RIM101"; transcript_biotype "protein_coding"; +chrVIII SGD exon 51111 52988 . + 0 transcript_id "YHL027W_id002"; gene_name "RIM101"; gene_id "YHL027W"; +chrVIII SGD gene 53097 54271 . - . gene_id "YHL026C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 53097 54271 . - . transcript_id "YHL026C_id003"; gene_id "YHL026C"; transcript_biotype "protein_coding"; +chrVIII SGD exon 53097 54271 . - . transcript_id "YHL026C_id003"; gene_id "YHL026C"; +chrVIII SGD transcript 53219 54166 . - . transcript_id "YHL026C_id001"; gene_id "YHL026C"; transcript_biotype "protein_coding"; +chrVIII SGD exon 53219 54166 . - 0 transcript_id "YHL026C_id001"; gene_id "YHL026C"; +chrVIII SGD gene 54649 55952 . + . gene_id "YHL025W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 54649 55952 . + . transcript_id "YHL025W_id004"; gene_id "YHL025W"; gene_name "SNF6"; transcript_biotype "protein_coding"; +chrVIII SGD exon 54649 55952 . + . transcript_id "YHL025W_id004"; gene_id "YHL025W"; gene_name "SNF6"; +chrVIII SGD transcript 54851 55849 . + . transcript_id "YHL025W_id001"; gene_id "YHL025W"; gene_name "SNF6"; transcript_biotype "protein_coding"; +chrVIII SGD exon 54851 55849 . + 0 transcript_id "YHL025W_id001"; gene_name "SNF6"; gene_id "YHL025W"; +chrVIII SGD gene 56649 58790 . + . gene_id "YHL024W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 56649 58790 . + . transcript_id "YHL024W_mRNA"; gene_id "YHL024W"; gene_name "RIM4"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 56649 58790 . + 0 transcript_id "YHL024W_mRNA"; gene_name "RIM4"; gene_id "YHL024W"; +chrVIII SGD gene 59014 62595 . - . gene_id "YHL023C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 59014 62595 . - . transcript_id "YHL023C_id002"; gene_id "YHL023C"; gene_name "NPR3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 59014 62595 . - . transcript_id "YHL023C_id002"; gene_id "YHL023C"; gene_name "NPR3"; +chrVIII SGD transcript 59123 62563 . - . transcript_id "YHL023C_id001"; gene_id "YHL023C"; gene_name "NPR3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 59123 62563 . - 0 transcript_id "YHL023C_id001"; gene_name "NPR3"; gene_id "YHL023C"; +chrVIII SGD gene 62755 62826 . + . gene_id "YNCH0001W"; gene_biotype "ncRNA"; +chrVIII SGD transcript 62755 62826 . + . transcript_id "YNCH0001W_tRNA"; gene_id "YNCH0001W"; transcript_biotype "ncRNA"; +chrVIII SGD exon 62755 62826 . + . transcript_id "YNCH0001W_tRNA"; gene_id "YNCH0001W"; +chrVIII SGD gene 62961 64157 . - . gene_id "YHL022C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 62961 64157 . - . transcript_id "YHL022C_mRNA"; gene_id "YHL022C"; gene_name "SPO11"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 62961 64157 . - 0 transcript_id "YHL022C_mRNA"; gene_name "SPO11"; gene_id "YHL022C"; +chrVIII SGD gene 64331 65937 . - . gene_id "YHL021C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 64331 65937 . - . transcript_id "YHL021C_id003"; gene_id "YHL021C"; gene_name "AIM17"; transcript_biotype "protein_coding"; +chrVIII SGD exon 64331 65937 . - . transcript_id "YHL021C_id003"; gene_id "YHL021C"; gene_name "AIM17"; +chrVIII SGD transcript 64462 65859 . - . transcript_id "YHL021C_id001"; gene_id "YHL021C"; gene_name "AIM17"; transcript_biotype "protein_coding"; +chrVIII SGD exon 64462 65859 . - 0 transcript_id "YHL021C_id001"; gene_name "AIM17"; gene_id "YHL021C"; +chrVIII SGD gene 66116 67545 . - . gene_id "YHL020C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 66116 67545 . - . transcript_id "YHL020C_id003"; gene_id "YHL020C"; gene_name "OPI1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 66116 67545 . - . transcript_id "YHL020C_id003"; gene_id "YHL020C"; gene_name "OPI1"; +chrVIII SGD transcript 66242 67456 . - . transcript_id "YHL020C_id001"; gene_id "YHL020C"; gene_name "OPI1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 66242 67456 . - 0 transcript_id "YHL020C_id001"; gene_name "OPI1"; gene_id "YHL020C"; +chrVIII SGD gene 67643 69584 . - . gene_id "YHL019C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 67643 69584 . - . transcript_id "YHL019C_id002"; gene_id "YHL019C"; gene_name "APM2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 67643 69584 . - . transcript_id "YHL019C_id002"; gene_id "YHL019C"; gene_name "APM2"; +chrVIII SGD gene 67711 68304 . + . gene_id "YHL019W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 67711 68304 . + . transcript_id "YHL019W-A_mRNA"; gene_id "YHL019W-A"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 67711 68304 . + 0 transcript_id "YHL019W-A_mRNA"; gene_id "YHL019W-A"; +chrVIII SGD transcript 67731 69548 . - . transcript_id "YHL019C_id001"; gene_id "YHL019C"; gene_name "APM2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 67731 69548 . - 0 transcript_id "YHL019C_id001"; gene_name "APM2"; gene_id "YHL019C"; +chrVIII SGD gene 69708 70070 . + . gene_id "YHL018W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 69708 70070 . + . transcript_id "YHL018W_id001"; gene_id "YHL018W"; gene_name "MCO14"; transcript_biotype "protein_coding"; +chrVIII SGD exon 69708 70070 . + 0 transcript_id "YHL018W_id001"; gene_name "MCO14"; gene_id "YHL018W"; +chrVIII SGD gene 70164 71982 . + . gene_id "YHL017W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 70164 71982 . + . transcript_id "YHL017W_id001"; gene_id "YHL017W"; transcript_biotype "protein_coding"; +chrVIII SGD exon 70164 71982 . + . transcript_id "YHL017W_id001"; gene_id "YHL017W"; +chrVIII SGD transcript 70276 71874 . + . transcript_id "YHL017W_id004"; gene_id "YHL017W"; transcript_biotype "protein_coding"; +chrVIII SGD exon 70276 71874 . + 0 transcript_id "YHL017W_id004"; gene_id "YHL017W"; +chrVIII SGD gene 71955 74549 . - . gene_id "YHL016C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 71955 74549 . - . transcript_id "YHL016C_id001"; gene_id "YHL016C"; gene_name "DUR3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 71955 74549 . - . transcript_id "YHL016C_id001"; gene_id "YHL016C"; gene_name "DUR3"; +chrVIII SGD transcript 72037 74244 . - . transcript_id "YHL016C_id002"; gene_id "YHL016C"; gene_name "DUR3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 72037 74244 . - 0 transcript_id "YHL016C_id002"; gene_name "DUR3"; gene_id "YHL016C"; +chrVIII SGD gene 74699 74782 . + . gene_id "YHL015W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 74699 74782 . + . transcript_id "YHL015W-A_mRNA"; gene_id "YHL015W-A"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 74699 74782 . + 0 transcript_id "YHL015W-A_mRNA"; gene_id "YHL015W-A"; +chrVIII SGD gene 75412 75777 . + . gene_id "YHL015W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 75412 75777 . + . transcript_id "YHL015W_id001"; gene_id "YHL015W"; gene_name "RPS20"; transcript_biotype "protein_coding"; +chrVIII SGD exon 75412 75777 . + 0 transcript_id "YHL015W_id001"; gene_name "RPS20"; gene_id "YHL015W"; +chrVIII SGD gene 76037 77345 . - . gene_id "YHL014C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 76037 77345 . - . transcript_id "YHL014C_id003"; gene_id "YHL014C"; gene_name "YLF2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 76037 77345 . - . transcript_id "YHL014C_id003"; gene_id "YHL014C"; gene_name "YLF2"; +chrVIII SGD transcript 76097 77314 . - . transcript_id "YHL014C_id001"; gene_id "YHL014C"; gene_name "YLF2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 76097 77314 . - 0 transcript_id "YHL014C_id001"; gene_name "YLF2"; gene_id "YHL014C"; +chrVIII SGD gene 77299 78393 . - . gene_id "YHL013C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 77299 78393 . - . transcript_id "YHL013C_id003"; gene_id "YHL013C"; gene_name "OTU2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 77299 78393 . - . transcript_id "YHL013C_id003"; gene_id "YHL013C"; gene_name "OTU2"; +chrVIII SGD transcript 77430 78353 . - . transcript_id "YHL013C_id001"; gene_id "YHL013C"; gene_name "OTU2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 77430 78353 . - 0 transcript_id "YHL013C_id001"; gene_name "OTU2"; gene_id "YHL013C"; +chrVIII SGD gene 78936 80417 . + . gene_id "YHL012W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 78936 80417 . + . transcript_id "YHL012W_mRNA"; gene_id "YHL012W"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 78936 80417 . + 0 transcript_id "YHL012W_mRNA"; gene_id "YHL012W"; +chrVIII SGD gene 80380 81716 . - . gene_id "YHL011C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 80380 81716 . - . transcript_id "YHL011C_id002"; gene_id "YHL011C"; gene_name "PRS3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 80380 81716 . - . transcript_id "YHL011C_id002"; gene_id "YHL011C"; gene_name "PRS3"; +chrVIII SGD transcript 80654 81616 . - . transcript_id "YHL011C_id001"; gene_id "YHL011C"; gene_name "PRS3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 80654 81616 . - 0 transcript_id "YHL011C_id001"; gene_name "PRS3"; gene_id "YHL011C"; +chrVIII SGD gene 81964 83721 . - . gene_id "YHL010C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 81964 83721 . - . transcript_id "YHL010C_mRNA"; gene_id "YHL010C"; gene_name "ETP1"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 81964 83721 . - 0 transcript_id "YHL010C_mRNA"; gene_name "ETP1"; gene_id "YHL010C"; +chrVIII SGD gene 83715 85184 . - . gene_id "YHL009C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 83715 85184 . - . transcript_id "YHL009C_id002"; gene_id "YHL009C"; gene_name "YAP3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 83715 85184 . - . transcript_id "YHL009C_id002"; gene_id "YHL009C"; gene_name "YAP3"; +chrVIII SGD transcript 84068 85060 . - . transcript_id "YHL009C_id001"; gene_id "YHL009C"; gene_name "YAP3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 84068 85060 . - 0 transcript_id "YHL009C_id001"; gene_name "YAP3"; gene_id "YHL009C"; +chrVIII SGD gene 85298 85371 . - . gene_id "YNCH0002C"; gene_biotype "ncRNA"; +chrVIII SGD transcript 85298 85371 . - . transcript_id "YNCH0002C_tRNA"; gene_id "YNCH0002C"; transcript_biotype "ncRNA"; +chrVIII SGD exon 85298 85371 . - . transcript_id "YNCH0002C_tRNA"; gene_id "YNCH0002C"; +chrVIII SGD gene 85909 87150 . + . gene_id "YHL009W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 85909 87150 . + . transcript_id "YHL009W-A_dummy"; gene_id "YHL009W-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 85909 87150 . + 0 transcript_id "YHL009W-A_dummy"; gene_id "YHL009W-A"; +chrVIII SGD gene 85909 91318 . + . gene_id "YHL009W-B"; gene_biotype "protein_coding"; +chrVIII SGD transcript 85909 91318 . + . transcript_id "YHL009W-B_dummy"; gene_id "YHL009W-B"; transcript_biotype "protein_coding"; +chrVIII SGD exon 85909 86994 . + 0 transcript_id "YHL009W-B_dummy"; gene_id "YHL009W-B"; +chrVIII SGD exon 86996 91318 . + 0 transcript_id "YHL009W-B_dummy"; gene_id "YHL009W-B"; +chrVIII SGD gene 92452 94678 . - . gene_id "YHL008C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 92452 94678 . - . transcript_id "YHL008C_id003"; gene_id "YHL008C"; transcript_biotype "protein_coding"; +chrVIII SGD exon 92452 94678 . - . transcript_id "YHL008C_id003"; gene_id "YHL008C"; +chrVIII SGD transcript 92627 94510 . - . transcript_id "YHL008C_id001"; gene_id "YHL008C"; transcript_biotype "protein_coding"; +chrVIII SGD exon 92627 94510 . - 0 transcript_id "YHL008C_id001"; gene_id "YHL008C"; +chrVIII SGD gene 94977 98081 . - . gene_id "YHL007C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 94977 98081 . - . transcript_id "YHL007C_id002"; gene_id "YHL007C"; gene_name "STE20"; transcript_biotype "protein_coding"; +chrVIII SGD exon 94977 98081 . - . transcript_id "YHL007C_id002"; gene_id "YHL007C"; gene_name "STE20"; +chrVIII SGD transcript 95118 97937 . - . transcript_id "YHL007C_id001"; gene_id "YHL007C"; gene_name "STE20"; transcript_biotype "protein_coding"; +chrVIII SGD exon 95118 97937 . - 0 transcript_id "YHL007C_id001"; gene_name "STE20"; gene_id "YHL007C"; +chrVIII SGD gene 97236 98129 . + . gene_id "YHL006W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 97236 98129 . + . transcript_id "YHL006W-A_id001"; gene_id "YHL006W-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 97236 98129 . + . transcript_id "YHL006W-A_id001"; gene_id "YHL006W-A"; +chrVIII SGD transcript 97732 98085 . + . transcript_id "YHL006W-A_id003"; gene_id "YHL006W-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 97732 98085 . + 0 transcript_id "YHL006W-A_id003"; gene_id "YHL006W-A"; +chrVIII SGD gene 97943 98862 . - . gene_id "YHL006C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 97943 98862 . - . transcript_id "YHL006C_id007"; gene_id "YHL006C"; gene_name "SHU1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 97943 98862 . - . transcript_id "YHL006C_id007"; gene_id "YHL006C"; gene_name "SHU1"; +chrVIII SGD transcript 98343 98795 . - . transcript_id "YHL006C_id001"; gene_id "YHL006C"; gene_name "SHU1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 98343 98795 . - 0 transcript_id "YHL006C_id001"; gene_name "SHU1"; gene_id "YHL006C"; +chrVIII SGD gene 98828 99220 . - . gene_id "YHL005C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 98828 99220 . - . transcript_id "YHL005C_mRNA"; gene_id "YHL005C"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 98828 99220 . - 0 transcript_id "YHL005C_mRNA"; gene_id "YHL005C"; +chrVIII SGD gene 99139 100582 . + . gene_id "YHL004W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 99139 100582 . + . transcript_id "YHL004W_id003"; gene_id "YHL004W"; gene_name "MRP4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 99139 100582 . + . transcript_id "YHL004W_id003"; gene_id "YHL004W"; gene_name "MRP4"; +chrVIII SGD transcript 99219 100403 . + . transcript_id "YHL004W_id001"; gene_id "YHL004W"; gene_name "MRP4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 99219 100403 . + 0 transcript_id "YHL004W_id001"; gene_name "MRP4"; gene_id "YHL004W"; +chrVIII SGD gene 100391 102061 . - . gene_id "YHL003C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 100391 102061 . - . transcript_id "YHL003C_id001"; gene_id "YHL003C"; gene_name "LAG1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 100391 102061 . - . transcript_id "YHL003C_id001"; gene_id "YHL003C"; gene_name "LAG1"; +chrVIII SGD transcript 100648 101883 . - . transcript_id "YHL003C_id003"; gene_id "YHL003C"; gene_name "LAG1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 100648 101883 . - 0 transcript_id "YHL003C_id003"; gene_name "LAG1"; gene_id "YHL003C"; +chrVIII SGD gene 102565 104064 . + . gene_id "YHL002W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 102565 104064 . + . transcript_id "YHL002W_id003"; gene_id "YHL002W"; gene_name "HSE1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 102565 104064 . + . transcript_id "YHL002W_id003"; gene_id "YHL002W"; gene_name "HSE1"; +chrVIII SGD gene 102587 103075 . - . gene_id "YHL002C-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 102587 103075 . - . transcript_id "YHL002C-A_id001"; gene_id "YHL002C-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 102587 103075 . - 0 transcript_id "YHL002C-A_id001"; gene_id "YHL002C-A"; +chrVIII SGD transcript 102612 103970 . + . transcript_id "YHL002W_id001"; gene_id "YHL002W"; gene_name "HSE1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 102612 103970 . + 0 transcript_id "YHL002W_id001"; gene_name "HSE1"; gene_id "YHL002W"; +chrVIII SGD gene 104256 105378 . + . gene_id "YHL001W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 104256 105378 . + . transcript_id "YHL001W_id003"; gene_id "YHL001W"; gene_name "RPL14B"; transcript_biotype "protein_coding"; +chrVIII SGD exon 104256 105378 . + . transcript_id "YHL001W_id003"; gene_id "YHL001W"; gene_name "RPL14B"; +chrVIII SGD transcript 104277 105091 . + . transcript_id "YHL001W_id001"; gene_id "YHL001W"; gene_name "RPL14B"; transcript_biotype "protein_coding"; +chrVIII SGD exon 104277 104405 . + 0 transcript_id "YHL001W_id001"; gene_name "RPL14B"; gene_id "YHL001W"; +chrVIII SGD exon 104804 105091 . + 0 transcript_id "YHL001W_id001"; gene_name "RPL14B"; gene_id "YHL001W"; +chrVIII SGD gene 105963 107611 . + . gene_id "YHR001W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 105963 107611 . + . transcript_id "YHR001W_id002"; gene_id "YHR001W"; gene_name "OSH7"; transcript_biotype "protein_coding"; +chrVIII SGD exon 105963 107611 . + . transcript_id "YHR001W_id002"; gene_id "YHR001W"; gene_name "OSH7"; +chrVIII SGD transcript 106055 107368 . + . transcript_id "YHR001W_id001"; gene_id "YHR001W"; gene_name "OSH7"; transcript_biotype "protein_coding"; +chrVIII SGD exon 106055 107368 . + 0 transcript_id "YHR001W_id001"; gene_name "OSH7"; gene_id "YHR001W"; +chrVIII SGD gene 107762 108520 . + . gene_id "YHR001W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 107762 108520 . + . transcript_id "YHR001W-A_id002"; gene_id "YHR001W-A"; gene_name "QCR10"; transcript_biotype "protein_coding"; +chrVIII SGD exon 107762 108520 . + . transcript_id "YHR001W-A_id002"; gene_id "YHR001W-A"; gene_name "QCR10"; +chrVIII SGD transcript 107826 108122 . + . transcript_id "YHR001W-A_id001"; gene_id "YHR001W-A"; gene_name "QCR10"; transcript_biotype "protein_coding"; +chrVIII SGD exon 107826 107831 . + 0 transcript_id "YHR001W-A_id001"; gene_name "QCR10"; gene_id "YHR001W-A"; +chrVIII SGD exon 107895 108122 . + 0 transcript_id "YHR001W-A_id001"; gene_name "QCR10"; gene_id "YHR001W-A"; +chrVIII SGD gene 108664 110023 . + . gene_id "YHR002W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 108664 110023 . + . transcript_id "YHR002W_id011"; gene_id "YHR002W"; gene_name "LEU5"; transcript_biotype "protein_coding"; +chrVIII SGD exon 108664 110023 . + . transcript_id "YHR002W_id011"; gene_id "YHR002W"; gene_name "LEU5"; +chrVIII SGD transcript 108812 109885 . + . transcript_id "YHR002W_id001"; gene_id "YHR002W"; gene_name "LEU5"; transcript_biotype "protein_coding"; +chrVIII SGD exon 108812 109885 . + 0 transcript_id "YHR002W_id001"; gene_name "LEU5"; gene_id "YHR002W"; +chrVIII SGD gene 108978 111328 . - . gene_id "YHR003C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 108978 111328 . - . transcript_id "YHR003C_id001"; gene_id "YHR003C"; gene_name "TCD1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 108978 111328 . - . transcript_id "YHR003C_id001"; gene_id "YHR003C"; gene_name "TCD1"; +chrVIII SGD transcript 110028 111317 . - . transcript_id "YHR003C_id004"; gene_id "YHR003C"; gene_name "TCD1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 110028 111317 . - 0 transcript_id "YHR003C_id004"; gene_name "TCD1"; gene_id "YHR003C"; +chrVIII SGD gene 111754 113094 . - . gene_id "YHR004C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 111754 113094 . - . transcript_id "YHR004C_mRNA"; gene_id "YHR004C"; gene_name "NEM1"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 111754 113094 . - 0 transcript_id "YHR004C_mRNA"; gene_name "NEM1"; gene_id "YHR004C"; +chrVIII SGD gene 113404 115043 . - . gene_id "YHR005C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 113404 115043 . - . transcript_id "YHR005C_id001"; gene_id "YHR005C"; gene_name "GPA1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 113404 115043 . - . transcript_id "YHR005C_id001"; gene_id "YHR005C"; gene_name "GPA1"; +chrVIII SGD transcript 113499 114917 . - . transcript_id "YHR005C_id002"; gene_id "YHR005C"; gene_name "GPA1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 113499 114917 . - 0 transcript_id "YHR005C_id002"; gene_name "GPA1"; gene_id "YHR005C"; +chrVIII SGD gene 115049 115941 . - . gene_id "YHR005C-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 115049 115941 . - . transcript_id "YHR005C-A_id001"; gene_id "YHR005C-A"; gene_name "TIM10"; transcript_biotype "protein_coding"; +chrVIII SGD exon 115049 115941 . - . transcript_id "YHR005C-A_id001"; gene_id "YHR005C-A"; gene_name "TIM10"; +chrVIII SGD transcript 115620 115901 . - . transcript_id "YHR005C-A_id005"; gene_id "YHR005C-A"; gene_name "TIM10"; transcript_biotype "protein_coding"; +chrVIII SGD exon 115620 115901 . - 0 transcript_id "YHR005C-A_id005"; gene_name "TIM10"; gene_id "YHR005C-A"; +chrVIII SGD gene 116107 116179 . - . gene_id "YNCH0003C"; gene_biotype "ncRNA"; +chrVIII SGD transcript 116107 116179 . - . transcript_id "YNCH0003C_tRNA"; gene_id "YNCH0003C"; transcript_biotype "ncRNA"; +chrVIII SGD exon 116107 116179 . - . transcript_id "YNCH0003C_tRNA"; gene_id "YNCH0003C"; +chrVIII SGD gene 117764 119575 . + . gene_id "YHR006W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 117764 119575 . + . transcript_id "YHR006W_id001"; gene_id "YHR006W"; gene_name "STP2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 117764 119575 . + . transcript_id "YHR006W_id001"; gene_id "YHR006W"; gene_name "STP2"; +chrVIII SGD transcript 117814 119439 . + . transcript_id "YHR006W_id003"; gene_id "YHR006W"; gene_name "STP2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 117814 119439 . + 0 transcript_id "YHR006W_id003"; gene_name "STP2"; gene_id "YHR006W"; +chrVIII SGD gene 119821 121909 . - . gene_id "YHR007C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 119821 121909 . - . transcript_id "YHR007C_id001"; gene_id "YHR007C"; gene_name "ERG11"; transcript_biotype "protein_coding"; +chrVIII SGD exon 119821 121909 . - . transcript_id "YHR007C_id001"; gene_id "YHR007C"; gene_name "ERG11"; +chrVIII SGD transcript 120091 121683 . - . transcript_id "YHR007C_id002"; gene_id "YHR007C"; gene_name "ERG11"; transcript_biotype "protein_coding"; +chrVIII SGD exon 120091 121683 . - 0 transcript_id "YHR007C_id002"; gene_name "ERG11"; gene_id "YHR007C"; +chrVIII SGD gene 122550 122765 . - . gene_id "YHR007C-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 122550 122765 . - . transcript_id "YHR007C-A_id001"; gene_id "YHR007C-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 122550 122765 . - 0 transcript_id "YHR007C-A_id001"; gene_id "YHR007C-A"; +chrVIII SGD gene 122701 123723 . - . gene_id "YHR008C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 122701 123723 . - . transcript_id "YHR008C_id003"; gene_id "YHR008C"; gene_name "SOD2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 122701 123723 . - . transcript_id "YHR008C_id003"; gene_id "YHR008C"; gene_name "SOD2"; +chrVIII SGD transcript 122889 123590 . - . transcript_id "YHR008C_id001"; gene_id "YHR008C"; gene_name "SOD2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 122889 123590 . - 0 transcript_id "YHR008C_id001"; gene_name "SOD2"; gene_id "YHR008C"; +chrVIII SGD gene 123954 125915 . - . gene_id "YHR009C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 123954 125915 . - . transcript_id "YHR009C_id003"; gene_id "YHR009C"; gene_name "TDA3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 123954 125915 . - . transcript_id "YHR009C_id003"; gene_id "YHR009C"; gene_name "TDA3"; +chrVIII SGD transcript 124109 125680 . - . transcript_id "YHR009C_id001"; gene_id "YHR009C"; gene_name "TDA3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 124109 125680 . - 0 transcript_id "YHR009C_id001"; gene_name "TDA3"; gene_id "YHR009C"; +chrVIII SGD gene 126511 127870 . + . gene_id "YHR010W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 126511 127870 . + . transcript_id "YHR010W_id001"; gene_id "YHR010W"; gene_name "RPL27A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 126511 127870 . + . transcript_id "YHR010W_id001"; gene_id "YHR010W"; gene_name "RPL27A"; +chrVIII SGD transcript 126521 127492 . + . transcript_id "YHR010W_id005"; gene_id "YHR010W"; gene_name "RPL27A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 126521 126551 . + 0 transcript_id "YHR010W_id005"; gene_name "RPL27A"; gene_id "YHR010W"; +chrVIII SGD exon 127113 127492 . + 2 transcript_id "YHR010W_id005"; gene_name "RPL27A"; gene_id "YHR010W"; +chrVIII SGD gene 127775 129350 . + . gene_id "YHR011W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 127775 129350 . + . transcript_id "YHR011W_id004"; gene_id "YHR011W"; gene_name "DIA4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 127775 129350 . + . transcript_id "YHR011W_id004"; gene_id "YHR011W"; gene_name "DIA4"; +chrVIII SGD transcript 127780 129120 . + . transcript_id "YHR011W_id001"; gene_id "YHR011W"; gene_name "DIA4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 127780 129120 . + 0 transcript_id "YHR011W_id001"; gene_name "DIA4"; gene_id "YHR011W"; +chrVIII SGD gene 129460 130807 . + . gene_id "YHR012W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 129460 130807 . + . transcript_id "YHR012W_id003"; gene_id "YHR012W"; gene_name "VPS29"; transcript_biotype "protein_coding"; +chrVIII SGD exon 129460 130807 . + . transcript_id "YHR012W_id003"; gene_id "YHR012W"; gene_name "VPS29"; +chrVIII SGD transcript 129481 130448 . + . transcript_id "YHR012W_id001"; gene_id "YHR012W"; gene_name "VPS29"; transcript_biotype "protein_coding"; +chrVIII SGD exon 129481 129528 . + 0 transcript_id "YHR012W_id001"; gene_name "VPS29"; gene_id "YHR012W"; +chrVIII SGD exon 129648 130448 . + 0 transcript_id "YHR012W_id001"; gene_name "VPS29"; gene_id "YHR012W"; +chrVIII SGD gene 130318 131483 . - . gene_id "YHR013C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 130318 131483 . - . transcript_id "YHR013C_id001"; gene_id "YHR013C"; gene_name "ARD1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 130318 131483 . - . transcript_id "YHR013C_id001"; gene_id "YHR013C"; gene_name "ARD1"; +chrVIII SGD transcript 130730 131446 . - . transcript_id "YHR013C_id003"; gene_id "YHR013C"; gene_name "ARD1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 130730 131446 . - 0 transcript_id "YHR013C_id003"; gene_name "ARD1"; gene_id "YHR013C"; +chrVIII SGD gene 132047 132922 . + . gene_id "YHR014W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 132047 132922 . + . transcript_id "YHR014W_id001"; gene_id "YHR014W"; gene_name "SPO13"; transcript_biotype "protein_coding"; +chrVIII SGD exon 132047 132922 . + 0 transcript_id "YHR014W_id001"; gene_name "SPO13"; gene_id "YHR014W"; +chrVIII SGD gene 133026 133107 . - . gene_id "YNCH0004C"; gene_biotype "ncRNA"; +chrVIII SGD transcript 133026 133107 . - . transcript_id "YNCH0004C_tRNA"; gene_id "YNCH0004C"; transcript_biotype "ncRNA"; +chrVIII SGD exon 133026 133107 . - . transcript_id "YNCH0004C_tRNA"; gene_id "YNCH0004C"; +chrVIII SGD gene 134321 134392 . + . gene_id "YNCH0005W"; gene_biotype "ncRNA"; +chrVIII SGD transcript 134321 134392 . + . transcript_id "YNCH0005W_tRNA"; gene_id "YNCH0005W"; transcript_biotype "ncRNA"; +chrVIII SGD exon 134321 134392 . + . transcript_id "YNCH0005W_tRNA"; gene_id "YNCH0005W"; +chrVIII SGD gene 134554 136533 . + . gene_id "YHR015W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 134554 136533 . + . transcript_id "YHR015W_mRNA"; gene_id "YHR015W"; gene_name "MIP6"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 134554 136533 . + 0 transcript_id "YHR015W_mRNA"; gene_name "MIP6"; gene_id "YHR015W"; +chrVIII SGD gene 136684 138490 . - . gene_id "YHR016C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 136684 138490 . - . transcript_id "YHR016C_id006"; gene_id "YHR016C"; gene_name "YSC84"; transcript_biotype "protein_coding"; +chrVIII SGD exon 136684 138490 . - . transcript_id "YHR016C_id006"; gene_id "YHR016C"; gene_name "YSC84"; +chrVIII SGD transcript 136881 138455 . - . transcript_id "YHR016C_id001"; gene_id "YHR016C"; gene_name "YSC84"; transcript_biotype "protein_coding"; +chrVIII SGD exon 136881 138240 . - 1 transcript_id "YHR016C_id001"; gene_name "YSC84"; gene_id "YHR016C"; +chrVIII SGD exon 138409 138455 . - 0 transcript_id "YHR016C_id001"; gene_name "YSC84"; gene_id "YHR016C"; +chrVIII SGD gene 138668 139961 . + . gene_id "YHR017W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 138668 139961 . + . transcript_id "YHR017W_id003"; gene_id "YHR017W"; gene_name "YSC83"; transcript_biotype "protein_coding"; +chrVIII SGD exon 138668 139961 . + . transcript_id "YHR017W_id003"; gene_id "YHR017W"; gene_name "YSC83"; +chrVIII SGD transcript 138694 139851 . + . transcript_id "YHR017W_id001"; gene_id "YHR017W"; gene_name "YSC83"; transcript_biotype "protein_coding"; +chrVIII SGD exon 138694 139851 . + 0 transcript_id "YHR017W_id001"; gene_name "YSC83"; gene_id "YHR017W"; +chrVIII SGD gene 139442 141451 . - . gene_id "YHR018C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 139442 141451 . - . transcript_id "YHR018C_id001"; gene_id "YHR018C"; gene_name "ARG4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 139442 141451 . - . transcript_id "YHR018C_id001"; gene_id "YHR018C"; gene_name "ARG4"; +chrVIII SGD transcript 140011 141402 . - . transcript_id "YHR018C_id004"; gene_id "YHR018C"; gene_name "ARG4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 140011 141402 . - 0 transcript_id "YHR018C_id004"; gene_name "ARG4"; gene_id "YHR018C"; +chrVIII SGD gene 141730 143600 . - . gene_id "YHR019C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 141730 143600 . - . transcript_id "YHR019C_id004"; gene_id "YHR019C"; gene_name "DED81"; transcript_biotype "protein_coding"; +chrVIII SGD exon 141730 143600 . - . transcript_id "YHR019C_id004"; gene_id "YHR019C"; gene_name "DED81"; +chrVIII SGD transcript 141894 143558 . - . transcript_id "YHR019C_id001"; gene_id "YHR019C"; gene_name "DED81"; transcript_biotype "protein_coding"; +chrVIII SGD exon 141894 143558 . - 0 transcript_id "YHR019C_id001"; gene_name "DED81"; gene_id "YHR019C"; +chrVIII SGD gene 143860 146173 . + . gene_id "YHR020W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 143860 146173 . + . transcript_id "YHR020W_id001"; gene_id "YHR020W"; transcript_biotype "protein_coding"; +chrVIII SGD exon 143860 146173 . + . transcript_id "YHR020W_id001"; gene_id "YHR020W"; +chrVIII SGD transcript 143996 146062 . + . transcript_id "YHR020W_id002"; gene_id "YHR020W"; transcript_biotype "protein_coding"; +chrVIII SGD exon 143996 146062 . + 0 transcript_id "YHR020W_id002"; gene_id "YHR020W"; +chrVIII SGD gene 146242 146314 . - . gene_id "YNCH0006C"; gene_biotype "ncRNA"; +chrVIII SGD transcript 146242 146314 . - . transcript_id "YNCH0006C_tRNA"; gene_id "YNCH0006C"; transcript_biotype "ncRNA"; +chrVIII SGD exon 146242 146314 . - . transcript_id "YNCH0006C_tRNA"; gene_id "YNCH0006C"; +chrVIII SGD gene 147793 148944 . - . gene_id "YHR021C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 147793 148944 . - . transcript_id "YHR021C_id001"; gene_id "YHR021C"; gene_name "RPS27B"; transcript_biotype "protein_coding"; +chrVIII SGD exon 147793 148944 . - . transcript_id "YHR021C_id001"; gene_id "YHR021C"; gene_name "RPS27B"; +chrVIII SGD transcript 147871 148669 . - . transcript_id "YHR021C_id002"; gene_id "YHR021C"; gene_name "RPS27B"; transcript_biotype "protein_coding"; +chrVIII SGD exon 147871 148116 . - 0 transcript_id "YHR021C_id002"; gene_name "RPS27B"; gene_id "YHR021C"; +chrVIII SGD exon 148667 148669 . - 0 transcript_id "YHR021C_id002"; gene_name "RPS27B"; gene_id "YHR021C"; +chrVIII SGD gene 149225 149680 . + . gene_id "YHR021W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 149225 149680 . + . transcript_id "YHR021W-A_mRNA"; gene_id "YHR021W-A"; gene_name "ECM12"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 149225 149680 . + 0 transcript_id "YHR021W-A_mRNA"; gene_name "ECM12"; gene_id "YHR021W-A"; +chrVIII SGD gene 149575 150345 . - . gene_id "YHR022C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 149575 150345 . - . transcript_id "YHR022C_id001"; gene_id "YHR022C"; transcript_biotype "protein_coding"; +chrVIII SGD exon 149575 150345 . - 0 transcript_id "YHR022C_id001"; gene_id "YHR022C"; +chrVIII SGD gene 150422 151318 . - . gene_id "YHR022C-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 150422 151318 . - . transcript_id "YHR022C-A_id003"; gene_id "YHR022C-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 150422 151318 . - . transcript_id "YHR022C-A_id003"; gene_id "YHR022C-A"; +chrVIII SGD transcript 151217 151306 . - . transcript_id "YHR022C-A_id001"; gene_id "YHR022C-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 151217 151306 . - 0 transcript_id "YHR022C-A_id001"; gene_id "YHR022C-A"; +chrVIII SGD gene 151666 157452 . + . gene_id "YHR023W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 151666 157452 . + . transcript_id "YHR023W_mRNA"; gene_id "YHR023W"; gene_name "MYO1"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 151666 157452 . + 0 transcript_id "YHR023W_mRNA"; gene_name "MYO1"; gene_id "YHR023W"; +chrVIII SGD gene 157446 159272 . - . gene_id "YHR024C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 157446 159272 . - . transcript_id "YHR024C_id001"; gene_id "YHR024C"; gene_name "MAS2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 157446 159272 . - . transcript_id "YHR024C_id001"; gene_id "YHR024C"; gene_name "MAS2"; +chrVIII SGD transcript 157744 159192 . - . transcript_id "YHR024C_id002"; gene_id "YHR024C"; gene_name "MAS2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 157744 159192 . - 0 transcript_id "YHR024C_id002"; gene_name "MAS2"; gene_id "YHR024C"; +chrVIII SGD gene 159393 160714 . + . gene_id "YHR025W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 159393 160714 . + . transcript_id "YHR025W_id001"; gene_id "YHR025W"; gene_name "THR1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 159393 160714 . + . transcript_id "YHR025W_id001"; gene_id "YHR025W"; gene_name "THR1"; +chrVIII SGD transcript 159438 160511 . + . transcript_id "YHR025W_id011"; gene_id "YHR025W"; gene_name "THR1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 159438 160511 . + 0 transcript_id "YHR025W_id011"; gene_name "THR1"; gene_id "YHR025W"; +chrVIII SGD gene 160844 161485 . + . gene_id "YHR026W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 160844 161485 . + . transcript_id "YHR026W_id001"; gene_id "YHR026W"; gene_name "VMA16"; transcript_biotype "protein_coding"; +chrVIII SGD exon 160844 161485 . + 0 transcript_id "YHR026W_id001"; gene_name "VMA16"; gene_id "YHR026W"; +chrVIII SGD gene 161584 164768 . - . gene_id "YHR027C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 161584 164768 . - . transcript_id "YHR027C_id002"; gene_id "YHR027C"; gene_name "RPN1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 161584 164768 . - . transcript_id "YHR027C_id002"; gene_id "YHR027C"; gene_name "RPN1"; +chrVIII SGD transcript 161730 164711 . - . transcript_id "YHR027C_id001"; gene_id "YHR027C"; gene_name "RPN1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 161730 164711 . - 0 transcript_id "YHR027C_id001"; gene_name "RPN1"; gene_id "YHR027C"; +chrVIII SGD gene 164876 167561 . - . gene_id "YHR028C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 164876 167561 . - . transcript_id "YHR028C_id001"; gene_id "YHR028C"; gene_name "DAP2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 164876 167561 . - . transcript_id "YHR028C_id001"; gene_id "YHR028C"; gene_name "DAP2"; +chrVIII SGD transcript 164978 167434 . - . transcript_id "YHR028C_id002"; gene_id "YHR028C"; gene_name "DAP2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 164978 167434 . - 0 transcript_id "YHR028C_id002"; gene_name "DAP2"; gene_id "YHR028C"; +chrVIII SGD gene 167352 167672 . + . gene_id "YHR028W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 167352 167672 . + . transcript_id "YHR028W-A_id001"; gene_id "YHR028W-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 167352 167672 . + 0 transcript_id "YHR028W-A_id001"; gene_id "YHR028W-A"; +chrVIII SGD gene 167595 168610 . - . gene_id "YHR029C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 167595 168610 . - . transcript_id "YHR029C_id003"; gene_id "YHR029C"; gene_name "YHI9"; transcript_biotype "protein_coding"; +chrVIII SGD exon 167595 168610 . - . transcript_id "YHR029C_id003"; gene_id "YHR029C"; gene_name "YHI9"; +chrVIII SGD transcript 167677 168561 . - . transcript_id "YHR029C_id001"; gene_id "YHR029C"; gene_name "YHI9"; transcript_biotype "protein_coding"; +chrVIII SGD exon 167677 168561 . - 0 transcript_id "YHR029C_id001"; gene_name "YHI9"; gene_id "YHR029C"; +chrVIII SGD gene 168595 170500 . - . gene_id "YHR030C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 168595 170500 . - . transcript_id "YHR030C_id001"; gene_id "YHR030C"; gene_name "SLT2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 168595 170500 . - . transcript_id "YHR030C_id001"; gene_id "YHR030C"; gene_name "SLT2"; +chrVIII SGD transcript 168890 170344 . - . transcript_id "YHR030C_id003"; gene_id "YHR030C"; gene_name "SLT2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 168890 170344 . - 0 transcript_id "YHR030C_id003"; gene_name "SLT2"; gene_id "YHR030C"; +chrVIII SGD gene 170590 173011 . - . gene_id "YHR031C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 170590 173011 . - . transcript_id "YHR031C_id002"; gene_id "YHR031C"; gene_name "RRM3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 170590 173011 . - . transcript_id "YHR031C_id002"; gene_id "YHR031C"; gene_name "RRM3"; +chrVIII SGD transcript 170799 172970 . - . transcript_id "YHR031C_id001"; gene_id "YHR031C"; gene_name "RRM3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 170799 172970 . - 0 transcript_id "YHR031C_id001"; gene_name "RRM3"; gene_id "YHR031C"; +chrVIII SGD gene 173344 175089 . + . gene_id "YHR032W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 173344 175089 . + . transcript_id "YHR032W_mRNA"; gene_id "YHR032W"; gene_name "ERC1"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 173344 175089 . + 0 transcript_id "YHR032W_mRNA"; gene_name "ERC1"; gene_id "YHR032W"; +chrVIII SGD gene 173469 175502 . + . gene_id "YHR032W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 173469 175502 . + . transcript_id "YHR032W-A_id001"; gene_id "YHR032W-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 173469 175502 . + . transcript_id "YHR032W-A_id001"; gene_id "YHR032W-A"; +chrVIII SGD transcript 175195 175374 . + . transcript_id "YHR032W-A_id004"; gene_id "YHR032W-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 175195 175374 . + 0 transcript_id "YHR032W-A_id004"; gene_id "YHR032W-A"; +chrVIII SGD gene 175275 175394 . - . gene_id "YHR032C-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 175275 175394 . - . transcript_id "YHR032C-A_mRNA"; gene_id "YHR032C-A"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 175275 175394 . - 0 transcript_id "YHR032C-A_mRNA"; gene_id "YHR032C-A"; +chrVIII SGD gene 175548 176819 . + . gene_id "YHR033W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 175548 176819 . + . transcript_id "YHR033W_id001"; gene_id "YHR033W"; transcript_biotype "protein_coding"; +chrVIII SGD exon 175548 176819 . + 0 transcript_id "YHR033W_id001"; gene_id "YHR033W"; +chrVIII SGD gene 176867 178040 . - . gene_id "YHR034C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 176867 178040 . - . transcript_id "YHR034C_id001"; gene_id "YHR034C"; gene_name "PIH1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 176867 178040 . - . transcript_id "YHR034C_id001"; gene_id "YHR034C"; gene_name "PIH1"; +chrVIII SGD transcript 176965 177999 . - . transcript_id "YHR034C_id002"; gene_id "YHR034C"; gene_name "PIH1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 176965 177999 . - 0 transcript_id "YHR034C_id002"; gene_name "PIH1"; gene_id "YHR034C"; +chrVIII SGD gene 178219 180111 . + . gene_id "YHR035W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 178219 180111 . + . transcript_id "YHR035W_id001"; gene_id "YHR035W"; gene_name "NEL1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 178219 180111 . + 0 transcript_id "YHR035W_id001"; gene_name "NEL1"; gene_id "YHR035W"; +chrVIII SGD gene 180217 182086 . + . gene_id "YHR036W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 180217 182086 . + . transcript_id "YHR036W_id001"; gene_id "YHR036W"; gene_name "BRL1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 180217 182086 . + . transcript_id "YHR036W_id001"; gene_id "YHR036W"; gene_name "BRL1"; +chrVIII SGD transcript 180345 181760 . + . transcript_id "YHR036W_id002"; gene_id "YHR036W"; gene_name "BRL1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 180345 181760 . + 0 transcript_id "YHR036W_id002"; gene_name "BRL1"; gene_id "YHR036W"; +chrVIII SGD gene 181913 183873 . + . gene_id "YHR037W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 181913 183873 . + . transcript_id "YHR037W_id004"; gene_id "YHR037W"; gene_name "PUT2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 181913 183873 . + . transcript_id "YHR037W_id004"; gene_id "YHR037W"; gene_name "PUT2"; +chrVIII SGD transcript 181977 183704 . + . transcript_id "YHR037W_id001"; gene_id "YHR037W"; gene_name "PUT2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 181977 183704 . + 0 transcript_id "YHR037W_id001"; gene_name "PUT2"; gene_id "YHR037W"; +chrVIII SGD gene 184011 184858 . + . gene_id "YHR038W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 184011 184858 . + . transcript_id "YHR038W_id005"; gene_id "YHR038W"; gene_name "RRF1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 184011 184858 . + . transcript_id "YHR038W_id005"; gene_id "YHR038W"; gene_name "RRF1"; +chrVIII SGD transcript 184066 184758 . + . transcript_id "YHR038W_id001"; gene_id "YHR038W"; gene_name "RRF1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 184066 184758 . + 0 transcript_id "YHR038W_id001"; gene_name "RRF1"; gene_id "YHR038W"; +chrVIII SGD gene 184738 186932 . - . gene_id "YHR039C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 184738 186932 . - . transcript_id "YHR039C_id002"; gene_id "YHR039C"; gene_name "MSC7"; transcript_biotype "protein_coding"; +chrVIII SGD exon 184738 186932 . - . transcript_id "YHR039C_id002"; gene_id "YHR039C"; gene_name "MSC7"; +chrVIII SGD transcript 184875 186809 . - . transcript_id "YHR039C_id001"; gene_id "YHR039C"; gene_name "MSC7"; transcript_biotype "protein_coding"; +chrVIII SGD exon 184875 186809 . - 0 transcript_id "YHR039C_id001"; gene_name "MSC7"; gene_id "YHR039C"; +chrVIII SGD gene 187060 187745 . - . gene_id "YHR039C-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 187060 187745 . - . transcript_id "YHR039C-A_id001"; gene_id "YHR039C-A"; gene_name "VMA10"; transcript_biotype "protein_coding"; +chrVIII SGD exon 187060 187745 . - . transcript_id "YHR039C-A_id001"; gene_id "YHR039C-A"; gene_name "VMA10"; +chrVIII SGD transcript 187173 187679 . - . transcript_id "YHR039C-A_id004"; gene_id "YHR039C-A"; gene_name "VMA10"; transcript_biotype "protein_coding"; +chrVIII SGD exon 187173 187514 . - 0 transcript_id "YHR039C-A_id004"; gene_name "VMA10"; gene_id "YHR039C-A"; +chrVIII SGD exon 187677 187679 . - 0 transcript_id "YHR039C-A_id004"; gene_name "VMA10"; gene_id "YHR039C-A"; +chrVIII SGD gene 187883 189127 . + . gene_id "YHR040W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 187883 189127 . + . transcript_id "YHR040W_id005"; gene_id "YHR040W"; gene_name "BCD1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 187883 189127 . + . transcript_id "YHR040W_id005"; gene_id "YHR040W"; gene_name "BCD1"; +chrVIII SGD transcript 187924 189024 . + . transcript_id "YHR040W_id001"; gene_id "YHR040W"; gene_name "BCD1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 187924 189024 . + 0 transcript_id "YHR040W_id001"; gene_name "BCD1"; gene_id "YHR040W"; +chrVIII SGD gene 188845 189875 . - . gene_id "YHR041C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 188845 189875 . - . transcript_id "YHR041C_id002"; gene_id "YHR041C"; gene_name "SRB2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 188845 189875 . - . transcript_id "YHR041C_id002"; gene_id "YHR041C"; gene_name "SRB2"; +chrVIII SGD transcript 189131 189864 . - . transcript_id "YHR041C_id001"; gene_id "YHR041C"; gene_name "SRB2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 189131 189749 . - 1 transcript_id "YHR041C_id001"; gene_name "SRB2"; gene_id "YHR041C"; +chrVIII SGD exon 189851 189864 . - 0 transcript_id "YHR041C_id001"; gene_name "SRB2"; gene_id "YHR041C"; +chrVIII SGD gene 190465 192841 . + . gene_id "YHR042W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 190465 192841 . + . transcript_id "YHR042W_id001"; gene_id "YHR042W"; gene_name "NCP1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 190465 192841 . + . transcript_id "YHR042W_id001"; gene_id "YHR042W"; gene_name "NCP1"; +chrVIII SGD transcript 190543 192618 . + . transcript_id "YHR042W_id002"; gene_id "YHR042W"; gene_name "NCP1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 190543 192618 . + 0 transcript_id "YHR042W_id002"; gene_name "NCP1"; gene_id "YHR042W"; +chrVIII SGD gene 192669 193647 . - . gene_id "YHR043C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 192669 193647 . - . transcript_id "YHR043C_id003"; gene_id "YHR043C"; gene_name "DOG2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 192669 193647 . - . transcript_id "YHR043C_id003"; gene_id "YHR043C"; gene_name "DOG2"; +chrVIII SGD transcript 192805 193545 . - . transcript_id "YHR043C_id001"; gene_id "YHR043C"; gene_name "DOG2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 192805 193545 . - 0 transcript_id "YHR043C_id001"; gene_name "DOG2"; gene_id "YHR043C"; +chrVIII SGD gene 193818 195031 . - . gene_id "YHR044C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 193818 195031 . - . transcript_id "YHR044C_id003"; gene_id "YHR044C"; gene_name "DOG1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 193818 195031 . - . transcript_id "YHR044C_id003"; gene_id "YHR044C"; gene_name "DOG1"; +chrVIII SGD transcript 194068 194808 . - . transcript_id "YHR044C_id001"; gene_id "YHR044C"; gene_name "DOG1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 194068 194808 . - 0 transcript_id "YHR044C_id001"; gene_name "DOG1"; gene_id "YHR044C"; +chrVIII SGD gene 195421 197368 . + . gene_id "YHR045W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 195421 197368 . + . transcript_id "YHR045W_id001"; gene_id "YHR045W"; gene_name "DDE1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 195421 197368 . + . transcript_id "YHR045W_id001"; gene_id "YHR045W"; gene_name "DDE1"; +chrVIII SGD transcript 195551 197233 . + . transcript_id "YHR045W_id002"; gene_id "YHR045W"; gene_name "DDE1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 195551 197233 . + 0 transcript_id "YHR045W_id002"; gene_name "DDE1"; gene_id "YHR045W"; +chrVIII SGD gene 197150 198398 . - . gene_id "YHR046C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 197150 198398 . - . transcript_id "YHR046C_id002"; gene_id "YHR046C"; gene_name "INM1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 197150 198398 . - . transcript_id "YHR046C_id002"; gene_id "YHR046C"; gene_name "INM1"; +chrVIII SGD transcript 197398 198285 . - . transcript_id "YHR046C_id001"; gene_id "YHR046C"; gene_name "INM1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 197398 198285 . - 0 transcript_id "YHR046C_id001"; gene_name "INM1"; gene_id "YHR046C"; +chrVIII SGD gene 198489 201379 . - . gene_id "YHR047C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 198489 201379 . - . transcript_id "YHR047C_id001"; gene_id "YHR047C"; gene_name "AAP1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 198489 201379 . - . transcript_id "YHR047C_id001"; gene_id "YHR047C"; gene_name "AAP1"; +chrVIII SGD transcript 198740 201310 . - . transcript_id "YHR047C_id002"; gene_id "YHR047C"; gene_name "AAP1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 198740 201310 . - 0 transcript_id "YHR047C_id002"; gene_name "AAP1"; gene_id "YHR047C"; +chrVIII SGD gene 204607 206151 . + . gene_id "YHR048W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 204607 206151 . + . transcript_id "YHR048W_id001"; gene_id "YHR048W"; gene_name "YHK8"; transcript_biotype "protein_coding"; +chrVIII SGD exon 204607 206151 . + 0 transcript_id "YHR048W_id001"; gene_name "YHK8"; gene_id "YHR048W"; +chrVIII SGD gene 206427 207475 . + . gene_id "YHR049W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 206427 207475 . + . transcript_id "YHR049W_id001"; gene_id "YHR049W"; gene_name "FSH1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 206427 207475 . + . transcript_id "YHR049W_id001"; gene_id "YHR049W"; gene_name "FSH1"; +chrVIII SGD transcript 206462 207193 . + . transcript_id "YHR049W_id002"; gene_id "YHR049W"; gene_name "FSH1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 206462 207193 . + 0 transcript_id "YHR049W_id002"; gene_name "FSH1"; gene_id "YHR049W"; +chrVIII SGD gene 207234 207530 . - . gene_id "YHR049C-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 207234 207530 . - . transcript_id "YHR049C-A_id001"; gene_id "YHR049C-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 207234 207530 . - 0 transcript_id "YHR049C-A_id001"; gene_id "YHR049C-A"; +chrVIII SGD gene 207471 209533 . + . gene_id "YHR050W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 207471 209533 . + . transcript_id "YHR050W_id001"; gene_id "YHR050W"; gene_name "SMF2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 207471 209533 . + . transcript_id "YHR050W_id001"; gene_id "YHR050W"; gene_name "SMF2"; +chrVIII SGD transcript 207654 209303 . + . transcript_id "YHR050W_id002"; gene_id "YHR050W"; gene_name "SMF2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 207654 209303 . + 0 transcript_id "YHR050W_id002"; gene_name "SMF2"; gene_id "YHR050W"; +chrVIII SGD gene 209475 209645 . + . gene_id "YHR050W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 209475 209645 . + . transcript_id "YHR050W-A_id001"; gene_id "YHR050W-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 209475 209645 . + 0 transcript_id "YHR050W-A_id001"; gene_id "YHR050W-A"; +chrVIII SGD gene 209510 210605 . + . gene_id "YHR051W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 209510 210605 . + . transcript_id "YHR051W_id001"; gene_id "YHR051W"; gene_name "COX6"; transcript_biotype "protein_coding"; +chrVIII SGD exon 209510 210605 . + . transcript_id "YHR051W_id001"; gene_id "YHR051W"; gene_name "COX6"; +chrVIII SGD transcript 209705 210151 . + . transcript_id "YHR051W_id003"; gene_id "YHR051W"; gene_name "COX6"; transcript_biotype "protein_coding"; +chrVIII SGD exon 209705 210151 . + 0 transcript_id "YHR051W_id003"; gene_name "COX6"; gene_id "YHR051W"; +chrVIII SGD gene 210800 212123 . + . gene_id "YHR052W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 210800 212123 . + . transcript_id "YHR052W_id002"; gene_id "YHR052W"; gene_name "CIC1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 210800 212123 . + . transcript_id "YHR052W_id002"; gene_id "YHR052W"; gene_name "CIC1"; +chrVIII SGD transcript 210848 211978 . + . transcript_id "YHR052W_id001"; gene_id "YHR052W"; gene_name "CIC1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 210848 211978 . + 0 transcript_id "YHR052W_id001"; gene_name "CIC1"; gene_id "YHR052W"; +chrVIII SGD gene 212409 213118 . + . gene_id "YNCH0007W"; gene_biotype "ncRNA"; +chrVIII SGD transcript 212409 213118 . + . transcript_id "YNCH0007W_ncRNA"; gene_id "YNCH0007W"; gene_name "RUF5-1"; transcript_biotype "ncRNA"; +chrVIII SGD exon 212409 213118 . + . transcript_id "YNCH0007W_ncRNA"; gene_name "RUF5-1"; gene_id "YNCH0007W"; +chrVIII SGD gene 212510 212704 . + . gene_id "YHR052W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 212510 212704 . + . transcript_id "YHR052W-A_mRNA"; gene_id "YHR052W-A"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 212510 212704 . + 0 transcript_id "YHR052W-A_mRNA"; gene_id "YHR052W-A"; +chrVIII SGD gene 212519 212692 . - . gene_id "YHR052C-B"; gene_biotype "protein_coding"; +chrVIII SGD transcript 212519 212692 . - . transcript_id "YHR052C-B_mRNA"; gene_id "YHR052C-B"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 212519 212692 . - 0 transcript_id "YHR052C-B_mRNA"; gene_id "YHR052C-B"; +chrVIII SGD gene 212535 212720 . - . gene_id "YHR053C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 212535 212720 . - . transcript_id "YHR053C_mRNA"; gene_id "YHR053C"; gene_name "CUP1-1"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 212535 212720 . - 0 transcript_id "YHR053C_mRNA"; gene_name "CUP1-1"; gene_id "YHR053C"; +chrVIII SGD gene 213185 214249 . - . gene_id "YHR054C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 213185 214249 . - . transcript_id "YHR054C_mRNA"; gene_id "YHR054C"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 213185 214249 . - 0 transcript_id "YHR054C_mRNA"; gene_id "YHR054C"; +chrVIII SGD gene 214407 215116 . + . gene_id "YNCH0008W"; gene_biotype "ncRNA"; +chrVIII SGD transcript 214407 215116 . + . transcript_id "YNCH0008W_ncRNA"; gene_id "YNCH0008W"; gene_name "RUF5-2"; transcript_biotype "ncRNA"; +chrVIII SGD exon 214407 215116 . + . transcript_id "YNCH0008W_ncRNA"; gene_name "RUF5-2"; gene_id "YNCH0008W"; +chrVIII SGD gene 214508 214702 . + . gene_id "YHR054W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 214508 214702 . + . transcript_id "YHR054W-A_mRNA"; gene_id "YHR054W-A"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 214508 214702 . + 0 transcript_id "YHR054W-A_mRNA"; gene_id "YHR054W-A"; +chrVIII SGD gene 214517 214690 . - . gene_id "YHR054C-B"; gene_biotype "protein_coding"; +chrVIII SGD transcript 214517 214690 . - . transcript_id "YHR054C-B_mRNA"; gene_id "YHR054C-B"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 214517 214690 . - 0 transcript_id "YHR054C-B_mRNA"; gene_id "YHR054C-B"; +chrVIII SGD gene 214533 214718 . - . gene_id "YHR055C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 214533 214718 . - . transcript_id "YHR055C_mRNA"; gene_id "YHR055C"; gene_name "CUP1-2"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 214533 214718 . - 0 transcript_id "YHR055C_mRNA"; gene_name "CUP1-2"; gene_id "YHR055C"; +chrVIII SGD gene 215183 217834 . - . gene_id "YHR056C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 215183 217834 . - . transcript_id "YHR056C_mRNA"; gene_id "YHR056C"; gene_name "RSC30"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 215183 217834 . - 0 transcript_id "YHR056C_mRNA"; gene_name "RSC30"; gene_id "YHR056C"; +chrVIII SGD gene 217199 218243 . + . gene_id "YHR056W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 217199 218243 . + . transcript_id "YHR056W-A_id001"; gene_id "YHR056W-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 217199 218243 . + . transcript_id "YHR056W-A_id001"; gene_id "YHR056W-A"; +chrVIII SGD transcript 217406 217840 . + . transcript_id "YHR056W-A_id003"; gene_id "YHR056W-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 217406 217840 . + 0 transcript_id "YHR056W-A_id003"; gene_id "YHR056W-A"; +chrVIII SGD gene 218154 219716 . - . gene_id "YHR057C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 218154 219716 . - . transcript_id "YHR057C_id002"; gene_id "YHR057C"; gene_name "CPR2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 218154 219716 . - . transcript_id "YHR057C_id002"; gene_id "YHR057C"; gene_name "CPR2"; +chrVIII SGD transcript 218226 218843 . - . transcript_id "YHR057C_id001"; gene_id "YHR057C"; gene_name "CPR2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 218226 218843 . - 0 transcript_id "YHR057C_id001"; gene_name "CPR2"; gene_id "YHR057C"; +chrVIII SGD gene 218922 219928 . - . gene_id "YHR058C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 218922 219928 . - . transcript_id "YHR058C_id006"; gene_id "YHR058C"; gene_name "MED6"; transcript_biotype "protein_coding"; +chrVIII SGD exon 218922 219928 . - . transcript_id "YHR058C_id006"; gene_id "YHR058C"; gene_name "MED6"; +chrVIII SGD transcript 218997 219884 . - . transcript_id "YHR058C_id001"; gene_id "YHR058C"; gene_name "MED6"; transcript_biotype "protein_coding"; +chrVIII SGD exon 218997 219884 . - 0 transcript_id "YHR058C_id001"; gene_name "MED6"; gene_id "YHR058C"; +chrVIII SGD gene 219801 220601 . + . gene_id "YHR059W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 219801 220601 . + . transcript_id "YHR059W_id001"; gene_id "YHR059W"; gene_name "FYV4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 219801 220601 . + . transcript_id "YHR059W_id001"; gene_id "YHR059W"; gene_name "FYV4"; +chrVIII SGD transcript 220108 220500 . + . transcript_id "YHR059W_id002"; gene_id "YHR059W"; gene_name "FYV4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 220108 220500 . + 0 transcript_id "YHR059W_id002"; gene_name "FYV4"; gene_id "YHR059W"; +chrVIII SGD gene 220695 221382 . + . gene_id "YHR060W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 220695 221382 . + . transcript_id "YHR060W_id001"; gene_id "YHR060W"; gene_name "VMA22"; transcript_biotype "protein_coding"; +chrVIII SGD exon 220695 221382 . + . transcript_id "YHR060W_id001"; gene_id "YHR060W"; gene_name "VMA22"; +chrVIII SGD transcript 220725 221270 . + . transcript_id "YHR060W_id005"; gene_id "YHR060W"; gene_name "VMA22"; transcript_biotype "protein_coding"; +chrVIII SGD exon 220725 221270 . + 0 transcript_id "YHR060W_id005"; gene_name "VMA22"; gene_id "YHR060W"; +chrVIII SGD gene 221261 222640 . - . gene_id "YHR061C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 221261 222640 . - . transcript_id "YHR061C_id002"; gene_id "YHR061C"; gene_name "GIC1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 221261 222640 . - . transcript_id "YHR061C_id002"; gene_id "YHR061C"; gene_name "GIC1"; +chrVIII SGD transcript 221534 222478 . - . transcript_id "YHR061C_id001"; gene_id "YHR061C"; gene_name "GIC1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 221534 222478 . - 0 transcript_id "YHR061C_id001"; gene_name "GIC1"; gene_id "YHR061C"; +chrVIII SGD gene 222796 223885 . - . gene_id "YHR062C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 222796 223885 . - . transcript_id "YHR062C_id002"; gene_id "YHR062C"; gene_name "RPP1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 222796 223885 . - . transcript_id "YHR062C_id002"; gene_id "YHR062C"; gene_name "RPP1"; +chrVIII SGD transcript 222877 223758 . - . transcript_id "YHR062C_id001"; gene_id "YHR062C"; gene_name "RPP1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 222877 223758 . - 0 transcript_id "YHR062C_id001"; gene_name "RPP1"; gene_id "YHR062C"; +chrVIII SGD gene 223902 225250 . - . gene_id "YHR063C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 223902 225250 . - . transcript_id "YHR063C_id001"; gene_id "YHR063C"; gene_name "PAN5"; transcript_biotype "protein_coding"; +chrVIII SGD exon 223902 225250 . - . transcript_id "YHR063C_id001"; gene_id "YHR063C"; gene_name "PAN5"; +chrVIII SGD transcript 224030 225169 . - . transcript_id "YHR063C_id002"; gene_id "YHR063C"; gene_name "PAN5"; transcript_biotype "protein_coding"; +chrVIII SGD exon 224030 225169 . - 0 transcript_id "YHR063C_id002"; gene_name "PAN5"; gene_id "YHR063C"; +chrVIII SGD gene 225342 227193 . - . gene_id "YHR064C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 225342 227193 . - . transcript_id "YHR064C_id001"; gene_id "YHR064C"; gene_name "SSZ1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 225342 227193 . - . transcript_id "YHR064C_id001"; gene_id "YHR064C"; gene_name "SSZ1"; +chrVIII SGD gene 225442 225777 . + . gene_id "YHR063W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 225442 225777 . + . transcript_id "YHR063W-A_mRNA"; gene_id "YHR063W-A"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 225442 225777 . + 0 transcript_id "YHR063W-A_mRNA"; gene_id "YHR063W-A"; +chrVIII SGD transcript 225525 227141 . - . transcript_id "YHR064C_id004"; gene_id "YHR064C"; gene_name "SSZ1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 225525 227141 . - 0 transcript_id "YHR064C_id004"; gene_name "SSZ1"; gene_id "YHR064C"; +chrVIII SGD gene 227404 229103 . - . gene_id "YHR065C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 227404 229103 . - . transcript_id "YHR065C_id001"; gene_id "YHR065C"; gene_name "RRP3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 227404 229103 . - . transcript_id "YHR065C_id001"; gene_id "YHR065C"; gene_name "RRP3"; +chrVIII SGD transcript 227532 229037 . - . transcript_id "YHR065C_id002"; gene_id "YHR065C"; gene_name "RRP3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 227532 229037 . - 0 transcript_id "YHR065C_id002"; gene_name "RRP3"; gene_id "YHR065C"; +chrVIII SGD gene 229281 230869 . + . gene_id "YHR066W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 229281 230869 . + . transcript_id "YHR066W_id001"; gene_id "YHR066W"; gene_name "SSF1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 229281 230869 . + . transcript_id "YHR066W_id001"; gene_id "YHR066W"; gene_name "SSF1"; +chrVIII SGD transcript 229335 230696 . + . transcript_id "YHR066W_id002"; gene_id "YHR066W"; gene_name "SSF1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 229335 230696 . + 0 transcript_id "YHR066W_id002"; gene_name "SSF1"; gene_id "YHR066W"; +chrVIII SGD gene 229729 232148 . + . gene_id "YHR067W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 229729 232148 . + . transcript_id "YHR067W_id001"; gene_id "YHR067W"; gene_name "HTD2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 229729 232148 . + . transcript_id "YHR067W_id001"; gene_id "YHR067W"; gene_name "HTD2"; +chrVIII SGD transcript 230970 231812 . + . transcript_id "YHR067W_id002"; gene_id "YHR067W"; gene_name "HTD2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 230970 231812 . + 0 transcript_id "YHR067W_id002"; gene_name "HTD2"; gene_id "YHR067W"; +chrVIII SGD gene 232054 233597 . + . gene_id "YHR068W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 232054 233597 . + . transcript_id "YHR068W_id004"; gene_id "YHR068W"; gene_name "DYS1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 232054 233597 . + . transcript_id "YHR068W_id004"; gene_id "YHR068W"; gene_name "DYS1"; +chrVIII SGD transcript 232133 233296 . + . transcript_id "YHR068W_id001"; gene_id "YHR068W"; gene_name "DYS1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 232133 233296 . + 0 transcript_id "YHR068W_id001"; gene_name "DYS1"; gene_id "YHR068W"; +chrVIII SGD gene 233335 234672 . - . gene_id "YHR069C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 233335 234672 . - . transcript_id "YHR069C_id002"; gene_id "YHR069C"; gene_name "RRP4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 233335 234672 . - . transcript_id "YHR069C_id002"; gene_id "YHR069C"; gene_name "RRP4"; +chrVIII SGD transcript 233579 234658 . - . transcript_id "YHR069C_id001"; gene_id "YHR069C"; gene_name "RRP4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 233579 234658 . - 0 transcript_id "YHR069C_id001"; gene_name "RRP4"; gene_id "YHR069C"; +chrVIII SGD gene 234819 236927 . + . gene_id "YHR070W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 234819 236927 . + . transcript_id "YHR070W_id001"; gene_id "YHR070W"; gene_name "TRM5"; transcript_biotype "protein_coding"; +chrVIII SGD exon 234819 236927 . + . transcript_id "YHR070W_id001"; gene_id "YHR070W"; gene_name "TRM5"; +chrVIII SGD gene 234874 235236 . - . gene_id "YHR069C-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 234874 235236 . - . transcript_id "YHR069C-A_id001"; gene_id "YHR069C-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 234874 235236 . - 0 transcript_id "YHR069C-A_id001"; gene_id "YHR069C-A"; +chrVIII SGD transcript 234881 236380 . + . transcript_id "YHR070W_id002"; gene_id "YHR070W"; gene_name "TRM5"; transcript_biotype "protein_coding"; +chrVIII SGD exon 234881 236380 . + 0 transcript_id "YHR070W_id002"; gene_name "TRM5"; gene_id "YHR070W"; +chrVIII SGD gene 236102 236512 . - . gene_id "YHR070C-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 236102 236512 . - . transcript_id "YHR070C-A_mRNA"; gene_id "YHR070C-A"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 236102 236512 . - 0 transcript_id "YHR070C-A_mRNA"; gene_id "YHR070C-A"; +chrVIII SGD gene 237004 237693 . + . gene_id "YHR071W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 237004 237693 . + . transcript_id "YHR071W_mRNA"; gene_id "YHR071W"; gene_name "PCL5"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 237004 237693 . + 0 transcript_id "YHR071W_mRNA"; gene_name "PCL5"; gene_id "YHR071W"; +chrVIII SGD gene 237848 237939 . - . gene_id "YNCH0009C"; gene_biotype "ncRNA"; +chrVIII SGD transcript 237848 237939 . - . transcript_id "YNCH0009C_tRNA"; gene_id "YNCH0009C"; transcript_biotype "ncRNA"; +chrVIII SGD exon 237848 237883 . - . transcript_id "YNCH0009C_tRNA"; gene_id "YNCH0009C"; +chrVIII SGD exon 237903 237939 . - . transcript_id "YNCH0009C_tRNA"; gene_id "YNCH0009C"; +chrVIII SGD gene 238910 239230 . - . gene_id "YHR071C-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 238910 239230 . - . transcript_id "YHR071C-A_id001"; gene_id "YHR071C-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 238910 239230 . - 0 transcript_id "YHR071C-A_id001"; gene_id "YHR071C-A"; +chrVIII SGD gene 239032 241407 . + . gene_id "YHR072W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 239032 241407 . + . transcript_id "YHR072W_id006"; gene_id "YHR072W"; gene_name "ERG7"; transcript_biotype "protein_coding"; +chrVIII SGD exon 239032 241407 . + . transcript_id "YHR072W_id006"; gene_id "YHR072W"; gene_name "ERG7"; +chrVIII SGD transcript 239098 241293 . + . transcript_id "YHR072W_id001"; gene_id "YHR072W"; gene_name "ERG7"; transcript_biotype "protein_coding"; +chrVIII SGD exon 239098 241293 . + 0 transcript_id "YHR072W_id001"; gene_name "ERG7"; gene_id "YHR072W"; +chrVIII SGD gene 241623 242157 . + . gene_id "YHR072W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 241623 242157 . + . transcript_id "YHR072W-A_id001"; gene_id "YHR072W-A"; gene_name "NOP10"; transcript_biotype "protein_coding"; +chrVIII SGD exon 241623 242157 . + . transcript_id "YHR072W-A_id001"; gene_id "YHR072W-A"; gene_name "NOP10"; +chrVIII SGD transcript 241664 241840 . + . transcript_id "YHR072W-A_id003"; gene_id "YHR072W-A"; gene_name "NOP10"; transcript_biotype "protein_coding"; +chrVIII SGD exon 241664 241840 . + 0 transcript_id "YHR072W-A_id003"; gene_name "NOP10"; gene_id "YHR072W-A"; +chrVIII SGD gene 242582 245572 . + . gene_id "YHR073W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 242582 245572 . + . transcript_id "YHR073W_mRNA"; gene_id "YHR073W"; gene_name "OSH3"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 242582 245572 . + 0 transcript_id "YHR073W_mRNA"; gene_name "OSH3"; gene_id "YHR073W"; +chrVIII SGD gene 242868 243044 . + . gene_id "YHR073W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 242868 243044 . + . transcript_id "YHR073W-A_id001"; gene_id "YHR073W-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 242868 243044 . + 0 transcript_id "YHR073W-A_id001"; gene_id "YHR073W-A"; +chrVIII SGD gene 245422 245502 . - . gene_id "YHR073C-B"; gene_biotype "protein_coding"; +chrVIII SGD transcript 245422 245502 . - . transcript_id "YHR073C-B_id001"; gene_id "YHR073C-B"; transcript_biotype "protein_coding"; +chrVIII SGD exon 245422 245502 . - 0 transcript_id "YHR073C-B_id001"; gene_id "YHR073C-B"; +chrVIII SGD gene 245958 248450 . + . gene_id "YHR074W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 245958 248450 . + . transcript_id "YHR074W_id002"; gene_id "YHR074W"; gene_name "QNS1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 245958 248450 . + . transcript_id "YHR074W_id002"; gene_id "YHR074W"; gene_name "QNS1"; +chrVIII SGD transcript 246193 248337 . + . transcript_id "YHR074W_id001"; gene_id "YHR074W"; gene_name "QNS1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 246193 248337 . + 0 transcript_id "YHR074W_id001"; gene_name "QNS1"; gene_id "YHR074W"; +chrVIII SGD gene 248373 249700 . - . gene_id "YHR075C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 248373 249700 . - . transcript_id "YHR075C_id004"; gene_id "YHR075C"; gene_name "PPE1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 248373 249700 . - . transcript_id "YHR075C_id004"; gene_id "YHR075C"; gene_name "PPE1"; +chrVIII SGD transcript 248439 249641 . - . transcript_id "YHR075C_id001"; gene_id "YHR075C"; gene_name "PPE1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 248439 249641 . - 0 transcript_id "YHR075C_id001"; gene_name "PPE1"; gene_id "YHR075C"; +chrVIII SGD gene 250532 252364 . + . gene_id "YHR076W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 250532 252364 . + . transcript_id "YHR076W_id002"; gene_id "YHR076W"; gene_name "PTC7"; transcript_biotype "protein_coding"; +chrVIII SGD exon 250532 252364 . + . transcript_id "YHR076W_id002"; gene_id "YHR076W"; gene_name "PTC7"; +chrVIII SGD transcript 251101 252225 . + . transcript_id "YHR076W_id001"; gene_id "YHR076W"; gene_name "PTC7"; transcript_biotype "protein_coding"; +chrVIII SGD exon 251101 251155 . + 0 transcript_id "YHR076W_id001"; gene_name "PTC7"; gene_id "YHR076W"; +chrVIII SGD exon 251249 252225 . + 2 transcript_id "YHR076W_id001"; gene_name "PTC7"; gene_id "YHR076W"; +chrVIII SGD gene 252374 255756 . - . gene_id "YHR077C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 252374 255756 . - . transcript_id "YHR077C_id001"; gene_id "YHR077C"; gene_name "NMD2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 252374 255637 . - 0 transcript_id "YHR077C_id001"; gene_name "NMD2"; gene_id "YHR077C"; +chrVIII SGD exon 255751 255756 . - 0 transcript_id "YHR077C_id001"; gene_name "NMD2"; gene_id "YHR077C"; +chrVIII SGD gene 256111 258151 . + . gene_id "YHR078W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 256111 258151 . + . transcript_id "YHR078W_id001"; gene_id "YHR078W"; transcript_biotype "protein_coding"; +chrVIII SGD exon 256111 258151 . + . transcript_id "YHR078W_id001"; gene_id "YHR078W"; +chrVIII SGD transcript 256360 258018 . + . transcript_id "YHR078W_id002"; gene_id "YHR078W"; transcript_biotype "protein_coding"; +chrVIII SGD exon 256360 258018 . + 0 transcript_id "YHR078W_id002"; gene_id "YHR078W"; +chrVIII SGD gene 258244 261591 . - . gene_id "YHR079C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 258244 261591 . - . transcript_id "YHR079C_id001"; gene_id "YHR079C"; gene_name "IRE1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 258244 261591 . - 0 transcript_id "YHR079C_id001"; gene_name "IRE1"; gene_id "YHR079C"; +chrVIII SGD gene 262192 262553 . - . gene_id "YHR079C-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 262192 262553 . - . transcript_id "YHR079C-A_mRNA"; gene_id "YHR079C-A"; gene_name "SAE3"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 262192 262354 . - 1 transcript_id "YHR079C-A_mRNA"; gene_name "SAE3"; gene_id "YHR079C-A"; +chrVIII SGD CDS 262441 262553 . - 0 transcript_id "YHR079C-A_mRNA"; gene_name "SAE3"; gene_id "YHR079C-A"; +chrVIII SGD gene 262801 266838 . - . gene_id "YHR080C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 262801 266838 . - . transcript_id "YHR080C_id001"; gene_id "YHR080C"; gene_name "LAM4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 262801 266838 . - 0 transcript_id "YHR080C_id001"; gene_name "LAM4"; gene_id "YHR080C"; +chrVIII SGD gene 267250 268215 . + . gene_id "YHR081W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 267250 268215 . + . transcript_id "YHR081W_id001"; gene_id "YHR081W"; gene_name "LRP1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 267250 268215 . + . transcript_id "YHR081W_id001"; gene_id "YHR081W"; gene_name "LRP1"; +chrVIII SGD transcript 267538 268092 . + . transcript_id "YHR081W_id005"; gene_id "YHR081W"; gene_name "LRP1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 267538 268092 . + 0 transcript_id "YHR081W_id005"; gene_name "LRP1"; gene_id "YHR081W"; +chrVIII SGD gene 268459 271548 . - . gene_id "YHR082C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 268459 271548 . - . transcript_id "YHR082C_id001"; gene_id "YHR082C"; gene_name "KSP1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 268459 271548 . - 0 transcript_id "YHR082C_id001"; gene_name "KSP1"; gene_id "YHR082C"; +chrVIII SGD gene 272606 273857 . + . gene_id "YHR083W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 272606 273857 . + . transcript_id "YHR083W_id002"; gene_id "YHR083W"; gene_name "SAM35"; transcript_biotype "protein_coding"; +chrVIII SGD exon 272606 273857 . + . transcript_id "YHR083W_id002"; gene_id "YHR083W"; gene_name "SAM35"; +chrVIII SGD transcript 272627 273616 . + . transcript_id "YHR083W_id001"; gene_id "YHR083W"; gene_name "SAM35"; transcript_biotype "protein_coding"; +chrVIII SGD exon 272627 273616 . + 0 transcript_id "YHR083W_id001"; gene_name "SAM35"; gene_id "YHR083W"; +chrVIII SGD gene 273859 276570 . + . gene_id "YHR084W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 273859 276570 . + . transcript_id "YHR084W_id001"; gene_id "YHR084W"; gene_name "STE12"; transcript_biotype "protein_coding"; +chrVIII SGD exon 273859 276570 . + . transcript_id "YHR084W_id001"; gene_id "YHR084W"; gene_name "STE12"; +chrVIII SGD transcript 274174 276240 . + . transcript_id "YHR084W_id002"; gene_id "YHR084W"; gene_name "STE12"; transcript_biotype "protein_coding"; +chrVIII SGD exon 274174 276240 . + 0 transcript_id "YHR084W_id002"; gene_name "STE12"; gene_id "YHR084W"; +chrVIII SGD gene 276713 277915 . + . gene_id "YHR085W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 276713 277915 . + . transcript_id "YHR085W_id001"; gene_id "YHR085W"; gene_name "IPI1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 276713 277915 . + . transcript_id "YHR085W_id001"; gene_id "YHR085W"; gene_name "IPI1"; +chrVIII SGD transcript 276764 277768 . + . transcript_id "YHR085W_id005"; gene_id "YHR085W"; gene_name "IPI1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 276764 277768 . + 0 transcript_id "YHR085W_id005"; gene_name "IPI1"; gene_id "YHR085W"; +chrVIII SGD gene 277921 280168 . + . gene_id "YHR086W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 277921 280168 . + . transcript_id "YHR086W_id002"; gene_id "YHR086W"; gene_name "NAM8"; transcript_biotype "protein_coding"; +chrVIII SGD exon 277921 280168 . + . transcript_id "YHR086W_id002"; gene_id "YHR086W"; gene_name "NAM8"; +chrVIII SGD transcript 278153 279724 . + . transcript_id "YHR086W_id001"; gene_id "YHR086W"; gene_name "NAM8"; transcript_biotype "protein_coding"; +chrVIII SGD exon 278153 279724 . + 0 transcript_id "YHR086W_id001"; gene_name "NAM8"; gene_id "YHR086W"; +chrVIII SGD gene 280231 280392 . + . gene_id "YHR086W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 280231 280392 . + . transcript_id "YHR086W-A_mRNA"; gene_id "YHR086W-A"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 280231 280392 . + 0 transcript_id "YHR086W-A_mRNA"; gene_id "YHR086W-A"; +chrVIII SGD gene 280470 281339 . + . gene_id "YHR087W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 280470 281339 . + . transcript_id "YHR087W_id001"; gene_id "YHR087W"; gene_name "RTC3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 280470 281339 . + . transcript_id "YHR087W_id001"; gene_id "YHR087W"; gene_name "RTC3"; +chrVIII SGD transcript 280820 281155 . + . transcript_id "YHR087W_id002"; gene_id "YHR087W"; gene_name "RTC3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 280820 281155 . + 0 transcript_id "YHR087W_id002"; gene_name "RTC3"; gene_id "YHR087W"; +chrVIII SGD gene 281463 282583 . + . gene_id "YHR088W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 281463 282583 . + . transcript_id "YHR088W_id001"; gene_id "YHR088W"; gene_name "RPF1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 281463 282583 . + . transcript_id "YHR088W_id001"; gene_id "YHR088W"; gene_name "RPF1"; +chrVIII SGD transcript 281495 282382 . + . transcript_id "YHR088W_id002"; gene_id "YHR088W"; gene_name "RPF1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 281495 282382 . + 0 transcript_id "YHR088W_id002"; gene_name "RPF1"; gene_id "YHR088W"; +chrVIII SGD gene 282352 283355 . - . gene_id "YHR089C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 282352 283355 . - . transcript_id "YHR089C_id002"; gene_id "YHR089C"; gene_name "GAR1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 282352 283355 . - . transcript_id "YHR089C_id002"; gene_id "YHR089C"; gene_name "GAR1"; +chrVIII SGD transcript 282681 283298 . - . transcript_id "YHR089C_id001"; gene_id "YHR089C"; gene_name "GAR1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 282681 283298 . - 0 transcript_id "YHR089C_id001"; gene_name "GAR1"; gene_id "YHR089C"; +chrVIII SGD gene 283528 284820 . - . gene_id "YHR090C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 283528 284820 . - . transcript_id "YHR090C_id001"; gene_id "YHR090C"; gene_name "YNG2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 283528 284820 . - . transcript_id "YHR090C_id001"; gene_id "YHR090C"; gene_name "YNG2"; +chrVIII SGD transcript 283777 284625 . - . transcript_id "YHR090C_id004"; gene_id "YHR090C"; gene_name "YNG2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 283777 284625 . - 0 transcript_id "YHR090C_id004"; gene_name "YNG2"; gene_id "YHR090C"; +chrVIII SGD gene 284700 286811 . - . gene_id "YHR091C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 284700 286811 . - . transcript_id "YHR091C_id001"; gene_id "YHR091C"; gene_name "MSR1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 284700 286811 . - . transcript_id "YHR091C_id001"; gene_id "YHR091C"; gene_name "MSR1"; +chrVIII SGD transcript 284839 286770 . - . transcript_id "YHR091C_id003"; gene_id "YHR091C"; gene_name "MSR1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 284839 286770 . - 0 transcript_id "YHR091C_id003"; gene_name "MSR1"; gene_id "YHR091C"; +chrVIII SGD gene 286947 288918 . - . gene_id "YHR092C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 286947 288918 . - . transcript_id "YHR092C_id002"; gene_id "YHR092C"; gene_name "HXT4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 286947 288918 . - . transcript_id "YHR092C_id002"; gene_id "YHR092C"; gene_name "HXT4"; +chrVIII SGD transcript 287081 288811 . - . transcript_id "YHR092C_id001"; gene_id "YHR092C"; gene_name "HXT4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 287081 288811 . - 0 transcript_id "YHR092C_id001"; gene_name "HXT4"; gene_id "YHR092C"; +chrVIII SGD gene 289142 289690 . + . gene_id "YHR093W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 289142 289690 . + . transcript_id "YHR093W_mRNA"; gene_id "YHR093W"; gene_name "AHT1"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 289142 289690 . + 0 transcript_id "YHR093W_mRNA"; gene_name "AHT1"; gene_id "YHR093W"; +chrVIII SGD gene 290913 292625 . - . gene_id "YHR094C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 290913 292625 . - . transcript_id "YHR094C_id001"; gene_id "YHR094C"; gene_name "HXT1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 290913 292625 . - 0 transcript_id "YHR094C_id001"; gene_name "HXT1"; gene_id "YHR094C"; +chrVIII SGD gene 292943 293437 . + . gene_id "YHR095W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 292943 293437 . + . transcript_id "YHR095W_mRNA"; gene_id "YHR095W"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 292943 293437 . + 0 transcript_id "YHR095W_mRNA"; gene_id "YHR095W"; +chrVIII SGD gene 294669 296447 . - . gene_id "YHR096C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 294669 296447 . - . transcript_id "YHR096C_mRNA"; gene_id "YHR096C"; gene_name "HXT5"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 294669 296447 . - 0 transcript_id "YHR096C_mRNA"; gene_name "HXT5"; gene_id "YHR096C"; +chrVIII SGD gene 297285 298732 . - . gene_id "YHR097C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 297285 298732 . - . transcript_id "YHR097C_id001"; gene_id "YHR097C"; gene_name "PAL2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 297285 298732 . - . transcript_id "YHR097C_id001"; gene_id "YHR097C"; gene_name "PAL2"; +chrVIII SGD transcript 297385 298609 . - . transcript_id "YHR097C_id002"; gene_id "YHR097C"; gene_name "PAL2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 297385 298360 . - 1 transcript_id "YHR097C_id002"; gene_name "PAL2"; gene_id "YHR097C"; +chrVIII SGD exon 298485 298609 . - 0 transcript_id "YHR097C_id002"; gene_name "PAL2"; gene_id "YHR097C"; +chrVIII SGD gene 298986 302014 . - . gene_id "YHR098C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 298986 302014 . - . transcript_id "YHR098C_id002"; gene_id "YHR098C"; gene_name "SFB3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 298986 302014 . - . transcript_id "YHR098C_id002"; gene_id "YHR098C"; gene_name "SFB3"; +chrVIII SGD transcript 299145 301934 . - . transcript_id "YHR098C_id001"; gene_id "YHR098C"; gene_name "SFB3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 299145 301934 . - 0 transcript_id "YHR098C_id001"; gene_name "SFB3"; gene_id "YHR098C"; +chrVIII SGD gene 302761 313995 . + . gene_id "YHR099W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 302761 313995 . + . transcript_id "YHR099W_mRNA"; gene_id "YHR099W"; gene_name "TRA1"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 302761 313995 . + 0 transcript_id "YHR099W_mRNA"; gene_name "TRA1"; gene_id "YHR099W"; +chrVIII SGD gene 313828 314729 . - . gene_id "YHR100C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 313828 314729 . - . transcript_id "YHR100C_id001"; gene_id "YHR100C"; gene_name "GEP4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 313828 314729 . - . transcript_id "YHR100C_id001"; gene_id "YHR100C"; gene_name "GEP4"; +chrVIII SGD transcript 314116 314673 . - . transcript_id "YHR100C_id003"; gene_id "YHR100C"; gene_name "GEP4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 314116 314673 . - 0 transcript_id "YHR100C_id003"; gene_name "GEP4"; gene_id "YHR100C"; +chrVIII SGD gene 314573 316009 . - . gene_id "YHR101C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 314573 316009 . - . transcript_id "YHR101C_id003"; gene_id "YHR101C"; gene_name "BIG1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 314573 316009 . - . transcript_id "YHR101C_id003"; gene_id "YHR101C"; gene_name "BIG1"; +chrVIII SGD transcript 314874 315968 . - . transcript_id "YHR101C_id001"; gene_id "YHR101C"; gene_name "BIG1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 314874 315771 . - 1 transcript_id "YHR101C_id001"; gene_name "BIG1"; gene_id "YHR101C"; +chrVIII SGD exon 315859 315968 . - 0 transcript_id "YHR101C_id001"; gene_name "BIG1"; gene_id "YHR101C"; +chrVIII SGD gene 316572 319814 . + . gene_id "YHR102W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 316572 319814 . + . transcript_id "YHR102W_id001"; gene_id "YHR102W"; gene_name "KIC1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 316572 319814 . + 0 transcript_id "YHR102W_id001"; gene_name "KIC1"; gene_id "YHR102W"; +chrVIII SGD gene 320173 323168 . + . gene_id "YHR103W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 320173 323168 . + . transcript_id "YHR103W_id002"; gene_id "YHR103W"; gene_name "SBE22"; transcript_biotype "protein_coding"; +chrVIII SGD exon 320173 323168 . + . transcript_id "YHR103W_id002"; gene_id "YHR103W"; gene_name "SBE22"; +chrVIII SGD transcript 320414 322972 . + . transcript_id "YHR103W_id001"; gene_id "YHR103W"; gene_name "SBE22"; transcript_biotype "protein_coding"; +chrVIII SGD exon 320414 322972 . + 0 transcript_id "YHR103W_id001"; gene_name "SBE22"; gene_id "YHR103W"; +chrVIII SGD gene 323260 324579 . + . gene_id "YHR104W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 323260 324579 . + . transcript_id "YHR104W_id001"; gene_id "YHR104W"; gene_name "GRE3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 323260 324579 . + . transcript_id "YHR104W_id001"; gene_id "YHR104W"; gene_name "GRE3"; +chrVIII SGD transcript 323409 324392 . + . transcript_id "YHR104W_id003"; gene_id "YHR104W"; gene_name "GRE3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 323409 324392 . + 0 transcript_id "YHR104W_id003"; gene_name "GRE3"; gene_id "YHR104W"; +chrVIII SGD gene 324643 325620 . + . gene_id "YHR105W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 324643 325620 . + . transcript_id "YHR105W_id002"; gene_id "YHR105W"; gene_name "YPT35"; transcript_biotype "protein_coding"; +chrVIII SGD exon 324643 325620 . + . transcript_id "YHR105W_id002"; gene_id "YHR105W"; gene_name "YPT35"; +chrVIII SGD transcript 324766 325410 . + . transcript_id "YHR105W_id001"; gene_id "YHR105W"; gene_name "YPT35"; transcript_biotype "protein_coding"; +chrVIII SGD exon 324766 325410 . + 0 transcript_id "YHR105W_id001"; gene_name "YPT35"; gene_id "YHR105W"; +chrVIII SGD gene 325136 326744 . + . gene_id "YHR106W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 325136 326744 . + . transcript_id "YHR106W_id005"; gene_id "YHR106W"; gene_name "TRR2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 325136 326744 . + . transcript_id "YHR106W_id005"; gene_id "YHR106W"; gene_name "TRR2"; +chrVIII SGD transcript 325598 326626 . + . transcript_id "YHR106W_id001"; gene_id "YHR106W"; gene_name "TRR2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 325598 326626 . + 0 transcript_id "YHR106W_id001"; gene_name "TRR2"; gene_id "YHR106W"; +chrVIII SGD gene 326650 328152 . - . gene_id "YHR107C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 326650 328152 . - . transcript_id "YHR107C_id001"; gene_id "YHR107C"; gene_name "CDC12"; transcript_biotype "protein_coding"; +chrVIII SGD exon 326650 328152 . - . transcript_id "YHR107C_id001"; gene_id "YHR107C"; gene_name "CDC12"; +chrVIII SGD transcript 326813 328036 . - . transcript_id "YHR107C_id002"; gene_id "YHR107C"; gene_name "CDC12"; transcript_biotype "protein_coding"; +chrVIII SGD exon 326813 328036 . - 0 transcript_id "YHR107C_id002"; gene_name "CDC12"; gene_id "YHR107C"; +chrVIII SGD gene 328230 330267 . + . gene_id "YHR108W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 328230 330267 . + . transcript_id "YHR108W_id001"; gene_id "YHR108W"; gene_name "GGA2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 328230 330267 . + . transcript_id "YHR108W_id001"; gene_id "YHR108W"; gene_name "GGA2"; +chrVIII SGD transcript 328303 330060 . + . transcript_id "YHR108W_id002"; gene_id "YHR108W"; gene_name "GGA2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 328303 330060 . + 0 transcript_id "YHR108W_id002"; gene_name "GGA2"; gene_id "YHR108W"; +chrVIII SGD gene 330274 332140 . + . gene_id "YHR109W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 330274 332140 . + . transcript_id "YHR109W_id003"; gene_id "YHR109W"; gene_name "CTM1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 330274 332140 . + . transcript_id "YHR109W_id003"; gene_id "YHR109W"; gene_name "CTM1"; +chrVIII SGD transcript 330310 332067 . + . transcript_id "YHR109W_id001"; gene_id "YHR109W"; gene_name "CTM1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 330310 332067 . + 0 transcript_id "YHR109W_id001"; gene_name "CTM1"; gene_id "YHR109W"; +chrVIII SGD gene 332219 333095 . + . gene_id "YHR110W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 332219 333095 . + . transcript_id "YHR110W_id003"; gene_id "YHR110W"; gene_name "ERP5"; transcript_biotype "protein_coding"; +chrVIII SGD exon 332219 333095 . + . transcript_id "YHR110W_id003"; gene_id "YHR110W"; gene_name "ERP5"; +chrVIII SGD transcript 332282 332920 . + . transcript_id "YHR110W_id001"; gene_id "YHR110W"; gene_name "ERP5"; transcript_biotype "protein_coding"; +chrVIII SGD exon 332282 332920 . + 0 transcript_id "YHR110W_id001"; gene_name "ERP5"; gene_id "YHR110W"; +chrVIII SGD gene 333059 336063 . + . gene_id "YHR111W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 333059 336063 . + . transcript_id "YHR111W_id001"; gene_id "YHR111W"; gene_name "UBA4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 333059 336063 . + . transcript_id "YHR111W_id001"; gene_id "YHR111W"; gene_name "UBA4"; +chrVIII SGD transcript 333072 334394 . + . transcript_id "YHR111W_id002"; gene_id "YHR111W"; gene_name "UBA4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 333072 334394 . + 0 transcript_id "YHR111W_id002"; gene_name "UBA4"; gene_id "YHR111W"; +chrVIII SGD gene 334230 336163 . - . gene_id "YHR112C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 334230 336163 . - . transcript_id "YHR112C_id001"; gene_id "YHR112C"; transcript_biotype "protein_coding"; +chrVIII SGD exon 334230 336163 . - . transcript_id "YHR112C_id001"; gene_id "YHR112C"; +chrVIII SGD transcript 334527 335663 . - . transcript_id "YHR112C_id002"; gene_id "YHR112C"; transcript_biotype "protein_coding"; +chrVIII SGD exon 334527 335663 . - 0 transcript_id "YHR112C_id002"; gene_id "YHR112C"; +chrVIII SGD gene 336151 337960 . + . gene_id "YHR113W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 336151 337960 . + . transcript_id "YHR113W_id001"; gene_id "YHR113W"; gene_name "APE4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 336151 337960 . + . transcript_id "YHR113W_id001"; gene_id "YHR113W"; gene_name "APE4"; +chrVIII SGD transcript 336337 337809 . + . transcript_id "YHR113W_id003"; gene_id "YHR113W"; gene_name "APE4"; transcript_biotype "protein_coding"; +chrVIII SGD exon 336337 337809 . + 0 transcript_id "YHR113W_id003"; gene_name "APE4"; gene_id "YHR113W"; +chrVIII SGD gene 338083 339984 . + . gene_id "YHR114W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 338083 339984 . + . transcript_id "YHR114W_mRNA"; gene_id "YHR114W"; gene_name "BZZ1"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 338083 339984 . + 0 transcript_id "YHR114W_mRNA"; gene_name "BZZ1"; gene_id "YHR114W"; +chrVIII SGD gene 340109 341359 . - . gene_id "YHR115C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 340109 341359 . - . transcript_id "YHR115C_mRNA"; gene_id "YHR115C"; gene_name "DMA1"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 340109 341359 . - 0 transcript_id "YHR115C_mRNA"; gene_name "DMA1"; gene_id "YHR115C"; +chrVIII SGD gene 341665 342120 . + . gene_id "YHR116W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 341665 342120 . + . transcript_id "YHR116W_id001"; gene_id "YHR116W"; gene_name "COX23"; transcript_biotype "protein_coding"; +chrVIII SGD exon 341665 342120 . + 0 transcript_id "YHR116W_id001"; gene_name "COX23"; gene_id "YHR116W"; +chrVIII SGD gene 342317 344488 . + . gene_id "YHR117W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 342317 344488 . + . transcript_id "YHR117W_id002"; gene_id "YHR117W"; gene_name "TOM71"; transcript_biotype "protein_coding"; +chrVIII SGD exon 342317 344488 . + . transcript_id "YHR117W_id002"; gene_id "YHR117W"; gene_name "TOM71"; +chrVIII SGD transcript 342349 344268 . + . transcript_id "YHR117W_id001"; gene_id "YHR117W"; gene_name "TOM71"; transcript_biotype "protein_coding"; +chrVIII SGD exon 342349 344268 . + 0 transcript_id "YHR117W_id001"; gene_name "TOM71"; gene_id "YHR117W"; +chrVIII SGD gene 344268 345731 . - . gene_id "YHR118C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 344268 345731 . - . transcript_id "YHR118C_id002"; gene_id "YHR118C"; gene_name "ORC6"; transcript_biotype "protein_coding"; +chrVIII SGD exon 344268 345731 . - . transcript_id "YHR118C_id002"; gene_id "YHR118C"; gene_name "ORC6"; +chrVIII SGD transcript 344321 345628 . - . transcript_id "YHR118C_id001"; gene_id "YHR118C"; gene_name "ORC6"; transcript_biotype "protein_coding"; +chrVIII SGD exon 344321 345628 . - 0 transcript_id "YHR118C_id001"; gene_name "ORC6"; gene_id "YHR118C"; +chrVIII SGD gene 346043 349285 . + . gene_id "YHR119W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 346043 349285 . + . transcript_id "YHR119W_id001"; gene_id "YHR119W"; gene_name "SET1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 346043 349285 . + 0 transcript_id "YHR119W_id001"; gene_name "SET1"; gene_id "YHR119W"; +chrVIII SGD gene 349574 352453 . + . gene_id "YHR120W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 349574 352453 . + . transcript_id "YHR120W_mRNA"; gene_id "YHR120W"; gene_name "MSH1"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 349574 352453 . + 0 transcript_id "YHR120W_mRNA"; gene_name "MSH1"; gene_id "YHR120W"; +chrVIII SGD gene 352756 353319 . + . gene_id "YHR121W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 352756 353319 . + . transcript_id "YHR121W_id001"; gene_id "YHR121W"; gene_name "LSM12"; transcript_biotype "protein_coding"; +chrVIII SGD exon 352756 353319 . + 0 transcript_id "YHR121W_id001"; gene_name "LSM12"; gene_id "YHR121W"; +chrVIII SGD gene 353621 354845 . + . gene_id "YHR122W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 353621 354845 . + . transcript_id "YHR122W_id001"; gene_id "YHR122W"; gene_name "CIA2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 353621 354845 . + . transcript_id "YHR122W_id001"; gene_id "YHR122W"; gene_name "CIA2"; +chrVIII SGD transcript 353625 354320 . + . transcript_id "YHR122W_id003"; gene_id "YHR122W"; gene_name "CIA2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 353625 354320 . + 0 transcript_id "YHR122W_id003"; gene_name "CIA2"; gene_id "YHR122W"; +chrVIII SGD gene 354727 356221 . + . gene_id "YHR123W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 354727 356221 . + . transcript_id "YHR123W_id001"; gene_id "YHR123W"; gene_name "EPT1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 354727 356221 . + . transcript_id "YHR123W_id001"; gene_id "YHR123W"; gene_name "EPT1"; +chrVIII SGD transcript 354815 356081 . + . transcript_id "YHR123W_id002"; gene_id "YHR123W"; gene_name "EPT1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 354815 354864 . + 0 transcript_id "YHR123W_id002"; gene_name "EPT1"; gene_id "YHR123W"; +chrVIII SGD exon 354956 356081 . + 1 transcript_id "YHR123W_id002"; gene_name "EPT1"; gene_id "YHR123W"; +chrVIII SGD gene 356561 358444 . + . gene_id "YHR124W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 356561 358444 . + . transcript_id "YHR124W_mRNA"; gene_id "YHR124W"; gene_name "NDT80"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 356561 358444 . + 0 transcript_id "YHR124W_mRNA"; gene_name "NDT80"; gene_id "YHR124W"; +chrVIII SGD gene 358478 358569 . - . gene_id "YNCH0010C"; gene_biotype "ncRNA"; +chrVIII SGD transcript 358478 358569 . - . transcript_id "YNCH0010C_tRNA"; gene_id "YNCH0010C"; transcript_biotype "ncRNA"; +chrVIII SGD exon 358478 358513 . - . transcript_id "YNCH0010C_tRNA"; gene_id "YNCH0010C"; +chrVIII SGD exon 358533 358569 . - . transcript_id "YNCH0010C_tRNA"; gene_id "YNCH0010C"; +chrVIII SGD gene 358858 359163 . + . gene_id "YHR125W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 358858 359163 . + . transcript_id "YHR125W_mRNA"; gene_id "YHR125W"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 358858 359163 . + 0 transcript_id "YHR125W_mRNA"; gene_id "YHR125W"; +chrVIII SGD gene 359702 360181 . - . gene_id "YHR126C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 359702 360181 . - . transcript_id "YHR126C_id001"; gene_id "YHR126C"; gene_name "ANS1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 359702 360181 . - 0 transcript_id "YHR126C_id001"; gene_name "ANS1"; gene_id "YHR126C"; +chrVIII SGD gene 360886 362093 . + . gene_id "YHR127W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 360886 362093 . + . transcript_id "YHR127W_id011"; gene_id "YHR127W"; transcript_biotype "protein_coding"; +chrVIII SGD exon 360886 362093 . + . transcript_id "YHR127W_id011"; gene_id "YHR127W"; +chrVIII SGD transcript 360913 361644 . + . transcript_id "YHR127W_id001"; gene_id "YHR127W"; transcript_biotype "protein_coding"; +chrVIII SGD exon 360913 361644 . + 0 transcript_id "YHR127W_id001"; gene_id "YHR127W"; +chrVIII SGD gene 362076 363084 . + . gene_id "YHR128W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 362076 363084 . + . transcript_id "YHR128W_id001"; gene_id "YHR128W"; gene_name "FUR1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 362076 363084 . + . transcript_id "YHR128W_id001"; gene_id "YHR128W"; gene_name "FUR1"; +chrVIII SGD transcript 362115 362765 . + . transcript_id "YHR128W_id002"; gene_id "YHR128W"; gene_name "FUR1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 362115 362765 . + 0 transcript_id "YHR128W_id002"; gene_name "FUR1"; gene_id "YHR128W"; +chrVIII SGD gene 362897 364450 . - . gene_id "YHR129C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 362897 364450 . - . transcript_id "YHR129C_id002"; gene_id "YHR129C"; gene_name "ARP1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 362897 364450 . - . transcript_id "YHR129C_id002"; gene_id "YHR129C"; gene_name "ARP1"; +chrVIII SGD transcript 362999 364153 . - . transcript_id "YHR129C_id001"; gene_id "YHR129C"; gene_name "ARP1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 362999 364153 . - 0 transcript_id "YHR129C_id001"; gene_name "ARP1"; gene_id "YHR129C"; +chrVIII SGD gene 364900 366490 . - . gene_id "YHR130C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 364900 366490 . - . transcript_id "YHR130C_id002"; gene_id "YHR130C"; transcript_biotype "protein_coding"; +chrVIII SGD exon 364900 366490 . - . transcript_id "YHR130C_id002"; gene_id "YHR130C"; +chrVIII SGD transcript 364965 365300 . - . transcript_id "YHR130C_id001"; gene_id "YHR130C"; transcript_biotype "protein_coding"; +chrVIII SGD exon 364965 365300 . - 0 transcript_id "YHR130C_id001"; gene_id "YHR130C"; +chrVIII SGD gene 365064 367975 . - . gene_id "YHR131C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 365064 367975 . - . transcript_id "YHR131C_id001"; gene_id "YHR131C"; transcript_biotype "protein_coding"; +chrVIII SGD exon 365064 367975 . - . transcript_id "YHR131C_id001"; gene_id "YHR131C"; +chrVIII SGD transcript 365340 367892 . - . transcript_id "YHR131C_id003"; gene_id "YHR131C"; transcript_biotype "protein_coding"; +chrVIII SGD exon 365340 367892 . - 0 transcript_id "YHR131C_id003"; gene_id "YHR131C"; +chrVIII SGD gene 367747 367992 . + . gene_id "YHR131W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 367747 367992 . + . transcript_id "YHR131W-A_id001"; gene_id "YHR131W-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 367747 367992 . + 0 transcript_id "YHR131W-A_id001"; gene_id "YHR131W-A"; +chrVIII SGD gene 368317 369836 . - . gene_id "YHR132C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 368317 369836 . - . transcript_id "YHR132C_id003"; gene_id "YHR132C"; gene_name "ECM14"; transcript_biotype "protein_coding"; +chrVIII SGD exon 368317 369836 . - . transcript_id "YHR132C_id003"; gene_id "YHR132C"; gene_name "ECM14"; +chrVIII SGD transcript 368502 369794 . - . transcript_id "YHR132C_id001"; gene_id "YHR132C"; gene_name "ECM14"; transcript_biotype "protein_coding"; +chrVIII SGD exon 368502 369794 . - 0 transcript_id "YHR132C_id001"; gene_name "ECM14"; gene_id "YHR132C"; +chrVIII SGD gene 369985 370609 . + . gene_id "YHR132W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 369985 370609 . + . transcript_id "YHR132W-A_id004"; gene_id "YHR132W-A"; gene_name "IGO2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 369985 370609 . + . transcript_id "YHR132W-A_id004"; gene_id "YHR132W-A"; gene_name "IGO2"; +chrVIII SGD transcript 370054 370449 . + . transcript_id "YHR132W-A_id001"; gene_id "YHR132W-A"; gene_name "IGO2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 370054 370449 . + 0 transcript_id "YHR132W-A_id001"; gene_name "IGO2"; gene_id "YHR132W-A"; +chrVIII SGD gene 370702 371844 . - . gene_id "YHR133C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 370702 371844 . - . transcript_id "YHR133C_id001"; gene_id "YHR133C"; gene_name "NSG1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 370702 371844 . - . transcript_id "YHR133C_id001"; gene_id "YHR133C"; gene_name "NSG1"; +chrVIII SGD transcript 370722 371597 . - . transcript_id "YHR133C_id003"; gene_id "YHR133C"; gene_name "NSG1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 370722 371597 . - 0 transcript_id "YHR133C_id003"; gene_name "NSG1"; gene_id "YHR133C"; +chrVIII SGD gene 371748 373363 . + . gene_id "YHR134W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 371748 373363 . + . transcript_id "YHR134W_id001"; gene_id "YHR134W"; gene_name "WSS1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 371748 373363 . + . transcript_id "YHR134W_id001"; gene_id "YHR134W"; gene_name "WSS1"; +chrVIII SGD transcript 371749 372558 . + . transcript_id "YHR134W_id002"; gene_id "YHR134W"; gene_name "WSS1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 371749 372558 . + 0 transcript_id "YHR134W_id002"; gene_name "WSS1"; gene_id "YHR134W"; +chrVIII SGD gene 372567 374436 . - . gene_id "YHR135C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 372567 374436 . - . transcript_id "YHR135C_id002"; gene_id "YHR135C"; gene_name "YCK1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 372567 374436 . - . transcript_id "YHR135C_id002"; gene_id "YHR135C"; gene_name "YCK1"; +chrVIII SGD transcript 372694 374310 . - . transcript_id "YHR135C_id001"; gene_id "YHR135C"; gene_name "YCK1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 372694 374310 . - 0 transcript_id "YHR135C_id001"; gene_name "YCK1"; gene_id "YHR135C"; +chrVIII SGD gene 374560 375293 . - . gene_id "YHR136C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 374560 375293 . - . transcript_id "YHR136C_id002"; gene_id "YHR136C"; gene_name "SPL2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 374560 375293 . - . transcript_id "YHR136C_id002"; gene_id "YHR136C"; gene_name "SPL2"; +chrVIII SGD transcript 374654 375100 . - . transcript_id "YHR136C_id001"; gene_id "YHR136C"; gene_name "SPL2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 374654 375100 . - 0 transcript_id "YHR136C_id001"; gene_name "SPL2"; gene_id "YHR136C"; +chrVIII SGD gene 375398 377394 . + . gene_id "YHR137W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 375398 377394 . + . transcript_id "YHR137W_id002"; gene_id "YHR137W"; gene_name "ARO9"; transcript_biotype "protein_coding"; +chrVIII SGD exon 375398 377394 . + . transcript_id "YHR137W_id002"; gene_id "YHR137W"; gene_name "ARO9"; +chrVIII SGD transcript 375709 377250 . + . transcript_id "YHR137W_id001"; gene_id "YHR137W"; gene_name "ARO9"; transcript_biotype "protein_coding"; +chrVIII SGD exon 375709 377250 . + 0 transcript_id "YHR137W_id001"; gene_name "ARO9"; gene_id "YHR137W"; +chrVIII SGD gene 375738 376388 . - . gene_id "YHR137C-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 375738 376388 . - . transcript_id "YHR137C-A_mRNA"; gene_id "YHR137C-A"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 375738 376388 . - 0 transcript_id "YHR137C-A_mRNA"; gene_id "YHR137C-A"; +chrVIII SGD gene 377251 377995 . - . gene_id "YHR138C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 377251 377995 . - . transcript_id "YHR138C_id002"; gene_id "YHR138C"; transcript_biotype "protein_coding"; +chrVIII SGD exon 377251 377995 . - . transcript_id "YHR138C_id002"; gene_id "YHR138C"; +chrVIII SGD transcript 377355 377699 . - . transcript_id "YHR138C_id001"; gene_id "YHR138C"; transcript_biotype "protein_coding"; +chrVIII SGD exon 377355 377699 . - 0 transcript_id "YHR138C_id001"; gene_id "YHR138C"; +chrVIII SGD gene 378219 379199 . - . gene_id "YHR139C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 378219 379199 . - . transcript_id "YHR139C_id001"; gene_id "YHR139C"; gene_name "SPS100"; transcript_biotype "protein_coding"; +chrVIII SGD exon 378219 379199 . - 0 transcript_id "YHR139C_id001"; gene_name "SPS100"; gene_id "YHR139C"; +chrVIII SGD gene 378254 379237 . + . gene_id "YNCH0011W"; gene_biotype "ncRNA"; +chrVIII SGD transcript 378254 379237 . + . transcript_id "YNCH0011W_ncRNA"; gene_id "YNCH0011W"; gene_name "SUT169"; transcript_biotype "ncRNA"; +chrVIII SGD exon 378254 379237 . + . transcript_id "YNCH0011W_ncRNA"; gene_name "SUT169"; gene_id "YNCH0011W"; +chrVIII SGD gene 380108 380419 . - . gene_id "YHR139C-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 380108 380419 . - . transcript_id "YHR139C-A_mRNA"; gene_id "YHR139C-A"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 380108 380419 . - 0 transcript_id "YHR139C-A_mRNA"; gene_id "YHR139C-A"; +chrVIII SGD gene 380513 381527 . + . gene_id "YHR140W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 380513 381527 . + . transcript_id "YHR140W_id001"; gene_id "YHR140W"; transcript_biotype "protein_coding"; +chrVIII SGD exon 380513 381527 . + . transcript_id "YHR140W_id001"; gene_id "YHR140W"; +chrVIII SGD transcript 380572 381291 . + . transcript_id "YHR140W_id003"; gene_id "YHR140W"; transcript_biotype "protein_coding"; +chrVIII SGD exon 380572 381291 . + 0 transcript_id "YHR140W_id003"; gene_id "YHR140W"; +chrVIII SGD gene 381540 381727 . + . gene_id "YNCH0012W"; gene_biotype "ncRNA"; +chrVIII SGD transcript 381540 381727 . + . transcript_id "YNCH0012W_snoRNA"; gene_id "YNCH0012W"; gene_name "SNR32"; transcript_biotype "ncRNA"; +chrVIII SGD exon 381540 381727 . + . transcript_id "YNCH0012W_snoRNA"; gene_name "SNR32"; gene_id "YNCH0012W"; +chrVIII SGD gene 381885 384800 . - . gene_id "YHR141C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 381885 384800 . - . transcript_id "YHR141C_id001"; gene_id "YHR141C"; gene_name "RPL42B"; transcript_biotype "protein_coding"; +chrVIII SGD exon 381885 384800 . - . transcript_id "YHR141C_id001"; gene_id "YHR141C"; gene_name "RPL42B"; +chrVIII SGD transcript 381990 382751 . - . transcript_id "YHR141C_id005"; gene_id "YHR141C"; gene_name "RPL42B"; transcript_biotype "protein_coding"; +chrVIII SGD exon 381990 382306 . - 2 transcript_id "YHR141C_id005"; gene_name "RPL42B"; gene_id "YHR141C"; +chrVIII SGD exon 382748 382751 . - 0 transcript_id "YHR141C_id005"; gene_name "RPL42B"; gene_id "YHR141C"; +chrVIII SGD gene 383397 385203 . + . gene_id "YHR142W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 383397 385203 . + . transcript_id "YHR142W_id001"; gene_id "YHR142W"; gene_name "CHS7"; transcript_biotype "protein_coding"; +chrVIII SGD exon 383397 385203 . + . transcript_id "YHR142W_id001"; gene_id "YHR142W"; gene_name "CHS7"; +chrVIII SGD transcript 383538 384488 . + . transcript_id "YHR142W_id008"; gene_id "YHR142W"; gene_name "CHS7"; transcript_biotype "protein_coding"; +chrVIII SGD exon 383538 384488 . + 0 transcript_id "YHR142W_id008"; gene_name "CHS7"; gene_id "YHR142W"; +chrVIII SGD gene 385232 386754 . + . gene_id "YHR143W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 385232 386754 . + . transcript_id "YHR143W_id002"; gene_id "YHR143W"; gene_name "DSE2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 385232 386754 . + . transcript_id "YHR143W_id002"; gene_id "YHR143W"; gene_name "DSE2"; +chrVIII SGD transcript 385510 386487 . + . transcript_id "YHR143W_id001"; gene_id "YHR143W"; gene_name "DSE2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 385510 386487 . + 0 transcript_id "YHR143W_id001"; gene_name "DSE2"; gene_id "YHR143W"; +chrVIII SGD gene 387152 387811 . + . gene_id "YHR143W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 387152 387811 . + . transcript_id "YHR143W-A_id002"; gene_id "YHR143W-A"; gene_name "RPC10"; transcript_biotype "protein_coding"; +chrVIII SGD exon 387152 387811 . + . transcript_id "YHR143W-A_id002"; gene_id "YHR143W-A"; gene_name "RPC10"; +chrVIII SGD transcript 387233 387445 . + . transcript_id "YHR143W-A_id001"; gene_id "YHR143W-A"; gene_name "RPC10"; transcript_biotype "protein_coding"; +chrVIII SGD exon 387233 387445 . + 0 transcript_id "YHR143W-A_id001"; gene_name "RPC10"; gene_id "YHR143W-A"; +chrVIII SGD gene 387612 388732 . - . gene_id "YHR144C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 387612 388732 . - . transcript_id "YHR144C_id001"; gene_id "YHR144C"; gene_name "DCD1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 387612 388732 . - . transcript_id "YHR144C_id001"; gene_id "YHR144C"; gene_name "DCD1"; +chrVIII SGD transcript 387788 388726 . - . transcript_id "YHR144C_id004"; gene_id "YHR144C"; gene_name "DCD1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 387788 388726 . - 0 transcript_id "YHR144C_id004"; gene_name "DCD1"; gene_id "YHR144C"; +chrVIII SGD gene 388893 388995 . - . gene_id "YNCH0013C"; gene_biotype "ncRNA"; +chrVIII SGD transcript 388893 388995 . - . transcript_id "YNCH0013C_tRNA"; gene_id "YNCH0013C"; gene_name "SUF8"; transcript_biotype "ncRNA"; +chrVIII SGD exon 388893 388928 . - . transcript_id "YNCH0013C_tRNA"; gene_name "SUF8"; gene_id "YNCH0013C"; +chrVIII SGD exon 388960 388995 . - . transcript_id "YNCH0013C_tRNA"; gene_name "SUF8"; gene_id "YNCH0013C"; +chrVIII SGD gene 388981 389337 . - . gene_id "YHR145C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 388981 389337 . - . transcript_id "YHR145C_mRNA"; gene_id "YHR145C"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 388981 389337 . - 0 transcript_id "YHR145C_mRNA"; gene_id "YHR145C"; +chrVIII SGD gene 390261 391752 . + . gene_id "YHR146W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 390261 391752 . + . transcript_id "YHR146W_id001"; gene_id "YHR146W"; gene_name "CRP1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 390261 391752 . + . transcript_id "YHR146W_id001"; gene_id "YHR146W"; gene_name "CRP1"; +chrVIII SGD transcript 390300 391697 . + . transcript_id "YHR146W_id002"; gene_id "YHR146W"; gene_name "CRP1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 390300 391697 . + 0 transcript_id "YHR146W_id002"; gene_name "CRP1"; gene_id "YHR146W"; +chrVIII SGD gene 392394 393303 . - . gene_id "YHR147C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 392394 393303 . - . transcript_id "YHR147C_id009"; gene_id "YHR147C"; gene_name "MRPL6"; transcript_biotype "protein_coding"; +chrVIII SGD exon 392394 393303 . - . transcript_id "YHR147C_id009"; gene_id "YHR147C"; gene_name "MRPL6"; +chrVIII SGD transcript 392639 393283 . - . transcript_id "YHR147C_id001"; gene_id "YHR147C"; gene_name "MRPL6"; transcript_biotype "protein_coding"; +chrVIII SGD exon 392639 393283 . - 0 transcript_id "YHR147C_id001"; gene_name "MRPL6"; gene_id "YHR147C"; +chrVIII SGD gene 393511 394485 . + . gene_id "YHR148W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 393511 394485 . + . transcript_id "YHR148W_id001"; gene_id "YHR148W"; gene_name "IMP3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 393511 394485 . + . transcript_id "YHR148W_id001"; gene_id "YHR148W"; gene_name "IMP3"; +chrVIII SGD transcript 393534 394085 . + . transcript_id "YHR148W_id003"; gene_id "YHR148W"; gene_name "IMP3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 393534 394085 . + 0 transcript_id "YHR148W_id003"; gene_name "IMP3"; gene_id "YHR148W"; +chrVIII SGD gene 394310 396834 . - . gene_id "YHR149C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 394310 396834 . - . transcript_id "YHR149C_id002"; gene_id "YHR149C"; gene_name "SKG6"; transcript_biotype "protein_coding"; +chrVIII SGD exon 394310 396834 . - . transcript_id "YHR149C_id002"; gene_id "YHR149C"; gene_name "SKG6"; +chrVIII SGD transcript 394455 396659 . - . transcript_id "YHR149C_id001"; gene_id "YHR149C"; gene_name "SKG6"; transcript_biotype "protein_coding"; +chrVIII SGD exon 394455 396659 . - 0 transcript_id "YHR149C_id001"; gene_name "SKG6"; gene_id "YHR149C"; +chrVIII SGD gene 397191 399213 . + . gene_id "YHR150W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 397191 399213 . + . transcript_id "YHR150W_id001"; gene_id "YHR150W"; gene_name "PEX28"; transcript_biotype "protein_coding"; +chrVIII SGD exon 397191 399213 . + . transcript_id "YHR150W_id001"; gene_id "YHR150W"; gene_name "PEX28"; +chrVIII SGD transcript 397251 398990 . + . transcript_id "YHR150W_id002"; gene_id "YHR150W"; gene_name "PEX28"; transcript_biotype "protein_coding"; +chrVIII SGD exon 397251 398990 . + 0 transcript_id "YHR150W_id002"; gene_name "PEX28"; gene_id "YHR150W"; +chrVIII SGD gene 399014 401014 . - . gene_id "YHR151C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 399014 401014 . - . transcript_id "YHR151C_id001"; gene_id "YHR151C"; gene_name "MTC6"; transcript_biotype "protein_coding"; +chrVIII SGD exon 399014 401014 . - . transcript_id "YHR151C_id001"; gene_id "YHR151C"; gene_name "MTC6"; +chrVIII SGD transcript 399268 400848 . - . transcript_id "YHR151C_id002"; gene_id "YHR151C"; gene_name "MTC6"; transcript_biotype "protein_coding"; +chrVIII SGD exon 399268 400848 . - 0 transcript_id "YHR151C_id002"; gene_name "MTC6"; gene_id "YHR151C"; +chrVIII SGD gene 401434 401955 . + . gene_id "YHR152W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 401434 401955 . + . transcript_id "YHR152W_id001"; gene_id "YHR152W"; gene_name "SPO12"; transcript_biotype "protein_coding"; +chrVIII SGD exon 401434 401955 . + 0 transcript_id "YHR152W_id001"; gene_name "SPO12"; gene_id "YHR152W"; +chrVIII SGD gene 401553 402705 . - . gene_id "YHR153C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 401553 402705 . - . transcript_id "YHR153C_id005"; gene_id "YHR153C"; gene_name "SPO16"; transcript_biotype "protein_coding"; +chrVIII SGD exon 401553 402705 . - . transcript_id "YHR153C_id005"; gene_id "YHR153C"; gene_name "SPO16"; +chrVIII SGD transcript 402086 402682 . - . transcript_id "YHR153C_id001"; gene_id "YHR153C"; gene_name "SPO16"; transcript_biotype "protein_coding"; +chrVIII SGD exon 402086 402682 . - 0 transcript_id "YHR153C_id001"; gene_name "SPO16"; gene_id "YHR153C"; +chrVIII SGD gene 402966 406178 . + . gene_id "YHR154W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 402966 406178 . + . transcript_id "YHR154W_id001"; gene_id "YHR154W"; gene_name "RTT107"; transcript_biotype "protein_coding"; +chrVIII SGD exon 402966 406178 . + 0 transcript_id "YHR154W_id001"; gene_name "RTT107"; gene_id "YHR154W"; +chrVIII SGD gene 407103 410789 . + . gene_id "YHR155W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 407103 410789 . + . transcript_id "YHR155W_mRNA"; gene_id "YHR155W"; gene_name "LAM1"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 407103 410789 . + 0 transcript_id "YHR155W_mRNA"; gene_name "LAM1"; gene_id "YHR155W"; +chrVIII SGD gene 410869 412447 . - . gene_id "YHR156C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 410869 412447 . - . transcript_id "YHR156C_id002"; gene_id "YHR156C"; gene_name "LIN1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 410869 412447 . - . transcript_id "YHR156C_id002"; gene_id "YHR156C"; gene_name "LIN1"; +chrVIII SGD gene 411228 411317 . + . gene_id "YNCH0014W"; gene_biotype "ncRNA"; +chrVIII SGD transcript 411228 411317 . + . transcript_id "YNCH0014W_snoRNA"; gene_id "YNCH0014W"; gene_name "SNR71"; transcript_biotype "ncRNA"; +chrVIII SGD exon 411228 411317 . + . transcript_id "YNCH0014W_snoRNA"; gene_name "SNR71"; gene_id "YNCH0014W"; +chrVIII SGD transcript 411384 412406 . - . transcript_id "YHR156C_id001"; gene_id "YHR156C"; gene_name "LIN1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 411384 412406 . - 0 transcript_id "YHR156C_id001"; gene_name "LIN1"; gene_id "YHR156C"; +chrVIII SGD gene 412907 413455 . + . gene_id "YHR157W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 412907 413455 . + . transcript_id "YHR157W_id001"; gene_id "YHR157W"; gene_name "REC104"; transcript_biotype "protein_coding"; +chrVIII SGD exon 412907 413455 . + 0 transcript_id "YHR157W_id001"; gene_name "REC104"; gene_id "YHR157W"; +chrVIII SGD gene 413685 417179 . - . gene_id "YHR158C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 413685 417179 . - . transcript_id "YHR158C_mRNA"; gene_id "YHR158C"; gene_name "KEL1"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 413685 417179 . - 0 transcript_id "YHR158C_mRNA"; gene_name "KEL1"; gene_id "YHR158C"; +chrVIII SGD gene 417474 420126 . + . gene_id "YHR159W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 417474 420126 . + . transcript_id "YHR159W_id004"; gene_id "YHR159W"; gene_name "TDA11"; transcript_biotype "protein_coding"; +chrVIII SGD exon 417474 420126 . + . transcript_id "YHR159W_id004"; gene_id "YHR159W"; gene_name "TDA11"; +chrVIII SGD transcript 417549 419063 . + . transcript_id "YHR159W_id001"; gene_id "YHR159W"; gene_name "TDA11"; transcript_biotype "protein_coding"; +chrVIII SGD exon 417549 419063 . + 0 transcript_id "YHR159W_id001"; gene_name "TDA11"; gene_id "YHR159W"; +chrVIII SGD gene 419221 420072 . - . gene_id "YHR160C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 419221 420072 . - . transcript_id "YHR160C_id001"; gene_id "YHR160C"; gene_name "PEX18"; transcript_biotype "protein_coding"; +chrVIII SGD exon 419221 420072 . - 0 transcript_id "YHR160C_id001"; gene_name "PEX18"; gene_id "YHR160C"; +chrVIII SGD gene 420223 422528 . - . gene_id "YHR161C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 420223 422528 . - . transcript_id "YHR161C_id001"; gene_id "YHR161C"; gene_name "YAP1801"; transcript_biotype "protein_coding"; +chrVIII SGD exon 420223 422528 . - . transcript_id "YHR161C_id001"; gene_id "YHR161C"; gene_name "YAP1801"; +chrVIII SGD transcript 420373 422286 . - . transcript_id "YHR161C_id004"; gene_id "YHR161C"; gene_name "YAP1801"; transcript_biotype "protein_coding"; +chrVIII SGD exon 420373 422286 . - 0 transcript_id "YHR161C_id004"; gene_name "YAP1801"; gene_id "YHR161C"; +chrVIII SGD gene 422669 423575 . + . gene_id "YHR162W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 422669 423575 . + . transcript_id "YHR162W_id001"; gene_id "YHR162W"; gene_name "MPC2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 422669 423575 . + . transcript_id "YHR162W_id001"; gene_id "YHR162W"; gene_name "MPC2"; +chrVIII SGD transcript 423072 423461 . + . transcript_id "YHR162W_id003"; gene_id "YHR162W"; gene_name "MPC2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 423072 423461 . + 0 transcript_id "YHR162W_id003"; gene_name "MPC2"; gene_id "YHR162W"; +chrVIII SGD gene 423716 424892 . + . gene_id "YHR163W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 423716 424892 . + . transcript_id "YHR163W_id001"; gene_id "YHR163W"; gene_name "SOL3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 423716 424892 . + . transcript_id "YHR163W_id001"; gene_id "YHR163W"; gene_name "SOL3"; +chrVIII SGD transcript 423724 424473 . + . transcript_id "YHR163W_id004"; gene_id "YHR163W"; gene_name "SOL3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 423724 424473 . + 0 transcript_id "YHR163W_id004"; gene_name "SOL3"; gene_id "YHR163W"; +chrVIII SGD gene 424610 429178 . - . gene_id "YHR164C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 424610 429178 . - . transcript_id "YHR164C_mRNA"; gene_id "YHR164C"; gene_name "DNA2"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 424610 429178 . - 0 transcript_id "YHR164C_mRNA"; gene_name "DNA2"; gene_id "YHR164C"; +chrVIII SGD gene 429707 436948 . - . gene_id "YHR165C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 429707 436948 . - . transcript_id "YHR165C_mRNA"; gene_id "YHR165C"; gene_name "PRP8"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 429707 436948 . - 0 transcript_id "YHR165C_mRNA"; gene_name "PRP8"; gene_id "YHR165C"; +chrVIII SGD gene 436647 436958 . + . gene_id "YHR165W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 436647 436958 . + . transcript_id "YHR165W-A_mRNA"; gene_id "YHR165W-A"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 436647 436958 . + 0 transcript_id "YHR165W-A_mRNA"; gene_id "YHR165W-A"; +chrVIII SGD gene 437170 439050 . - . gene_id "YHR166C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 437170 439050 . - . transcript_id "YHR166C_id001"; gene_id "YHR166C"; gene_name "CDC23"; transcript_biotype "protein_coding"; +chrVIII SGD exon 437170 439050 . - 0 transcript_id "YHR166C_id001"; gene_name "CDC23"; gene_id "YHR166C"; +chrVIII SGD gene 439278 440643 . + . gene_id "YHR167W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 439278 440643 . + . transcript_id "YHR167W_id001"; gene_id "YHR167W"; gene_name "THP2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 439278 440643 . + . transcript_id "YHR167W_id001"; gene_id "YHR167W"; gene_name "THP2"; +chrVIII SGD transcript 439342 440127 . + . transcript_id "YHR167W_id004"; gene_id "YHR167W"; gene_name "THP2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 439342 440127 . + 0 transcript_id "YHR167W_id004"; gene_name "THP2"; gene_id "YHR167W"; +chrVIII SGD gene 440271 442152 . + . gene_id "YHR168W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 440271 442152 . + . transcript_id "YHR168W_id001"; gene_id "YHR168W"; gene_name "MTG2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 440271 442152 . + . transcript_id "YHR168W_id001"; gene_id "YHR168W"; gene_name "MTG2"; +chrVIII SGD transcript 440377 441933 . + . transcript_id "YHR168W_id003"; gene_id "YHR168W"; gene_name "MTG2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 440377 441933 . + 0 transcript_id "YHR168W_id003"; gene_name "MTG2"; gene_id "YHR168W"; +chrVIII SGD gene 442110 443700 . + . gene_id "YHR169W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 442110 443700 . + . transcript_id "YHR169W_id001"; gene_id "YHR169W"; gene_name "DBP8"; transcript_biotype "protein_coding"; +chrVIII SGD exon 442110 443700 . + . transcript_id "YHR169W_id001"; gene_id "YHR169W"; gene_name "DBP8"; +chrVIII SGD transcript 442181 443476 . + . transcript_id "YHR169W_id003"; gene_id "YHR169W"; gene_name "DBP8"; transcript_biotype "protein_coding"; +chrVIII SGD exon 442181 443476 . + 0 transcript_id "YHR169W_id003"; gene_name "DBP8"; gene_id "YHR169W"; +chrVIII SGD gene 443810 445582 . + . gene_id "YHR170W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 443810 445582 . + . transcript_id "YHR170W_id003"; gene_id "YHR170W"; gene_name "NMD3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 443810 445582 . + . transcript_id "YHR170W_id003"; gene_id "YHR170W"; gene_name "NMD3"; +chrVIII SGD transcript 443828 445384 . + . transcript_id "YHR170W_id001"; gene_id "YHR170W"; gene_name "NMD3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 443828 445384 . + 0 transcript_id "YHR170W_id001"; gene_name "NMD3"; gene_id "YHR170W"; +chrVIII SGD gene 445695 447728 . + . gene_id "YHR171W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 445695 447728 . + . transcript_id "YHR171W_id001"; gene_id "YHR171W"; gene_name "ATG7"; transcript_biotype "protein_coding"; +chrVIII SGD exon 445695 447728 . + . transcript_id "YHR171W_id001"; gene_id "YHR171W"; gene_name "ATG7"; +chrVIII SGD transcript 445713 447605 . + . transcript_id "YHR171W_id002"; gene_id "YHR171W"; gene_name "ATG7"; transcript_biotype "protein_coding"; +chrVIII SGD exon 445713 447605 . + 0 transcript_id "YHR171W_id002"; gene_name "ATG7"; gene_id "YHR171W"; +chrVIII SGD gene 448335 450806 . + . gene_id "YHR172W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 448335 450806 . + . transcript_id "YHR172W_id001"; gene_id "YHR172W"; gene_name "SPC97"; transcript_biotype "protein_coding"; +chrVIII SGD exon 448335 450806 . + 0 transcript_id "YHR172W_id001"; gene_name "SPC97"; gene_id "YHR172W"; +chrVIII SGD gene 450815 451153 . - . gene_id "YHR173C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 450815 451153 . - . transcript_id "YHR173C_mRNA"; gene_id "YHR173C"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 450815 451153 . - 0 transcript_id "YHR173C_mRNA"; gene_id "YHR173C"; +chrVIII SGD gene 451297 452951 . + . gene_id "YHR174W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 451297 452951 . + . transcript_id "YHR174W_id001"; gene_id "YHR174W"; gene_name "ENO2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 451297 452951 . + . transcript_id "YHR174W_id001"; gene_id "YHR174W"; gene_name "ENO2"; +chrVIII SGD transcript 451327 452640 . + . transcript_id "YHR174W_id003"; gene_id "YHR174W"; gene_name "ENO2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 451327 452640 . + 0 transcript_id "YHR174W_id003"; gene_name "ENO2"; gene_id "YHR174W"; +chrVIII SGD gene 452872 453697 . + . gene_id "YHR175W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 452872 453441 . + . transcript_id "YHR175W_id001"; gene_id "YHR175W"; gene_name "CTR2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 452872 453441 . + 0 transcript_id "YHR175W_id001"; gene_name "CTR2"; gene_id "YHR175W"; +chrVIII SGD transcript 452872 453697 . + . transcript_id "YHR175W_id003"; gene_id "YHR175W"; gene_name "CTR2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 452872 453697 . + . transcript_id "YHR175W_id003"; gene_id "YHR175W"; gene_name "CTR2"; +chrVIII SGD gene 452921 453895 . + . gene_id "YHR175W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 452921 453895 . + . transcript_id "YHR175W-A_id003"; gene_id "YHR175W-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 452921 453895 . + . transcript_id "YHR175W-A_id003"; gene_id "YHR175W-A"; +chrVIII SGD transcript 453558 453707 . + . transcript_id "YHR175W-A_id001"; gene_id "YHR175W-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 453558 453707 . + 0 transcript_id "YHR175W-A_id001"; gene_id "YHR175W-A"; +chrVIII SGD gene 454150 455592 . + . gene_id "YHR176W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 454150 455592 . + . transcript_id "YHR176W_id006"; gene_id "YHR176W"; gene_name "FMO1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 454150 455592 . + . transcript_id "YHR176W_id006"; gene_id "YHR176W"; gene_name "FMO1"; +chrVIII SGD transcript 454229 455527 . + . transcript_id "YHR176W_id001"; gene_id "YHR176W"; gene_name "FMO1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 454229 455527 . + 0 transcript_id "YHR176W_id001"; gene_name "FMO1"; gene_id "YHR176W"; +chrVIII SGD gene 456591 457952 . + . gene_id "YHR177W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 456591 457952 . + . transcript_id "YHR177W_mRNA"; gene_id "YHR177W"; gene_name "ROF1"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 456591 457952 . + 0 transcript_id "YHR177W_mRNA"; gene_name "ROF1"; gene_id "YHR177W"; +chrVIII SGD gene 459299 461530 . + . gene_id "YHR178W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 459299 461530 . + . transcript_id "YHR178W_id001"; gene_id "YHR178W"; gene_name "STB5"; transcript_biotype "protein_coding"; +chrVIII SGD exon 459299 461530 . + 0 transcript_id "YHR178W_id001"; gene_name "STB5"; gene_id "YHR178W"; +chrVIII SGD gene 462094 463807 . + . gene_id "YHR179W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 462094 463807 . + . transcript_id "YHR179W_id001"; gene_id "YHR179W"; gene_name "OYE2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 462094 463807 . + . transcript_id "YHR179W_id001"; gene_id "YHR179W"; gene_name "OYE2"; +chrVIII SGD transcript 462502 463704 . + . transcript_id "YHR179W_id002"; gene_id "YHR179W"; gene_name "OYE2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 462502 463704 . + 0 transcript_id "YHR179W_id002"; gene_name "OYE2"; gene_id "YHR179W"; +chrVIII SGD gene 465178 465669 . + . gene_id "YHR180W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 465178 465669 . + . transcript_id "YHR180W_mRNA"; gene_id "YHR180W"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 465178 465669 . + 0 transcript_id "YHR180W_mRNA"; gene_id "YHR180W"; +chrVIII SGD gene 466932 467114 . + . gene_id "YHR180W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 466932 467114 . + . transcript_id "YHR180W-A_mRNA"; gene_id "YHR180W-A"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 466932 467114 . + 0 transcript_id "YHR180W-A_mRNA"; gene_id "YHR180W-A"; +chrVIII SGD gene 466958 467062 . - . gene_id "YHR180C-B"; gene_biotype "protein_coding"; +chrVIII SGD transcript 466958 467062 . - . transcript_id "YHR180C-B_mRNA"; gene_id "YHR180C-B"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 466958 467062 . - 0 transcript_id "YHR180C-B_mRNA"; gene_id "YHR180C-B"; +chrVIII SGD gene 466990 467061 . + . gene_id "YNCH0015W"; gene_biotype "ncRNA"; +chrVIII SGD transcript 466990 467061 . + . transcript_id "YNCH0015W_tRNA"; gene_id "YNCH0015W"; transcript_biotype "ncRNA"; +chrVIII SGD exon 466990 467061 . + . transcript_id "YNCH0015W_tRNA"; gene_id "YNCH0015W"; +chrVIII SGD gene 467179 468080 . + . gene_id "YHR181W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 467179 468080 . + . transcript_id "YHR181W_id002"; gene_id "YHR181W"; gene_name "SVP26"; transcript_biotype "protein_coding"; +chrVIII SGD exon 467179 468080 . + . transcript_id "YHR181W_id002"; gene_id "YHR181W"; gene_name "SVP26"; +chrVIII SGD transcript 467228 467914 . + . transcript_id "YHR181W_id001"; gene_id "YHR181W"; gene_name "SVP26"; transcript_biotype "protein_coding"; +chrVIII SGD exon 467228 467914 . + 0 transcript_id "YHR181W_id001"; gene_name "SVP26"; gene_id "YHR181W"; +chrVIII SGD gene 468192 470632 . + . gene_id "YHR182W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 468192 470632 . + . transcript_id "YHR182W_id004"; gene_id "YHR182W"; gene_name "RGD3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 468192 470632 . + . transcript_id "YHR182W_id004"; gene_id "YHR182W"; gene_name "RGD3"; +chrVIII SGD transcript 468219 470576 . + . transcript_id "YHR182W_id001"; gene_id "YHR182W"; gene_name "RGD3"; transcript_biotype "protein_coding"; +chrVIII SGD exon 468219 470576 . + 0 transcript_id "YHR182W_id001"; gene_name "RGD3"; gene_id "YHR182W"; +chrVIII SGD gene 470871 472595 . + . gene_id "YHR183W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 470871 472595 . + . transcript_id "YHR183W_id002"; gene_id "YHR183W"; gene_name "GND1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 470871 472595 . + . transcript_id "YHR183W_id002"; gene_id "YHR183W"; gene_name "GND1"; +chrVIII SGD gene 470939 471412 . - . gene_id "YHR182C-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 470939 471412 . - . transcript_id "YHR182C-A_id001"; gene_id "YHR182C-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 470939 471412 . - 0 transcript_id "YHR182C-A_id001"; gene_id "YHR182C-A"; +chrVIII SGD transcript 470960 472429 . + . transcript_id "YHR183W_id001"; gene_id "YHR183W"; gene_name "GND1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 470960 472429 . + 0 transcript_id "YHR183W_id001"; gene_name "GND1"; gene_id "YHR183W"; +chrVIII SGD gene 472744 474459 . + . gene_id "YHR184W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 472744 474459 . + . transcript_id "YHR184W_mRNA"; gene_id "YHR184W"; gene_name "SSP1"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 472744 474459 . + 0 transcript_id "YHR184W_mRNA"; gene_name "SSP1"; gene_id "YHR184W"; +chrVIII SGD gene 474627 475340 . - . gene_id "YHR185C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 474627 475340 . - . transcript_id "YHR185C_mRNA"; gene_id "YHR185C"; gene_name "PFS1"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 474627 475340 . - 0 transcript_id "YHR185C_mRNA"; gene_name "PFS1"; gene_id "YHR185C"; +chrVIII SGD gene 475706 475778 . - . gene_id "YNCH0016C"; gene_biotype "ncRNA"; +chrVIII SGD transcript 475706 475778 . - . transcript_id "YNCH0016C_tRNA"; gene_id "YNCH0016C"; transcript_biotype "ncRNA"; +chrVIII SGD exon 475706 475778 . - . transcript_id "YNCH0016C_tRNA"; gene_id "YNCH0016C"; +chrVIII SGD gene 475999 480672 . - . gene_id "YHR186C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 475999 480672 . - . transcript_id "YHR186C_mRNA"; gene_id "YHR186C"; gene_name "KOG1"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 475999 480672 . - 0 transcript_id "YHR186C_mRNA"; gene_name "KOG1"; gene_id "YHR186C"; +chrVIII SGD gene 480930 482011 . + . gene_id "YHR187W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 480930 482011 . + . transcript_id "YHR187W_id006"; gene_id "YHR187W"; gene_name "IKI1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 480930 482011 . + . transcript_id "YHR187W_id006"; gene_id "YHR187W"; gene_name "IKI1"; +chrVIII SGD transcript 480990 481919 . + . transcript_id "YHR187W_id001"; gene_id "YHR187W"; gene_name "IKI1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 480990 481919 . + 0 transcript_id "YHR187W_id001"; gene_name "IKI1"; gene_id "YHR187W"; +chrVIII SGD gene 481839 483852 . - . gene_id "YHR188C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 481839 483852 . - . transcript_id "YHR188C_id003"; gene_id "YHR188C"; gene_name "GPI16"; transcript_biotype "protein_coding"; +chrVIII SGD exon 481839 483852 . - . transcript_id "YHR188C_id003"; gene_id "YHR188C"; gene_name "GPI16"; +chrVIII SGD transcript 482005 483837 . - . transcript_id "YHR188C_id001"; gene_id "YHR188C"; gene_name "GPI16"; transcript_biotype "protein_coding"; +chrVIII SGD exon 482005 483837 . - 0 transcript_id "YHR188C_id001"; gene_name "GPI16"; gene_id "YHR188C"; +chrVIII SGD gene 484028 484600 . + . gene_id "YHR189W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 484028 484600 . + . transcript_id "YHR189W_id001"; gene_id "YHR189W"; gene_name "PTH1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 484028 484600 . + 0 transcript_id "YHR189W_id001"; gene_name "PTH1"; gene_id "YHR189W"; +chrVIII SGD gene 484796 486341 . + . gene_id "YHR190W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 484796 486341 . + . transcript_id "YHR190W_id005"; gene_id "YHR190W"; gene_name "ERG9"; transcript_biotype "protein_coding"; +chrVIII SGD exon 484796 486341 . + . transcript_id "YHR190W_id005"; gene_id "YHR190W"; gene_name "ERG9"; +chrVIII SGD transcript 484845 486179 . + . transcript_id "YHR190W_id001"; gene_id "YHR190W"; gene_name "ERG9"; transcript_biotype "protein_coding"; +chrVIII SGD exon 484845 486179 . + 0 transcript_id "YHR190W_id001"; gene_name "ERG9"; gene_id "YHR190W"; +chrVIII SGD gene 485918 486691 . - . gene_id "YHR191C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 485918 486691 . - . transcript_id "YHR191C_id001"; gene_id "YHR191C"; gene_name "CTF8"; transcript_biotype "protein_coding"; +chrVIII SGD exon 485918 486691 . - . transcript_id "YHR191C_id001"; gene_id "YHR191C"; gene_name "CTF8"; +chrVIII SGD transcript 486230 486631 . - . transcript_id "YHR191C_id002"; gene_id "YHR191C"; gene_name "CTF8"; transcript_biotype "protein_coding"; +chrVIII SGD exon 486230 486631 . - 0 transcript_id "YHR191C_id002"; gene_name "CTF8"; gene_id "YHR191C"; +chrVIII SGD gene 486497 487742 . + . gene_id "YHR192W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 486497 487742 . + . transcript_id "YHR192W_id001"; gene_id "YHR192W"; gene_name "LNP1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 486497 487742 . + . transcript_id "YHR192W_id001"; gene_id "YHR192W"; gene_name "LNP1"; +chrVIII SGD transcript 486826 487662 . + . transcript_id "YHR192W_id004"; gene_id "YHR192W"; gene_name "LNP1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 486826 487662 . + 0 transcript_id "YHR192W_id004"; gene_name "LNP1"; gene_id "YHR192W"; +chrVIII SGD gene 487288 488268 . - . gene_id "YHR193C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 487288 488268 . - . transcript_id "YHR193C_id001"; gene_id "YHR193C"; gene_name "EGD2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 487288 488268 . - . transcript_id "YHR193C_id001"; gene_id "YHR193C"; gene_name "EGD2"; +chrVIII SGD transcript 487712 488236 . - . transcript_id "YHR193C_id005"; gene_id "YHR193C"; gene_name "EGD2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 487712 488236 . - 0 transcript_id "YHR193C_id005"; gene_name "EGD2"; gene_id "YHR193C"; +chrVIII SGD gene 488392 489082 . - . gene_id "YHR193C-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 488392 489082 . - . transcript_id "YHR193C-A_id002"; gene_id "YHR193C-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 488392 489082 . - . transcript_id "YHR193C-A_id002"; gene_id "YHR193C-A"; +chrVIII SGD gene 488588 490485 . + . gene_id "YHR194W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 488588 490485 . + . transcript_id "YHR194W_id002"; gene_id "YHR194W"; gene_name "MDM31"; transcript_biotype "protein_coding"; +chrVIII SGD exon 488588 490485 . + . transcript_id "YHR194W_id002"; gene_id "YHR194W"; gene_name "MDM31"; +chrVIII SGD transcript 488653 489027 . - . transcript_id "YHR193C-A_id001"; gene_id "YHR193C-A"; transcript_biotype "protein_coding"; +chrVIII SGD exon 488653 489027 . - 0 transcript_id "YHR193C-A_id001"; gene_id "YHR193C-A"; +chrVIII SGD transcript 488657 490396 . + . transcript_id "YHR194W_id001"; gene_id "YHR194W"; gene_name "MDM31"; transcript_biotype "protein_coding"; +chrVIII SGD exon 488657 490396 . + 0 transcript_id "YHR194W_id001"; gene_name "MDM31"; gene_id "YHR194W"; +chrVIII SGD gene 490573 491946 . + . gene_id "YHR195W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 490573 491946 . + . transcript_id "YHR195W_id003"; gene_id "YHR195W"; gene_name "NVJ1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 490573 491946 . + . transcript_id "YHR195W_id003"; gene_id "YHR195W"; gene_name "NVJ1"; +chrVIII SGD transcript 490747 491712 . + . transcript_id "YHR195W_id001"; gene_id "YHR195W"; gene_name "NVJ1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 490747 491712 . + 0 transcript_id "YHR195W_id001"; gene_name "NVJ1"; gene_id "YHR195W"; +chrVIII SGD gene 491869 493732 . + . gene_id "YHR196W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 491869 493732 . + . transcript_id "YHR196W_id003"; gene_id "YHR196W"; gene_name "UTP9"; transcript_biotype "protein_coding"; +chrVIII SGD exon 491869 493732 . + . transcript_id "YHR196W_id003"; gene_id "YHR196W"; gene_name "UTP9"; +chrVIII SGD transcript 491931 493658 . + . transcript_id "YHR196W_id001"; gene_id "YHR196W"; gene_name "UTP9"; transcript_biotype "protein_coding"; +chrVIII SGD exon 491931 493658 . + 0 transcript_id "YHR196W_id001"; gene_name "UTP9"; gene_id "YHR196W"; +chrVIII SGD gene 493879 496330 . + . gene_id "YHR197W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 493879 496330 . + . transcript_id "YHR197W_id003"; gene_id "YHR197W"; gene_name "RIX1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 493879 496330 . + . transcript_id "YHR197W_id003"; gene_id "YHR197W"; gene_name "RIX1"; +chrVIII SGD transcript 493896 496187 . + . transcript_id "YHR197W_id001"; gene_id "YHR197W"; gene_name "RIX1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 493896 496187 . + 0 transcript_id "YHR197W_id001"; gene_name "RIX1"; gene_id "YHR197W"; +chrVIII SGD gene 496173 497280 . - . gene_id "YHR198C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 496173 497280 . - . transcript_id "YHR198C_id003"; gene_id "YHR198C"; gene_name "AIM18"; transcript_biotype "protein_coding"; +chrVIII SGD exon 496173 497280 . - . transcript_id "YHR198C_id003"; gene_id "YHR198C"; gene_name "AIM18"; +chrVIII SGD transcript 496315 497280 . - . transcript_id "YHR198C_id001"; gene_id "YHR198C"; gene_name "AIM18"; transcript_biotype "protein_coding"; +chrVIII SGD exon 496315 497280 . - 0 transcript_id "YHR198C_id001"; gene_name "AIM18"; gene_id "YHR198C"; +chrVIII SGD gene 497398 498599 . - . gene_id "YHR199C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 497398 498599 . - . transcript_id "YHR199C_id007"; gene_id "YHR199C"; gene_name "AIM46"; transcript_biotype "protein_coding"; +chrVIII SGD exon 497398 498599 . - . transcript_id "YHR199C_id007"; gene_id "YHR199C"; gene_name "AIM46"; +chrVIII SGD transcript 497490 498422 . - . transcript_id "YHR199C_id001"; gene_id "YHR199C"; gene_name "AIM46"; transcript_biotype "protein_coding"; +chrVIII SGD exon 497490 498422 . - 0 transcript_id "YHR199C_id001"; gene_name "AIM46"; gene_id "YHR199C"; +chrVIII SGD gene 498571 498859 . - . gene_id "YHR199C-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 498571 498859 . - . transcript_id "YHR199C-A_mRNA"; gene_id "YHR199C-A"; gene_name "NBL1"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 498571 498719 . - 2 transcript_id "YHR199C-A_mRNA"; gene_name "NBL1"; gene_id "YHR199C-A"; +chrVIII SGD CDS 498787 498859 . - 0 transcript_id "YHR199C-A_mRNA"; gene_name "NBL1"; gene_id "YHR199C-A"; +chrVIII SGD gene 499055 500398 . + . gene_id "YHR200W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 499055 500398 . + . transcript_id "YHR200W_id001"; gene_id "YHR200W"; gene_name "RPN10"; transcript_biotype "protein_coding"; +chrVIII SGD exon 499055 500398 . + . transcript_id "YHR200W_id001"; gene_id "YHR200W"; gene_name "RPN10"; +chrVIII SGD transcript 499079 499885 . + . transcript_id "YHR200W_id002"; gene_id "YHR200W"; gene_name "RPN10"; transcript_biotype "protein_coding"; +chrVIII SGD exon 499079 499885 . + 0 transcript_id "YHR200W_id002"; gene_name "RPN10"; gene_id "YHR200W"; +chrVIII SGD gene 499887 501780 . - . gene_id "YHR201C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 499887 501780 . - . transcript_id "YHR201C_id001"; gene_id "YHR201C"; gene_name "PPX1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 499887 501780 . - . transcript_id "YHR201C_id001"; gene_id "YHR201C"; gene_name "PPX1"; +chrVIII SGD transcript 499950 501143 . - . transcript_id "YHR201C_id003"; gene_id "YHR201C"; gene_name "PPX1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 499950 501143 . - 0 transcript_id "YHR201C_id003"; gene_name "PPX1"; gene_id "YHR201C"; +chrVIII SGD gene 502338 504258 . + . gene_id "YHR202W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 502338 504258 . + . transcript_id "YHR202W_id005"; gene_id "YHR202W"; gene_name "SMN1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 502338 504258 . + . transcript_id "YHR202W_id005"; gene_id "YHR202W"; gene_name "SMN1"; +chrVIII SGD transcript 502388 504196 . + . transcript_id "YHR202W_id001"; gene_id "YHR202W"; gene_name "SMN1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 502388 504196 . + 0 transcript_id "YHR202W_id001"; gene_name "SMN1"; gene_id "YHR202W"; +chrVIII SGD gene 504188 505605 . - . gene_id "YHR203C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 504188 505605 . - . transcript_id "YHR203C_id001"; gene_id "YHR203C"; gene_name "RPS4B"; transcript_biotype "protein_coding"; +chrVIII SGD exon 504188 505605 . - . transcript_id "YHR203C_id001"; gene_id "YHR203C"; gene_name "RPS4B"; +chrVIII SGD transcript 504476 505530 . - . transcript_id "YHR203C_id004"; gene_id "YHR203C"; gene_name "RPS4B"; transcript_biotype "protein_coding"; +chrVIII SGD exon 504476 505247 . - 1 transcript_id "YHR203C_id004"; gene_name "RPS4B"; gene_id "YHR203C"; +chrVIII SGD exon 505517 505530 . - 0 transcript_id "YHR203C_id004"; gene_name "RPS4B"; gene_id "YHR203C"; +chrVIII SGD gene 506272 508800 . + . gene_id "YHR204W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 506272 508800 . + . transcript_id "YHR204W_id002"; gene_id "YHR204W"; gene_name "MNL1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 506272 508800 . + . transcript_id "YHR204W_id002"; gene_id "YHR204W"; gene_name "MNL1"; +chrVIII SGD transcript 506319 508709 . + . transcript_id "YHR204W_id001"; gene_id "YHR204W"; gene_name "MNL1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 506319 508709 . + 0 transcript_id "YHR204W_id001"; gene_name "MNL1"; gene_id "YHR204W"; +chrVIII SGD gene 508885 512048 . + . gene_id "YHR205W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 508885 512048 . + . transcript_id "YHR205W_id001"; gene_id "YHR205W"; gene_name "SCH9"; transcript_biotype "protein_coding"; +chrVIII SGD exon 508885 512048 . + . transcript_id "YHR205W_id001"; gene_id "YHR205W"; gene_name "SCH9"; +chrVIII SGD transcript 509363 511837 . + . transcript_id "YHR205W_id002"; gene_id "YHR205W"; gene_name "SCH9"; transcript_biotype "protein_coding"; +chrVIII SGD exon 509363 511837 . + 0 transcript_id "YHR205W_id002"; gene_name "SCH9"; gene_id "YHR205W"; +chrVIII SGD gene 512732 514600 . + . gene_id "YHR206W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 512732 514600 . + . transcript_id "YHR206W_mRNA"; gene_id "YHR206W"; gene_name "SKN7"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 512732 514600 . + 0 transcript_id "YHR206W_mRNA"; gene_name "SKN7"; gene_id "YHR206W"; +chrVIII SGD gene 514905 516485 . - . gene_id "YHR207C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 514905 516485 . - . transcript_id "YHR207C_mRNA"; gene_id "YHR207C"; gene_name "SET5"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 514905 516485 . - 0 transcript_id "YHR207C_mRNA"; gene_name "SET5"; gene_id "YHR207C"; +chrVIII SGD gene 517491 518931 . + . gene_id "YHR208W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 517491 518931 . + . transcript_id "YHR208W_id002"; gene_id "YHR208W"; gene_name "BAT1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 517491 518931 . + . transcript_id "YHR208W_id002"; gene_id "YHR208W"; gene_name "BAT1"; +chrVIII SGD transcript 517532 518713 . + . transcript_id "YHR208W_id001"; gene_id "YHR208W"; gene_name "BAT1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 517532 518713 . + 0 transcript_id "YHR208W_id001"; gene_name "BAT1"; gene_id "YHR208W"; +chrVIII SGD gene 519017 520726 . + . gene_id "YHR209W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 519017 520726 . + . transcript_id "YHR209W_id001"; gene_id "YHR209W"; gene_name "CRG1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 519017 520726 . + . transcript_id "YHR209W_id001"; gene_id "YHR209W"; gene_name "CRG1"; +chrVIII SGD transcript 519437 520312 . + . transcript_id "YHR209W_id002"; gene_id "YHR209W"; gene_name "CRG1"; transcript_biotype "protein_coding"; +chrVIII SGD exon 519437 520312 . + 0 transcript_id "YHR209W_id002"; gene_name "CRG1"; gene_id "YHR209W"; +chrVIII SGD gene 520305 521756 . - . gene_id "YHR210C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 520305 521756 . - . transcript_id "YHR210C_id005"; gene_id "YHR210C"; transcript_biotype "protein_coding"; +chrVIII SGD exon 520305 521756 . - . transcript_id "YHR210C_id005"; gene_id "YHR210C"; +chrVIII SGD transcript 520712 521737 . - . transcript_id "YHR210C_id001"; gene_id "YHR210C"; transcript_biotype "protein_coding"; +chrVIII SGD exon 520712 521737 . - 0 transcript_id "YHR210C_id001"; gene_id "YHR210C"; +chrVIII SGD gene 525392 528619 . + . gene_id "YHR211W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 525392 528619 . + . transcript_id "YHR211W_mRNA"; gene_id "YHR211W"; gene_name "FLO5"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 525392 528619 . + 0 transcript_id "YHR211W_mRNA"; gene_name "FLO5"; gene_id "YHR211W"; +chrVIII SGD gene 537759 538094 . - . gene_id "YHR212C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 537759 538094 . - . transcript_id "YHR212C_mRNA"; gene_id "YHR212C"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 537759 538094 . - 0 transcript_id "YHR212C_mRNA"; gene_id "YHR212C"; +chrVIII SGD gene 538742 538945 . + . gene_id "YHR212W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 538742 538945 . + . transcript_id "YHR212W-A_mRNA"; gene_id "YHR212W-A"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 538742 538945 . + 0 transcript_id "YHR212W-A_mRNA"; gene_id "YHR212W-A"; +chrVIII SGD gene 539151 539747 . + . gene_id "YHR213W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 539151 539747 . + . transcript_id "YHR213W_mRNA"; gene_id "YHR213W"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 539151 539747 . + 0 transcript_id "YHR213W_mRNA"; gene_id "YHR213W"; +chrVIII SGD gene 540549 540782 . + . gene_id "YHR213W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 540549 540782 . + . transcript_id "YHR213W-A_mRNA"; gene_id "YHR213W-A"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 540549 540782 . + 0 transcript_id "YHR213W-A_mRNA"; gene_id "YHR213W-A"; +chrVIII SGD gene 540800 541099 . + . gene_id "YHR213W-B"; gene_biotype "protein_coding"; +chrVIII SGD transcript 540800 541099 . + . transcript_id "YHR213W-B_mRNA"; gene_id "YHR213W-B"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 540800 541099 . + 0 transcript_id "YHR213W-B_mRNA"; gene_id "YHR213W-B"; +chrVIII SGD gene 541651 542262 . + . gene_id "YHR214W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 541651 542262 . + . transcript_id "YHR214W_mRNA"; gene_id "YHR214W"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 541651 542262 . + 0 transcript_id "YHR214W_mRNA"; gene_id "YHR214W"; +chrVIII SGD gene 543008 543493 . + . gene_id "YHR214W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 543008 543493 . + . transcript_id "YHR214W-A_mRNA"; gene_id "YHR214W-A"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 543008 543493 . + 0 transcript_id "YHR214W-A_mRNA"; gene_id "YHR214W-A"; +chrVIII SGD gene 543964 549346 . - . gene_id "YHR214C-B"; gene_biotype "protein_coding"; +chrVIII SGD transcript 543964 549346 . - . transcript_id "YHR214C-B_dummy"; gene_id "YHR214C-B"; transcript_biotype "protein_coding"; +chrVIII SGD exon 543964 547929 . - 0 transcript_id "YHR214C-B_dummy"; gene_id "YHR214C-B"; +chrVIII SGD exon 547931 549346 . - 0 transcript_id "YHR214C-B_dummy"; gene_id "YHR214C-B"; +chrVIII SGD gene 547910 549346 . - . gene_id "YHR214C-C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 547910 549346 . - . transcript_id "YHR214C-C_dummy"; gene_id "YHR214C-C"; transcript_biotype "protein_coding"; +chrVIII SGD exon 547910 549346 . - 0 transcript_id "YHR214C-C_dummy"; gene_id "YHR214C-C"; +chrVIII SGD gene 550648 550941 . - . gene_id "YHR214C-D"; gene_biotype "protein_coding"; +chrVIII SGD transcript 550648 550941 . - . transcript_id "YHR214C-D_mRNA"; gene_id "YHR214C-D"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 550648 550941 . - 0 transcript_id "YHR214C-D_mRNA"; gene_id "YHR214C-D"; +chrVIII SGD gene 551200 551499 . - . gene_id "YHR214C-E"; gene_biotype "protein_coding"; +chrVIII SGD transcript 551200 551499 . - . transcript_id "YHR214C-E_mRNA"; gene_id "YHR214C-E"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 551200 551499 . - 0 transcript_id "YHR214C-E_mRNA"; gene_id "YHR214C-E"; +chrVIII SGD gene 552099 553502 . + . gene_id "YHR215W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 552099 553502 . + . transcript_id "YHR215W_mRNA"; gene_id "YHR215W"; gene_name "PHO12"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 552099 553502 . + 0 transcript_id "YHR215W_mRNA"; gene_name "PHO12"; gene_id "YHR215W"; +chrVIII SGD gene 554290 556163 . + . gene_id "YHR216W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 554290 556163 . + . transcript_id "YHR216W_id001"; gene_id "YHR216W"; gene_name "IMD2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 554290 556163 . + . transcript_id "YHR216W_id001"; gene_id "YHR216W"; gene_name "IMD2"; +chrVIII SGD transcript 554396 555967 . + . transcript_id "YHR216W_id030"; gene_id "YHR216W"; gene_name "IMD2"; transcript_biotype "protein_coding"; +chrVIII SGD exon 554396 555967 . + 0 transcript_id "YHR216W_id030"; gene_name "IMD2"; gene_id "YHR216W"; +chrVIII SGD gene 556581 557042 . - . gene_id "YHR217C"; gene_biotype "protein_coding"; +chrVIII SGD transcript 556581 557042 . - . transcript_id "YHR217C_mRNA"; gene_id "YHR217C"; transcript_biotype "protein_coding"; +chrVIII SGD exon 556581 557042 . - . transcript_id "YHR217C_mRNA"; gene_id "YHR217C"; +chrVIII SGD CDS 556581 557042 . - 0 transcript_id "YHR217C_mRNA"; gene_id "YHR217C"; +chrVIII SGD gene 558014 559924 . + . gene_id "YHR218W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 558014 559924 . + . transcript_id "YHR218W_mRNA"; gene_id "YHR218W"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 558014 558615 . + 0 transcript_id "YHR218W_mRNA"; gene_id "YHR218W"; +chrVIII SGD CDS 558715 559924 . + 1 transcript_id "YHR218W_mRNA"; gene_id "YHR218W"; +chrVIII SGD gene 559932 560249 . + . gene_id "YHR218W-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 559932 560249 . + . transcript_id "YHR218W-A_mRNA"; gene_id "YHR218W-A"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 559932 560249 . + 0 transcript_id "YHR218W-A_mRNA"; gene_id "YHR218W-A"; +chrVIII SGD gene 560173 562047 . + . gene_id "YHR219W"; gene_biotype "protein_coding"; +chrVIII SGD transcript 560173 562047 . + . transcript_id "YHR219W_mRNA"; gene_id "YHR219W"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 560173 562047 . + 0 transcript_id "YHR219W_mRNA"; gene_id "YHR219W"; +chrVIII SGD gene 561199 561681 . - . gene_id "YHR219C-A"; gene_biotype "protein_coding"; +chrVIII SGD transcript 561199 561681 . - . transcript_id "YHR219C-A_mRNA"; gene_id "YHR219C-A"; transcript_biotype "protein_coding"; +chrVIII SGD CDS 561199 561681 . - 0 transcript_id "YHR219C-A_mRNA"; gene_id "YHR219C-A"; +chrIX SGD gene 483 6147 . - . gene_id "YIL177C"; gene_biotype "protein_coding"; +chrIX SGD transcript 483 6147 . - . transcript_id "YIL177C_mRNA"; gene_id "YIL177C"; transcript_biotype "protein_coding"; +chrIX SGD CDS 483 4598 . - 0 transcript_id "YIL177C_mRNA"; gene_id "YIL177C"; +chrIX SGD CDS 4987 6147 . - 0 transcript_id "YIL177C_mRNA"; gene_id "YIL177C"; +chrIX SGD gene 846 1328 . + . gene_id "YIL177W-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 846 1328 . + . transcript_id "YIL177W-A_mRNA"; gene_id "YIL177W-A"; transcript_biotype "protein_coding"; +chrIX SGD CDS 846 1328 . + 0 transcript_id "YIL177W-A_mRNA"; gene_id "YIL177W-A"; +chrIX SGD gene 8793 9155 . - . gene_id "YIL176C"; gene_biotype "protein_coding"; +chrIX SGD transcript 8793 9155 . - . transcript_id "YIL176C_mRNA"; gene_id "YIL176C"; gene_name "PAU14"; transcript_biotype "protein_coding"; +chrIX SGD CDS 8793 9155 . - 0 transcript_id "YIL176C_mRNA"; gene_name "PAU14"; gene_id "YIL176C"; +chrIX SGD gene 11492 16141 . + . gene_id "YIL173W"; gene_biotype "protein_coding"; +chrIX SGD transcript 11492 16141 . + . transcript_id "YIL173W_mRNA"; gene_id "YIL173W"; gene_name "VTH1"; transcript_biotype "protein_coding"; +chrIX SGD CDS 11492 16141 . + 0 transcript_id "YIL173W_mRNA"; gene_name "VTH1"; gene_id "YIL173W"; +chrIX SGD gene 16784 18553 . - . gene_id "YIL172C"; gene_biotype "protein_coding"; +chrIX SGD transcript 16784 18553 . - . transcript_id "YIL172C_mRNA"; gene_id "YIL172C"; gene_name "IMA3"; transcript_biotype "protein_coding"; +chrIX SGD CDS 16784 18553 . - 0 transcript_id "YIL172C_mRNA"; gene_name "IMA3"; gene_id "YIL172C"; +chrIX SGD gene 18260 18712 . + . gene_id "YIL171W-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 18260 18712 . + . transcript_id "YIL171W-A_mRNA"; gene_id "YIL171W-A"; transcript_biotype "protein_coding"; +chrIX SGD CDS 18260 18712 . + 0 transcript_id "YIL171W-A_mRNA"; gene_id "YIL171W-A"; +chrIX SGD gene 23119 26106 . - . gene_id "YIL169C"; gene_biotype "protein_coding"; +chrIX SGD transcript 23119 26106 . - . transcript_id "YIL169C_id001"; gene_id "YIL169C"; gene_name "CSS1"; transcript_biotype "protein_coding"; +chrIX SGD exon 23119 26106 . - 0 transcript_id "YIL169C_id001"; gene_name "CSS1"; gene_id "YIL169C"; +chrIX SGD gene 30938 32566 . - . gene_id "YIL166C"; gene_biotype "protein_coding"; +chrIX SGD transcript 30938 32566 . - . transcript_id "YIL166C_mRNA"; gene_id "YIL166C"; gene_name "SOA1"; transcript_biotype "protein_coding"; +chrIX SGD CDS 30938 32566 . - 0 transcript_id "YIL166C_mRNA"; gene_name "SOA1"; gene_id "YIL166C"; +chrIX SGD gene 33451 34280 . - . gene_id "YIL165C"; gene_biotype "protein_coding"; +chrIX SGD transcript 33451 34280 . - . transcript_id "YIL165C_id001"; gene_id "YIL165C"; transcript_biotype "protein_coding"; +chrIX SGD exon 33451 34280 . - . transcript_id "YIL165C_id001"; gene_id "YIL165C"; +chrIX SGD transcript 33718 34077 . - . transcript_id "YIL165C_id007"; gene_id "YIL165C"; transcript_biotype "protein_coding"; +chrIX SGD exon 33718 34077 . - 0 transcript_id "YIL165C_id007"; gene_id "YIL165C"; +chrIX SGD gene 34087 34686 . - . gene_id "YIL164C"; gene_biotype "protein_coding"; +chrIX SGD transcript 34087 34686 . - . transcript_id "YIL164C_mRNA"; gene_id "YIL164C"; gene_name "NIT1"; transcript_biotype "protein_coding"; +chrIX SGD CDS 34087 34686 . - 0 transcript_id "YIL164C_mRNA"; gene_name "NIT1"; gene_id "YIL164C"; +chrIX SGD gene 36899 37252 . - . gene_id "YIL163C"; gene_biotype "protein_coding"; +chrIX SGD transcript 36899 37252 . - . transcript_id "YIL163C_mRNA"; gene_id "YIL163C"; transcript_biotype "protein_coding"; +chrIX SGD CDS 36899 37252 . - 0 transcript_id "YIL163C_mRNA"; gene_id "YIL163C"; +chrIX SGD gene 37346 39203 . + . gene_id "YIL162W"; gene_biotype "protein_coding"; +chrIX SGD transcript 37346 39203 . + . transcript_id "YIL162W_id007"; gene_id "YIL162W"; gene_name "SUC2"; transcript_biotype "protein_coding"; +chrIX SGD exon 37346 39203 . + . transcript_id "YIL162W_id007"; gene_id "YIL162W"; gene_name "SUC2"; +chrIX SGD transcript 37385 38983 . + . transcript_id "YIL162W_id001"; gene_id "YIL162W"; gene_name "SUC2"; transcript_biotype "protein_coding"; +chrIX SGD exon 37385 38983 . + 0 transcript_id "YIL162W_id001"; gene_name "SUC2"; gene_id "YIL162W"; +chrIX SGD gene 39423 40232 . + . gene_id "YIL161W"; gene_biotype "protein_coding"; +chrIX SGD transcript 39423 40232 . + . transcript_id "YIL161W_id003"; gene_id "YIL161W"; gene_name "SMU2"; transcript_biotype "protein_coding"; +chrIX SGD exon 39423 40232 . + . transcript_id "YIL161W_id003"; gene_id "YIL161W"; gene_name "SMU2"; +chrIX SGD transcript 39433 40140 . + . transcript_id "YIL161W_id001"; gene_id "YIL161W"; gene_name "SMU2"; transcript_biotype "protein_coding"; +chrIX SGD exon 39433 40140 . + 0 transcript_id "YIL161W_id001"; gene_name "SMU2"; gene_id "YIL161W"; +chrIX SGD gene 40191 41444 . - . gene_id "YIL160C"; gene_biotype "protein_coding"; +chrIX SGD transcript 40191 41444 . - . transcript_id "YIL160C_id001"; gene_id "YIL160C"; gene_name "POT1"; transcript_biotype "protein_coding"; +chrIX SGD exon 40191 41444 . - 0 transcript_id "YIL160C_id001"; gene_name "POT1"; gene_id "YIL160C"; +chrIX SGD gene 41825 45952 . + . gene_id "YIL159W"; gene_biotype "protein_coding"; +chrIX SGD transcript 41825 45952 . + . transcript_id "YIL159W_id001"; gene_id "YIL159W"; gene_name "BNR1"; transcript_biotype "protein_coding"; +chrIX SGD exon 41825 45952 . + 0 transcript_id "YIL159W_id001"; gene_name "BNR1"; gene_id "YIL159W"; +chrIX SGD gene 46143 46924 . + . gene_id "YIL158W"; gene_biotype "protein_coding"; +chrIX SGD transcript 46143 46924 . + . transcript_id "YIL158W_id002"; gene_id "YIL158W"; gene_name "AIM20"; transcript_biotype "protein_coding"; +chrIX SGD exon 46143 46924 . + . transcript_id "YIL158W_id002"; gene_id "YIL158W"; gene_name "AIM20"; +chrIX SGD transcript 46201 46815 . + . transcript_id "YIL158W_id001"; gene_id "YIL158W"; gene_name "AIM20"; transcript_biotype "protein_coding"; +chrIX SGD exon 46201 46815 . + 0 transcript_id "YIL158W_id001"; gene_name "AIM20"; gene_id "YIL158W"; +chrIX SGD gene 46697 47576 . - . gene_id "YIL157C"; gene_biotype "protein_coding"; +chrIX SGD transcript 46697 47576 . - . transcript_id "YIL157C_id001"; gene_id "YIL157C"; gene_name "COA1"; transcript_biotype "protein_coding"; +chrIX SGD exon 46697 47576 . - . transcript_id "YIL157C_id001"; gene_id "YIL157C"; gene_name "COA1"; +chrIX SGD transcript 46949 47542 . - . transcript_id "YIL157C_id006"; gene_id "YIL157C"; gene_name "COA1"; transcript_biotype "protein_coding"; +chrIX SGD exon 46949 47542 . - 0 transcript_id "YIL157C_id006"; gene_name "COA1"; gene_id "YIL157C"; +chrIX SGD gene 47292 47693 . + . gene_id "YIL156W-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 47292 47693 . + . transcript_id "YIL156W-A_mRNA"; gene_id "YIL156W-A"; transcript_biotype "protein_coding"; +chrIX SGD CDS 47292 47693 . + 0 transcript_id "YIL156W-A_mRNA"; gene_id "YIL156W-A"; +chrIX SGD gene 47673 48190 . + . gene_id "YIL156W-B"; gene_biotype "protein_coding"; +chrIX SGD transcript 47673 48190 . + . transcript_id "YIL156W-B_id001"; gene_id "YIL156W-B"; gene_name "ATG44"; transcript_biotype "protein_coding"; +chrIX SGD exon 47673 48190 . + . transcript_id "YIL156W-B_id001"; gene_id "YIL156W-B"; gene_name "ATG44"; +chrIX SGD transcript 47690 47973 . + . transcript_id "YIL156W-B_id002"; gene_id "YIL156W-B"; gene_name "ATG44"; transcript_biotype "protein_coding"; +chrIX SGD exon 47690 47698 . + 0 transcript_id "YIL156W-B_id002"; gene_name "ATG44"; gene_id "YIL156W-B"; +chrIX SGD exon 47761 47973 . + 0 transcript_id "YIL156W-B_id002"; gene_name "ATG44"; gene_id "YIL156W-B"; +chrIX SGD gene 48091 51306 . + . gene_id "YIL156W"; gene_biotype "protein_coding"; +chrIX SGD transcript 48091 51306 . + . transcript_id "YIL156W_id001"; gene_id "YIL156W"; gene_name "UBP7"; transcript_biotype "protein_coding"; +chrIX SGD exon 48091 51306 . + 0 transcript_id "YIL156W_id001"; gene_name "UBP7"; gene_id "YIL156W"; +chrIX SGD gene 51419 53761 . - . gene_id "YIL155C"; gene_biotype "protein_coding"; +chrIX SGD transcript 51419 53761 . - . transcript_id "YIL155C_id011"; gene_id "YIL155C"; gene_name "GUT2"; transcript_biotype "protein_coding"; +chrIX SGD exon 51419 53761 . - . transcript_id "YIL155C_id011"; gene_id "YIL155C"; gene_name "GUT2"; +chrIX SGD transcript 51759 53708 . - . transcript_id "YIL155C_id001"; gene_id "YIL155C"; gene_name "GUT2"; transcript_biotype "protein_coding"; +chrIX SGD exon 51759 53708 . - 0 transcript_id "YIL155C_id001"; gene_name "GUT2"; gene_id "YIL155C"; +chrIX SGD gene 53694 55046 . - . gene_id "YIL154C"; gene_biotype "protein_coding"; +chrIX SGD transcript 53694 55046 . - . transcript_id "YIL154C_id002"; gene_id "YIL154C"; gene_name "IMP21"; transcript_biotype "protein_coding"; +chrIX SGD exon 53694 55046 . - . transcript_id "YIL154C_id002"; gene_id "YIL154C"; gene_name "IMP21"; +chrIX SGD transcript 53981 55021 . - . transcript_id "YIL154C_id001"; gene_id "YIL154C"; gene_name "IMP21"; transcript_biotype "protein_coding"; +chrIX SGD exon 53981 55021 . - 0 transcript_id "YIL154C_id001"; gene_name "IMP21"; gene_id "YIL154C"; +chrIX SGD gene 55165 56434 . + . gene_id "YIL153W"; gene_biotype "protein_coding"; +chrIX SGD transcript 55165 56434 . + . transcript_id "YIL153W_id003"; gene_id "YIL153W"; gene_name "RRD1"; transcript_biotype "protein_coding"; +chrIX SGD exon 55165 56434 . + . transcript_id "YIL153W_id003"; gene_id "YIL153W"; gene_name "RRD1"; +chrIX SGD transcript 55198 56379 . + . transcript_id "YIL153W_id001"; gene_id "YIL153W"; gene_name "RRD1"; transcript_biotype "protein_coding"; +chrIX SGD exon 55198 56379 . + 0 transcript_id "YIL153W_id001"; gene_name "RRD1"; gene_id "YIL153W"; +chrIX SGD gene 56472 57405 . + . gene_id "YIL152W"; gene_biotype "protein_coding"; +chrIX SGD transcript 56472 57405 . + . transcript_id "YIL152W_id001"; gene_id "YIL152W"; gene_name "VPR1"; transcript_biotype "protein_coding"; +chrIX SGD exon 56472 57405 . + . transcript_id "YIL152W_id001"; gene_id "YIL152W"; gene_name "VPR1"; +chrIX SGD transcript 56545 57252 . + . transcript_id "YIL152W_id003"; gene_id "YIL152W"; gene_name "VPR1"; transcript_biotype "protein_coding"; +chrIX SGD exon 56545 57252 . + 0 transcript_id "YIL152W_id003"; gene_name "VPR1"; gene_id "YIL152W"; +chrIX SGD gene 57338 60694 . - . gene_id "YIL151C"; gene_biotype "protein_coding"; +chrIX SGD transcript 57338 60694 . - . transcript_id "YIL151C_mRNA"; gene_id "YIL151C"; gene_name "ESL1"; transcript_biotype "protein_coding"; +chrIX SGD CDS 57338 60694 . - 0 transcript_id "YIL151C_mRNA"; gene_name "ESL1"; gene_id "YIL151C"; +chrIX SGD gene 61013 62728 . - . gene_id "YIL150C"; gene_biotype "protein_coding"; +chrIX SGD transcript 61013 62728 . - . transcript_id "YIL150C_id001"; gene_id "YIL150C"; gene_name "MCM10"; transcript_biotype "protein_coding"; +chrIX SGD exon 61013 62728 . - 0 transcript_id "YIL150C_id001"; gene_name "MCM10"; gene_id "YIL150C"; +chrIX SGD gene 63028 68067 . - . gene_id "YIL149C"; gene_biotype "protein_coding"; +chrIX SGD transcript 63028 68067 . - . transcript_id "YIL149C_mRNA"; gene_id "YIL149C"; gene_name "MLP2"; transcript_biotype "protein_coding"; +chrIX SGD CDS 63028 68067 . - 0 transcript_id "YIL149C_mRNA"; gene_name "MLP2"; gene_id "YIL149C"; +chrIX SGD gene 68143 69595 . + . gene_id "YIL148W"; gene_biotype "protein_coding"; +chrIX SGD transcript 68143 69595 . + . transcript_id "YIL148W_id001"; gene_id "YIL148W"; gene_name "RPL40A"; transcript_biotype "protein_coding"; +chrIX SGD exon 68143 69595 . + . transcript_id "YIL148W_id001"; gene_id "YIL148W"; gene_name "RPL40A"; +chrIX SGD transcript 68708 69528 . + . transcript_id "YIL148W_id002"; gene_id "YIL148W"; gene_name "RPL40A"; transcript_biotype "protein_coding"; +chrIX SGD exon 68708 68715 . + 0 transcript_id "YIL148W_id002"; gene_name "RPL40A"; gene_id "YIL148W"; +chrIX SGD exon 69150 69528 . + 1 transcript_id "YIL148W_id002"; gene_name "RPL40A"; gene_id "YIL148W"; +chrIX SGD gene 69791 73453 . - . gene_id "YIL147C"; gene_biotype "protein_coding"; +chrIX SGD transcript 69791 73453 . - . transcript_id "YIL147C_id001"; gene_id "YIL147C"; gene_name "SLN1"; transcript_biotype "protein_coding"; +chrIX SGD exon 69791 73453 . - 0 transcript_id "YIL147C_id001"; gene_name "SLN1"; gene_id "YIL147C"; +chrIX SGD gene 73969 76139 . - . gene_id "YIL146C"; gene_biotype "protein_coding"; +chrIX SGD transcript 73969 76139 . - . transcript_id "YIL146C_id001"; gene_id "YIL146C"; gene_name "ATG32"; transcript_biotype "protein_coding"; +chrIX SGD exon 73969 76139 . - . transcript_id "YIL146C_id001"; gene_id "YIL146C"; gene_name "ATG32"; +chrIX SGD transcript 74184 75773 . - . transcript_id "YIL146C_id002"; gene_id "YIL146C"; gene_name "ATG32"; transcript_biotype "protein_coding"; +chrIX SGD exon 74184 75773 . - 0 transcript_id "YIL146C_id002"; gene_name "ATG32"; gene_id "YIL146C"; +chrIX SGD gene 75809 77327 . - . gene_id "YIL145C"; gene_biotype "protein_coding"; +chrIX SGD transcript 75809 77327 . - . transcript_id "YIL145C_id001"; gene_id "YIL145C"; gene_name "PAN6"; transcript_biotype "protein_coding"; +chrIX SGD exon 75809 77327 . - . transcript_id "YIL145C_id001"; gene_id "YIL145C"; gene_name "PAN6"; +chrIX SGD transcript 76354 77283 . - . transcript_id "YIL145C_id002"; gene_id "YIL145C"; gene_name "PAN6"; transcript_biotype "protein_coding"; +chrIX SGD exon 76354 77283 . - 0 transcript_id "YIL145C_id002"; gene_name "PAN6"; gene_id "YIL145C"; +chrIX SGD gene 78074 80149 . + . gene_id "YIL144W"; gene_biotype "protein_coding"; +chrIX SGD transcript 78074 80149 . + . transcript_id "YIL144W_id001"; gene_id "YIL144W"; gene_name "NDC80"; transcript_biotype "protein_coding"; +chrIX SGD exon 78074 80149 . + 0 transcript_id "YIL144W_id001"; gene_name "NDC80"; gene_id "YIL144W"; +chrIX SGD gene 80510 83041 . - . gene_id "YIL143C"; gene_biotype "protein_coding"; +chrIX SGD transcript 80510 83041 . - . transcript_id "YIL143C_mRNA"; gene_id "YIL143C"; gene_name "SSL2"; transcript_biotype "protein_coding"; +chrIX SGD CDS 80510 83041 . - 0 transcript_id "YIL143C_mRNA"; gene_name "SSL2"; gene_id "YIL143C"; +chrIX SGD gene 83208 83540 . - . gene_id "YIL142C-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 83208 83540 . - . transcript_id "YIL142C-A_mRNA"; gene_id "YIL142C-A"; transcript_biotype "protein_coding"; +chrIX SGD CDS 83208 83540 . - 0 transcript_id "YIL142C-A_mRNA"; gene_id "YIL142C-A"; +chrIX SGD gene 83275 85069 . + . gene_id "YIL142W"; gene_biotype "protein_coding"; +chrIX SGD transcript 83275 85069 . + . transcript_id "YIL142W_id003"; gene_id "YIL142W"; gene_name "CCT2"; transcript_biotype "protein_coding"; +chrIX SGD exon 83275 85069 . + . transcript_id "YIL142W_id003"; gene_id "YIL142W"; gene_name "CCT2"; +chrIX SGD transcript 83302 84885 . + . transcript_id "YIL142W_id001"; gene_id "YIL142W"; gene_name "CCT2"; transcript_biotype "protein_coding"; +chrIX SGD exon 83302 84885 . + 0 transcript_id "YIL142W_id001"; gene_name "CCT2"; gene_id "YIL142W"; +chrIX SGD gene 85053 85442 . + . gene_id "YIL141W"; gene_biotype "protein_coding"; +chrIX SGD transcript 85053 85442 . + . transcript_id "YIL141W_mRNA"; gene_id "YIL141W"; transcript_biotype "protein_coding"; +chrIX SGD CDS 85053 85442 . + 0 transcript_id "YIL141W_mRNA"; gene_id "YIL141W"; +chrIX SGD gene 85145 87961 . + . gene_id "YIL140W"; gene_biotype "protein_coding"; +chrIX SGD transcript 85145 87961 . + . transcript_id "YIL140W_id001"; gene_id "YIL140W"; gene_name "AXL2"; transcript_biotype "protein_coding"; +chrIX SGD exon 85145 87961 . + . transcript_id "YIL140W_id001"; gene_id "YIL140W"; gene_name "AXL2"; +chrIX SGD transcript 85366 87837 . + . transcript_id "YIL140W_id002"; gene_id "YIL140W"; gene_name "AXL2"; transcript_biotype "protein_coding"; +chrIX SGD exon 85366 87837 . + 0 transcript_id "YIL140W_id002"; gene_name "AXL2"; gene_id "YIL140W"; +chrIX SGD gene 87857 88937 . - . gene_id "YIL139C"; gene_biotype "protein_coding"; +chrIX SGD transcript 87857 88937 . - . transcript_id "YIL139C_id003"; gene_id "YIL139C"; gene_name "REV7"; transcript_biotype "protein_coding"; +chrIX SGD exon 87857 88937 . - . transcript_id "YIL139C_id003"; gene_id "YIL139C"; gene_name "REV7"; +chrIX SGD transcript 87979 88716 . - . transcript_id "YIL139C_id001"; gene_id "YIL139C"; gene_name "REV7"; transcript_biotype "protein_coding"; +chrIX SGD exon 87979 88716 . - 0 transcript_id "YIL139C_id001"; gene_name "REV7"; gene_id "YIL139C"; +chrIX SGD gene 88452 89734 . - . gene_id "YIL138C"; gene_biotype "protein_coding"; +chrIX SGD transcript 88452 89734 . - . transcript_id "YIL138C_id002"; gene_id "YIL138C"; gene_name "TPM2"; transcript_biotype "protein_coding"; +chrIX SGD exon 88452 89734 . - . transcript_id "YIL138C_id002"; gene_id "YIL138C"; gene_name "TPM2"; +chrIX SGD transcript 89230 89715 . - . transcript_id "YIL138C_id001"; gene_id "YIL138C"; gene_name "TPM2"; transcript_biotype "protein_coding"; +chrIX SGD exon 89230 89715 . - 0 transcript_id "YIL138C_id001"; gene_name "TPM2"; gene_id "YIL138C"; +chrIX SGD gene 89845 92837 . - . gene_id "YIL137C"; gene_biotype "protein_coding"; +chrIX SGD transcript 89845 92837 . - . transcript_id "YIL137C_id002"; gene_id "YIL137C"; gene_name "TMA108"; transcript_biotype "protein_coding"; +chrIX SGD exon 89845 92837 . - . transcript_id "YIL137C_id002"; gene_id "YIL137C"; gene_name "TMA108"; +chrIX SGD transcript 89948 92788 . - . transcript_id "YIL137C_id001"; gene_id "YIL137C"; gene_name "TMA108"; transcript_biotype "protein_coding"; +chrIX SGD exon 89948 92788 . - 0 transcript_id "YIL137C_id001"; gene_name "TMA108"; gene_id "YIL137C"; +chrIX SGD gene 93556 94899 . + . gene_id "YIL136W"; gene_biotype "protein_coding"; +chrIX SGD transcript 93556 94899 . + . transcript_id "YIL136W_id020"; gene_id "YIL136W"; gene_name "OM45"; transcript_biotype "protein_coding"; +chrIX SGD exon 93556 94899 . + . transcript_id "YIL136W_id020"; gene_id "YIL136W"; gene_name "OM45"; +chrIX SGD transcript 93619 94800 . + . transcript_id "YIL136W_id001"; gene_id "YIL136W"; gene_name "OM45"; transcript_biotype "protein_coding"; +chrIX SGD exon 93619 94800 . + 0 transcript_id "YIL136W_id001"; gene_name "OM45"; gene_id "YIL136W"; +chrIX SGD gene 94910 96597 . - . gene_id "YIL135C"; gene_biotype "protein_coding"; +chrIX SGD transcript 94910 96597 . - . transcript_id "YIL135C_id001"; gene_id "YIL135C"; gene_name "VHS2"; transcript_biotype "protein_coding"; +chrIX SGD exon 94910 96597 . - . transcript_id "YIL135C_id001"; gene_id "YIL135C"; gene_name "VHS2"; +chrIX SGD transcript 95065 96375 . - . transcript_id "YIL135C_id002"; gene_id "YIL135C"; gene_name "VHS2"; transcript_biotype "protein_coding"; +chrIX SGD exon 95065 96375 . - 0 transcript_id "YIL135C_id002"; gene_name "VHS2"; gene_id "YIL135C"; +chrIX SGD gene 96522 96725 . - . gene_id "YIL134C-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 96522 96725 . - . transcript_id "YIL134C-A_id001"; gene_id "YIL134C-A"; transcript_biotype "protein_coding"; +chrIX SGD exon 96522 96725 . - 0 transcript_id "YIL134C-A_id001"; gene_id "YIL134C-A"; +chrIX SGD gene 97110 98401 . + . gene_id "YIL134W"; gene_biotype "protein_coding"; +chrIX SGD transcript 97110 98401 . + . transcript_id "YIL134W_id003"; gene_id "YIL134W"; gene_name "FLX1"; transcript_biotype "protein_coding"; +chrIX SGD exon 97110 98401 . + . transcript_id "YIL134W_id003"; gene_id "YIL134W"; gene_name "FLX1"; +chrIX SGD gene 97111 97246 . + . gene_id "YNCI0001W"; gene_biotype "ncRNA"; +chrIX SGD transcript 97111 97246 . + . transcript_id "YNCI0001W_snoRNA"; gene_id "YNCI0001W"; gene_name "SNR68"; transcript_biotype "ncRNA"; +chrIX SGD exon 97111 97246 . + . transcript_id "YNCI0001W_snoRNA"; gene_name "SNR68"; gene_id "YNCI0001W"; +chrIX SGD transcript 97395 98330 . + . transcript_id "YIL134W_id001"; gene_id "YIL134W"; gene_name "FLX1"; transcript_biotype "protein_coding"; +chrIX SGD exon 97395 98330 . + 0 transcript_id "YIL134W_id001"; gene_name "FLX1"; gene_id "YIL134W"; +chrIX SGD gene 98299 99477 . - . gene_id "YIL133C"; gene_biotype "protein_coding"; +chrIX SGD transcript 98299 99477 . - . transcript_id "YIL133C_id003"; gene_id "YIL133C"; gene_name "RPL16A"; transcript_biotype "protein_coding"; +chrIX SGD exon 98299 99477 . - . transcript_id "YIL133C_id003"; gene_id "YIL133C"; gene_name "RPL16A"; +chrIX SGD transcript 98527 99416 . - . transcript_id "YIL133C_id001"; gene_id "YIL133C"; gene_name "RPL16A"; transcript_biotype "protein_coding"; +chrIX SGD exon 98527 99095 . - 2 transcript_id "YIL133C_id001"; gene_name "RPL16A"; gene_id "YIL133C"; +chrIX SGD exon 99386 99416 . - 0 transcript_id "YIL133C_id001"; gene_name "RPL16A"; gene_id "YIL133C"; +chrIX SGD gene 99467 100711 . - . gene_id "YIL132C"; gene_biotype "protein_coding"; +chrIX SGD transcript 99467 100711 . - . transcript_id "YIL132C_id001"; gene_id "YIL132C"; gene_name "CSM2"; transcript_biotype "protein_coding"; +chrIX SGD exon 99467 100711 . - . transcript_id "YIL132C_id001"; gene_id "YIL132C"; gene_name "CSM2"; +chrIX SGD transcript 99860 100501 . - . transcript_id "YIL132C_id002"; gene_id "YIL132C"; gene_name "CSM2"; transcript_biotype "protein_coding"; +chrIX SGD exon 99860 100501 . - 0 transcript_id "YIL132C_id002"; gene_name "CSM2"; gene_id "YIL132C"; +chrIX SGD gene 100546 102290 . - . gene_id "YIL131C"; gene_biotype "protein_coding"; +chrIX SGD transcript 100546 102290 . - . transcript_id "YIL131C_id002"; gene_id "YIL131C"; gene_name "FKH1"; transcript_biotype "protein_coding"; +chrIX SGD exon 100546 102290 . - . transcript_id "YIL131C_id002"; gene_id "YIL131C"; gene_name "FKH1"; +chrIX SGD transcript 100781 102235 . - . transcript_id "YIL131C_id001"; gene_id "YIL131C"; gene_name "FKH1"; transcript_biotype "protein_coding"; +chrIX SGD exon 100781 102235 . - 0 transcript_id "YIL131C_id001"; gene_name "FKH1"; gene_id "YIL131C"; +chrIX SGD gene 102782 105676 . + . gene_id "YIL130W"; gene_biotype "protein_coding"; +chrIX SGD transcript 102782 105676 . + . transcript_id "YIL130W_mRNA"; gene_id "YIL130W"; gene_name "ASG1"; transcript_biotype "protein_coding"; +chrIX SGD CDS 102782 105676 . + 0 transcript_id "YIL130W_mRNA"; gene_name "ASG1"; gene_id "YIL130W"; +chrIX SGD gene 106107 113237 . - . gene_id "YIL129C"; gene_biotype "protein_coding"; +chrIX SGD transcript 106107 113237 . - . transcript_id "YIL129C_mRNA"; gene_id "YIL129C"; gene_name "TAO3"; transcript_biotype "protein_coding"; +chrIX SGD CDS 106107 113237 . - 0 transcript_id "YIL129C_mRNA"; gene_name "TAO3"; gene_id "YIL129C"; +chrIX SGD gene 113806 116904 . + . gene_id "YIL128W"; gene_biotype "protein_coding"; +chrIX SGD transcript 113806 116904 . + . transcript_id "YIL128W_mRNA"; gene_id "YIL128W"; gene_name "MET18"; transcript_biotype "protein_coding"; +chrIX SGD CDS 113806 116904 . + 0 transcript_id "YIL128W_mRNA"; gene_name "MET18"; gene_id "YIL128W"; +chrIX SGD gene 116360 117668 . - . gene_id "YIL127C"; gene_biotype "protein_coding"; +chrIX SGD transcript 116360 117668 . - . transcript_id "YIL127C_id003"; gene_id "YIL127C"; gene_name "RRT14"; transcript_biotype "protein_coding"; +chrIX SGD exon 116360 117668 . - . transcript_id "YIL127C_id003"; gene_id "YIL127C"; gene_name "RRT14"; +chrIX SGD transcript 117024 117644 . - . transcript_id "YIL127C_id001"; gene_id "YIL127C"; gene_name "RRT14"; transcript_biotype "protein_coding"; +chrIX SGD exon 117024 117644 . - 0 transcript_id "YIL127C_id001"; gene_name "RRT14"; gene_id "YIL127C"; +chrIX SGD gene 117922 122208 . + . gene_id "YIL126W"; gene_biotype "protein_coding"; +chrIX SGD transcript 117922 122208 . + . transcript_id "YIL126W_id001"; gene_id "YIL126W"; gene_name "STH1"; transcript_biotype "protein_coding"; +chrIX SGD exon 117922 122208 . + . transcript_id "YIL126W_id001"; gene_id "YIL126W"; gene_name "STH1"; +chrIX SGD transcript 117992 122071 . + . transcript_id "YIL126W_id002"; gene_id "YIL126W"; gene_name "STH1"; transcript_biotype "protein_coding"; +chrIX SGD exon 117992 122071 . + 0 transcript_id "YIL126W_id002"; gene_name "STH1"; gene_id "YIL126W"; +chrIX SGD gene 122689 125733 . + . gene_id "YIL125W"; gene_biotype "protein_coding"; +chrIX SGD transcript 122689 125733 . + . transcript_id "YIL125W_id001"; gene_id "YIL125W"; gene_name "KGD1"; transcript_biotype "protein_coding"; +chrIX SGD exon 122689 125733 . + 0 transcript_id "YIL125W_id001"; gene_name "KGD1"; gene_id "YIL125W"; +chrIX SGD gene 126162 127484 . + . gene_id "YIL124W"; gene_biotype "protein_coding"; +chrIX SGD transcript 126162 127484 . + . transcript_id "YIL124W_id003"; gene_id "YIL124W"; gene_name "AYR1"; transcript_biotype "protein_coding"; +chrIX SGD exon 126162 127484 . + . transcript_id "YIL124W_id003"; gene_id "YIL124W"; gene_name "AYR1"; +chrIX SGD transcript 126204 127097 . + . transcript_id "YIL124W_id001"; gene_id "YIL124W"; gene_name "AYR1"; transcript_biotype "protein_coding"; +chrIX SGD exon 126204 127097 . + 0 transcript_id "YIL124W_id001"; gene_name "AYR1"; gene_id "YIL124W"; +chrIX SGD gene 127427 129918 . + . gene_id "YIL123W"; gene_biotype "protein_coding"; +chrIX SGD transcript 127427 129918 . + . transcript_id "YIL123W_id002"; gene_id "YIL123W"; gene_name "SIM1"; transcript_biotype "protein_coding"; +chrIX SGD exon 127427 129918 . + . transcript_id "YIL123W_id002"; gene_id "YIL123W"; gene_name "SIM1"; +chrIX SGD transcript 127662 129581 . + . transcript_id "YIL123W_id001"; gene_id "YIL123W"; gene_name "SIM1"; transcript_biotype "protein_coding"; +chrIX SGD exon 127662 128148 . + . transcript_id "YIL123W_id001"; gene_name "SIM1"; gene_id "YIL123W"; +chrIX SGD exon 128151 129581 . + . transcript_id "YIL123W_id001"; gene_name "SIM1"; gene_id "YIL123W"; +chrIX SGD exon 128151 129581 . + 0 transcript_id "YIL123W_id001"; gene_name "SIM1"; gene_id "YIL123W"; +chrIX SGD gene 130323 131821 . + . gene_id "YIL122W"; gene_biotype "protein_coding"; +chrIX SGD transcript 130323 131821 . + . transcript_id "YIL122W_id005"; gene_id "YIL122W"; gene_name "POG1"; transcript_biotype "protein_coding"; +chrIX SGD exon 130323 131821 . + . transcript_id "YIL122W_id005"; gene_id "YIL122W"; gene_name "POG1"; +chrIX SGD transcript 130610 131665 . + . transcript_id "YIL122W_id001"; gene_id "YIL122W"; gene_name "POG1"; transcript_biotype "protein_coding"; +chrIX SGD exon 130610 131665 . + 0 transcript_id "YIL122W_id001"; gene_name "POG1"; gene_id "YIL122W"; +chrIX SGD gene 132225 134349 . + . gene_id "YIL121W"; gene_biotype "protein_coding"; +chrIX SGD transcript 132225 134349 . + . transcript_id "YIL121W_id001"; gene_id "YIL121W"; gene_name "QDR2"; transcript_biotype "protein_coding"; +chrIX SGD exon 132225 134349 . + . transcript_id "YIL121W_id001"; gene_id "YIL121W"; gene_name "QDR2"; +chrIX SGD transcript 132244 133872 . + . transcript_id "YIL121W_id005"; gene_id "YIL121W"; gene_name "QDR2"; transcript_biotype "protein_coding"; +chrIX SGD exon 132244 133872 . + 0 transcript_id "YIL121W_id005"; gene_name "QDR2"; gene_id "YIL121W"; +chrIX SGD gene 134417 136108 . + . gene_id "YIL120W"; gene_biotype "protein_coding"; +chrIX SGD transcript 134417 136108 . + . transcript_id "YIL120W_mRNA"; gene_id "YIL120W"; gene_name "QDR1"; transcript_biotype "protein_coding"; +chrIX SGD CDS 134417 136108 . + 0 transcript_id "YIL120W_mRNA"; gene_name "QDR1"; gene_id "YIL120W"; +chrIX SGD gene 136359 138095 . - . gene_id "YIL119C"; gene_biotype "protein_coding"; +chrIX SGD transcript 136359 138095 . - . transcript_id "YIL119C_id001"; gene_id "YIL119C"; gene_name "RPI1"; transcript_biotype "protein_coding"; +chrIX SGD exon 136359 138095 . - . transcript_id "YIL119C_id001"; gene_id "YIL119C"; gene_name "RPI1"; +chrIX SGD transcript 136654 137877 . - . transcript_id "YIL119C_id004"; gene_id "YIL119C"; gene_name "RPI1"; transcript_biotype "protein_coding"; +chrIX SGD exon 136654 137877 . - 0 transcript_id "YIL119C_id004"; gene_name "RPI1"; gene_id "YIL119C"; +chrIX SGD gene 139591 140618 . + . gene_id "YIL118W"; gene_biotype "protein_coding"; +chrIX SGD transcript 139591 140618 . + . transcript_id "YIL118W_id002"; gene_id "YIL118W"; gene_name "RHO3"; transcript_biotype "protein_coding"; +chrIX SGD exon 139591 140618 . + . transcript_id "YIL118W_id002"; gene_id "YIL118W"; gene_name "RHO3"; +chrIX SGD transcript 139752 140447 . + . transcript_id "YIL118W_id001"; gene_id "YIL118W"; gene_name "RHO3"; transcript_biotype "protein_coding"; +chrIX SGD exon 139752 140447 . + 0 transcript_id "YIL118W_id001"; gene_name "RHO3"; gene_id "YIL118W"; +chrIX SGD gene 140517 141754 . - . gene_id "YIL117C"; gene_biotype "protein_coding"; +chrIX SGD transcript 140517 141754 . - . transcript_id "YIL117C_id003"; gene_id "YIL117C"; gene_name "PRM5"; transcript_biotype "protein_coding"; +chrIX SGD exon 140517 141754 . - . transcript_id "YIL117C_id003"; gene_id "YIL117C"; gene_name "PRM5"; +chrIX SGD transcript 140613 141569 . - . transcript_id "YIL117C_id001"; gene_id "YIL117C"; gene_name "PRM5"; transcript_biotype "protein_coding"; +chrIX SGD exon 140613 141569 . - 0 transcript_id "YIL117C_id001"; gene_name "PRM5"; gene_id "YIL117C"; +chrIX SGD gene 142894 144109 . + . gene_id "YIL116W"; gene_biotype "protein_coding"; +chrIX SGD transcript 142894 144109 . + . transcript_id "YIL116W_id002"; gene_id "YIL116W"; gene_name "HIS5"; transcript_biotype "protein_coding"; +chrIX SGD exon 142894 144109 . + . transcript_id "YIL116W_id002"; gene_id "YIL116W"; gene_name "HIS5"; +chrIX SGD transcript 142928 144085 . + . transcript_id "YIL116W_id001"; gene_id "YIL116W"; gene_name "HIS5"; transcript_biotype "protein_coding"; +chrIX SGD exon 142928 144085 . + 0 transcript_id "YIL116W_id001"; gene_name "HIS5"; gene_id "YIL116W"; +chrIX SGD gene 144268 144639 . + . gene_id "YIL115W-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 144268 144639 . + . transcript_id "YIL115W-A_mRNA"; gene_id "YIL115W-A"; transcript_biotype "protein_coding"; +chrIX SGD CDS 144268 144639 . + 0 transcript_id "YIL115W-A_mRNA"; gene_id "YIL115W-A"; +chrIX SGD gene 144327 148709 . - . gene_id "YIL115C"; gene_biotype "protein_coding"; +chrIX SGD transcript 144327 148709 . - . transcript_id "YIL115C_id001"; gene_id "YIL115C"; gene_name "NUP159"; transcript_biotype "protein_coding"; +chrIX SGD exon 144327 148709 . - 0 transcript_id "YIL115C_id001"; gene_name "NUP159"; gene_id "YIL115C"; +chrIX SGD gene 148978 150045 . - . gene_id "YIL114C"; gene_biotype "protein_coding"; +chrIX SGD transcript 148978 150045 . - . transcript_id "YIL114C_id001"; gene_id "YIL114C"; gene_name "POR2"; transcript_biotype "protein_coding"; +chrIX SGD exon 148978 150045 . - . transcript_id "YIL114C_id001"; gene_id "YIL114C"; gene_name "POR2"; +chrIX SGD transcript 149143 149988 . - . transcript_id "YIL114C_id002"; gene_id "YIL114C"; gene_name "POR2"; transcript_biotype "protein_coding"; +chrIX SGD exon 149143 149988 . - 0 transcript_id "YIL114C_id002"; gene_name "POR2"; gene_id "YIL114C"; +chrIX SGD gene 150527 151537 . + . gene_id "YIL113W"; gene_biotype "protein_coding"; +chrIX SGD transcript 150527 151537 . + . transcript_id "YIL113W_id003"; gene_id "YIL113W"; gene_name "SDP1"; transcript_biotype "protein_coding"; +chrIX SGD exon 150527 151537 . + . transcript_id "YIL113W_id003"; gene_id "YIL113W"; gene_name "SDP1"; +chrIX SGD transcript 150559 151188 . + . transcript_id "YIL113W_id001"; gene_id "YIL113W"; gene_name "SDP1"; transcript_biotype "protein_coding"; +chrIX SGD exon 150559 151188 . + 0 transcript_id "YIL113W_id001"; gene_name "SDP1"; gene_id "YIL113W"; +chrIX SGD gene 151554 154976 . + . gene_id "YIL112W"; gene_biotype "protein_coding"; +chrIX SGD transcript 151554 154976 . + . transcript_id "YIL112W_id003"; gene_id "YIL112W"; gene_name "HOS4"; transcript_biotype "protein_coding"; +chrIX SGD exon 151554 154976 . + . transcript_id "YIL112W_id003"; gene_id "YIL112W"; gene_name "HOS4"; +chrIX SGD transcript 151595 154846 . + . transcript_id "YIL112W_id001"; gene_id "YIL112W"; gene_name "HOS4"; transcript_biotype "protein_coding"; +chrIX SGD exon 151595 154846 . + 0 transcript_id "YIL112W_id001"; gene_name "HOS4"; gene_id "YIL112W"; +chrIX SGD gene 154814 155799 . + . gene_id "YIL111W"; gene_biotype "protein_coding"; +chrIX SGD transcript 154814 155799 . + . transcript_id "YIL111W_id006"; gene_id "YIL111W"; gene_name "COX5B"; transcript_biotype "protein_coding"; +chrIX SGD exon 154814 155799 . + . transcript_id "YIL111W_id006"; gene_id "YIL111W"; gene_name "COX5B"; +chrIX SGD transcript 155222 155765 . + . transcript_id "YIL111W_id001"; gene_id "YIL111W"; gene_name "COX5B"; transcript_biotype "protein_coding"; +chrIX SGD exon 155222 155222 . + 0 transcript_id "YIL111W_id001"; gene_name "COX5B"; gene_id "YIL111W"; +chrIX SGD exon 155311 155765 . + 2 transcript_id "YIL111W_id001"; gene_name "COX5B"; gene_id "YIL111W"; +chrIX SGD gene 156014 157460 . + . gene_id "YIL110W"; gene_biotype "protein_coding"; +chrIX SGD transcript 156014 157460 . + . transcript_id "YIL110W_id002"; gene_id "YIL110W"; gene_name "HPM1"; transcript_biotype "protein_coding"; +chrIX SGD exon 156014 157460 . + . transcript_id "YIL110W_id002"; gene_id "YIL110W"; gene_name "HPM1"; +chrIX SGD transcript 156045 157178 . + . transcript_id "YIL110W_id001"; gene_id "YIL110W"; gene_name "HPM1"; transcript_biotype "protein_coding"; +chrIX SGD exon 156045 157178 . + 0 transcript_id "YIL110W_id001"; gene_name "HPM1"; gene_id "YIL110W"; +chrIX SGD gene 157206 160247 . - . gene_id "YIL109C"; gene_biotype "protein_coding"; +chrIX SGD transcript 157206 160247 . - . transcript_id "YIL109C_id002"; gene_id "YIL109C"; gene_name "SEC24"; transcript_biotype "protein_coding"; +chrIX SGD exon 157206 160247 . - . transcript_id "YIL109C_id002"; gene_id "YIL109C"; gene_name "SEC24"; +chrIX SGD transcript 157385 160165 . - . transcript_id "YIL109C_id001"; gene_id "YIL109C"; gene_name "SEC24"; transcript_biotype "protein_coding"; +chrIX SGD exon 157385 160165 . - 0 transcript_id "YIL109C_id001"; gene_name "SEC24"; gene_id "YIL109C"; +chrIX SGD gene 160717 163162 . + . gene_id "YIL108W"; gene_biotype "protein_coding"; +chrIX SGD transcript 160717 163162 . + . transcript_id "YIL108W_id001"; gene_id "YIL108W"; transcript_biotype "protein_coding"; +chrIX SGD exon 160717 163162 . + . transcript_id "YIL108W_id001"; gene_id "YIL108W"; +chrIX SGD transcript 160887 162977 . + . transcript_id "YIL108W_id004"; gene_id "YIL108W"; transcript_biotype "protein_coding"; +chrIX SGD exon 160887 162977 . + 0 transcript_id "YIL108W_id004"; gene_id "YIL108W"; +chrIX SGD gene 163026 165939 . - . gene_id "YIL107C"; gene_biotype "protein_coding"; +chrIX SGD transcript 163026 165939 . - . transcript_id "YIL107C_id002"; gene_id "YIL107C"; gene_name "PFK26"; transcript_biotype "protein_coding"; +chrIX SGD exon 163026 165939 . - . transcript_id "YIL107C_id002"; gene_id "YIL107C"; gene_name "PFK26"; +chrIX SGD transcript 163278 165761 . - . transcript_id "YIL107C_id001"; gene_id "YIL107C"; gene_name "PFK26"; transcript_biotype "protein_coding"; +chrIX SGD exon 163278 165761 . - 0 transcript_id "YIL107C_id001"; gene_name "PFK26"; gene_id "YIL107C"; +chrIX SGD gene 166301 167615 . + . gene_id "YIL106W"; gene_biotype "protein_coding"; +chrIX SGD transcript 166301 167615 . + . transcript_id "YIL106W_id002"; gene_id "YIL106W"; gene_name "MOB1"; transcript_biotype "protein_coding"; +chrIX SGD exon 166301 167615 . + . transcript_id "YIL106W_id002"; gene_id "YIL106W"; gene_name "MOB1"; +chrIX SGD transcript 166415 167444 . + . transcript_id "YIL106W_id001"; gene_id "YIL106W"; gene_name "MOB1"; transcript_biotype "protein_coding"; +chrIX SGD exon 166415 166434 . + 0 transcript_id "YIL106W_id001"; gene_name "MOB1"; gene_id "YIL106W"; +chrIX SGD exon 166520 167444 . + 1 transcript_id "YIL106W_id001"; gene_name "MOB1"; gene_id "YIL106W"; +chrIX SGD gene 167420 169773 . - . gene_id "YIL105C"; gene_biotype "protein_coding"; +chrIX SGD transcript 167420 169773 . - . transcript_id "YIL105C_id003"; gene_id "YIL105C"; gene_name "SLM1"; transcript_biotype "protein_coding"; +chrIX SGD exon 167420 169773 . - . transcript_id "YIL105C_id003"; gene_id "YIL105C"; gene_name "SLM1"; +chrIX SGD transcript 167581 169641 . - . transcript_id "YIL105C_id001"; gene_id "YIL105C"; gene_name "SLM1"; transcript_biotype "protein_coding"; +chrIX SGD exon 167581 169641 . - 0 transcript_id "YIL105C_id001"; gene_name "SLM1"; gene_id "YIL105C"; +chrIX SGD gene 167664 167804 . + . gene_id "YIL105W-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 167664 167804 . + . transcript_id "YIL105W-A_mRNA"; gene_id "YIL105W-A"; transcript_biotype "protein_coding"; +chrIX SGD CDS 167664 167804 . + 0 transcript_id "YIL105W-A_mRNA"; gene_id "YIL105W-A"; +chrIX SGD gene 169883 171562 . - . gene_id "YIL104C"; gene_biotype "protein_coding"; +chrIX SGD transcript 169883 171562 . - . transcript_id "YIL104C_id001"; gene_id "YIL104C"; gene_name "SHQ1"; transcript_biotype "protein_coding"; +chrIX SGD exon 169883 171562 . - . transcript_id "YIL104C_id001"; gene_id "YIL104C"; gene_name "SHQ1"; +chrIX SGD transcript 169982 171505 . - . transcript_id "YIL104C_id002"; gene_id "YIL104C"; gene_name "SHQ1"; transcript_biotype "protein_coding"; +chrIX SGD exon 169982 171505 . - 0 transcript_id "YIL104C_id002"; gene_name "SHQ1"; gene_id "YIL104C"; +chrIX SGD gene 171678 173163 . + . gene_id "YIL103W"; gene_biotype "protein_coding"; +chrIX SGD transcript 171678 173163 . + . transcript_id "YIL103W_id002"; gene_id "YIL103W"; gene_name "DPH1"; transcript_biotype "protein_coding"; +chrIX SGD exon 171678 173163 . + . transcript_id "YIL103W_id002"; gene_id "YIL103W"; gene_name "DPH1"; +chrIX SGD transcript 171751 173028 . + . transcript_id "YIL103W_id001"; gene_id "YIL103W"; gene_name "DPH1"; transcript_biotype "protein_coding"; +chrIX SGD exon 171751 173028 . + 0 transcript_id "YIL103W_id001"; gene_name "DPH1"; gene_id "YIL103W"; +chrIX SGD gene 172179 173647 . - . gene_id "YIL102C-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 172179 173647 . - . transcript_id "YIL102C-A_id003"; gene_id "YIL102C-A"; transcript_biotype "protein_coding"; +chrIX SGD exon 172179 173647 . - . transcript_id "YIL102C-A_id003"; gene_id "YIL102C-A"; +chrIX SGD transcript 173365 173592 . - . transcript_id "YIL102C-A_id001"; gene_id "YIL102C-A"; transcript_biotype "protein_coding"; +chrIX SGD exon 173365 173592 . - 0 transcript_id "YIL102C-A_id001"; gene_id "YIL102C-A"; +chrIX SGD gene 174582 174887 . - . gene_id "YIL102C"; gene_biotype "protein_coding"; +chrIX SGD transcript 174582 174887 . - . transcript_id "YIL102C_mRNA"; gene_id "YIL102C"; transcript_biotype "protein_coding"; +chrIX SGD CDS 174582 174887 . - 0 transcript_id "YIL102C_mRNA"; gene_id "YIL102C"; +chrIX SGD gene 175031 175103 . + . gene_id "YNCI0002W"; gene_biotype "ncRNA"; +chrIX SGD transcript 175031 175103 . + . transcript_id "YNCI0002W_tRNA"; gene_id "YNCI0002W"; transcript_biotype "ncRNA"; +chrIX SGD exon 175031 175103 . + . transcript_id "YNCI0002W_tRNA"; gene_id "YNCI0002W"; +chrIX SGD gene 175307 177250 . - . gene_id "YIL101C"; gene_biotype "protein_coding"; +chrIX SGD transcript 175307 177250 . - . transcript_id "YIL101C_id001"; gene_id "YIL101C"; gene_name "XBP1"; transcript_biotype "protein_coding"; +chrIX SGD exon 175307 177250 . - 0 transcript_id "YIL101C_id001"; gene_name "XBP1"; gene_id "YIL101C"; +chrIX SGD gene 177343 177681 . - . gene_id "YIL100C-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 177343 177681 . - . transcript_id "YIL100C-A_mRNA"; gene_id "YIL100C-A"; transcript_biotype "protein_coding"; +chrIX SGD CDS 177343 177681 . - 0 transcript_id "YIL100C-A_mRNA"; gene_id "YIL100C-A"; +chrIX SGD gene 177373 177726 . + . gene_id "YIL100W"; gene_biotype "protein_coding"; +chrIX SGD transcript 177373 177726 . + . transcript_id "YIL100W_mRNA"; gene_id "YIL100W"; transcript_biotype "protein_coding"; +chrIX SGD CDS 177373 177726 . + 0 transcript_id "YIL100W_mRNA"; gene_id "YIL100W"; +chrIX SGD gene 178004 179653 . + . gene_id "YIL099W"; gene_biotype "protein_coding"; +chrIX SGD transcript 178004 179653 . + . transcript_id "YIL099W_mRNA"; gene_id "YIL099W"; gene_name "SGA1"; transcript_biotype "protein_coding"; +chrIX SGD CDS 178004 179653 . + 0 transcript_id "YIL099W_mRNA"; gene_name "SGA1"; gene_id "YIL099W"; +chrIX SGD gene 179678 180320 . - . gene_id "YIL098C"; gene_biotype "protein_coding"; +chrIX SGD transcript 179678 180320 . - . transcript_id "YIL098C_id004"; gene_id "YIL098C"; gene_name "FMC1"; transcript_biotype "protein_coding"; +chrIX SGD exon 179678 180320 . - . transcript_id "YIL098C_id004"; gene_id "YIL098C"; gene_name "FMC1"; +chrIX SGD transcript 179772 180239 . - . transcript_id "YIL098C_id001"; gene_id "YIL098C"; gene_name "FMC1"; transcript_biotype "protein_coding"; +chrIX SGD exon 179772 180239 . - 0 transcript_id "YIL098C_id001"; gene_name "FMC1"; gene_id "YIL098C"; +chrIX SGD gene 180401 182124 . + . gene_id "YIL097W"; gene_biotype "protein_coding"; +chrIX SGD transcript 180401 182124 . + . transcript_id "YIL097W_id002"; gene_id "YIL097W"; gene_name "FYV10"; transcript_biotype "protein_coding"; +chrIX SGD exon 180401 182124 . + . transcript_id "YIL097W_id002"; gene_id "YIL097W"; gene_name "FYV10"; +chrIX SGD transcript 180427 181977 . + . transcript_id "YIL097W_id001"; gene_id "YIL097W"; gene_name "FYV10"; transcript_biotype "protein_coding"; +chrIX SGD exon 180427 181977 . + 0 transcript_id "YIL097W_id001"; gene_name "FYV10"; gene_id "YIL097W"; +chrIX SGD gene 181965 183165 . - . gene_id "YIL096C"; gene_biotype "protein_coding"; +chrIX SGD transcript 181965 183165 . - . transcript_id "YIL096C_id003"; gene_id "YIL096C"; gene_name "BMT5"; transcript_biotype "protein_coding"; +chrIX SGD exon 181965 183165 . - . transcript_id "YIL096C_id003"; gene_id "YIL096C"; gene_name "BMT5"; +chrIX SGD transcript 182117 183127 . - . transcript_id "YIL096C_id001"; gene_id "YIL096C"; gene_name "BMT5"; transcript_biotype "protein_coding"; +chrIX SGD exon 182117 183127 . - 0 transcript_id "YIL096C_id001"; gene_name "BMT5"; gene_id "YIL096C"; +chrIX SGD gene 183440 183513 . - . gene_id "YNCI0003C"; gene_biotype "ncRNA"; +chrIX SGD transcript 183440 183513 . - . transcript_id "YNCI0003C_tRNA"; gene_id "YNCI0003C"; transcript_biotype "ncRNA"; +chrIX SGD exon 183440 183513 . - . transcript_id "YNCI0003C_tRNA"; gene_id "YNCI0003C"; +chrIX SGD gene 183768 186498 . + . gene_id "YIL095W"; gene_biotype "protein_coding"; +chrIX SGD transcript 183768 186498 . + . transcript_id "YIL095W_id001"; gene_id "YIL095W"; gene_name "PRK1"; transcript_biotype "protein_coding"; +chrIX SGD exon 183768 186498 . + . transcript_id "YIL095W_id001"; gene_id "YIL095W"; gene_name "PRK1"; +chrIX SGD transcript 183937 186369 . + . transcript_id "YIL095W_id002"; gene_id "YIL095W"; gene_name "PRK1"; transcript_biotype "protein_coding"; +chrIX SGD exon 183937 186369 . + 0 transcript_id "YIL095W_id002"; gene_name "PRK1"; gene_id "YIL095W"; +chrIX SGD gene 185969 187697 . - . gene_id "YIL094C"; gene_biotype "protein_coding"; +chrIX SGD transcript 185969 187697 . - . transcript_id "YIL094C_id002"; gene_id "YIL094C"; gene_name "LYS12"; transcript_biotype "protein_coding"; +chrIX SGD exon 185969 187697 . - . transcript_id "YIL094C_id002"; gene_id "YIL094C"; gene_name "LYS12"; +chrIX SGD transcript 186517 187632 . - . transcript_id "YIL094C_id001"; gene_id "YIL094C"; gene_name "LYS12"; transcript_biotype "protein_coding"; +chrIX SGD exon 186517 187632 . - 0 transcript_id "YIL094C_id001"; gene_name "LYS12"; gene_id "YIL094C"; +chrIX SGD gene 187855 188893 . - . gene_id "YIL093C"; gene_biotype "protein_coding"; +chrIX SGD transcript 187855 188893 . - . transcript_id "YIL093C_id005"; gene_id "YIL093C"; gene_name "RSM25"; transcript_biotype "protein_coding"; +chrIX SGD exon 187855 188893 . - . transcript_id "YIL093C_id005"; gene_id "YIL093C"; gene_name "RSM25"; +chrIX SGD transcript 187990 188784 . - . transcript_id "YIL093C_id001"; gene_id "YIL093C"; gene_name "RSM25"; transcript_biotype "protein_coding"; +chrIX SGD exon 187990 188784 . - 0 transcript_id "YIL093C_id001"; gene_name "RSM25"; gene_id "YIL093C"; +chrIX SGD gene 188971 191066 . + . gene_id "YIL092W"; gene_biotype "protein_coding"; +chrIX SGD transcript 188971 191066 . + . transcript_id "YIL092W_id002"; gene_id "YIL092W"; transcript_biotype "protein_coding"; +chrIX SGD exon 188971 191066 . + . transcript_id "YIL092W_id002"; gene_id "YIL092W"; +chrIX SGD transcript 189066 190967 . + . transcript_id "YIL092W_id001"; gene_id "YIL092W"; transcript_biotype "protein_coding"; +chrIX SGD exon 189066 190967 . + 0 transcript_id "YIL092W_id001"; gene_id "YIL092W"; +chrIX SGD gene 190946 193250 . - . gene_id "YIL091C"; gene_biotype "protein_coding"; +chrIX SGD transcript 190946 193250 . - . transcript_id "YIL091C_id003"; gene_id "YIL091C"; gene_name "UTP25"; transcript_biotype "protein_coding"; +chrIX SGD exon 190946 193250 . - . transcript_id "YIL091C_id003"; gene_id "YIL091C"; gene_name "UTP25"; +chrIX SGD transcript 191030 193195 . - . transcript_id "YIL091C_id001"; gene_id "YIL091C"; gene_name "UTP25"; transcript_biotype "protein_coding"; +chrIX SGD exon 191030 193195 . - 0 transcript_id "YIL091C_id001"; gene_name "UTP25"; gene_id "YIL091C"; +chrIX SGD gene 193418 195398 . + . gene_id "YIL090W"; gene_biotype "protein_coding"; +chrIX SGD transcript 193418 195398 . + . transcript_id "YIL090W_id004"; gene_id "YIL090W"; gene_name "ICE2"; transcript_biotype "protein_coding"; +chrIX SGD exon 193418 195398 . + . transcript_id "YIL090W_id004"; gene_id "YIL090W"; gene_name "ICE2"; +chrIX SGD transcript 193595 195070 . + . transcript_id "YIL090W_id001"; gene_id "YIL090W"; gene_name "ICE2"; transcript_biotype "protein_coding"; +chrIX SGD exon 193595 195070 . + 0 transcript_id "YIL090W_id001"; gene_name "ICE2"; gene_id "YIL090W"; +chrIX SGD gene 195569 196687 . + . gene_id "YIL089W"; gene_biotype "protein_coding"; +chrIX SGD transcript 195569 196687 . + . transcript_id "YIL089W_id004"; gene_id "YIL089W"; transcript_biotype "protein_coding"; +chrIX SGD exon 195569 196687 . + . transcript_id "YIL089W_id004"; gene_id "YIL089W"; +chrIX SGD transcript 195599 196216 . + . transcript_id "YIL089W_id001"; gene_id "YIL089W"; transcript_biotype "protein_coding"; +chrIX SGD exon 195599 196216 . + 0 transcript_id "YIL089W_id001"; gene_id "YIL089W"; +chrIX SGD gene 197592 197663 . + . gene_id "YNCI0004W"; gene_biotype "ncRNA"; +chrIX SGD transcript 197592 197663 . + . transcript_id "YNCI0004W_tRNA"; gene_id "YNCI0004W"; transcript_biotype "ncRNA"; +chrIX SGD exon 197592 197663 . + . transcript_id "YNCI0004W_tRNA"; gene_id "YNCI0004W"; +chrIX SGD gene 197798 199476 . - . gene_id "YIL088C"; gene_biotype "protein_coding"; +chrIX SGD transcript 197798 199476 . - . transcript_id "YIL088C_id001"; gene_id "YIL088C"; gene_name "AVT7"; transcript_biotype "protein_coding"; +chrIX SGD exon 197798 199476 . - . transcript_id "YIL088C_id001"; gene_id "YIL088C"; gene_name "AVT7"; +chrIX SGD transcript 197931 199403 . - . transcript_id "YIL088C_id002"; gene_id "YIL088C"; gene_name "AVT7"; transcript_biotype "protein_coding"; +chrIX SGD exon 197931 199403 . - 0 transcript_id "YIL088C_id002"; gene_name "AVT7"; gene_id "YIL088C"; +chrIX SGD gene 199552 200351 . - . gene_id "YIL087C"; gene_biotype "protein_coding"; +chrIX SGD transcript 199552 200351 . - . transcript_id "YIL087C_id002"; gene_id "YIL087C"; gene_name "AIM19"; transcript_biotype "protein_coding"; +chrIX SGD exon 199552 200351 . - . transcript_id "YIL087C_id002"; gene_id "YIL087C"; gene_name "AIM19"; +chrIX SGD transcript 199646 200119 . - . transcript_id "YIL087C_id001"; gene_id "YIL087C"; gene_name "AIM19"; transcript_biotype "protein_coding"; +chrIX SGD exon 199646 200119 . - 0 transcript_id "YIL087C_id001"; gene_name "AIM19"; gene_id "YIL087C"; +chrIX SGD gene 200153 200461 . - . gene_id "YIL086C"; gene_biotype "protein_coding"; +chrIX SGD transcript 200153 200461 . - . transcript_id "YIL086C_mRNA"; gene_id "YIL086C"; transcript_biotype "protein_coding"; +chrIX SGD CDS 200153 200461 . - 0 transcript_id "YIL086C_mRNA"; gene_id "YIL086C"; +chrIX SGD gene 200439 202713 . - . gene_id "YIL085C"; gene_biotype "protein_coding"; +chrIX SGD transcript 200439 202713 . - . transcript_id "YIL085C_id001"; gene_id "YIL085C"; gene_name "KTR7"; transcript_biotype "protein_coding"; +chrIX SGD exon 200439 202713 . - . transcript_id "YIL085C_id001"; gene_id "YIL085C"; gene_name "KTR7"; +chrIX SGD transcript 200490 202043 . - . transcript_id "YIL085C_id004"; gene_id "YIL085C"; gene_name "KTR7"; transcript_biotype "protein_coding"; +chrIX SGD exon 200490 202043 . - 0 transcript_id "YIL085C_id004"; gene_name "KTR7"; gene_id "YIL085C"; +chrIX SGD gene 201124 203291 . - . gene_id "YIL084C"; gene_biotype "protein_coding"; +chrIX SGD transcript 201124 203291 . - . transcript_id "YIL084C_id002"; gene_id "YIL084C"; gene_name "SDS3"; transcript_biotype "protein_coding"; +chrIX SGD exon 201124 203291 . - . transcript_id "YIL084C_id002"; gene_id "YIL084C"; gene_name "SDS3"; +chrIX SGD transcript 202276 203259 . - . transcript_id "YIL084C_id001"; gene_id "YIL084C"; gene_name "SDS3"; transcript_biotype "protein_coding"; +chrIX SGD exon 202276 203259 . - 0 transcript_id "YIL084C_id001"; gene_name "SDS3"; gene_id "YIL084C"; +chrIX SGD gene 203157 204752 . - . gene_id "YIL083C"; gene_biotype "protein_coding"; +chrIX SGD transcript 203157 204752 . - . transcript_id "YIL083C_id001"; gene_id "YIL083C"; gene_name "CAB2"; transcript_biotype "protein_coding"; +chrIX SGD exon 203157 204752 . - . transcript_id "YIL083C_id001"; gene_id "YIL083C"; gene_name "CAB2"; +chrIX SGD transcript 203556 204653 . - . transcript_id "YIL083C_id002"; gene_id "YIL083C"; gene_name "CAB2"; transcript_biotype "protein_coding"; +chrIX SGD exon 203556 204653 . - 0 transcript_id "YIL083C_id002"; gene_name "CAB2"; gene_id "YIL083C"; +chrIX SGD gene 205635 210132 . + . gene_id "YIL082W-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 205635 210132 . + . transcript_id "YIL082W-A_dummy"; gene_id "YIL082W-A"; transcript_biotype "protein_coding"; +chrIX SGD exon 205635 206485 . + 0 transcript_id "YIL082W-A_dummy"; gene_id "YIL082W-A"; +chrIX SGD exon 206487 210132 . + 1 transcript_id "YIL082W-A_dummy"; gene_id "YIL082W-A"; +chrIX SGD gene 205635 206507 . + . gene_id "YIL082W"; gene_biotype "protein_coding"; +chrIX SGD transcript 205635 206507 . + . transcript_id "YIL082W_mRNA"; gene_id "YIL082W"; transcript_biotype "protein_coding"; +chrIX SGD CDS 205635 206507 . + 0 transcript_id "YIL082W_mRNA"; gene_id "YIL082W"; +chrIX SGD gene 210665 210738 . + . gene_id "YNCI0005W"; gene_biotype "ncRNA"; +chrIX SGD transcript 210665 210738 . + . transcript_id "YNCI0005W_tRNA"; gene_id "YNCI0005W"; transcript_biotype "ncRNA"; +chrIX SGD exon 210665 210738 . + . transcript_id "YNCI0005W_tRNA"; gene_id "YNCI0005W"; +chrIX SGD gene 210807 212227 . - . gene_id "YIL079C"; gene_biotype "protein_coding"; +chrIX SGD transcript 210807 212227 . - . transcript_id "YIL079C_id001"; gene_id "YIL079C"; gene_name "AIR1"; transcript_biotype "protein_coding"; +chrIX SGD exon 210807 212227 . - . transcript_id "YIL079C_id001"; gene_id "YIL079C"; gene_name "AIR1"; +chrIX SGD transcript 210923 212005 . - . transcript_id "YIL079C_id012"; gene_id "YIL079C"; gene_name "AIR1"; transcript_biotype "protein_coding"; +chrIX SGD exon 210923 212005 . - 0 transcript_id "YIL079C_id012"; gene_name "AIR1"; gene_id "YIL079C"; +chrIX SGD gene 212451 214985 . + . gene_id "YIL078W"; gene_biotype "protein_coding"; +chrIX SGD transcript 212451 214985 . + . transcript_id "YIL078W_id001"; gene_id "YIL078W"; gene_name "THS1"; transcript_biotype "protein_coding"; +chrIX SGD exon 212451 214985 . + . transcript_id "YIL078W_id001"; gene_id "YIL078W"; gene_name "THS1"; +chrIX SGD transcript 212499 214703 . + . transcript_id "YIL078W_id002"; gene_id "YIL078W"; gene_name "THS1"; transcript_biotype "protein_coding"; +chrIX SGD exon 212499 214703 . + 0 transcript_id "YIL078W_id002"; gene_name "THS1"; gene_id "YIL078W"; +chrIX SGD gene 214858 216490 . - . gene_id "YIL077C"; gene_biotype "protein_coding"; +chrIX SGD transcript 214858 216490 . - . transcript_id "YIL077C_id003"; gene_id "YIL077C"; gene_name "RCI37"; transcript_biotype "protein_coding"; +chrIX SGD exon 214858 216490 . - . transcript_id "YIL077C_id003"; gene_id "YIL077C"; gene_name "RCI37"; +chrIX SGD transcript 214991 215953 . - . transcript_id "YIL077C_id001"; gene_id "YIL077C"; gene_name "RCI37"; transcript_biotype "protein_coding"; +chrIX SGD exon 214991 215953 . - 0 transcript_id "YIL077C_id001"; gene_name "RCI37"; gene_id "YIL077C"; +chrIX SGD gene 216253 217711 . + . gene_id "YIL076W"; gene_biotype "protein_coding"; +chrIX SGD transcript 216253 217711 . + . transcript_id "YIL076W_id001"; gene_id "YIL076W"; gene_name "SEC28"; transcript_biotype "protein_coding"; +chrIX SGD exon 216253 217711 . + . transcript_id "YIL076W_id001"; gene_id "YIL076W"; gene_name "SEC28"; +chrIX SGD transcript 216658 217548 . + . transcript_id "YIL076W_id002"; gene_id "YIL076W"; gene_name "SEC28"; transcript_biotype "protein_coding"; +chrIX SGD exon 216658 217548 . + 0 transcript_id "YIL076W_id002"; gene_name "SEC28"; gene_id "YIL076W"; +chrIX SGD gene 217766 220762 . - . gene_id "YIL075C"; gene_biotype "protein_coding"; +chrIX SGD transcript 217766 220762 . - . transcript_id "YIL075C_id006"; gene_id "YIL075C"; gene_name "RPN2"; transcript_biotype "protein_coding"; +chrIX SGD exon 217766 220762 . - . transcript_id "YIL075C_id006"; gene_id "YIL075C"; gene_name "RPN2"; +chrIX SGD transcript 217863 220700 . - . transcript_id "YIL075C_id001"; gene_id "YIL075C"; gene_name "RPN2"; transcript_biotype "protein_coding"; +chrIX SGD exon 217863 220700 . - 0 transcript_id "YIL075C_id001"; gene_name "RPN2"; gene_id "YIL075C"; +chrIX SGD gene 220971 222624 . - . gene_id "YIL074C"; gene_biotype "protein_coding"; +chrIX SGD transcript 220971 222624 . - . transcript_id "YIL074C_id001"; gene_id "YIL074C"; gene_name "SER33"; transcript_biotype "protein_coding"; +chrIX SGD exon 220971 222624 . - . transcript_id "YIL074C_id001"; gene_id "YIL074C"; gene_name "SER33"; +chrIX SGD transcript 221081 222490 . - . transcript_id "YIL074C_id002"; gene_id "YIL074C"; gene_name "SER33"; transcript_biotype "protein_coding"; +chrIX SGD exon 221081 222490 . - 0 transcript_id "YIL074C_id002"; gene_name "SER33"; gene_id "YIL074C"; +chrIX SGD gene 222937 225954 . - . gene_id "YIL073C"; gene_biotype "protein_coding"; +chrIX SGD transcript 222937 225954 . - . transcript_id "YIL073C_mRNA"; gene_id "YIL073C"; gene_name "SPO22"; transcript_biotype "protein_coding"; +chrIX SGD CDS 222937 225809 . - 2 transcript_id "YIL073C_mRNA"; gene_name "SPO22"; gene_id "YIL073C"; +chrIX SGD CDS 225900 225954 . - 0 transcript_id "YIL073C_mRNA"; gene_name "SPO22"; gene_id "YIL073C"; +chrIX SGD gene 226602 228419 . + . gene_id "YIL072W"; gene_biotype "protein_coding"; +chrIX SGD transcript 226602 228419 . + . transcript_id "YIL072W_mRNA"; gene_id "YIL072W"; gene_name "HOP1"; transcript_biotype "protein_coding"; +chrIX SGD CDS 226602 228419 . + 0 transcript_id "YIL072W_mRNA"; gene_name "HOP1"; gene_id "YIL072W"; +chrIX SGD gene 228351 230003 . - . gene_id "YIL071C"; gene_biotype "protein_coding"; +chrIX SGD transcript 228351 230003 . - . transcript_id "YIL071C_id002"; gene_id "YIL071C"; gene_name "PCI8"; transcript_biotype "protein_coding"; +chrIX SGD exon 228351 230003 . - . transcript_id "YIL071C_id002"; gene_id "YIL071C"; gene_name "PCI8"; +chrIX SGD gene 228550 229026 . + . gene_id "YIL071W-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 228550 229026 . + . transcript_id "YIL071W-A_mRNA"; gene_id "YIL071W-A"; transcript_biotype "protein_coding"; +chrIX SGD CDS 228550 229026 . + 0 transcript_id "YIL071W-A_mRNA"; gene_id "YIL071W-A"; +chrIX SGD transcript 228660 229994 . - . transcript_id "YIL071C_id001"; gene_id "YIL071C"; gene_name "PCI8"; transcript_biotype "protein_coding"; +chrIX SGD exon 228660 229994 . - 0 transcript_id "YIL071C_id001"; gene_name "PCI8"; gene_id "YIL071C"; +chrIX SGD gene 230130 231167 . - . gene_id "YIL070C"; gene_biotype "protein_coding"; +chrIX SGD transcript 230130 231167 . - . transcript_id "YIL070C_id002"; gene_id "YIL070C"; gene_name "MAM33"; transcript_biotype "protein_coding"; +chrIX SGD exon 230130 231167 . - . transcript_id "YIL070C_id002"; gene_id "YIL070C"; gene_name "MAM33"; +chrIX SGD transcript 230272 231072 . - . transcript_id "YIL070C_id001"; gene_id "YIL070C"; gene_name "MAM33"; transcript_biotype "protein_coding"; +chrIX SGD exon 230272 231072 . - 0 transcript_id "YIL070C_id001"; gene_name "MAM33"; gene_id "YIL070C"; +chrIX SGD gene 231374 232600 . - . gene_id "YIL069C"; gene_biotype "protein_coding"; +chrIX SGD transcript 231374 232600 . - . transcript_id "YIL069C_id002"; gene_id "YIL069C"; gene_name "RPS24B"; transcript_biotype "protein_coding"; +chrIX SGD exon 231374 232600 . - . transcript_id "YIL069C_id002"; gene_id "YIL069C"; gene_name "RPS24B"; +chrIX SGD transcript 231553 232369 . - . transcript_id "YIL069C_id001"; gene_id "YIL069C"; gene_name "RPS24B"; transcript_biotype "protein_coding"; +chrIX SGD exon 231553 231957 . - 0 transcript_id "YIL069C_id001"; gene_name "RPS24B"; gene_id "YIL069C"; +chrIX SGD exon 232367 232369 . - 0 transcript_id "YIL069C_id001"; gene_name "RPS24B"; gene_id "YIL069C"; +chrIX SGD gene 232945 235533 . - . gene_id "YIL068C"; gene_biotype "protein_coding"; +chrIX SGD transcript 232945 235533 . - . transcript_id "YIL068C_id001"; gene_id "YIL068C"; gene_name "SEC6"; transcript_biotype "protein_coding"; +chrIX SGD exon 232945 235533 . - . transcript_id "YIL068C_id001"; gene_id "YIL068C"; gene_name "SEC6"; +chrIX SGD gene 233013 233396 . + . gene_id "YIL068W-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 233013 233396 . + . transcript_id "YIL068W-A_mRNA"; gene_id "YIL068W-A"; transcript_biotype "protein_coding"; +chrIX SGD CDS 233013 233396 . + 0 transcript_id "YIL068W-A_mRNA"; gene_id "YIL068W-A"; +chrIX SGD transcript 233057 235474 . - . transcript_id "YIL068C_id003"; gene_id "YIL068C"; gene_name "SEC6"; transcript_biotype "protein_coding"; +chrIX SGD exon 233057 235474 . - 0 transcript_id "YIL068C_id003"; gene_name "SEC6"; gene_id "YIL068C"; +chrIX SGD gene 235606 237819 . - . gene_id "YIL067C"; gene_biotype "protein_coding"; +chrIX SGD transcript 235606 237819 . - . transcript_id "YIL067C_id001"; gene_id "YIL067C"; transcript_biotype "protein_coding"; +chrIX SGD exon 235606 237819 . - . transcript_id "YIL067C_id001"; gene_id "YIL067C"; +chrIX SGD transcript 235724 237760 . - . transcript_id "YIL067C_id003"; gene_id "YIL067C"; transcript_biotype "protein_coding"; +chrIX SGD exon 235724 237760 . - 0 transcript_id "YIL067C_id003"; gene_id "YIL067C"; +chrIX SGD gene 237366 237809 . + . gene_id "YIL066W-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 237366 237809 . + . transcript_id "YIL066W-A_mRNA"; gene_id "YIL066W-A"; transcript_biotype "protein_coding"; +chrIX SGD CDS 237366 237809 . + 0 transcript_id "YIL066W-A_mRNA"; gene_id "YIL066W-A"; +chrIX SGD gene 238099 240708 . - . gene_id "YIL066C"; gene_biotype "protein_coding"; +chrIX SGD transcript 238099 240708 . - . transcript_id "YIL066C_id001"; gene_id "YIL066C"; gene_name "RNR3"; transcript_biotype "protein_coding"; +chrIX SGD exon 238099 240708 . - 0 transcript_id "YIL066C_id001"; gene_name "RNR3"; gene_id "YIL066C"; +chrIX SGD gene 241093 241814 . - . gene_id "YIL065C"; gene_biotype "protein_coding"; +chrIX SGD transcript 241093 241814 . - . transcript_id "YIL065C_id002"; gene_id "YIL065C"; gene_name "FIS1"; transcript_biotype "protein_coding"; +chrIX SGD exon 241093 241814 . - . transcript_id "YIL065C_id002"; gene_id "YIL065C"; gene_name "FIS1"; +chrIX SGD transcript 241308 241775 . - . transcript_id "YIL065C_id001"; gene_id "YIL065C"; gene_name "FIS1"; transcript_biotype "protein_coding"; +chrIX SGD exon 241308 241775 . - 0 transcript_id "YIL065C_id001"; gene_name "FIS1"; gene_id "YIL065C"; +chrIX SGD gene 241943 242716 . + . gene_id "YIL064W"; gene_biotype "protein_coding"; +chrIX SGD transcript 241943 242716 . + . transcript_id "YIL064W_id001"; gene_id "YIL064W"; gene_name "EFM4"; transcript_biotype "protein_coding"; +chrIX SGD exon 241943 242716 . + 0 transcript_id "YIL064W_id001"; gene_name "EFM4"; gene_id "YIL064W"; +chrIX SGD gene 242623 243792 . - . gene_id "YIL063C"; gene_biotype "protein_coding"; +chrIX SGD transcript 242623 243792 . - . transcript_id "YIL063C_id001"; gene_id "YIL063C"; gene_name "YRB2"; transcript_biotype "protein_coding"; +chrIX SGD exon 242623 243792 . - . transcript_id "YIL063C_id001"; gene_id "YIL063C"; gene_name "YRB2"; +chrIX SGD transcript 242761 243744 . - . transcript_id "YIL063C_id002"; gene_id "YIL063C"; gene_name "YRB2"; transcript_biotype "protein_coding"; +chrIX SGD exon 242761 243744 . - 0 transcript_id "YIL063C_id002"; gene_name "YRB2"; gene_id "YIL063C"; +chrIX SGD gene 243773 244500 . - . gene_id "YIL062C"; gene_biotype "protein_coding"; +chrIX SGD transcript 243773 244500 . - . transcript_id "YIL062C_id002"; gene_id "YIL062C"; gene_name "ARC15"; transcript_biotype "protein_coding"; +chrIX SGD exon 243773 244500 . - . transcript_id "YIL062C_id002"; gene_id "YIL062C"; gene_name "ARC15"; +chrIX SGD transcript 243998 244462 . - . transcript_id "YIL062C_id001"; gene_id "YIL062C"; gene_name "ARC15"; transcript_biotype "protein_coding"; +chrIX SGD exon 243998 244462 . - 0 transcript_id "YIL062C_id001"; gene_name "ARC15"; gene_id "YIL062C"; +chrIX SGD gene 244615 245589 . - . gene_id "YIL061C"; gene_biotype "protein_coding"; +chrIX SGD transcript 244615 245589 . - . transcript_id "YIL061C_id001"; gene_id "YIL061C"; gene_name "SNP1"; transcript_biotype "protein_coding"; +chrIX SGD exon 244615 245589 . - . transcript_id "YIL061C_id001"; gene_id "YIL061C"; gene_name "SNP1"; +chrIX SGD transcript 244657 245559 . - . transcript_id "YIL061C_id002"; gene_id "YIL061C"; gene_name "SNP1"; transcript_biotype "protein_coding"; +chrIX SGD exon 244657 245559 . - 0 transcript_id "YIL061C_id002"; gene_name "SNP1"; gene_id "YIL061C"; +chrIX SGD gene 246392 246826 . + . gene_id "YIL060W"; gene_biotype "protein_coding"; +chrIX SGD transcript 246392 246826 . + . transcript_id "YIL060W_mRNA"; gene_id "YIL060W"; transcript_biotype "protein_coding"; +chrIX SGD CDS 246392 246826 . + 0 transcript_id "YIL060W_mRNA"; gene_id "YIL060W"; +chrIX SGD gene 246550 246915 . - . gene_id "YIL059C"; gene_biotype "protein_coding"; +chrIX SGD transcript 246550 246915 . - . transcript_id "YIL059C_id001"; gene_id "YIL059C"; transcript_biotype "protein_coding"; +chrIX SGD exon 246550 246915 . - 0 transcript_id "YIL059C_id001"; gene_id "YIL059C"; +chrIX SGD gene 246914 247198 . + . gene_id "YIL058W"; gene_biotype "protein_coding"; +chrIX SGD transcript 246914 247198 . + . transcript_id "YIL058W_mRNA"; gene_id "YIL058W"; transcript_biotype "protein_coding"; +chrIX SGD CDS 246914 247198 . + 0 transcript_id "YIL058W_mRNA"; gene_id "YIL058W"; +chrIX SGD gene 247902 248396 . - . gene_id "YIL057C"; gene_biotype "protein_coding"; +chrIX SGD transcript 247902 248396 . - . transcript_id "YIL057C_id001"; gene_id "YIL057C"; gene_name "RGI2"; transcript_biotype "protein_coding"; +chrIX SGD exon 247902 248396 . - 0 transcript_id "YIL057C_id001"; gene_name "RGI2"; gene_id "YIL057C"; +chrIX SGD gene 248850 248931 . + . gene_id "YNCI0006W"; gene_biotype "ncRNA"; +chrIX SGD transcript 248850 248931 . + . transcript_id "YNCI0006W_tRNA"; gene_id "YNCI0006W"; gene_name "SUP17"; transcript_biotype "ncRNA"; +chrIX SGD exon 248850 248931 . + . transcript_id "YNCI0006W_tRNA"; gene_name "SUP17"; gene_id "YNCI0006W"; +chrIX SGD gene 249991 251913 . + . gene_id "YIL056W"; gene_biotype "protein_coding"; +chrIX SGD transcript 249991 251913 . + . transcript_id "YIL056W_id001"; gene_id "YIL056W"; gene_name "VHR1"; transcript_biotype "protein_coding"; +chrIX SGD exon 249991 251913 . + 0 transcript_id "YIL056W_id001"; gene_name "VHR1"; gene_id "YIL056W"; +chrIX SGD gene 251964 254766 . - . gene_id "YIL055C"; gene_biotype "protein_coding"; +chrIX SGD transcript 251964 254766 . - . transcript_id "YIL055C_id001"; gene_id "YIL055C"; transcript_biotype "protein_coding"; +chrIX SGD exon 251964 254766 . - . transcript_id "YIL055C_id001"; gene_id "YIL055C"; +chrIX SGD transcript 252042 253925 . - . transcript_id "YIL055C_id002"; gene_id "YIL055C"; transcript_biotype "protein_coding"; +chrIX SGD exon 252042 253925 . - 0 transcript_id "YIL055C_id002"; gene_id "YIL055C"; +chrIX SGD gene 254543 254860 . + . gene_id "YIL054W"; gene_biotype "protein_coding"; +chrIX SGD transcript 254543 254860 . + . transcript_id "YIL054W_id001"; gene_id "YIL054W"; transcript_biotype "protein_coding"; +chrIX SGD exon 254543 254860 . + 0 transcript_id "YIL054W_id001"; gene_id "YIL054W"; +chrIX SGD gene 255096 256241 . + . gene_id "YIL053W"; gene_biotype "protein_coding"; +chrIX SGD transcript 255096 256241 . + . transcript_id "YIL053W_id001"; gene_id "YIL053W"; gene_name "GPP1"; transcript_biotype "protein_coding"; +chrIX SGD exon 255096 256241 . + . transcript_id "YIL053W_id001"; gene_id "YIL053W"; gene_name "GPP1"; +chrIX SGD transcript 255115 255867 . + . transcript_id "YIL053W_id004"; gene_id "YIL053W"; gene_name "GPP1"; transcript_biotype "protein_coding"; +chrIX SGD exon 255115 255867 . + 0 transcript_id "YIL053W_id004"; gene_name "GPP1"; gene_id "YIL053W"; +chrIX SGD gene 255938 257100 . - . gene_id "YIL052C"; gene_biotype "protein_coding"; +chrIX SGD transcript 255938 257100 . - . transcript_id "YIL052C_id005"; gene_id "YIL052C"; gene_name "RPL34B"; transcript_biotype "protein_coding"; +chrIX SGD exon 255938 257100 . - . transcript_id "YIL052C_id005"; gene_id "YIL052C"; gene_name "RPL34B"; +chrIX SGD transcript 256226 257063 . - . transcript_id "YIL052C_id001"; gene_id "YIL052C"; gene_name "RPL34B"; transcript_biotype "protein_coding"; +chrIX SGD exon 256226 256554 . - 2 transcript_id "YIL052C_id001"; gene_name "RPL34B"; gene_id "YIL052C"; +chrIX SGD exon 257027 257063 . - 0 transcript_id "YIL052C_id001"; gene_name "RPL34B"; gene_id "YIL052C"; +chrIX SGD gene 257564 258322 . - . gene_id "YIL051C"; gene_biotype "protein_coding"; +chrIX SGD transcript 257564 258322 . - . transcript_id "YIL051C_id003"; gene_id "YIL051C"; gene_name "MMF1"; transcript_biotype "protein_coding"; +chrIX SGD exon 257564 258322 . - . transcript_id "YIL051C_id003"; gene_id "YIL051C"; gene_name "MMF1"; +chrIX SGD transcript 257843 258280 . - . transcript_id "YIL051C_id001"; gene_id "YIL051C"; gene_name "MMF1"; transcript_biotype "protein_coding"; +chrIX SGD exon 257843 258280 . - 0 transcript_id "YIL051C_id001"; gene_name "MMF1"; gene_id "YIL051C"; +chrIX SGD gene 258624 259895 . + . gene_id "YIL050W"; gene_biotype "protein_coding"; +chrIX SGD transcript 258624 259895 . + . transcript_id "YIL050W_id002"; gene_id "YIL050W"; gene_name "PCL7"; transcript_biotype "protein_coding"; +chrIX SGD exon 258624 259895 . + . transcript_id "YIL050W_id002"; gene_id "YIL050W"; gene_name "PCL7"; +chrIX SGD transcript 258913 259770 . + . transcript_id "YIL050W_id001"; gene_id "YIL050W"; gene_name "PCL7"; transcript_biotype "protein_coding"; +chrIX SGD exon 258913 259770 . + 0 transcript_id "YIL050W_id001"; gene_name "PCL7"; gene_id "YIL050W"; +chrIX SGD gene 260143 261026 . + . gene_id "YIL049W"; gene_biotype "protein_coding"; +chrIX SGD transcript 260143 261026 . + . transcript_id "YIL049W_id003"; gene_id "YIL049W"; gene_name "DFG10"; transcript_biotype "protein_coding"; +chrIX SGD exon 260143 261026 . + . transcript_id "YIL049W_id003"; gene_id "YIL049W"; gene_name "DFG10"; +chrIX SGD transcript 260158 260919 . + . transcript_id "YIL049W_id001"; gene_id "YIL049W"; gene_name "DFG10"; transcript_biotype "protein_coding"; +chrIX SGD exon 260158 260919 . + 0 transcript_id "YIL049W_id001"; gene_name "DFG10"; gene_id "YIL049W"; +chrIX SGD gene 261437 264892 . + . gene_id "YIL048W"; gene_biotype "protein_coding"; +chrIX SGD transcript 261437 264892 . + . transcript_id "YIL048W_id001"; gene_id "YIL048W"; gene_name "NEO1"; transcript_biotype "protein_coding"; +chrIX SGD exon 261437 264892 . + 0 transcript_id "YIL048W_id001"; gene_name "NEO1"; gene_id "YIL048W"; +chrIX SGD gene 264933 267766 . - . gene_id "YIL047C-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 264933 267766 . - . transcript_id "YIL047C-A_id001"; gene_id "YIL047C-A"; transcript_biotype "protein_coding"; +chrIX SGD exon 264933 267766 . - . transcript_id "YIL047C-A_id001"; gene_id "YIL047C-A"; +chrIX SGD transcript 265099 265467 . - . transcript_id "YIL047C-A_id005"; gene_id "YIL047C-A"; transcript_biotype "protein_coding"; +chrIX SGD exon 265099 265467 . - 0 transcript_id "YIL047C-A_id005"; gene_id "YIL047C-A"; +chrIX SGD gene 265115 267823 . - . gene_id "YIL047C"; gene_biotype "protein_coding"; +chrIX SGD transcript 265115 267823 . - . transcript_id "YIL047C_mRNA"; gene_id "YIL047C"; gene_name "SYG1"; transcript_biotype "protein_coding"; +chrIX SGD CDS 265115 267823 . - 0 transcript_id "YIL047C_mRNA"; gene_name "SYG1"; gene_id "YIL047C"; +chrIX SGD gene 267812 268474 . + . gene_id "YIL046W-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 267812 268474 . + . transcript_id "YIL046W-A_id001"; gene_id "YIL046W-A"; transcript_biotype "protein_coding"; +chrIX SGD exon 267812 268474 . + . transcript_id "YIL046W-A_id001"; gene_id "YIL046W-A"; +chrIX SGD transcript 268309 268473 . + . transcript_id "YIL046W-A_id002"; gene_id "YIL046W-A"; transcript_biotype "protein_coding"; +chrIX SGD exon 268309 268473 . + 0 transcript_id "YIL046W-A_id002"; gene_id "YIL046W-A"; +chrIX SGD gene 268575 270723 . + . gene_id "YIL046W"; gene_biotype "protein_coding"; +chrIX SGD transcript 268575 270723 . + . transcript_id "YIL046W_id001"; gene_id "YIL046W"; gene_name "MET30"; transcript_biotype "protein_coding"; +chrIX SGD exon 268575 270723 . + . transcript_id "YIL046W_id001"; gene_id "YIL046W"; gene_name "MET30"; +chrIX SGD transcript 268651 270573 . + . transcript_id "YIL046W_id005"; gene_id "YIL046W"; gene_name "MET30"; transcript_biotype "protein_coding"; +chrIX SGD exon 268651 270573 . + 0 transcript_id "YIL046W_id005"; gene_name "MET30"; gene_id "YIL046W"; +chrIX SGD gene 271075 272920 . + . gene_id "YIL045W"; gene_biotype "protein_coding"; +chrIX SGD transcript 271075 272920 . + . transcript_id "YIL045W_id011"; gene_id "YIL045W"; gene_name "PIG2"; transcript_biotype "protein_coding"; +chrIX SGD exon 271075 272920 . + . transcript_id "YIL045W_id011"; gene_id "YIL045W"; gene_name "PIG2"; +chrIX SGD transcript 271161 272777 . + . transcript_id "YIL045W_id001"; gene_id "YIL045W"; gene_name "PIG2"; transcript_biotype "protein_coding"; +chrIX SGD exon 271161 272777 . + 0 transcript_id "YIL045W_id001"; gene_name "PIG2"; gene_id "YIL045W"; +chrIX SGD gene 272776 273933 . - . gene_id "YIL044C"; gene_biotype "protein_coding"; +chrIX SGD transcript 272776 273933 . - . transcript_id "YIL044C_id001"; gene_id "YIL044C"; gene_name "AGE2"; transcript_biotype "protein_coding"; +chrIX SGD exon 272776 273933 . - . transcript_id "YIL044C_id001"; gene_id "YIL044C"; gene_name "AGE2"; +chrIX SGD transcript 272950 273846 . - . transcript_id "YIL044C_id002"; gene_id "YIL044C"; gene_name "AGE2"; transcript_biotype "protein_coding"; +chrIX SGD exon 272950 273846 . - 0 transcript_id "YIL044C_id002"; gene_name "AGE2"; gene_id "YIL044C"; +chrIX SGD gene 273919 274987 . - . gene_id "YIL043C"; gene_biotype "protein_coding"; +chrIX SGD transcript 273919 274987 . - . transcript_id "YIL043C_id001"; gene_id "YIL043C"; gene_name "CBR1"; transcript_biotype "protein_coding"; +chrIX SGD exon 273919 274987 . - . transcript_id "YIL043C_id001"; gene_id "YIL043C"; gene_name "CBR1"; +chrIX SGD transcript 274072 274926 . - . transcript_id "YIL043C_id002"; gene_id "YIL043C"; gene_name "CBR1"; transcript_biotype "protein_coding"; +chrIX SGD exon 274072 274926 . - 0 transcript_id "YIL043C_id002"; gene_name "CBR1"; gene_id "YIL043C"; +chrIX SGD gene 274975 276366 . - . gene_id "YIL042C"; gene_biotype "protein_coding"; +chrIX SGD transcript 274975 276366 . - . transcript_id "YIL042C_id001"; gene_id "YIL042C"; gene_name "PKP1"; transcript_biotype "protein_coding"; +chrIX SGD exon 274975 276366 . - . transcript_id "YIL042C_id001"; gene_id "YIL042C"; gene_name "PKP1"; +chrIX SGD transcript 275108 276292 . - . transcript_id "YIL042C_id002"; gene_id "YIL042C"; gene_name "PKP1"; transcript_biotype "protein_coding"; +chrIX SGD exon 275108 276292 . - 0 transcript_id "YIL042C_id002"; gene_name "PKP1"; gene_id "YIL042C"; +chrIX SGD gene 276503 277718 . + . gene_id "YIL041W"; gene_biotype "protein_coding"; +chrIX SGD transcript 276503 277718 . + . transcript_id "YIL041W_id001"; gene_id "YIL041W"; gene_name "GVP36"; transcript_biotype "protein_coding"; +chrIX SGD exon 276503 277718 . + . transcript_id "YIL041W_id001"; gene_id "YIL041W"; gene_name "GVP36"; +chrIX SGD transcript 276525 277505 . + . transcript_id "YIL041W_id002"; gene_id "YIL041W"; gene_name "GVP36"; transcript_biotype "protein_coding"; +chrIX SGD exon 276525 277505 . + 0 transcript_id "YIL041W_id002"; gene_name "GVP36"; gene_id "YIL041W"; +chrIX SGD gene 277714 278278 . + . gene_id "YIL040W"; gene_biotype "protein_coding"; +chrIX SGD transcript 277714 278278 . + . transcript_id "YIL040W_id003"; gene_id "YIL040W"; gene_name "APQ12"; transcript_biotype "protein_coding"; +chrIX SGD exon 277714 278278 . + . transcript_id "YIL040W_id003"; gene_id "YIL040W"; gene_name "APQ12"; +chrIX SGD transcript 277723 278139 . + . transcript_id "YIL040W_id001"; gene_id "YIL040W"; gene_name "APQ12"; transcript_biotype "protein_coding"; +chrIX SGD exon 277723 278139 . + 0 transcript_id "YIL040W_id001"; gene_name "APQ12"; gene_id "YIL040W"; +chrIX SGD gene 278249 280077 . + . gene_id "YIL039W"; gene_biotype "protein_coding"; +chrIX SGD transcript 278249 280077 . + . transcript_id "YIL039W_id001"; gene_id "YIL039W"; gene_name "TED1"; transcript_biotype "protein_coding"; +chrIX SGD exon 278249 280077 . + . transcript_id "YIL039W_id001"; gene_id "YIL039W"; gene_name "TED1"; +chrIX SGD transcript 278426 279847 . + . transcript_id "YIL039W_id005"; gene_id "YIL039W"; gene_name "TED1"; transcript_biotype "protein_coding"; +chrIX SGD exon 278426 279847 . + 0 transcript_id "YIL039W_id005"; gene_name "TED1"; gene_id "YIL039W"; +chrIX SGD gene 280142 282652 . - . gene_id "YIL038C"; gene_biotype "protein_coding"; +chrIX SGD transcript 280142 282652 . - . transcript_id "YIL038C_mRNA"; gene_id "YIL038C"; gene_name "NOT3"; transcript_biotype "protein_coding"; +chrIX SGD CDS 280142 282652 . - 0 transcript_id "YIL038C_mRNA"; gene_name "NOT3"; gene_id "YIL038C"; +chrIX SGD gene 283029 284999 . - . gene_id "YIL037C"; gene_biotype "protein_coding"; +chrIX SGD transcript 283029 284999 . - . transcript_id "YIL037C_mRNA"; gene_id "YIL037C"; gene_name "PRM2"; transcript_biotype "protein_coding"; +chrIX SGD CDS 283029 284999 . - 0 transcript_id "YIL037C_mRNA"; gene_name "PRM2"; gene_id "YIL037C"; +chrIX SGD gene 285498 287598 . + . gene_id "YIL036W"; gene_biotype "protein_coding"; +chrIX SGD transcript 285498 287598 . + . transcript_id "YIL036W_id002"; gene_id "YIL036W"; gene_name "CST6"; transcript_biotype "protein_coding"; +chrIX SGD exon 285498 287598 . + . transcript_id "YIL036W_id002"; gene_id "YIL036W"; gene_name "CST6"; +chrIX SGD transcript 285666 287429 . + . transcript_id "YIL036W_id001"; gene_id "YIL036W"; gene_name "CST6"; transcript_biotype "protein_coding"; +chrIX SGD exon 285666 287429 . + 0 transcript_id "YIL036W_id001"; gene_name "CST6"; gene_id "YIL036W"; +chrIX SGD gene 287154 289021 . - . gene_id "YIL035C"; gene_biotype "protein_coding"; +chrIX SGD transcript 287154 289021 . - . transcript_id "YIL035C_id001"; gene_id "YIL035C"; gene_name "CKA1"; transcript_biotype "protein_coding"; +chrIX SGD exon 287154 289021 . - . transcript_id "YIL035C_id001"; gene_id "YIL035C"; gene_name "CKA1"; +chrIX SGD transcript 287790 288908 . - . transcript_id "YIL035C_id003"; gene_id "YIL035C"; gene_name "CKA1"; transcript_biotype "protein_coding"; +chrIX SGD exon 287790 288908 . - 0 transcript_id "YIL035C_id003"; gene_name "CKA1"; gene_id "YIL035C"; +chrIX SGD gene 288845 290142 . - . gene_id "YIL034C"; gene_biotype "protein_coding"; +chrIX SGD transcript 288845 290142 . - . transcript_id "YIL034C_id002"; gene_id "YIL034C"; gene_name "CAP2"; transcript_biotype "protein_coding"; +chrIX SGD exon 288845 290142 . - . transcript_id "YIL034C_id002"; gene_id "YIL034C"; gene_name "CAP2"; +chrIX SGD transcript 289226 290089 . - . transcript_id "YIL034C_id001"; gene_id "YIL034C"; gene_name "CAP2"; transcript_biotype "protein_coding"; +chrIX SGD exon 289226 290089 . - 0 transcript_id "YIL034C_id001"; gene_name "CAP2"; gene_id "YIL034C"; +chrIX SGD gene 290228 291962 . - . gene_id "YIL033C"; gene_biotype "protein_coding"; +chrIX SGD transcript 290228 291962 . - . transcript_id "YIL033C_id001"; gene_id "YIL033C"; gene_name "BCY1"; transcript_biotype "protein_coding"; +chrIX SGD exon 290228 291962 . - . transcript_id "YIL033C_id001"; gene_id "YIL033C"; gene_name "BCY1"; +chrIX SGD transcript 290419 291669 . - . transcript_id "YIL033C_id002"; gene_id "YIL033C"; gene_name "BCY1"; transcript_biotype "protein_coding"; +chrIX SGD exon 290419 291669 . - 0 transcript_id "YIL033C_id002"; gene_name "BCY1"; gene_id "YIL033C"; +chrIX SGD gene 291961 292317 . - . gene_id "YIL032C"; gene_biotype "protein_coding"; +chrIX SGD transcript 291961 292317 . - . transcript_id "YIL032C_mRNA"; gene_id "YIL032C"; transcript_biotype "protein_coding"; +chrIX SGD CDS 291961 292317 . - 0 transcript_id "YIL032C_mRNA"; gene_id "YIL032C"; +chrIX SGD gene 292463 295847 . + . gene_id "YIL031W"; gene_biotype "protein_coding"; +chrIX SGD transcript 292463 295847 . + . transcript_id "YIL031W_id002"; gene_id "YIL031W"; gene_name "ULP2"; transcript_biotype "protein_coding"; +chrIX SGD exon 292463 295847 . + . transcript_id "YIL031W_id002"; gene_id "YIL031W"; gene_name "ULP2"; +chrIX SGD transcript 292633 295737 . + . transcript_id "YIL031W_id001"; gene_id "YIL031W"; gene_name "ULP2"; transcript_biotype "protein_coding"; +chrIX SGD exon 292633 295737 . + 0 transcript_id "YIL031W_id001"; gene_name "ULP2"; gene_id "YIL031W"; +chrIX SGD gene 295092 295926 . + . gene_id "YIL030W-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 295092 295926 . + . transcript_id "YIL030W-A_id002"; gene_id "YIL030W-A"; transcript_biotype "protein_coding"; +chrIX SGD exon 295092 295926 . + . transcript_id "YIL030W-A_id002"; gene_id "YIL030W-A"; +chrIX SGD transcript 295565 295903 . + . transcript_id "YIL030W-A_id001"; gene_id "YIL030W-A"; transcript_biotype "protein_coding"; +chrIX SGD exon 295565 295903 . + 0 transcript_id "YIL030W-A_id001"; gene_id "YIL030W-A"; +chrIX SGD gene 295910 300074 . - . gene_id "YIL030C"; gene_biotype "protein_coding"; +chrIX SGD transcript 295910 300074 . - . transcript_id "YIL030C_id001"; gene_id "YIL030C"; gene_name "SSM4"; transcript_biotype "protein_coding"; +chrIX SGD exon 295910 300074 . - . transcript_id "YIL030C_id001"; gene_id "YIL030C"; gene_name "SSM4"; +chrIX SGD transcript 296050 300009 . - . transcript_id "YIL030C_id003"; gene_id "YIL030C"; gene_name "SSM4"; transcript_biotype "protein_coding"; +chrIX SGD exon 296050 300009 . - 0 transcript_id "YIL030C_id003"; gene_name "SSM4"; gene_id "YIL030C"; +chrIX SGD gene 299735 300106 . + . gene_id "YIL029W-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 299735 300106 . + . transcript_id "YIL029W-A_mRNA"; gene_id "YIL029W-A"; transcript_biotype "protein_coding"; +chrIX SGD CDS 299735 300106 . + 0 transcript_id "YIL029W-A_mRNA"; gene_id "YIL029W-A"; +chrIX SGD gene 300228 300300 . - . gene_id "YNCI0007C"; gene_biotype "ncRNA"; +chrIX SGD transcript 300228 300300 . - . transcript_id "YNCI0007C_tRNA"; gene_id "YNCI0007C"; transcript_biotype "ncRNA"; +chrIX SGD exon 300228 300300 . - . transcript_id "YNCI0007C_tRNA"; gene_id "YNCI0007C"; +chrIX SGD gene 300437 301377 . - . gene_id "YIL029C"; gene_biotype "protein_coding"; +chrIX SGD transcript 300437 301377 . - . transcript_id "YIL029C_id001"; gene_id "YIL029C"; gene_name "EMA17"; transcript_biotype "protein_coding"; +chrIX SGD exon 300437 301377 . - . transcript_id "YIL029C_id001"; gene_id "YIL029C"; gene_name "EMA17"; +chrIX SGD transcript 300829 301257 . - . transcript_id "YIL029C_id002"; gene_id "YIL029C"; gene_name "EMA17"; transcript_biotype "protein_coding"; +chrIX SGD exon 300829 301257 . - 0 transcript_id "YIL029C_id002"; gene_name "EMA17"; gene_id "YIL029C"; +chrIX SGD gene 301566 303668 . + . gene_id "YIL028W"; gene_biotype "protein_coding"; +chrIX SGD transcript 301566 303668 . + . transcript_id "YIL028W_id001"; gene_id "YIL028W"; transcript_biotype "protein_coding"; +chrIX SGD exon 301566 303668 . + . transcript_id "YIL028W_id001"; gene_id "YIL028W"; +chrIX SGD transcript 302100 302498 . + . transcript_id "YIL028W_id002"; gene_id "YIL028W"; transcript_biotype "protein_coding"; +chrIX SGD exon 302100 302498 . + 0 transcript_id "YIL028W_id002"; gene_id "YIL028W"; +chrIX SGD gene 303458 304141 . - . gene_id "YIL027C"; gene_biotype "protein_coding"; +chrIX SGD transcript 303458 304141 . - . transcript_id "YIL027C_id003"; gene_id "YIL027C"; gene_name "EMC5"; transcript_biotype "protein_coding"; +chrIX SGD exon 303458 304141 . - . transcript_id "YIL027C_id003"; gene_id "YIL027C"; gene_name "EMC5"; +chrIX SGD transcript 303679 304104 . - . transcript_id "YIL027C_id001"; gene_id "YIL027C"; gene_name "EMC5"; transcript_biotype "protein_coding"; +chrIX SGD exon 303679 304104 . - 0 transcript_id "YIL027C_id001"; gene_name "EMC5"; gene_id "YIL027C"; +chrIX SGD gene 304477 307929 . - . gene_id "YIL026C"; gene_biotype "protein_coding"; +chrIX SGD transcript 304477 307929 . - . transcript_id "YIL026C_id001"; gene_id "YIL026C"; gene_name "IRR1"; transcript_biotype "protein_coding"; +chrIX SGD exon 304477 307929 . - 0 transcript_id "YIL026C_id001"; gene_name "IRR1"; gene_id "YIL026C"; +chrIX SGD gene 308201 308575 . - . gene_id "YIL025C"; gene_biotype "protein_coding"; +chrIX SGD transcript 308201 308575 . - . transcript_id "YIL025C_mRNA"; gene_id "YIL025C"; transcript_biotype "protein_coding"; +chrIX SGD CDS 308201 308575 . - 0 transcript_id "YIL025C_mRNA"; gene_id "YIL025C"; +chrIX SGD gene 308491 310415 . - . gene_id "YIL024C"; gene_biotype "protein_coding"; +chrIX SGD transcript 308491 310415 . - . transcript_id "YIL024C_id001"; gene_id "YIL024C"; transcript_biotype "protein_coding"; +chrIX SGD exon 308491 310415 . - . transcript_id "YIL024C_id001"; gene_id "YIL024C"; +chrIX SGD transcript 308602 309171 . - . transcript_id "YIL024C_id002"; gene_id "YIL024C"; transcript_biotype "protein_coding"; +chrIX SGD exon 308602 309171 . - 0 transcript_id "YIL024C_id002"; gene_id "YIL024C"; +chrIX SGD gene 309326 310584 . - . gene_id "YIL023C"; gene_biotype "protein_coding"; +chrIX SGD transcript 309326 310584 . - . transcript_id "YIL023C_id005"; gene_id "YIL023C"; gene_name "YKE4"; transcript_biotype "protein_coding"; +chrIX SGD exon 309326 310584 . - . transcript_id "YIL023C_id005"; gene_id "YIL023C"; gene_name "YKE4"; +chrIX SGD transcript 309386 310426 . - . transcript_id "YIL023C_id001"; gene_id "YIL023C"; gene_name "YKE4"; transcript_biotype "protein_coding"; +chrIX SGD exon 309386 310426 . - 0 transcript_id "YIL023C_id001"; gene_name "YKE4"; gene_id "YIL023C"; +chrIX SGD gene 311047 312793 . + . gene_id "YIL022W"; gene_biotype "protein_coding"; +chrIX SGD transcript 311047 312793 . + . transcript_id "YIL022W_id001"; gene_id "YIL022W"; gene_name "TIM44"; transcript_biotype "protein_coding"; +chrIX SGD exon 311047 312793 . + . transcript_id "YIL022W_id001"; gene_id "YIL022W"; gene_name "TIM44"; +chrIX SGD transcript 311165 312460 . + . transcript_id "YIL022W_id003"; gene_id "YIL022W"; gene_name "TIM44"; transcript_biotype "protein_coding"; +chrIX SGD exon 311165 312460 . + 0 transcript_id "YIL022W_id003"; gene_name "TIM44"; gene_id "YIL022W"; +chrIX SGD gene 312843 314119 . + . gene_id "YIL021W"; gene_biotype "protein_coding"; +chrIX SGD transcript 312843 314119 . + . transcript_id "YIL021W_id006"; gene_id "YIL021W"; gene_name "RPB3"; transcript_biotype "protein_coding"; +chrIX SGD exon 312843 314119 . + . transcript_id "YIL021W_id006"; gene_id "YIL021W"; gene_name "RPB3"; +chrIX SGD transcript 312905 313861 . + . transcript_id "YIL021W_id001"; gene_id "YIL021W"; gene_name "RPB3"; transcript_biotype "protein_coding"; +chrIX SGD exon 312905 313861 . + 0 transcript_id "YIL021W_id001"; gene_name "RPB3"; gene_id "YIL021W"; +chrIX SGD gene 313199 313468 . - . gene_id "YIL021C-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 313199 313468 . - . transcript_id "YIL021C-A_mRNA"; gene_id "YIL021C-A"; transcript_biotype "protein_coding"; +chrIX SGD CDS 313199 313468 . - 0 transcript_id "YIL021C-A_mRNA"; gene_id "YIL021C-A"; +chrIX SGD gene 313713 314051 . - . gene_id "YIL020C-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 313713 314051 . - . transcript_id "YIL020C-A_mRNA"; gene_id "YIL020C-A"; transcript_biotype "protein_coding"; +chrIX SGD CDS 313713 314051 . - 0 transcript_id "YIL020C-A_mRNA"; gene_id "YIL020C-A"; +chrIX SGD gene 313898 314871 . - . gene_id "YIL020C"; gene_biotype "protein_coding"; +chrIX SGD transcript 313898 314871 . - . transcript_id "YIL020C_id004"; gene_id "YIL020C"; gene_name "HIS6"; transcript_biotype "protein_coding"; +chrIX SGD exon 313898 314871 . - . transcript_id "YIL020C_id004"; gene_id "YIL020C"; gene_name "HIS6"; +chrIX SGD transcript 314035 314820 . - . transcript_id "YIL020C_id001"; gene_id "YIL020C"; gene_name "HIS6"; transcript_biotype "protein_coding"; +chrIX SGD exon 314035 314820 . - 0 transcript_id "YIL020C_id001"; gene_name "HIS6"; gene_id "YIL020C"; +chrIX SGD gene 315058 316746 . + . gene_id "YIL019W"; gene_biotype "protein_coding"; +chrIX SGD transcript 315058 316746 . + . transcript_id "YIL019W_id001"; gene_id "YIL019W"; gene_name "FAF1"; transcript_biotype "protein_coding"; +chrIX SGD exon 315058 316746 . + . transcript_id "YIL019W_id001"; gene_id "YIL019W"; gene_name "FAF1"; +chrIX SGD transcript 315093 316133 . + . transcript_id "YIL019W_id004"; gene_id "YIL019W"; gene_name "FAF1"; transcript_biotype "protein_coding"; +chrIX SGD exon 315093 316133 . + 0 transcript_id "YIL019W_id004"; gene_name "FAF1"; gene_id "YIL019W"; +chrIX SGD gene 315438 318032 . + . gene_id "YIL018W"; gene_biotype "protein_coding"; +chrIX SGD transcript 315438 318032 . + . transcript_id "YIL018W_id001"; gene_id "YIL018W"; gene_name "RPL2B"; transcript_biotype "protein_coding"; +chrIX SGD exon 315438 318032 . + . transcript_id "YIL018W_id001"; gene_id "YIL018W"; gene_name "RPL2B"; +chrIX SGD transcript 316768 317932 . + . transcript_id "YIL018W_id007"; gene_id "YIL018W"; gene_name "RPL2B"; transcript_biotype "protein_coding"; +chrIX SGD exon 316768 316771 . + 0 transcript_id "YIL018W_id007"; gene_name "RPL2B"; gene_id "YIL018W"; +chrIX SGD exon 317172 317932 . + 2 transcript_id "YIL018W_id007"; gene_name "RPL2B"; gene_id "YIL018W"; +chrIX SGD gene 318200 320965 . - . gene_id "YIL017C"; gene_biotype "protein_coding"; +chrIX SGD transcript 318200 320965 . - . transcript_id "YIL017C_id001"; gene_id "YIL017C"; gene_name "VID28"; transcript_biotype "protein_coding"; +chrIX SGD exon 318200 320965 . - 0 transcript_id "YIL017C_id001"; gene_name "VID28"; gene_id "YIL017C"; +chrIX SGD gene 321209 321992 . + . gene_id "YIL016W"; gene_biotype "protein_coding"; +chrIX SGD transcript 321209 321992 . + . transcript_id "YIL016W_id006"; gene_id "YIL016W"; gene_name "SNL1"; transcript_biotype "protein_coding"; +chrIX SGD exon 321209 321992 . + . transcript_id "YIL016W_id006"; gene_id "YIL016W"; gene_name "SNL1"; +chrIX SGD transcript 321454 321933 . + . transcript_id "YIL016W_id001"; gene_id "YIL016W"; gene_name "SNL1"; transcript_biotype "protein_coding"; +chrIX SGD exon 321454 321933 . + 0 transcript_id "YIL016W_id001"; gene_name "SNL1"; gene_id "YIL016W"; +chrIX SGD gene 322342 324105 . + . gene_id "YIL015W"; gene_biotype "protein_coding"; +chrIX SGD transcript 322342 324105 . + . transcript_id "YIL015W_mRNA"; gene_id "YIL015W"; gene_name "BAR1"; transcript_biotype "protein_coding"; +chrIX SGD CDS 322342 324105 . + 0 transcript_id "YIL015W_mRNA"; gene_name "BAR1"; gene_id "YIL015W"; +chrIX SGD gene 324303 324374 . - . gene_id "YNCI0008C"; gene_biotype "ncRNA"; +chrIX SGD transcript 324303 324374 . - . transcript_id "YNCI0008C_tRNA"; gene_id "YNCI0008C"; transcript_biotype "ncRNA"; +chrIX SGD exon 324303 324374 . - . transcript_id "YNCI0008C_tRNA"; gene_id "YNCI0008C"; +chrIX SGD gene 325005 325614 . - . gene_id "YIL014C-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 325005 325614 . - . transcript_id "YIL014C-A_id011"; gene_id "YIL014C-A"; transcript_biotype "protein_coding"; +chrIX SGD exon 325005 325614 . - . transcript_id "YIL014C-A_id011"; gene_id "YIL014C-A"; +chrIX SGD transcript 325212 325526 . - . transcript_id "YIL014C-A_id001"; gene_id "YIL014C-A"; transcript_biotype "protein_coding"; +chrIX SGD exon 325212 325526 . - 0 transcript_id "YIL014C-A_id001"; gene_id "YIL014C-A"; +chrIX SGD gene 325748 325820 . + . gene_id "YNCI0009W"; gene_biotype "ncRNA"; +chrIX SGD transcript 325748 325820 . + . transcript_id "YNCI0009W_tRNA"; gene_id "YNCI0009W"; transcript_biotype "ncRNA"; +chrIX SGD exon 325748 325820 . + . transcript_id "YNCI0009W_tRNA"; gene_id "YNCI0009W"; +chrIX SGD gene 325918 328118 . + . gene_id "YIL014W"; gene_biotype "protein_coding"; +chrIX SGD transcript 325918 328118 . + . transcript_id "YIL014W_id005"; gene_id "YIL014W"; gene_name "MNT3"; transcript_biotype "protein_coding"; +chrIX SGD exon 325918 328118 . + . transcript_id "YIL014W_id005"; gene_id "YIL014W"; gene_name "MNT3"; +chrIX SGD transcript 326103 327995 . + . transcript_id "YIL014W_id001"; gene_id "YIL014W"; gene_name "MNT3"; transcript_biotype "protein_coding"; +chrIX SGD exon 326103 327995 . + 0 transcript_id "YIL014W_id001"; gene_name "MNT3"; gene_id "YIL014W"; +chrIX SGD gene 328207 332442 . - . gene_id "YIL013C"; gene_biotype "protein_coding"; +chrIX SGD transcript 328207 332442 . - . transcript_id "YIL013C_mRNA"; gene_id "YIL013C"; gene_name "PDR11"; transcript_biotype "protein_coding"; +chrIX SGD CDS 328207 332442 . - 0 transcript_id "YIL013C_mRNA"; gene_name "PDR11"; gene_id "YIL013C"; +chrIX SGD gene 333011 333352 . + . gene_id "YIL012W"; gene_biotype "protein_coding"; +chrIX SGD transcript 333011 333352 . + . transcript_id "YIL012W_id001"; gene_id "YIL012W"; transcript_biotype "protein_coding"; +chrIX SGD exon 333011 333352 . + 0 transcript_id "YIL012W_id001"; gene_id "YIL012W"; +chrIX SGD gene 333533 334666 . + . gene_id "YIL011W"; gene_biotype "protein_coding"; +chrIX SGD transcript 333533 334666 . + . transcript_id "YIL011W_id003"; gene_id "YIL011W"; gene_name "TIR3"; transcript_biotype "protein_coding"; +chrIX SGD exon 333533 334666 . + . transcript_id "YIL011W_id003"; gene_id "YIL011W"; gene_name "TIR3"; +chrIX SGD transcript 333727 334536 . + . transcript_id "YIL011W_id001"; gene_id "YIL011W"; gene_name "TIR3"; transcript_biotype "protein_coding"; +chrIX SGD exon 333727 334536 . + 0 transcript_id "YIL011W_id001"; gene_name "TIR3"; gene_id "YIL011W"; +chrIX SGD gene 334766 335716 . + . gene_id "YIL010W"; gene_biotype "protein_coding"; +chrIX SGD transcript 334766 335716 . + . transcript_id "YIL010W_id002"; gene_id "YIL010W"; gene_name "DOT5"; transcript_biotype "protein_coding"; +chrIX SGD exon 334766 335716 . + . transcript_id "YIL010W_id002"; gene_id "YIL010W"; gene_name "DOT5"; +chrIX SGD transcript 334882 335529 . + . transcript_id "YIL010W_id001"; gene_id "YIL010W"; gene_name "DOT5"; transcript_biotype "protein_coding"; +chrIX SGD exon 334882 335529 . + 0 transcript_id "YIL010W_id001"; gene_name "DOT5"; gene_id "YIL010W"; +chrIX SGD gene 335408 336221 . - . gene_id "YIL009C-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 335408 336221 . - . transcript_id "YIL009C-A_id002"; gene_id "YIL009C-A"; gene_name "EST3"; transcript_biotype "protein_coding"; +chrIX SGD exon 335408 336221 . - . transcript_id "YIL009C-A_id002"; gene_id "YIL009C-A"; gene_name "EST3"; +chrIX SGD transcript 335666 336212 . - . transcript_id "YIL009C-A_id001"; gene_id "YIL009C-A"; gene_name "EST3"; transcript_biotype "protein_coding"; +chrIX SGD exon 335666 335935 . - 0 transcript_id "YIL009C-A_id001"; gene_name "EST3"; gene_id "YIL009C-A"; +chrIX SGD exon 335937 336212 . - 0 transcript_id "YIL009C-A_id001"; gene_name "EST3"; gene_id "YIL009C-A"; +chrIX SGD gene 336349 336420 . - . gene_id "YNCI0010C"; gene_biotype "ncRNA"; +chrIX SGD transcript 336349 336420 . - . transcript_id "YNCI0010C_tRNA"; gene_id "YNCI0010C"; transcript_biotype "ncRNA"; +chrIX SGD exon 336349 336420 . - . transcript_id "YNCI0010C_tRNA"; gene_id "YNCI0010C"; +chrIX SGD gene 338782 341648 . + . gene_id "YIL009W"; gene_biotype "protein_coding"; +chrIX SGD transcript 338782 341648 . + . transcript_id "YIL009W_id002"; gene_id "YIL009W"; gene_name "FAA3"; transcript_biotype "protein_coding"; +chrIX SGD exon 338782 341648 . + . transcript_id "YIL009W_id002"; gene_id "YIL009W"; gene_name "FAA3"; +chrIX SGD transcript 339344 341428 . + . transcript_id "YIL009W_id001"; gene_id "YIL009W"; gene_name "FAA3"; transcript_biotype "protein_coding"; +chrIX SGD exon 339344 341428 . + 0 transcript_id "YIL009W_id001"; gene_name "FAA3"; gene_id "YIL009W"; +chrIX SGD gene 342490 343590 . + . gene_id "YIL008W"; gene_biotype "protein_coding"; +chrIX SGD transcript 342490 343590 . + . transcript_id "YIL008W_id001"; gene_id "YIL008W"; gene_name "URM1"; transcript_biotype "protein_coding"; +chrIX SGD exon 342490 343590 . + . transcript_id "YIL008W_id001"; gene_id "YIL008W"; gene_name "URM1"; +chrIX SGD transcript 342536 342835 . + . transcript_id "YIL008W_id002"; gene_id "YIL008W"; gene_name "URM1"; transcript_biotype "protein_coding"; +chrIX SGD exon 342536 342835 . + 0 transcript_id "YIL008W_id002"; gene_name "URM1"; gene_id "YIL008W"; +chrIX SGD gene 342841 343861 . - . gene_id "YIL007C"; gene_biotype "protein_coding"; +chrIX SGD transcript 342841 343861 . - . transcript_id "YIL007C_id001"; gene_id "YIL007C"; gene_name "NAS2"; transcript_biotype "protein_coding"; +chrIX SGD exon 342841 343861 . - . transcript_id "YIL007C_id001"; gene_id "YIL007C"; gene_name "NAS2"; +chrIX SGD transcript 342994 343656 . - . transcript_id "YIL007C_id002"; gene_id "YIL007C"; gene_name "NAS2"; transcript_biotype "protein_coding"; +chrIX SGD exon 342994 343656 . - 0 transcript_id "YIL007C_id002"; gene_name "NAS2"; gene_id "YIL007C"; +chrIX SGD gene 343885 345396 . + . gene_id "YIL006W"; gene_biotype "protein_coding"; +chrIX SGD transcript 343885 345396 . + . transcript_id "YIL006W_id004"; gene_id "YIL006W"; gene_name "YIA6"; transcript_biotype "protein_coding"; +chrIX SGD exon 343885 345396 . + . transcript_id "YIL006W_id004"; gene_id "YIL006W"; gene_name "YIA6"; +chrIX SGD transcript 344062 345183 . + . transcript_id "YIL006W_id001"; gene_id "YIL006W"; gene_name "YIA6"; transcript_biotype "protein_coding"; +chrIX SGD exon 344062 345183 . + 0 transcript_id "YIL006W_id001"; gene_name "YIA6"; gene_id "YIL006W"; +chrIX SGD gene 345544 347984 . + . gene_id "YIL005W"; gene_biotype "protein_coding"; +chrIX SGD transcript 345544 347984 . + . transcript_id "YIL005W_id002"; gene_id "YIL005W"; gene_name "EPS1"; transcript_biotype "protein_coding"; +chrIX SGD exon 345544 347984 . + . transcript_id "YIL005W_id002"; gene_id "YIL005W"; gene_name "EPS1"; +chrIX SGD transcript 345692 347797 . + . transcript_id "YIL005W_id001"; gene_id "YIL005W"; gene_name "EPS1"; transcript_biotype "protein_coding"; +chrIX SGD exon 345692 347797 . + 0 transcript_id "YIL005W_id001"; gene_name "EPS1"; gene_id "YIL005W"; +chrIX SGD gene 347773 348870 . - . gene_id "YIL004C"; gene_biotype "protein_coding"; +chrIX SGD transcript 347773 348870 . - . transcript_id "YIL004C_id003"; gene_id "YIL004C"; gene_name "BET1"; transcript_biotype "protein_coding"; +chrIX SGD exon 347773 348870 . - . transcript_id "YIL004C_id003"; gene_id "YIL004C"; gene_name "BET1"; +chrIX SGD transcript 347946 348505 . - . transcript_id "YIL004C_id001"; gene_id "YIL004C"; gene_name "BET1"; transcript_biotype "protein_coding"; +chrIX SGD exon 347946 348363 . - 1 transcript_id "YIL004C_id001"; gene_name "BET1"; gene_id "YIL004C"; +chrIX SGD exon 348495 348505 . - 0 transcript_id "YIL004C_id001"; gene_name "BET1"; gene_id "YIL004C"; +chrIX SGD gene 348683 350106 . + . gene_id "YIL003W"; gene_biotype "protein_coding"; +chrIX SGD transcript 348683 350106 . + . transcript_id "YIL003W_id001"; gene_id "YIL003W"; gene_name "CFD1"; transcript_biotype "protein_coding"; +chrIX SGD exon 348683 350106 . + . transcript_id "YIL003W_id001"; gene_id "YIL003W"; gene_name "CFD1"; +chrIX SGD transcript 349122 350003 . + . transcript_id "YIL003W_id002"; gene_id "YIL003W"; gene_name "CFD1"; transcript_biotype "protein_coding"; +chrIX SGD exon 349122 350003 . + 0 transcript_id "YIL003W_id002"; gene_name "CFD1"; gene_id "YIL003W"; +chrIX SGD gene 350285 350824 . + . gene_id "YIL002W-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 350285 350824 . + . transcript_id "YIL002W-A_id002"; gene_id "YIL002W-A"; gene_name "CMI7"; transcript_biotype "protein_coding"; +chrIX SGD exon 350285 350824 . + . transcript_id "YIL002W-A_id002"; gene_id "YIL002W-A"; gene_name "CMI7"; +chrIX SGD transcript 350301 350510 . + . transcript_id "YIL002W-A_id001"; gene_id "YIL002W-A"; gene_name "CMI7"; transcript_biotype "protein_coding"; +chrIX SGD exon 350301 350510 . + 0 transcript_id "YIL002W-A_id001"; gene_name "CMI7"; gene_id "YIL002W-A"; +chrIX SGD gene 350435 353643 . - . gene_id "YIL002C"; gene_biotype "protein_coding"; +chrIX SGD transcript 350435 353643 . - . transcript_id "YIL002C_id001"; gene_id "YIL002C"; gene_name "INP51"; transcript_biotype "protein_coding"; +chrIX SGD exon 350435 353643 . - . transcript_id "YIL002C_id001"; gene_id "YIL002C"; gene_name "INP51"; +chrIX SGD transcript 350591 353431 . - . transcript_id "YIL002C_id004"; gene_id "YIL002C"; gene_name "INP51"; transcript_biotype "protein_coding"; +chrIX SGD exon 350591 353431 . - 0 transcript_id "YIL002C_id004"; gene_name "INP51"; gene_id "YIL002C"; +chrIX SGD gene 353866 355606 . + . gene_id "YIL001W"; gene_biotype "protein_coding"; +chrIX SGD transcript 353866 355606 . + . transcript_id "YIL001W_id002"; gene_id "YIL001W"; transcript_biotype "protein_coding"; +chrIX SGD exon 353866 355606 . + . transcript_id "YIL001W_id002"; gene_id "YIL001W"; +chrIX SGD transcript 353940 355481 . + . transcript_id "YIL001W_id001"; gene_id "YIL001W"; transcript_biotype "protein_coding"; +chrIX SGD exon 353940 355481 . + 0 transcript_id "YIL001W_id001"; gene_id "YIL001W"; +chrIX SGD gene 355810 356960 . - . gene_id "YIR001C"; gene_biotype "protein_coding"; +chrIX SGD transcript 355810 356960 . - . transcript_id "YIR001C_id004"; gene_id "YIR001C"; gene_name "SGN1"; transcript_biotype "protein_coding"; +chrIX SGD exon 355810 356960 . - . transcript_id "YIR001C_id004"; gene_id "YIR001C"; gene_name "SGN1"; +chrIX SGD transcript 356143 356895 . - . transcript_id "YIR001C_id001"; gene_id "YIR001C"; gene_name "SGN1"; transcript_biotype "protein_coding"; +chrIX SGD exon 356143 356895 . - 0 transcript_id "YIR001C_id001"; gene_name "SGN1"; gene_id "YIR001C"; +chrIX SGD gene 357415 360396 . - . gene_id "YIR002C"; gene_biotype "protein_coding"; +chrIX SGD transcript 357415 360396 . - . transcript_id "YIR002C_mRNA"; gene_id "YIR002C"; gene_name "MPH1"; transcript_biotype "protein_coding"; +chrIX SGD CDS 357415 360396 . - 0 transcript_id "YIR002C_mRNA"; gene_name "MPH1"; gene_id "YIR002C"; +chrIX SGD gene 360747 362994 . + . gene_id "YIR003W"; gene_biotype "protein_coding"; +chrIX SGD transcript 360747 362994 . + . transcript_id "YIR003W_id003"; gene_id "YIR003W"; gene_name "AIM21"; transcript_biotype "protein_coding"; +chrIX SGD exon 360747 362994 . + . transcript_id "YIR003W_id003"; gene_id "YIR003W"; gene_name "AIM21"; +chrIX SGD transcript 360885 362924 . + . transcript_id "YIR003W_id001"; gene_id "YIR003W"; gene_name "AIM21"; transcript_biotype "protein_coding"; +chrIX SGD exon 360885 362924 . + 0 transcript_id "YIR003W_id001"; gene_name "AIM21"; gene_id "YIR003W"; +chrIX SGD gene 363181 364680 . + . gene_id "YIR004W"; gene_biotype "protein_coding"; +chrIX SGD transcript 363181 364680 . + . transcript_id "YIR004W_id002"; gene_id "YIR004W"; gene_name "DJP1"; transcript_biotype "protein_coding"; +chrIX SGD exon 363181 364680 . + . transcript_id "YIR004W_id002"; gene_id "YIR004W"; gene_name "DJP1"; +chrIX SGD transcript 363221 364519 . + . transcript_id "YIR004W_id001"; gene_id "YIR004W"; gene_name "DJP1"; transcript_biotype "protein_coding"; +chrIX SGD exon 363221 364519 . + 0 transcript_id "YIR004W_id001"; gene_name "DJP1"; gene_id "YIR004W"; +chrIX SGD gene 364650 365411 . + . gene_id "YIR005W"; gene_biotype "protein_coding"; +chrIX SGD transcript 364650 365411 . + . transcript_id "YIR005W_id001"; gene_id "YIR005W"; gene_name "IST3"; transcript_biotype "protein_coding"; +chrIX SGD exon 364650 365411 . + . transcript_id "YIR005W_id001"; gene_id "YIR005W"; gene_name "IST3"; +chrIX SGD transcript 364889 365335 . + . transcript_id "YIR005W_id002"; gene_id "YIR005W"; gene_name "IST3"; transcript_biotype "protein_coding"; +chrIX SGD exon 364889 365335 . + 0 transcript_id "YIR005W_id002"; gene_name "IST3"; gene_id "YIR005W"; +chrIX SGD gene 365466 369908 . - . gene_id "YIR006C"; gene_biotype "protein_coding"; +chrIX SGD transcript 365466 369908 . - . transcript_id "YIR006C_mRNA"; gene_id "YIR006C"; gene_name "PAN1"; transcript_biotype "protein_coding"; +chrIX SGD CDS 365466 369908 . - 0 transcript_id "YIR006C_mRNA"; gene_name "PAN1"; gene_id "YIR006C"; +chrIX SGD gene 370417 370488 . + . gene_id "YNCI0011W"; gene_biotype "ncRNA"; +chrIX SGD transcript 370417 370488 . + . transcript_id "YNCI0011W_tRNA"; gene_id "YNCI0011W"; transcript_biotype "ncRNA"; +chrIX SGD exon 370417 370488 . + . transcript_id "YNCI0011W_tRNA"; gene_id "YNCI0011W"; +chrIX SGD gene 370702 373106 . + . gene_id "YIR007W"; gene_biotype "protein_coding"; +chrIX SGD transcript 370702 373106 . + . transcript_id "YIR007W_id002"; gene_id "YIR007W"; gene_name "EGH1"; transcript_biotype "protein_coding"; +chrIX SGD exon 370702 373106 . + . transcript_id "YIR007W_id002"; gene_id "YIR007W"; gene_name "EGH1"; +chrIX SGD transcript 370704 372998 . + . transcript_id "YIR007W_id001"; gene_id "YIR007W"; gene_name "EGH1"; transcript_biotype "protein_coding"; +chrIX SGD exon 370704 372998 . + 0 transcript_id "YIR007W_id001"; gene_name "EGH1"; gene_id "YIR007W"; +chrIX SGD gene 372684 374333 . - . gene_id "YIR008C"; gene_biotype "protein_coding"; +chrIX SGD transcript 372684 374333 . - . transcript_id "YIR008C_id001"; gene_id "YIR008C"; gene_name "PRI1"; transcript_biotype "protein_coding"; +chrIX SGD exon 372684 374333 . - . transcript_id "YIR008C_id001"; gene_id "YIR008C"; gene_name "PRI1"; +chrIX SGD transcript 373077 374306 . - . transcript_id "YIR008C_id002"; gene_id "YIR008C"; gene_name "PRI1"; transcript_biotype "protein_coding"; +chrIX SGD exon 373077 374306 . - 0 transcript_id "YIR008C_id002"; gene_name "PRI1"; gene_id "YIR008C"; +chrIX SGD gene 373907 375310 . + . gene_id "YIR009W"; gene_biotype "protein_coding"; +chrIX SGD transcript 373907 375310 . + . transcript_id "YIR009W_id001"; gene_id "YIR009W"; gene_name "MSL1"; transcript_biotype "protein_coding"; +chrIX SGD exon 373907 375310 . + . transcript_id "YIR009W_id001"; gene_id "YIR009W"; gene_name "MSL1"; +chrIX SGD transcript 374525 374860 . + . transcript_id "YIR009W_id003"; gene_id "YIR009W"; gene_name "MSL1"; transcript_biotype "protein_coding"; +chrIX SGD exon 374525 374860 . + 0 transcript_id "YIR009W_id003"; gene_name "MSL1"; gene_id "YIR009W"; +chrIX SGD gene 375431 377161 . + . gene_id "YIR010W"; gene_biotype "protein_coding"; +chrIX SGD transcript 375431 377161 . + . transcript_id "YIR010W_id001"; gene_id "YIR010W"; gene_name "DSN1"; transcript_biotype "protein_coding"; +chrIX SGD exon 375431 377161 . + 0 transcript_id "YIR010W_id001"; gene_name "DSN1"; gene_id "YIR010W"; +chrIX SGD gene 377177 378280 . - . gene_id "YIR011C"; gene_biotype "protein_coding"; +chrIX SGD transcript 377177 378280 . - . transcript_id "YIR011C_id001"; gene_id "YIR011C"; gene_name "STS1"; transcript_biotype "protein_coding"; +chrIX SGD exon 377177 378280 . - . transcript_id "YIR011C_id001"; gene_id "YIR011C"; gene_name "STS1"; +chrIX SGD transcript 377287 378246 . - . transcript_id "YIR011C_id007"; gene_id "YIR011C"; gene_name "STS1"; transcript_biotype "protein_coding"; +chrIX SGD exon 377287 378246 . - 0 transcript_id "YIR011C_id007"; gene_name "STS1"; gene_id "YIR011C"; +chrIX SGD gene 378464 379935 . + . gene_id "YIR012W"; gene_biotype "protein_coding"; +chrIX SGD transcript 378464 379935 . + . transcript_id "YIR012W_id003"; gene_id "YIR012W"; gene_name "SQT1"; transcript_biotype "protein_coding"; +chrIX SGD exon 378464 379935 . + . transcript_id "YIR012W_id003"; gene_id "YIR012W"; gene_name "SQT1"; +chrIX SGD transcript 378486 379781 . + . transcript_id "YIR012W_id001"; gene_id "YIR012W"; gene_name "SQT1"; transcript_biotype "protein_coding"; +chrIX SGD exon 378486 379781 . + 0 transcript_id "YIR012W_id001"; gene_name "SQT1"; gene_id "YIR012W"; +chrIX SGD gene 380019 380384 . - . gene_id "YIR013C"; gene_biotype "protein_coding"; +chrIX SGD transcript 380019 380384 . - . transcript_id "YIR013C_id001"; gene_id "YIR013C"; gene_name "GAT4"; transcript_biotype "protein_coding"; +chrIX SGD exon 380019 380384 . - 0 transcript_id "YIR013C_id001"; gene_name "GAT4"; gene_id "YIR013C"; +chrIX SGD gene 381086 381814 . + . gene_id "YIR014W"; gene_biotype "protein_coding"; +chrIX SGD transcript 381086 381814 . + . transcript_id "YIR014W_id001"; gene_id "YIR014W"; gene_name "VLD1"; transcript_biotype "protein_coding"; +chrIX SGD exon 381086 381814 . + 0 transcript_id "YIR014W_id001"; gene_name "VLD1"; gene_id "YIR014W"; +chrIX SGD gene 381948 382382 . + . gene_id "YIR015W"; gene_biotype "protein_coding"; +chrIX SGD transcript 381948 382382 . + . transcript_id "YIR015W_mRNA"; gene_id "YIR015W"; gene_name "RPR2"; transcript_biotype "protein_coding"; +chrIX SGD CDS 381948 382382 . + 0 transcript_id "YIR015W_mRNA"; gene_name "RPR2"; gene_id "YIR015W"; +chrIX SGD gene 382178 383501 . + . gene_id "YIR016W"; gene_biotype "protein_coding"; +chrIX SGD transcript 382178 383501 . + . transcript_id "YIR016W_id001"; gene_id "YIR016W"; transcript_biotype "protein_coding"; +chrIX SGD exon 382178 383501 . + . transcript_id "YIR016W_id001"; gene_id "YIR016W"; +chrIX SGD transcript 382628 383425 . + . transcript_id "YIR016W_id004"; gene_id "YIR016W"; transcript_biotype "protein_coding"; +chrIX SGD exon 382628 383425 . + 0 transcript_id "YIR016W_id004"; gene_id "YIR016W"; +chrIX SGD gene 383348 384377 . - . gene_id "YIR017C"; gene_biotype "protein_coding"; +chrIX SGD transcript 383348 384377 . - . transcript_id "YIR017C_id001"; gene_id "YIR017C"; gene_name "MET28"; transcript_biotype "protein_coding"; +chrIX SGD exon 383348 384377 . - . transcript_id "YIR017C_id001"; gene_id "YIR017C"; gene_name "MET28"; +chrIX SGD transcript 383556 384119 . - . transcript_id "YIR017C_id002"; gene_id "YIR017C"; gene_name "MET28"; transcript_biotype "protein_coding"; +chrIX SGD exon 383556 384119 . - 0 transcript_id "YIR017C_id002"; gene_name "MET28"; gene_id "YIR017C"; +chrIX SGD gene 383566 384165 . + . gene_id "YIR017W-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 383566 384165 . + . transcript_id "YIR017W-A_mRNA"; gene_id "YIR017W-A"; transcript_biotype "protein_coding"; +chrIX SGD CDS 383566 384165 . + 0 transcript_id "YIR017W-A_mRNA"; gene_id "YIR017W-A"; +chrIX SGD gene 384592 385866 . + . gene_id "YIR018W"; gene_biotype "protein_coding"; +chrIX SGD transcript 384592 385866 . + . transcript_id "YIR018W_id001"; gene_id "YIR018W"; gene_name "YAP5"; transcript_biotype "protein_coding"; +chrIX SGD exon 384592 385866 . + . transcript_id "YIR018W_id001"; gene_id "YIR018W"; gene_name "YAP5"; +chrIX SGD transcript 384609 385346 . + . transcript_id "YIR018W_id003"; gene_id "YIR018W"; gene_name "YAP5"; transcript_biotype "protein_coding"; +chrIX SGD exon 384609 385346 . + 0 transcript_id "YIR018W_id003"; gene_name "YAP5"; gene_id "YIR018W"; +chrIX SGD gene 385564 385701 . - . gene_id "YIR018C-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 385564 385701 . - . transcript_id "YIR018C-A_id001"; gene_id "YIR018C-A"; transcript_biotype "protein_coding"; +chrIX SGD exon 385564 385701 . - 0 transcript_id "YIR018C-A_id001"; gene_id "YIR018C-A"; +chrIX SGD gene 389572 393732 . - . gene_id "YIR019C"; gene_biotype "protein_coding"; +chrIX SGD transcript 389572 393732 . - . transcript_id "YIR019C_mRNA"; gene_id "YIR019C"; gene_name "FLO11"; transcript_biotype "protein_coding"; +chrIX SGD exon 389572 393675 . - . transcript_id "YIR019C_mRNA"; gene_name "FLO11"; gene_id "YIR019C"; +chrIX SGD exon 393718 393732 . - . transcript_id "YIR019C_mRNA"; gene_name "FLO11"; gene_id "YIR019C"; +chrIX SGD CDS 389572 393675 . - 0 transcript_id "YIR019C_mRNA"; gene_name "FLO11"; gene_id "YIR019C"; +chrIX SGD gene 393608 396980 . - . gene_id "YIR020C"; gene_biotype "protein_coding"; +chrIX SGD transcript 393608 396980 . - . transcript_id "YIR020C_id002"; gene_id "YIR020C"; transcript_biotype "protein_coding"; +chrIX SGD exon 393608 396980 . - . transcript_id "YIR020C_id002"; gene_id "YIR020C"; +chrIX SGD gene 393884 397082 . - . gene_id "YNCI0012"; gene_biotype "ncRNA"; +chrIX SGD transcript 393884 397082 . - . transcript_id "YNCI0012_ncRNA"; gene_id "YNCI0012"; gene_name "ICR1"; transcript_biotype "ncRNA"; +chrIX SGD exon 393884 397082 . - . transcript_id "YNCI0012_ncRNA"; gene_name "ICR1"; gene_id "YNCI0012"; +chrIX SGD transcript 394255 394557 . - . transcript_id "YIR020C_id001"; gene_id "YIR020C"; transcript_biotype "protein_coding"; +chrIX SGD exon 394255 394557 . - 0 transcript_id "YIR020C_id001"; gene_id "YIR020C"; +chrIX SGD gene 394917 395159 . + . gene_id "YIR020W-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 394917 395159 . + . transcript_id "YIR020W-A_mRNA"; gene_id "YIR020W-A"; transcript_biotype "protein_coding"; +chrIX SGD CDS 394917 395159 . + 0 transcript_id "YIR020W-A_mRNA"; gene_id "YIR020W-A"; +chrIX SGD gene 395999 396939 . + . gene_id "YNCI0013W"; gene_biotype "ncRNA"; +chrIX SGD transcript 395999 396939 . + . transcript_id "YNCI0013W_ncRNA"; gene_id "YNCI0013W"; gene_name "PWR1"; transcript_biotype "ncRNA"; +chrIX SGD exon 395999 396939 . + . transcript_id "YNCI0013W_ncRNA"; gene_name "PWR1"; gene_id "YNCI0013W"; +chrIX SGD gene 397215 397949 . - . gene_id "YIR020C-B"; gene_biotype "protein_coding"; +chrIX SGD transcript 397215 397949 . - . transcript_id "YIR020C-B_mRNA"; gene_id "YIR020C-B"; transcript_biotype "protein_coding"; +chrIX SGD CDS 397215 397949 . - 0 transcript_id "YIR020C-B_mRNA"; gene_id "YIR020C-B"; +chrIX SGD gene 397221 398485 . + . gene_id "YIR021W"; gene_biotype "protein_coding"; +chrIX SGD transcript 397221 398485 . + . transcript_id "YIR021W_id001"; gene_id "YIR021W"; gene_name "MRS1"; transcript_biotype "protein_coding"; +chrIX SGD exon 397221 398485 . + . transcript_id "YIR021W_id001"; gene_id "YIR021W"; gene_name "MRS1"; +chrIX SGD transcript 397294 398385 . + . transcript_id "YIR021W_id002"; gene_id "YIR021W"; gene_name "MRS1"; transcript_biotype "protein_coding"; +chrIX SGD exon 397294 398385 . + 0 transcript_id "YIR021W_id002"; gene_name "MRS1"; gene_id "YIR021W"; +chrIX SGD gene 398514 398726 . + . gene_id "YIR021W-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 398514 398726 . + . transcript_id "YIR021W-A_mRNA"; gene_id "YIR021W-A"; transcript_biotype "protein_coding"; +chrIX SGD CDS 398514 398726 . + 0 transcript_id "YIR021W-A_mRNA"; gene_id "YIR021W-A"; +chrIX SGD gene 398725 399593 . + . gene_id "YIR022W"; gene_biotype "protein_coding"; +chrIX SGD transcript 398725 399593 . + . transcript_id "YIR022W_id002"; gene_id "YIR022W"; gene_name "SEC11"; transcript_biotype "protein_coding"; +chrIX SGD exon 398725 399593 . + . transcript_id "YIR022W_id002"; gene_id "YIR022W"; gene_name "SEC11"; +chrIX SGD transcript 398733 399236 . + . transcript_id "YIR022W_id001"; gene_id "YIR022W"; gene_name "SEC11"; transcript_biotype "protein_coding"; +chrIX SGD exon 398733 399236 . + 0 transcript_id "YIR022W_id001"; gene_name "SEC11"; gene_id "YIR022W"; +chrIX SGD gene 399777 402689 . + . gene_id "YIR023W"; gene_biotype "protein_coding"; +chrIX SGD transcript 399777 402689 . + . transcript_id "YIR023W_id001"; gene_id "YIR023W"; gene_name "DAL81"; transcript_biotype "protein_coding"; +chrIX SGD exon 399777 402689 . + 0 transcript_id "YIR023W_id001"; gene_name "DAL81"; gene_id "YIR023W"; +chrIX SGD gene 402383 402706 . - . gene_id "YIR023C-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 402383 402706 . - . transcript_id "YIR023C-A_mRNA"; gene_id "YIR023C-A"; transcript_biotype "protein_coding"; +chrIX SGD CDS 402383 402706 . - 0 transcript_id "YIR023C-A_mRNA"; gene_id "YIR023C-A"; +chrIX SGD gene 402841 403491 . - . gene_id "YIR024C"; gene_biotype "protein_coding"; +chrIX SGD transcript 402841 403491 . - . transcript_id "YIR024C_id001"; gene_id "YIR024C"; gene_name "INA22"; transcript_biotype "protein_coding"; +chrIX SGD exon 402841 403491 . - 0 transcript_id "YIR024C_id001"; gene_name "INA22"; gene_id "YIR024C"; +chrIX SGD gene 403615 404915 . + . gene_id "YIR025W"; gene_biotype "protein_coding"; +chrIX SGD transcript 403615 404915 . + . transcript_id "YIR025W_id003"; gene_id "YIR025W"; gene_name "MND2"; transcript_biotype "protein_coding"; +chrIX SGD exon 403615 404915 . + . transcript_id "YIR025W_id003"; gene_id "YIR025W"; gene_name "MND2"; +chrIX SGD transcript 403659 404765 . + . transcript_id "YIR025W_id001"; gene_id "YIR025W"; gene_name "MND2"; transcript_biotype "protein_coding"; +chrIX SGD exon 403659 404765 . + 0 transcript_id "YIR025W_id001"; gene_name "MND2"; gene_id "YIR025W"; +chrIX SGD gene 404617 405996 . - . gene_id "YIR026C"; gene_biotype "protein_coding"; +chrIX SGD transcript 404617 405996 . - . transcript_id "YIR026C_id001"; gene_id "YIR026C"; gene_name "YVH1"; transcript_biotype "protein_coding"; +chrIX SGD exon 404617 405996 . - . transcript_id "YIR026C_id001"; gene_id "YIR026C"; gene_name "YVH1"; +chrIX SGD transcript 404873 405967 . - . transcript_id "YIR026C_id003"; gene_id "YIR026C"; gene_name "YVH1"; transcript_biotype "protein_coding"; +chrIX SGD exon 404873 405967 . - 0 transcript_id "YIR026C_id003"; gene_name "YVH1"; gene_id "YIR026C"; +chrIX SGD gene 406260 407642 . - . gene_id "YIR027C"; gene_biotype "protein_coding"; +chrIX SGD transcript 406260 407642 . - . transcript_id "YIR027C_mRNA"; gene_id "YIR027C"; gene_name "DAL1"; transcript_biotype "protein_coding"; +chrIX SGD CDS 406260 407642 . - 0 transcript_id "YIR027C_mRNA"; gene_name "DAL1"; gene_id "YIR027C"; +chrIX SGD gene 408468 410375 . + . gene_id "YIR028W"; gene_biotype "protein_coding"; +chrIX SGD transcript 408468 410375 . + . transcript_id "YIR028W_mRNA"; gene_id "YIR028W"; gene_name "DAL4"; transcript_biotype "protein_coding"; +chrIX SGD CDS 408468 410375 . + 0 transcript_id "YIR028W_mRNA"; gene_name "DAL4"; gene_id "YIR028W"; +chrIX SGD gene 410653 412046 . + . gene_id "YIR029W"; gene_biotype "protein_coding"; +chrIX SGD transcript 410653 412046 . + . transcript_id "YIR029W_id001"; gene_id "YIR029W"; gene_name "DAL2"; transcript_biotype "protein_coding"; +chrIX SGD exon 410653 412046 . + . transcript_id "YIR029W_id001"; gene_id "YIR029W"; gene_name "DAL2"; +chrIX SGD transcript 410807 411838 . + . transcript_id "YIR029W_id002"; gene_id "YIR029W"; gene_name "DAL2"; transcript_biotype "protein_coding"; +chrIX SGD exon 410807 411838 . + 0 transcript_id "YIR029W_id002"; gene_name "DAL2"; gene_id "YIR029W"; +chrIX SGD gene 411982 412822 . - . gene_id "YIR030C"; gene_biotype "protein_coding"; +chrIX SGD transcript 411982 412822 . - . transcript_id "YIR030C_id010"; gene_id "YIR030C"; gene_name "DCG1"; transcript_biotype "protein_coding"; +chrIX SGD exon 411982 412822 . - . transcript_id "YIR030C_id010"; gene_id "YIR030C"; gene_name "DCG1"; +chrIX SGD transcript 412036 412770 . - . transcript_id "YIR030C_id001"; gene_id "YIR030C"; gene_name "DCG1"; transcript_biotype "protein_coding"; +chrIX SGD exon 412036 412770 . - 0 transcript_id "YIR030C_id001"; gene_name "DCG1"; gene_id "YIR030C"; +chrIX SGD gene 412899 413282 . + . gene_id "YIR030W-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 412899 413282 . + . transcript_id "YIR030W-A_mRNA"; gene_id "YIR030W-A"; transcript_biotype "protein_coding"; +chrIX SGD CDS 412899 413282 . + 0 transcript_id "YIR030W-A_mRNA"; gene_id "YIR030W-A"; +chrIX SGD gene 412950 414820 . - . gene_id "YIR031C"; gene_biotype "protein_coding"; +chrIX SGD transcript 412950 414820 . - . transcript_id "YIR031C_id005"; gene_id "YIR031C"; gene_name "DAL7"; transcript_biotype "protein_coding"; +chrIX SGD exon 412950 414820 . - . transcript_id "YIR031C_id005"; gene_id "YIR031C"; gene_name "DAL7"; +chrIX SGD transcript 413015 414679 . - . transcript_id "YIR031C_id001"; gene_id "YIR031C"; gene_name "DAL7"; transcript_biotype "protein_coding"; +chrIX SGD exon 413015 414679 . - 0 transcript_id "YIR031C_id001"; gene_name "DAL7"; gene_id "YIR031C"; +chrIX SGD gene 414883 415679 . - . gene_id "YIR032C"; gene_biotype "protein_coding"; +chrIX SGD transcript 414883 415679 . - . transcript_id "YIR032C_id001"; gene_id "YIR032C"; gene_name "DAL3"; transcript_biotype "protein_coding"; +chrIX SGD exon 414883 415679 . - . transcript_id "YIR032C_id001"; gene_id "YIR032C"; gene_name "DAL3"; +chrIX SGD transcript 415030 415617 . - . transcript_id "YIR032C_id003"; gene_id "YIR032C"; gene_name "DAL3"; transcript_biotype "protein_coding"; +chrIX SGD exon 415030 415617 . - 0 transcript_id "YIR032C_id003"; gene_name "DAL3"; gene_id "YIR032C"; +chrIX SGD gene 416068 419565 . + . gene_id "YIR033W"; gene_biotype "protein_coding"; +chrIX SGD transcript 416068 419565 . + . transcript_id "YIR033W_id002"; gene_id "YIR033W"; gene_name "MGA2"; transcript_biotype "protein_coding"; +chrIX SGD exon 416068 419565 . + . transcript_id "YIR033W_id002"; gene_id "YIR033W"; gene_name "MGA2"; +chrIX SGD transcript 416124 419465 . + . transcript_id "YIR033W_id001"; gene_id "YIR033W"; gene_name "MGA2"; transcript_biotype "protein_coding"; +chrIX SGD exon 416124 419465 . + 0 transcript_id "YIR033W_id001"; gene_name "MGA2"; gene_id "YIR033W"; +chrIX SGD gene 419444 420774 . - . gene_id "YIR034C"; gene_biotype "protein_coding"; +chrIX SGD transcript 419444 420774 . - . transcript_id "YIR034C_id001"; gene_id "YIR034C"; gene_name "LYS1"; transcript_biotype "protein_coding"; +chrIX SGD exon 419444 420774 . - . transcript_id "YIR034C_id001"; gene_id "YIR034C"; gene_name "LYS1"; +chrIX SGD transcript 419615 420736 . - . transcript_id "YIR034C_id005"; gene_id "YIR034C"; gene_name "LYS1"; transcript_biotype "protein_coding"; +chrIX SGD exon 419615 420736 . - 0 transcript_id "YIR034C_id005"; gene_name "LYS1"; gene_id "YIR034C"; +chrIX SGD gene 420946 422319 . - . gene_id "YIR035C"; gene_biotype "protein_coding"; +chrIX SGD transcript 420946 422319 . - . transcript_id "YIR035C_id004"; gene_id "YIR035C"; gene_name "NRE1"; transcript_biotype "protein_coding"; +chrIX SGD exon 420946 422319 . - . transcript_id "YIR035C_id004"; gene_id "YIR035C"; gene_name "NRE1"; +chrIX SGD transcript 421026 421790 . - . transcript_id "YIR035C_id001"; gene_id "YIR035C"; gene_name "NRE1"; transcript_biotype "protein_coding"; +chrIX SGD exon 421026 421790 . - 0 transcript_id "YIR035C_id001"; gene_name "NRE1"; gene_id "YIR035C"; +chrIX SGD gene 421810 422912 . - . gene_id "YIR036C"; gene_biotype "protein_coding"; +chrIX SGD transcript 421810 422912 . - . transcript_id "YIR036C_id002"; gene_id "YIR036C"; gene_name "IRC24"; transcript_biotype "protein_coding"; +chrIX SGD exon 421810 422912 . - . transcript_id "YIR036C_id002"; gene_id "YIR036C"; gene_name "IRC24"; +chrIX SGD transcript 422074 422865 . - . transcript_id "YIR036C_id001"; gene_id "YIR036C"; gene_name "IRC24"; transcript_biotype "protein_coding"; +chrIX SGD exon 422074 422865 . - 0 transcript_id "YIR036C_id001"; gene_name "IRC24"; gene_id "YIR036C"; +chrIX SGD gene 422635 423036 . + . gene_id "YIR036W-A"; gene_biotype "protein_coding"; +chrIX SGD transcript 422635 423036 . + . transcript_id "YIR036W-A_mRNA"; gene_id "YIR036W-A"; transcript_biotype "protein_coding"; +chrIX SGD CDS 422635 423036 . + 0 transcript_id "YIR036W-A_mRNA"; gene_id "YIR036W-A"; +chrIX SGD gene 423049 423850 . + . gene_id "YIR037W"; gene_biotype "protein_coding"; +chrIX SGD transcript 423049 423850 . + . transcript_id "YIR037W_id001"; gene_id "YIR037W"; gene_name "HYR1"; transcript_biotype "protein_coding"; +chrIX SGD exon 423049 423850 . + . transcript_id "YIR037W_id001"; gene_id "YIR037W"; gene_name "HYR1"; +chrIX SGD transcript 423128 423619 . + . transcript_id "YIR037W_id005"; gene_id "YIR037W"; gene_name "HYR1"; transcript_biotype "protein_coding"; +chrIX SGD exon 423128 423619 . + 0 transcript_id "YIR037W_id005"; gene_name "HYR1"; gene_id "YIR037W"; +chrIX SGD gene 423687 425265 . - . gene_id "YIR038C"; gene_biotype "protein_coding"; +chrIX SGD transcript 423687 425265 . - . transcript_id "YIR038C_id001"; gene_id "YIR038C"; gene_name "GTT1"; transcript_biotype "protein_coding"; +chrIX SGD exon 423687 425265 . - . transcript_id "YIR038C_id001"; gene_id "YIR038C"; gene_name "GTT1"; +chrIX SGD transcript 423809 424513 . - . transcript_id "YIR038C_id002"; gene_id "YIR038C"; gene_name "GTT1"; transcript_biotype "protein_coding"; +chrIX SGD exon 423809 424513 . - 0 transcript_id "YIR038C_id002"; gene_name "GTT1"; gene_id "YIR038C"; +chrIX SGD gene 430339 432364 . - . gene_id "YIR039C"; gene_biotype "protein_coding"; +chrIX SGD transcript 430339 432364 . - . transcript_id "YIR039C_id001"; gene_id "YIR039C"; gene_name "YPS6"; transcript_biotype "protein_coding"; +chrIX SGD exon 430339 432364 . - . transcript_id "YIR039C_id001"; gene_id "YIR039C"; gene_name "YPS6"; +chrIX SGD transcript 430498 432111 . - . transcript_id "YIR039C_id003"; gene_id "YIR039C"; gene_name "YPS6"; transcript_biotype "protein_coding"; +chrIX SGD exon 430498 432111 . - 0 transcript_id "YIR039C_id003"; gene_name "YPS6"; gene_id "YIR039C"; +chrIX SGD gene 432511 434436 . + . gene_id "YIR041W"; gene_biotype "protein_coding"; +chrIX SGD transcript 432511 434436 . + . transcript_id "YIR041W_id001"; gene_id "YIR041W"; gene_name "PAU15"; transcript_biotype "protein_coding"; +chrIX SGD exon 432511 434436 . + . transcript_id "YIR041W_id001"; gene_id "YIR041W"; gene_name "PAU15"; +chrIX SGD gene 433389 433721 . - . gene_id "YIR040C"; gene_biotype "protein_coding"; +chrIX SGD transcript 433389 433721 . - . transcript_id "YIR040C_mRNA"; gene_id "YIR040C"; transcript_biotype "protein_coding"; +chrIX SGD CDS 433389 433721 . - 0 transcript_id "YIR040C_mRNA"; gene_id "YIR040C"; +chrIX SGD transcript 433929 434303 . + . transcript_id "YIR041W_id002"; gene_id "YIR041W"; gene_name "PAU15"; transcript_biotype "protein_coding"; +chrIX SGD exon 433929 434303 . + 0 transcript_id "YIR041W_id002"; gene_name "PAU15"; gene_id "YIR041W"; +chrIX SGD gene 434894 436253 . - . gene_id "YIR042C"; gene_biotype "protein_coding"; +chrIX SGD transcript 434894 436253 . - . transcript_id "YIR042C_id001"; gene_id "YIR042C"; transcript_biotype "protein_coding"; +chrIX SGD exon 434894 436253 . - . transcript_id "YIR042C_id001"; gene_id "YIR042C"; +chrIX SGD transcript 435273 435983 . - . transcript_id "YIR042C_id005"; gene_id "YIR042C"; transcript_biotype "protein_coding"; +chrIX SGD exon 435273 435983 . - 0 transcript_id "YIR042C_id005"; gene_id "YIR042C"; +chrX SGD gene 466 6130 . - . gene_id "YJL225C"; gene_biotype "protein_coding"; +chrX SGD transcript 466 6130 . - . transcript_id "YJL225C_mRNA"; gene_id "YJL225C"; transcript_biotype "protein_coding"; +chrX SGD CDS 466 4581 . - 0 transcript_id "YJL225C_mRNA"; gene_id "YJL225C"; +chrX SGD CDS 4970 6130 . - 0 transcript_id "YJL225C_mRNA"; gene_id "YJL225C"; +chrX SGD gene 829 1311 . + . gene_id "YJL225W-A"; gene_biotype "protein_coding"; +chrX SGD transcript 829 1311 . + . transcript_id "YJL225W-A_mRNA"; gene_id "YJL225W-A"; transcript_biotype "protein_coding"; +chrX SGD CDS 829 1311 . + 0 transcript_id "YJL225W-A_mRNA"; gene_id "YJL225W-A"; +chrX SGD gene 8776 9138 . - . gene_id "YJL223C"; gene_biotype "protein_coding"; +chrX SGD transcript 8776 9138 . - . transcript_id "YJL223C_mRNA"; gene_id "YJL223C"; gene_name "PAU1"; transcript_biotype "protein_coding"; +chrX SGD CDS 8776 9138 . - 0 transcript_id "YJL223C_mRNA"; gene_name "PAU1"; gene_id "YJL223C"; +chrX SGD gene 9346 9483 . + . gene_id "YJL222W-B"; gene_biotype "protein_coding"; +chrX SGD transcript 9346 9483 . + . transcript_id "YJL222W-B_mRNA"; gene_id "YJL222W-B"; transcript_biotype "protein_coding"; +chrX SGD CDS 9346 9483 . + 0 transcript_id "YJL222W-B_mRNA"; gene_id "YJL222W-B"; +chrX SGD gene 9452 9679 . + . gene_id "YJL222W-A"; gene_biotype "protein_coding"; +chrX SGD transcript 9452 9679 . + . transcript_id "YJL222W-A_mRNA"; gene_id "YJL222W-A"; transcript_biotype "protein_coding"; +chrX SGD CDS 9452 9679 . + 0 transcript_id "YJL222W-A_mRNA"; gene_id "YJL222W-A"; +chrX SGD gene 11475 16124 . + . gene_id "YJL222W"; gene_biotype "protein_coding"; +chrX SGD transcript 11475 16124 . + . transcript_id "YJL222W_mRNA"; gene_id "YJL222W"; gene_name "VTH2"; transcript_biotype "protein_coding"; +chrX SGD CDS 11475 16124 . + 0 transcript_id "YJL222W_mRNA"; gene_name "VTH2"; gene_id "YJL222W"; +chrX SGD gene 16767 18536 . - . gene_id "YJL221C"; gene_biotype "protein_coding"; +chrX SGD transcript 16767 18536 . - . transcript_id "YJL221C_mRNA"; gene_id "YJL221C"; gene_name "IMA4"; transcript_biotype "protein_coding"; +chrX SGD CDS 16767 18536 . - 0 transcript_id "YJL221C_mRNA"; gene_name "IMA4"; gene_id "YJL221C"; +chrX SGD gene 18243 18695 . + . gene_id "YJL220W"; gene_biotype "protein_coding"; +chrX SGD transcript 18243 18695 . + . transcript_id "YJL220W_mRNA"; gene_id "YJL220W"; transcript_biotype "protein_coding"; +chrX SGD CDS 18243 18695 . + 0 transcript_id "YJL220W_mRNA"; gene_id "YJL220W"; +chrX SGD gene 19497 21200 . + . gene_id "YJL219W"; gene_biotype "protein_coding"; +chrX SGD transcript 19497 21200 . + . transcript_id "YJL219W_mRNA"; gene_id "YJL219W"; gene_name "HXT9"; transcript_biotype "protein_coding"; +chrX SGD CDS 19497 21200 . + 0 transcript_id "YJL219W_mRNA"; gene_name "HXT9"; gene_id "YJL219W"; +chrX SGD gene 21866 22711 . + . gene_id "YJL218W"; gene_biotype "protein_coding"; +chrX SGD transcript 21866 22711 . + . transcript_id "YJL218W_id003"; gene_id "YJL218W"; transcript_biotype "protein_coding"; +chrX SGD exon 21866 22711 . + . transcript_id "YJL218W_id003"; gene_id "YJL218W"; +chrX SGD transcript 21973 22563 . + . transcript_id "YJL218W_id001"; gene_id "YJL218W"; transcript_biotype "protein_coding"; +chrX SGD exon 21973 22563 . + 0 transcript_id "YJL218W_id001"; gene_id "YJL218W"; +chrX SGD gene 23032 23911 . + . gene_id "YJL217W"; gene_biotype "protein_coding"; +chrX SGD transcript 23032 23911 . + . transcript_id "YJL217W_id004"; gene_id "YJL217W"; gene_name "REE1"; transcript_biotype "protein_coding"; +chrX SGD exon 23032 23911 . + . transcript_id "YJL217W_id004"; gene_id "YJL217W"; gene_name "REE1"; +chrX SGD transcript 23133 23729 . + . transcript_id "YJL217W_id001"; gene_id "YJL217W"; gene_name "REE1"; transcript_biotype "protein_coding"; +chrX SGD exon 23133 23729 . + 0 transcript_id "YJL217W_id001"; gene_name "REE1"; gene_id "YJL217W"; +chrX SGD gene 24341 26086 . - . gene_id "YJL216C"; gene_biotype "protein_coding"; +chrX SGD transcript 24341 26086 . - . transcript_id "YJL216C_mRNA"; gene_id "YJL216C"; gene_name "IMA5"; transcript_biotype "protein_coding"; +chrX SGD CDS 24341 26086 . - 0 transcript_id "YJL216C_mRNA"; gene_name "IMA5"; gene_id "YJL216C"; +chrX SGD gene 26084 28241 . - . gene_id "YJL215C"; gene_biotype "protein_coding"; +chrX SGD transcript 26084 28241 . - . transcript_id "YJL215C_id002"; gene_id "YJL215C"; transcript_biotype "protein_coding"; +chrX SGD exon 26084 28241 . - . transcript_id "YJL215C_id002"; gene_id "YJL215C"; +chrX SGD transcript 26412 26771 . - . transcript_id "YJL215C_id001"; gene_id "YJL215C"; transcript_biotype "protein_coding"; +chrX SGD exon 26412 26771 . - 0 transcript_id "YJL215C_id001"; gene_id "YJL215C"; +chrX SGD gene 26887 28596 . + . gene_id "YJL214W"; gene_biotype "protein_coding"; +chrX SGD transcript 26887 28596 . + . transcript_id "YJL214W_mRNA"; gene_id "YJL214W"; gene_name "HXT8"; transcript_biotype "protein_coding"; +chrX SGD CDS 26887 28596 . + 0 transcript_id "YJL214W_mRNA"; gene_name "HXT8"; gene_id "YJL214W"; +chrX SGD gene 31868 33496 . + . gene_id "YJL213W"; gene_biotype "protein_coding"; +chrX SGD transcript 31868 33496 . + . transcript_id "YJL213W_id001"; gene_id "YJL213W"; transcript_biotype "protein_coding"; +chrX SGD exon 31868 33496 . + . transcript_id "YJL213W_id001"; gene_id "YJL213W"; +chrX SGD transcript 32163 33158 . + . transcript_id "YJL213W_id002"; gene_id "YJL213W"; transcript_biotype "protein_coding"; +chrX SGD exon 32163 33158 . + 0 transcript_id "YJL213W_id002"; gene_id "YJL213W"; +chrX SGD gene 33610 36281 . - . gene_id "YJL212C"; gene_biotype "protein_coding"; +chrX SGD transcript 33610 36281 . - . transcript_id "YJL212C_id002"; gene_id "YJL212C"; gene_name "OPT1"; transcript_biotype "protein_coding"; +chrX SGD exon 33610 36281 . - . transcript_id "YJL212C_id002"; gene_id "YJL212C"; gene_name "OPT1"; +chrX SGD transcript 33850 36249 . - . transcript_id "YJL212C_id001"; gene_id "YJL212C"; gene_name "OPT1"; transcript_biotype "protein_coding"; +chrX SGD exon 33850 36249 . - 0 transcript_id "YJL212C_id001"; gene_name "OPT1"; gene_id "YJL212C"; +chrX SGD gene 36237 37424 . - . gene_id "YJL211C"; gene_biotype "protein_coding"; +chrX SGD transcript 36237 37424 . - . transcript_id "YJL211C_id002"; gene_id "YJL211C"; transcript_biotype "protein_coding"; +chrX SGD exon 36237 37424 . - . transcript_id "YJL211C_id002"; gene_id "YJL211C"; +chrX SGD gene 36690 37817 . + . gene_id "YJL210W"; gene_biotype "protein_coding"; +chrX SGD transcript 36690 37817 . + . transcript_id "YJL210W_id005"; gene_id "YJL210W"; gene_name "PEX2"; transcript_biotype "protein_coding"; +chrX SGD exon 36690 37817 . + . transcript_id "YJL210W_id005"; gene_id "YJL210W"; gene_name "PEX2"; +chrX SGD transcript 36757 37200 . - . transcript_id "YJL211C_id001"; gene_id "YJL211C"; transcript_biotype "protein_coding"; +chrX SGD exon 36757 37200 . - 0 transcript_id "YJL211C_id001"; gene_id "YJL211C"; +chrX SGD transcript 36919 37734 . + . transcript_id "YJL210W_id001"; gene_id "YJL210W"; gene_name "PEX2"; transcript_biotype "protein_coding"; +chrX SGD exon 36919 37734 . + 0 transcript_id "YJL210W_id001"; gene_name "PEX2"; gene_id "YJL210W"; +chrX SGD gene 37939 40067 . + . gene_id "YJL209W"; gene_biotype "protein_coding"; +chrX SGD transcript 37939 40067 . + . transcript_id "YJL209W_id001"; gene_id "YJL209W"; gene_name "CBP1"; transcript_biotype "protein_coding"; +chrX SGD exon 37939 40067 . + . transcript_id "YJL209W_id001"; gene_id "YJL209W"; gene_name "CBP1"; +chrX SGD transcript 38005 39969 . + . transcript_id "YJL209W_id003"; gene_id "YJL209W"; gene_name "CBP1"; transcript_biotype "protein_coding"; +chrX SGD exon 38005 39969 . + 0 transcript_id "YJL209W_id003"; gene_name "CBP1"; gene_id "YJL209W"; +chrX SGD gene 39910 41251 . - . gene_id "YJL208C"; gene_biotype "protein_coding"; +chrX SGD transcript 39910 41251 . - . transcript_id "YJL208C_id006"; gene_id "YJL208C"; gene_name "NUC1"; transcript_biotype "protein_coding"; +chrX SGD exon 39910 41251 . - . transcript_id "YJL208C_id006"; gene_id "YJL208C"; gene_name "NUC1"; +chrX SGD transcript 40194 41183 . - . transcript_id "YJL208C_id001"; gene_id "YJL208C"; gene_name "NUC1"; transcript_biotype "protein_coding"; +chrX SGD exon 40194 41183 . - 0 transcript_id "YJL208C_id001"; gene_name "NUC1"; gene_id "YJL208C"; +chrX SGD gene 41389 47433 . - . gene_id "YJL207C"; gene_biotype "protein_coding"; +chrX SGD transcript 41389 47433 . - . transcript_id "YJL207C_mRNA"; gene_id "YJL207C"; gene_name "LAA1"; transcript_biotype "protein_coding"; +chrX SGD CDS 41389 47433 . - 0 transcript_id "YJL207C_mRNA"; gene_name "LAA1"; gene_id "YJL207C"; +chrX SGD gene 47659 49935 . - . gene_id "YJL206C"; gene_biotype "protein_coding"; +chrX SGD transcript 47659 49935 . - . transcript_id "YJL206C_mRNA"; gene_id "YJL206C"; transcript_biotype "protein_coding"; +chrX SGD CDS 47659 49935 . - 0 transcript_id "YJL206C_mRNA"; gene_id "YJL206C"; +chrX SGD gene 50064 51336 . - . gene_id "YJL205C"; gene_biotype "protein_coding"; +chrX SGD transcript 50064 51336 . - . transcript_id "YJL205C_id001"; gene_id "YJL205C"; gene_name "NCE101"; transcript_biotype "protein_coding"; +chrX SGD exon 50064 51336 . - . transcript_id "YJL205C_id001"; gene_id "YJL205C"; gene_name "NCE101"; +chrX SGD transcript 50139 50443 . - . transcript_id "YJL205C_id002"; gene_id "YJL205C"; gene_name "NCE101"; transcript_biotype "protein_coding"; +chrX SGD exon 50139 50268 . - 1 transcript_id "YJL205C_id002"; gene_name "NCE101"; gene_id "YJL205C"; +chrX SGD exon 50412 50443 . - 0 transcript_id "YJL205C_id002"; gene_name "NCE101"; gene_id "YJL205C"; +chrX SGD gene 50629 53151 . - . gene_id "YJL204C"; gene_biotype "protein_coding"; +chrX SGD transcript 50629 53151 . - . transcript_id "YJL204C_mRNA"; gene_id "YJL204C"; gene_name "RCY1"; transcript_biotype "protein_coding"; +chrX SGD CDS 50629 53151 . - 0 transcript_id "YJL204C_mRNA"; gene_name "RCY1"; gene_id "YJL204C"; +chrX SGD gene 53095 54465 . + . gene_id "YJL203W"; gene_biotype "protein_coding"; +chrX SGD transcript 53095 54465 . + . transcript_id "YJL203W_id001"; gene_id "YJL203W"; gene_name "PRP21"; transcript_biotype "protein_coding"; +chrX SGD exon 53095 54465 . + . transcript_id "YJL203W_id001"; gene_id "YJL203W"; gene_name "PRP21"; +chrX SGD transcript 53341 54183 . + . transcript_id "YJL203W_id004"; gene_id "YJL203W"; gene_name "PRP21"; transcript_biotype "protein_coding"; +chrX SGD exon 53341 54183 . + 0 transcript_id "YJL203W_id004"; gene_name "PRP21"; gene_id "YJL203W"; +chrX SGD gene 53943 54290 . - . gene_id "YJL202C"; gene_biotype "protein_coding"; +chrX SGD transcript 53943 54290 . - . transcript_id "YJL202C_mRNA"; gene_id "YJL202C"; transcript_biotype "protein_coding"; +chrX SGD CDS 53943 54290 . - 0 transcript_id "YJL202C_mRNA"; gene_id "YJL202C"; +chrX SGD gene 54294 56359 . + . gene_id "YJL201W"; gene_biotype "protein_coding"; +chrX SGD transcript 54294 56359 . + . transcript_id "YJL201W_id001"; gene_id "YJL201W"; gene_name "ECM25"; transcript_biotype "protein_coding"; +chrX SGD exon 54294 56359 . + . transcript_id "YJL201W_id001"; gene_id "YJL201W"; gene_name "ECM25"; +chrX SGD transcript 54379 56178 . + . transcript_id "YJL201W_id004"; gene_id "YJL201W"; gene_name "ECM25"; transcript_biotype "protein_coding"; +chrX SGD exon 54379 56178 . + 0 transcript_id "YJL201W_id004"; gene_name "ECM25"; gene_id "YJL201W"; +chrX SGD gene 56291 58939 . - . gene_id "YJL200C"; gene_biotype "protein_coding"; +chrX SGD transcript 56291 58939 . - . transcript_id "YJL200C_id001"; gene_id "YJL200C"; gene_name "ACO2"; transcript_biotype "protein_coding"; +chrX SGD exon 56291 58939 . - . transcript_id "YJL200C_id001"; gene_id "YJL200C"; gene_name "ACO2"; +chrX SGD transcript 56444 58813 . - . transcript_id "YJL200C_id002"; gene_id "YJL200C"; gene_name "ACO2"; transcript_biotype "protein_coding"; +chrX SGD exon 56444 58813 . - 0 transcript_id "YJL200C_id002"; gene_name "ACO2"; gene_id "YJL200C"; +chrX SGD gene 59100 59172 . - . gene_id "YNCJ0001C"; gene_biotype "ncRNA"; +chrX SGD transcript 59100 59172 . - . transcript_id "YNCJ0001C_tRNA"; gene_id "YNCJ0001C"; transcript_biotype "ncRNA"; +chrX SGD exon 59100 59172 . - . transcript_id "YNCJ0001C_tRNA"; gene_id "YNCJ0001C"; +chrX SGD gene 59597 60549 . - . gene_id "YJL199C"; gene_biotype "protein_coding"; +chrX SGD transcript 59597 60549 . - . transcript_id "YJL199C_id001"; gene_id "YJL199C"; gene_name "MBB1"; transcript_biotype "protein_coding"; +chrX SGD exon 59597 60549 . - . transcript_id "YJL199C_id001"; gene_id "YJL199C"; gene_name "MBB1"; +chrX SGD transcript 59856 60182 . - . transcript_id "YJL199C_id002"; gene_id "YJL199C"; gene_name "MBB1"; transcript_biotype "protein_coding"; +chrX SGD exon 59856 60182 . - 0 transcript_id "YJL199C_id002"; gene_name "MBB1"; gene_id "YJL199C"; +chrX SGD gene 60822 63655 . + . gene_id "YJL198W"; gene_biotype "protein_coding"; +chrX SGD transcript 60822 63655 . + . transcript_id "YJL198W_id001"; gene_id "YJL198W"; gene_name "PHO90"; transcript_biotype "protein_coding"; +chrX SGD exon 60822 63655 . + . transcript_id "YJL198W_id001"; gene_id "YJL198W"; gene_name "PHO90"; +chrX SGD transcript 60844 63489 . + . transcript_id "YJL198W_id002"; gene_id "YJL198W"; gene_name "PHO90"; transcript_biotype "protein_coding"; +chrX SGD exon 60844 63489 . + 0 transcript_id "YJL198W_id002"; gene_name "PHO90"; gene_id "YJL198W"; +chrX SGD gene 63805 67569 . + . gene_id "YJL197W"; gene_biotype "protein_coding"; +chrX SGD transcript 63805 67569 . + . transcript_id "YJL197W_id001"; gene_id "YJL197W"; gene_name "UBP12"; transcript_biotype "protein_coding"; +chrX SGD exon 63805 67569 . + 0 transcript_id "YJL197W_id001"; gene_name "UBP12"; gene_id "YJL197W"; +chrX SGD gene 65805 66086 . - . gene_id "YJL197C-A"; gene_biotype "protein_coding"; +chrX SGD transcript 65805 66086 . - . transcript_id "YJL197C-A_mRNA"; gene_id "YJL197C-A"; transcript_biotype "protein_coding"; +chrX SGD CDS 65805 66086 . - 0 transcript_id "YJL197C-A_mRNA"; gene_id "YJL197C-A"; +chrX SGD gene 67715 68976 . - . gene_id "YJL196C"; gene_biotype "protein_coding"; +chrX SGD transcript 67715 68976 . - . transcript_id "YJL196C_id001"; gene_id "YJL196C"; gene_name "ELO1"; transcript_biotype "protein_coding"; +chrX SGD exon 67715 68976 . - . transcript_id "YJL196C_id001"; gene_id "YJL196C"; gene_name "ELO1"; +chrX SGD transcript 67850 68782 . - . transcript_id "YJL196C_id003"; gene_id "YJL196C"; gene_name "ELO1"; transcript_biotype "protein_coding"; +chrX SGD exon 67850 68782 . - 0 transcript_id "YJL196C_id003"; gene_name "ELO1"; gene_id "YJL196C"; +chrX SGD gene 69241 69942 . - . gene_id "YJL195C"; gene_biotype "protein_coding"; +chrX SGD transcript 69241 69942 . - . transcript_id "YJL195C_mRNA"; gene_id "YJL195C"; transcript_biotype "protein_coding"; +chrX SGD CDS 69241 69942 . - 0 transcript_id "YJL195C_mRNA"; gene_id "YJL195C"; +chrX SGD gene 69312 71016 . + . gene_id "YJL194W"; gene_biotype "protein_coding"; +chrX SGD transcript 69312 71016 . + . transcript_id "YJL194W_id002"; gene_id "YJL194W"; gene_name "CDC6"; transcript_biotype "protein_coding"; +chrX SGD exon 69312 71016 . + . transcript_id "YJL194W_id002"; gene_id "YJL194W"; gene_name "CDC6"; +chrX SGD transcript 69338 70879 . + . transcript_id "YJL194W_id001"; gene_id "YJL194W"; gene_name "CDC6"; transcript_biotype "protein_coding"; +chrX SGD exon 69338 70879 . + 0 transcript_id "YJL194W_id001"; gene_name "CDC6"; gene_id "YJL194W"; +chrX SGD gene 71347 72727 . + . gene_id "YJL193W"; gene_biotype "protein_coding"; +chrX SGD transcript 71347 72727 . + . transcript_id "YJL193W_id003"; gene_id "YJL193W"; transcript_biotype "protein_coding"; +chrX SGD exon 71347 72727 . + . transcript_id "YJL193W_id003"; gene_id "YJL193W"; +chrX SGD transcript 71366 72574 . + . transcript_id "YJL193W_id001"; gene_id "YJL193W"; transcript_biotype "protein_coding"; +chrX SGD exon 71366 72574 . + 0 transcript_id "YJL193W_id001"; gene_id "YJL193W"; +chrX SGD gene 72562 73448 . - . gene_id "YJL192C"; gene_biotype "protein_coding"; +chrX SGD transcript 72562 73448 . - . transcript_id "YJL192C_id006"; gene_id "YJL192C"; gene_name "SOP4"; transcript_biotype "protein_coding"; +chrX SGD exon 72562 73448 . - . transcript_id "YJL192C_id006"; gene_id "YJL192C"; gene_name "SOP4"; +chrX SGD transcript 72710 73414 . - . transcript_id "YJL192C_id001"; gene_id "YJL192C"; gene_name "SOP4"; transcript_biotype "protein_coding"; +chrX SGD exon 72710 73414 . - 0 transcript_id "YJL192C_id001"; gene_name "SOP4"; gene_id "YJL192C"; +chrX SGD gene 73736 74853 . + . gene_id "YJL191W"; gene_biotype "protein_coding"; +chrX SGD transcript 73736 74853 . + . transcript_id "YJL191W_id005"; gene_id "YJL191W"; gene_name "RPS14B"; transcript_biotype "protein_coding"; +chrX SGD exon 73736 74853 . + . transcript_id "YJL191W_id005"; gene_id "YJL191W"; gene_name "RPS14B"; +chrX SGD transcript 73787 74611 . + . transcript_id "YJL191W_id001"; gene_id "YJL191W"; gene_name "RPS14B"; transcript_biotype "protein_coding"; +chrX SGD exon 73787 73796 . + 0 transcript_id "YJL191W_id001"; gene_name "RPS14B"; gene_id "YJL191W"; +chrX SGD exon 74205 74611 . + 2 transcript_id "YJL191W_id001"; gene_name "RPS14B"; gene_id "YJL191W"; +chrX SGD gene 74632 75318 . - . gene_id "YJL190C"; gene_biotype "protein_coding"; +chrX SGD transcript 74632 75318 . - . transcript_id "YJL190C_id001"; gene_id "YJL190C"; gene_name "RPS22A"; transcript_biotype "protein_coding"; +chrX SGD exon 74632 75318 . - . transcript_id "YJL190C_id001"; gene_id "YJL190C"; gene_name "RPS22A"; +chrX SGD transcript 74910 75302 . - . transcript_id "YJL190C_id003"; gene_id "YJL190C"; gene_name "RPS22A"; transcript_biotype "protein_coding"; +chrX SGD exon 74910 75302 . - 0 transcript_id "YJL190C_id003"; gene_name "RPS22A"; gene_id "YJL190C"; +chrX SGD gene 75898 76613 . + . gene_id "YJL189W"; gene_biotype "protein_coding"; +chrX SGD transcript 75898 76613 . + . transcript_id "YJL189W_id004"; gene_id "YJL189W"; gene_name "RPL39"; transcript_biotype "protein_coding"; +chrX SGD exon 75898 76613 . + . transcript_id "YJL189W_id004"; gene_id "YJL189W"; gene_name "RPL39"; +chrX SGD transcript 75933 76474 . + . transcript_id "YJL189W_id001"; gene_id "YJL189W"; gene_name "RPL39"; transcript_biotype "protein_coding"; +chrX SGD exon 75933 75938 . + 0 transcript_id "YJL189W_id001"; gene_name "RPL39"; gene_id "YJL189W"; +chrX SGD exon 76325 76474 . + 0 transcript_id "YJL189W_id001"; gene_name "RPL39"; gene_id "YJL189W"; +chrX SGD gene 76202 76510 . - . gene_id "YJL188C"; gene_biotype "protein_coding"; +chrX SGD transcript 76202 76510 . - . transcript_id "YJL188C_mRNA"; gene_id "YJL188C"; gene_name "BUD19"; transcript_biotype "protein_coding"; +chrX SGD CDS 76202 76510 . - 0 transcript_id "YJL188C_mRNA"; gene_name "BUD19"; gene_id "YJL188C"; +chrX SGD gene 76803 79262 . - . gene_id "YJL187C"; gene_biotype "protein_coding"; +chrX SGD transcript 76803 79262 . - . transcript_id "YJL187C_id001"; gene_id "YJL187C"; gene_name "SWE1"; transcript_biotype "protein_coding"; +chrX SGD exon 76803 79262 . - 0 transcript_id "YJL187C_id001"; gene_name "SWE1"; gene_id "YJL187C"; +chrX SGD gene 79730 82033 . + . gene_id "YJL186W"; gene_biotype "protein_coding"; +chrX SGD transcript 79730 82033 . + . transcript_id "YJL186W_id001"; gene_id "YJL186W"; gene_name "MNN5"; transcript_biotype "protein_coding"; +chrX SGD exon 79730 82033 . + . transcript_id "YJL186W_id001"; gene_id "YJL186W"; gene_name "MNN5"; +chrX SGD transcript 80155 81915 . + . transcript_id "YJL186W_id003"; gene_id "YJL186W"; gene_name "MNN5"; transcript_biotype "protein_coding"; +chrX SGD exon 80155 81915 . + 0 transcript_id "YJL186W_id003"; gene_name "MNN5"; gene_id "YJL186W"; +chrX SGD gene 81903 83039 . - . gene_id "YJL185C"; gene_biotype "protein_coding"; +chrX SGD transcript 81903 83039 . - . transcript_id "YJL185C_id006"; gene_id "YJL185C"; gene_name "ATG36"; transcript_biotype "protein_coding"; +chrX SGD exon 81903 83039 . - . transcript_id "YJL185C_id006"; gene_id "YJL185C"; gene_name "ATG36"; +chrX SGD transcript 82095 82976 . - . transcript_id "YJL185C_id001"; gene_id "YJL185C"; gene_name "ATG36"; transcript_biotype "protein_coding"; +chrX SGD exon 82095 82976 . - 0 transcript_id "YJL185C_id001"; gene_name "ATG36"; gene_id "YJL185C"; +chrX SGD gene 83210 83907 . + . gene_id "YJL184W"; gene_biotype "protein_coding"; +chrX SGD transcript 83210 83907 . + . transcript_id "YJL184W_id003"; gene_id "YJL184W"; gene_name "GON7"; transcript_biotype "protein_coding"; +chrX SGD exon 83210 83907 . + . transcript_id "YJL184W_id003"; gene_id "YJL184W"; gene_name "GON7"; +chrX SGD transcript 83448 83819 . + . transcript_id "YJL184W_id001"; gene_id "YJL184W"; gene_name "GON7"; transcript_biotype "protein_coding"; +chrX SGD exon 83448 83819 . + 0 transcript_id "YJL184W_id001"; gene_name "GON7"; gene_id "YJL184W"; +chrX SGD gene 83790 85425 . + . gene_id "YJL183W"; gene_biotype "protein_coding"; +chrX SGD transcript 83790 85425 . + . transcript_id "YJL183W_id001"; gene_id "YJL183W"; gene_name "MNN11"; transcript_biotype "protein_coding"; +chrX SGD exon 83790 85425 . + . transcript_id "YJL183W_id001"; gene_id "YJL183W"; gene_name "MNN11"; +chrX SGD transcript 84068 85336 . + . transcript_id "YJL183W_id007"; gene_id "YJL183W"; gene_name "MNN11"; transcript_biotype "protein_coding"; +chrX SGD exon 84068 85336 . + 0 transcript_id "YJL183W_id007"; gene_name "MNN11"; gene_id "YJL183W"; +chrX SGD gene 85435 85752 . - . gene_id "YJL182C"; gene_biotype "protein_coding"; +chrX SGD transcript 85435 85752 . - . transcript_id "YJL182C_mRNA"; gene_id "YJL182C"; transcript_biotype "protein_coding"; +chrX SGD CDS 85435 85752 . - 0 transcript_id "YJL182C_mRNA"; gene_id "YJL182C"; +chrX SGD gene 85616 87579 . + . gene_id "YJL181W"; gene_biotype "protein_coding"; +chrX SGD transcript 85616 87579 . + . transcript_id "YJL181W_id004"; gene_id "YJL181W"; gene_name "RBH1"; transcript_biotype "protein_coding"; +chrX SGD exon 85616 87579 . + . transcript_id "YJL181W_id004"; gene_id "YJL181W"; gene_name "RBH1"; +chrX SGD transcript 85660 87495 . + . transcript_id "YJL181W_id001"; gene_id "YJL181W"; gene_name "RBH1"; transcript_biotype "protein_coding"; +chrX SGD exon 85660 87495 . + 0 transcript_id "YJL181W_id001"; gene_name "RBH1"; gene_id "YJL181W"; +chrX SGD gene 87481 88627 . - . gene_id "YJL180C"; gene_biotype "protein_coding"; +chrX SGD transcript 87481 88627 . - . transcript_id "YJL180C_id002"; gene_id "YJL180C"; gene_name "ATP12"; transcript_biotype "protein_coding"; +chrX SGD exon 87481 88627 . - . transcript_id "YJL180C_id002"; gene_id "YJL180C"; gene_name "ATP12"; +chrX SGD transcript 87583 88560 . - . transcript_id "YJL180C_id001"; gene_id "YJL180C"; gene_name "ATP12"; transcript_biotype "protein_coding"; +chrX SGD exon 87583 88560 . - 0 transcript_id "YJL180C_id001"; gene_name "ATP12"; gene_id "YJL180C"; +chrX SGD gene 88730 89334 . + . gene_id "YJL179W"; gene_biotype "protein_coding"; +chrX SGD transcript 88730 89334 . + . transcript_id "YJL179W_id004"; gene_id "YJL179W"; gene_name "PFD1"; transcript_biotype "protein_coding"; +chrX SGD exon 88730 89334 . + . transcript_id "YJL179W_id004"; gene_id "YJL179W"; gene_name "PFD1"; +chrX SGD transcript 88787 89116 . + . transcript_id "YJL179W_id001"; gene_id "YJL179W"; gene_name "PFD1"; transcript_biotype "protein_coding"; +chrX SGD exon 88787 89116 . + 0 transcript_id "YJL179W_id001"; gene_name "PFD1"; gene_id "YJL179W"; +chrX SGD gene 89159 90142 . - . gene_id "YJL178C"; gene_biotype "protein_coding"; +chrX SGD transcript 89159 90142 . - . transcript_id "YJL178C_id003"; gene_id "YJL178C"; gene_name "ATG27"; transcript_biotype "protein_coding"; +chrX SGD exon 89159 90142 . - . transcript_id "YJL178C_id003"; gene_id "YJL178C"; gene_name "ATG27"; +chrX SGD transcript 89282 90097 . - . transcript_id "YJL178C_id001"; gene_id "YJL178C"; gene_name "ATG27"; transcript_biotype "protein_coding"; +chrX SGD exon 89282 90097 . - 0 transcript_id "YJL178C_id001"; gene_name "ATG27"; gene_id "YJL178C"; +chrX SGD gene 90695 91915 . + . gene_id "YJL177W"; gene_biotype "protein_coding"; +chrX SGD transcript 90695 91915 . + . transcript_id "YJL177W_id002"; gene_id "YJL177W"; gene_name "RPL17B"; transcript_biotype "protein_coding"; +chrX SGD exon 90695 91915 . + . transcript_id "YJL177W_id002"; gene_id "YJL177W"; gene_name "RPL17B"; +chrX SGD transcript 90786 91657 . + . transcript_id "YJL177W_id001"; gene_id "YJL177W"; gene_name "RPL17B"; transcript_biotype "protein_coding"; +chrX SGD exon 90786 91094 . + 0 transcript_id "YJL177W_id001"; gene_name "RPL17B"; gene_id "YJL177W"; +chrX SGD exon 91412 91657 . + 0 transcript_id "YJL177W_id001"; gene_name "RPL17B"; gene_id "YJL177W"; +chrX SGD gene 91763 94976 . + . gene_id "YJL175W"; gene_biotype "protein_coding"; +chrX SGD transcript 91763 94976 . + . transcript_id "YJL175W_id002"; gene_id "YJL175W"; transcript_biotype "protein_coding"; +chrX SGD exon 91763 94976 . + . transcript_id "YJL175W_id002"; gene_id "YJL175W"; +chrX SGD gene 91826 94593 . - . gene_id "YJL176C"; gene_biotype "protein_coding"; +chrX SGD transcript 91826 94593 . - . transcript_id "YJL176C_id003"; gene_id "YJL176C"; gene_name "SWI3"; transcript_biotype "protein_coding"; +chrX SGD exon 91826 94593 . - . transcript_id "YJL176C_id003"; gene_id "YJL176C"; gene_name "SWI3"; +chrX SGD transcript 92053 94530 . - . transcript_id "YJL176C_id001"; gene_id "YJL176C"; gene_name "SWI3"; transcript_biotype "protein_coding"; +chrX SGD exon 92053 94530 . - 0 transcript_id "YJL176C_id001"; gene_name "SWI3"; gene_id "YJL176C"; +chrX SGD transcript 94049 94561 . + . transcript_id "YJL175W_id001"; gene_id "YJL175W"; transcript_biotype "protein_coding"; +chrX SGD exon 94049 94561 . + 0 transcript_id "YJL175W_id001"; gene_id "YJL175W"; +chrX SGD gene 94941 96221 . + . gene_id "YJL174W"; gene_biotype "protein_coding"; +chrX SGD transcript 94941 96221 . + . transcript_id "YJL174W_id004"; gene_id "YJL174W"; gene_name "KRE9"; transcript_biotype "protein_coding"; +chrX SGD exon 94941 96221 . + . transcript_id "YJL174W_id004"; gene_id "YJL174W"; gene_name "KRE9"; +chrX SGD transcript 95092 95922 . + . transcript_id "YJL174W_id001"; gene_id "YJL174W"; gene_name "KRE9"; transcript_biotype "protein_coding"; +chrX SGD exon 95092 95922 . + 0 transcript_id "YJL174W_id001"; gene_name "KRE9"; gene_id "YJL174W"; +chrX SGD gene 95965 96542 . - . gene_id "YJL173C"; gene_biotype "protein_coding"; +chrX SGD transcript 95965 96542 . - . transcript_id "YJL173C_id001"; gene_id "YJL173C"; gene_name "RFA3"; transcript_biotype "protein_coding"; +chrX SGD exon 95965 96542 . - . transcript_id "YJL173C_id001"; gene_id "YJL173C"; gene_name "RFA3"; +chrX SGD transcript 96161 96529 . - . transcript_id "YJL173C_id002"; gene_id "YJL173C"; gene_name "RFA3"; transcript_biotype "protein_coding"; +chrX SGD exon 96161 96529 . - 0 transcript_id "YJL173C_id002"; gene_name "RFA3"; gene_id "YJL173C"; +chrX SGD gene 97698 99612 . + . gene_id "YJL172W"; gene_biotype "protein_coding"; +chrX SGD transcript 97698 99612 . + . transcript_id "YJL172W_id003"; gene_id "YJL172W"; gene_name "CPS1"; transcript_biotype "protein_coding"; +chrX SGD exon 97698 99612 . + . transcript_id "YJL172W_id003"; gene_id "YJL172W"; gene_name "CPS1"; +chrX SGD transcript 97737 99467 . + . transcript_id "YJL172W_id001"; gene_id "YJL172W"; gene_name "CPS1"; transcript_biotype "protein_coding"; +chrX SGD exon 97737 99467 . + 0 transcript_id "YJL172W_id001"; gene_name "CPS1"; gene_id "YJL172W"; +chrX SGD gene 99479 100922 . - . gene_id "YJL171C"; gene_biotype "protein_coding"; +chrX SGD transcript 99479 100922 . - . transcript_id "YJL171C_id004"; gene_id "YJL171C"; gene_name "TOH1"; transcript_biotype "protein_coding"; +chrX SGD exon 99479 100922 . - . transcript_id "YJL171C_id004"; gene_id "YJL171C"; gene_name "TOH1"; +chrX SGD transcript 99704 100894 . - . transcript_id "YJL171C_id001"; gene_id "YJL171C"; gene_name "TOH1"; transcript_biotype "protein_coding"; +chrX SGD exon 99704 100894 . - 0 transcript_id "YJL171C_id001"; gene_name "TOH1"; gene_id "YJL171C"; +chrX SGD gene 101123 101873 . - . gene_id "YJL170C"; gene_biotype "protein_coding"; +chrX SGD transcript 101123 101873 . - . transcript_id "YJL170C_id002"; gene_id "YJL170C"; gene_name "ASG7"; transcript_biotype "protein_coding"; +chrX SGD exon 101123 101873 . - . transcript_id "YJL170C_id002"; gene_id "YJL170C"; gene_name "ASG7"; +chrX SGD transcript 101150 101779 . - . transcript_id "YJL170C_id001"; gene_id "YJL170C"; gene_name "ASG7"; transcript_biotype "protein_coding"; +chrX SGD exon 101150 101779 . - 0 transcript_id "YJL170C_id001"; gene_name "ASG7"; gene_id "YJL170C"; +chrX SGD gene 102016 104537 . - . gene_id "YJL168C"; gene_biotype "protein_coding"; +chrX SGD transcript 102016 104537 . - . transcript_id "YJL168C_id001"; gene_id "YJL168C"; gene_name "SET2"; transcript_biotype "protein_coding"; +chrX SGD exon 102016 104537 . - . transcript_id "YJL168C_id001"; gene_id "YJL168C"; gene_name "SET2"; +chrX SGD gene 102099 102467 . + . gene_id "YJL169W"; gene_biotype "protein_coding"; +chrX SGD transcript 102099 102467 . + . transcript_id "YJL169W_mRNA"; gene_id "YJL169W"; transcript_biotype "protein_coding"; +chrX SGD CDS 102099 102467 . + 0 transcript_id "YJL169W_mRNA"; gene_id "YJL169W"; +chrX SGD transcript 102227 104428 . - . transcript_id "YJL168C_id002"; gene_id "YJL168C"; gene_name "SET2"; transcript_biotype "protein_coding"; +chrX SGD exon 102227 104428 . - 0 transcript_id "YJL168C_id002"; gene_name "SET2"; gene_id "YJL168C"; +chrX SGD gene 104894 106201 . + . gene_id "YJL167W"; gene_biotype "protein_coding"; +chrX SGD transcript 104894 106201 . + . transcript_id "YJL167W_id004"; gene_id "YJL167W"; gene_name "ERG20"; transcript_biotype "protein_coding"; +chrX SGD exon 104894 106201 . + . transcript_id "YJL167W_id004"; gene_id "YJL167W"; gene_name "ERG20"; +chrX SGD transcript 105014 106072 . + . transcript_id "YJL167W_id001"; gene_id "YJL167W"; gene_name "ERG20"; transcript_biotype "protein_coding"; +chrX SGD exon 105014 106072 . + 0 transcript_id "YJL167W_id001"; gene_name "ERG20"; gene_id "YJL167W"; +chrX SGD gene 106332 106951 . + . gene_id "YJL166W"; gene_biotype "protein_coding"; +chrX SGD transcript 106332 106951 . + . transcript_id "YJL166W_id006"; gene_id "YJL166W"; gene_name "QCR8"; transcript_biotype "protein_coding"; +chrX SGD exon 106332 106951 . + . transcript_id "YJL166W_id006"; gene_id "YJL166W"; gene_name "QCR8"; +chrX SGD transcript 106434 106718 . + . transcript_id "YJL166W_id001"; gene_id "YJL166W"; gene_name "QCR8"; transcript_biotype "protein_coding"; +chrX SGD exon 106434 106718 . + 0 transcript_id "YJL166W_id001"; gene_name "QCR8"; gene_id "YJL166W"; +chrX SGD gene 106894 109461 . - . gene_id "YJL165C"; gene_biotype "protein_coding"; +chrX SGD transcript 106894 109461 . - . transcript_id "YJL165C_id001"; gene_id "YJL165C"; gene_name "HAL5"; transcript_biotype "protein_coding"; +chrX SGD exon 106894 109461 . - 0 transcript_id "YJL165C_id001"; gene_name "HAL5"; gene_id "YJL165C"; +chrX SGD gene 109794 111403 . - . gene_id "YJL164C"; gene_biotype "protein_coding"; +chrX SGD transcript 109794 111403 . - . transcript_id "YJL164C_id004"; gene_id "YJL164C"; gene_name "TPK1"; transcript_biotype "protein_coding"; +chrX SGD exon 109794 111403 . - . transcript_id "YJL164C_id004"; gene_id "YJL164C"; gene_name "TPK1"; +chrX SGD transcript 109966 111159 . - . transcript_id "YJL164C_id001"; gene_id "YJL164C"; gene_name "TPK1"; transcript_biotype "protein_coding"; +chrX SGD exon 109966 111159 . - 0 transcript_id "YJL164C_id001"; gene_name "TPK1"; gene_id "YJL164C"; +chrX SGD gene 111594 113413 . - . gene_id "YJL163C"; gene_biotype "protein_coding"; +chrX SGD transcript 111594 113413 . - . transcript_id "YJL163C_id004"; gene_id "YJL163C"; transcript_biotype "protein_coding"; +chrX SGD exon 111594 113413 . - . transcript_id "YJL163C_id004"; gene_id "YJL163C"; +chrX SGD transcript 111666 113333 . - . transcript_id "YJL163C_id001"; gene_id "YJL163C"; transcript_biotype "protein_coding"; +chrX SGD exon 111666 113333 . - 0 transcript_id "YJL163C_id001"; gene_id "YJL163C"; +chrX SGD gene 113878 115629 . - . gene_id "YJL162C"; gene_biotype "protein_coding"; +chrX SGD transcript 113878 115629 . - . transcript_id "YJL162C_id001"; gene_id "YJL162C"; gene_name "JJJ2"; transcript_biotype "protein_coding"; +chrX SGD exon 113878 115629 . - 0 transcript_id "YJL162C_id001"; gene_name "JJJ2"; gene_id "YJL162C"; +chrX SGD gene 115939 116010 . - . gene_id "YNCJ0002C"; gene_biotype "ncRNA"; +chrX SGD transcript 115939 116010 . - . transcript_id "YNCJ0002C_tRNA"; gene_id "YNCJ0002C"; transcript_biotype "ncRNA"; +chrX SGD exon 115939 116010 . - . transcript_id "YNCJ0002C_tRNA"; gene_id "YNCJ0002C"; +chrX SGD gene 116697 117941 . + . gene_id "YJL161W"; gene_biotype "protein_coding"; +chrX SGD transcript 116697 117941 . + . transcript_id "YJL161W_id003"; gene_id "YJL161W"; gene_name "FMP33"; transcript_biotype "protein_coding"; +chrX SGD exon 116697 117941 . + . transcript_id "YJL161W_id003"; gene_id "YJL161W"; gene_name "FMP33"; +chrX SGD transcript 117245 117787 . + . transcript_id "YJL161W_id001"; gene_id "YJL161W"; gene_name "FMP33"; transcript_biotype "protein_coding"; +chrX SGD exon 117245 117787 . + 0 transcript_id "YJL161W_id001"; gene_name "FMP33"; gene_id "YJL161W"; +chrX SGD gene 117806 118825 . - . gene_id "YJL160C"; gene_biotype "protein_coding"; +chrX SGD transcript 117806 118825 . - . transcript_id "YJL160C_id001"; gene_id "YJL160C"; gene_name "PIR5"; transcript_biotype "protein_coding"; +chrX SGD exon 117806 118825 . - . transcript_id "YJL160C_id001"; gene_id "YJL160C"; gene_name "PIR5"; +chrX SGD transcript 117962 118825 . - . transcript_id "YJL160C_id004"; gene_id "YJL160C"; gene_name "PIR5"; transcript_biotype "protein_coding"; +chrX SGD exon 117962 118825 . - 0 transcript_id "YJL160C_id004"; gene_name "PIR5"; gene_id "YJL160C"; +chrX SGD gene 120262 121998 . + . gene_id "YJL159W"; gene_biotype "protein_coding"; +chrX SGD transcript 120262 121998 . + . transcript_id "YJL159W_id003"; gene_id "YJL159W"; gene_name "HSP150"; transcript_biotype "protein_coding"; +chrX SGD exon 120262 121998 . + . transcript_id "YJL159W_id003"; gene_id "YJL159W"; gene_name "HSP150"; +chrX SGD transcript 120449 121690 . + . transcript_id "YJL159W_id001"; gene_id "YJL159W"; gene_name "HSP150"; transcript_biotype "protein_coding"; +chrX SGD exon 120449 121690 . + 0 transcript_id "YJL159W_id001"; gene_name "HSP150"; gene_id "YJL159W"; +chrX SGD gene 121864 122990 . - . gene_id "YJL158C"; gene_biotype "protein_coding"; +chrX SGD transcript 121864 122990 . - . transcript_id "YJL158C_id001"; gene_id "YJL158C"; gene_name "CIS3"; transcript_biotype "protein_coding"; +chrX SGD exon 121864 122990 . - . transcript_id "YJL158C_id001"; gene_id "YJL158C"; gene_name "CIS3"; +chrX SGD transcript 122265 122948 . - . transcript_id "YJL158C_id003"; gene_id "YJL158C"; gene_name "CIS3"; transcript_biotype "protein_coding"; +chrX SGD exon 122265 122948 . - 0 transcript_id "YJL158C_id003"; gene_name "CIS3"; gene_id "YJL158C"; +chrX SGD gene 123836 126328 . - . gene_id "YJL157C"; gene_biotype "protein_coding"; +chrX SGD transcript 123836 126328 . - . transcript_id "YJL157C_mRNA"; gene_id "YJL157C"; gene_name "FAR1"; transcript_biotype "protein_coding"; +chrX SGD CDS 123836 126328 . - 0 transcript_id "YJL157C_mRNA"; gene_name "FAR1"; gene_id "YJL157C"; +chrX SGD gene 126463 129004 . - . gene_id "YJL156C"; gene_biotype "protein_coding"; +chrX SGD transcript 126463 129004 . - . transcript_id "YJL156C_id005"; gene_id "YJL156C"; gene_name "SSY5"; transcript_biotype "protein_coding"; +chrX SGD exon 126463 129004 . - . transcript_id "YJL156C_id005"; gene_id "YJL156C"; gene_name "SSY5"; +chrX SGD gene 126604 126825 . + . gene_id "YJL156W-A"; gene_biotype "protein_coding"; +chrX SGD transcript 126604 126825 . + . transcript_id "YJL156W-A_mRNA"; gene_id "YJL156W-A"; transcript_biotype "protein_coding"; +chrX SGD CDS 126604 126825 . + 0 transcript_id "YJL156W-A_mRNA"; gene_id "YJL156W-A"; +chrX SGD transcript 126853 128952 . - . transcript_id "YJL156C_id001"; gene_id "YJL156C"; gene_name "SSY5"; transcript_biotype "protein_coding"; +chrX SGD exon 126853 128952 . - 0 transcript_id "YJL156C_id001"; gene_name "SSY5"; gene_id "YJL156C"; +chrX SGD gene 129127 130804 . - . gene_id "YJL155C"; gene_biotype "protein_coding"; +chrX SGD transcript 129127 130804 . - . transcript_id "YJL155C_id006"; gene_id "YJL155C"; gene_name "FBP26"; transcript_biotype "protein_coding"; +chrX SGD exon 129127 130804 . - . transcript_id "YJL155C_id006"; gene_id "YJL155C"; gene_name "FBP26"; +chrX SGD transcript 129285 130643 . - . transcript_id "YJL155C_id001"; gene_id "YJL155C"; gene_name "FBP26"; transcript_biotype "protein_coding"; +chrX SGD exon 129285 130643 . - 0 transcript_id "YJL155C_id001"; gene_name "FBP26"; gene_id "YJL155C"; +chrX SGD gene 131101 133935 . - . gene_id "YJL154C"; gene_biotype "protein_coding"; +chrX SGD transcript 131101 133935 . - . transcript_id "YJL154C_id001"; gene_id "YJL154C"; gene_name "VPS35"; transcript_biotype "protein_coding"; +chrX SGD exon 131101 133935 . - 0 transcript_id "YJL154C_id001"; gene_name "VPS35"; gene_id "YJL154C"; +chrX SGD gene 134332 135933 . - . gene_id "YJL153C"; gene_biotype "protein_coding"; +chrX SGD transcript 134332 135933 . - . transcript_id "YJL153C_id001"; gene_id "YJL153C"; gene_name "INO1"; transcript_biotype "protein_coding"; +chrX SGD exon 134332 135933 . - 0 transcript_id "YJL153C_id001"; gene_name "INO1"; gene_id "YJL153C"; +chrX SGD gene 135911 136806 . - . gene_id "YJL151C"; gene_biotype "protein_coding"; +chrX SGD transcript 135911 136806 . - . transcript_id "YJL151C_id001"; gene_id "YJL151C"; gene_name "SNA3"; transcript_biotype "protein_coding"; +chrX SGD exon 135911 136806 . - . transcript_id "YJL151C_id001"; gene_id "YJL151C"; gene_name "SNA3"; +chrX SGD gene 136174 136533 . + . gene_id "YJL152W"; gene_biotype "protein_coding"; +chrX SGD transcript 136174 136533 . + . transcript_id "YJL152W_mRNA"; gene_id "YJL152W"; transcript_biotype "protein_coding"; +chrX SGD CDS 136174 136533 . + 0 transcript_id "YJL152W_mRNA"; gene_id "YJL152W"; +chrX SGD transcript 136372 136773 . - . transcript_id "YJL151C_id003"; gene_id "YJL151C"; gene_name "SNA3"; transcript_biotype "protein_coding"; +chrX SGD exon 136372 136773 . - 0 transcript_id "YJL151C_id003"; gene_name "SNA3"; gene_id "YJL151C"; +chrX SGD gene 137123 137425 . + . gene_id "YJL150W"; gene_biotype "protein_coding"; +chrX SGD transcript 137123 137425 . + . transcript_id "YJL150W_mRNA"; gene_id "YJL150W"; transcript_biotype "protein_coding"; +chrX SGD CDS 137123 137425 . + 0 transcript_id "YJL150W_mRNA"; gene_id "YJL150W"; +chrX SGD gene 137343 139434 . + . gene_id "YJL149W"; gene_biotype "protein_coding"; +chrX SGD transcript 137343 139434 . + . transcript_id "YJL149W_id001"; gene_id "YJL149W"; gene_name "DAS1"; transcript_biotype "protein_coding"; +chrX SGD exon 137343 139434 . + . transcript_id "YJL149W_id001"; gene_id "YJL149W"; gene_name "DAS1"; +chrX SGD transcript 137379 139370 . + . transcript_id "YJL149W_id003"; gene_id "YJL149W"; gene_name "DAS1"; transcript_biotype "protein_coding"; +chrX SGD exon 137379 139370 . + 0 transcript_id "YJL149W_id003"; gene_name "DAS1"; gene_id "YJL149W"; +chrX SGD gene 139566 139691 . - . gene_id "YNCJ0003C"; gene_biotype "ncRNA"; +chrX SGD transcript 139566 139691 . - . transcript_id "YNCJ0003C_snoRNA"; gene_id "YNCJ0003C"; gene_name "SNR128"; transcript_biotype "ncRNA"; +chrX SGD exon 139566 139691 . - . transcript_id "YNCJ0003C_snoRNA"; gene_name "SNR128"; gene_id "YNCJ0003C"; +chrX SGD gene 139761 139950 . - . gene_id "YNCJ0004C"; gene_biotype "ncRNA"; +chrX SGD transcript 139761 139950 . - . transcript_id "YNCJ0004C_snoRNA"; gene_id "YNCJ0004C"; gene_name "SNR190"; transcript_biotype "ncRNA"; +chrX SGD exon 139761 139950 . - . transcript_id "YNCJ0004C_snoRNA"; gene_name "SNR190"; gene_id "YNCJ0004C"; +chrX SGD gene 140380 141690 . + . gene_id "YJL148W"; gene_biotype "protein_coding"; +chrX SGD transcript 140380 141690 . + . transcript_id "YJL148W_id002"; gene_id "YJL148W"; gene_name "RPA34"; transcript_biotype "protein_coding"; +chrX SGD exon 140380 141690 . + . transcript_id "YJL148W_id002"; gene_id "YJL148W"; gene_name "RPA34"; +chrX SGD transcript 140437 141138 . + . transcript_id "YJL148W_id001"; gene_id "YJL148W"; gene_name "RPA34"; transcript_biotype "protein_coding"; +chrX SGD exon 140437 141138 . + 0 transcript_id "YJL148W_id001"; gene_name "RPA34"; gene_id "YJL148W"; +chrX SGD gene 141189 142642 . - . gene_id "YJL147C"; gene_biotype "protein_coding"; +chrX SGD transcript 141189 142642 . - . transcript_id "YJL147C_id008"; gene_id "YJL147C"; gene_name "SMT1"; transcript_biotype "protein_coding"; +chrX SGD exon 141189 142642 . - . transcript_id "YJL147C_id008"; gene_id "YJL147C"; gene_name "SMT1"; +chrX SGD transcript 141419 142567 . - . transcript_id "YJL147C_id001"; gene_id "YJL147C"; gene_name "SMT1"; transcript_biotype "protein_coding"; +chrX SGD exon 141419 142567 . - 0 transcript_id "YJL147C_id001"; gene_name "SMT1"; gene_id "YJL147C"; +chrX SGD gene 143166 144923 . + . gene_id "YJL146W"; gene_biotype "protein_coding"; +chrX SGD transcript 143166 144923 . + . transcript_id "YJL146W_id003"; gene_id "YJL146W"; gene_name "IDS2"; transcript_biotype "protein_coding"; +chrX SGD exon 143166 144923 . + . transcript_id "YJL146W_id003"; gene_id "YJL146W"; gene_name "IDS2"; +chrX SGD transcript 143292 144701 . + . transcript_id "YJL146W_id001"; gene_id "YJL146W"; gene_name "IDS2"; transcript_biotype "protein_coding"; +chrX SGD exon 143292 144701 . + 0 transcript_id "YJL146W_id001"; gene_name "IDS2"; gene_id "YJL146W"; +chrX SGD gene 145084 146157 . + . gene_id "YJL145W"; gene_biotype "protein_coding"; +chrX SGD transcript 145084 146157 . + . transcript_id "YJL145W_id002"; gene_id "YJL145W"; gene_name "SFH5"; transcript_biotype "protein_coding"; +chrX SGD exon 145084 146157 . + . transcript_id "YJL145W_id002"; gene_id "YJL145W"; gene_name "SFH5"; +chrX SGD transcript 145160 146044 . + . transcript_id "YJL145W_id001"; gene_id "YJL145W"; gene_name "SFH5"; transcript_biotype "protein_coding"; +chrX SGD exon 145160 146044 . + 0 transcript_id "YJL145W_id001"; gene_name "SFH5"; gene_id "YJL145W"; +chrX SGD gene 146278 146905 . + . gene_id "YJL144W"; gene_biotype "protein_coding"; +chrX SGD transcript 146278 146905 . + . transcript_id "YJL144W_id003"; gene_id "YJL144W"; gene_name "ROQ1"; transcript_biotype "protein_coding"; +chrX SGD exon 146278 146905 . + . transcript_id "YJL144W_id003"; gene_id "YJL144W"; gene_name "ROQ1"; +chrX SGD transcript 146359 146673 . + . transcript_id "YJL144W_id001"; gene_id "YJL144W"; gene_name "ROQ1"; transcript_biotype "protein_coding"; +chrX SGD exon 146359 146673 . + 0 transcript_id "YJL144W_id001"; gene_name "ROQ1"; gene_id "YJL144W"; +chrX SGD gene 147055 147976 . + . gene_id "YJL143W"; gene_biotype "protein_coding"; +chrX SGD transcript 147055 147976 . + . transcript_id "YJL143W_id008"; gene_id "YJL143W"; gene_name "TIM17"; transcript_biotype "protein_coding"; +chrX SGD exon 147055 147976 . + . transcript_id "YJL143W_id008"; gene_id "YJL143W"; gene_name "TIM17"; +chrX SGD transcript 147101 147577 . + . transcript_id "YJL143W_id001"; gene_id "YJL143W"; gene_name "TIM17"; transcript_biotype "protein_coding"; +chrX SGD exon 147101 147577 . + 0 transcript_id "YJL143W_id001"; gene_name "TIM17"; gene_id "YJL143W"; +chrX SGD gene 147810 150372 . - . gene_id "YJL142C"; gene_biotype "protein_coding"; +chrX SGD transcript 147810 150372 . - . transcript_id "YJL142C_id001"; gene_id "YJL142C"; gene_name "IRC9"; transcript_biotype "protein_coding"; +chrX SGD exon 147810 150372 . - . transcript_id "YJL142C_id001"; gene_id "YJL142C"; gene_name "IRC9"; +chrX SGD transcript 147819 148211 . - . transcript_id "YJL142C_id003"; gene_id "YJL142C"; gene_name "IRC9"; transcript_biotype "protein_coding"; +chrX SGD exon 147819 148211 . - 0 transcript_id "YJL142C_id003"; gene_name "IRC9"; gene_id "YJL142C"; +chrX SGD gene 147967 150390 . - . gene_id "YJL141C"; gene_biotype "protein_coding"; +chrX SGD transcript 147967 150390 . - . transcript_id "YJL141C_id001"; gene_id "YJL141C"; gene_name "YAK1"; transcript_biotype "protein_coding"; +chrX SGD exon 147967 150390 . - 0 transcript_id "YJL141C_id001"; gene_name "YAK1"; gene_id "YJL141C"; +chrX SGD gene 150862 151796 . + . gene_id "YJL140W"; gene_biotype "protein_coding"; +chrX SGD transcript 150862 151796 . + . transcript_id "YJL140W_id001"; gene_id "YJL140W"; gene_name "RPB4"; transcript_biotype "protein_coding"; +chrX SGD exon 150862 151796 . + . transcript_id "YJL140W_id001"; gene_id "YJL140W"; gene_name "RPB4"; +chrX SGD gene 150874 153085 . - . gene_id "YJL139C"; gene_biotype "protein_coding"; +chrX SGD transcript 150874 153085 . - . transcript_id "YJL139C_id003"; gene_id "YJL139C"; gene_name "YUR1"; transcript_biotype "protein_coding"; +chrX SGD exon 150874 153085 . - . transcript_id "YJL139C_id003"; gene_id "YJL139C"; gene_name "YUR1"; +chrX SGD transcript 150961 151626 . + . transcript_id "YJL140W_id003"; gene_id "YJL140W"; gene_name "RPB4"; transcript_biotype "protein_coding"; +chrX SGD exon 150961 151626 . + 0 transcript_id "YJL140W_id003"; gene_name "RPB4"; gene_id "YJL140W"; +chrX SGD transcript 151713 152999 . - . transcript_id "YJL139C_id001"; gene_id "YJL139C"; gene_name "YUR1"; transcript_biotype "protein_coding"; +chrX SGD exon 151713 152999 . - 0 transcript_id "YJL139C_id001"; gene_name "YUR1"; gene_id "YJL139C"; +chrX SGD gene 153246 154800 . - . gene_id "YJL138C"; gene_biotype "protein_coding"; +chrX SGD transcript 153246 154800 . - . transcript_id "YJL138C_id001"; gene_id "YJL138C"; gene_name "TIF2"; transcript_biotype "protein_coding"; +chrX SGD exon 153246 154800 . - . transcript_id "YJL138C_id001"; gene_id "YJL138C"; gene_name "TIF2"; +chrX SGD transcript 153504 154691 . - . transcript_id "YJL138C_id002"; gene_id "YJL138C"; gene_name "TIF2"; transcript_biotype "protein_coding"; +chrX SGD exon 153504 154691 . - 0 transcript_id "YJL138C_id002"; gene_name "TIF2"; gene_id "YJL138C"; +chrX SGD gene 154673 156221 . - . gene_id "YJL137C"; gene_biotype "protein_coding"; +chrX SGD transcript 154673 156221 . - . transcript_id "YJL137C_id001"; gene_id "YJL137C"; gene_name "GLG2"; transcript_biotype "protein_coding"; +chrX SGD exon 154673 156221 . - . transcript_id "YJL137C_id001"; gene_id "YJL137C"; gene_name "GLG2"; +chrX SGD transcript 154985 156127 . - . transcript_id "YJL137C_id002"; gene_id "YJL137C"; gene_name "GLG2"; transcript_biotype "protein_coding"; +chrX SGD exon 154985 156127 . - 0 transcript_id "YJL137C_id002"; gene_name "GLG2"; gene_id "YJL137C"; +chrX SGD gene 156169 156252 . + . gene_id "YJL136W-A"; gene_biotype "protein_coding"; +chrX SGD transcript 156169 156252 . + . transcript_id "YJL136W-A_mRNA"; gene_id "YJL136W-A"; transcript_biotype "protein_coding"; +chrX SGD CDS 156169 156252 . + 0 transcript_id "YJL136W-A_mRNA"; gene_id "YJL136W-A"; +chrX SGD gene 156179 157287 . - . gene_id "YJL136C"; gene_biotype "protein_coding"; +chrX SGD transcript 156179 157287 . - . transcript_id "YJL136C_id002"; gene_id "YJL136C"; gene_name "RPS21B"; transcript_biotype "protein_coding"; +chrX SGD exon 156179 157287 . - . transcript_id "YJL136C_id002"; gene_id "YJL136C"; gene_name "RPS21B"; +chrX SGD transcript 156550 157273 . - . transcript_id "YJL136C_id001"; gene_id "YJL136C"; gene_name "RPS21B"; transcript_biotype "protein_coding"; +chrX SGD exon 156550 156789 . - 0 transcript_id "YJL136C_id001"; gene_name "RPS21B"; gene_id "YJL136C"; +chrX SGD exon 157250 157273 . - 0 transcript_id "YJL136C_id001"; gene_name "RPS21B"; gene_id "YJL136C"; +chrX SGD gene 157877 158194 . + . gene_id "YJL135W"; gene_biotype "protein_coding"; +chrX SGD transcript 157877 158194 . + . transcript_id "YJL135W_mRNA"; gene_id "YJL135W"; transcript_biotype "protein_coding"; +chrX SGD CDS 157877 158194 . + 0 transcript_id "YJL135W_mRNA"; gene_id "YJL135W"; +chrX SGD gene 157918 159507 . + . gene_id "YJL134W"; gene_biotype "protein_coding"; +chrX SGD transcript 157918 159507 . + . transcript_id "YJL134W_id001"; gene_id "YJL134W"; gene_name "LCB3"; transcript_biotype "protein_coding"; +chrX SGD exon 157918 159507 . + . transcript_id "YJL134W_id001"; gene_id "YJL134W"; gene_name "LCB3"; +chrX SGD transcript 158188 159417 . + . transcript_id "YJL134W_id004"; gene_id "YJL134W"; gene_name "LCB3"; transcript_biotype "protein_coding"; +chrX SGD exon 158188 159417 . + 0 transcript_id "YJL134W_id004"; gene_name "LCB3"; gene_id "YJL134W"; +chrX SGD gene 159410 159876 . - . gene_id "YJL133C-A"; gene_biotype "protein_coding"; +chrX SGD transcript 159410 159876 . - . transcript_id "YJL133C-A_id003"; gene_id "YJL133C-A"; gene_name "DPI8"; transcript_biotype "protein_coding"; +chrX SGD exon 159410 159876 . - . transcript_id "YJL133C-A_id003"; gene_id "YJL133C-A"; gene_name "DPI8"; +chrX SGD transcript 159623 159847 . - . transcript_id "YJL133C-A_id001"; gene_id "YJL133C-A"; gene_name "DPI8"; transcript_biotype "protein_coding"; +chrX SGD exon 159623 159847 . - 0 transcript_id "YJL133C-A_id001"; gene_name "DPI8"; gene_id "YJL133C-A"; +chrX SGD gene 160375 161704 . + . gene_id "YJL133W"; gene_biotype "protein_coding"; +chrX SGD transcript 160375 161704 . + . transcript_id "YJL133W_id001"; gene_id "YJL133W"; gene_name "MRS3"; transcript_biotype "protein_coding"; +chrX SGD exon 160375 161704 . + . transcript_id "YJL133W_id001"; gene_id "YJL133W"; gene_name "MRS3"; +chrX SGD transcript 160619 161563 . + . transcript_id "YJL133W_id002"; gene_id "YJL133W"; gene_name "MRS3"; transcript_biotype "protein_coding"; +chrX SGD exon 160619 161563 . + 0 transcript_id "YJL133W_id002"; gene_name "MRS3"; gene_id "YJL133W"; +chrX SGD gene 161892 164304 . + . gene_id "YJL132W"; gene_biotype "protein_coding"; +chrX SGD transcript 161892 164304 . + . transcript_id "YJL132W_id002"; gene_id "YJL132W"; transcript_biotype "protein_coding"; +chrX SGD exon 161892 164304 . + . transcript_id "YJL132W_id002"; gene_id "YJL132W"; +chrX SGD transcript 161914 164166 . + . transcript_id "YJL132W_id001"; gene_id "YJL132W"; transcript_biotype "protein_coding"; +chrX SGD exon 161914 164166 . + 0 transcript_id "YJL132W_id001"; gene_id "YJL132W"; +chrX SGD gene 164278 165348 . - . gene_id "YJL131C"; gene_biotype "protein_coding"; +chrX SGD transcript 164278 165348 . - . transcript_id "YJL131C_id001"; gene_id "YJL131C"; gene_name "AIM23"; transcript_biotype "protein_coding"; +chrX SGD exon 164278 165348 . - 0 transcript_id "YJL131C_id001"; gene_name "AIM23"; gene_id "YJL131C"; +chrX SGD gene 165723 172752 . - . gene_id "YJL130C"; gene_biotype "protein_coding"; +chrX SGD transcript 165723 172752 . - . transcript_id "YJL130C_mRNA"; gene_id "YJL130C"; gene_name "URA2"; transcript_biotype "protein_coding"; +chrX SGD exon 165723 172367 . - . transcript_id "YJL130C_mRNA"; gene_name "URA2"; gene_id "YJL130C"; +chrX SGD exon 172433 172752 . - . transcript_id "YJL130C_mRNA"; gene_name "URA2"; gene_id "YJL130C"; +chrX SGD CDS 165723 172367 . - 0 transcript_id "YJL130C_mRNA"; gene_name "URA2"; gene_id "YJL130C"; +chrX SGD gene 173599 177306 . - . gene_id "YJL129C"; gene_biotype "protein_coding"; +chrX SGD transcript 173599 177306 . - . transcript_id "YJL129C_mRNA"; gene_id "YJL129C"; gene_name "TRK1"; transcript_biotype "protein_coding"; +chrX SGD CDS 173599 177306 . - 0 transcript_id "YJL129C_mRNA"; gene_name "TRK1"; gene_id "YJL129C"; +chrX SGD gene 177866 180324 . - . gene_id "YJL128C"; gene_biotype "protein_coding"; +chrX SGD transcript 177866 180324 . - . transcript_id "YJL128C_id001"; gene_id "YJL128C"; gene_name "PBS2"; transcript_biotype "protein_coding"; +chrX SGD exon 177866 180324 . - . transcript_id "YJL128C_id001"; gene_id "YJL128C"; gene_name "PBS2"; +chrX SGD transcript 178097 180103 . - . transcript_id "YJL128C_id002"; gene_id "YJL128C"; gene_name "PBS2"; transcript_biotype "protein_coding"; +chrX SGD exon 178097 180103 . - 0 transcript_id "YJL128C_id002"; gene_name "PBS2"; gene_id "YJL128C"; +chrX SGD gene 180194 180310 . + . gene_id "YJL127W-A"; gene_biotype "protein_coding"; +chrX SGD transcript 180194 180310 . + . transcript_id "YJL127W-A_mRNA"; gene_id "YJL127W-A"; transcript_biotype "protein_coding"; +chrX SGD CDS 180194 180310 . + 0 transcript_id "YJL127W-A_mRNA"; gene_id "YJL127W-A"; +chrX SGD gene 181275 182474 . - . gene_id "YJL127C-B"; gene_biotype "protein_coding"; +chrX SGD transcript 181275 182474 . - . transcript_id "YJL127C-B_id004"; gene_id "YJL127C-B"; gene_name "MCO6"; transcript_biotype "protein_coding"; +chrX SGD exon 181275 182474 . - . transcript_id "YJL127C-B_id004"; gene_id "YJL127C-B"; gene_name "MCO6"; +chrX SGD transcript 181551 181709 . - . transcript_id "YJL127C-B_id001"; gene_id "YJL127C-B"; gene_name "MCO6"; transcript_biotype "protein_coding"; +chrX SGD exon 181551 181709 . - 0 transcript_id "YJL127C-B_id001"; gene_name "MCO6"; gene_id "YJL127C-B"; +chrX SGD gene 182298 184220 . - . gene_id "YJL127C"; gene_biotype "protein_coding"; +chrX SGD transcript 182298 184220 . - . transcript_id "YJL127C_id001"; gene_id "YJL127C"; gene_name "SPT10"; transcript_biotype "protein_coding"; +chrX SGD exon 182298 184220 . - 0 transcript_id "YJL127C_id001"; gene_name "SPT10"; gene_id "YJL127C"; +chrX SGD gene 183645 185545 . + . gene_id "YJL126W"; gene_biotype "protein_coding"; +chrX SGD transcript 183645 185545 . + . transcript_id "YJL126W_id001"; gene_id "YJL126W"; gene_name "NIT2"; transcript_biotype "protein_coding"; +chrX SGD exon 183645 185545 . + . transcript_id "YJL126W_id001"; gene_id "YJL126W"; gene_name "NIT2"; +chrX SGD transcript 184501 185424 . + . transcript_id "YJL126W_id003"; gene_id "YJL126W"; gene_name "NIT2"; transcript_biotype "protein_coding"; +chrX SGD exon 184501 185424 . + 0 transcript_id "YJL126W_id003"; gene_name "NIT2"; gene_id "YJL126W"; +chrX SGD gene 185394 186731 . - . gene_id "YJL125C"; gene_biotype "protein_coding"; +chrX SGD transcript 185394 186731 . - . transcript_id "YJL125C_id001"; gene_id "YJL125C"; gene_name "GCD14"; transcript_biotype "protein_coding"; +chrX SGD exon 185394 186731 . - . transcript_id "YJL125C_id001"; gene_id "YJL125C"; gene_name "GCD14"; +chrX SGD transcript 185528 186679 . - . transcript_id "YJL125C_id002"; gene_id "YJL125C"; gene_name "GCD14"; transcript_biotype "protein_coding"; +chrX SGD exon 185528 186679 . - 0 transcript_id "YJL125C_id002"; gene_name "GCD14"; gene_id "YJL125C"; +chrX SGD gene 186911 188277 . - . gene_id "YJL124C"; gene_biotype "protein_coding"; +chrX SGD transcript 186911 188277 . - . transcript_id "YJL124C_id001"; gene_id "YJL124C"; gene_name "LSM1"; transcript_biotype "protein_coding"; +chrX SGD exon 186911 188277 . - . transcript_id "YJL124C_id001"; gene_id "YJL124C"; gene_name "LSM1"; +chrX SGD transcript 187126 187644 . - . transcript_id "YJL124C_id002"; gene_id "YJL124C"; gene_name "LSM1"; transcript_biotype "protein_coding"; +chrX SGD exon 187126 187644 . - 0 transcript_id "YJL124C_id002"; gene_name "LSM1"; gene_id "YJL124C"; +chrX SGD gene 187830 190308 . - . gene_id "YJL123C"; gene_biotype "protein_coding"; +chrX SGD transcript 187830 190308 . - . transcript_id "YJL123C_id001"; gene_id "YJL123C"; gene_name "MTC1"; transcript_biotype "protein_coding"; +chrX SGD exon 187830 190308 . - . transcript_id "YJL123C_id001"; gene_id "YJL123C"; gene_name "MTC1"; +chrX SGD transcript 188004 189440 . - . transcript_id "YJL123C_id004"; gene_id "YJL123C"; gene_name "MTC1"; transcript_biotype "protein_coding"; +chrX SGD exon 188004 189440 . - 0 transcript_id "YJL123C_id004"; gene_name "MTC1"; gene_id "YJL123C"; +chrX SGD gene 189668 190398 . + . gene_id "YJL122W"; gene_biotype "protein_coding"; +chrX SGD transcript 189668 190398 . + . transcript_id "YJL122W_id006"; gene_id "YJL122W"; gene_name "ALB1"; transcript_biotype "protein_coding"; +chrX SGD exon 189668 190398 . + . transcript_id "YJL122W_id006"; gene_id "YJL122W"; gene_name "ALB1"; +chrX SGD transcript 189716 190243 . + . transcript_id "YJL122W_id001"; gene_id "YJL122W"; gene_name "ALB1"; transcript_biotype "protein_coding"; +chrX SGD exon 189716 190243 . + 0 transcript_id "YJL122W_id001"; gene_name "ALB1"; gene_id "YJL122W"; +chrX SGD gene 190308 191546 . - . gene_id "YJL121C"; gene_biotype "protein_coding"; +chrX SGD transcript 190308 191546 . - . transcript_id "YJL121C_id001"; gene_id "YJL121C"; gene_name "RPE1"; transcript_biotype "protein_coding"; +chrX SGD exon 190308 191546 . - . transcript_id "YJL121C_id001"; gene_id "YJL121C"; gene_name "RPE1"; +chrX SGD transcript 190374 191090 . - . transcript_id "YJL121C_id004"; gene_id "YJL121C"; gene_name "RPE1"; transcript_biotype "protein_coding"; +chrX SGD exon 190374 191090 . - 0 transcript_id "YJL121C_id004"; gene_name "RPE1"; gene_id "YJL121C"; +chrX SGD gene 191022 191345 . + . gene_id "YJL120W"; gene_biotype "protein_coding"; +chrX SGD transcript 191022 191345 . + . transcript_id "YJL120W_id001"; gene_id "YJL120W"; transcript_biotype "protein_coding"; +chrX SGD exon 191022 191345 . + 0 transcript_id "YJL120W_id001"; gene_id "YJL120W"; +chrX SGD gene 191159 192343 . - . gene_id "YJL119C"; gene_biotype "protein_coding"; +chrX SGD transcript 191159 192343 . - . transcript_id "YJL119C_id001"; gene_id "YJL119C"; transcript_biotype "protein_coding"; +chrX SGD exon 191159 192343 . - . transcript_id "YJL119C_id001"; gene_id "YJL119C"; +chrX SGD transcript 191572 191895 . - . transcript_id "YJL119C_id003"; gene_id "YJL119C"; transcript_biotype "protein_coding"; +chrX SGD exon 191572 191895 . - 0 transcript_id "YJL119C_id003"; gene_id "YJL119C"; +chrX SGD gene 191624 192466 . + . gene_id "YJL118W"; gene_biotype "protein_coding"; +chrX SGD transcript 191624 192466 . + . transcript_id "YJL118W_id004"; gene_id "YJL118W"; transcript_biotype "protein_coding"; +chrX SGD exon 191624 192466 . + . transcript_id "YJL118W_id004"; gene_id "YJL118W"; +chrX SGD transcript 191639 192298 . + . transcript_id "YJL118W_id001"; gene_id "YJL118W"; transcript_biotype "protein_coding"; +chrX SGD exon 191639 192298 . + 0 transcript_id "YJL118W_id001"; gene_id "YJL118W"; +chrX SGD gene 192531 193466 . + . gene_id "YJL117W"; gene_biotype "protein_coding"; +chrX SGD transcript 192531 193466 . + . transcript_id "YJL117W_id001"; gene_id "YJL117W"; gene_name "PHO86"; transcript_biotype "protein_coding"; +chrX SGD exon 192531 193466 . + 0 transcript_id "YJL117W_id001"; gene_name "PHO86"; gene_id "YJL117W"; +chrX SGD gene 193546 195086 . - . gene_id "YJL116C"; gene_biotype "protein_coding"; +chrX SGD transcript 193546 195086 . - . transcript_id "YJL116C_id005"; gene_id "YJL116C"; gene_name "NCA3"; transcript_biotype "protein_coding"; +chrX SGD exon 193546 195086 . - . transcript_id "YJL116C_id005"; gene_id "YJL116C"; gene_name "NCA3"; +chrX SGD transcript 193860 194873 . - . transcript_id "YJL116C_id001"; gene_id "YJL116C"; gene_name "NCA3"; transcript_biotype "protein_coding"; +chrX SGD exon 193860 194873 . - 0 transcript_id "YJL116C_id001"; gene_name "NCA3"; gene_id "YJL116C"; +chrX SGD gene 195629 197228 . + . gene_id "YJL115W"; gene_biotype "protein_coding"; +chrX SGD transcript 195629 197228 . + . transcript_id "YJL115W_id002"; gene_id "YJL115W"; gene_name "ASF1"; transcript_biotype "protein_coding"; +chrX SGD exon 195629 197228 . + . transcript_id "YJL115W_id002"; gene_id "YJL115W"; gene_name "ASF1"; +chrX SGD transcript 196287 197126 . + . transcript_id "YJL115W_id001"; gene_id "YJL115W"; gene_name "ASF1"; transcript_biotype "protein_coding"; +chrX SGD exon 196287 197126 . + 0 transcript_id "YJL115W_id001"; gene_name "ASF1"; gene_id "YJL115W"; +chrX SGD gene 197313 197385 . - . gene_id "YNCJ0005C"; gene_biotype "ncRNA"; +chrX SGD transcript 197313 197385 . - . transcript_id "YNCJ0005C_tRNA"; gene_id "YNCJ0005C"; transcript_biotype "ncRNA"; +chrX SGD exon 197313 197385 . - . transcript_id "YNCJ0005C_tRNA"; gene_id "YNCJ0005C"; +chrX SGD gene 197915 198595 . + . gene_id "YJL114W"; gene_biotype "protein_coding"; +chrX SGD transcript 197915 198595 . + . transcript_id "YJL114W_dummy"; gene_id "YJL114W"; transcript_biotype "protein_coding"; +chrX SGD exon 197915 198595 . + 0 transcript_id "YJL114W_dummy"; gene_id "YJL114W"; +chrX SGD gene 198678 203325 . + . gene_id "YJL113W"; gene_biotype "protein_coding"; +chrX SGD transcript 198678 203325 . + . transcript_id "YJL113W_dummy"; gene_id "YJL113W"; transcript_biotype "protein_coding"; +chrX SGD exon 198678 198998 . + 0 transcript_id "YJL113W_dummy"; gene_id "YJL113W"; +chrX SGD exon 199000 203325 . + 0 transcript_id "YJL113W_dummy"; gene_id "YJL113W"; +chrX SGD gene 204735 204806 . + . gene_id "YNCJ0006W"; gene_biotype "ncRNA"; +chrX SGD transcript 204735 204806 . + . transcript_id "YNCJ0006W_tRNA"; gene_id "YNCJ0006W"; transcript_biotype "ncRNA"; +chrX SGD exon 204735 204806 . + . transcript_id "YNCJ0006W_tRNA"; gene_id "YNCJ0006W"; +chrX SGD gene 205257 207600 . + . gene_id "YJL112W"; gene_biotype "protein_coding"; +chrX SGD transcript 205257 207600 . + . transcript_id "YJL112W_id001"; gene_id "YJL112W"; gene_name "MDV1"; transcript_biotype "protein_coding"; +chrX SGD exon 205257 207600 . + . transcript_id "YJL112W_id001"; gene_id "YJL112W"; gene_name "MDV1"; +chrX SGD transcript 205305 207449 . + . transcript_id "YJL112W_id002"; gene_id "YJL112W"; gene_name "MDV1"; transcript_biotype "protein_coding"; +chrX SGD exon 205305 207449 . + 0 transcript_id "YJL112W_id002"; gene_name "MDV1"; gene_id "YJL112W"; +chrX SGD gene 207801 209719 . + . gene_id "YJL111W"; gene_biotype "protein_coding"; +chrX SGD transcript 207801 209719 . + . transcript_id "YJL111W_id003"; gene_id "YJL111W"; gene_name "CCT7"; transcript_biotype "protein_coding"; +chrX SGD exon 207801 209719 . + . transcript_id "YJL111W_id003"; gene_id "YJL111W"; gene_name "CCT7"; +chrX SGD transcript 207877 209529 . + . transcript_id "YJL111W_id001"; gene_id "YJL111W"; gene_name "CCT7"; transcript_biotype "protein_coding"; +chrX SGD exon 207877 209529 . + 0 transcript_id "YJL111W_id001"; gene_name "CCT7"; gene_id "YJL111W"; +chrX SGD gene 209793 211675 . - . gene_id "YJL110C"; gene_biotype "protein_coding"; +chrX SGD transcript 209793 211675 . - . transcript_id "YJL110C_id006"; gene_id "YJL110C"; gene_name "GZF3"; transcript_biotype "protein_coding"; +chrX SGD exon 209793 211675 . - . transcript_id "YJL110C_id006"; gene_id "YJL110C"; gene_name "GZF3"; +chrX SGD transcript 209922 211577 . - . transcript_id "YJL110C_id001"; gene_id "YJL110C"; gene_name "GZF3"; transcript_biotype "protein_coding"; +chrX SGD exon 209922 211577 . - 0 transcript_id "YJL110C_id001"; gene_name "GZF3"; gene_id "YJL110C"; +chrX SGD gene 212000 217309 . - . gene_id "YJL109C"; gene_biotype "protein_coding"; +chrX SGD transcript 212000 217309 . - . transcript_id "YJL109C_mRNA"; gene_id "YJL109C"; gene_name "UTP10"; transcript_biotype "protein_coding"; +chrX SGD CDS 212000 217309 . - 0 transcript_id "YJL109C_mRNA"; gene_name "UTP10"; gene_id "YJL109C"; +chrX SGD gene 217474 219184 . - . gene_id "YJL108C"; gene_biotype "protein_coding"; +chrX SGD transcript 217474 219184 . - . transcript_id "YJL108C_id002"; gene_id "YJL108C"; gene_name "PRM10"; transcript_biotype "protein_coding"; +chrX SGD exon 217474 219184 . - . transcript_id "YJL108C_id002"; gene_id "YJL108C"; gene_name "PRM10"; +chrX SGD transcript 217705 218856 . - . transcript_id "YJL108C_id001"; gene_id "YJL108C"; gene_name "PRM10"; transcript_biotype "protein_coding"; +chrX SGD exon 217705 218856 . - 0 transcript_id "YJL108C_id001"; gene_name "PRM10"; gene_id "YJL108C"; +chrX SGD gene 218853 220016 . - . gene_id "YJL107C"; gene_biotype "protein_coding"; +chrX SGD transcript 218853 220016 . - . transcript_id "YJL107C_mRNA"; gene_id "YJL107C"; transcript_biotype "protein_coding"; +chrX SGD CDS 218853 220016 . - 0 transcript_id "YJL107C_mRNA"; gene_id "YJL107C"; +chrX SGD gene 220764 223515 . + . gene_id "YJL106W"; gene_biotype "protein_coding"; +chrX SGD transcript 220764 223515 . + . transcript_id "YJL106W_id003"; gene_id "YJL106W"; gene_name "IME2"; transcript_biotype "protein_coding"; +chrX SGD exon 220764 223515 . + . transcript_id "YJL106W_id003"; gene_id "YJL106W"; gene_name "IME2"; +chrX SGD transcript 221390 223327 . + . transcript_id "YJL106W_id001"; gene_id "YJL106W"; gene_name "IME2"; transcript_biotype "protein_coding"; +chrX SGD exon 221390 223327 . + 0 transcript_id "YJL106W_id001"; gene_name "IME2"; gene_id "YJL106W"; +chrX SGD gene 225055 226737 . + . gene_id "YJL105W"; gene_biotype "protein_coding"; +chrX SGD transcript 225055 226737 . + . transcript_id "YJL105W_mRNA"; gene_id "YJL105W"; gene_name "SET4"; transcript_biotype "protein_coding"; +chrX SGD CDS 225055 226737 . + 0 transcript_id "YJL105W_mRNA"; gene_name "SET4"; gene_id "YJL105W"; +chrX SGD gene 226920 227937 . + . gene_id "YJL104W"; gene_biotype "protein_coding"; +chrX SGD transcript 226920 227937 . + . transcript_id "YJL104W_id002"; gene_id "YJL104W"; gene_name "PAM16"; transcript_biotype "protein_coding"; +chrX SGD exon 226920 227937 . + . transcript_id "YJL104W_id002"; gene_id "YJL104W"; gene_name "PAM16"; +chrX SGD transcript 227327 227776 . + . transcript_id "YJL104W_id001"; gene_id "YJL104W"; gene_name "PAM16"; transcript_biotype "protein_coding"; +chrX SGD exon 227327 227776 . + 0 transcript_id "YJL104W_id001"; gene_name "PAM16"; gene_id "YJL104W"; +chrX SGD gene 228094 228479 . - . gene_id "YNCJ0007C"; gene_biotype "ncRNA"; +chrX SGD transcript 228094 228479 . - . transcript_id "YNCJ0007C_snoRNA"; gene_id "YNCJ0007C"; gene_name "SNR37"; transcript_biotype "ncRNA"; +chrX SGD exon 228094 228479 . - . transcript_id "YNCJ0007C_snoRNA"; gene_name "SNR37"; gene_id "YNCJ0007C"; +chrX SGD gene 228831 231085 . - . gene_id "YJL103C"; gene_biotype "protein_coding"; +chrX SGD transcript 228831 231085 . - . transcript_id "YJL103C_id001"; gene_id "YJL103C"; gene_name "GSM1"; transcript_biotype "protein_coding"; +chrX SGD exon 228831 231085 . - . transcript_id "YJL103C_id001"; gene_id "YJL103C"; gene_name "GSM1"; +chrX SGD transcript 229025 230881 . - . transcript_id "YJL103C_id002"; gene_id "YJL103C"; gene_name "GSM1"; transcript_biotype "protein_coding"; +chrX SGD exon 229025 230881 . - 0 transcript_id "YJL103C_id002"; gene_name "GSM1"; gene_id "YJL103C"; +chrX SGD gene 231259 233875 . + . gene_id "YJL102W"; gene_biotype "protein_coding"; +chrX SGD transcript 231259 233875 . + . transcript_id "YJL102W_id006"; gene_id "YJL102W"; gene_name "MEF2"; transcript_biotype "protein_coding"; +chrX SGD exon 231259 233875 . + . transcript_id "YJL102W_id006"; gene_id "YJL102W"; gene_name "MEF2"; +chrX SGD transcript 231301 233760 . + . transcript_id "YJL102W_id001"; gene_id "YJL102W"; gene_name "MEF2"; transcript_biotype "protein_coding"; +chrX SGD exon 231301 233760 . + 0 transcript_id "YJL102W_id001"; gene_name "MEF2"; gene_id "YJL102W"; +chrX SGD gene 233939 234011 . + . gene_id "YNCJ0008W"; gene_biotype "ncRNA"; +chrX SGD transcript 233939 234011 . + . transcript_id "YNCJ0008W_tRNA"; gene_id "YNCJ0008W"; transcript_biotype "ncRNA"; +chrX SGD exon 233939 234011 . + . transcript_id "YNCJ0008W_tRNA"; gene_id "YNCJ0008W"; +chrX SGD gene 234002 236494 . - . gene_id "YJL101C"; gene_biotype "protein_coding"; +chrX SGD transcript 234002 236494 . - . transcript_id "YJL101C_id001"; gene_id "YJL101C"; gene_name "GSH1"; transcript_biotype "protein_coding"; +chrX SGD exon 234002 236494 . - . transcript_id "YJL101C_id001"; gene_id "YJL101C"; gene_name "GSH1"; +chrX SGD transcript 234320 236356 . - . transcript_id "YJL101C_id002"; gene_id "YJL101C"; gene_name "GSH1"; transcript_biotype "protein_coding"; +chrX SGD exon 234320 236356 . - 0 transcript_id "YJL101C_id002"; gene_name "GSH1"; gene_id "YJL101C"; +chrX SGD gene 236920 239167 . + . gene_id "YJL100W"; gene_biotype "protein_coding"; +chrX SGD transcript 236920 239167 . + . transcript_id "YJL100W_id003"; gene_id "YJL100W"; gene_name "LSB6"; transcript_biotype "protein_coding"; +chrX SGD exon 236920 239167 . + . transcript_id "YJL100W_id003"; gene_id "YJL100W"; gene_name "LSB6"; +chrX SGD transcript 237263 239086 . + . transcript_id "YJL100W_id001"; gene_id "YJL100W"; gene_name "LSB6"; transcript_biotype "protein_coding"; +chrX SGD exon 237263 239086 . + 0 transcript_id "YJL100W_id001"; gene_name "LSB6"; gene_id "YJL100W"; +chrX SGD gene 239414 241654 . + . gene_id "YJL099W"; gene_biotype "protein_coding"; +chrX SGD transcript 239414 241654 . + . transcript_id "YJL099W_mRNA"; gene_id "YJL099W"; gene_name "CHS6"; transcript_biotype "protein_coding"; +chrX SGD CDS 239414 241654 . + 0 transcript_id "YJL099W_mRNA"; gene_name "CHS6"; gene_id "YJL099W"; +chrX SGD gene 242082 245258 . + . gene_id "YJL098W"; gene_biotype "protein_coding"; +chrX SGD transcript 242082 245258 . + . transcript_id "YJL098W_id001"; gene_id "YJL098W"; gene_name "SAP185"; transcript_biotype "protein_coding"; +chrX SGD exon 242082 245258 . + 0 transcript_id "YJL098W_id001"; gene_name "SAP185"; gene_id "YJL098W"; +chrX SGD gene 245490 246339 . + . gene_id "YJL097W"; gene_biotype "protein_coding"; +chrX SGD transcript 245490 246339 . + . transcript_id "YJL097W_id001"; gene_id "YJL097W"; gene_name "PHS1"; transcript_biotype "protein_coding"; +chrX SGD exon 245490 246339 . + . transcript_id "YJL097W_id001"; gene_id "YJL097W"; gene_name "PHS1"; +chrX SGD transcript 245591 246244 . + . transcript_id "YJL097W_id002"; gene_id "YJL097W"; gene_name "PHS1"; transcript_biotype "protein_coding"; +chrX SGD exon 245591 246244 . + 0 transcript_id "YJL097W_id002"; gene_name "PHS1"; gene_id "YJL097W"; +chrX SGD gene 246410 247066 . + . gene_id "YJL096W"; gene_biotype "protein_coding"; +chrX SGD transcript 246410 247066 . + . transcript_id "YJL096W_id004"; gene_id "YJL096W"; gene_name "MRPL49"; transcript_biotype "protein_coding"; +chrX SGD exon 246410 247066 . + . transcript_id "YJL096W_id004"; gene_id "YJL096W"; gene_name "MRPL49"; +chrX SGD transcript 246490 246975 . + . transcript_id "YJL096W_id001"; gene_id "YJL096W"; gene_name "MRPL49"; transcript_biotype "protein_coding"; +chrX SGD exon 246490 246975 . + 0 transcript_id "YJL096W_id001"; gene_name "MRPL49"; gene_id "YJL096W"; +chrX SGD gene 247255 251691 . + . gene_id "YJL095W"; gene_biotype "protein_coding"; +chrX SGD transcript 247255 251691 . + . transcript_id "YJL095W_mRNA"; gene_id "YJL095W"; gene_name "BCK1"; transcript_biotype "protein_coding"; +chrX SGD CDS 247255 251691 . + 0 transcript_id "YJL095W_mRNA"; gene_name "BCK1"; gene_id "YJL095W"; +chrX SGD gene 251658 254487 . - . gene_id "YJL094C"; gene_biotype "protein_coding"; +chrX SGD transcript 251658 254487 . - . transcript_id "YJL094C_id001"; gene_id "YJL094C"; gene_name "KHA1"; transcript_biotype "protein_coding"; +chrX SGD exon 251658 254487 . - . transcript_id "YJL094C_id001"; gene_id "YJL094C"; gene_name "KHA1"; +chrX SGD transcript 251821 254442 . - . transcript_id "YJL094C_id002"; gene_id "YJL094C"; gene_name "KHA1"; transcript_biotype "protein_coding"; +chrX SGD exon 251821 254442 . - 0 transcript_id "YJL094C_id002"; gene_name "KHA1"; gene_id "YJL094C"; +chrX SGD gene 254737 256812 . - . gene_id "YJL093C"; gene_biotype "protein_coding"; +chrX SGD transcript 254737 256812 . - . transcript_id "YJL093C_mRNA"; gene_id "YJL093C"; gene_name "TOK1"; transcript_biotype "protein_coding"; +chrX SGD CDS 254737 256812 . - 0 transcript_id "YJL093C_mRNA"; gene_name "TOK1"; gene_id "YJL093C"; +chrX SGD gene 257423 260947 . + . gene_id "YJL092W"; gene_biotype "protein_coding"; +chrX SGD transcript 257423 260947 . + . transcript_id "YJL092W_id001"; gene_id "YJL092W"; gene_name "SRS2"; transcript_biotype "protein_coding"; +chrX SGD exon 257423 260947 . + 0 transcript_id "YJL092W_id001"; gene_name "SRS2"; gene_id "YJL092W"; +chrX SGD gene 260677 262569 . - . gene_id "YJL091C"; gene_biotype "protein_coding"; +chrX SGD transcript 260677 262569 . - . transcript_id "YJL091C_id003"; gene_id "YJL091C"; gene_name "GWT1"; transcript_biotype "protein_coding"; +chrX SGD exon 260677 262569 . - . transcript_id "YJL091C_id003"; gene_id "YJL091C"; gene_name "GWT1"; +chrX SGD transcript 261080 262552 . - . transcript_id "YJL091C_id001"; gene_id "YJL091C"; gene_name "GWT1"; transcript_biotype "protein_coding"; +chrX SGD exon 261080 262552 . - 0 transcript_id "YJL091C_id001"; gene_name "GWT1"; gene_id "YJL091C"; +chrX SGD gene 262674 265096 . - . gene_id "YJL090C"; gene_biotype "protein_coding"; +chrX SGD transcript 262674 265096 . - . transcript_id "YJL090C_id001"; gene_id "YJL090C"; gene_name "DPB11"; transcript_biotype "protein_coding"; +chrX SGD exon 262674 265096 . - . transcript_id "YJL090C_id001"; gene_id "YJL090C"; gene_name "DPB11"; +chrX SGD transcript 262757 265051 . - . transcript_id "YJL090C_id002"; gene_id "YJL090C"; gene_name "DPB11"; transcript_biotype "protein_coding"; +chrX SGD exon 262757 265051 . - 0 transcript_id "YJL090C_id002"; gene_name "DPB11"; gene_id "YJL090C"; +chrX SGD gene 265926 268415 . + . gene_id "YJL089W"; gene_biotype "protein_coding"; +chrX SGD transcript 265926 268415 . + . transcript_id "YJL089W_mRNA"; gene_id "YJL089W"; gene_name "SIP4"; transcript_biotype "protein_coding"; +chrX SGD CDS 265926 268415 . + 0 transcript_id "YJL089W_mRNA"; gene_name "SIP4"; gene_id "YJL089W"; +chrX SGD gene 268777 270047 . + . gene_id "YJL088W"; gene_biotype "protein_coding"; +chrX SGD transcript 268777 270047 . + . transcript_id "YJL088W_id001"; gene_id "YJL088W"; gene_name "ARG3"; transcript_biotype "protein_coding"; +chrX SGD exon 268777 270047 . + . transcript_id "YJL088W_id001"; gene_id "YJL088W"; gene_name "ARG3"; +chrX SGD transcript 268799 269815 . + . transcript_id "YJL088W_id022"; gene_id "YJL088W"; gene_name "ARG3"; transcript_biotype "protein_coding"; +chrX SGD exon 268799 269815 . + 0 transcript_id "YJL088W_id022"; gene_name "ARG3"; gene_id "YJL088W"; +chrX SGD gene 269795 272610 . - . gene_id "YJL087C"; gene_biotype "protein_coding"; +chrX SGD transcript 269795 272610 . - . transcript_id "YJL087C_id001"; gene_id "YJL087C"; gene_name "TRL1"; transcript_biotype "protein_coding"; +chrX SGD exon 269795 272610 . - . transcript_id "YJL087C_id001"; gene_id "YJL087C"; gene_name "TRL1"; +chrX SGD transcript 270002 272485 . - . transcript_id "YJL087C_id003"; gene_id "YJL087C"; gene_name "TRL1"; transcript_biotype "protein_coding"; +chrX SGD exon 270002 272485 . - 0 transcript_id "YJL087C_id003"; gene_name "TRL1"; gene_id "YJL087C"; +chrX SGD gene 272478 272846 . - . gene_id "YJL086C"; gene_biotype "protein_coding"; +chrX SGD transcript 272478 272846 . - . transcript_id "YJL086C_mRNA"; gene_id "YJL086C"; transcript_biotype "protein_coding"; +chrX SGD CDS 272478 272846 . - 0 transcript_id "YJL086C_mRNA"; gene_id "YJL086C"; +chrX SGD gene 272827 274698 . + . gene_id "YJL085W"; gene_biotype "protein_coding"; +chrX SGD transcript 272827 274698 . + . transcript_id "YJL085W_id001"; gene_id "YJL085W"; gene_name "EXO70"; transcript_biotype "protein_coding"; +chrX SGD exon 272827 274698 . + 0 transcript_id "YJL085W_id001"; gene_name "EXO70"; gene_id "YJL085W"; +chrX SGD gene 274717 278115 . - . gene_id "YJL084C"; gene_biotype "protein_coding"; +chrX SGD transcript 274717 278115 . - . transcript_id "YJL084C_id002"; gene_id "YJL084C"; gene_name "ALY2"; transcript_biotype "protein_coding"; +chrX SGD exon 274717 278115 . - . transcript_id "YJL084C_id002"; gene_id "YJL084C"; gene_name "ALY2"; +chrX SGD transcript 274862 278002 . - . transcript_id "YJL084C_id001"; gene_id "YJL084C"; gene_name "ALY2"; transcript_biotype "protein_coding"; +chrX SGD exon 274862 278002 . - 0 transcript_id "YJL084C_id001"; gene_name "ALY2"; gene_id "YJL084C"; +chrX SGD gene 278337 281109 . + . gene_id "YJL083W"; gene_biotype "protein_coding"; +chrX SGD transcript 278337 281109 . + . transcript_id "YJL083W_id001"; gene_id "YJL083W"; gene_name "TAX4"; transcript_biotype "protein_coding"; +chrX SGD exon 278337 281109 . + . transcript_id "YJL083W_id001"; gene_id "YJL083W"; gene_name "TAX4"; +chrX SGD transcript 278841 280655 . + . transcript_id "YJL083W_id002"; gene_id "YJL083W"; gene_name "TAX4"; transcript_biotype "protein_coding"; +chrX SGD exon 278841 280655 . + 0 transcript_id "YJL083W_id002"; gene_name "TAX4"; gene_id "YJL083W"; +chrX SGD gene 281185 283380 . + . gene_id "YJL082W"; gene_biotype "protein_coding"; +chrX SGD transcript 281185 283380 . + . transcript_id "YJL082W_id001"; gene_id "YJL082W"; gene_name "IML2"; transcript_biotype "protein_coding"; +chrX SGD exon 281185 283380 . + 0 transcript_id "YJL082W_id001"; gene_name "IML2"; gene_id "YJL082W"; +chrX SGD gene 283397 285294 . - . gene_id "YJL081C"; gene_biotype "protein_coding"; +chrX SGD transcript 283397 285294 . - . transcript_id "YJL081C_id001"; gene_id "YJL081C"; gene_name "ARP4"; transcript_biotype "protein_coding"; +chrX SGD exon 283397 285294 . - . transcript_id "YJL081C_id001"; gene_id "YJL081C"; gene_name "ARP4"; +chrX SGD transcript 283802 285271 . - . transcript_id "YJL081C_id002"; gene_id "YJL081C"; gene_name "ARP4"; transcript_biotype "protein_coding"; +chrX SGD exon 283802 285271 . - 0 transcript_id "YJL081C_id002"; gene_name "ARP4"; gene_id "YJL081C"; +chrX SGD gene 285449 289412 . - . gene_id "YJL080C"; gene_biotype "protein_coding"; +chrX SGD transcript 285449 289412 . - . transcript_id "YJL080C_id003"; gene_id "YJL080C"; gene_name "SCP160"; transcript_biotype "protein_coding"; +chrX SGD exon 285449 289412 . - . transcript_id "YJL080C_id003"; gene_id "YJL080C"; gene_name "SCP160"; +chrX SGD transcript 285558 289226 . - . transcript_id "YJL080C_id001"; gene_id "YJL080C"; gene_name "SCP160"; transcript_biotype "protein_coding"; +chrX SGD exon 285558 289226 . - 0 transcript_id "YJL080C_id001"; gene_name "SCP160"; gene_id "YJL080C"; +chrX SGD gene 289691 291056 . - . gene_id "YJL079C"; gene_biotype "protein_coding"; +chrX SGD transcript 289691 291056 . - . transcript_id "YJL079C_id002"; gene_id "YJL079C"; gene_name "PRY1"; transcript_biotype "protein_coding"; +chrX SGD exon 289691 291056 . - . transcript_id "YJL079C_id002"; gene_id "YJL079C"; gene_name "PRY1"; +chrX SGD transcript 289875 290774 . - . transcript_id "YJL079C_id001"; gene_id "YJL079C"; gene_name "PRY1"; transcript_biotype "protein_coding"; +chrX SGD exon 289875 290774 . - 0 transcript_id "YJL079C_id001"; gene_name "PRY1"; gene_id "YJL079C"; +chrX SGD gene 290970 294062 . - . gene_id "YJL078C"; gene_biotype "protein_coding"; +chrX SGD transcript 290970 294062 . - . transcript_id "YJL078C_id004"; gene_id "YJL078C"; gene_name "PRY3"; transcript_biotype "protein_coding"; +chrX SGD exon 290970 294062 . - . transcript_id "YJL078C_id004"; gene_id "YJL078C"; gene_name "PRY3"; +chrX SGD transcript 291336 293981 . - . transcript_id "YJL078C_id001"; gene_id "YJL078C"; gene_name "PRY3"; transcript_biotype "protein_coding"; +chrX SGD exon 291336 293981 . - 0 transcript_id "YJL078C_id001"; gene_name "PRY3"; gene_id "YJL078C"; +chrX SGD gene 292044 294320 . + . gene_id "YJL077W-B"; gene_biotype "protein_coding"; +chrX SGD transcript 292044 294320 . + . transcript_id "YJL077W-B_id004"; gene_id "YJL077W-B"; transcript_biotype "protein_coding"; +chrX SGD exon 292044 294320 . + . transcript_id "YJL077W-B_id004"; gene_id "YJL077W-B"; +chrX SGD transcript 294047 294145 . + . transcript_id "YJL077W-B_id001"; gene_id "YJL077W-B"; transcript_biotype "protein_coding"; +chrX SGD exon 294047 294145 . + 0 transcript_id "YJL077W-B_id001"; gene_id "YJL077W-B"; +chrX SGD gene 294142 295051 . + . gene_id "YJL077W-A"; gene_biotype "protein_coding"; +chrX SGD transcript 294142 295051 . + . transcript_id "YJL077W-A_id001"; gene_id "YJL077W-A"; transcript_biotype "protein_coding"; +chrX SGD exon 294142 295051 . + . transcript_id "YJL077W-A_id001"; gene_id "YJL077W-A"; +chrX SGD gene 294666 295061 . - . gene_id "YJL077C"; gene_biotype "protein_coding"; +chrX SGD transcript 294666 295061 . - . transcript_id "YJL077C_mRNA"; gene_id "YJL077C"; gene_name "ICS3"; transcript_biotype "protein_coding"; +chrX SGD CDS 294666 295061 . - 0 transcript_id "YJL077C_mRNA"; gene_name "ICS3"; gene_id "YJL077C"; +chrX SGD transcript 294799 294885 . + . transcript_id "YJL077W-A_id003"; gene_id "YJL077W-A"; transcript_biotype "protein_coding"; +chrX SGD exon 294799 294885 . + 0 transcript_id "YJL077W-A_id003"; gene_id "YJL077W-A"; +chrX SGD gene 295208 298985 . + . gene_id "YJL076W"; gene_biotype "protein_coding"; +chrX SGD transcript 295208 298985 . + . transcript_id "YJL076W_id002"; gene_id "YJL076W"; gene_name "NET1"; transcript_biotype "protein_coding"; +chrX SGD exon 295208 298985 . + . transcript_id "YJL076W_id002"; gene_id "YJL076W"; gene_name "NET1"; +chrX SGD transcript 295245 298814 . + . transcript_id "YJL076W_id001"; gene_id "YJL076W"; gene_name "NET1"; transcript_biotype "protein_coding"; +chrX SGD exon 295245 298814 . + 0 transcript_id "YJL076W_id001"; gene_name "NET1"; gene_id "YJL076W"; +chrX SGD gene 298460 298876 . - . gene_id "YJL075C"; gene_biotype "protein_coding"; +chrX SGD transcript 298460 298876 . - . transcript_id "YJL075C_mRNA"; gene_id "YJL075C"; gene_name "APQ13"; transcript_biotype "protein_coding"; +chrX SGD CDS 298460 298876 . - 0 transcript_id "YJL075C_mRNA"; gene_name "APQ13"; gene_id "YJL075C"; +chrX SGD gene 299157 302849 . - . gene_id "YJL074C"; gene_biotype "protein_coding"; +chrX SGD transcript 299157 302849 . - . transcript_id "YJL074C_mRNA"; gene_id "YJL074C"; gene_name "SMC3"; transcript_biotype "protein_coding"; +chrX SGD CDS 299157 302849 . - 0 transcript_id "YJL074C_mRNA"; gene_name "SMC3"; gene_id "YJL074C"; +chrX SGD gene 303181 305118 . + . gene_id "YJL073W"; gene_biotype "protein_coding"; +chrX SGD transcript 303181 305118 . + . transcript_id "YJL073W_id001"; gene_id "YJL073W"; gene_name "JEM1"; transcript_biotype "protein_coding"; +chrX SGD exon 303181 305118 . + 0 transcript_id "YJL073W_id001"; gene_name "JEM1"; gene_id "YJL073W"; +chrX SGD gene 304627 305915 . - . gene_id "YJL072C"; gene_biotype "protein_coding"; +chrX SGD transcript 304627 305915 . - . transcript_id "YJL072C_id004"; gene_id "YJL072C"; gene_name "PSF2"; transcript_biotype "protein_coding"; +chrX SGD exon 304627 305915 . - . transcript_id "YJL072C_id004"; gene_id "YJL072C"; gene_name "PSF2"; +chrX SGD transcript 305221 305862 . - . transcript_id "YJL072C_id001"; gene_id "YJL072C"; gene_name "PSF2"; transcript_biotype "protein_coding"; +chrX SGD exon 305221 305862 . - 0 transcript_id "YJL072C_id001"; gene_name "PSF2"; gene_id "YJL072C"; +chrX SGD gene 306039 307975 . + . gene_id "YJL071W"; gene_biotype "protein_coding"; +chrX SGD transcript 306039 307975 . + . transcript_id "YJL071W_id002"; gene_id "YJL071W"; gene_name "ARG2"; transcript_biotype "protein_coding"; +chrX SGD exon 306039 307975 . + . transcript_id "YJL071W_id002"; gene_id "YJL071W"; gene_name "ARG2"; +chrX SGD transcript 306132 307856 . + . transcript_id "YJL071W_id001"; gene_id "YJL071W"; gene_name "ARG2"; transcript_biotype "protein_coding"; +chrX SGD exon 306132 307856 . + 0 transcript_id "YJL071W_id001"; gene_name "ARG2"; gene_id "YJL071W"; +chrX SGD gene 307889 310683 . - . gene_id "YJL070C"; gene_biotype "protein_coding"; +chrX SGD transcript 307889 310683 . - . transcript_id "YJL070C_id003"; gene_id "YJL070C"; transcript_biotype "protein_coding"; +chrX SGD exon 307889 310683 . - . transcript_id "YJL070C_id003"; gene_id "YJL070C"; +chrX SGD transcript 307971 310637 . - . transcript_id "YJL070C_id001"; gene_id "YJL070C"; transcript_biotype "protein_coding"; +chrX SGD exon 307971 310637 . - 0 transcript_id "YJL070C_id001"; gene_id "YJL070C"; +chrX SGD gene 310833 312747 . - . gene_id "YJL069C"; gene_biotype "protein_coding"; +chrX SGD transcript 310833 312747 . - . transcript_id "YJL069C_id002"; gene_id "YJL069C"; gene_name "UTP18"; transcript_biotype "protein_coding"; +chrX SGD exon 310833 312747 . - . transcript_id "YJL069C_id002"; gene_id "YJL069C"; gene_name "UTP18"; +chrX SGD transcript 310922 312706 . - . transcript_id "YJL069C_id001"; gene_id "YJL069C"; gene_name "UTP18"; transcript_biotype "protein_coding"; +chrX SGD exon 310922 312706 . - 0 transcript_id "YJL069C_id001"; gene_name "UTP18"; gene_id "YJL069C"; +chrX SGD gene 312774 313979 . - . gene_id "YJL068C"; gene_biotype "protein_coding"; +chrX SGD transcript 312774 313979 . - . transcript_id "YJL068C_id001"; gene_id "YJL068C"; transcript_biotype "protein_coding"; +chrX SGD exon 312774 313979 . - . transcript_id "YJL068C_id001"; gene_id "YJL068C"; +chrX SGD transcript 313016 313915 . - . transcript_id "YJL068C_id002"; gene_id "YJL068C"; transcript_biotype "protein_coding"; +chrX SGD exon 313016 313915 . - 0 transcript_id "YJL068C_id002"; gene_id "YJL068C"; +chrX SGD gene 313832 314910 . - . gene_id "YJL066C"; gene_biotype "protein_coding"; +chrX SGD transcript 313832 314910 . - . transcript_id "YJL066C_id005"; gene_id "YJL066C"; gene_name "MPM1"; transcript_biotype "protein_coding"; +chrX SGD exon 313832 314910 . - . transcript_id "YJL066C_id005"; gene_id "YJL066C"; gene_name "MPM1"; +chrX SGD gene 314084 314434 . + . gene_id "YJL067W"; gene_biotype "protein_coding"; +chrX SGD transcript 314084 314434 . + . transcript_id "YJL067W_mRNA"; gene_id "YJL067W"; transcript_biotype "protein_coding"; +chrX SGD CDS 314084 314434 . + 0 transcript_id "YJL067W_mRNA"; gene_id "YJL067W"; +chrX SGD transcript 314114 314872 . - . transcript_id "YJL066C_id001"; gene_id "YJL066C"; gene_name "MPM1"; transcript_biotype "protein_coding"; +chrX SGD exon 314114 314872 . - 0 transcript_id "YJL066C_id001"; gene_name "MPM1"; gene_id "YJL066C"; +chrX SGD gene 314939 316326 . - . gene_id "YJL065C"; gene_biotype "protein_coding"; +chrX SGD transcript 314939 316326 . - . transcript_id "YJL065C_id001"; gene_id "YJL065C"; gene_name "DLS1"; transcript_biotype "protein_coding"; +chrX SGD exon 314939 316326 . - . transcript_id "YJL065C_id001"; gene_id "YJL065C"; gene_name "DLS1"; +chrX SGD transcript 315054 315557 . - . transcript_id "YJL065C_id004"; gene_id "YJL065C"; gene_name "DLS1"; transcript_biotype "protein_coding"; +chrX SGD exon 315054 315557 . - 0 transcript_id "YJL065C_id004"; gene_name "DLS1"; gene_id "YJL065C"; +chrX SGD gene 315175 315570 . + . gene_id "YJL064W"; gene_biotype "protein_coding"; +chrX SGD transcript 315175 315570 . + . transcript_id "YJL064W_mRNA"; gene_id "YJL064W"; transcript_biotype "protein_coding"; +chrX SGD CDS 315175 315570 . + 0 transcript_id "YJL064W_mRNA"; gene_id "YJL064W"; +chrX SGD gene 315680 316827 . - . gene_id "YJL063C"; gene_biotype "protein_coding"; +chrX SGD transcript 315680 316827 . - . transcript_id "YJL063C_id001"; gene_id "YJL063C"; gene_name "MRPL8"; transcript_biotype "protein_coding"; +chrX SGD exon 315680 316827 . - . transcript_id "YJL063C_id001"; gene_id "YJL063C"; gene_name "MRPL8"; +chrX SGD transcript 315759 316475 . - . transcript_id "YJL063C_id002"; gene_id "YJL063C"; gene_name "MRPL8"; transcript_biotype "protein_coding"; +chrX SGD exon 315759 316475 . - 0 transcript_id "YJL063C_id002"; gene_name "MRPL8"; gene_id "YJL063C"; +chrX SGD gene 316682 317272 . + . gene_id "YJL062W-A"; gene_biotype "protein_coding"; +chrX SGD transcript 316682 317272 . + . transcript_id "YJL062W-A_id001"; gene_id "YJL062W-A"; gene_name "COA3"; transcript_biotype "protein_coding"; +chrX SGD exon 316682 317272 . + . transcript_id "YJL062W-A_id001"; gene_id "YJL062W-A"; gene_name "COA3"; +chrX SGD transcript 316723 316980 . + . transcript_id "YJL062W-A_id003"; gene_id "YJL062W-A"; gene_name "COA3"; transcript_biotype "protein_coding"; +chrX SGD exon 316723 316980 . + 0 transcript_id "YJL062W-A_id003"; gene_name "COA3"; gene_id "YJL062W-A"; +chrX SGD gene 317235 319865 . + . gene_id "YJL062W"; gene_biotype "protein_coding"; +chrX SGD transcript 317235 319865 . + . transcript_id "YJL062W_id001"; gene_id "YJL062W"; gene_name "LAS21"; transcript_biotype "protein_coding"; +chrX SGD exon 317235 319865 . + . transcript_id "YJL062W_id001"; gene_id "YJL062W"; gene_name "LAS21"; +chrX SGD transcript 317284 319776 . + . transcript_id "YJL062W_id004"; gene_id "YJL062W"; gene_name "LAS21"; transcript_biotype "protein_coding"; +chrX SGD exon 317284 319776 . + 0 transcript_id "YJL062W_id004"; gene_name "LAS21"; gene_id "YJL062W"; +chrX SGD gene 319968 322441 . + . gene_id "YJL061W"; gene_biotype "protein_coding"; +chrX SGD transcript 319968 322441 . + . transcript_id "YJL061W_id009"; gene_id "YJL061W"; gene_name "NUP82"; transcript_biotype "protein_coding"; +chrX SGD exon 319968 322441 . + . transcript_id "YJL061W_id009"; gene_id "YJL061W"; gene_name "NUP82"; +chrX SGD transcript 320016 322157 . + . transcript_id "YJL061W_id001"; gene_id "YJL061W"; gene_name "NUP82"; transcript_biotype "protein_coding"; +chrX SGD exon 320016 322157 . + 0 transcript_id "YJL061W_id001"; gene_name "NUP82"; gene_id "YJL061W"; +chrX SGD gene 323327 324848 . + . gene_id "YJL060W"; gene_biotype "protein_coding"; +chrX SGD transcript 323327 324848 . + . transcript_id "YJL060W_id001"; gene_id "YJL060W"; gene_name "BNA3"; transcript_biotype "protein_coding"; +chrX SGD exon 323327 324848 . + . transcript_id "YJL060W_id001"; gene_id "YJL060W"; gene_name "BNA3"; +chrX SGD transcript 323386 324720 . + . transcript_id "YJL060W_id002"; gene_id "YJL060W"; gene_name "BNA3"; transcript_biotype "protein_coding"; +chrX SGD exon 323386 324720 . + 0 transcript_id "YJL060W_id002"; gene_name "BNA3"; gene_id "YJL060W"; +chrX SGD gene 324909 326275 . + . gene_id "YJL059W"; gene_biotype "protein_coding"; +chrX SGD transcript 324909 326275 . + . transcript_id "YJL059W_id002"; gene_id "YJL059W"; gene_name "YHC3"; transcript_biotype "protein_coding"; +chrX SGD exon 324909 326275 . + . transcript_id "YJL059W_id002"; gene_id "YJL059W"; gene_name "YHC3"; +chrX SGD transcript 324964 326190 . + . transcript_id "YJL059W_id001"; gene_id "YJL059W"; gene_name "YHC3"; transcript_biotype "protein_coding"; +chrX SGD exon 324964 326190 . + 0 transcript_id "YJL059W_id001"; gene_name "YHC3"; gene_id "YJL059W"; +chrX SGD gene 326212 327906 . - . gene_id "YJL058C"; gene_biotype "protein_coding"; +chrX SGD transcript 326212 327906 . - . transcript_id "YJL058C_id008"; gene_id "YJL058C"; gene_name "BIT61"; transcript_biotype "protein_coding"; +chrX SGD exon 326212 327906 . - . transcript_id "YJL058C_id008"; gene_id "YJL058C"; gene_name "BIT61"; +chrX SGD transcript 326242 327873 . - . transcript_id "YJL058C_id001"; gene_id "YJL058C"; gene_name "BIT61"; transcript_biotype "protein_coding"; +chrX SGD exon 326242 327873 . - 0 transcript_id "YJL058C_id001"; gene_name "BIT61"; gene_id "YJL058C"; +chrX SGD gene 328061 330196 . - . gene_id "YJL057C"; gene_biotype "protein_coding"; +chrX SGD transcript 328061 330196 . - . transcript_id "YJL057C_id003"; gene_id "YJL057C"; gene_name "IKS1"; transcript_biotype "protein_coding"; +chrX SGD exon 328061 330196 . - . transcript_id "YJL057C_id003"; gene_id "YJL057C"; gene_name "IKS1"; +chrX SGD transcript 328118 330121 . - . transcript_id "YJL057C_id001"; gene_id "YJL057C"; gene_name "IKS1"; transcript_biotype "protein_coding"; +chrX SGD exon 328118 330121 . - 0 transcript_id "YJL057C_id001"; gene_name "IKS1"; gene_id "YJL057C"; +chrX SGD gene 330431 333073 . - . gene_id "YJL056C"; gene_biotype "protein_coding"; +chrX SGD transcript 330431 333073 . - . transcript_id "YJL056C_id001"; gene_id "YJL056C"; gene_name "ZAP1"; transcript_biotype "protein_coding"; +chrX SGD exon 330431 333073 . - 0 transcript_id "YJL056C_id001"; gene_name "ZAP1"; gene_id "YJL056C"; +chrX SGD gene 332954 334147 . + . gene_id "YJL055W"; gene_biotype "protein_coding"; +chrX SGD transcript 332954 334147 . + . transcript_id "YJL055W_id001"; gene_id "YJL055W"; gene_name "LOG1"; transcript_biotype "protein_coding"; +chrX SGD exon 332954 334147 . + . transcript_id "YJL055W_id001"; gene_id "YJL055W"; gene_name "LOG1"; +chrX SGD transcript 333357 334094 . + . transcript_id "YJL055W_id002"; gene_id "YJL055W"; gene_name "LOG1"; transcript_biotype "protein_coding"; +chrX SGD exon 333357 334094 . + 0 transcript_id "YJL055W_id002"; gene_name "LOG1"; gene_id "YJL055W"; +chrX SGD gene 334222 335881 . + . gene_id "YJL054W"; gene_biotype "protein_coding"; +chrX SGD transcript 334222 335881 . + . transcript_id "YJL054W_id001"; gene_id "YJL054W"; gene_name "TIM54"; transcript_biotype "protein_coding"; +chrX SGD exon 334222 335881 . + . transcript_id "YJL054W_id001"; gene_id "YJL054W"; gene_name "TIM54"; +chrX SGD transcript 334265 335701 . + . transcript_id "YJL054W_id003"; gene_id "YJL054W"; gene_name "TIM54"; transcript_biotype "protein_coding"; +chrX SGD exon 334265 335701 . + 0 transcript_id "YJL054W_id003"; gene_name "TIM54"; gene_id "YJL054W"; +chrX SGD gene 335828 337214 . + . gene_id "YJL053W"; gene_biotype "protein_coding"; +chrX SGD transcript 335828 337214 . + . transcript_id "YJL053W_id005"; gene_id "YJL053W"; gene_name "PEP8"; transcript_biotype "protein_coding"; +chrX SGD exon 335828 337214 . + . transcript_id "YJL053W_id005"; gene_id "YJL053W"; gene_name "PEP8"; +chrX SGD transcript 335898 337037 . + . transcript_id "YJL053W_id001"; gene_id "YJL053W"; gene_name "PEP8"; transcript_biotype "protein_coding"; +chrX SGD exon 335898 337037 . + 0 transcript_id "YJL053W_id001"; gene_name "PEP8"; gene_id "YJL053W"; +chrX SGD gene 337884 338003 . - . gene_id "YJL052C-A"; gene_biotype "protein_coding"; +chrX SGD transcript 337884 338003 . - . transcript_id "YJL052C-A_mRNA"; gene_id "YJL052C-A"; transcript_biotype "protein_coding"; +chrX SGD CDS 337884 338003 . - 0 transcript_id "YJL052C-A_mRNA"; gene_id "YJL052C-A"; +chrX SGD gene 338157 339406 . + . gene_id "YJL052W"; gene_biotype "protein_coding"; +chrX SGD transcript 338157 339406 . + . transcript_id "YJL052W_id004"; gene_id "YJL052W"; gene_name "TDH1"; transcript_biotype "protein_coding"; +chrX SGD exon 338157 339406 . + . transcript_id "YJL052W_id004"; gene_id "YJL052W"; gene_name "TDH1"; +chrX SGD transcript 338271 339269 . + . transcript_id "YJL052W_id001"; gene_id "YJL052W"; gene_name "TDH1"; transcript_biotype "protein_coding"; +chrX SGD exon 338271 339269 . + 0 transcript_id "YJL052W_id001"; gene_name "TDH1"; gene_id "YJL052W"; +chrX SGD gene 339712 342470 . + . gene_id "YJL051W"; gene_biotype "protein_coding"; +chrX SGD transcript 339712 342470 . + . transcript_id "YJL051W_id001"; gene_id "YJL051W"; gene_name "IRC8"; transcript_biotype "protein_coding"; +chrX SGD exon 339712 342470 . + . transcript_id "YJL051W_id001"; gene_id "YJL051W"; gene_name "IRC8"; +chrX SGD transcript 339787 342255 . + . transcript_id "YJL051W_id005"; gene_id "YJL051W"; gene_name "IRC8"; transcript_biotype "protein_coding"; +chrX SGD exon 339787 342255 . + 0 transcript_id "YJL051W_id005"; gene_name "IRC8"; gene_id "YJL051W"; +chrX SGD gene 342474 345836 . + . gene_id "YJL050W"; gene_biotype "protein_coding"; +chrX SGD transcript 342474 345836 . + . transcript_id "YJL050W_id001"; gene_id "YJL050W"; gene_name "MTR4"; transcript_biotype "protein_coding"; +chrX SGD exon 342474 345836 . + . transcript_id "YJL050W_id001"; gene_id "YJL050W"; gene_name "MTR4"; +chrX SGD transcript 342522 345743 . + . transcript_id "YJL050W_id002"; gene_id "YJL050W"; gene_name "MTR4"; transcript_biotype "protein_coding"; +chrX SGD exon 342522 345743 . + 0 transcript_id "YJL050W_id002"; gene_name "MTR4"; gene_id "YJL050W"; +chrX SGD gene 345950 347414 . + . gene_id "YJL049W"; gene_biotype "protein_coding"; +chrX SGD transcript 345950 347414 . + . transcript_id "YJL049W_id002"; gene_id "YJL049W"; gene_name "CHM7"; transcript_biotype "protein_coding"; +chrX SGD exon 345950 347414 . + . transcript_id "YJL049W_id002"; gene_id "YJL049W"; gene_name "CHM7"; +chrX SGD transcript 345973 347325 . + . transcript_id "YJL049W_id001"; gene_id "YJL049W"; gene_name "CHM7"; transcript_biotype "protein_coding"; +chrX SGD exon 345973 347325 . + 0 transcript_id "YJL049W_id001"; gene_name "CHM7"; gene_id "YJL049W"; +chrX SGD gene 347194 348729 . - . gene_id "YJL048C"; gene_biotype "protein_coding"; +chrX SGD transcript 347194 348729 . - . transcript_id "YJL048C_id001"; gene_id "YJL048C"; gene_name "UBX6"; transcript_biotype "protein_coding"; +chrX SGD exon 347194 348729 . - . transcript_id "YJL048C_id001"; gene_id "YJL048C"; gene_name "UBX6"; +chrX SGD transcript 347447 348637 . - . transcript_id "YJL048C_id002"; gene_id "YJL048C"; gene_name "UBX6"; transcript_biotype "protein_coding"; +chrX SGD exon 347447 348637 . - 0 transcript_id "YJL048C_id002"; gene_name "UBX6"; gene_id "YJL048C"; +chrX SGD gene 348573 349372 . - . gene_id "YJL047C-A"; gene_biotype "protein_coding"; +chrX SGD transcript 348573 349372 . - . transcript_id "YJL047C-A_id001"; gene_id "YJL047C-A"; transcript_biotype "protein_coding"; +chrX SGD exon 348573 349372 . - . transcript_id "YJL047C-A_id001"; gene_id "YJL047C-A"; +chrX SGD transcript 349044 349178 . - . transcript_id "YJL047C-A_id004"; gene_id "YJL047C-A"; transcript_biotype "protein_coding"; +chrX SGD exon 349044 349178 . - 0 transcript_id "YJL047C-A_id004"; gene_id "YJL047C-A"; +chrX SGD gene 349130 349233 . - . gene_id "YNCJ0009C"; gene_biotype "ncRNA"; +chrX SGD transcript 349130 349233 . - . transcript_id "YNCJ0009C_snoRNA"; gene_id "YNCJ0009C"; gene_name "SNR60"; transcript_biotype "ncRNA"; +chrX SGD exon 349130 349233 . - . transcript_id "YNCJ0009C_snoRNA"; gene_name "SNR60"; gene_id "YNCJ0009C"; +chrX SGD gene 349580 352108 . - . gene_id "YJL047C"; gene_biotype "protein_coding"; +chrX SGD transcript 349580 352108 . - . transcript_id "YJL047C_id001"; gene_id "YJL047C"; gene_name "RTT101"; transcript_biotype "protein_coding"; +chrX SGD exon 349580 352108 . - 0 transcript_id "YJL047C_id001"; gene_name "RTT101"; gene_id "YJL047C"; +chrX SGD gene 352383 353905 . + . gene_id "YJL046W"; gene_biotype "protein_coding"; +chrX SGD transcript 352383 353905 . + . transcript_id "YJL046W_id003"; gene_id "YJL046W"; gene_name "AIM22"; transcript_biotype "protein_coding"; +chrX SGD exon 352383 353905 . + . transcript_id "YJL046W_id003"; gene_id "YJL046W"; gene_name "AIM22"; +chrX SGD transcript 352386 353615 . + . transcript_id "YJL046W_id001"; gene_id "YJL046W"; gene_name "AIM22"; transcript_biotype "protein_coding"; +chrX SGD exon 352386 353615 . + 0 transcript_id "YJL046W_id001"; gene_name "AIM22"; gene_id "YJL046W"; +chrX SGD gene 354244 354332 . + . gene_id "YNCJ0010W"; gene_biotype "ncRNA"; +chrX SGD transcript 354244 354332 . + . transcript_id "YNCJ0010W_tRNA"; gene_id "YNCJ0010W"; gene_name "SUP7"; transcript_biotype "ncRNA"; +chrX SGD exon 354244 354282 . + . transcript_id "YNCJ0010W_tRNA"; gene_name "SUP7"; gene_id "YNCJ0010W"; +chrX SGD exon 354297 354332 . + . transcript_id "YNCJ0010W_tRNA"; gene_name "SUP7"; gene_id "YNCJ0010W"; +chrX SGD gene 355374 355445 . + . gene_id "YNCJ0011W"; gene_biotype "ncRNA"; +chrX SGD transcript 355374 355445 . + . transcript_id "YNCJ0011W_tRNA"; gene_id "YNCJ0011W"; transcript_biotype "ncRNA"; +chrX SGD exon 355374 355445 . + . transcript_id "YNCJ0011W_tRNA"; gene_id "YNCJ0011W"; +chrX SGD gene 355456 355527 . + . gene_id "YNCJ0012W"; gene_biotype "ncRNA"; +chrX SGD transcript 355456 355527 . + . transcript_id "YNCJ0012W_tRNA"; gene_id "YNCJ0012W"; transcript_biotype "ncRNA"; +chrX SGD exon 355456 355527 . + . transcript_id "YNCJ0012W_tRNA"; gene_id "YNCJ0012W"; +chrX SGD gene 356024 357928 . + . gene_id "YJL045W"; gene_biotype "protein_coding"; +chrX SGD transcript 356024 357928 . + . transcript_id "YJL045W_id001"; gene_id "YJL045W"; gene_name "SDH9"; transcript_biotype "protein_coding"; +chrX SGD exon 356024 357928 . + 0 transcript_id "YJL045W_id001"; gene_name "SDH9"; gene_id "YJL045W"; +chrX SGD gene 357892 359725 . - . gene_id "YJL044C"; gene_biotype "protein_coding"; +chrX SGD transcript 357892 359725 . - . transcript_id "YJL044C_id001"; gene_id "YJL044C"; gene_name "GYP6"; transcript_biotype "protein_coding"; +chrX SGD exon 357892 359725 . - . transcript_id "YJL044C_id001"; gene_id "YJL044C"; gene_name "GYP6"; +chrX SGD transcript 358300 359676 . - . transcript_id "YJL044C_id005"; gene_id "YJL044C"; gene_name "GYP6"; transcript_biotype "protein_coding"; +chrX SGD exon 358300 359676 . - 0 transcript_id "YJL044C_id005"; gene_name "GYP6"; gene_id "YJL044C"; +chrX SGD gene 360130 360903 . + . gene_id "YJL043W"; gene_biotype "protein_coding"; +chrX SGD transcript 360130 360903 . + . transcript_id "YJL043W_id001"; gene_id "YJL043W"; transcript_biotype "protein_coding"; +chrX SGD exon 360130 360903 . + 0 transcript_id "YJL043W_id001"; gene_id "YJL043W"; +chrX SGD gene 361181 365598 . + . gene_id "YJL042W"; gene_biotype "protein_coding"; +chrX SGD transcript 361181 365598 . + . transcript_id "YJL042W_id002"; gene_id "YJL042W"; gene_name "MHP1"; transcript_biotype "protein_coding"; +chrX SGD exon 361181 365598 . + . transcript_id "YJL042W_id002"; gene_id "YJL042W"; gene_name "MHP1"; +chrX SGD transcript 361249 365445 . + . transcript_id "YJL042W_id001"; gene_id "YJL042W"; gene_name "MHP1"; transcript_biotype "protein_coding"; +chrX SGD exon 361249 365445 . + 0 transcript_id "YJL042W_id001"; gene_name "MHP1"; gene_id "YJL042W"; +chrX SGD gene 365723 368496 . + . gene_id "YJL041W"; gene_biotype "protein_coding"; +chrX SGD transcript 365723 368496 . + . transcript_id "YJL041W_id004"; gene_id "YJL041W"; gene_name "NSP1"; transcript_biotype "protein_coding"; +chrX SGD exon 365723 368496 . + . transcript_id "YJL041W_id004"; gene_id "YJL041W"; gene_name "NSP1"; +chrX SGD transcript 365784 368373 . + . transcript_id "YJL041W_id001"; gene_id "YJL041W"; gene_name "NSP1"; transcript_biotype "protein_coding"; +chrX SGD exon 365784 365784 . + 0 transcript_id "YJL041W_id001"; gene_name "NSP1"; gene_id "YJL041W"; +chrX SGD exon 365903 368373 . + 2 transcript_id "YJL041W_id001"; gene_name "NSP1"; gene_id "YJL041W"; +chrX SGD gene 368748 373799 . - . gene_id "YJL039C"; gene_biotype "protein_coding"; +chrX SGD transcript 368748 373799 . - . transcript_id "YJL039C_mRNA"; gene_id "YJL039C"; gene_name "NUP192"; transcript_biotype "protein_coding"; +chrX SGD CDS 368748 373799 . - 0 transcript_id "YJL039C_mRNA"; gene_name "NUP192"; gene_id "YJL039C"; +chrX SGD gene 374424 374495 . - . gene_id "YNCJ0013C"; gene_biotype "ncRNA"; +chrX SGD transcript 374424 374495 . - . transcript_id "YNCJ0013C_tRNA"; gene_id "YNCJ0013C"; transcript_biotype "ncRNA"; +chrX SGD exon 374424 374495 . - . transcript_id "YNCJ0013C_tRNA"; gene_id "YNCJ0013C"; +chrX SGD gene 374506 374577 . - . gene_id "YNCJ0014C"; gene_biotype "ncRNA"; +chrX SGD transcript 374506 374577 . - . transcript_id "YNCJ0014C_tRNA"; gene_id "YNCJ0014C"; transcript_biotype "ncRNA"; +chrX SGD exon 374506 374577 . - . transcript_id "YNCJ0014C_tRNA"; gene_id "YNCJ0014C"; +chrX SGD gene 374957 375860 . - . gene_id "YJL038C"; gene_biotype "protein_coding"; +chrX SGD transcript 374957 375860 . - . transcript_id "YJL038C_id001"; gene_id "YJL038C"; gene_name "LOH1"; transcript_biotype "protein_coding"; +chrX SGD exon 374957 375860 . - . transcript_id "YJL038C_id001"; gene_id "YJL038C"; gene_name "LOH1"; +chrX SGD transcript 375115 375774 . - . transcript_id "YJL038C_id003"; gene_id "YJL038C"; gene_name "LOH1"; transcript_biotype "protein_coding"; +chrX SGD exon 375115 375774 . - 0 transcript_id "YJL038C_id003"; gene_name "LOH1"; gene_id "YJL038C"; +chrX SGD gene 376662 377336 . + . gene_id "YJL037W"; gene_biotype "protein_coding"; +chrX SGD transcript 376662 377336 . + . transcript_id "YJL037W_mRNA"; gene_id "YJL037W"; gene_name "IRC18"; transcript_biotype "protein_coding"; +chrX SGD CDS 376662 377336 . + 0 transcript_id "YJL037W_mRNA"; gene_name "IRC18"; gene_id "YJL037W"; +chrX SGD gene 378360 378433 . + . gene_id "YNCJ0015W"; gene_biotype "ncRNA"; +chrX SGD transcript 378360 378433 . + . transcript_id "YNCJ0015W_tRNA"; gene_id "YNCJ0015W"; transcript_biotype "ncRNA"; +chrX SGD exon 378360 378433 . + . transcript_id "YNCJ0015W_tRNA"; gene_id "YNCJ0015W"; +chrX SGD gene 378698 380366 . + . gene_id "YJL036W"; gene_biotype "protein_coding"; +chrX SGD transcript 378698 380366 . + . transcript_id "YJL036W_id001"; gene_id "YJL036W"; gene_name "SNX4"; transcript_biotype "protein_coding"; +chrX SGD exon 378698 380366 . + . transcript_id "YJL036W_id001"; gene_id "YJL036W"; gene_name "SNX4"; +chrX SGD transcript 378825 380096 . + . transcript_id "YJL036W_id002"; gene_id "YJL036W"; gene_name "SNX4"; transcript_biotype "protein_coding"; +chrX SGD exon 378825 380096 . + 0 transcript_id "YJL036W_id002"; gene_name "SNX4"; gene_id "YJL036W"; +chrX SGD gene 380098 381054 . - . gene_id "YJL035C"; gene_biotype "protein_coding"; +chrX SGD transcript 380098 381054 . - . transcript_id "YJL035C_id002"; gene_id "YJL035C"; gene_name "TAD2"; transcript_biotype "protein_coding"; +chrX SGD exon 380098 381054 . - . transcript_id "YJL035C_id002"; gene_id "YJL035C"; gene_name "TAD2"; +chrX SGD transcript 380249 381001 . - . transcript_id "YJL035C_id001"; gene_id "YJL035C"; gene_name "TAD2"; transcript_biotype "protein_coding"; +chrX SGD exon 380249 381001 . - 0 transcript_id "YJL035C_id001"; gene_name "TAD2"; gene_id "YJL035C"; +chrX SGD gene 381289 383764 . + . gene_id "YJL034W"; gene_biotype "protein_coding"; +chrX SGD transcript 381289 383764 . + . transcript_id "YJL034W_id001"; gene_id "YJL034W"; gene_name "KAR2"; transcript_biotype "protein_coding"; +chrX SGD exon 381289 383764 . + . transcript_id "YJL034W_id001"; gene_id "YJL034W"; gene_name "KAR2"; +chrX SGD transcript 381327 383375 . + . transcript_id "YJL034W_id002"; gene_id "YJL034W"; gene_name "KAR2"; transcript_biotype "protein_coding"; +chrX SGD exon 381327 383375 . + 0 transcript_id "YJL034W_id002"; gene_name "KAR2"; gene_id "YJL034W"; +chrX SGD gene 383801 386230 . + . gene_id "YJL033W"; gene_biotype "protein_coding"; +chrX SGD transcript 383801 386230 . + . transcript_id "YJL033W_id003"; gene_id "YJL033W"; gene_name "HCA4"; transcript_biotype "protein_coding"; +chrX SGD exon 383801 386230 . + . transcript_id "YJL033W_id003"; gene_id "YJL033W"; gene_name "HCA4"; +chrX SGD transcript 383837 386149 . + . transcript_id "YJL033W_id001"; gene_id "YJL033W"; gene_name "HCA4"; transcript_biotype "protein_coding"; +chrX SGD exon 383837 386149 . + 0 transcript_id "YJL033W_id001"; gene_name "HCA4"; gene_id "YJL033W"; +chrX SGD gene 386264 387514 . - . gene_id "YJL031C"; gene_biotype "protein_coding"; +chrX SGD transcript 386264 387514 . - . transcript_id "YJL031C_id004"; gene_id "YJL031C"; gene_name "BET4"; transcript_biotype "protein_coding"; +chrX SGD exon 386264 387514 . - . transcript_id "YJL031C_id004"; gene_id "YJL031C"; gene_name "BET4"; +chrX SGD gene 386348 386662 . + . gene_id "YJL032W"; gene_biotype "protein_coding"; +chrX SGD transcript 386348 386662 . + . transcript_id "YJL032W_mRNA"; gene_id "YJL032W"; transcript_biotype "protein_coding"; +chrX SGD CDS 386348 386662 . + 0 transcript_id "YJL032W_mRNA"; gene_id "YJL032W"; +chrX SGD transcript 386368 387438 . - . transcript_id "YJL031C_id001"; gene_id "YJL031C"; gene_name "BET4"; transcript_biotype "protein_coding"; +chrX SGD exon 386368 387348 . - 0 transcript_id "YJL031C_id001"; gene_name "BET4"; gene_id "YJL031C"; +chrX SGD exon 387436 387438 . - 0 transcript_id "YJL031C_id001"; gene_name "BET4"; gene_id "YJL031C"; +chrX SGD gene 387397 388260 . + . gene_id "YJL030W"; gene_biotype "protein_coding"; +chrX SGD transcript 387397 388260 . + . transcript_id "YJL030W_id004"; gene_id "YJL030W"; gene_name "MAD2"; transcript_biotype "protein_coding"; +chrX SGD exon 387397 388260 . + . transcript_id "YJL030W_id004"; gene_id "YJL030W"; gene_name "MAD2"; +chrX SGD transcript 387657 388247 . + . transcript_id "YJL030W_id001"; gene_id "YJL030W"; gene_name "MAD2"; transcript_biotype "protein_coding"; +chrX SGD exon 387657 388247 . + 0 transcript_id "YJL030W_id001"; gene_name "MAD2"; gene_id "YJL030W"; +chrX SGD gene 388285 390932 . - . gene_id "YJL029C"; gene_biotype "protein_coding"; +chrX SGD transcript 388285 390932 . - . transcript_id "YJL029C_id002"; gene_id "YJL029C"; gene_name "VPS53"; transcript_biotype "protein_coding"; +chrX SGD exon 388285 390932 . - . transcript_id "YJL029C_id002"; gene_id "YJL029C"; gene_name "VPS53"; +chrX SGD transcript 388385 390853 . - . transcript_id "YJL029C_id001"; gene_id "YJL029C"; gene_name "VPS53"; transcript_biotype "protein_coding"; +chrX SGD exon 388385 390853 . - 0 transcript_id "YJL029C_id001"; gene_name "VPS53"; gene_id "YJL029C"; +chrX SGD gene 391043 391115 . - . gene_id "YNCJ0016C"; gene_biotype "ncRNA"; +chrX SGD transcript 391043 391115 . - . transcript_id "YNCJ0016C_tRNA"; gene_id "YNCJ0016C"; gene_name "EMT5"; transcript_biotype "ncRNA"; +chrX SGD exon 391043 391115 . - . transcript_id "YNCJ0016C_tRNA"; gene_name "EMT5"; gene_id "YNCJ0016C"; +chrX SGD gene 391311 391646 . + . gene_id "YJL028W"; gene_biotype "protein_coding"; +chrX SGD transcript 391311 391646 . + . transcript_id "YJL028W_mRNA"; gene_id "YJL028W"; transcript_biotype "protein_coding"; +chrX SGD CDS 391311 391646 . + 0 transcript_id "YJL028W_mRNA"; gene_id "YJL028W"; +chrX SGD gene 391833 392249 . - . gene_id "YJL027C"; gene_biotype "protein_coding"; +chrX SGD transcript 391833 392249 . - . transcript_id "YJL027C_id001"; gene_id "YJL027C"; transcript_biotype "protein_coding"; +chrX SGD exon 391833 392249 . - 0 transcript_id "YJL027C_id001"; gene_id "YJL027C"; +chrX SGD gene 392210 393743 . + . gene_id "YJL026W"; gene_biotype "protein_coding"; +chrX SGD transcript 392210 393743 . + . transcript_id "YJL026W_id002"; gene_id "YJL026W"; gene_name "RNR2"; transcript_biotype "protein_coding"; +chrX SGD exon 392210 393743 . + . transcript_id "YJL026W_id002"; gene_id "YJL026W"; gene_name "RNR2"; +chrX SGD transcript 392404 393603 . + . transcript_id "YJL026W_id001"; gene_id "YJL026W"; gene_name "RNR2"; transcript_biotype "protein_coding"; +chrX SGD exon 392404 393603 . + 0 transcript_id "YJL026W_id001"; gene_name "RNR2"; gene_id "YJL026W"; +chrX SGD gene 393066 393287 . - . gene_id "YJL026C-A"; gene_biotype "protein_coding"; +chrX SGD transcript 393066 393287 . - . transcript_id "YJL026C-A_mRNA"; gene_id "YJL026C-A"; transcript_biotype "protein_coding"; +chrX SGD CDS 393066 393287 . - 0 transcript_id "YJL026C-A_mRNA"; gene_id "YJL026C-A"; +chrX SGD gene 393887 395801 . + . gene_id "YJL025W"; gene_biotype "protein_coding"; +chrX SGD transcript 393887 395801 . + . transcript_id "YJL025W_id001"; gene_id "YJL025W"; gene_name "RRN7"; transcript_biotype "protein_coding"; +chrX SGD exon 393887 395801 . + . transcript_id "YJL025W_id001"; gene_id "YJL025W"; gene_name "RRN7"; +chrX SGD transcript 393967 395511 . + . transcript_id "YJL025W_id002"; gene_id "YJL025W"; gene_name "RRN7"; transcript_biotype "protein_coding"; +chrX SGD exon 393967 395511 . + 0 transcript_id "YJL025W_id002"; gene_name "RRN7"; gene_id "YJL025W"; +chrX SGD gene 395539 396621 . - . gene_id "YJL024C"; gene_biotype "protein_coding"; +chrX SGD transcript 395539 396621 . - . transcript_id "YJL024C_id006"; gene_id "YJL024C"; gene_name "APS3"; transcript_biotype "protein_coding"; +chrX SGD exon 395539 396621 . - . transcript_id "YJL024C_id006"; gene_id "YJL024C"; gene_name "APS3"; +chrX SGD transcript 395931 396592 . - . transcript_id "YJL024C_id001"; gene_id "YJL024C"; gene_name "APS3"; transcript_biotype "protein_coding"; +chrX SGD exon 395931 396493 . - 2 transcript_id "YJL024C_id001"; gene_name "APS3"; gene_id "YJL024C"; +chrX SGD exon 396571 396592 . - 0 transcript_id "YJL024C_id001"; gene_name "APS3"; gene_id "YJL024C"; +chrX SGD gene 396726 396796 . - . gene_id "YNCJ0017C"; gene_biotype "ncRNA"; +chrX SGD transcript 396726 396796 . - . transcript_id "YNCJ0017C_tRNA"; gene_id "YNCJ0017C"; transcript_biotype "ncRNA"; +chrX SGD exon 396726 396796 . - . transcript_id "YNCJ0017C_tRNA"; gene_id "YNCJ0017C"; +chrX SGD gene 397198 398415 . - . gene_id "YJL023C"; gene_biotype "protein_coding"; +chrX SGD transcript 397198 398415 . - . transcript_id "YJL023C_id005"; gene_id "YJL023C"; gene_name "PET130"; transcript_biotype "protein_coding"; +chrX SGD exon 397198 398415 . - . transcript_id "YJL023C_id005"; gene_id "YJL023C"; gene_name "PET130"; +chrX SGD transcript 397355 398398 . - . transcript_id "YJL023C_id001"; gene_id "YJL023C"; gene_name "PET130"; transcript_biotype "protein_coding"; +chrX SGD exon 397355 398398 . - 0 transcript_id "YJL023C_id001"; gene_name "PET130"; gene_id "YJL023C"; +chrX SGD gene 397955 398883 . + . gene_id "YJL022W"; gene_biotype "protein_coding"; +chrX SGD transcript 397955 398883 . + . transcript_id "YJL022W_id001"; gene_id "YJL022W"; transcript_biotype "protein_coding"; +chrX SGD exon 397955 398883 . + . transcript_id "YJL022W_id001"; gene_id "YJL022W"; +chrX SGD transcript 398109 398417 . + . transcript_id "YJL022W_id002"; gene_id "YJL022W"; transcript_biotype "protein_coding"; +chrX SGD exon 398109 398417 . + 0 transcript_id "YJL022W_id002"; gene_id "YJL022W"; +chrX SGD gene 398937 402410 . - . gene_id "YJL020C"; gene_biotype "protein_coding"; +chrX SGD transcript 398937 402410 . - . transcript_id "YJL020C_mRNA"; gene_id "YJL020C"; gene_name "BBC1"; transcript_biotype "protein_coding"; +chrX SGD CDS 398937 402410 . - 0 transcript_id "YJL020C_mRNA"; gene_name "BBC1"; gene_id "YJL020C"; +chrX SGD gene 400981 401238 . + . gene_id "YJL020W-A"; gene_biotype "protein_coding"; +chrX SGD transcript 400981 401238 . + . transcript_id "YJL020W-A_mRNA"; gene_id "YJL020W-A"; transcript_biotype "protein_coding"; +chrX SGD CDS 400981 401238 . + 0 transcript_id "YJL020W-A_mRNA"; gene_id "YJL020W-A"; +chrX SGD gene 402781 405523 . + . gene_id "YJL019W"; gene_biotype "protein_coding"; +chrX SGD transcript 402781 405523 . + . transcript_id "YJL019W_id001"; gene_id "YJL019W"; gene_name "MPS3"; transcript_biotype "protein_coding"; +chrX SGD exon 402781 405523 . + . transcript_id "YJL019W_id001"; gene_id "YJL019W"; gene_name "MPS3"; +chrX SGD transcript 402897 404945 . + . transcript_id "YJL019W_id003"; gene_id "YJL019W"; gene_name "MPS3"; transcript_biotype "protein_coding"; +chrX SGD exon 402897 404945 . + 0 transcript_id "YJL019W_id003"; gene_name "MPS3"; gene_id "YJL019W"; +chrX SGD gene 405314 407389 . + . gene_id "YJL016W"; gene_biotype "protein_coding"; +chrX SGD transcript 405314 407389 . + . transcript_id "YJL016W_id002"; gene_id "YJL016W"; gene_name "TPH3"; transcript_biotype "protein_coding"; +chrX SGD exon 405314 407389 . + . transcript_id "YJL016W_id002"; gene_id "YJL016W"; gene_name "TPH3"; +chrX SGD transcript 405588 407273 . + . transcript_id "YJL016W_id001"; gene_id "YJL016W"; gene_name "TPH3"; transcript_biotype "protein_coding"; +chrX SGD exon 405588 407273 . + 0 transcript_id "YJL016W_id001"; gene_name "TPH3"; gene_id "YJL016W"; +chrX SGD gene 407142 407426 . - . gene_id "YJL015C"; gene_biotype "protein_coding"; +chrX SGD transcript 407142 407426 . - . transcript_id "YJL015C_mRNA"; gene_id "YJL015C"; transcript_biotype "protein_coding"; +chrX SGD CDS 407142 407426 . - 0 transcript_id "YJL015C_mRNA"; gene_id "YJL015C"; +chrX SGD gene 407516 409471 . + . gene_id "YJL014W"; gene_biotype "protein_coding"; +chrX SGD transcript 407516 409471 . + . transcript_id "YJL014W_id003"; gene_id "YJL014W"; gene_name "CCT3"; transcript_biotype "protein_coding"; +chrX SGD exon 407516 409471 . + . transcript_id "YJL014W_id003"; gene_id "YJL014W"; gene_name "CCT3"; +chrX SGD transcript 407558 409162 . + . transcript_id "YJL014W_id001"; gene_id "YJL014W"; gene_name "CCT3"; transcript_biotype "protein_coding"; +chrX SGD exon 407558 409162 . + 0 transcript_id "YJL014W_id001"; gene_name "CCT3"; gene_id "YJL014W"; +chrX SGD gene 409493 411040 . - . gene_id "YJL013C"; gene_biotype "protein_coding"; +chrX SGD transcript 409493 411040 . - . transcript_id "YJL013C_mRNA"; gene_id "YJL013C"; gene_name "MAD3"; transcript_biotype "protein_coding"; +chrX SGD CDS 409493 411040 . - 0 transcript_id "YJL013C_mRNA"; gene_name "MAD3"; gene_id "YJL013C"; +chrX SGD gene 411163 413492 . - . gene_id "YJL012C"; gene_biotype "protein_coding"; +chrX SGD transcript 411163 413492 . - . transcript_id "YJL012C_id001"; gene_id "YJL012C"; gene_name "VTC4"; transcript_biotype "protein_coding"; +chrX SGD exon 411163 413492 . - . transcript_id "YJL012C_id001"; gene_id "YJL012C"; gene_name "VTC4"; +chrX SGD transcript 411234 413399 . - . transcript_id "YJL012C_id007"; gene_id "YJL012C"; gene_name "VTC4"; transcript_biotype "protein_coding"; +chrX SGD exon 411234 413399 . - 0 transcript_id "YJL012C_id007"; gene_name "VTC4"; gene_id "YJL012C"; +chrX SGD gene 413875 414821 . - . gene_id "YJL011C"; gene_biotype "protein_coding"; +chrX SGD transcript 413875 414821 . - . transcript_id "YJL011C_id001"; gene_id "YJL011C"; gene_name "RPC17"; transcript_biotype "protein_coding"; +chrX SGD exon 413875 414821 . - . transcript_id "YJL011C_id001"; gene_id "YJL011C"; gene_name "RPC17"; +chrX SGD transcript 414285 414770 . - . transcript_id "YJL011C_id002"; gene_id "YJL011C"; gene_name "RPC17"; transcript_biotype "protein_coding"; +chrX SGD exon 414285 414770 . - 0 transcript_id "YJL011C_id002"; gene_name "RPC17"; gene_id "YJL011C"; +chrX SGD gene 414966 415038 . + . gene_id "YNCJ0018W"; gene_biotype "ncRNA"; +chrX SGD transcript 414966 415038 . + . transcript_id "YNCJ0018W_tRNA"; gene_id "YNCJ0018W"; transcript_biotype "ncRNA"; +chrX SGD exon 414966 415038 . + . transcript_id "YNCJ0018W_tRNA"; gene_id "YNCJ0018W"; +chrX SGD gene 415931 416036 . - . gene_id "YNCJ0019C"; gene_biotype "ncRNA"; +chrX SGD transcript 415931 416036 . - . transcript_id "YNCJ0019C_tRNA"; gene_id "YNCJ0019C"; transcript_biotype "ncRNA"; +chrX SGD exon 415931 415966 . - . transcript_id "YNCJ0019C_tRNA"; gene_id "YNCJ0019C"; +chrX SGD exon 416001 416036 . - . transcript_id "YNCJ0019C_tRNA"; gene_id "YNCJ0019C"; +chrX SGD gene 417421 419596 . - . gene_id "YJL010C"; gene_biotype "protein_coding"; +chrX SGD transcript 417421 419596 . - . transcript_id "YJL010C_id001"; gene_id "YJL010C"; gene_name "NOP9"; transcript_biotype "protein_coding"; +chrX SGD exon 417421 419596 . - . transcript_id "YJL010C_id001"; gene_id "YJL010C"; gene_name "NOP9"; +chrX SGD transcript 417562 419562 . - . transcript_id "YJL010C_id004"; gene_id "YJL010C"; gene_name "NOP9"; transcript_biotype "protein_coding"; +chrX SGD exon 417562 419562 . - 0 transcript_id "YJL010C_id004"; gene_name "NOP9"; gene_id "YJL010C"; +chrX SGD gene 419718 421706 . - . gene_id "YJL008C"; gene_biotype "protein_coding"; +chrX SGD transcript 419718 421706 . - . transcript_id "YJL008C_id002"; gene_id "YJL008C"; gene_name "CCT8"; transcript_biotype "protein_coding"; +chrX SGD exon 419718 421706 . - . transcript_id "YJL008C_id002"; gene_id "YJL008C"; gene_name "CCT8"; +chrX SGD gene 419855 420181 . + . gene_id "YJL009W"; gene_biotype "protein_coding"; +chrX SGD transcript 419855 420181 . + . transcript_id "YJL009W_mRNA"; gene_id "YJL009W"; transcript_biotype "protein_coding"; +chrX SGD CDS 419855 420181 . + 0 transcript_id "YJL009W_mRNA"; gene_id "YJL009W"; +chrX SGD transcript 419957 421663 . - . transcript_id "YJL008C_id001"; gene_id "YJL008C"; gene_name "CCT8"; transcript_biotype "protein_coding"; +chrX SGD exon 419957 421663 . - 0 transcript_id "YJL008C_id001"; gene_name "CCT8"; gene_id "YJL008C"; +chrX SGD gene 422698 423012 . - . gene_id "YJL007C"; gene_biotype "protein_coding"; +chrX SGD transcript 422698 423012 . - . transcript_id "YJL007C_mRNA"; gene_id "YJL007C"; transcript_biotype "protein_coding"; +chrX SGD CDS 422698 423012 . - 0 transcript_id "YJL007C_mRNA"; gene_id "YJL007C"; +chrX SGD gene 422937 423009 . + . gene_id "YNCJ0020W"; gene_biotype "ncRNA"; +chrX SGD transcript 422937 423009 . + . transcript_id "YNCJ0020W_tRNA"; gene_id "YNCJ0020W"; gene_name "EMT3"; transcript_biotype "ncRNA"; +chrX SGD exon 422937 423009 . + . transcript_id "YNCJ0020W_tRNA"; gene_name "EMT3"; gene_id "YNCJ0020W"; +chrX SGD gene 423085 424184 . - . gene_id "YJL006C"; gene_biotype "protein_coding"; +chrX SGD transcript 423085 424184 . - . transcript_id "YJL006C_id005"; gene_id "YJL006C"; gene_name "CTK2"; transcript_biotype "protein_coding"; +chrX SGD exon 423085 424184 . - . transcript_id "YJL006C_id005"; gene_id "YJL006C"; gene_name "CTK2"; +chrX SGD transcript 423138 424109 . - . transcript_id "YJL006C_id001"; gene_id "YJL006C"; gene_name "CTK2"; transcript_biotype "protein_coding"; +chrX SGD exon 423138 424109 . - 0 transcript_id "YJL006C_id001"; gene_name "CTK2"; gene_id "YJL006C"; +chrX SGD gene 424432 424515 . - . gene_id "YNCJ0021C"; gene_biotype "ncRNA"; +chrX SGD transcript 424432 424515 . - . transcript_id "YNCJ0021C_tRNA"; gene_id "YNCJ0021C"; gene_name "SUP51"; transcript_biotype "ncRNA"; +chrX SGD exon 424432 424515 . - . transcript_id "YNCJ0021C_tRNA"; gene_name "SUP51"; gene_id "YNCJ0021C"; +chrX SGD gene 425157 431237 . + . gene_id "YJL005W"; gene_biotype "protein_coding"; +chrX SGD transcript 425157 431237 . + . transcript_id "YJL005W_mRNA"; gene_id "YJL005W"; gene_name "CYR1"; transcript_biotype "protein_coding"; +chrX SGD CDS 425157 431237 . + 0 transcript_id "YJL005W_mRNA"; gene_name "CYR1"; gene_id "YJL005W"; +chrX SGD gene 431283 432228 . - . gene_id "YJL004C"; gene_biotype "protein_coding"; +chrX SGD transcript 431283 432228 . - . transcript_id "YJL004C_id010"; gene_id "YJL004C"; gene_name "SYS1"; transcript_biotype "protein_coding"; +chrX SGD exon 431283 432228 . - . transcript_id "YJL004C_id010"; gene_id "YJL004C"; gene_name "SYS1"; +chrX SGD transcript 431589 432200 . - . transcript_id "YJL004C_id001"; gene_id "YJL004C"; gene_name "SYS1"; transcript_biotype "protein_coding"; +chrX SGD exon 431589 432200 . - 0 transcript_id "YJL004C_id001"; gene_name "SYS1"; gene_id "YJL004C"; +chrX SGD gene 432417 433278 . + . gene_id "YJL003W"; gene_biotype "protein_coding"; +chrX SGD transcript 432417 433278 . + . transcript_id "YJL003W_id001"; gene_id "YJL003W"; gene_name "COX16"; transcript_biotype "protein_coding"; +chrX SGD exon 432417 433278 . + . transcript_id "YJL003W_id001"; gene_id "YJL003W"; gene_name "COX16"; +chrX SGD transcript 432644 433000 . + . transcript_id "YJL003W_id002"; gene_id "YJL003W"; gene_name "COX16"; transcript_biotype "protein_coding"; +chrX SGD exon 432644 433000 . + 0 transcript_id "YJL003W_id002"; gene_name "COX16"; gene_id "YJL003W"; +chrX SGD gene 433110 434731 . - . gene_id "YJL002C"; gene_biotype "protein_coding"; +chrX SGD transcript 433110 434731 . - . transcript_id "YJL002C_id004"; gene_id "YJL002C"; gene_name "OST1"; transcript_biotype "protein_coding"; +chrX SGD exon 433110 434731 . - . transcript_id "YJL002C_id004"; gene_id "YJL002C"; gene_name "OST1"; +chrX SGD transcript 433221 434651 . - . transcript_id "YJL002C_id001"; gene_id "YJL002C"; gene_name "OST1"; transcript_biotype "protein_coding"; +chrX SGD exon 433221 434651 . - 0 transcript_id "YJL002C_id001"; gene_name "OST1"; gene_id "YJL002C"; +chrX SGD gene 434798 436040 . + . gene_id "YJL001W"; gene_biotype "protein_coding"; +chrX SGD transcript 434798 436040 . + . transcript_id "YJL001W_id001"; gene_id "YJL001W"; gene_name "PRE3"; transcript_biotype "protein_coding"; +chrX SGD exon 434798 436040 . + . transcript_id "YJL001W_id001"; gene_id "YJL001W"; gene_name "PRE3"; +chrX SGD transcript 435163 435926 . + . transcript_id "YJL001W_id002"; gene_id "YJL001W"; gene_name "PRE3"; transcript_biotype "protein_coding"; +chrX SGD exon 435163 435227 . + 0 transcript_id "YJL001W_id002"; gene_name "PRE3"; gene_id "YJL001W"; +chrX SGD exon 435344 435926 . + 1 transcript_id "YJL001W_id002"; gene_name "PRE3"; gene_id "YJL001W"; +chrX SGD gene 436727 438741 . + . gene_id "YJR001W"; gene_biotype "protein_coding"; +chrX SGD transcript 436727 438741 . + . transcript_id "YJR001W_id002"; gene_id "YJR001W"; gene_name "AVT1"; transcript_biotype "protein_coding"; +chrX SGD exon 436727 438741 . + . transcript_id "YJR001W_id002"; gene_id "YJR001W"; gene_name "AVT1"; +chrX SGD transcript 436802 438610 . + . transcript_id "YJR001W_id001"; gene_id "YJR001W"; gene_name "AVT1"; transcript_biotype "protein_coding"; +chrX SGD exon 436802 438610 . + 0 transcript_id "YJR001W_id001"; gene_name "AVT1"; gene_id "YJR001W"; +chrX SGD gene 438835 441018 . + . gene_id "YJR002W"; gene_biotype "protein_coding"; +chrX SGD transcript 438835 441018 . + . transcript_id "YJR002W_id005"; gene_id "YJR002W"; gene_name "MPP10"; transcript_biotype "protein_coding"; +chrX SGD exon 438835 441018 . + . transcript_id "YJR002W_id005"; gene_id "YJR002W"; gene_name "MPP10"; +chrX SGD transcript 438865 440646 . + . transcript_id "YJR002W_id001"; gene_id "YJR002W"; gene_name "MPP10"; transcript_biotype "protein_coding"; +chrX SGD exon 438865 440646 . + 0 transcript_id "YJR002W_id001"; gene_name "MPP10"; gene_id "YJR002W"; +chrX SGD gene 440860 442554 . - . gene_id "YJR003C"; gene_biotype "protein_coding"; +chrX SGD transcript 440860 442554 . - . transcript_id "YJR003C_id002"; gene_id "YJR003C"; gene_name "MRX12"; transcript_biotype "protein_coding"; +chrX SGD exon 440860 442554 . - . transcript_id "YJR003C_id002"; gene_id "YJR003C"; gene_name "MRX12"; +chrX SGD transcript 440994 442553 . - . transcript_id "YJR003C_id001"; gene_id "YJR003C"; gene_name "MRX12"; transcript_biotype "protein_coding"; +chrX SGD exon 440994 442553 . - 0 transcript_id "YJR003C_id001"; gene_name "MRX12"; gene_id "YJR003C"; +chrX SGD gene 442909 444861 . - . gene_id "YJR004C"; gene_biotype "protein_coding"; +chrX SGD transcript 442909 444861 . - . transcript_id "YJR004C_id001"; gene_id "YJR004C"; gene_name "SAG1"; transcript_biotype "protein_coding"; +chrX SGD exon 442909 444861 . - 0 transcript_id "YJR004C_id001"; gene_name "SAG1"; gene_id "YJR004C"; +chrX SGD gene 445875 448309 . + . gene_id "YJR005W"; gene_biotype "protein_coding"; +chrX SGD transcript 445875 448309 . + . transcript_id "YJR005W_id004"; gene_id "YJR005W"; gene_name "APL1"; transcript_biotype "protein_coding"; +chrX SGD exon 445875 448309 . + . transcript_id "YJR005W_id004"; gene_id "YJR005W"; gene_name "APL1"; +chrX SGD transcript 445923 448025 . + . transcript_id "YJR005W_id001"; gene_id "YJR005W"; gene_name "APL1"; transcript_biotype "protein_coding"; +chrX SGD exon 445923 448025 . + 0 transcript_id "YJR005W_id001"; gene_name "APL1"; gene_id "YJR005W"; +chrX SGD gene 448477 448758 . - . gene_id "YJR005C-A"; gene_biotype "protein_coding"; +chrX SGD transcript 448477 448758 . - . transcript_id "YJR005C-A_id001"; gene_id "YJR005C-A"; gene_name "LSO1"; transcript_biotype "protein_coding"; +chrX SGD exon 448477 448758 . - 0 transcript_id "YJR005C-A_id001"; gene_name "LSO1"; gene_id "YJR005C-A"; +chrX SGD gene 449201 450769 . + . gene_id "YJR006W"; gene_biotype "protein_coding"; +chrX SGD transcript 449201 450769 . + . transcript_id "YJR006W_id006"; gene_id "YJR006W"; gene_name "POL31"; transcript_biotype "protein_coding"; +chrX SGD exon 449201 450769 . + . transcript_id "YJR006W_id006"; gene_id "YJR006W"; gene_name "POL31"; +chrX SGD transcript 449202 450665 . + . transcript_id "YJR006W_id001"; gene_id "YJR006W"; gene_name "POL31"; transcript_biotype "protein_coding"; +chrX SGD exon 449202 450665 . + 0 transcript_id "YJR006W_id001"; gene_name "POL31"; gene_id "YJR006W"; +chrX SGD gene 450882 452113 . + . gene_id "YJR007W"; gene_biotype "protein_coding"; +chrX SGD transcript 450882 452113 . + . transcript_id "YJR007W_id002"; gene_id "YJR007W"; gene_name "SUI2"; transcript_biotype "protein_coding"; +chrX SGD exon 450882 452113 . + . transcript_id "YJR007W_id002"; gene_id "YJR007W"; gene_name "SUI2"; +chrX SGD transcript 451020 451934 . + . transcript_id "YJR007W_id001"; gene_id "YJR007W"; gene_name "SUI2"; transcript_biotype "protein_coding"; +chrX SGD exon 451020 451934 . + 0 transcript_id "YJR007W_id001"; gene_name "SUI2"; gene_id "YJR007W"; +chrX SGD gene 452317 453660 . + . gene_id "YJR008W"; gene_biotype "protein_coding"; +chrX SGD transcript 452317 453660 . + . transcript_id "YJR008W_id007"; gene_id "YJR008W"; gene_name "MHO1"; transcript_biotype "protein_coding"; +chrX SGD exon 452317 453660 . + . transcript_id "YJR008W_id007"; gene_id "YJR008W"; gene_name "MHO1"; +chrX SGD transcript 452430 453446 . + . transcript_id "YJR008W_id001"; gene_id "YJR008W"; gene_name "MHO1"; transcript_biotype "protein_coding"; +chrX SGD exon 452430 453446 . + 0 transcript_id "YJR008W_id001"; gene_name "MHO1"; gene_id "YJR008W"; +chrX SGD gene 453545 454948 . - . gene_id "YJR009C"; gene_biotype "protein_coding"; +chrX SGD transcript 453545 454948 . - . transcript_id "YJR009C_id002"; gene_id "YJR009C"; gene_name "TDH2"; transcript_biotype "protein_coding"; +chrX SGD exon 453545 454948 . - . transcript_id "YJR009C_id002"; gene_id "YJR009C"; gene_name "TDH2"; +chrX SGD transcript 453683 454681 . - . transcript_id "YJR009C_id001"; gene_id "YJR009C"; gene_name "TDH2"; transcript_biotype "protein_coding"; +chrX SGD exon 453683 454681 . - 0 transcript_id "YJR009C_id001"; gene_name "TDH2"; gene_id "YJR009C"; +chrX SGD gene 454730 458592 . - . gene_id "YJR010C-A"; gene_biotype "protein_coding"; +chrX SGD transcript 454730 458592 . - . transcript_id "YJR010C-A_id001"; gene_id "YJR010C-A"; gene_name "SPC1"; transcript_biotype "protein_coding"; +chrX SGD exon 454730 458592 . - . transcript_id "YJR010C-A_id001"; gene_id "YJR010C-A"; gene_name "SPC1"; +chrX SGD gene 456155 457903 . + . gene_id "YJR010W"; gene_biotype "protein_coding"; +chrX SGD transcript 456155 457903 . + . transcript_id "YJR010W_id004"; gene_id "YJR010W"; gene_name "MET3"; transcript_biotype "protein_coding"; +chrX SGD exon 456155 457903 . + . transcript_id "YJR010W_id004"; gene_id "YJR010W"; gene_name "MET3"; +chrX SGD transcript 456239 457774 . + . transcript_id "YJR010W_id001"; gene_id "YJR010W"; gene_name "MET3"; transcript_biotype "protein_coding"; +chrX SGD exon 456239 457774 . + 0 transcript_id "YJR010W_id001"; gene_name "MET3"; gene_id "YJR010W"; +chrX SGD transcript 458077 458361 . - . transcript_id "YJR010C-A_id002"; gene_id "YJR010C-A"; gene_name "SPC1"; transcript_biotype "protein_coding"; +chrX SGD exon 458077 458361 . - 0 transcript_id "YJR010C-A_id002"; gene_name "SPC1"; gene_id "YJR010C-A"; +chrX SGD gene 458565 459654 . - . gene_id "YJR011C"; gene_biotype "protein_coding"; +chrX SGD transcript 458565 459654 . - . transcript_id "YJR011C_id002"; gene_id "YJR011C"; gene_name "CAL4"; transcript_biotype "protein_coding"; +chrX SGD exon 458565 459654 . - . transcript_id "YJR011C_id002"; gene_id "YJR011C"; gene_name "CAL4"; +chrX SGD transcript 458641 459426 . - . transcript_id "YJR011C_id001"; gene_id "YJR011C"; gene_name "CAL4"; transcript_biotype "protein_coding"; +chrX SGD exon 458641 459426 . - 0 transcript_id "YJR011C_id001"; gene_name "CAL4"; gene_id "YJR011C"; +chrX SGD gene 459795 460193 . - . gene_id "YJR012C"; gene_biotype "protein_coding"; +chrX SGD transcript 459795 460193 . - . transcript_id "YJR012C_mRNA"; gene_id "YJR012C"; transcript_biotype "protein_coding"; +chrX SGD CDS 459795 460193 . - 0 transcript_id "YJR012C_mRNA"; gene_id "YJR012C"; +chrX SGD gene 459984 461681 . + . gene_id "YJR013W"; gene_biotype "protein_coding"; +chrX SGD transcript 459984 461681 . + . transcript_id "YJR013W_id002"; gene_id "YJR013W"; gene_name "GPI14"; transcript_biotype "protein_coding"; +chrX SGD exon 459984 461681 . + . transcript_id "YJR013W_id002"; gene_id "YJR013W"; gene_name "GPI14"; +chrX SGD transcript 460382 461593 . + . transcript_id "YJR013W_id001"; gene_id "YJR013W"; gene_name "GPI14"; transcript_biotype "protein_coding"; +chrX SGD exon 460382 461593 . + 0 transcript_id "YJR013W_id001"; gene_name "GPI14"; gene_id "YJR013W"; +chrX SGD gene 461398 462775 . + . gene_id "YJR014W"; gene_biotype "protein_coding"; +chrX SGD transcript 461398 462775 . + . transcript_id "YJR014W_id001"; gene_id "YJR014W"; gene_name "TMA22"; transcript_biotype "protein_coding"; +chrX SGD exon 461398 462775 . + . transcript_id "YJR014W_id001"; gene_id "YJR014W"; gene_name "TMA22"; +chrX SGD transcript 461829 462425 . + . transcript_id "YJR014W_id002"; gene_id "YJR014W"; gene_name "TMA22"; transcript_biotype "protein_coding"; +chrX SGD exon 461829 462425 . + 0 transcript_id "YJR014W_id002"; gene_name "TMA22"; gene_id "YJR014W"; +chrX SGD gene 462541 464387 . + . gene_id "YJR015W"; gene_biotype "protein_coding"; +chrX SGD transcript 462541 464387 . + . transcript_id "YJR015W_id001"; gene_id "YJR015W"; transcript_biotype "protein_coding"; +chrX SGD exon 462541 464387 . + . transcript_id "YJR015W_id001"; gene_id "YJR015W"; +chrX SGD transcript 462721 464253 . + . transcript_id "YJR015W_id002"; gene_id "YJR015W"; transcript_biotype "protein_coding"; +chrX SGD exon 462721 464253 . + 0 transcript_id "YJR015W_id002"; gene_id "YJR015W"; +chrX SGD gene 464288 466272 . - . gene_id "YJR016C"; gene_biotype "protein_coding"; +chrX SGD transcript 464288 466272 . - . transcript_id "YJR016C_id001"; gene_id "YJR016C"; gene_name "ILV3"; transcript_biotype "protein_coding"; +chrX SGD exon 464288 466272 . - . transcript_id "YJR016C_id001"; gene_id "YJR016C"; gene_name "ILV3"; +chrX SGD transcript 464451 466208 . - . transcript_id "YJR016C_id002"; gene_id "YJR016C"; gene_name "ILV3"; transcript_biotype "protein_coding"; +chrX SGD exon 464451 466208 . - 0 transcript_id "YJR016C_id002"; gene_name "ILV3"; gene_id "YJR016C"; +chrX SGD gene 466279 467108 . - . gene_id "YJR017C"; gene_biotype "protein_coding"; +chrX SGD transcript 466279 467108 . - . transcript_id "YJR017C_id002"; gene_id "YJR017C"; gene_name "ESS1"; transcript_biotype "protein_coding"; +chrX SGD exon 466279 467108 . - . transcript_id "YJR017C_id002"; gene_id "YJR017C"; gene_name "ESS1"; +chrX SGD gene 466488 467217 . + . gene_id "YJR018W"; gene_biotype "protein_coding"; +chrX SGD transcript 466488 467217 . + . transcript_id "YJR018W_id001"; gene_id "YJR018W"; transcript_biotype "protein_coding"; +chrX SGD exon 466488 467217 . + . transcript_id "YJR018W_id001"; gene_id "YJR018W"; +chrX SGD transcript 466521 467033 . - . transcript_id "YJR017C_id001"; gene_id "YJR017C"; gene_name "ESS1"; transcript_biotype "protein_coding"; +chrX SGD exon 466521 467033 . - 0 transcript_id "YJR017C_id001"; gene_name "ESS1"; gene_id "YJR017C"; +chrX SGD transcript 466786 467148 . + . transcript_id "YJR018W_id003"; gene_id "YJR018W"; transcript_biotype "protein_coding"; +chrX SGD exon 466786 467148 . + 0 transcript_id "YJR018W_id003"; gene_id "YJR018W"; +chrX SGD gene 467152 468316 . - . gene_id "YJR019C"; gene_biotype "protein_coding"; +chrX SGD transcript 467152 468316 . - . transcript_id "YJR019C_id005"; gene_id "YJR019C"; gene_name "TES1"; transcript_biotype "protein_coding"; +chrX SGD exon 467152 468316 . - . transcript_id "YJR019C_id005"; gene_id "YJR019C"; gene_name "TES1"; +chrX SGD transcript 467232 468281 . - . transcript_id "YJR019C_id001"; gene_id "YJR019C"; gene_name "TES1"; transcript_biotype "protein_coding"; +chrX SGD exon 467232 468281 . - 0 transcript_id "YJR019C_id001"; gene_name "TES1"; gene_id "YJR019C"; +chrX SGD gene 468001 468333 . + . gene_id "YJR020W"; gene_biotype "protein_coding"; +chrX SGD transcript 468001 468333 . + . transcript_id "YJR020W_id001"; gene_id "YJR020W"; transcript_biotype "protein_coding"; +chrX SGD exon 468001 468333 . + 0 transcript_id "YJR020W_id001"; gene_id "YJR020W"; +chrX SGD gene 468457 469644 . - . gene_id "YJR021C"; gene_biotype "protein_coding"; +chrX SGD transcript 468457 469644 . - . transcript_id "YJR021C_id005"; gene_id "YJR021C"; gene_name "REC107"; transcript_biotype "protein_coding"; +chrX SGD exon 468457 469644 . - . transcript_id "YJR021C_id005"; gene_id "YJR021C"; gene_name "REC107"; +chrX SGD transcript 468555 469579 . - . transcript_id "YJR021C_id001"; gene_id "YJR021C"; gene_name "REC107"; transcript_biotype "protein_coding"; +chrX SGD exon 468555 469183 . - 2 transcript_id "YJR021C_id001"; gene_name "REC107"; gene_id "YJR021C"; +chrX SGD exon 469264 469579 . - 0 transcript_id "YJR021C_id001"; gene_name "REC107"; gene_id "YJR021C"; +chrX SGD gene 469784 470113 . + . gene_id "YJR022W"; gene_biotype "protein_coding"; +chrX SGD transcript 469784 470113 . + . transcript_id "YJR022W_mRNA"; gene_id "YJR022W"; gene_name "LSM8"; transcript_biotype "protein_coding"; +chrX SGD CDS 469784 470113 . + 0 transcript_id "YJR022W_mRNA"; gene_name "LSM8"; gene_id "YJR022W"; +chrX SGD gene 469804 470205 . - . gene_id "YJR023C"; gene_biotype "protein_coding"; +chrX SGD transcript 469804 470205 . - . transcript_id "YJR023C_mRNA"; gene_id "YJR023C"; transcript_biotype "protein_coding"; +chrX SGD CDS 469804 470205 . - 0 transcript_id "YJR023C_mRNA"; gene_id "YJR023C"; +chrX SGD gene 470153 470980 . - . gene_id "YJR024C"; gene_biotype "protein_coding"; +chrX SGD transcript 470153 470980 . - . transcript_id "YJR024C_id001"; gene_id "YJR024C"; gene_name "MDE1"; transcript_biotype "protein_coding"; +chrX SGD exon 470153 470980 . - . transcript_id "YJR024C_id001"; gene_id "YJR024C"; gene_name "MDE1"; +chrX SGD transcript 470230 470964 . - . transcript_id "YJR024C_id002"; gene_id "YJR024C"; gene_name "MDE1"; transcript_biotype "protein_coding"; +chrX SGD exon 470230 470964 . - 0 transcript_id "YJR024C_id002"; gene_name "MDE1"; gene_id "YJR024C"; +chrX SGD gene 470986 471859 . - . gene_id "YJR025C"; gene_biotype "protein_coding"; +chrX SGD transcript 470986 471859 . - . transcript_id "YJR025C_id002"; gene_id "YJR025C"; gene_name "BNA1"; transcript_biotype "protein_coding"; +chrX SGD exon 470986 471859 . - . transcript_id "YJR025C_id002"; gene_id "YJR025C"; gene_name "BNA1"; +chrX SGD transcript 471138 471671 . - . transcript_id "YJR025C_id001"; gene_id "YJR025C"; gene_name "BNA1"; transcript_biotype "protein_coding"; +chrX SGD exon 471138 471671 . - 0 transcript_id "YJR025C_id001"; gene_name "BNA1"; gene_id "YJR025C"; +chrX SGD gene 472760 474082 . + . gene_id "YJR026W"; gene_biotype "protein_coding"; +chrX SGD transcript 472760 474082 . + . transcript_id "YJR026W_dummy"; gene_id "YJR026W"; transcript_biotype "protein_coding"; +chrX SGD exon 472760 474082 . + 0 transcript_id "YJR026W_dummy"; gene_id "YJR026W"; +chrX SGD gene 472760 478028 . + . gene_id "YJR027W"; gene_biotype "protein_coding"; +chrX SGD transcript 472760 478028 . + . transcript_id "YJR027W_dummy"; gene_id "YJR027W"; transcript_biotype "protein_coding"; +chrX SGD exon 472760 474061 . + 0 transcript_id "YJR027W_dummy"; gene_id "YJR027W"; +chrX SGD exon 474063 478028 . + 0 transcript_id "YJR027W_dummy"; gene_id "YJR027W"; +chrX SGD gene 478344 479666 . + . gene_id "YJR028W"; gene_biotype "protein_coding"; +chrX SGD transcript 478344 479666 . + . transcript_id "YJR028W_dummy"; gene_id "YJR028W"; transcript_biotype "protein_coding"; +chrX SGD exon 478344 479666 . + 0 transcript_id "YJR028W_dummy"; gene_id "YJR028W"; +chrX SGD gene 478344 483612 . + . gene_id "YJR029W"; gene_biotype "protein_coding"; +chrX SGD transcript 478344 483612 . + . transcript_id "YJR029W_dummy"; gene_id "YJR029W"; transcript_biotype "protein_coding"; +chrX SGD exon 478344 479644 . + 0 transcript_id "YJR029W_dummy"; gene_id "YJR029W"; +chrX SGD exon 479646 483612 . + 1 transcript_id "YJR029W_dummy"; gene_id "YJR029W"; +chrX SGD gene 483959 486196 . - . gene_id "YJR030C"; gene_biotype "protein_coding"; +chrX SGD transcript 483959 486196 . - . transcript_id "YJR030C_mRNA"; gene_id "YJR030C"; gene_name "RBH2"; transcript_biotype "protein_coding"; +chrX SGD CDS 483959 486196 . - 0 transcript_id "YJR030C_mRNA"; gene_name "RBH2"; gene_id "YJR030C"; +chrX SGD gene 486469 490911 . - . gene_id "YJR031C"; gene_biotype "protein_coding"; +chrX SGD transcript 486469 490911 . - . transcript_id "YJR031C_id002"; gene_id "YJR031C"; gene_name "GEA1"; transcript_biotype "protein_coding"; +chrX SGD exon 486469 490911 . - . transcript_id "YJR031C_id002"; gene_id "YJR031C"; gene_name "GEA1"; +chrX SGD transcript 486586 490812 . - . transcript_id "YJR031C_id001"; gene_id "YJR031C"; gene_name "GEA1"; transcript_biotype "protein_coding"; +chrX SGD exon 486586 490812 . - 0 transcript_id "YJR031C_id001"; gene_name "GEA1"; gene_id "YJR031C"; +chrX SGD gene 491058 492491 . + . gene_id "YJR032W"; gene_biotype "protein_coding"; +chrX SGD transcript 491058 492491 . + . transcript_id "YJR032W_id001"; gene_id "YJR032W"; gene_name "CPR7"; transcript_biotype "protein_coding"; +chrX SGD exon 491058 492491 . + . transcript_id "YJR032W_id001"; gene_id "YJR032W"; gene_name "CPR7"; +chrX SGD transcript 491081 492262 . + . transcript_id "YJR032W_id002"; gene_id "YJR032W"; gene_name "CPR7"; transcript_biotype "protein_coding"; +chrX SGD exon 491081 492262 . + 0 transcript_id "YJR032W_id002"; gene_name "CPR7"; gene_id "YJR032W"; +chrX SGD gene 492378 496451 . - . gene_id "YJR033C"; gene_biotype "protein_coding"; +chrX SGD transcript 492378 496451 . - . transcript_id "YJR033C_mRNA"; gene_id "YJR033C"; gene_name "RAV1"; transcript_biotype "protein_coding"; +chrX SGD CDS 492378 496451 . - 0 transcript_id "YJR033C_mRNA"; gene_name "RAV1"; gene_id "YJR033C"; +chrX SGD gene 496580 497222 . + . gene_id "YJR034W"; gene_biotype "protein_coding"; +chrX SGD transcript 496580 497222 . + . transcript_id "YJR034W_id003"; gene_id "YJR034W"; gene_name "PET191"; transcript_biotype "protein_coding"; +chrX SGD exon 496580 497222 . + . transcript_id "YJR034W_id003"; gene_id "YJR034W"; gene_name "PET191"; +chrX SGD transcript 496683 497009 . + . transcript_id "YJR034W_id001"; gene_id "YJR034W"; gene_name "PET191"; transcript_biotype "protein_coding"; +chrX SGD exon 496683 497009 . + 0 transcript_id "YJR034W_id001"; gene_name "PET191"; gene_id "YJR034W"; +chrX SGD gene 497355 500612 . + . gene_id "YJR035W"; gene_biotype "protein_coding"; +chrX SGD transcript 497355 500612 . + . transcript_id "YJR035W_mRNA"; gene_id "YJR035W"; gene_name "RAD26"; transcript_biotype "protein_coding"; +chrX SGD CDS 497355 500612 . + 0 transcript_id "YJR035W_mRNA"; gene_name "RAD26"; gene_id "YJR035W"; +chrX SGD gene 500713 503391 . - . gene_id "YJR036C"; gene_biotype "protein_coding"; +chrX SGD transcript 500713 503391 . - . transcript_id "YJR036C_mRNA"; gene_id "YJR036C"; gene_name "HUL4"; transcript_biotype "protein_coding"; +chrX SGD CDS 500713 503391 . - 0 transcript_id "YJR036C_mRNA"; gene_name "HUL4"; gene_id "YJR036C"; +chrX SGD gene 503102 503485 . + . gene_id "YJR037W"; gene_biotype "protein_coding"; +chrX SGD transcript 503102 503485 . + . transcript_id "YJR037W_mRNA"; gene_id "YJR037W"; transcript_biotype "protein_coding"; +chrX SGD CDS 503102 503485 . + 0 transcript_id "YJR037W_mRNA"; gene_id "YJR037W"; +chrX SGD gene 503710 504072 . - . gene_id "YJR038C"; gene_biotype "protein_coding"; +chrX SGD transcript 503710 504072 . - . transcript_id "YJR038C_mRNA"; gene_id "YJR038C"; transcript_biotype "protein_coding"; +chrX SGD CDS 503710 504072 . - 0 transcript_id "YJR038C_mRNA"; gene_id "YJR038C"; +chrX SGD gene 503936 507301 . + . gene_id "YJR039W"; gene_biotype "protein_coding"; +chrX SGD transcript 503936 507301 . + . transcript_id "YJR039W_mRNA"; gene_id "YJR039W"; gene_name "MLO127"; transcript_biotype "protein_coding"; +chrX SGD CDS 503936 507301 . + 0 transcript_id "YJR039W_mRNA"; gene_name "MLO127"; gene_id "YJR039W"; +chrX SGD gene 507707 510154 . + . gene_id "YJR040W"; gene_biotype "protein_coding"; +chrX SGD transcript 507707 510154 . + . transcript_id "YJR040W_id003"; gene_id "YJR040W"; gene_name "GEF1"; transcript_biotype "protein_coding"; +chrX SGD exon 507707 510154 . + . transcript_id "YJR040W_id003"; gene_id "YJR040W"; gene_name "GEF1"; +chrX SGD transcript 507746 510085 . + . transcript_id "YJR040W_id001"; gene_id "YJR040W"; gene_name "GEF1"; transcript_biotype "protein_coding"; +chrX SGD exon 507746 510085 . + 0 transcript_id "YJR040W_id001"; gene_name "GEF1"; gene_id "YJR040W"; +chrX SGD gene 510239 513763 . - . gene_id "YJR041C"; gene_biotype "protein_coding"; +chrX SGD transcript 510239 513763 . - . transcript_id "YJR041C_id001"; gene_id "YJR041C"; gene_name "URB2"; transcript_biotype "protein_coding"; +chrX SGD exon 510239 513763 . - 0 transcript_id "YJR041C_id001"; gene_name "URB2"; gene_id "YJR041C"; +chrX SGD gene 514030 516469 . + . gene_id "YJR042W"; gene_biotype "protein_coding"; +chrX SGD transcript 514030 516469 . + . transcript_id "YJR042W_id002"; gene_id "YJR042W"; gene_name "NUP85"; transcript_biotype "protein_coding"; +chrX SGD exon 514030 516469 . + . transcript_id "YJR042W_id002"; gene_id "YJR042W"; gene_name "NUP85"; +chrX SGD transcript 514055 516289 . + . transcript_id "YJR042W_id001"; gene_id "YJR042W"; gene_name "NUP85"; transcript_biotype "protein_coding"; +chrX SGD exon 514055 516289 . + 0 transcript_id "YJR042W_id001"; gene_name "NUP85"; gene_id "YJR042W"; +chrX SGD gene 516292 517581 . - . gene_id "YJR043C"; gene_biotype "protein_coding"; +chrX SGD transcript 516292 517581 . - . transcript_id "YJR043C_id002"; gene_id "YJR043C"; gene_name "POL32"; transcript_biotype "protein_coding"; +chrX SGD exon 516292 517581 . - . transcript_id "YJR043C_id002"; gene_id "YJR043C"; gene_name "POL32"; +chrX SGD transcript 516461 517513 . - . transcript_id "YJR043C_id001"; gene_id "YJR043C"; gene_name "POL32"; transcript_biotype "protein_coding"; +chrX SGD exon 516461 517513 . - 0 transcript_id "YJR043C_id001"; gene_name "POL32"; gene_id "YJR043C"; +chrX SGD gene 517813 517884 . - . gene_id "YNCJ0022C"; gene_biotype "ncRNA"; +chrX SGD transcript 517813 517884 . - . transcript_id "YNCJ0022C_tRNA"; gene_id "YNCJ0022C"; gene_name "IMT3"; transcript_biotype "ncRNA"; +chrX SGD exon 517813 517884 . - . transcript_id "YNCJ0022C_tRNA"; gene_name "IMT3"; gene_id "YNCJ0022C"; +chrX SGD gene 518763 519185 . - . gene_id "YJR044C"; gene_biotype "protein_coding"; +chrX SGD transcript 518763 519185 . - . transcript_id "YJR044C_id001"; gene_id "YJR044C"; gene_name "VPS55"; transcript_biotype "protein_coding"; +chrX SGD exon 518763 519185 . - 0 transcript_id "YJR044C_id001"; gene_name "VPS55"; gene_id "YJR044C"; +chrX SGD gene 519638 521602 . - . gene_id "YJR045C"; gene_biotype "protein_coding"; +chrX SGD transcript 519638 521602 . - . transcript_id "YJR045C_id001"; gene_id "YJR045C"; gene_name "SSC1"; transcript_biotype "protein_coding"; +chrX SGD exon 519638 521602 . - 0 transcript_id "YJR045C_id001"; gene_name "SSC1"; gene_id "YJR045C"; +chrX SGD gene 522048 523862 . + . gene_id "YJR046W"; gene_biotype "protein_coding"; +chrX SGD transcript 522048 523862 . + . transcript_id "YJR046W_id001"; gene_id "YJR046W"; gene_name "TAH11"; transcript_biotype "protein_coding"; +chrX SGD exon 522048 523862 . + 0 transcript_id "YJR046W_id001"; gene_name "TAH11"; gene_id "YJR046W"; +chrX SGD gene 524012 524093 . - . gene_id "YNCJ0023C"; gene_biotype "ncRNA"; +chrX SGD transcript 524012 524093 . - . transcript_id "YNCJ0023C_tRNA"; gene_id "YNCJ0023C"; transcript_biotype "ncRNA"; +chrX SGD exon 524012 524093 . - . transcript_id "YNCJ0023C_tRNA"; gene_id "YNCJ0023C"; +chrX SGD gene 524798 525504 . - . gene_id "YJR047C"; gene_biotype "protein_coding"; +chrX SGD transcript 524798 525504 . - . transcript_id "YJR047C_id001"; gene_id "YJR047C"; gene_name "ANB1"; transcript_biotype "protein_coding"; +chrX SGD exon 524798 525504 . - . transcript_id "YJR047C_id001"; gene_id "YJR047C"; gene_name "ANB1"; +chrX SGD transcript 524908 525381 . - . transcript_id "YJR047C_id004"; gene_id "YJR047C"; gene_name "ANB1"; transcript_biotype "protein_coding"; +chrX SGD exon 524908 525381 . - 0 transcript_id "YJR047C_id004"; gene_name "ANB1"; gene_id "YJR047C"; +chrX SGD gene 526027 526838 . + . gene_id "YJR048W"; gene_biotype "protein_coding"; +chrX SGD transcript 526027 526838 . + . transcript_id "YJR048W_id001"; gene_id "YJR048W"; gene_name "CYC1"; transcript_biotype "protein_coding"; +chrX SGD exon 526027 526838 . + . transcript_id "YJR048W_id001"; gene_id "YJR048W"; gene_name "CYC1"; +chrX SGD transcript 526335 526664 . + . transcript_id "YJR048W_id003"; gene_id "YJR048W"; gene_name "CYC1"; transcript_biotype "protein_coding"; +chrX SGD exon 526335 526664 . + 0 transcript_id "YJR048W_id003"; gene_name "CYC1"; gene_id "YJR048W"; +chrX SGD gene 526614 528498 . - . gene_id "YJR049C"; gene_biotype "protein_coding"; +chrX SGD transcript 526614 528498 . - . transcript_id "YJR049C_id004"; gene_id "YJR049C"; gene_name "UTR1"; transcript_biotype "protein_coding"; +chrX SGD exon 526614 528498 . - . transcript_id "YJR049C_id004"; gene_id "YJR049C"; gene_name "UTR1"; +chrX SGD transcript 526884 528476 . - . transcript_id "YJR049C_id001"; gene_id "YJR049C"; gene_name "UTR1"; transcript_biotype "protein_coding"; +chrX SGD exon 526884 528476 . - 0 transcript_id "YJR049C_id001"; gene_name "UTR1"; gene_id "YJR049C"; +chrX SGD gene 528638 529679 . + . gene_id "YJR050W"; gene_biotype "protein_coding"; +chrX SGD transcript 528638 529679 . + . transcript_id "YJR050W_id001"; gene_id "YJR050W"; gene_name "ISY1"; transcript_biotype "protein_coding"; +chrX SGD exon 528638 529679 . + . transcript_id "YJR050W_id001"; gene_id "YJR050W"; gene_name "ISY1"; +chrX SGD transcript 528697 529404 . + . transcript_id "YJR050W_id004"; gene_id "YJR050W"; gene_name "ISY1"; transcript_biotype "protein_coding"; +chrX SGD exon 528697 529404 . + 0 transcript_id "YJR050W_id004"; gene_name "ISY1"; gene_id "YJR050W"; +chrX SGD gene 529795 531463 . + . gene_id "YJR051W"; gene_biotype "protein_coding"; +chrX SGD transcript 529795 531463 . + . transcript_id "YJR051W_id003"; gene_id "YJR051W"; gene_name "OSM1"; transcript_biotype "protein_coding"; +chrX SGD exon 529795 531463 . + . transcript_id "YJR051W_id003"; gene_id "YJR051W"; gene_name "OSM1"; +chrX SGD transcript 529861 531366 . + . transcript_id "YJR051W_id001"; gene_id "YJR051W"; gene_name "OSM1"; transcript_biotype "protein_coding"; +chrX SGD exon 529861 531366 . + 0 transcript_id "YJR051W_id001"; gene_name "OSM1"; gene_id "YJR051W"; +chrX SGD gene 531828 531898 . + . gene_id "YNCJ0024W"; gene_biotype "ncRNA"; +chrX SGD transcript 531828 531898 . + . transcript_id "YNCJ0024W_tRNA"; gene_id "YNCJ0024W"; gene_name "SUF23"; transcript_biotype "ncRNA"; +chrX SGD exon 531828 531898 . + . transcript_id "YNCJ0024W_tRNA"; gene_name "SUF23"; gene_id "YNCJ0024W"; +chrX SGD gene 532000 533825 . + . gene_id "YJR052W"; gene_biotype "protein_coding"; +chrX SGD transcript 532000 533825 . + . transcript_id "YJR052W_id003"; gene_id "YJR052W"; gene_name "RAD7"; transcript_biotype "protein_coding"; +chrX SGD exon 532000 533825 . + . transcript_id "YJR052W_id003"; gene_id "YJR052W"; gene_name "RAD7"; +chrX SGD transcript 532062 533759 . + . transcript_id "YJR052W_id001"; gene_id "YJR052W"; gene_name "RAD7"; transcript_biotype "protein_coding"; +chrX SGD exon 532062 533759 . + 0 transcript_id "YJR052W_id001"; gene_name "RAD7"; gene_id "YJR052W"; +chrX SGD gene 534027 535751 . + . gene_id "YJR053W"; gene_biotype "protein_coding"; +chrX SGD transcript 534027 535751 . + . transcript_id "YJR053W_mRNA"; gene_id "YJR053W"; gene_name "BFA1"; transcript_biotype "protein_coding"; +chrX SGD CDS 534027 535751 . + 0 transcript_id "YJR053W_mRNA"; gene_name "BFA1"; gene_id "YJR053W"; +chrX SGD gene 535954 537578 . + . gene_id "YJR054W"; gene_biotype "protein_coding"; +chrX SGD transcript 535954 537578 . + . transcript_id "YJR054W_id004"; gene_id "YJR054W"; gene_name "KCH1"; transcript_biotype "protein_coding"; +chrX SGD exon 535954 537578 . + . transcript_id "YJR054W_id004"; gene_id "YJR054W"; gene_name "KCH1"; +chrX SGD transcript 536056 537549 . + . transcript_id "YJR054W_id001"; gene_id "YJR054W"; gene_name "KCH1"; transcript_biotype "protein_coding"; +chrX SGD exon 536056 537549 . + 0 transcript_id "YJR054W_id001"; gene_name "KCH1"; gene_id "YJR054W"; +chrX SGD gene 538555 538626 . + . gene_id "YNCJ0025W"; gene_biotype "ncRNA"; +chrX SGD transcript 538555 538626 . + . transcript_id "YNCJ0025W_tRNA"; gene_id "YNCJ0025W"; gene_name "HSX1"; transcript_biotype "ncRNA"; +chrX SGD exon 538555 538626 . + . transcript_id "YNCJ0025W_tRNA"; gene_name "HSX1"; gene_id "YNCJ0025W"; +chrX SGD gene 538762 539704 . + . gene_id "YJR055W"; gene_biotype "protein_coding"; +chrX SGD transcript 538762 539704 . + . transcript_id "YJR055W_id008"; gene_id "YJR055W"; gene_name "HIT1"; transcript_biotype "protein_coding"; +chrX SGD exon 538762 539704 . + . transcript_id "YJR055W_id008"; gene_id "YJR055W"; gene_name "HIT1"; +chrX SGD transcript 538772 539266 . + . transcript_id "YJR055W_id001"; gene_id "YJR055W"; gene_name "HIT1"; transcript_biotype "protein_coding"; +chrX SGD exon 538772 539266 . + 0 transcript_id "YJR055W_id001"; gene_name "HIT1"; gene_id "YJR055W"; +chrX SGD gene 541508 541579 . + . gene_id "YNCJ0026W"; gene_biotype "ncRNA"; +chrX SGD transcript 541508 541579 . + . transcript_id "YNCJ0026W_tRNA"; gene_id "YNCJ0026W"; transcript_biotype "ncRNA"; +chrX SGD exon 541508 541579 . + . transcript_id "YNCJ0026W_tRNA"; gene_id "YNCJ0026W"; +chrX SGD gene 541652 542703 . - . gene_id "YJR056C"; gene_biotype "protein_coding"; +chrX SGD transcript 541652 542703 . - . transcript_id "YJR056C_id004"; gene_id "YJR056C"; transcript_biotype "protein_coding"; +chrX SGD exon 541652 542703 . - . transcript_id "YJR056C_id004"; gene_id "YJR056C"; +chrX SGD transcript 541792 542502 . - . transcript_id "YJR056C_id001"; gene_id "YJR056C"; transcript_biotype "protein_coding"; +chrX SGD exon 541792 542502 . - 0 transcript_id "YJR056C_id001"; gene_id "YJR056C"; +chrX SGD gene 542956 543044 . - . gene_id "YNCJ0027C"; gene_biotype "ncRNA"; +chrX SGD transcript 542956 543044 . - . transcript_id "YNCJ0027C_tRNA"; gene_id "YNCJ0027C"; gene_name "SUP4"; transcript_biotype "ncRNA"; +chrX SGD exon 542956 542991 . - . transcript_id "YNCJ0027C_tRNA"; gene_name "SUP4"; gene_id "YNCJ0027C"; +chrX SGD exon 543006 543044 . - . transcript_id "YNCJ0027C_tRNA"; gene_name "SUP4"; gene_id "YNCJ0027C"; +chrX SGD gene 544055 544867 . + . gene_id "YJR057W"; gene_biotype "protein_coding"; +chrX SGD transcript 544055 544867 . + . transcript_id "YJR057W_id002"; gene_id "YJR057W"; gene_name "CDC8"; transcript_biotype "protein_coding"; +chrX SGD exon 544055 544867 . + . transcript_id "YJR057W_id002"; gene_id "YJR057W"; gene_name "CDC8"; +chrX SGD transcript 544062 544712 . + . transcript_id "YJR057W_id001"; gene_id "YJR057W"; gene_name "CDC8"; transcript_biotype "protein_coding"; +chrX SGD exon 544062 544712 . + 0 transcript_id "YJR057W_id001"; gene_name "CDC8"; gene_id "YJR057W"; +chrX SGD gene 544675 545464 . - . gene_id "YJR058C"; gene_biotype "protein_coding"; +chrX SGD transcript 544675 545464 . - . transcript_id "YJR058C_id003"; gene_id "YJR058C"; gene_name "APS2"; transcript_biotype "protein_coding"; +chrX SGD exon 544675 545464 . - . transcript_id "YJR058C_id003"; gene_id "YJR058C"; gene_name "APS2"; +chrX SGD transcript 544732 545175 . - . transcript_id "YJR058C_id001"; gene_id "YJR058C"; gene_name "APS2"; transcript_biotype "protein_coding"; +chrX SGD exon 544732 545175 . - 0 transcript_id "YJR058C_id001"; gene_name "APS2"; gene_id "YJR058C"; +chrX SGD gene 545712 548367 . + . gene_id "YJR059W"; gene_biotype "protein_coding"; +chrX SGD transcript 545712 548367 . + . transcript_id "YJR059W_id002"; gene_id "YJR059W"; gene_name "PTK2"; transcript_biotype "protein_coding"; +chrX SGD exon 545712 548367 . + . transcript_id "YJR059W_id002"; gene_id "YJR059W"; gene_name "PTK2"; +chrX SGD transcript 545787 548243 . + . transcript_id "YJR059W_id001"; gene_id "YJR059W"; gene_name "PTK2"; transcript_biotype "protein_coding"; +chrX SGD exon 545787 548243 . + 0 transcript_id "YJR059W_id001"; gene_name "PTK2"; gene_id "YJR059W"; +chrX SGD gene 548644 550592 . + . gene_id "YJR060W"; gene_biotype "protein_coding"; +chrX SGD transcript 548644 550592 . + . transcript_id "YJR060W_id001"; gene_id "YJR060W"; gene_name "CBF1"; transcript_biotype "protein_coding"; +chrX SGD exon 548644 550592 . + . transcript_id "YJR060W_id001"; gene_id "YJR060W"; gene_name "CBF1"; +chrX SGD transcript 548759 549814 . + . transcript_id "YJR060W_id003"; gene_id "YJR060W"; gene_name "CBF1"; transcript_biotype "protein_coding"; +chrX SGD exon 548759 549814 . + 0 transcript_id "YJR060W_id003"; gene_name "CBF1"; gene_id "YJR060W"; +chrX SGD gene 550511 553318 . + . gene_id "YJR061W"; gene_biotype "protein_coding"; +chrX SGD transcript 550511 553318 . + . transcript_id "YJR061W_mRNA"; gene_id "YJR061W"; gene_name "MNN14"; transcript_biotype "protein_coding"; +chrX SGD CDS 550511 553318 . + 0 transcript_id "YJR061W_mRNA"; gene_name "MNN14"; gene_id "YJR061W"; +chrX SGD gene 552845 554863 . - . gene_id "YJR062C"; gene_biotype "protein_coding"; +chrX SGD transcript 552845 554863 . - . transcript_id "YJR062C_id003"; gene_id "YJR062C"; gene_name "NTA1"; transcript_biotype "protein_coding"; +chrX SGD exon 552845 554863 . - . transcript_id "YJR062C_id003"; gene_id "YJR062C"; gene_name "NTA1"; +chrX SGD transcript 553476 554849 . - . transcript_id "YJR062C_id001"; gene_id "YJR062C"; gene_name "NTA1"; transcript_biotype "protein_coding"; +chrX SGD exon 553476 554849 . - 0 transcript_id "YJR062C_id001"; gene_name "NTA1"; gene_id "YJR062C"; +chrX SGD gene 555148 555797 . + . gene_id "YJR063W"; gene_biotype "protein_coding"; +chrX SGD transcript 555148 555797 . + . transcript_id "YJR063W_id002"; gene_id "YJR063W"; gene_name "RPA12"; transcript_biotype "protein_coding"; +chrX SGD exon 555148 555797 . + . transcript_id "YJR063W_id002"; gene_id "YJR063W"; gene_name "RPA12"; +chrX SGD transcript 555195 555572 . + . transcript_id "YJR063W_id001"; gene_id "YJR063W"; gene_name "RPA12"; transcript_biotype "protein_coding"; +chrX SGD exon 555195 555572 . + 0 transcript_id "YJR063W_id001"; gene_name "RPA12"; gene_id "YJR063W"; +chrX SGD gene 555878 557750 . + . gene_id "YJR064W"; gene_biotype "protein_coding"; +chrX SGD transcript 555878 557750 . + . transcript_id "YJR064W_id004"; gene_id "YJR064W"; gene_name "CCT5"; transcript_biotype "protein_coding"; +chrX SGD exon 555878 557750 . + . transcript_id "YJR064W_id004"; gene_id "YJR064W"; gene_name "CCT5"; +chrX SGD transcript 555914 557602 . + . transcript_id "YJR064W_id001"; gene_id "YJR064W"; gene_name "CCT5"; transcript_biotype "protein_coding"; +chrX SGD exon 555914 557602 . + 0 transcript_id "YJR064W_id001"; gene_name "CCT5"; gene_id "YJR064W"; +chrX SGD gene 557510 559210 . - . gene_id "YJR065C"; gene_biotype "protein_coding"; +chrX SGD transcript 557510 559210 . - . transcript_id "YJR065C_id001"; gene_id "YJR065C"; gene_name "ARP3"; transcript_biotype "protein_coding"; +chrX SGD exon 557510 559210 . - . transcript_id "YJR065C_id001"; gene_id "YJR065C"; gene_name "ARP3"; +chrX SGD transcript 557809 559158 . - . transcript_id "YJR065C_id002"; gene_id "YJR065C"; gene_name "ARP3"; transcript_biotype "protein_coding"; +chrX SGD exon 557809 559158 . - 0 transcript_id "YJR065C_id002"; gene_name "ARP3"; gene_id "YJR065C"; +chrX SGD gene 559416 566828 . + . gene_id "YJR066W"; gene_biotype "protein_coding"; +chrX SGD transcript 559416 566828 . + . transcript_id "YJR066W_mRNA"; gene_id "YJR066W"; gene_name "TOR1"; transcript_biotype "protein_coding"; +chrX SGD CDS 559416 566828 . + 0 transcript_id "YJR066W_mRNA"; gene_name "TOR1"; gene_id "YJR066W"; +chrX SGD gene 566082 567477 . - . gene_id "YJR067C"; gene_biotype "protein_coding"; +chrX SGD transcript 566082 567477 . - . transcript_id "YJR067C_id002"; gene_id "YJR067C"; gene_name "YAE1"; transcript_biotype "protein_coding"; +chrX SGD exon 566082 567477 . - . transcript_id "YJR067C_id002"; gene_id "YJR067C"; gene_name "YAE1"; +chrX SGD transcript 567019 567444 . - . transcript_id "YJR067C_id001"; gene_id "YJR067C"; gene_name "YAE1"; transcript_biotype "protein_coding"; +chrX SGD exon 567019 567444 . - 0 transcript_id "YJR067C_id001"; gene_name "YAE1"; gene_id "YJR067C"; +chrX SGD gene 567595 568806 . + . gene_id "YJR068W"; gene_biotype "protein_coding"; +chrX SGD transcript 567595 568806 . + . transcript_id "YJR068W_id002"; gene_id "YJR068W"; gene_name "RFC2"; transcript_biotype "protein_coding"; +chrX SGD exon 567595 568806 . + . transcript_id "YJR068W_id002"; gene_id "YJR068W"; gene_name "RFC2"; +chrX SGD transcript 567643 568704 . + . transcript_id "YJR068W_id001"; gene_id "YJR068W"; gene_name "RFC2"; transcript_biotype "protein_coding"; +chrX SGD exon 567643 568704 . + 0 transcript_id "YJR068W_id001"; gene_name "RFC2"; gene_id "YJR068W"; +chrX SGD gene 568589 569450 . - . gene_id "YJR069C"; gene_biotype "protein_coding"; +chrX SGD transcript 568589 569450 . - . transcript_id "YJR069C_id001"; gene_id "YJR069C"; gene_name "HAM1"; transcript_biotype "protein_coding"; +chrX SGD exon 568589 569450 . - . transcript_id "YJR069C_id001"; gene_id "YJR069C"; gene_name "HAM1"; +chrX SGD transcript 568806 569399 . - . transcript_id "YJR069C_id002"; gene_id "YJR069C"; gene_name "HAM1"; transcript_biotype "protein_coding"; +chrX SGD exon 568806 569399 . - 0 transcript_id "YJR069C_id002"; gene_name "HAM1"; gene_id "YJR069C"; +chrX SGD gene 569491 570823 . - . gene_id "YJR070C"; gene_biotype "protein_coding"; +chrX SGD transcript 569491 570823 . - . transcript_id "YJR070C_id002"; gene_id "YJR070C"; gene_name "LIA1"; transcript_biotype "protein_coding"; +chrX SGD exon 569491 570823 . - . transcript_id "YJR070C_id002"; gene_id "YJR070C"; gene_name "LIA1"; +chrX SGD transcript 569621 570598 . - . transcript_id "YJR070C_id001"; gene_id "YJR070C"; gene_name "LIA1"; transcript_biotype "protein_coding"; +chrX SGD exon 569621 570598 . - 0 transcript_id "YJR070C_id001"; gene_name "LIA1"; gene_id "YJR070C"; +chrX SGD gene 570405 570773 . + . gene_id "YJR071W"; gene_biotype "protein_coding"; +chrX SGD transcript 570405 570773 . + . transcript_id "YJR071W_mRNA"; gene_id "YJR071W"; transcript_biotype "protein_coding"; +chrX SGD CDS 570405 570773 . + 0 transcript_id "YJR071W_mRNA"; gene_id "YJR071W"; +chrX SGD gene 570666 572165 . - . gene_id "YJR072C"; gene_biotype "protein_coding"; +chrX SGD transcript 570666 572165 . - . transcript_id "YJR072C_id002"; gene_id "YJR072C"; gene_name "NPA3"; transcript_biotype "protein_coding"; +chrX SGD exon 570666 572165 . - . transcript_id "YJR072C_id002"; gene_id "YJR072C"; gene_name "NPA3"; +chrX SGD transcript 570967 572124 . - . transcript_id "YJR072C_id001"; gene_id "YJR072C"; gene_name "NPA3"; transcript_biotype "protein_coding"; +chrX SGD exon 570967 572124 . - 0 transcript_id "YJR072C_id001"; gene_name "NPA3"; gene_id "YJR072C"; +chrX SGD gene 572261 573735 . - . gene_id "YJR073C"; gene_biotype "protein_coding"; +chrX SGD transcript 572261 573735 . - . transcript_id "YJR073C_id001"; gene_id "YJR073C"; gene_name "OPI3"; transcript_biotype "protein_coding"; +chrX SGD exon 572261 573735 . - . transcript_id "YJR073C_id001"; gene_id "YJR073C"; gene_name "OPI3"; +chrX SGD transcript 572315 572935 . - . transcript_id "YJR073C_id004"; gene_id "YJR073C"; gene_name "OPI3"; transcript_biotype "protein_coding"; +chrX SGD exon 572315 572935 . - 0 transcript_id "YJR073C_id004"; gene_name "OPI3"; gene_id "YJR073C"; +chrX SGD gene 573079 573848 . + . gene_id "YJR074W"; gene_biotype "protein_coding"; +chrX SGD transcript 573079 573848 . + . transcript_id "YJR074W_id003"; gene_id "YJR074W"; gene_name "MOG1"; transcript_biotype "protein_coding"; +chrX SGD exon 573079 573848 . + . transcript_id "YJR074W_id003"; gene_id "YJR074W"; gene_name "MOG1"; +chrX SGD transcript 573095 573751 . + . transcript_id "YJR074W_id001"; gene_id "YJR074W"; gene_name "MOG1"; transcript_biotype "protein_coding"; +chrX SGD exon 573095 573751 . + 0 transcript_id "YJR074W_id001"; gene_name "MOG1"; gene_id "YJR074W"; +chrX SGD gene 573919 575444 . + . gene_id "YJR075W"; gene_biotype "protein_coding"; +chrX SGD transcript 573919 575444 . + . transcript_id "YJR075W_id001"; gene_id "YJR075W"; gene_name "HOC1"; transcript_biotype "protein_coding"; +chrX SGD exon 573919 575444 . + . transcript_id "YJR075W_id001"; gene_id "YJR075W"; gene_name "HOC1"; +chrX SGD transcript 573981 575171 . + . transcript_id "YJR075W_id005"; gene_id "YJR075W"; gene_name "HOC1"; transcript_biotype "protein_coding"; +chrX SGD exon 573981 575171 . + 0 transcript_id "YJR075W_id005"; gene_name "HOC1"; gene_id "YJR075W"; +chrX SGD gene 575220 576690 . - . gene_id "YJR076C"; gene_biotype "protein_coding"; +chrX SGD transcript 575220 576690 . - . transcript_id "YJR076C_id004"; gene_id "YJR076C"; gene_name "CDC11"; transcript_biotype "protein_coding"; +chrX SGD exon 575220 576690 . - . transcript_id "YJR076C_id004"; gene_id "YJR076C"; gene_name "CDC11"; +chrX SGD transcript 575354 576601 . - . transcript_id "YJR076C_id001"; gene_id "YJR076C"; gene_name "CDC11"; transcript_biotype "protein_coding"; +chrX SGD exon 575354 576601 . - 0 transcript_id "YJR076C_id001"; gene_name "CDC11"; gene_id "YJR076C"; +chrX SGD gene 577042 578251 . - . gene_id "YJR077C"; gene_biotype "protein_coding"; +chrX SGD transcript 577042 578251 . - . transcript_id "YJR077C_id005"; gene_id "YJR077C"; gene_name "MIR1"; transcript_biotype "protein_coding"; +chrX SGD exon 577042 578251 . - . transcript_id "YJR077C_id005"; gene_id "YJR077C"; gene_name "MIR1"; +chrX SGD transcript 577255 578190 . - . transcript_id "YJR077C_id001"; gene_id "YJR077C"; gene_name "MIR1"; transcript_biotype "protein_coding"; +chrX SGD exon 577255 578190 . - 0 transcript_id "YJR077C_id001"; gene_name "MIR1"; gene_id "YJR077C"; +chrX SGD gene 578860 580221 . + . gene_id "YJR078W"; gene_biotype "protein_coding"; +chrX SGD transcript 578860 580221 . + . transcript_id "YJR078W_mRNA"; gene_id "YJR078W"; gene_name "BNA2"; transcript_biotype "protein_coding"; +chrX SGD CDS 578860 580221 . + 0 transcript_id "YJR078W_mRNA"; gene_name "BNA2"; gene_id "YJR078W"; +chrX SGD gene 580205 581239 . + . gene_id "YJR079W"; gene_biotype "protein_coding"; +chrX SGD transcript 580205 581239 . + . transcript_id "YJR079W_mRNA"; gene_id "YJR079W"; transcript_biotype "protein_coding"; +chrX SGD CDS 580205 580347 . + 0 transcript_id "YJR079W_mRNA"; gene_id "YJR079W"; +chrX SGD CDS 581053 581239 . + 1 transcript_id "YJR079W_mRNA"; gene_id "YJR079W"; +chrX SGD gene 580265 581699 . - . gene_id "YJR080C"; gene_biotype "protein_coding"; +chrX SGD transcript 580265 581699 . - . transcript_id "YJR080C_id003"; gene_id "YJR080C"; gene_name "AIM24"; transcript_biotype "protein_coding"; +chrX SGD exon 580265 581699 . - . transcript_id "YJR080C_id003"; gene_id "YJR080C"; gene_name "AIM24"; +chrX SGD transcript 580432 581616 . - . transcript_id "YJR080C_id001"; gene_id "YJR080C"; gene_name "AIM24"; transcript_biotype "protein_coding"; +chrX SGD exon 580432 581616 . - 0 transcript_id "YJR080C_id001"; gene_name "AIM24"; gene_id "YJR080C"; +chrX SGD gene 581709 582938 . - . gene_id "YJR082C"; gene_biotype "protein_coding"; +chrX SGD transcript 581709 582938 . - . transcript_id "YJR082C_id001"; gene_id "YJR082C"; gene_name "EAF6"; transcript_biotype "protein_coding"; +chrX SGD exon 581709 582938 . - . transcript_id "YJR082C_id001"; gene_id "YJR082C"; gene_name "EAF6"; +chrX SGD transcript 581914 582255 . - . transcript_id "YJR082C_id002"; gene_id "YJR082C"; gene_name "EAF6"; transcript_biotype "protein_coding"; +chrX SGD exon 581914 582255 . - 0 transcript_id "YJR082C_id002"; gene_name "EAF6"; gene_id "YJR082C"; +chrX SGD gene 582303 583579 . - . gene_id "YJR083C"; gene_biotype "protein_coding"; +chrX SGD transcript 582303 583579 . - . transcript_id "YJR083C_id001"; gene_id "YJR083C"; gene_name "ACF4"; transcript_biotype "protein_coding"; +chrX SGD exon 582303 583579 . - . transcript_id "YJR083C_id001"; gene_id "YJR083C"; gene_name "ACF4"; +chrX SGD transcript 582608 583537 . - . transcript_id "YJR083C_id002"; gene_id "YJR083C"; gene_name "ACF4"; transcript_biotype "protein_coding"; +chrX SGD exon 582608 583537 . - 0 transcript_id "YJR083C_id002"; gene_name "ACF4"; gene_id "YJR083C"; +chrX SGD gene 583690 585170 . + . gene_id "YJR084W"; gene_biotype "protein_coding"; +chrX SGD transcript 583690 585170 . + . transcript_id "YJR084W_id001"; gene_id "YJR084W"; transcript_biotype "protein_coding"; +chrX SGD exon 583690 585170 . + . transcript_id "YJR084W_id001"; gene_id "YJR084W"; +chrX SGD transcript 583733 585004 . + . transcript_id "YJR084W_id002"; gene_id "YJR084W"; transcript_biotype "protein_coding"; +chrX SGD exon 583733 585004 . + 0 transcript_id "YJR084W_id002"; gene_id "YJR084W"; +chrX SGD gene 584946 585481 . - . gene_id "YJR085C"; gene_biotype "protein_coding"; +chrX SGD transcript 584946 585481 . - . transcript_id "YJR085C_id001"; gene_id "YJR085C"; gene_name "TMH11"; transcript_biotype "protein_coding"; +chrX SGD exon 584946 585481 . - . transcript_id "YJR085C_id001"; gene_id "YJR085C"; gene_name "TMH11"; +chrX SGD transcript 585120 585437 . - . transcript_id "YJR085C_id002"; gene_id "YJR085C"; gene_name "TMH11"; transcript_biotype "protein_coding"; +chrX SGD exon 585120 585437 . - 0 transcript_id "YJR085C_id002"; gene_name "TMH11"; gene_id "YJR085C"; +chrX SGD gene 586068 586400 . + . gene_id "YJR086W"; gene_biotype "protein_coding"; +chrX SGD transcript 586068 586400 . + . transcript_id "YJR086W_id001"; gene_id "YJR086W"; gene_name "STE18"; transcript_biotype "protein_coding"; +chrX SGD exon 586068 586400 . + 0 transcript_id "YJR086W_id001"; gene_name "STE18"; gene_id "YJR086W"; +chrX SGD gene 586222 587702 . - . gene_id "YJR088C"; gene_biotype "protein_coding"; +chrX SGD transcript 586222 587702 . - . transcript_id "YJR088C_id001"; gene_id "YJR088C"; gene_name "EMC2"; transcript_biotype "protein_coding"; +chrX SGD exon 586222 587702 . - . transcript_id "YJR088C_id001"; gene_id "YJR088C"; gene_name "EMC2"; +chrX SGD gene 586400 586750 . + . gene_id "YJR087W"; gene_biotype "protein_coding"; +chrX SGD transcript 586400 586750 . + . transcript_id "YJR087W_mRNA"; gene_id "YJR087W"; transcript_biotype "protein_coding"; +chrX SGD CDS 586400 586750 . + 0 transcript_id "YJR087W_mRNA"; gene_id "YJR087W"; +chrX SGD transcript 586495 587373 . - . transcript_id "YJR088C_id002"; gene_id "YJR088C"; gene_name "EMC2"; transcript_biotype "protein_coding"; +chrX SGD exon 586495 587373 . - 0 transcript_id "YJR088C_id002"; gene_name "EMC2"; gene_id "YJR088C"; +chrX SGD gene 587718 590582 . + . gene_id "YJR089W"; gene_biotype "protein_coding"; +chrX SGD transcript 587718 590582 . + . transcript_id "YJR089W_mRNA"; gene_id "YJR089W"; gene_name "BIR1"; transcript_biotype "protein_coding"; +chrX SGD CDS 587718 590582 . + 0 transcript_id "YJR089W_mRNA"; gene_name "BIR1"; gene_id "YJR089W"; +chrX SGD gene 590872 594327 . - . gene_id "YJR090C"; gene_biotype "protein_coding"; +chrX SGD transcript 590872 594327 . - . transcript_id "YJR090C_mRNA"; gene_id "YJR090C"; gene_name "GRR1"; transcript_biotype "protein_coding"; +chrX SGD CDS 590872 594327 . - 0 transcript_id "YJR090C_mRNA"; gene_name "GRR1"; gene_id "YJR090C"; +chrX SGD gene 595061 598336 . - . gene_id "YJR091C"; gene_biotype "protein_coding"; +chrX SGD transcript 595061 598336 . - . transcript_id "YJR091C_id001"; gene_id "YJR091C"; gene_name "JSN1"; transcript_biotype "protein_coding"; +chrX SGD exon 595061 598336 . - 0 transcript_id "YJR091C_id001"; gene_name "JSN1"; gene_id "YJR091C"; +chrX SGD gene 598735 603078 . + . gene_id "YJR092W"; gene_biotype "protein_coding"; +chrX SGD transcript 598735 603078 . + . transcript_id "YJR092W_mRNA"; gene_id "YJR092W"; gene_name "BUD4"; transcript_biotype "protein_coding"; +chrX SGD CDS 598735 603078 . + 0 transcript_id "YJR092W_mRNA"; gene_name "BUD4"; gene_id "YJR092W"; +chrX SGD gene 603060 604261 . - . gene_id "YJR093C"; gene_biotype "protein_coding"; +chrX SGD transcript 603060 604261 . - . transcript_id "YJR093C_id002"; gene_id "YJR093C"; gene_name "FIP1"; transcript_biotype "protein_coding"; +chrX SGD exon 603060 604261 . - . transcript_id "YJR093C_id002"; gene_id "YJR093C"; gene_name "FIP1"; +chrX SGD transcript 603220 604203 . - . transcript_id "YJR093C_id001"; gene_id "YJR093C"; gene_name "FIP1"; transcript_biotype "protein_coding"; +chrX SGD exon 603220 604203 . - 0 transcript_id "YJR093C_id001"; gene_name "FIP1"; gene_id "YJR093C"; +chrX SGD gene 604397 605848 . - . gene_id "YJR094C"; gene_biotype "protein_coding"; +chrX SGD transcript 604397 605848 . - . transcript_id "YJR094C_id001"; gene_id "YJR094C"; gene_name "IME1"; transcript_biotype "protein_coding"; +chrX SGD exon 604397 605848 . - . transcript_id "YJR094C_id001"; gene_id "YJR094C"; gene_name "IME1"; +chrX SGD transcript 604569 605651 . - . transcript_id "YJR094C_id002"; gene_id "YJR094C"; gene_name "IME1"; transcript_biotype "protein_coding"; +chrX SGD exon 604569 605651 . - 0 transcript_id "YJR094C_id002"; gene_name "IME1"; gene_id "YJR094C"; +chrX SGD gene 605936 607424 . - . gene_id "YNCJ0028C"; gene_biotype "ncRNA"; +chrX SGD transcript 605936 607424 . - . transcript_id "YNCJ0028C_ncRNA"; gene_id "YNCJ0028C"; gene_name "IRT1"; transcript_biotype "ncRNA"; +chrX SGD exon 605936 607424 . - . transcript_id "YNCJ0028C_ncRNA"; gene_name "IRT1"; gene_id "YNCJ0028C"; +chrX SGD gene 608273 609090 . + . gene_id "YJR094W-A"; gene_biotype "protein_coding"; +chrX SGD transcript 608273 609090 . + . transcript_id "YJR094W-A_id002"; gene_id "YJR094W-A"; gene_name "RPL43B"; transcript_biotype "protein_coding"; +chrX SGD exon 608273 609090 . + . transcript_id "YJR094W-A_id002"; gene_id "YJR094W-A"; gene_name "RPL43B"; +chrX SGD transcript 608305 608858 . + . transcript_id "YJR094W-A_id001"; gene_id "YJR094W-A"; gene_name "RPL43B"; transcript_biotype "protein_coding"; +chrX SGD exon 608305 608306 . + 0 transcript_id "YJR094W-A_id001"; gene_name "RPL43B"; gene_id "YJR094W-A"; +chrX SGD exon 608582 608858 . + 1 transcript_id "YJR094W-A_id001"; gene_name "RPL43B"; gene_id "YJR094W-A"; +chrX SGD gene 609773 610741 . + . gene_id "YJR095W"; gene_biotype "protein_coding"; +chrX SGD transcript 609773 610741 . + . transcript_id "YJR095W_id001"; gene_id "YJR095W"; gene_name "SFC1"; transcript_biotype "protein_coding"; +chrX SGD exon 609773 610741 . + 0 transcript_id "YJR095W_id001"; gene_name "SFC1"; gene_id "YJR095W"; +chrX SGD gene 611024 612124 . + . gene_id "YJR096W"; gene_biotype "protein_coding"; +chrX SGD transcript 611024 612124 . + . transcript_id "YJR096W_id002"; gene_id "YJR096W"; transcript_biotype "protein_coding"; +chrX SGD exon 611024 612124 . + . transcript_id "YJR096W_id002"; gene_id "YJR096W"; +chrX SGD transcript 611195 612043 . + . transcript_id "YJR096W_id001"; gene_id "YJR096W"; transcript_biotype "protein_coding"; +chrX SGD exon 611195 612043 . + 0 transcript_id "YJR096W_id001"; gene_id "YJR096W"; +chrX SGD gene 612350 613167 . + . gene_id "YJR097W"; gene_biotype "protein_coding"; +chrX SGD transcript 612350 613167 . + . transcript_id "YJR097W_id002"; gene_id "YJR097W"; gene_name "JJJ3"; transcript_biotype "protein_coding"; +chrX SGD exon 612350 613167 . + . transcript_id "YJR097W_id002"; gene_id "YJR097W"; gene_name "JJJ3"; +chrX SGD transcript 612413 612931 . + . transcript_id "YJR097W_id001"; gene_id "YJR097W"; gene_name "JJJ3"; transcript_biotype "protein_coding"; +chrX SGD exon 612413 612931 . + 0 transcript_id "YJR097W_id001"; gene_name "JJJ3"; gene_id "YJR097W"; +chrX SGD gene 613186 615156 . - . gene_id "YJR098C"; gene_biotype "protein_coding"; +chrX SGD transcript 613186 615156 . - . transcript_id "YJR098C_id001"; gene_id "YJR098C"; transcript_biotype "protein_coding"; +chrX SGD exon 613186 615156 . - 0 transcript_id "YJR098C_id001"; gene_id "YJR098C"; +chrX SGD gene 615494 617739 . + . gene_id "YJR099W"; gene_biotype "protein_coding"; +chrX SGD transcript 615494 617739 . + . transcript_id "YJR099W_id001"; gene_id "YJR099W"; gene_name "YUH1"; transcript_biotype "protein_coding"; +chrX SGD exon 615494 617739 . + . transcript_id "YJR099W_id001"; gene_id "YJR099W"; gene_name "YUH1"; +chrX SGD transcript 615576 616286 . + . transcript_id "YJR099W_id002"; gene_id "YJR099W"; gene_name "YUH1"; transcript_biotype "protein_coding"; +chrX SGD exon 615576 616286 . + 0 transcript_id "YJR099W_id002"; gene_name "YUH1"; gene_id "YJR099W"; +chrX SGD gene 616279 617571 . - . gene_id "YJR100C"; gene_biotype "protein_coding"; +chrX SGD transcript 616279 617571 . - . transcript_id "YJR100C_id003"; gene_id "YJR100C"; gene_name "AIM25"; transcript_biotype "protein_coding"; +chrX SGD exon 616279 617571 . - . transcript_id "YJR100C_id003"; gene_id "YJR100C"; gene_name "AIM25"; +chrX SGD transcript 616351 617334 . - . transcript_id "YJR100C_id001"; gene_id "YJR100C"; gene_name "AIM25"; transcript_biotype "protein_coding"; +chrX SGD exon 616351 617334 . - 0 transcript_id "YJR100C_id001"; gene_name "AIM25"; gene_id "YJR100C"; +chrX SGD gene 617919 618019 . + . gene_id "YNCJ0029W"; gene_biotype "ncRNA"; +chrX SGD transcript 617919 618019 . + . transcript_id "YNCJ0029W_tRNA"; gene_id "YNCJ0029W"; transcript_biotype "ncRNA"; +chrX SGD exon 617919 617956 . + . transcript_id "YNCJ0029W_tRNA"; gene_id "YNCJ0029W"; +chrX SGD exon 617976 618019 . + . transcript_id "YNCJ0029W_tRNA"; gene_id "YNCJ0029W"; +chrX SGD gene 618114 619186 . + . gene_id "YJR101W"; gene_biotype "protein_coding"; +chrX SGD transcript 618114 619186 . + . transcript_id "YJR101W_id001"; gene_id "YJR101W"; gene_name "RSM26"; transcript_biotype "protein_coding"; +chrX SGD exon 618114 619186 . + . transcript_id "YJR101W_id001"; gene_id "YJR101W"; gene_name "RSM26"; +chrX SGD transcript 618234 619034 . + . transcript_id "YJR101W_id003"; gene_id "YJR101W"; gene_name "RSM26"; transcript_biotype "protein_coding"; +chrX SGD exon 618234 619034 . + 0 transcript_id "YJR101W_id003"; gene_name "RSM26"; gene_id "YJR101W"; +chrX SGD gene 619054 620054 . - . gene_id "YJR102C"; gene_biotype "protein_coding"; +chrX SGD transcript 619054 620054 . - . transcript_id "YJR102C_id003"; gene_id "YJR102C"; gene_name "VPS25"; transcript_biotype "protein_coding"; +chrX SGD exon 619054 620054 . - . transcript_id "YJR102C_id003"; gene_id "YJR102C"; gene_name "VPS25"; +chrX SGD transcript 619157 619765 . - . transcript_id "YJR102C_id001"; gene_id "YJR102C"; gene_name "VPS25"; transcript_biotype "protein_coding"; +chrX SGD exon 619157 619765 . - 0 transcript_id "YJR102C_id001"; gene_name "VPS25"; gene_id "YJR102C"; +chrX SGD gene 620678 622568 . + . gene_id "YJR103W"; gene_biotype "protein_coding"; +chrX SGD transcript 620678 622568 . + . transcript_id "YJR103W_id004"; gene_id "YJR103W"; gene_name "URA8"; transcript_biotype "protein_coding"; +chrX SGD exon 620678 622568 . + . transcript_id "YJR103W_id004"; gene_id "YJR103W"; gene_name "URA8"; +chrX SGD transcript 620754 622490 . + . transcript_id "YJR103W_id001"; gene_id "YJR103W"; gene_name "URA8"; transcript_biotype "protein_coding"; +chrX SGD exon 620754 622490 . + 0 transcript_id "YJR103W_id001"; gene_name "URA8"; gene_id "YJR103W"; +chrX SGD gene 622473 623989 . - . gene_id "YJR104C"; gene_biotype "protein_coding"; +chrX SGD transcript 622473 623989 . - . transcript_id "YJR104C_id003"; gene_id "YJR104C"; gene_name "SOD1"; transcript_biotype "protein_coding"; +chrX SGD exon 622473 623989 . - . transcript_id "YJR104C_id003"; gene_id "YJR104C"; gene_name "SOD1"; +chrX SGD transcript 622550 623014 . - . transcript_id "YJR104C_id001"; gene_id "YJR104C"; gene_name "SOD1"; transcript_biotype "protein_coding"; +chrX SGD exon 622550 623014 . - 0 transcript_id "YJR104C_id001"; gene_name "SOD1"; gene_id "YJR104C"; +chrX SGD gene 623169 624649 . + . gene_id "YJR105W"; gene_biotype "protein_coding"; +chrX SGD transcript 623169 624649 . + . transcript_id "YJR105W_id001"; gene_id "YJR105W"; gene_name "ADO1"; transcript_biotype "protein_coding"; +chrX SGD exon 623169 624649 . + . transcript_id "YJR105W_id001"; gene_id "YJR105W"; gene_name "ADO1"; +chrX SGD transcript 623581 624603 . + . transcript_id "YJR105W_id002"; gene_id "YJR105W"; gene_name "ADO1"; transcript_biotype "protein_coding"; +chrX SGD exon 623581 624603 . + 0 transcript_id "YJR105W_id002"; gene_name "ADO1"; gene_id "YJR105W"; +chrX SGD gene 624838 627015 . + . gene_id "YJR106W"; gene_biotype "protein_coding"; +chrX SGD transcript 624838 627015 . + . transcript_id "YJR106W_id001"; gene_id "YJR106W"; gene_name "ECM27"; transcript_biotype "protein_coding"; +chrX SGD exon 624838 627015 . + 0 transcript_id "YJR106W_id001"; gene_name "ECM27"; gene_id "YJR106W"; +chrX SGD gene 626807 628436 . + . gene_id "YJR107W"; gene_biotype "protein_coding"; +chrX SGD transcript 626807 628436 . + . transcript_id "YJR107W_id006"; gene_id "YJR107W"; gene_name "LIH1"; transcript_biotype "protein_coding"; +chrX SGD exon 626807 628436 . + . transcript_id "YJR107W_id006"; gene_id "YJR107W"; gene_name "LIH1"; +chrX SGD transcript 627340 628326 . + . transcript_id "YJR107W_id001"; gene_id "YJR107W"; gene_name "LIH1"; transcript_biotype "protein_coding"; +chrX SGD exon 627340 628326 . + 0 transcript_id "YJR107W_id001"; gene_name "LIH1"; gene_id "YJR107W"; +chrX SGD gene 628457 628693 . - . gene_id "YJR107C-A"; gene_biotype "protein_coding"; +chrX SGD transcript 628457 628693 . - . transcript_id "YJR107C-A_mRNA"; gene_id "YJR107C-A"; transcript_biotype "protein_coding"; +chrX SGD CDS 628457 628693 . - 0 transcript_id "YJR107C-A_mRNA"; gene_id "YJR107C-A"; +chrX SGD gene 628712 629083 . + . gene_id "YJR108W"; gene_biotype "protein_coding"; +chrX SGD transcript 628712 629083 . + . transcript_id "YJR108W_mRNA"; gene_id "YJR108W"; gene_name "ABM1"; transcript_biotype "protein_coding"; +chrX SGD CDS 628712 629083 . + 0 transcript_id "YJR108W_mRNA"; gene_name "ABM1"; gene_id "YJR108W"; +chrX SGD gene 629482 633018 . - . gene_id "YJR109C"; gene_biotype "protein_coding"; +chrX SGD transcript 629482 633018 . - . transcript_id "YJR109C_id001"; gene_id "YJR109C"; gene_name "CPA2"; transcript_biotype "protein_coding"; +chrX SGD exon 629482 633018 . - . transcript_id "YJR109C_id001"; gene_id "YJR109C"; gene_name "CPA2"; +chrX SGD transcript 629585 632941 . - . transcript_id "YJR109C_id007"; gene_id "YJR109C"; gene_name "CPA2"; transcript_biotype "protein_coding"; +chrX SGD exon 629585 632941 . - 0 transcript_id "YJR109C_id007"; gene_name "CPA2"; gene_id "YJR109C"; +chrX SGD gene 633489 635823 . + . gene_id "YJR110W"; gene_biotype "protein_coding"; +chrX SGD transcript 633489 635823 . + . transcript_id "YJR110W_id003"; gene_id "YJR110W"; gene_name "YMR1"; transcript_biotype "protein_coding"; +chrX SGD exon 633489 635823 . + . transcript_id "YJR110W_id003"; gene_id "YJR110W"; gene_name "YMR1"; +chrX SGD transcript 633615 635681 . + . transcript_id "YJR110W_id001"; gene_id "YJR110W"; gene_name "YMR1"; transcript_biotype "protein_coding"; +chrX SGD exon 633615 635681 . + 0 transcript_id "YJR110W_id001"; gene_name "YMR1"; gene_id "YJR110W"; +chrX SGD gene 635855 636706 . - . gene_id "YJR111C"; gene_biotype "protein_coding"; +chrX SGD transcript 635855 636706 . - . transcript_id "YJR111C_id001"; gene_id "YJR111C"; gene_name "PXP2"; transcript_biotype "protein_coding"; +chrX SGD exon 635855 636706 . - 0 transcript_id "YJR111C_id001"; gene_name "PXP2"; gene_id "YJR111C"; +chrX SGD gene 636996 637788 . + . gene_id "YJR112W"; gene_biotype "protein_coding"; +chrX SGD transcript 636996 637788 . + . transcript_id "YJR112W_id002"; gene_id "YJR112W"; gene_name "NNF1"; transcript_biotype "protein_coding"; +chrX SGD exon 636996 637788 . + . transcript_id "YJR112W_id002"; gene_id "YJR112W"; gene_name "NNF1"; +chrX SGD transcript 637030 637635 . + . transcript_id "YJR112W_id001"; gene_id "YJR112W"; gene_name "NNF1"; transcript_biotype "protein_coding"; +chrX SGD exon 637030 637635 . + 0 transcript_id "YJR112W_id001"; gene_name "NNF1"; gene_id "YJR112W"; +chrX SGD gene 637753 638401 . + . gene_id "YJR112W-A"; gene_biotype "protein_coding"; +chrX SGD transcript 637753 638401 . + . transcript_id "YJR112W-A_id001"; gene_id "YJR112W-A"; transcript_biotype "protein_coding"; +chrX SGD exon 637753 638401 . + . transcript_id "YJR112W-A_id001"; gene_id "YJR112W-A"; +chrX SGD transcript 637790 638168 . + . transcript_id "YJR112W-A_id005"; gene_id "YJR112W-A"; transcript_biotype "protein_coding"; +chrX SGD exon 637790 637809 . + 0 transcript_id "YJR112W-A_id005"; gene_id "YJR112W-A"; +chrX SGD exon 637859 638168 . + 1 transcript_id "YJR112W-A_id005"; gene_id "YJR112W-A"; +chrX SGD gene 638158 639393 . - . gene_id "YJR113C"; gene_biotype "protein_coding"; +chrX SGD transcript 638158 639393 . - . transcript_id "YJR113C_id004"; gene_id "YJR113C"; gene_name "RSM7"; transcript_biotype "protein_coding"; +chrX SGD exon 638158 639393 . - . transcript_id "YJR113C_id004"; gene_id "YJR113C"; gene_name "RSM7"; +chrX SGD transcript 638232 638975 . - . transcript_id "YJR113C_id001"; gene_id "YJR113C"; gene_name "RSM7"; transcript_biotype "protein_coding"; +chrX SGD exon 638232 638975 . - 0 transcript_id "YJR113C_id001"; gene_name "RSM7"; gene_id "YJR113C"; +chrX SGD gene 638659 639051 . + . gene_id "YJR114W"; gene_biotype "protein_coding"; +chrX SGD transcript 638659 639051 . + . transcript_id "YJR114W_mRNA"; gene_id "YJR114W"; transcript_biotype "protein_coding"; +chrX SGD CDS 638659 639051 . + 0 transcript_id "YJR114W_mRNA"; gene_id "YJR114W"; +chrX SGD gene 639290 640749 . + . gene_id "YJR115W"; gene_biotype "protein_coding"; +chrX SGD transcript 639290 640749 . + . transcript_id "YJR115W_id002"; gene_id "YJR115W"; transcript_biotype "protein_coding"; +chrX SGD exon 639290 640749 . + . transcript_id "YJR115W_id002"; gene_id "YJR115W"; +chrX SGD transcript 639942 640451 . + . transcript_id "YJR115W_id001"; gene_id "YJR115W"; transcript_biotype "protein_coding"; +chrX SGD exon 639942 640451 . + 0 transcript_id "YJR115W_id001"; gene_id "YJR115W"; +chrX SGD gene 640665 641856 . + . gene_id "YJR116W"; gene_biotype "protein_coding"; +chrX SGD transcript 640665 641856 . + . transcript_id "YJR116W_id001"; gene_id "YJR116W"; gene_name "TDA4"; transcript_biotype "protein_coding"; +chrX SGD exon 640665 641856 . + . transcript_id "YJR116W_id001"; gene_id "YJR116W"; gene_name "TDA4"; +chrX SGD transcript 640825 641664 . + . transcript_id "YJR116W_id004"; gene_id "YJR116W"; gene_name "TDA4"; transcript_biotype "protein_coding"; +chrX SGD exon 640825 641664 . + 0 transcript_id "YJR116W_id004"; gene_name "TDA4"; gene_id "YJR116W"; +chrX SGD gene 641968 643534 . + . gene_id "YJR117W"; gene_biotype "protein_coding"; +chrX SGD transcript 641968 643534 . + . transcript_id "YJR117W_id001"; gene_id "YJR117W"; gene_name "STE24"; transcript_biotype "protein_coding"; +chrX SGD exon 641968 643534 . + . transcript_id "YJR117W_id001"; gene_id "YJR117W"; gene_name "STE24"; +chrX SGD transcript 642007 643368 . + . transcript_id "YJR117W_id004"; gene_id "YJR117W"; gene_name "STE24"; transcript_biotype "protein_coding"; +chrX SGD exon 642007 643368 . + 0 transcript_id "YJR117W_id004"; gene_name "STE24"; gene_id "YJR117W"; +chrX SGD gene 643304 644139 . - . gene_id "YJR118C"; gene_biotype "protein_coding"; +chrX SGD transcript 643304 644139 . - . transcript_id "YJR118C_id002"; gene_id "YJR118C"; gene_name "ILM1"; transcript_biotype "protein_coding"; +chrX SGD exon 643304 644139 . - . transcript_id "YJR118C_id002"; gene_id "YJR118C"; gene_name "ILM1"; +chrX SGD transcript 643490 644101 . - . transcript_id "YJR118C_id001"; gene_id "YJR118C"; gene_name "ILM1"; transcript_biotype "protein_coding"; +chrX SGD exon 643490 644101 . - 0 transcript_id "YJR118C_id001"; gene_name "ILM1"; gene_id "YJR118C"; +chrX SGD gene 644223 646499 . - . gene_id "YJR119C"; gene_biotype "protein_coding"; +chrX SGD transcript 644223 646499 . - . transcript_id "YJR119C_id003"; gene_id "YJR119C"; gene_name "JHD2"; transcript_biotype "protein_coding"; +chrX SGD exon 644223 646499 . - . transcript_id "YJR119C_id003"; gene_id "YJR119C"; gene_name "JHD2"; +chrX SGD transcript 644304 646490 . - . transcript_id "YJR119C_id001"; gene_id "YJR119C"; gene_name "JHD2"; transcript_biotype "protein_coding"; +chrX SGD exon 644304 646490 . - 0 transcript_id "YJR119C_id001"; gene_name "JHD2"; gene_id "YJR119C"; +chrX SGD gene 647126 647476 . + . gene_id "YJR120W"; gene_biotype "protein_coding"; +chrX SGD transcript 647126 647476 . + . transcript_id "YJR120W_mRNA"; gene_id "YJR120W"; gene_name "DMO1"; transcript_biotype "protein_coding"; +chrX SGD CDS 647126 647476 . + 0 transcript_id "YJR120W_mRNA"; gene_name "DMO1"; gene_id "YJR120W"; +chrX SGD gene 647371 649503 . + . gene_id "YJR121W"; gene_biotype "protein_coding"; +chrX SGD transcript 647371 649503 . + . transcript_id "YJR121W_id001"; gene_id "YJR121W"; gene_name "ATP2"; transcript_biotype "protein_coding"; +chrX SGD exon 647371 649503 . + . transcript_id "YJR121W_id001"; gene_id "YJR121W"; gene_name "ATP2"; +chrX SGD transcript 647607 649142 . + . transcript_id "YJR121W_id002"; gene_id "YJR121W"; gene_name "ATP2"; transcript_biotype "protein_coding"; +chrX SGD exon 647607 649142 . + 0 transcript_id "YJR121W_id002"; gene_name "ATP2"; gene_id "YJR121W"; +chrX SGD gene 649371 652035 . + . gene_id "YJR122W"; gene_biotype "protein_coding"; +chrX SGD transcript 649371 652035 . + . transcript_id "YJR122W_id001"; gene_id "YJR122W"; gene_name "IBA57"; transcript_biotype "protein_coding"; +chrX SGD exon 649371 652035 . + . transcript_id "YJR122W_id001"; gene_id "YJR122W"; gene_name "IBA57"; +chrX SGD transcript 649776 651269 . + . transcript_id "YJR122W_id002"; gene_id "YJR122W"; gene_name "IBA57"; transcript_biotype "protein_coding"; +chrX SGD exon 649776 651269 . + 0 transcript_id "YJR122W_id002"; gene_name "IBA57"; gene_id "YJR122W"; +chrX SGD gene 651771 652777 . + . gene_id "YJR123W"; gene_biotype "protein_coding"; +chrX SGD transcript 651771 652777 . + . transcript_id "YJR123W_id002"; gene_id "YJR123W"; gene_name "RPS5"; transcript_biotype "protein_coding"; +chrX SGD exon 651771 652777 . + . transcript_id "YJR123W_id002"; gene_id "YJR123W"; gene_name "RPS5"; +chrX SGD transcript 651901 652578 . + . transcript_id "YJR123W_id001"; gene_id "YJR123W"; gene_name "RPS5"; transcript_biotype "protein_coding"; +chrX SGD exon 651901 652578 . + 0 transcript_id "YJR123W_id001"; gene_name "RPS5"; gene_id "YJR123W"; +chrX SGD gene 652697 654483 . - . gene_id "YJR124C"; gene_biotype "protein_coding"; +chrX SGD transcript 652697 654483 . - . transcript_id "YJR124C_id001"; gene_id "YJR124C"; transcript_biotype "protein_coding"; +chrX SGD exon 652697 654483 . - . transcript_id "YJR124C_id001"; gene_id "YJR124C"; +chrX SGD transcript 652892 654238 . - . transcript_id "YJR124C_id002"; gene_id "YJR124C"; transcript_biotype "protein_coding"; +chrX SGD exon 652892 654238 . - 0 transcript_id "YJR124C_id002"; gene_id "YJR124C"; +chrX SGD gene 654567 656023 . - . gene_id "YJR125C"; gene_biotype "protein_coding"; +chrX SGD transcript 654567 656023 . - . transcript_id "YJR125C_id002"; gene_id "YJR125C"; gene_name "ENT3"; transcript_biotype "protein_coding"; +chrX SGD exon 654567 656023 . - . transcript_id "YJR125C_id002"; gene_id "YJR125C"; gene_name "ENT3"; +chrX SGD transcript 654737 655963 . - . transcript_id "YJR125C_id001"; gene_id "YJR125C"; gene_name "ENT3"; transcript_biotype "protein_coding"; +chrX SGD exon 654737 655963 . - 0 transcript_id "YJR125C_id001"; gene_name "ENT3"; gene_id "YJR125C"; +chrX SGD gene 656254 658689 . - . gene_id "YJR126C"; gene_biotype "protein_coding"; +chrX SGD transcript 656254 658689 . - . transcript_id "YJR126C_mRNA"; gene_id "YJR126C"; gene_name "VPS70"; transcript_biotype "protein_coding"; +chrX SGD CDS 656254 658689 . - 0 transcript_id "YJR126C_mRNA"; gene_name "VPS70"; gene_id "YJR126C"; +chrX SGD gene 658917 663059 . - . gene_id "YJR127C"; gene_biotype "protein_coding"; +chrX SGD transcript 658917 663059 . - . transcript_id "YJR127C_mRNA"; gene_id "YJR127C"; gene_name "RSF2"; transcript_biotype "protein_coding"; +chrX SGD CDS 658917 663059 . - 0 transcript_id "YJR127C_mRNA"; gene_name "RSF2"; gene_id "YJR127C"; +chrX SGD gene 662921 663280 . + . gene_id "YJR128W"; gene_biotype "protein_coding"; +chrX SGD transcript 662921 663280 . + . transcript_id "YJR128W_mRNA"; gene_id "YJR128W"; transcript_biotype "protein_coding"; +chrX SGD CDS 662921 663280 . + 0 transcript_id "YJR128W_mRNA"; gene_id "YJR128W"; +chrX SGD gene 663693 665083 . - . gene_id "YJR129C"; gene_biotype "protein_coding"; +chrX SGD transcript 663693 665083 . - . transcript_id "YJR129C_id002"; gene_id "YJR129C"; gene_name "EFM3"; transcript_biotype "protein_coding"; +chrX SGD exon 663693 665083 . - . transcript_id "YJR129C_id002"; gene_id "YJR129C"; gene_name "EFM3"; +chrX SGD gene 663749 663942 . + . gene_id "YNCJ0030W"; gene_biotype "ncRNA"; +chrX SGD transcript 663749 663942 . + . transcript_id "YNCJ0030W_snoRNA"; gene_id "YNCJ0030W"; gene_name "SNR3"; transcript_biotype "ncRNA"; +chrX SGD exon 663749 663942 . + . transcript_id "YNCJ0030W_snoRNA"; gene_name "SNR3"; gene_id "YNCJ0030W"; +chrX SGD transcript 664000 665019 . - . transcript_id "YJR129C_id001"; gene_id "YJR129C"; gene_name "EFM3"; transcript_biotype "protein_coding"; +chrX SGD exon 664000 665019 . - 0 transcript_id "YJR129C_id001"; gene_name "EFM3"; gene_id "YJR129C"; +chrX SGD gene 665049 667227 . - . gene_id "YJR130C"; gene_biotype "protein_coding"; +chrX SGD transcript 665049 667227 . - . transcript_id "YJR130C_id002"; gene_id "YJR130C"; gene_name "STR2"; transcript_biotype "protein_coding"; +chrX SGD exon 665049 667227 . - . transcript_id "YJR130C_id002"; gene_id "YJR130C"; gene_name "STR2"; +chrX SGD transcript 665218 667137 . - . transcript_id "YJR130C_id001"; gene_id "YJR130C"; gene_name "STR2"; transcript_biotype "protein_coding"; +chrX SGD exon 665218 667137 . - 0 transcript_id "YJR130C_id001"; gene_name "STR2"; gene_id "YJR130C"; +chrX SGD gene 667608 670197 . + . gene_id "YJR131W"; gene_biotype "protein_coding"; +chrX SGD transcript 667608 670197 . + . transcript_id "YJR131W_id002"; gene_id "YJR131W"; gene_name "MNS1"; transcript_biotype "protein_coding"; +chrX SGD exon 667608 670197 . + . transcript_id "YJR131W_id002"; gene_id "YJR131W"; gene_name "MNS1"; +chrX SGD transcript 667644 669293 . + . transcript_id "YJR131W_id001"; gene_id "YJR131W"; gene_name "MNS1"; transcript_biotype "protein_coding"; +chrX SGD exon 667644 669293 . + 0 transcript_id "YJR131W_id001"; gene_name "MNS1"; gene_id "YJR131W"; +chrX SGD gene 669461 672843 . + . gene_id "YJR132W"; gene_biotype "protein_coding"; +chrX SGD transcript 669461 672843 . + . transcript_id "YJR132W_id001"; gene_id "YJR132W"; gene_name "NMD5"; transcript_biotype "protein_coding"; +chrX SGD exon 669461 672843 . + . transcript_id "YJR132W_id001"; gene_id "YJR132W"; gene_name "NMD5"; +chrX SGD transcript 669522 672668 . + . transcript_id "YJR132W_id002"; gene_id "YJR132W"; gene_name "NMD5"; transcript_biotype "protein_coding"; +chrX SGD exon 669522 672668 . + 0 transcript_id "YJR132W_id002"; gene_name "NMD5"; gene_id "YJR132W"; +chrX SGD gene 672842 673726 . + . gene_id "YJR133W"; gene_biotype "protein_coding"; +chrX SGD transcript 672842 673726 . + . transcript_id "YJR133W_id002"; gene_id "YJR133W"; gene_name "XPT1"; transcript_biotype "protein_coding"; +chrX SGD exon 672842 673726 . + . transcript_id "YJR133W_id002"; gene_id "YJR133W"; gene_name "XPT1"; +chrX SGD transcript 672991 673620 . + . transcript_id "YJR133W_id001"; gene_id "YJR133W"; gene_name "XPT1"; transcript_biotype "protein_coding"; +chrX SGD exon 672991 673620 . + 0 transcript_id "YJR133W_id001"; gene_name "XPT1"; gene_id "YJR133W"; +chrX SGD gene 673622 675923 . - . gene_id "YJR134C"; gene_biotype "protein_coding"; +chrX SGD transcript 673622 675923 . - . transcript_id "YJR134C_id003"; gene_id "YJR134C"; gene_name "SGM1"; transcript_biotype "protein_coding"; +chrX SGD exon 673622 675923 . - . transcript_id "YJR134C_id003"; gene_id "YJR134C"; gene_name "SGM1"; +chrX SGD transcript 673729 675852 . - . transcript_id "YJR134C_id001"; gene_id "YJR134C"; gene_name "SGM1"; transcript_biotype "protein_coding"; +chrX SGD exon 673729 675852 . - 0 transcript_id "YJR134C_id001"; gene_name "SGM1"; gene_id "YJR134C"; +chrX SGD gene 675829 676839 . - . gene_id "YJR135C"; gene_biotype "protein_coding"; +chrX SGD transcript 675829 676839 . - . transcript_id "YJR135C_id003"; gene_id "YJR135C"; gene_name "MCM22"; transcript_biotype "protein_coding"; +chrX SGD exon 675829 676839 . - . transcript_id "YJR135C_id003"; gene_id "YJR135C"; gene_name "MCM22"; +chrX SGD transcript 676059 676778 . - . transcript_id "YJR135C_id001"; gene_id "YJR135C"; gene_name "MCM22"; transcript_biotype "protein_coding"; +chrX SGD exon 676059 676778 . - 0 transcript_id "YJR135C_id001"; gene_name "MCM22"; gene_id "YJR135C"; +chrX SGD gene 676951 677639 . + . gene_id "YJR135W-A"; gene_biotype "protein_coding"; +chrX SGD transcript 676951 677639 . + . transcript_id "YJR135W-A_id001"; gene_id "YJR135W-A"; gene_name "TIM8"; transcript_biotype "protein_coding"; +chrX SGD exon 676951 677639 . + . transcript_id "YJR135W-A_id001"; gene_id "YJR135W-A"; gene_name "TIM8"; +chrX SGD transcript 676971 677234 . + . transcript_id "YJR135W-A_id004"; gene_id "YJR135W-A"; gene_name "TIM8"; transcript_biotype "protein_coding"; +chrX SGD exon 676971 677234 . + 0 transcript_id "YJR135W-A_id004"; gene_name "TIM8"; gene_id "YJR135W-A"; +chrX SGD gene 677355 678728 . - . gene_id "YJR136C"; gene_biotype "protein_coding"; +chrX SGD transcript 677355 678728 . - . transcript_id "YJR136C_id006"; gene_id "YJR136C"; gene_name "TTI2"; transcript_biotype "protein_coding"; +chrX SGD exon 677355 678728 . - . transcript_id "YJR136C_id006"; gene_id "YJR136C"; gene_name "TTI2"; +chrX SGD transcript 677441 678706 . - . transcript_id "YJR136C_id001"; gene_id "YJR136C"; gene_name "TTI2"; transcript_biotype "protein_coding"; +chrX SGD exon 677441 678706 . - 0 transcript_id "YJR136C_id001"; gene_name "TTI2"; gene_id "YJR136C"; +chrX SGD gene 678957 683285 . - . gene_id "YJR137C"; gene_biotype "protein_coding"; +chrX SGD transcript 678957 683285 . - . transcript_id "YJR137C_mRNA"; gene_id "YJR137C"; gene_name "MET5"; transcript_biotype "protein_coding"; +chrX SGD CDS 678957 683285 . - 0 transcript_id "YJR137C_mRNA"; gene_name "MET5"; gene_id "YJR137C"; +chrX SGD gene 684567 689321 . + . gene_id "YJR138W"; gene_biotype "protein_coding"; +chrX SGD transcript 684567 689321 . + . transcript_id "YJR138W_mRNA"; gene_id "YJR138W"; gene_name "IML1"; transcript_biotype "protein_coding"; +chrX SGD CDS 684567 689321 . + 0 transcript_id "YJR138W_mRNA"; gene_name "IML1"; gene_id "YJR138W"; +chrX SGD gene 689310 690636 . - . gene_id "YJR139C"; gene_biotype "protein_coding"; +chrX SGD transcript 689310 690636 . - . transcript_id "YJR139C_id005"; gene_id "YJR139C"; gene_name "HOM6"; transcript_biotype "protein_coding"; +chrX SGD exon 689310 690636 . - . transcript_id "YJR139C_id005"; gene_id "YJR139C"; gene_name "HOM6"; +chrX SGD transcript 689445 690524 . - . transcript_id "YJR139C_id001"; gene_id "YJR139C"; gene_name "HOM6"; transcript_biotype "protein_coding"; +chrX SGD exon 689445 690524 . - 0 transcript_id "YJR139C_id001"; gene_name "HOM6"; gene_id "YJR139C"; +chrX SGD gene 690750 695696 . - . gene_id "YJR140C"; gene_biotype "protein_coding"; +chrX SGD transcript 690750 695696 . - . transcript_id "YJR140C_mRNA"; gene_id "YJR140C"; gene_name "HIR3"; transcript_biotype "protein_coding"; +chrX SGD CDS 690750 695696 . - 0 transcript_id "YJR140C_mRNA"; gene_name "HIR3"; gene_id "YJR140C"; +chrX SGD gene 690961 691110 . + . gene_id "YJR140W-A"; gene_biotype "protein_coding"; +chrX SGD transcript 690961 691110 . + . transcript_id "YJR140W-A_mRNA"; gene_id "YJR140W-A"; transcript_biotype "protein_coding"; +chrX SGD CDS 690961 691110 . + 0 transcript_id "YJR140W-A_mRNA"; gene_id "YJR140W-A"; +chrX SGD gene 695873 697089 . + . gene_id "YJR141W"; gene_biotype "protein_coding"; +chrX SGD transcript 695873 697089 . + . transcript_id "YJR141W_id002"; gene_id "YJR141W"; gene_name "IPA1"; transcript_biotype "protein_coding"; +chrX SGD exon 695873 697089 . + . transcript_id "YJR141W_id002"; gene_id "YJR141W"; gene_name "IPA1"; +chrX SGD transcript 695906 696949 . + . transcript_id "YJR141W_id001"; gene_id "YJR141W"; gene_name "IPA1"; transcript_biotype "protein_coding"; +chrX SGD exon 695906 696949 . + 0 transcript_id "YJR141W_id001"; gene_name "IPA1"; gene_id "YJR141W"; +chrX SGD gene 697064 698363 . + . gene_id "YJR142W"; gene_biotype "protein_coding"; +chrX SGD transcript 697064 698363 . + . transcript_id "YJR142W_id003"; gene_id "YJR142W"; transcript_biotype "protein_coding"; +chrX SGD exon 697064 698363 . + . transcript_id "YJR142W_id003"; gene_id "YJR142W"; +chrX SGD transcript 697141 698169 . + . transcript_id "YJR142W_id001"; gene_id "YJR142W"; transcript_biotype "protein_coding"; +chrX SGD exon 697141 698169 . + 0 transcript_id "YJR142W_id001"; gene_id "YJR142W"; +chrX SGD gene 698168 700685 . - . gene_id "YJR143C"; gene_biotype "protein_coding"; +chrX SGD transcript 698168 700685 . - . transcript_id "YJR143C_id001"; gene_id "YJR143C"; gene_name "PMT4"; transcript_biotype "protein_coding"; +chrX SGD exon 698168 700685 . - . transcript_id "YJR143C_id001"; gene_id "YJR143C"; gene_name "PMT4"; +chrX SGD transcript 698326 700614 . - . transcript_id "YJR143C_id002"; gene_id "YJR143C"; gene_name "PMT4"; transcript_biotype "protein_coding"; +chrX SGD exon 698326 700614 . - 0 transcript_id "YJR143C_id002"; gene_name "PMT4"; gene_id "YJR143C"; +chrX SGD gene 700686 701763 . + . gene_id "YJR144W"; gene_biotype "protein_coding"; +chrX SGD transcript 700686 701763 . + . transcript_id "YJR144W_id003"; gene_id "YJR144W"; gene_name "MGM101"; transcript_biotype "protein_coding"; +chrX SGD exon 700686 701763 . + . transcript_id "YJR144W_id003"; gene_id "YJR144W"; gene_name "MGM101"; +chrX SGD transcript 700882 701691 . + . transcript_id "YJR144W_id001"; gene_id "YJR144W"; gene_name "MGM101"; transcript_biotype "protein_coding"; +chrX SGD exon 700882 701691 . + 0 transcript_id "YJR144W_id001"; gene_name "MGM101"; gene_id "YJR144W"; +chrX SGD gene 701930 703563 . - . gene_id "YJR145C"; gene_biotype "protein_coding"; +chrX SGD transcript 701930 703563 . - . transcript_id "YJR145C_id001"; gene_id "YJR145C"; gene_name "RPS4A"; transcript_biotype "protein_coding"; +chrX SGD exon 701930 703563 . - . transcript_id "YJR145C_id001"; gene_id "YJR145C"; gene_name "RPS4A"; +chrX SGD transcript 702027 703068 . - . transcript_id "YJR145C_id003"; gene_id "YJR145C"; gene_name "RPS4A"; transcript_biotype "protein_coding"; +chrX SGD exon 702027 702798 . - 1 transcript_id "YJR145C_id003"; gene_name "RPS4A"; gene_id "YJR145C"; +chrX SGD exon 703055 703068 . - 0 transcript_id "YJR145C_id003"; gene_name "RPS4A"; gene_id "YJR145C"; +chrX SGD gene 703885 704238 . + . gene_id "YJR146W"; gene_biotype "protein_coding"; +chrX SGD transcript 703885 704238 . + . transcript_id "YJR146W_mRNA"; gene_id "YJR146W"; transcript_biotype "protein_coding"; +chrX SGD CDS 703885 704238 . + 0 transcript_id "YJR146W_mRNA"; gene_id "YJR146W"; +chrX SGD gene 704050 705714 . + . gene_id "YJR147W"; gene_biotype "protein_coding"; +chrX SGD transcript 704050 705714 . + . transcript_id "YJR147W_id001"; gene_id "YJR147W"; gene_name "HMS2"; transcript_biotype "protein_coding"; +chrX SGD exon 704050 705714 . + . transcript_id "YJR147W_id001"; gene_id "YJR147W"; gene_name "HMS2"; +chrX SGD transcript 704196 705272 . + . transcript_id "YJR147W_id003"; gene_id "YJR147W"; gene_name "HMS2"; transcript_biotype "protein_coding"; +chrX SGD exon 704196 705272 . + 0 transcript_id "YJR147W_id003"; gene_name "HMS2"; gene_id "YJR147W"; +chrX SGD gene 705592 707187 . + . gene_id "YJR148W"; gene_biotype "protein_coding"; +chrX SGD transcript 705592 707187 . + . transcript_id "YJR148W_id001"; gene_id "YJR148W"; gene_name "BAT2"; transcript_biotype "protein_coding"; +chrX SGD exon 705592 707187 . + . transcript_id "YJR148W_id001"; gene_id "YJR148W"; gene_name "BAT2"; +chrX SGD transcript 705744 706874 . + . transcript_id "YJR148W_id002"; gene_id "YJR148W"; gene_name "BAT2"; transcript_biotype "protein_coding"; +chrX SGD exon 705744 706874 . + 0 transcript_id "YJR148W_id002"; gene_name "BAT2"; gene_id "YJR148W"; +chrX SGD gene 707160 708374 . + . gene_id "YJR149W"; gene_biotype "protein_coding"; +chrX SGD transcript 707160 708374 . + . transcript_id "YJR149W_id001"; gene_id "YJR149W"; transcript_biotype "protein_coding"; +chrX SGD exon 707160 708374 . + 0 transcript_id "YJR149W_id001"; gene_id "YJR149W"; +chrX SGD gene 708811 709707 . - . gene_id "YJR150C"; gene_biotype "protein_coding"; +chrX SGD transcript 708811 709707 . - . transcript_id "YJR150C_id001"; gene_id "YJR150C"; gene_name "DAN1"; transcript_biotype "protein_coding"; +chrX SGD exon 708811 709707 . - 0 transcript_id "YJR150C_id001"; gene_name "DAN1"; gene_id "YJR150C"; +chrX SGD gene 712255 715740 . - . gene_id "YJR151C"; gene_biotype "protein_coding"; +chrX SGD transcript 712255 715740 . - . transcript_id "YJR151C_mRNA"; gene_id "YJR151C"; gene_name "DAN4"; transcript_biotype "protein_coding"; +chrX SGD CDS 712255 715740 . - 0 transcript_id "YJR151C_mRNA"; gene_name "DAN4"; gene_id "YJR151C"; +chrX SGD gene 717580 717630 . + . gene_id "YJR151W-A"; gene_biotype "protein_coding"; +chrX SGD transcript 717580 717630 . + . transcript_id "YJR151W-A_mRNA"; gene_id "YJR151W-A"; transcript_biotype "protein_coding"; +chrX SGD CDS 717580 717630 . + 0 transcript_id "YJR151W-A_mRNA"; gene_id "YJR151W-A"; +chrX SGD gene 719385 721391 . + . gene_id "YJR152W"; gene_biotype "protein_coding"; +chrX SGD transcript 719385 721391 . + . transcript_id "YJR152W_id003"; gene_id "YJR152W"; gene_name "DAL5"; transcript_biotype "protein_coding"; +chrX SGD exon 719385 721391 . + . transcript_id "YJR152W_id003"; gene_id "YJR152W"; gene_name "DAL5"; +chrX SGD transcript 719666 721297 . + . transcript_id "YJR152W_id001"; gene_id "YJR152W"; gene_name "DAL5"; transcript_biotype "protein_coding"; +chrX SGD exon 719666 721297 . + 0 transcript_id "YJR152W_id001"; gene_name "DAL5"; gene_id "YJR152W"; +chrX SGD gene 722620 724699 . + . gene_id "YJR153W"; gene_biotype "protein_coding"; +chrX SGD transcript 722620 724699 . + . transcript_id "YJR153W_id003"; gene_id "YJR153W"; gene_name "PGU1"; transcript_biotype "protein_coding"; +chrX SGD exon 722620 724699 . + . transcript_id "YJR153W_id003"; gene_id "YJR153W"; gene_name "PGU1"; +chrX SGD transcript 722815 723900 . + . transcript_id "YJR153W_id001"; gene_id "YJR153W"; gene_name "PGU1"; transcript_biotype "protein_coding"; +chrX SGD exon 722815 723900 . + 0 transcript_id "YJR153W_id001"; gene_name "PGU1"; gene_id "YJR153W"; +chrX SGD gene 725784 726824 . + . gene_id "YJR154W"; gene_biotype "protein_coding"; +chrX SGD transcript 725784 726824 . + . transcript_id "YJR154W_mRNA"; gene_id "YJR154W"; transcript_biotype "protein_coding"; +chrX SGD CDS 725784 726824 . + 0 transcript_id "YJR154W_mRNA"; gene_id "YJR154W"; +chrX SGD gene 727026 728332 . + . gene_id "YJR155W"; gene_biotype "protein_coding"; +chrX SGD transcript 727026 728332 . + . transcript_id "YJR155W_id001"; gene_id "YJR155W"; gene_name "AAD10"; transcript_biotype "protein_coding"; +chrX SGD exon 727026 728332 . + . transcript_id "YJR155W_id001"; gene_id "YJR155W"; gene_name "AAD10"; +chrX SGD transcript 727405 728271 . + . transcript_id "YJR155W_id002"; gene_id "YJR155W"; gene_name "AAD10"; transcript_biotype "protein_coding"; +chrX SGD exon 727405 728271 . + 0 transcript_id "YJR155W_id002"; gene_name "AAD10"; gene_id "YJR155W"; +chrX SGD gene 728574 729596 . - . gene_id "YJR156C"; gene_biotype "protein_coding"; +chrX SGD transcript 728574 729596 . - . transcript_id "YJR156C_mRNA"; gene_id "YJR156C"; gene_name "THI11"; transcript_biotype "protein_coding"; +chrX SGD CDS 728574 729596 . - 0 transcript_id "YJR156C_mRNA"; gene_name "THI11"; gene_id "YJR156C"; +chrX SGD gene 730515 730877 . + . gene_id "YJR157W"; gene_biotype "protein_coding"; +chrX SGD transcript 730515 730877 . + . transcript_id "YJR157W_mRNA"; gene_id "YJR157W"; transcript_biotype "protein_coding"; +chrX SGD CDS 730515 730877 . + 0 transcript_id "YJR157W_mRNA"; gene_id "YJR157W"; +chrX SGD gene 732440 734143 . + . gene_id "YJR158W"; gene_biotype "protein_coding"; +chrX SGD transcript 732440 734143 . + . transcript_id "YJR158W_mRNA"; gene_id "YJR158W"; gene_name "HXT16"; transcript_biotype "protein_coding"; +chrX SGD CDS 732440 734143 . + 0 transcript_id "YJR158W_mRNA"; gene_name "HXT16"; gene_id "YJR158W"; +chrX SGD gene 736044 737117 . + . gene_id "YJR159W"; gene_biotype "protein_coding"; +chrX SGD transcript 736044 737117 . + . transcript_id "YJR159W_mRNA"; gene_id "YJR159W"; gene_name "SOR1"; transcript_biotype "protein_coding"; +chrX SGD CDS 736044 737117 . + 0 transcript_id "YJR159W_mRNA"; gene_name "SOR1"; gene_id "YJR159W"; +chrX SGD gene 738008 739816 . - . gene_id "YJR160C"; gene_biotype "protein_coding"; +chrX SGD transcript 738008 739816 . - . transcript_id "YJR160C_mRNA"; gene_id "YJR160C"; gene_name "MPH3"; transcript_biotype "protein_coding"; +chrX SGD CDS 738008 739816 . - 0 transcript_id "YJR160C_mRNA"; gene_name "MPH3"; gene_id "YJR160C"; +chrX SGD gene 742848 743999 . - . gene_id "YJR161C"; gene_biotype "protein_coding"; +chrX SGD transcript 742848 743999 . - . transcript_id "YJR161C_mRNA"; gene_id "YJR161C"; gene_name "COS5"; transcript_biotype "protein_coding"; +chrX SGD CDS 742848 743999 . - 0 transcript_id "YJR161C_mRNA"; gene_name "COS5"; gene_id "YJR161C"; +chrX SGD gene 744911 745261 . - . gene_id "YJR162C"; gene_biotype "protein_coding"; +chrX SGD transcript 744911 745261 . - . transcript_id "YJR162C_mRNA"; gene_id "YJR162C"; transcript_biotype "protein_coding"; +chrX SGD CDS 744911 745261 . - 0 transcript_id "YJR162C_mRNA"; gene_id "YJR162C"; +chrXI SGD gene 451 798 . + . gene_id "YKL225W"; gene_biotype "protein_coding"; +chrXI SGD transcript 451 798 . + . transcript_id "YKL225W_mRNA"; gene_id "YKL225W"; transcript_biotype "protein_coding"; +chrXI SGD CDS 451 798 . + 0 transcript_id "YKL225W_mRNA"; gene_id "YKL225W"; +chrXI SGD gene 1810 2181 . - . gene_id "YKL224C"; gene_biotype "protein_coding"; +chrXI SGD transcript 1810 2181 . - . transcript_id "YKL224C_mRNA"; gene_id "YKL224C"; gene_name "PAU16"; transcript_biotype "protein_coding"; +chrXI SGD CDS 1810 2181 . - 0 transcript_id "YKL224C_mRNA"; gene_name "PAU16"; gene_id "YKL224C"; +chrXI SGD gene 2389 2721 . + . gene_id "YKL223W"; gene_biotype "protein_coding"; +chrXI SGD transcript 2389 2721 . + . transcript_id "YKL223W_mRNA"; gene_id "YKL223W"; transcript_biotype "protein_coding"; +chrXI SGD CDS 2389 2721 . + 0 transcript_id "YKL223W_mRNA"; gene_id "YKL223W"; +chrXI SGD gene 3503 5620 . - . gene_id "YKL222C"; gene_biotype "protein_coding"; +chrXI SGD transcript 3503 5620 . - . transcript_id "YKL222C_id001"; gene_id "YKL222C"; transcript_biotype "protein_coding"; +chrXI SGD exon 3503 5620 . - 0 transcript_id "YKL222C_id001"; gene_id "YKL222C"; +chrXI SGD gene 6107 7528 . + . gene_id "YKL221W"; gene_biotype "protein_coding"; +chrXI SGD transcript 6107 7528 . + . transcript_id "YKL221W_mRNA"; gene_id "YKL221W"; gene_name "MCH2"; transcript_biotype "protein_coding"; +chrXI SGD CDS 6107 7528 . + 0 transcript_id "YKL221W_mRNA"; gene_name "MCH2"; gene_id "YKL221W"; +chrXI SGD gene 9091 11226 . - . gene_id "YKL220C"; gene_biotype "protein_coding"; +chrXI SGD transcript 9091 11226 . - . transcript_id "YKL220C_mRNA"; gene_id "YKL220C"; gene_name "FRE2"; transcript_biotype "protein_coding"; +chrXI SGD CDS 9091 11226 . - 0 transcript_id "YKL220C_mRNA"; gene_name "FRE2"; gene_id "YKL220C"; +chrXI SGD gene 14485 15708 . + . gene_id "YKL219W"; gene_biotype "protein_coding"; +chrXI SGD transcript 14485 15708 . + . transcript_id "YKL219W_mRNA"; gene_id "YKL219W"; gene_name "COS9"; transcript_biotype "protein_coding"; +chrXI SGD CDS 14485 15708 . + 0 transcript_id "YKL219W_mRNA"; gene_name "COS9"; gene_id "YKL219W"; +chrXI SGD gene 17160 18821 . - . gene_id "YKL218C"; gene_biotype "protein_coding"; +chrXI SGD transcript 17160 18821 . - . transcript_id "YKL218C_id004"; gene_id "YKL218C"; gene_name "SRY1"; transcript_biotype "protein_coding"; +chrXI SGD exon 17160 18821 . - . transcript_id "YKL218C_id004"; gene_id "YKL218C"; gene_name "SRY1"; +chrXI SGD transcript 17359 18339 . - . transcript_id "YKL218C_id001"; gene_id "YKL218C"; gene_name "SRY1"; transcript_biotype "protein_coding"; +chrXI SGD exon 17359 18339 . - 0 transcript_id "YKL218C_id001"; gene_name "SRY1"; gene_id "YKL218C"; +chrXI SGD gene 22234 24084 . + . gene_id "YKL217W"; gene_biotype "protein_coding"; +chrXI SGD transcript 22234 24084 . + . transcript_id "YKL217W_id001"; gene_id "YKL217W"; gene_name "JEN1"; transcript_biotype "protein_coding"; +chrXI SGD exon 22234 24084 . + 0 transcript_id "YKL217W_id001"; gene_name "JEN1"; gene_id "YKL217W"; +chrXI SGD gene 25173 26560 . + . gene_id "YKL216W"; gene_biotype "protein_coding"; +chrXI SGD transcript 25173 26560 . + . transcript_id "YKL216W_id001"; gene_id "YKL216W"; gene_name "URA1"; transcript_biotype "protein_coding"; +chrXI SGD exon 25173 26560 . + . transcript_id "YKL216W_id001"; gene_id "YKL216W"; gene_name "URA1"; +chrXI SGD transcript 25215 26159 . + . transcript_id "YKL216W_id002"; gene_id "YKL216W"; gene_name "URA1"; transcript_biotype "protein_coding"; +chrXI SGD exon 25215 26159 . + 0 transcript_id "YKL216W_id002"; gene_name "URA1"; gene_id "YKL216W"; +chrXI SGD gene 26827 30687 . - . gene_id "YKL215C"; gene_biotype "protein_coding"; +chrXI SGD transcript 26827 30687 . - . transcript_id "YKL215C_id001"; gene_id "YKL215C"; gene_name "OXP1"; transcript_biotype "protein_coding"; +chrXI SGD exon 26827 30687 . - 0 transcript_id "YKL215C_id001"; gene_name "OXP1"; gene_id "YKL215C"; +chrXI SGD gene 30920 31761 . - . gene_id "YKL214C"; gene_biotype "protein_coding"; +chrXI SGD transcript 30920 31761 . - . transcript_id "YKL214C_id002"; gene_id "YKL214C"; gene_name "YRA2"; transcript_biotype "protein_coding"; +chrXI SGD exon 30920 31761 . - . transcript_id "YKL214C_id002"; gene_id "YKL214C"; gene_name "YRA2"; +chrXI SGD transcript 31082 31693 . - . transcript_id "YKL214C_id001"; gene_id "YKL214C"; gene_name "YRA2"; transcript_biotype "protein_coding"; +chrXI SGD exon 31082 31693 . - 0 transcript_id "YKL214C_id001"; gene_name "YRA2"; gene_id "YKL214C"; +chrXI SGD gene 31889 34182 . - . gene_id "YKL213C"; gene_biotype "protein_coding"; +chrXI SGD transcript 31889 34182 . - . transcript_id "YKL213C_id002"; gene_id "YKL213C"; gene_name "DOA1"; transcript_biotype "protein_coding"; +chrXI SGD exon 31889 34182 . - . transcript_id "YKL213C_id002"; gene_id "YKL213C"; gene_name "DOA1"; +chrXI SGD transcript 31960 34107 . - . transcript_id "YKL213C_id001"; gene_id "YKL213C"; gene_name "DOA1"; transcript_biotype "protein_coding"; +chrXI SGD exon 31960 34107 . - 0 transcript_id "YKL213C_id001"; gene_name "DOA1"; gene_id "YKL213C"; +chrXI SGD gene 34543 36414 . + . gene_id "YKL212W"; gene_biotype "protein_coding"; +chrXI SGD transcript 34543 36414 . + . transcript_id "YKL212W_id001"; gene_id "YKL212W"; gene_name "SAC1"; transcript_biotype "protein_coding"; +chrXI SGD exon 34543 36414 . + 0 transcript_id "YKL212W_id001"; gene_name "SAC1"; gene_id "YKL212W"; +chrXI SGD gene 36699 38153 . - . gene_id "YKL211C"; gene_biotype "protein_coding"; +chrXI SGD transcript 36699 38153 . - . transcript_id "YKL211C_id001"; gene_id "YKL211C"; gene_name "TRP3"; transcript_biotype "protein_coding"; +chrXI SGD exon 36699 38153 . - 0 transcript_id "YKL211C_id001"; gene_name "TRP3"; gene_id "YKL211C"; +chrXI SGD gene 38811 38911 . + . gene_id "YNCK0001W"; gene_biotype "ncRNA"; +chrXI SGD transcript 38811 38911 . + . transcript_id "YNCK0001W_snoRNA"; gene_id "YNCK0001W"; gene_name "SNR64"; transcript_biotype "ncRNA"; +chrXI SGD exon 38811 38911 . + . transcript_id "YNCK0001W_snoRNA"; gene_name "SNR64"; gene_id "YNCK0001W"; +chrXI SGD gene 39163 42237 . + . gene_id "YKL210W"; gene_biotype "protein_coding"; +chrXI SGD transcript 39163 42237 . + . transcript_id "YKL210W_id001"; gene_id "YKL210W"; gene_name "UBA1"; transcript_biotype "protein_coding"; +chrXI SGD exon 39163 42237 . + 0 transcript_id "YKL210W_id001"; gene_name "UBA1"; gene_id "YKL210W"; +chrXI SGD gene 42423 46295 . - . gene_id "YKL209C"; gene_biotype "protein_coding"; +chrXI SGD transcript 42423 46295 . - . transcript_id "YKL209C_mRNA"; gene_id "YKL209C"; gene_name "STE6"; transcript_biotype "protein_coding"; +chrXI SGD CDS 42423 46295 . - 0 transcript_id "YKL209C_mRNA"; gene_name "STE6"; gene_id "YKL209C"; +chrXI SGD gene 46735 46806 . - . gene_id "YNCK0002C"; gene_biotype "ncRNA"; +chrXI SGD transcript 46735 46806 . - . transcript_id "YNCK0002C_tRNA"; gene_id "YNCK0002C"; gene_name "TRT2"; transcript_biotype "ncRNA"; +chrXI SGD exon 46735 46806 . - . transcript_id "YNCK0002C_tRNA"; gene_name "TRT2"; gene_id "YNCK0002C"; +chrXI SGD gene 47148 48176 . + . gene_id "YKL208W"; gene_biotype "protein_coding"; +chrXI SGD transcript 47148 48176 . + . transcript_id "YKL208W_id002"; gene_id "YKL208W"; gene_name "CBT1"; transcript_biotype "protein_coding"; +chrXI SGD exon 47148 48176 . + . transcript_id "YKL208W_id002"; gene_id "YKL208W"; gene_name "CBT1"; +chrXI SGD transcript 47157 47972 . + . transcript_id "YKL208W_id001"; gene_id "YKL208W"; gene_name "CBT1"; transcript_biotype "protein_coding"; +chrXI SGD exon 47157 47972 . + 0 transcript_id "YKL208W_id001"; gene_name "CBT1"; gene_id "YKL208W"; +chrXI SGD gene 48160 49135 . + . gene_id "YKL207W"; gene_biotype "protein_coding"; +chrXI SGD transcript 48160 49135 . + . transcript_id "YKL207W_id004"; gene_id "YKL207W"; gene_name "EMC3"; transcript_biotype "protein_coding"; +chrXI SGD exon 48160 49135 . + . transcript_id "YKL207W_id004"; gene_id "YKL207W"; gene_name "EMC3"; +chrXI SGD transcript 48194 48955 . + . transcript_id "YKL207W_id001"; gene_id "YKL207W"; gene_name "EMC3"; transcript_biotype "protein_coding"; +chrXI SGD exon 48194 48955 . + 0 transcript_id "YKL207W_id001"; gene_name "EMC3"; gene_id "YKL207W"; +chrXI SGD gene 48940 49908 . - . gene_id "YKL206C"; gene_biotype "protein_coding"; +chrXI SGD transcript 48940 49908 . - . transcript_id "YKL206C_id002"; gene_id "YKL206C"; gene_name "ADD66"; transcript_biotype "protein_coding"; +chrXI SGD exon 48940 49908 . - . transcript_id "YKL206C_id002"; gene_id "YKL206C"; gene_name "ADD66"; +chrXI SGD transcript 49006 49809 . - . transcript_id "YKL206C_id001"; gene_id "YKL206C"; gene_name "ADD66"; transcript_biotype "protein_coding"; +chrXI SGD exon 49006 49809 . - 0 transcript_id "YKL206C_id001"; gene_name "ADD66"; gene_id "YKL206C"; +chrXI SGD gene 50020 53479 . + . gene_id "YKL205W"; gene_biotype "protein_coding"; +chrXI SGD transcript 50020 53479 . + . transcript_id "YKL205W_id002"; gene_id "YKL205W"; gene_name "LOS1"; transcript_biotype "protein_coding"; +chrXI SGD exon 50020 53479 . + . transcript_id "YKL205W_id002"; gene_id "YKL205W"; gene_name "LOS1"; +chrXI SGD transcript 50051 53353 . + . transcript_id "YKL205W_id001"; gene_id "YKL205W"; gene_name "LOS1"; transcript_biotype "protein_coding"; +chrXI SGD exon 50051 53353 . + 0 transcript_id "YKL205W_id001"; gene_name "LOS1"; gene_id "YKL205W"; +chrXI SGD gene 53704 55602 . + . gene_id "YKL204W"; gene_biotype "protein_coding"; +chrXI SGD transcript 53704 55602 . + . transcript_id "YKL204W_id001"; gene_id "YKL204W"; gene_name "EAP1"; transcript_biotype "protein_coding"; +chrXI SGD exon 53704 55602 . + 0 transcript_id "YKL204W_id001"; gene_name "EAP1"; gene_id "YKL204W"; +chrXI SGD gene 55935 63359 . - . gene_id "YKL203C"; gene_biotype "protein_coding"; +chrXI SGD transcript 55935 63359 . - . transcript_id "YKL203C_mRNA"; gene_id "YKL203C"; gene_name "TOR2"; transcript_biotype "protein_coding"; +chrXI SGD CDS 55935 63359 . - 0 transcript_id "YKL203C_mRNA"; gene_name "TOR2"; gene_id "YKL203C"; +chrXI SGD gene 63821 64402 . + . gene_id "YKL202W"; gene_biotype "protein_coding"; +chrXI SGD transcript 63821 64402 . + . transcript_id "YKL202W_mRNA"; gene_id "YKL202W"; transcript_biotype "protein_coding"; +chrXI SGD CDS 63821 64402 . + 0 transcript_id "YKL202W_mRNA"; gene_id "YKL202W"; +chrXI SGD gene 63930 67466 . - . gene_id "YKL201C"; gene_biotype "protein_coding"; +chrXI SGD transcript 63930 67466 . - . transcript_id "YKL201C_mRNA"; gene_id "YKL201C"; gene_name "MNN4"; transcript_biotype "protein_coding"; +chrXI SGD CDS 63930 67466 . - 0 transcript_id "YKL201C_mRNA"; gene_name "MNN4"; gene_id "YKL201C"; +chrXI SGD gene 68087 70446 . - . gene_id "YKL198C"; gene_biotype "protein_coding"; +chrXI SGD transcript 68087 70446 . - . transcript_id "YKL198C_id001"; gene_id "YKL198C"; gene_name "PTK1"; transcript_biotype "protein_coding"; +chrXI SGD exon 68087 70446 . - . transcript_id "YKL198C_id001"; gene_id "YKL198C"; gene_name "PTK1"; +chrXI SGD transcript 68232 70220 . - . transcript_id "YKL198C_id005"; gene_id "YKL198C"; gene_name "PTK1"; transcript_biotype "protein_coding"; +chrXI SGD exon 68232 70220 . - 0 transcript_id "YKL198C_id005"; gene_name "PTK1"; gene_id "YKL198C"; +chrXI SGD gene 70734 73865 . - . gene_id "YKL197C"; gene_biotype "protein_coding"; +chrXI SGD transcript 70734 73865 . - . transcript_id "YKL197C_id001"; gene_id "YKL197C"; gene_name "PEX1"; transcript_biotype "protein_coding"; +chrXI SGD exon 70734 73865 . - 0 transcript_id "YKL197C_id001"; gene_name "PEX1"; gene_id "YKL197C"; +chrXI SGD gene 74624 74697 . + . gene_id "YNCK0003W"; gene_biotype "ncRNA"; +chrXI SGD transcript 74624 74697 . + . transcript_id "YNCK0003W_tRNA"; gene_id "YNCK0003W"; transcript_biotype "ncRNA"; +chrXI SGD exon 74624 74697 . + . transcript_id "YNCK0003W_tRNA"; gene_id "YNCK0003W"; +chrXI SGD gene 74772 75652 . - . gene_id "YKL196C"; gene_biotype "protein_coding"; +chrXI SGD transcript 74772 75652 . - . transcript_id "YKL196C_id001"; gene_id "YKL196C"; gene_name "YKT6"; transcript_biotype "protein_coding"; +chrXI SGD exon 74772 75652 . - . transcript_id "YKL196C_id001"; gene_id "YKL196C"; gene_name "YKT6"; +chrXI SGD transcript 74932 75534 . - . transcript_id "YKL196C_id003"; gene_id "YKL196C"; gene_name "YKT6"; transcript_biotype "protein_coding"; +chrXI SGD exon 74932 75534 . - 0 transcript_id "YKL196C_id003"; gene_name "YKT6"; gene_id "YKL196C"; +chrXI SGD gene 75787 77302 . + . gene_id "YKL195W"; gene_biotype "protein_coding"; +chrXI SGD transcript 75787 77302 . + . transcript_id "YKL195W_id004"; gene_id "YKL195W"; gene_name "MIA40"; transcript_biotype "protein_coding"; +chrXI SGD exon 75787 77302 . + . transcript_id "YKL195W_id004"; gene_id "YKL195W"; gene_name "MIA40"; +chrXI SGD transcript 75821 77032 . + . transcript_id "YKL195W_id001"; gene_id "YKL195W"; gene_name "MIA40"; transcript_biotype "protein_coding"; +chrXI SGD exon 75821 77032 . + 0 transcript_id "YKL195W_id001"; gene_name "MIA40"; gene_id "YKL195W"; +chrXI SGD gene 77031 78725 . - . gene_id "YKL194C"; gene_biotype "protein_coding"; +chrXI SGD transcript 77031 78725 . - . transcript_id "YKL194C_id001"; gene_id "YKL194C"; gene_name "MST1"; transcript_biotype "protein_coding"; +chrXI SGD exon 77031 78725 . - . transcript_id "YKL194C_id001"; gene_id "YKL194C"; gene_name "MST1"; +chrXI SGD transcript 77258 78646 . - . transcript_id "YKL194C_id003"; gene_id "YKL194C"; gene_name "MST1"; transcript_biotype "protein_coding"; +chrXI SGD exon 77258 78646 . - 0 transcript_id "YKL194C_id003"; gene_name "MST1"; gene_id "YKL194C"; +chrXI SGD gene 78756 79924 . - . gene_id "YKL193C"; gene_biotype "protein_coding"; +chrXI SGD transcript 78756 79924 . - . transcript_id "YKL193C_id002"; gene_id "YKL193C"; gene_name "SDS22"; transcript_biotype "protein_coding"; +chrXI SGD exon 78756 79924 . - . transcript_id "YKL193C_id002"; gene_id "YKL193C"; gene_name "SDS22"; +chrXI SGD transcript 78866 79882 . - . transcript_id "YKL193C_id001"; gene_id "YKL193C"; gene_name "SDS22"; transcript_biotype "protein_coding"; +chrXI SGD exon 78866 79882 . - 0 transcript_id "YKL193C_id001"; gene_name "SDS22"; gene_id "YKL193C"; +chrXI SGD gene 80017 80621 . - . gene_id "YKL192C"; gene_biotype "protein_coding"; +chrXI SGD transcript 80017 80621 . - . transcript_id "YKL192C_id003"; gene_id "YKL192C"; gene_name "ACP1"; transcript_biotype "protein_coding"; +chrXI SGD exon 80017 80621 . - . transcript_id "YKL192C_id003"; gene_id "YKL192C"; gene_name "ACP1"; +chrXI SGD transcript 80160 80537 . - . transcript_id "YKL192C_id001"; gene_id "YKL192C"; gene_name "ACP1"; transcript_biotype "protein_coding"; +chrXI SGD exon 80160 80537 . - 0 transcript_id "YKL192C_id001"; gene_name "ACP1"; gene_id "YKL192C"; +chrXI SGD gene 80984 82732 . + . gene_id "YKL191W"; gene_biotype "protein_coding"; +chrXI SGD transcript 80984 82732 . + . transcript_id "YKL191W_id002"; gene_id "YKL191W"; gene_name "DPH2"; transcript_biotype "protein_coding"; +chrXI SGD exon 80984 82732 . + . transcript_id "YKL191W_id002"; gene_id "YKL191W"; gene_name "DPH2"; +chrXI SGD transcript 81035 82639 . + . transcript_id "YKL191W_id001"; gene_id "YKL191W"; gene_name "DPH2"; transcript_biotype "protein_coding"; +chrXI SGD exon 81035 82639 . + 0 transcript_id "YKL191W_id001"; gene_name "DPH2"; gene_id "YKL191W"; +chrXI SGD gene 82901 83944 . + . gene_id "YKL190W"; gene_biotype "protein_coding"; +chrXI SGD transcript 82901 83944 . + . transcript_id "YKL190W_id002"; gene_id "YKL190W"; gene_name "CNB1"; transcript_biotype "protein_coding"; +chrXI SGD exon 82901 83944 . + . transcript_id "YKL190W_id002"; gene_id "YKL190W"; gene_name "CNB1"; +chrXI SGD transcript 82947 83550 . + . transcript_id "YKL190W_id001"; gene_id "YKL190W"; gene_name "CNB1"; transcript_biotype "protein_coding"; +chrXI SGD exon 82947 82998 . + 0 transcript_id "YKL190W_id001"; gene_name "CNB1"; gene_id "YKL190W"; +chrXI SGD exon 83075 83550 . + 2 transcript_id "YKL190W_id001"; gene_name "CNB1"; gene_id "YKL190W"; +chrXI SGD gene 84208 84291 . + . gene_id "YNCK0004W"; gene_biotype "ncRNA"; +chrXI SGD transcript 84208 84291 . + . transcript_id "YNCK0004W_tRNA"; gene_id "YNCK0004W"; transcript_biotype "ncRNA"; +chrXI SGD exon 84208 84291 . + . transcript_id "YNCK0004W_tRNA"; gene_id "YNCK0004W"; +chrXI SGD gene 84432 86121 . + . gene_id "YKL189W"; gene_biotype "protein_coding"; +chrXI SGD transcript 84432 86121 . + . transcript_id "YKL189W_id001"; gene_id "YKL189W"; gene_name "HYM1"; transcript_biotype "protein_coding"; +chrXI SGD exon 84432 86121 . + . transcript_id "YKL189W_id001"; gene_id "YKL189W"; gene_name "HYM1"; +chrXI SGD transcript 84704 85903 . + . transcript_id "YKL189W_id004"; gene_id "YKL189W"; gene_name "HYM1"; transcript_biotype "protein_coding"; +chrXI SGD exon 84704 85903 . + 0 transcript_id "YKL189W_id004"; gene_name "HYM1"; gene_id "YKL189W"; +chrXI SGD gene 86225 88786 . - . gene_id "YKL188C"; gene_biotype "protein_coding"; +chrXI SGD transcript 86225 88786 . - . transcript_id "YKL188C_mRNA"; gene_id "YKL188C"; gene_name "PXA2"; transcript_biotype "protein_coding"; +chrXI SGD CDS 86225 88786 . - 0 transcript_id "YKL188C_mRNA"; gene_name "PXA2"; gene_id "YKL188C"; +chrXI SGD gene 89284 91536 . - . gene_id "YKL187C"; gene_biotype "protein_coding"; +chrXI SGD transcript 89284 91536 . - . transcript_id "YKL187C_mRNA"; gene_id "YKL187C"; gene_name "FAT3"; transcript_biotype "protein_coding"; +chrXI SGD CDS 89284 91536 . - 0 transcript_id "YKL187C_mRNA"; gene_name "FAT3"; gene_id "YKL187C"; +chrXI SGD gene 92644 93760 . - . gene_id "YKL186C"; gene_biotype "protein_coding"; +chrXI SGD transcript 92644 93760 . - . transcript_id "YKL186C_id003"; gene_id "YKL186C"; gene_name "MTR2"; transcript_biotype "protein_coding"; +chrXI SGD exon 92644 93760 . - . transcript_id "YKL186C_id003"; gene_id "YKL186C"; gene_name "MTR2"; +chrXI SGD transcript 92744 93465 . - . transcript_id "YKL186C_id001"; gene_id "YKL186C"; gene_name "MTR2"; transcript_biotype "protein_coding"; +chrXI SGD exon 92744 93298 . - . transcript_id "YKL186C_id001"; gene_name "MTR2"; gene_id "YKL186C"; +chrXI SGD exon 93312 93465 . - . transcript_id "YKL186C_id001"; gene_name "MTR2"; gene_id "YKL186C"; +chrXI SGD exon 92744 93298 . - 0 transcript_id "YKL186C_id001"; gene_name "MTR2"; gene_id "YKL186C"; +chrXI SGD gene 94133 96388 . + . gene_id "YKL185W"; gene_biotype "protein_coding"; +chrXI SGD transcript 94133 96388 . + . transcript_id "YKL185W_id002"; gene_id "YKL185W"; gene_name "ASH1"; transcript_biotype "protein_coding"; +chrXI SGD exon 94133 96388 . + . transcript_id "YKL185W_id002"; gene_id "YKL185W"; gene_name "ASH1"; +chrXI SGD transcript 94499 96265 . + . transcript_id "YKL185W_id001"; gene_id "YKL185W"; gene_name "ASH1"; transcript_biotype "protein_coding"; +chrXI SGD exon 94499 96265 . + 0 transcript_id "YKL185W_id001"; gene_name "ASH1"; gene_id "YKL185W"; +chrXI SGD gene 96544 98463 . + . gene_id "YKL184W"; gene_biotype "protein_coding"; +chrXI SGD transcript 96544 98463 . + . transcript_id "YKL184W_id003"; gene_id "YKL184W"; gene_name "SPE1"; transcript_biotype "protein_coding"; +chrXI SGD exon 96544 98463 . + . transcript_id "YKL184W_id003"; gene_id "YKL184W"; gene_name "SPE1"; +chrXI SGD transcript 96757 98157 . + . transcript_id "YKL184W_id001"; gene_id "YKL184W"; gene_name "SPE1"; transcript_biotype "protein_coding"; +chrXI SGD exon 96757 98157 . + 0 transcript_id "YKL184W_id001"; gene_name "SPE1"; gene_id "YKL184W"; +chrXI SGD gene 98395 98607 . - . gene_id "YKL183C-A"; gene_biotype "protein_coding"; +chrXI SGD transcript 98395 98607 . - . transcript_id "YKL183C-A_mRNA"; gene_id "YKL183C-A"; transcript_biotype "protein_coding"; +chrXI SGD CDS 98395 98607 . - 0 transcript_id "YKL183C-A_mRNA"; gene_id "YKL183C-A"; +chrXI SGD gene 98551 100350 . + . gene_id "YKL183W"; gene_biotype "protein_coding"; +chrXI SGD transcript 98551 100350 . + . transcript_id "YKL183W_id001"; gene_id "YKL183W"; gene_name "LOT5"; transcript_biotype "protein_coding"; +chrXI SGD exon 98551 100350 . + . transcript_id "YKL183W_id001"; gene_id "YKL183W"; gene_name "LOT5"; +chrXI SGD transcript 98721 99641 . + . transcript_id "YKL183W_id002"; gene_id "YKL183W"; gene_name "LOT5"; transcript_biotype "protein_coding"; +chrXI SGD exon 98721 99641 . + 0 transcript_id "YKL183W_id002"; gene_name "LOT5"; gene_id "YKL183W"; +chrXI SGD gene 100671 106826 . + . gene_id "YKL182W"; gene_biotype "protein_coding"; +chrXI SGD transcript 100671 106826 . + . transcript_id "YKL182W_mRNA"; gene_id "YKL182W"; gene_name "FAS1"; transcript_biotype "protein_coding"; +chrXI SGD CDS 100671 106826 . + 0 transcript_id "YKL182W_mRNA"; gene_name "FAS1"; gene_id "YKL182W"; +chrXI SGD gene 107167 108908 . + . gene_id "YKL181W"; gene_biotype "protein_coding"; +chrXI SGD transcript 107167 108908 . + . transcript_id "YKL181W_id001"; gene_id "YKL181W"; gene_name "PRS1"; transcript_biotype "protein_coding"; +chrXI SGD exon 107167 108908 . + . transcript_id "YKL181W_id001"; gene_id "YKL181W"; gene_name "PRS1"; +chrXI SGD transcript 107316 108599 . + . transcript_id "YKL181W_id002"; gene_id "YKL181W"; gene_name "PRS1"; transcript_biotype "protein_coding"; +chrXI SGD exon 107316 108599 . + 0 transcript_id "YKL181W_id002"; gene_name "PRS1"; gene_id "YKL181W"; +chrXI SGD gene 109090 110238 . + . gene_id "YKL180W"; gene_biotype "protein_coding"; +chrXI SGD transcript 109090 110238 . + . transcript_id "YKL180W_id001"; gene_id "YKL180W"; gene_name "RPL17A"; transcript_biotype "protein_coding"; +chrXI SGD exon 109090 110238 . + . transcript_id "YKL180W_id001"; gene_id "YKL180W"; gene_name "RPL17A"; +chrXI SGD transcript 109269 110129 . + . transcript_id "YKL180W_id003"; gene_id "YKL180W"; gene_name "RPL17A"; transcript_biotype "protein_coding"; +chrXI SGD exon 109269 109577 . + 0 transcript_id "YKL180W_id003"; gene_name "RPL17A"; gene_id "YKL180W"; +chrXI SGD exon 109884 110129 . + 0 transcript_id "YKL180W_id003"; gene_name "RPL17A"; gene_id "YKL180W"; +chrXI SGD gene 110464 112503 . - . gene_id "YKL179C"; gene_biotype "protein_coding"; +chrXI SGD transcript 110464 112503 . - . transcript_id "YKL179C_id001"; gene_id "YKL179C"; gene_name "COY1"; transcript_biotype "protein_coding"; +chrXI SGD exon 110464 112503 . - 0 transcript_id "YKL179C_id001"; gene_name "COY1"; gene_id "YKL179C"; +chrXI SGD gene 112942 114671 . - . gene_id "YKL178C"; gene_biotype "protein_coding"; +chrXI SGD transcript 112942 114671 . - . transcript_id "YKL178C_id002"; gene_id "YKL178C"; gene_name "STE3"; transcript_biotype "protein_coding"; +chrXI SGD exon 112942 114671 . - . transcript_id "YKL178C_id002"; gene_id "YKL178C"; gene_name "STE3"; +chrXI SGD transcript 113215 114627 . - . transcript_id "YKL178C_id001"; gene_id "YKL178C"; gene_name "STE3"; transcript_biotype "protein_coding"; +chrXI SGD exon 113215 114627 . - 0 transcript_id "YKL178C_id001"; gene_name "STE3"; gene_id "YKL178C"; +chrXI SGD gene 114356 114694 . + . gene_id "YKL177W"; gene_biotype "protein_coding"; +chrXI SGD transcript 114356 114694 . + . transcript_id "YKL177W_id001"; gene_id "YKL177W"; transcript_biotype "protein_coding"; +chrXI SGD exon 114356 114694 . + 0 transcript_id "YKL177W_id001"; gene_id "YKL177W"; +chrXI SGD gene 115457 118332 . - . gene_id "YKL176C"; gene_biotype "protein_coding"; +chrXI SGD transcript 115457 118332 . - . transcript_id "YKL176C_id009"; gene_id "YKL176C"; gene_name "LST4"; transcript_biotype "protein_coding"; +chrXI SGD exon 115457 118332 . - . transcript_id "YKL176C_id009"; gene_id "YKL176C"; gene_name "LST4"; +chrXI SGD transcript 115500 117986 . - . transcript_id "YKL176C_id001"; gene_id "YKL176C"; gene_name "LST4"; transcript_biotype "protein_coding"; +chrXI SGD exon 115500 117986 . - 0 transcript_id "YKL176C_id001"; gene_name "LST4"; gene_id "YKL176C"; +chrXI SGD gene 118550 120467 . + . gene_id "YKL175W"; gene_biotype "protein_coding"; +chrXI SGD transcript 118550 120467 . + . transcript_id "YKL175W_id001"; gene_id "YKL175W"; gene_name "ZRT3"; transcript_biotype "protein_coding"; +chrXI SGD exon 118550 120467 . + . transcript_id "YKL175W_id001"; gene_id "YKL175W"; gene_name "ZRT3"; +chrXI SGD transcript 118793 120304 . + . transcript_id "YKL175W_id002"; gene_id "YKL175W"; gene_name "ZRT3"; transcript_biotype "protein_coding"; +chrXI SGD exon 118793 120304 . + 0 transcript_id "YKL175W_id002"; gene_name "ZRT3"; gene_id "YKL175W"; +chrXI SGD gene 120255 122336 . - . gene_id "YKL174C"; gene_biotype "protein_coding"; +chrXI SGD transcript 120255 122336 . - . transcript_id "YKL174C_id003"; gene_id "YKL174C"; gene_name "TPO5"; transcript_biotype "protein_coding"; +chrXI SGD exon 120255 122336 . - . transcript_id "YKL174C_id003"; gene_id "YKL174C"; gene_name "TPO5"; +chrXI SGD transcript 120380 122236 . - . transcript_id "YKL174C_id001"; gene_id "YKL174C"; gene_name "TPO5"; transcript_biotype "protein_coding"; +chrXI SGD exon 120380 122236 . - 0 transcript_id "YKL174C_id001"; gene_name "TPO5"; gene_id "YKL174C"; +chrXI SGD gene 122492 125646 . + . gene_id "YKL173W"; gene_biotype "protein_coding"; +chrXI SGD transcript 122492 125646 . + . transcript_id "YKL173W_id002"; gene_id "YKL173W"; gene_name "SNU114"; transcript_biotype "protein_coding"; +chrXI SGD exon 122492 125646 . + . transcript_id "YKL173W_id002"; gene_id "YKL173W"; gene_name "SNU114"; +chrXI SGD transcript 122517 125543 . + . transcript_id "YKL173W_id001"; gene_id "YKL173W"; gene_name "SNU114"; transcript_biotype "protein_coding"; +chrXI SGD exon 122517 125543 . + 0 transcript_id "YKL173W_id001"; gene_name "SNU114"; gene_id "YKL173W"; +chrXI SGD gene 125725 127196 . + . gene_id "YKL172W"; gene_biotype "protein_coding"; +chrXI SGD transcript 125725 127196 . + . transcript_id "YKL172W_id001"; gene_id "YKL172W"; gene_name "EBP2"; transcript_biotype "protein_coding"; +chrXI SGD exon 125725 127196 . + . transcript_id "YKL172W_id001"; gene_id "YKL172W"; gene_name "EBP2"; +chrXI SGD transcript 125759 127042 . + . transcript_id "YKL172W_id002"; gene_id "YKL172W"; gene_name "EBP2"; transcript_biotype "protein_coding"; +chrXI SGD exon 125759 127042 . + 0 transcript_id "YKL172W_id002"; gene_name "EBP2"; gene_id "YKL172W"; +chrXI SGD gene 127475 130261 . + . gene_id "YKL171W"; gene_biotype "protein_coding"; +chrXI SGD transcript 127475 130261 . + . transcript_id "YKL171W_mRNA"; gene_id "YKL171W"; gene_name "NNK1"; transcript_biotype "protein_coding"; +chrXI SGD CDS 127475 130261 . + 0 transcript_id "YKL171W_mRNA"; gene_name "NNK1"; gene_id "YKL171W"; +chrXI SGD gene 130324 132678 . - . gene_id "YKL169C"; gene_biotype "protein_coding"; +chrXI SGD transcript 130324 132678 . - . transcript_id "YKL169C_id001"; gene_id "YKL169C"; transcript_biotype "protein_coding"; +chrXI SGD exon 130324 132678 . - . transcript_id "YKL169C_id001"; gene_id "YKL169C"; +chrXI SGD gene 130521 131234 . + . gene_id "YKL170W"; gene_biotype "protein_coding"; +chrXI SGD transcript 130521 131234 . + . transcript_id "YKL170W_id004"; gene_id "YKL170W"; gene_name "MRPL38"; transcript_biotype "protein_coding"; +chrXI SGD exon 130521 131234 . + . transcript_id "YKL170W_id004"; gene_id "YKL170W"; gene_name "MRPL38"; +chrXI SGD transcript 130634 131050 . + . transcript_id "YKL170W_id001"; gene_id "YKL170W"; gene_name "MRPL38"; transcript_biotype "protein_coding"; +chrXI SGD exon 130634 131050 . + 0 transcript_id "YKL170W_id001"; gene_name "MRPL38"; gene_id "YKL170W"; +chrXI SGD transcript 130685 131068 . - . transcript_id "YKL169C_id002"; gene_id "YKL169C"; transcript_biotype "protein_coding"; +chrXI SGD exon 130685 131068 . - 0 transcript_id "YKL169C_id002"; gene_id "YKL169C"; +chrXI SGD gene 130985 133472 . - . gene_id "YKL168C"; gene_biotype "protein_coding"; +chrXI SGD transcript 130985 133472 . - . transcript_id "YKL168C_id001"; gene_id "YKL168C"; gene_name "KKQ8"; transcript_biotype "protein_coding"; +chrXI SGD exon 130985 133472 . - . transcript_id "YKL168C_id001"; gene_id "YKL168C"; gene_name "KKQ8"; +chrXI SGD transcript 131288 133462 . - . transcript_id "YKL168C_id004"; gene_id "YKL168C"; gene_name "KKQ8"; transcript_biotype "protein_coding"; +chrXI SGD exon 131288 133462 . - 0 transcript_id "YKL168C_id004"; gene_name "KKQ8"; gene_id "YKL168C"; +chrXI SGD gene 133476 134154 . - . gene_id "YKL167C"; gene_biotype "protein_coding"; +chrXI SGD transcript 133476 134154 . - . transcript_id "YKL167C_id003"; gene_id "YKL167C"; gene_name "MRP49"; transcript_biotype "protein_coding"; +chrXI SGD exon 133476 134154 . - . transcript_id "YKL167C_id003"; gene_id "YKL167C"; gene_name "MRP49"; +chrXI SGD transcript 133721 134134 . - . transcript_id "YKL167C_id001"; gene_id "YKL167C"; gene_name "MRP49"; transcript_biotype "protein_coding"; +chrXI SGD exon 133721 134134 . - 0 transcript_id "YKL167C_id001"; gene_name "MRP49"; gene_id "YKL167C"; +chrXI SGD gene 134289 135921 . - . gene_id "YKL166C"; gene_biotype "protein_coding"; +chrXI SGD transcript 134289 135921 . - . transcript_id "YKL166C_id002"; gene_id "YKL166C"; gene_name "TPK3"; transcript_biotype "protein_coding"; +chrXI SGD exon 134289 135921 . - . transcript_id "YKL166C_id002"; gene_id "YKL166C"; gene_name "TPK3"; +chrXI SGD transcript 134509 135705 . - . transcript_id "YKL166C_id001"; gene_id "YKL166C"; gene_name "TPK3"; transcript_biotype "protein_coding"; +chrXI SGD exon 134509 135705 . - 0 transcript_id "YKL166C_id001"; gene_name "TPK3"; gene_id "YKL166C"; +chrXI SGD gene 135790 136023 . - . gene_id "YKL165C-A"; gene_biotype "protein_coding"; +chrXI SGD transcript 135790 136023 . - . transcript_id "YKL165C-A_mRNA"; gene_id "YKL165C-A"; transcript_biotype "protein_coding"; +chrXI SGD CDS 135790 136023 . - 0 transcript_id "YKL165C-A_mRNA"; gene_id "YKL165C-A"; +chrXI SGD gene 137775 140748 . - . gene_id "YKL165C"; gene_biotype "protein_coding"; +chrXI SGD transcript 137775 140748 . - . transcript_id "YKL165C_id001"; gene_id "YKL165C"; gene_name "MCD4"; transcript_biotype "protein_coding"; +chrXI SGD exon 137775 140748 . - . transcript_id "YKL165C_id001"; gene_id "YKL165C"; gene_name "MCD4"; +chrXI SGD transcript 137932 140691 . - . transcript_id "YKL165C_id002"; gene_id "YKL165C"; gene_name "MCD4"; transcript_biotype "protein_coding"; +chrXI SGD exon 137932 140691 . - 0 transcript_id "YKL165C_id002"; gene_name "MCD4"; gene_id "YKL165C"; +chrXI SGD gene 141018 141089 . - . gene_id "YNCK0005C"; gene_biotype "ncRNA"; +chrXI SGD transcript 141018 141089 . - . transcript_id "YNCK0005C_tRNA"; gene_id "YNCK0005C"; transcript_biotype "ncRNA"; +chrXI SGD exon 141018 141089 . - . transcript_id "YNCK0005C_tRNA"; gene_id "YNCK0005C"; +chrXI SGD gene 141536 143179 . - . gene_id "YKL164C"; gene_biotype "protein_coding"; +chrXI SGD transcript 141536 143179 . - . transcript_id "YKL164C_id001"; gene_id "YKL164C"; gene_name "PIR1"; transcript_biotype "protein_coding"; +chrXI SGD exon 141536 143179 . - . transcript_id "YKL164C_id001"; gene_id "YKL164C"; gene_name "PIR1"; +chrXI SGD transcript 141794 142819 . - . transcript_id "YKL164C_id003"; gene_id "YKL164C"; gene_name "PIR1"; transcript_biotype "protein_coding"; +chrXI SGD exon 141794 142819 . - 0 transcript_id "YKL164C_id003"; gene_name "PIR1"; gene_id "YKL164C"; +chrXI SGD gene 144357 145781 . + . gene_id "YKL163W"; gene_biotype "protein_coding"; +chrXI SGD transcript 144357 145781 . + . transcript_id "YKL163W_id007"; gene_id "YKL163W"; gene_name "PIR3"; transcript_biotype "protein_coding"; +chrXI SGD exon 144357 145781 . + . transcript_id "YKL163W_id007"; gene_id "YKL163W"; gene_name "PIR3"; +chrXI SGD transcript 144401 145378 . + . transcript_id "YKL163W_id001"; gene_id "YKL163W"; gene_name "PIR3"; transcript_biotype "protein_coding"; +chrXI SGD exon 144401 145378 . + 0 transcript_id "YKL163W_id001"; gene_name "PIR3"; gene_id "YKL163W"; +chrXI SGD gene 145922 146074 . - . gene_id "YKL162C-A"; gene_biotype "protein_coding"; +chrXI SGD transcript 145922 146074 . - . transcript_id "YKL162C-A_id001"; gene_id "YKL162C-A"; transcript_biotype "protein_coding"; +chrXI SGD exon 145922 146074 . - 0 transcript_id "YKL162C-A_id001"; gene_id "YKL162C-A"; +chrXI SGD gene 147483 148947 . - . gene_id "YKL162C"; gene_biotype "protein_coding"; +chrXI SGD transcript 147483 148947 . - . transcript_id "YKL162C_id002"; gene_id "YKL162C"; transcript_biotype "protein_coding"; +chrXI SGD exon 147483 148947 . - . transcript_id "YKL162C_id002"; gene_id "YKL162C"; +chrXI SGD transcript 147630 148838 . - . transcript_id "YKL162C_id001"; gene_id "YKL162C"; transcript_biotype "protein_coding"; +chrXI SGD exon 147630 148838 . - 0 transcript_id "YKL162C_id001"; gene_id "YKL162C"; +chrXI SGD gene 149071 150965 . - . gene_id "YKL161C"; gene_biotype "protein_coding"; +chrXI SGD transcript 149071 150965 . - . transcript_id "YKL161C_id003"; gene_id "YKL161C"; gene_name "KDX1"; transcript_biotype "protein_coding"; +chrXI SGD exon 149071 150965 . - . transcript_id "YKL161C_id003"; gene_id "YKL161C"; gene_name "KDX1"; +chrXI SGD transcript 149386 150687 . - . transcript_id "YKL161C_id001"; gene_id "YKL161C"; gene_name "KDX1"; transcript_biotype "protein_coding"; +chrXI SGD exon 149386 150687 . - 0 transcript_id "YKL161C_id001"; gene_name "KDX1"; gene_id "YKL161C"; +chrXI SGD gene 153134 154460 . - . gene_id "YKL159C"; gene_biotype "protein_coding"; +chrXI SGD transcript 153134 154460 . - . transcript_id "YKL159C_id002"; gene_id "YKL159C"; gene_name "RCN1"; transcript_biotype "protein_coding"; +chrXI SGD exon 153134 154460 . - . transcript_id "YKL159C_id002"; gene_id "YKL159C"; gene_name "RCN1"; +chrXI SGD gene 153264 154944 . + . gene_id "YKL160W"; gene_biotype "protein_coding"; +chrXI SGD transcript 153264 154944 . + . transcript_id "YKL160W_id001"; gene_id "YKL160W"; gene_name "ELF1"; transcript_biotype "protein_coding"; +chrXI SGD exon 153264 154944 . + . transcript_id "YKL160W_id001"; gene_id "YKL160W"; gene_name "ELF1"; +chrXI SGD transcript 153269 153706 . + . transcript_id "YKL160W_id002"; gene_id "YKL160W"; gene_name "ELF1"; transcript_biotype "protein_coding"; +chrXI SGD exon 153269 153706 . + 0 transcript_id "YKL160W_id002"; gene_name "ELF1"; gene_id "YKL160W"; +chrXI SGD transcript 153816 154451 . - . transcript_id "YKL159C_id001"; gene_id "YKL159C"; gene_name "RCN1"; transcript_biotype "protein_coding"; +chrXI SGD exon 153816 154451 . - 0 transcript_id "YKL159C_id001"; gene_name "RCN1"; gene_id "YKL159C"; +chrXI SGD gene 154979 158343 . + . gene_id "YKL157W"; gene_biotype "protein_coding"; +chrXI SGD transcript 154979 158343 . + . transcript_id "YKL157W_id018"; gene_id "YKL157W"; gene_name "APE2"; transcript_biotype "protein_coding"; +chrXI SGD exon 154979 158343 . + . transcript_id "YKL157W_id018"; gene_id "YKL157W"; gene_name "APE2"; +chrXI SGD transcript 154991 158232 . + . transcript_id "YKL157W_id001"; gene_id "YKL157W"; gene_name "APE2"; transcript_biotype "protein_coding"; +chrXI SGD exon 154991 155271 . + 0 transcript_id "YKL157W_id001"; gene_name "APE2"; gene_id "YKL157W"; +chrXI SGD exon 155655 158232 . + 1 transcript_id "YKL157W_id001"; gene_name "APE2"; gene_id "YKL157W"; +chrXI SGD gene 158559 159449 . + . gene_id "YKL156W"; gene_biotype "protein_coding"; +chrXI SGD transcript 158559 159449 . + . transcript_id "YKL156W_id008"; gene_id "YKL156W"; gene_name "RPS27A"; transcript_biotype "protein_coding"; +chrXI SGD exon 158559 159449 . + . transcript_id "YKL156W_id008"; gene_id "YKL156W"; gene_name "RPS27A"; +chrXI SGD transcript 158613 159212 . + . transcript_id "YKL156W_id001"; gene_id "YKL156W"; gene_name "RPS27A"; transcript_biotype "protein_coding"; +chrXI SGD exon 158613 158615 . + 0 transcript_id "YKL156W_id001"; gene_name "RPS27A"; gene_id "YKL156W"; +chrXI SGD exon 158967 159212 . + 0 transcript_id "YKL156W_id001"; gene_name "RPS27A"; gene_id "YKL156W"; +chrXI SGD gene 158975 159091 . - . gene_id "YKL156C-A"; gene_biotype "protein_coding"; +chrXI SGD transcript 158975 159091 . - . transcript_id "YKL156C-A_mRNA"; gene_id "YKL156C-A"; transcript_biotype "protein_coding"; +chrXI SGD CDS 158975 159091 . - 0 transcript_id "YKL156C-A_mRNA"; gene_id "YKL156C-A"; +chrXI SGD gene 159365 161397 . - . gene_id "YKL155C"; gene_biotype "protein_coding"; +chrXI SGD transcript 159365 161397 . - . transcript_id "YKL155C_id002"; gene_id "YKL155C"; gene_name "RSM22"; transcript_biotype "protein_coding"; +chrXI SGD exon 159365 161397 . - . transcript_id "YKL155C_id002"; gene_id "YKL155C"; gene_name "RSM22"; +chrXI SGD transcript 159456 161342 . - . transcript_id "YKL155C_id001"; gene_id "YKL155C"; gene_name "RSM22"; transcript_biotype "protein_coding"; +chrXI SGD exon 159456 161342 . - 0 transcript_id "YKL155C_id001"; gene_name "RSM22"; gene_id "YKL155C"; +chrXI SGD gene 161502 162452 . + . gene_id "YKL154W"; gene_biotype "protein_coding"; +chrXI SGD transcript 161502 162452 . + . transcript_id "YKL154W_id002"; gene_id "YKL154W"; gene_name "SRP102"; transcript_biotype "protein_coding"; +chrXI SGD exon 161502 162452 . + . transcript_id "YKL154W_id002"; gene_id "YKL154W"; gene_name "SRP102"; +chrXI SGD transcript 161601 162335 . + . transcript_id "YKL154W_id001"; gene_id "YKL154W"; gene_name "SRP102"; transcript_biotype "protein_coding"; +chrXI SGD exon 161601 162335 . + 0 transcript_id "YKL154W_id001"; gene_name "SRP102"; gene_id "YKL154W"; +chrXI SGD gene 162487 162558 . - . gene_id "YNCK0006C"; gene_biotype "ncRNA"; +chrXI SGD transcript 162487 162558 . - . transcript_id "YNCK0006C_tRNA"; gene_id "YNCK0006C"; transcript_biotype "ncRNA"; +chrXI SGD exon 162487 162558 . - . transcript_id "YNCK0006C_tRNA"; gene_id "YNCK0006C"; +chrXI SGD gene 163006 164409 . - . gene_id "YKL152C"; gene_biotype "protein_coding"; +chrXI SGD transcript 163006 164409 . - . transcript_id "YKL152C_id001"; gene_id "YKL152C"; gene_name "GPM1"; transcript_biotype "protein_coding"; +chrXI SGD exon 163006 164409 . - . transcript_id "YKL152C_id001"; gene_id "YKL152C"; gene_name "GPM1"; +chrXI SGD gene 163600 164109 . + . gene_id "YKL153W"; gene_biotype "protein_coding"; +chrXI SGD transcript 163600 164109 . + . transcript_id "YKL153W_mRNA"; gene_id "YKL153W"; transcript_biotype "protein_coding"; +chrXI SGD CDS 163600 164109 . + 0 transcript_id "YKL153W_mRNA"; gene_id "YKL153W"; +chrXI SGD transcript 163642 164385 . - . transcript_id "YKL152C_id004"; gene_id "YKL152C"; gene_name "GPM1"; transcript_biotype "protein_coding"; +chrXI SGD exon 163642 164385 . - 0 transcript_id "YKL152C_id004"; gene_name "GPM1"; gene_id "YKL152C"; +chrXI SGD gene 164917 165930 . - . gene_id "YKL151C"; gene_biotype "protein_coding"; +chrXI SGD transcript 164917 165930 . - . transcript_id "YKL151C_id001"; gene_id "YKL151C"; gene_name "NNR2"; transcript_biotype "protein_coding"; +chrXI SGD exon 164917 165930 . - 0 transcript_id "YKL151C_id001"; gene_name "NNR2"; gene_id "YKL151C"; +chrXI SGD gene 166261 167572 . + . gene_id "YKL150W"; gene_biotype "protein_coding"; +chrXI SGD transcript 166261 167572 . + . transcript_id "YKL150W_id003"; gene_id "YKL150W"; gene_name "MCR1"; transcript_biotype "protein_coding"; +chrXI SGD exon 166261 167572 . + . transcript_id "YKL150W_id003"; gene_id "YKL150W"; gene_name "MCR1"; +chrXI SGD transcript 166400 167452 . + . transcript_id "YKL150W_id001"; gene_id "YKL150W"; gene_name "MCR1"; transcript_biotype "protein_coding"; +chrXI SGD exon 166400 166487 . + . transcript_id "YKL150W_id001"; gene_name "MCR1"; gene_id "YKL150W"; +chrXI SGD exon 166544 167452 . + . transcript_id "YKL150W_id001"; gene_name "MCR1"; gene_id "YKL150W"; +chrXI SGD exon 166544 167452 . + 0 transcript_id "YKL150W_id001"; gene_name "MCR1"; gene_id "YKL150W"; +chrXI SGD gene 167457 168904 . - . gene_id "YKL149C"; gene_biotype "protein_coding"; +chrXI SGD transcript 167457 168904 . - . transcript_id "YKL149C_id001"; gene_id "YKL149C"; gene_name "DBR1"; transcript_biotype "protein_coding"; +chrXI SGD exon 167457 168904 . - . transcript_id "YKL149C_id001"; gene_id "YKL149C"; gene_name "DBR1"; +chrXI SGD transcript 167612 168829 . - . transcript_id "YKL149C_id002"; gene_id "YKL149C"; gene_name "DBR1"; transcript_biotype "protein_coding"; +chrXI SGD exon 167612 168829 . - 0 transcript_id "YKL149C_id002"; gene_name "DBR1"; gene_id "YKL149C"; +chrXI SGD gene 168974 171306 . - . gene_id "YKL148C"; gene_biotype "protein_coding"; +chrXI SGD transcript 168974 171306 . - . transcript_id "YKL148C_id001"; gene_id "YKL148C"; gene_name "SDH1"; transcript_biotype "protein_coding"; +chrXI SGD exon 168974 171306 . - . transcript_id "YKL148C_id001"; gene_id "YKL148C"; gene_name "SDH1"; +chrXI SGD transcript 169207 171129 . - . transcript_id "YKL148C_id003"; gene_id "YKL148C"; gene_name "SDH1"; transcript_biotype "protein_coding"; +chrXI SGD exon 169207 171129 . - 0 transcript_id "YKL148C_id003"; gene_name "SDH1"; gene_id "YKL148C"; +chrXI SGD gene 171551 172168 . - . gene_id "YKL147C"; gene_biotype "protein_coding"; +chrXI SGD transcript 171551 172168 . - . transcript_id "YKL147C_mRNA"; gene_id "YKL147C"; transcript_biotype "protein_coding"; +chrXI SGD CDS 171551 172168 . - 0 transcript_id "YKL147C_mRNA"; gene_id "YKL147C"; +chrXI SGD gene 171608 173945 . + . gene_id "YKL146W"; gene_biotype "protein_coding"; +chrXI SGD transcript 171608 173945 . + . transcript_id "YKL146W_id010"; gene_id "YKL146W"; gene_name "AVT3"; transcript_biotype "protein_coding"; +chrXI SGD exon 171608 173945 . + . transcript_id "YKL146W_id010"; gene_id "YKL146W"; gene_name "AVT3"; +chrXI SGD transcript 171783 173861 . + . transcript_id "YKL146W_id001"; gene_id "YKL146W"; gene_name "AVT3"; transcript_biotype "protein_coding"; +chrXI SGD exon 171783 173861 . + 0 transcript_id "YKL146W_id001"; gene_name "AVT3"; gene_id "YKL146W"; +chrXI SGD gene 174213 175616 . + . gene_id "YKL145W"; gene_biotype "protein_coding"; +chrXI SGD transcript 174213 175616 . + . transcript_id "YKL145W_id001"; gene_id "YKL145W"; gene_name "RPT1"; transcript_biotype "protein_coding"; +chrXI SGD exon 174213 175616 . + 0 transcript_id "YKL145W_id001"; gene_name "RPT1"; gene_id "YKL145W"; +chrXI SGD gene 174601 175807 . + . gene_id "YKL145W-A"; gene_biotype "protein_coding"; +chrXI SGD transcript 174601 175807 . + . transcript_id "YKL145W-A_id002"; gene_id "YKL145W-A"; transcript_biotype "protein_coding"; +chrXI SGD exon 174601 175807 . + . transcript_id "YKL145W-A_id002"; gene_id "YKL145W-A"; +chrXI SGD transcript 174958 175050 . + . transcript_id "YKL145W-A_id001"; gene_id "YKL145W-A"; transcript_biotype "protein_coding"; +chrXI SGD exon 174958 175050 . + 0 transcript_id "YKL145W-A_id001"; gene_id "YKL145W-A"; +chrXI SGD gene 175600 176569 . - . gene_id "YKL144C"; gene_biotype "protein_coding"; +chrXI SGD transcript 175600 176569 . - . transcript_id "YKL144C_id001"; gene_id "YKL144C"; gene_name "RPC25"; transcript_biotype "protein_coding"; +chrXI SGD exon 175600 176569 . - . transcript_id "YKL144C_id001"; gene_id "YKL144C"; gene_name "RPC25"; +chrXI SGD transcript 175843 176481 . - . transcript_id "YKL144C_id002"; gene_id "YKL144C"; gene_name "RPC25"; transcript_biotype "protein_coding"; +chrXI SGD exon 175843 176481 . - 0 transcript_id "YKL144C_id002"; gene_name "RPC25"; gene_id "YKL144C"; +chrXI SGD gene 176727 178541 . + . gene_id "YKL143W"; gene_biotype "protein_coding"; +chrXI SGD transcript 176727 178541 . + . transcript_id "YKL143W_id002"; gene_id "YKL143W"; gene_name "LTV1"; transcript_biotype "protein_coding"; +chrXI SGD exon 176727 178541 . + . transcript_id "YKL143W_id002"; gene_id "YKL143W"; gene_name "LTV1"; +chrXI SGD transcript 176781 178172 . + . transcript_id "YKL143W_id001"; gene_id "YKL143W"; gene_name "LTV1"; transcript_biotype "protein_coding"; +chrXI SGD exon 176781 178172 . + 0 transcript_id "YKL143W_id001"; gene_name "LTV1"; gene_id "YKL143W"; +chrXI SGD gene 178418 179335 . + . gene_id "YKL142W"; gene_biotype "protein_coding"; +chrXI SGD transcript 178418 179335 . + . transcript_id "YKL142W_id006"; gene_id "YKL142W"; gene_name "MRP8"; transcript_biotype "protein_coding"; +chrXI SGD exon 178418 179335 . + . transcript_id "YKL142W_id006"; gene_id "YKL142W"; gene_name "MRP8"; +chrXI SGD transcript 178515 179174 . + . transcript_id "YKL142W_id001"; gene_id "YKL142W"; gene_name "MRP8"; transcript_biotype "protein_coding"; +chrXI SGD exon 178515 179174 . + 0 transcript_id "YKL142W_id001"; gene_name "MRP8"; gene_id "YKL142W"; +chrXI SGD gene 179417 180392 . + . gene_id "YKL141W"; gene_biotype "protein_coding"; +chrXI SGD transcript 179417 180392 . + . transcript_id "YKL141W_id003"; gene_id "YKL141W"; gene_name "SDH3"; transcript_biotype "protein_coding"; +chrXI SGD exon 179417 180392 . + . transcript_id "YKL141W_id003"; gene_id "YKL141W"; gene_name "SDH3"; +chrXI SGD transcript 179667 180263 . + . transcript_id "YKL141W_id001"; gene_id "YKL141W"; gene_name "SDH3"; transcript_biotype "protein_coding"; +chrXI SGD exon 179667 180263 . + 0 transcript_id "YKL141W_id001"; gene_name "SDH3"; gene_id "YKL141W"; +chrXI SGD gene 180511 182651 . + . gene_id "YKL140W"; gene_biotype "protein_coding"; +chrXI SGD transcript 180511 182651 . + . transcript_id "YKL140W_id004"; gene_id "YKL140W"; gene_name "TGL1"; transcript_biotype "protein_coding"; +chrXI SGD exon 180511 182651 . + . transcript_id "YKL140W_id004"; gene_id "YKL140W"; gene_name "TGL1"; +chrXI SGD transcript 180779 182425 . + . transcript_id "YKL140W_id001"; gene_id "YKL140W"; gene_name "TGL1"; transcript_biotype "protein_coding"; +chrXI SGD exon 180779 182425 . + 0 transcript_id "YKL140W_id001"; gene_name "TGL1"; gene_id "YKL140W"; +chrXI SGD gene 182781 184607 . + . gene_id "YKL139W"; gene_biotype "protein_coding"; +chrXI SGD transcript 182781 184607 . + . transcript_id "YKL139W_id002"; gene_id "YKL139W"; gene_name "CTK1"; transcript_biotype "protein_coding"; +chrXI SGD exon 182781 184607 . + . transcript_id "YKL139W_id002"; gene_id "YKL139W"; gene_name "CTK1"; +chrXI SGD transcript 182958 184544 . + . transcript_id "YKL139W_id001"; gene_id "YKL139W"; gene_name "CTK1"; transcript_biotype "protein_coding"; +chrXI SGD exon 182958 184544 . + 0 transcript_id "YKL139W_id001"; gene_name "CTK1"; gene_id "YKL139W"; +chrXI SGD gene 184563 185513 . - . gene_id "YKL138C-A"; gene_biotype "protein_coding"; +chrXI SGD transcript 184563 185513 . - . transcript_id "YKL138C-A_id001"; gene_id "YKL138C-A"; gene_name "HSK3"; transcript_biotype "protein_coding"; +chrXI SGD exon 184563 185513 . - . transcript_id "YKL138C-A_id001"; gene_id "YKL138C-A"; gene_name "HSK3"; +chrXI SGD transcript 184803 185012 . - . transcript_id "YKL138C-A_id002"; gene_id "YKL138C-A"; gene_name "HSK3"; transcript_biotype "protein_coding"; +chrXI SGD exon 184803 185012 . - 0 transcript_id "YKL138C-A_id002"; gene_name "HSK3"; gene_id "YKL138C-A"; +chrXI SGD gene 185215 186206 . - . gene_id "YKL138C"; gene_biotype "protein_coding"; +chrXI SGD transcript 185215 186206 . - . transcript_id "YKL138C_id001"; gene_id "YKL138C"; gene_name "MRPL31"; transcript_biotype "protein_coding"; +chrXI SGD exon 185215 186206 . - . transcript_id "YKL138C_id001"; gene_id "YKL138C"; gene_name "MRPL31"; +chrXI SGD transcript 185286 185681 . - . transcript_id "YKL138C_id002"; gene_id "YKL138C"; gene_name "MRPL31"; transcript_biotype "protein_coding"; +chrXI SGD exon 185286 185681 . - 0 transcript_id "YKL138C_id002"; gene_name "MRPL31"; gene_id "YKL138C"; +chrXI SGD gene 185548 186444 . + . gene_id "YKL137W"; gene_biotype "protein_coding"; +chrXI SGD transcript 185548 186444 . + . transcript_id "YKL137W_id001"; gene_id "YKL137W"; gene_name "CMC1"; transcript_biotype "protein_coding"; +chrXI SGD exon 185548 186444 . + . transcript_id "YKL137W_id001"; gene_id "YKL137W"; gene_name "CMC1"; +chrXI SGD transcript 185957 186292 . + . transcript_id "YKL137W_id003"; gene_id "YKL137W"; gene_name "CMC1"; transcript_biotype "protein_coding"; +chrXI SGD exon 185957 186292 . + 0 transcript_id "YKL137W_id003"; gene_name "CMC1"; gene_id "YKL137W"; +chrXI SGD gene 186386 188790 . - . gene_id "YKL135C"; gene_biotype "protein_coding"; +chrXI SGD transcript 186386 188790 . - . transcript_id "YKL135C_id002"; gene_id "YKL135C"; gene_name "APL2"; transcript_biotype "protein_coding"; +chrXI SGD exon 186386 188790 . - . transcript_id "YKL135C_id002"; gene_id "YKL135C"; gene_name "APL2"; +chrXI SGD gene 186416 186814 . + . gene_id "YKL136W"; gene_biotype "protein_coding"; +chrXI SGD transcript 186416 186814 . + . transcript_id "YKL136W_mRNA"; gene_id "YKL136W"; transcript_biotype "protein_coding"; +chrXI SGD CDS 186416 186814 . + 0 transcript_id "YKL136W_mRNA"; gene_id "YKL136W"; +chrXI SGD transcript 186460 188640 . - . transcript_id "YKL135C_id001"; gene_id "YKL135C"; gene_name "APL2"; transcript_biotype "protein_coding"; +chrXI SGD exon 186460 188640 . - 0 transcript_id "YKL135C_id001"; gene_name "APL2"; gene_id "YKL135C"; +chrXI SGD gene 188841 191494 . - . gene_id "YKL134C"; gene_biotype "protein_coding"; +chrXI SGD transcript 188841 191494 . - . transcript_id "YKL134C_id001"; gene_id "YKL134C"; gene_name "OCT1"; transcript_biotype "protein_coding"; +chrXI SGD exon 188841 191494 . - . transcript_id "YKL134C_id001"; gene_id "YKL134C"; gene_name "OCT1"; +chrXI SGD transcript 189124 191442 . - . transcript_id "YKL134C_id002"; gene_id "YKL134C"; gene_name "OCT1"; transcript_biotype "protein_coding"; +chrXI SGD exon 189124 191442 . - 0 transcript_id "YKL134C_id002"; gene_name "OCT1"; gene_id "YKL134C"; +chrXI SGD gene 191509 193081 . - . gene_id "YKL133C"; gene_biotype "protein_coding"; +chrXI SGD transcript 191509 193081 . - . transcript_id "YKL133C_id002"; gene_id "YKL133C"; gene_name "RCI50"; transcript_biotype "protein_coding"; +chrXI SGD exon 191509 193081 . - . transcript_id "YKL133C_id002"; gene_id "YKL133C"; gene_name "RCI50"; +chrXI SGD transcript 191679 193070 . - . transcript_id "YKL133C_id001"; gene_id "YKL133C"; gene_name "RCI50"; transcript_biotype "protein_coding"; +chrXI SGD exon 191679 193070 . - 0 transcript_id "YKL133C_id001"; gene_name "RCI50"; gene_id "YKL133C"; +chrXI SGD gene 193214 195031 . - . gene_id "YKL132C"; gene_biotype "protein_coding"; +chrXI SGD transcript 193214 195031 . - . transcript_id "YKL132C_id001"; gene_id "YKL132C"; gene_name "RMA1"; transcript_biotype "protein_coding"; +chrXI SGD exon 193214 195031 . - . transcript_id "YKL132C_id001"; gene_id "YKL132C"; gene_name "RMA1"; +chrXI SGD transcript 193574 194866 . - . transcript_id "YKL132C_id002"; gene_id "YKL132C"; gene_name "RMA1"; transcript_biotype "protein_coding"; +chrXI SGD exon 193574 194866 . - 0 transcript_id "YKL132C_id002"; gene_name "RMA1"; gene_id "YKL132C"; +chrXI SGD gene 194478 194999 . + . gene_id "YKL131W"; gene_biotype "protein_coding"; +chrXI SGD transcript 194478 194999 . + . transcript_id "YKL131W_mRNA"; gene_id "YKL131W"; transcript_biotype "protein_coding"; +chrXI SGD CDS 194478 194999 . + 0 transcript_id "YKL131W_mRNA"; gene_id "YKL131W"; +chrXI SGD gene 195112 196119 . - . gene_id "YKL130C"; gene_biotype "protein_coding"; +chrXI SGD transcript 195112 196119 . - . transcript_id "YKL130C_id002"; gene_id "YKL130C"; gene_name "SHE2"; transcript_biotype "protein_coding"; +chrXI SGD exon 195112 196119 . - . transcript_id "YKL130C_id002"; gene_id "YKL130C"; gene_name "SHE2"; +chrXI SGD transcript 195288 196028 . - . transcript_id "YKL130C_id001"; gene_id "YKL130C"; gene_name "SHE2"; transcript_biotype "protein_coding"; +chrXI SGD exon 195288 196028 . - 0 transcript_id "YKL130C_id001"; gene_name "SHE2"; gene_id "YKL130C"; +chrXI SGD gene 196349 200167 . - . gene_id "YKL129C"; gene_biotype "protein_coding"; +chrXI SGD transcript 196349 200167 . - . transcript_id "YKL129C_id001"; gene_id "YKL129C"; gene_name "MYO3"; transcript_biotype "protein_coding"; +chrXI SGD exon 196349 200167 . - 0 transcript_id "YKL129C_id001"; gene_name "MYO3"; gene_id "YKL129C"; +chrXI SGD gene 200496 201797 . - . gene_id "YKL128C"; gene_biotype "protein_coding"; +chrXI SGD transcript 200496 201797 . - . transcript_id "YKL128C_id001"; gene_id "YKL128C"; gene_name "PMU1"; transcript_biotype "protein_coding"; +chrXI SGD exon 200496 201797 . - . transcript_id "YKL128C_id001"; gene_id "YKL128C"; gene_name "PMU1"; +chrXI SGD transcript 200884 201771 . - . transcript_id "YKL128C_id005"; gene_id "YKL128C"; gene_name "PMU1"; transcript_biotype "protein_coding"; +chrXI SGD exon 200884 201771 . - 0 transcript_id "YKL128C_id005"; gene_name "PMU1"; gene_id "YKL128C"; +chrXI SGD gene 202999 203071 . + . gene_id "YNCK0007W"; gene_biotype "ncRNA"; +chrXI SGD transcript 202999 203071 . + . transcript_id "YNCK0007W_tRNA"; gene_id "YNCK0007W"; transcript_biotype "ncRNA"; +chrXI SGD exon 202999 203071 . + . transcript_id "YNCK0007W_tRNA"; gene_id "YNCK0007W"; +chrXI SGD gene 203176 205397 . + . gene_id "YKL127W"; gene_biotype "protein_coding"; +chrXI SGD transcript 203176 205397 . + . transcript_id "YKL127W_id001"; gene_id "YKL127W"; gene_name "PGM1"; transcript_biotype "protein_coding"; +chrXI SGD exon 203176 205397 . + . transcript_id "YKL127W_id001"; gene_id "YKL127W"; gene_name "PGM1"; +chrXI SGD transcript 203541 205253 . + . transcript_id "YKL127W_id002"; gene_id "YKL127W"; gene_name "PGM1"; transcript_biotype "protein_coding"; +chrXI SGD exon 203541 205253 . + 0 transcript_id "YKL127W_id002"; gene_name "PGM1"; gene_id "YKL127W"; +chrXI SGD gene 205499 207819 . + . gene_id "YKL126W"; gene_biotype "protein_coding"; +chrXI SGD transcript 205499 207819 . + . transcript_id "YKL126W_id002"; gene_id "YKL126W"; gene_name "YPK1"; transcript_biotype "protein_coding"; +chrXI SGD exon 205499 207819 . + . transcript_id "YKL126W_id002"; gene_id "YKL126W"; gene_name "YPK1"; +chrXI SGD transcript 205707 207749 . + . transcript_id "YKL126W_id001"; gene_id "YKL126W"; gene_name "YPK1"; transcript_biotype "protein_coding"; +chrXI SGD exon 205707 207749 . + 0 transcript_id "YKL126W_id001"; gene_name "YPK1"; gene_id "YKL126W"; +chrXI SGD gene 208156 210294 . + . gene_id "YKL125W"; gene_biotype "protein_coding"; +chrXI SGD transcript 208156 210294 . + . transcript_id "YKL125W_id003"; gene_id "YKL125W"; gene_name "RRN3"; transcript_biotype "protein_coding"; +chrXI SGD exon 208156 210294 . + . transcript_id "YKL125W_id003"; gene_id "YKL125W"; gene_name "RRN3"; +chrXI SGD transcript 208247 210130 . + . transcript_id "YKL125W_id001"; gene_id "YKL125W"; gene_name "RRN3"; transcript_biotype "protein_coding"; +chrXI SGD exon 208247 210130 . + 0 transcript_id "YKL125W_id001"; gene_name "RRN3"; gene_id "YKL125W"; +chrXI SGD gene 210593 212332 . + . gene_id "YKL124W"; gene_biotype "protein_coding"; +chrXI SGD transcript 210593 212332 . + . transcript_id "YKL124W_id001"; gene_id "YKL124W"; gene_name "SSH4"; transcript_biotype "protein_coding"; +chrXI SGD exon 210593 212332 . + 0 transcript_id "YKL124W_id001"; gene_name "SSH4"; gene_id "YKL124W"; +chrXI SGD gene 210912 212510 . + . gene_id "YKL123W"; gene_biotype "protein_coding"; +chrXI SGD transcript 210912 212510 . + . transcript_id "YKL123W_id001"; gene_id "YKL123W"; transcript_biotype "protein_coding"; +chrXI SGD exon 210912 212510 . + . transcript_id "YKL123W_id001"; gene_id "YKL123W"; +chrXI SGD transcript 212043 212423 . + . transcript_id "YKL123W_id002"; gene_id "YKL123W"; transcript_biotype "protein_coding"; +chrXI SGD exon 212043 212423 . + 0 transcript_id "YKL123W_id002"; gene_id "YKL123W"; +chrXI SGD gene 212332 213050 . - . gene_id "YKL122C"; gene_biotype "protein_coding"; +chrXI SGD transcript 212332 213050 . - . transcript_id "YKL122C_id003"; gene_id "YKL122C"; gene_name "SRP21"; transcript_biotype "protein_coding"; +chrXI SGD exon 212332 213050 . - . transcript_id "YKL122C_id003"; gene_id "YKL122C"; gene_name "SRP21"; +chrXI SGD transcript 212495 212998 . - . transcript_id "YKL122C_id001"; gene_id "YKL122C"; gene_name "SRP21"; transcript_biotype "protein_coding"; +chrXI SGD exon 212495 212998 . - 0 transcript_id "YKL122C_id001"; gene_name "SRP21"; gene_id "YKL122C"; +chrXI SGD gene 213880 216832 . + . gene_id "YKL121W"; gene_biotype "protein_coding"; +chrXI SGD transcript 213880 216832 . + . transcript_id "YKL121W_id002"; gene_id "YKL121W"; gene_name "DGR2"; transcript_biotype "protein_coding"; +chrXI SGD exon 213880 216832 . + . transcript_id "YKL121W_id002"; gene_id "YKL121W"; gene_name "DGR2"; +chrXI SGD transcript 214142 216700 . + . transcript_id "YKL121W_id001"; gene_id "YKL121W"; gene_name "DGR2"; transcript_biotype "protein_coding"; +chrXI SGD exon 214142 216700 . + 0 transcript_id "YKL121W_id001"; gene_name "DGR2"; gene_id "YKL121W"; +chrXI SGD gene 217181 218508 . + . gene_id "YKL120W"; gene_biotype "protein_coding"; +chrXI SGD transcript 217181 218508 . + . transcript_id "YKL120W_id004"; gene_id "YKL120W"; gene_name "OAC1"; transcript_biotype "protein_coding"; +chrXI SGD exon 217181 218508 . + . transcript_id "YKL120W_id004"; gene_id "YKL120W"; gene_name "OAC1"; +chrXI SGD transcript 217344 218318 . + . transcript_id "YKL120W_id001"; gene_id "YKL120W"; gene_name "OAC1"; transcript_biotype "protein_coding"; +chrXI SGD exon 217344 218318 . + 0 transcript_id "YKL120W_id001"; gene_name "OAC1"; gene_id "YKL120W"; +chrXI SGD gene 218429 219335 . - . gene_id "YKL119C"; gene_biotype "protein_coding"; +chrXI SGD transcript 218429 219335 . - . transcript_id "YKL119C_id001"; gene_id "YKL119C"; gene_name "VPH2"; transcript_biotype "protein_coding"; +chrXI SGD exon 218429 219335 . - . transcript_id "YKL119C_id001"; gene_id "YKL119C"; gene_name "VPH2"; +chrXI SGD transcript 218570 219217 . - . transcript_id "YKL119C_id002"; gene_id "YKL119C"; gene_name "VPH2"; transcript_biotype "protein_coding"; +chrXI SGD exon 218570 219217 . - 0 transcript_id "YKL119C_id002"; gene_name "VPH2"; gene_id "YKL119C"; +chrXI SGD gene 219126 219437 . + . gene_id "YKL118W"; gene_biotype "protein_coding"; +chrXI SGD transcript 219126 219437 . + . transcript_id "YKL118W_mRNA"; gene_id "YKL118W"; transcript_biotype "protein_coding"; +chrXI SGD CDS 219126 219437 . + 0 transcript_id "YKL118W_mRNA"; gene_id "YKL118W"; +chrXI SGD gene 219895 219967 . + . gene_id "YNCK0008W"; gene_biotype "ncRNA"; +chrXI SGD transcript 219895 219967 . + . transcript_id "YNCK0008W_tRNA"; gene_id "YNCK0008W"; transcript_biotype "ncRNA"; +chrXI SGD exon 219895 219967 . + . transcript_id "YNCK0008W_tRNA"; gene_id "YNCK0008W"; +chrXI SGD gene 220293 221266 . + . gene_id "YKL117W"; gene_biotype "protein_coding"; +chrXI SGD transcript 220293 221266 . + . transcript_id "YKL117W_id002"; gene_id "YKL117W"; gene_name "SBA1"; transcript_biotype "protein_coding"; +chrXI SGD exon 220293 221266 . + . transcript_id "YKL117W_id002"; gene_id "YKL117W"; gene_name "SBA1"; +chrXI SGD transcript 220324 220974 . + . transcript_id "YKL117W_id001"; gene_id "YKL117W"; gene_name "SBA1"; transcript_biotype "protein_coding"; +chrXI SGD exon 220324 220974 . + 0 transcript_id "YKL117W_id001"; gene_name "SBA1"; gene_id "YKL117W"; +chrXI SGD gene 221067 223130 . - . gene_id "YKL116C"; gene_biotype "protein_coding"; +chrXI SGD transcript 221067 223130 . - . transcript_id "YKL116C_id002"; gene_id "YKL116C"; gene_name "PRR1"; transcript_biotype "protein_coding"; +chrXI SGD exon 221067 223130 . - . transcript_id "YKL116C_id002"; gene_id "YKL116C"; gene_name "PRR1"; +chrXI SGD transcript 221344 222900 . - . transcript_id "YKL116C_id001"; gene_id "YKL116C"; gene_name "PRR1"; transcript_biotype "protein_coding"; +chrXI SGD exon 221344 222900 . - 0 transcript_id "YKL116C_id001"; gene_name "PRR1"; gene_id "YKL116C"; +chrXI SGD gene 222893 223285 . - . gene_id "YKL115C"; gene_biotype "protein_coding"; +chrXI SGD transcript 222893 223285 . - . transcript_id "YKL115C_mRNA"; gene_id "YKL115C"; transcript_biotype "protein_coding"; +chrXI SGD CDS 222893 223285 . - 0 transcript_id "YKL115C_mRNA"; gene_id "YKL115C"; +chrXI SGD gene 223243 224526 . - . gene_id "YKL114C"; gene_biotype "protein_coding"; +chrXI SGD transcript 223243 224526 . - . transcript_id "YKL114C_id001"; gene_id "YKL114C"; gene_name "APN1"; transcript_biotype "protein_coding"; +chrXI SGD exon 223243 224526 . - . transcript_id "YKL114C_id001"; gene_id "YKL114C"; gene_name "APN1"; +chrXI SGD transcript 223352 224455 . - . transcript_id "YKL114C_id004"; gene_id "YKL114C"; gene_name "APN1"; transcript_biotype "protein_coding"; +chrXI SGD exon 223352 224455 . - 0 transcript_id "YKL114C_id004"; gene_name "APN1"; gene_id "YKL114C"; +chrXI SGD gene 224601 225937 . - . gene_id "YKL113C"; gene_biotype "protein_coding"; +chrXI SGD transcript 224601 225937 . - . transcript_id "YKL113C_id001"; gene_id "YKL113C"; gene_name "RAD27"; transcript_biotype "protein_coding"; +chrXI SGD exon 224601 225937 . - . transcript_id "YKL113C_id001"; gene_id "YKL113C"; gene_name "RAD27"; +chrXI SGD transcript 224727 225875 . - . transcript_id "YKL113C_id002"; gene_id "YKL113C"; gene_name "RAD27"; transcript_biotype "protein_coding"; +chrXI SGD exon 224727 225875 . - 0 transcript_id "YKL113C_id002"; gene_name "RAD27"; gene_id "YKL113C"; +chrXI SGD gene 226389 228907 . + . gene_id "YKL112W"; gene_biotype "protein_coding"; +chrXI SGD transcript 226389 228907 . + . transcript_id "YKL112W_id005"; gene_id "YKL112W"; gene_name "ABF1"; transcript_biotype "protein_coding"; +chrXI SGD exon 226389 228907 . + . transcript_id "YKL112W_id005"; gene_id "YKL112W"; gene_name "ABF1"; +chrXI SGD transcript 226570 228765 . + . transcript_id "YKL112W_id001"; gene_id "YKL112W"; gene_name "ABF1"; transcript_biotype "protein_coding"; +chrXI SGD exon 226570 228765 . + 0 transcript_id "YKL112W_id001"; gene_name "ABF1"; gene_id "YKL112W"; +chrXI SGD gene 228464 228799 . - . gene_id "YKL111C"; gene_biotype "protein_coding"; +chrXI SGD transcript 228464 228799 . - . transcript_id "YKL111C_mRNA"; gene_id "YKL111C"; transcript_biotype "protein_coding"; +chrXI SGD CDS 228464 228799 . - 0 transcript_id "YKL111C_mRNA"; gene_id "YKL111C"; +chrXI SGD gene 228797 230370 . - . gene_id "YKL110C"; gene_biotype "protein_coding"; +chrXI SGD transcript 228797 230370 . - . transcript_id "YKL110C_id002"; gene_id "YKL110C"; gene_name "KTI12"; transcript_biotype "protein_coding"; +chrXI SGD exon 228797 230370 . - . transcript_id "YKL110C_id002"; gene_id "YKL110C"; gene_name "KTI12"; +chrXI SGD transcript 228939 229880 . - . transcript_id "YKL110C_id001"; gene_id "YKL110C"; gene_name "KTI12"; transcript_biotype "protein_coding"; +chrXI SGD exon 228939 229880 . - 0 transcript_id "YKL110C_id001"; gene_name "KTI12"; gene_id "YKL110C"; +chrXI SGD gene 231956 234251 . + . gene_id "YKL109W"; gene_biotype "protein_coding"; +chrXI SGD transcript 231956 234251 . + . transcript_id "YKL109W_id005"; gene_id "YKL109W"; gene_name "HAP4"; transcript_biotype "protein_coding"; +chrXI SGD exon 231956 234251 . + . transcript_id "YKL109W_id005"; gene_id "YKL109W"; gene_name "HAP4"; +chrXI SGD transcript 232227 233891 . + . transcript_id "YKL109W_id001"; gene_id "YKL109W"; gene_name "HAP4"; transcript_biotype "protein_coding"; +chrXI SGD exon 232227 233891 . + 0 transcript_id "YKL109W_id001"; gene_name "HAP4"; gene_id "YKL109W"; +chrXI SGD gene 234232 235854 . + . gene_id "YKL108W"; gene_biotype "protein_coding"; +chrXI SGD transcript 234232 235854 . + . transcript_id "YKL108W_id002"; gene_id "YKL108W"; gene_name "SLD2"; transcript_biotype "protein_coding"; +chrXI SGD exon 234232 235854 . + . transcript_id "YKL108W_id002"; gene_id "YKL108W"; gene_name "SLD2"; +chrXI SGD transcript 234426 235787 . + . transcript_id "YKL108W_id001"; gene_id "YKL108W"; gene_name "SLD2"; transcript_biotype "protein_coding"; +chrXI SGD exon 234426 235787 . + 0 transcript_id "YKL108W_id001"; gene_name "SLD2"; gene_id "YKL108W"; +chrXI SGD gene 236107 237211 . + . gene_id "YKL107W"; gene_biotype "protein_coding"; +chrXI SGD transcript 236107 237211 . + . transcript_id "YKL107W_id005"; gene_id "YKL107W"; transcript_biotype "protein_coding"; +chrXI SGD exon 236107 237211 . + . transcript_id "YKL107W_id005"; gene_id "YKL107W"; +chrXI SGD transcript 236141 237070 . + . transcript_id "YKL107W_id001"; gene_id "YKL107W"; transcript_biotype "protein_coding"; +chrXI SGD exon 236141 237070 . + 0 transcript_id "YKL107W_id001"; gene_id "YKL107W"; +chrXI SGD gene 237147 237266 . - . gene_id "YKL106C-A"; gene_biotype "protein_coding"; +chrXI SGD transcript 237147 237266 . - . transcript_id "YKL106C-A_id001"; gene_id "YKL106C-A"; transcript_biotype "protein_coding"; +chrXI SGD exon 237147 237266 . - 0 transcript_id "YKL106C-A_id001"; gene_id "YKL106C-A"; +chrXI SGD gene 237436 239066 . + . gene_id "YKL106W"; gene_biotype "protein_coding"; +chrXI SGD transcript 237436 239066 . + . transcript_id "YKL106W_id001"; gene_id "YKL106W"; gene_name "AAT1"; transcript_biotype "protein_coding"; +chrXI SGD exon 237436 239066 . + . transcript_id "YKL106W_id001"; gene_id "YKL106W"; gene_name "AAT1"; +chrXI SGD transcript 237536 238891 . + . transcript_id "YKL106W_id002"; gene_id "YKL106W"; gene_name "AAT1"; transcript_biotype "protein_coding"; +chrXI SGD exon 237536 238891 . + 0 transcript_id "YKL106W_id002"; gene_name "AAT1"; gene_id "YKL106W"; +chrXI SGD gene 239185 242583 . - . gene_id "YKL105C"; gene_biotype "protein_coding"; +chrXI SGD transcript 239185 242583 . - . transcript_id "YKL105C_id001"; gene_id "YKL105C"; gene_name "SEG2"; transcript_biotype "protein_coding"; +chrXI SGD exon 239185 242583 . - 0 transcript_id "YKL105C_id001"; gene_name "SEG2"; gene_id "YKL105C"; +chrXI SGD gene 242940 245575 . - . gene_id "YKL104C"; gene_biotype "protein_coding"; +chrXI SGD transcript 242940 245575 . - . transcript_id "YKL104C_id001"; gene_id "YKL104C"; gene_name "GFA1"; transcript_biotype "protein_coding"; +chrXI SGD exon 242940 245575 . - . transcript_id "YKL104C_id001"; gene_id "YKL104C"; gene_name "GFA1"; +chrXI SGD transcript 243220 245373 . - . transcript_id "YKL104C_id003"; gene_id "YKL104C"; gene_name "GFA1"; transcript_biotype "protein_coding"; +chrXI SGD exon 243220 245373 . - 0 transcript_id "YKL104C_id003"; gene_name "GFA1"; gene_id "YKL104C"; +chrXI SGD gene 245032 245286 . + . gene_id "YKL104W-A"; gene_biotype "protein_coding"; +chrXI SGD transcript 245032 245286 . + . transcript_id "YKL104W-A_mRNA"; gene_id "YKL104W-A"; transcript_biotype "protein_coding"; +chrXI SGD CDS 245032 245286 . + 0 transcript_id "YKL104W-A_mRNA"; gene_id "YKL104W-A"; +chrXI SGD gene 245947 248137 . - . gene_id "YKL103C"; gene_biotype "protein_coding"; +chrXI SGD transcript 245947 248137 . - . transcript_id "YKL103C_id003"; gene_id "YKL103C"; gene_name "APE1"; transcript_biotype "protein_coding"; +chrXI SGD exon 245947 248137 . - . transcript_id "YKL103C_id003"; gene_id "YKL103C"; gene_name "APE1"; +chrXI SGD transcript 246138 247682 . - . transcript_id "YKL103C_id001"; gene_id "YKL103C"; gene_name "APE1"; transcript_biotype "protein_coding"; +chrXI SGD exon 246138 247682 . - 0 transcript_id "YKL103C_id001"; gene_name "APE1"; gene_id "YKL103C"; +chrXI SGD gene 248062 248367 . - . gene_id "YKL102C"; gene_biotype "protein_coding"; +chrXI SGD transcript 248062 248367 . - . transcript_id "YKL102C_id001"; gene_id "YKL102C"; transcript_biotype "protein_coding"; +chrXI SGD exon 248062 248367 . - 0 transcript_id "YKL102C_id001"; gene_id "YKL102C"; +chrXI SGD gene 248920 253476 . + . gene_id "YKL101W"; gene_biotype "protein_coding"; +chrXI SGD transcript 248920 253476 . + . transcript_id "YKL101W_mRNA"; gene_id "YKL101W"; gene_name "HSL1"; transcript_biotype "protein_coding"; +chrXI SGD CDS 248920 253476 . + 0 transcript_id "YKL101W_mRNA"; gene_name "HSL1"; gene_id "YKL101W"; +chrXI SGD gene 253448 255533 . - . gene_id "YKL100C"; gene_biotype "protein_coding"; +chrXI SGD transcript 253448 255533 . - . transcript_id "YKL100C_id001"; gene_id "YKL100C"; gene_name "YPF1"; transcript_biotype "protein_coding"; +chrXI SGD exon 253448 255533 . - . transcript_id "YKL100C_id001"; gene_id "YKL100C"; gene_name "YPF1"; +chrXI SGD transcript 253697 255460 . - . transcript_id "YKL100C_id002"; gene_id "YKL100C"; gene_name "YPF1"; transcript_biotype "protein_coding"; +chrXI SGD exon 253697 255460 . - 0 transcript_id "YKL100C_id002"; gene_name "YPF1"; gene_id "YKL100C"; +chrXI SGD gene 254159 254248 . + . gene_id "YKL100W-A"; gene_biotype "protein_coding"; +chrXI SGD transcript 254159 254248 . + . transcript_id "YKL100W-A_mRNA"; gene_id "YKL100W-A"; transcript_biotype "protein_coding"; +chrXI SGD CDS 254159 254248 . + 0 transcript_id "YKL100W-A_mRNA"; gene_id "YKL100W-A"; +chrXI SGD gene 255531 256553 . - . gene_id "YKL099C"; gene_biotype "protein_coding"; +chrXI SGD transcript 255531 256553 . - . transcript_id "YKL099C_id001"; gene_id "YKL099C"; gene_name "UTP11"; transcript_biotype "protein_coding"; +chrXI SGD exon 255531 256553 . - . transcript_id "YKL099C_id001"; gene_id "YKL099C"; gene_name "UTP11"; +chrXI SGD transcript 255720 256472 . - . transcript_id "YKL099C_id003"; gene_id "YKL099C"; gene_name "UTP11"; transcript_biotype "protein_coding"; +chrXI SGD exon 255720 256472 . - 0 transcript_id "YKL099C_id003"; gene_name "UTP11"; gene_id "YKL099C"; +chrXI SGD gene 256736 258060 . + . gene_id "YKL098W"; gene_biotype "protein_coding"; +chrXI SGD transcript 256736 258060 . + . transcript_id "YKL098W_id003"; gene_id "YKL098W"; gene_name "MTC2"; transcript_biotype "protein_coding"; +chrXI SGD exon 256736 258060 . + . transcript_id "YKL098W_id003"; gene_id "YKL098W"; gene_name "MTC2"; +chrXI SGD transcript 256770 257843 . + . transcript_id "YKL098W_id001"; gene_id "YKL098W"; gene_name "MTC2"; transcript_biotype "protein_coding"; +chrXI SGD exon 256770 257843 . + 0 transcript_id "YKL098W_id001"; gene_name "MTC2"; gene_id "YKL098W"; +chrXI SGD gene 258503 258913 . - . gene_id "YKL097C"; gene_biotype "protein_coding"; +chrXI SGD transcript 258503 258913 . - . transcript_id "YKL097C_id001"; gene_id "YKL097C"; transcript_biotype "protein_coding"; +chrXI SGD exon 258503 258913 . - 0 transcript_id "YKL097C_id001"; gene_id "YKL097C"; +chrXI SGD gene 259073 259222 . - . gene_id "YKL096C-B"; gene_biotype "protein_coding"; +chrXI SGD transcript 259073 259222 . - . transcript_id "YKL096C-B_mRNA"; gene_id "YKL096C-B"; transcript_biotype "protein_coding"; +chrXI SGD CDS 259073 259222 . - 0 transcript_id "YKL096C-B_mRNA"; gene_id "YKL096C-B"; +chrXI SGD gene 259205 259807 . + . gene_id "YKL096W-A"; gene_biotype "protein_coding"; +chrXI SGD transcript 259205 259807 . + . transcript_id "YKL096W-A_id003"; gene_id "YKL096W-A"; gene_name "CWP2"; transcript_biotype "protein_coding"; +chrXI SGD exon 259205 259807 . + . transcript_id "YKL096W-A_id003"; gene_id "YKL096W-A"; gene_name "CWP2"; +chrXI SGD transcript 259253 259531 . + . transcript_id "YKL096W-A_id001"; gene_id "YKL096W-A"; gene_name "CWP2"; transcript_biotype "protein_coding"; +chrXI SGD exon 259253 259531 . + 0 transcript_id "YKL096W-A_id001"; gene_name "CWP2"; gene_id "YKL096W-A"; +chrXI SGD gene 259300 261945 . + . gene_id "YKL096W"; gene_biotype "protein_coding"; +chrXI SGD transcript 259300 261945 . + . transcript_id "YKL096W_id001"; gene_id "YKL096W"; gene_name "CWP1"; transcript_biotype "protein_coding"; +chrXI SGD exon 259300 261945 . + . transcript_id "YKL096W_id001"; gene_id "YKL096W"; gene_name "CWP1"; +chrXI SGD transcript 261132 261851 . + . transcript_id "YKL096W_id002"; gene_id "YKL096W"; gene_name "CWP1"; transcript_biotype "protein_coding"; +chrXI SGD exon 261132 261851 . + 0 transcript_id "YKL096W_id002"; gene_name "CWP1"; gene_id "YKL096W"; +chrXI SGD gene 262277 263113 . + . gene_id "YKL095W"; gene_biotype "protein_coding"; +chrXI SGD transcript 262277 263113 . + . transcript_id "YKL095W_mRNA"; gene_id "YKL095W"; gene_name "YJU2"; transcript_biotype "protein_coding"; +chrXI SGD CDS 262277 263113 . + 0 transcript_id "YKL095W_mRNA"; gene_name "YJU2"; gene_id "YKL095W"; +chrXI SGD gene 262315 264379 . + . gene_id "YKL094W"; gene_biotype "protein_coding"; +chrXI SGD transcript 262315 264379 . + . transcript_id "YKL094W_id001"; gene_id "YKL094W"; gene_name "YJU3"; transcript_biotype "protein_coding"; +chrXI SGD exon 262315 264379 . + . transcript_id "YKL094W_id001"; gene_id "YKL094W"; gene_name "YJU3"; +chrXI SGD transcript 263349 264290 . + . transcript_id "YKL094W_id002"; gene_id "YKL094W"; gene_name "YJU3"; transcript_biotype "protein_coding"; +chrXI SGD exon 263349 264290 . + 0 transcript_id "YKL094W_id002"; gene_name "YJU3"; gene_id "YKL094W"; +chrXI SGD gene 264723 265969 . + . gene_id "YKL093W"; gene_biotype "protein_coding"; +chrXI SGD transcript 264723 265969 . + . transcript_id "YKL093W_id044"; gene_id "YKL093W"; gene_name "MBR1"; transcript_biotype "protein_coding"; +chrXI SGD exon 264723 265969 . + . transcript_id "YKL093W_id044"; gene_id "YKL093W"; gene_name "MBR1"; +chrXI SGD transcript 264789 265808 . + . transcript_id "YKL093W_id001"; gene_id "YKL093W"; gene_name "MBR1"; transcript_biotype "protein_coding"; +chrXI SGD exon 264789 265808 . + 0 transcript_id "YKL093W_id001"; gene_name "MBR1"; gene_id "YKL093W"; +chrXI SGD gene 266145 269459 . - . gene_id "YKL092C"; gene_biotype "protein_coding"; +chrXI SGD transcript 266145 269459 . - . transcript_id "YKL092C_id001"; gene_id "YKL092C"; gene_name "BUD2"; transcript_biotype "protein_coding"; +chrXI SGD exon 266145 269459 . - 0 transcript_id "YKL092C_id001"; gene_name "BUD2"; gene_id "YKL092C"; +chrXI SGD gene 269619 270689 . - . gene_id "YKL091C"; gene_biotype "protein_coding"; +chrXI SGD transcript 269619 270689 . - . transcript_id "YKL091C_id007"; gene_id "YKL091C"; transcript_biotype "protein_coding"; +chrXI SGD exon 269619 270689 . - . transcript_id "YKL091C_id007"; gene_id "YKL091C"; +chrXI SGD transcript 269718 270650 . - . transcript_id "YKL091C_id001"; gene_id "YKL091C"; transcript_biotype "protein_coding"; +chrXI SGD exon 269718 270650 . - 0 transcript_id "YKL091C_id001"; gene_id "YKL091C"; +chrXI SGD gene 271838 273397 . + . gene_id "YKL090W"; gene_biotype "protein_coding"; +chrXI SGD transcript 271838 273397 . + . transcript_id "YKL090W_id003"; gene_id "YKL090W"; gene_name "CUE2"; transcript_biotype "protein_coding"; +chrXI SGD exon 271838 273397 . + . transcript_id "YKL090W_id003"; gene_id "YKL090W"; gene_name "CUE2"; +chrXI SGD transcript 271878 273209 . + . transcript_id "YKL090W_id001"; gene_id "YKL090W"; gene_name "CUE2"; transcript_biotype "protein_coding"; +chrXI SGD exon 271878 273209 . + 0 transcript_id "YKL090W_id001"; gene_name "CUE2"; gene_id "YKL090W"; +chrXI SGD gene 273375 275272 . + . gene_id "YKL089W"; gene_biotype "protein_coding"; +chrXI SGD transcript 273375 275272 . + . transcript_id "YKL089W_id002"; gene_id "YKL089W"; gene_name "MIF2"; transcript_biotype "protein_coding"; +chrXI SGD exon 273375 275272 . + . transcript_id "YKL089W_id002"; gene_id "YKL089W"; gene_name "MIF2"; +chrXI SGD transcript 273394 275043 . + . transcript_id "YKL089W_id001"; gene_id "YKL089W"; gene_name "MIF2"; transcript_biotype "protein_coding"; +chrXI SGD exon 273394 275043 . + 0 transcript_id "YKL089W_id001"; gene_name "MIF2"; gene_id "YKL089W"; +chrXI SGD gene 275222 277208 . + . gene_id "YKL088W"; gene_biotype "protein_coding"; +chrXI SGD transcript 275222 277208 . + . transcript_id "YKL088W_id002"; gene_id "YKL088W"; gene_name "CAB3"; transcript_biotype "protein_coding"; +chrXI SGD exon 275222 277208 . + . transcript_id "YKL088W_id002"; gene_id "YKL088W"; gene_name "CAB3"; +chrXI SGD transcript 275283 276998 . + . transcript_id "YKL088W_id001"; gene_id "YKL088W"; gene_name "CAB3"; transcript_biotype "protein_coding"; +chrXI SGD exon 275283 276998 . + 0 transcript_id "YKL088W_id001"; gene_name "CAB3"; gene_id "YKL088W"; +chrXI SGD gene 276972 277966 . - . gene_id "YKL087C"; gene_biotype "protein_coding"; +chrXI SGD transcript 276972 277966 . - . transcript_id "YKL087C_id007"; gene_id "YKL087C"; gene_name "CYT2"; transcript_biotype "protein_coding"; +chrXI SGD exon 276972 277966 . - . transcript_id "YKL087C_id007"; gene_id "YKL087C"; gene_name "CYT2"; +chrXI SGD transcript 277189 277863 . - . transcript_id "YKL087C_id001"; gene_id "YKL087C"; gene_name "CYT2"; transcript_biotype "protein_coding"; +chrXI SGD exon 277189 277863 . - 0 transcript_id "YKL087C_id001"; gene_name "CYT2"; gene_id "YKL087C"; +chrXI SGD gene 278255 278839 . + . gene_id "YKL086W"; gene_biotype "protein_coding"; +chrXI SGD transcript 278255 278839 . + . transcript_id "YKL086W_id001"; gene_id "YKL086W"; gene_name "SRX1"; transcript_biotype "protein_coding"; +chrXI SGD exon 278255 278839 . + . transcript_id "YKL086W_id001"; gene_id "YKL086W"; gene_name "SRX1"; +chrXI SGD transcript 278281 278664 . + . transcript_id "YKL086W_id002"; gene_id "YKL086W"; gene_name "SRX1"; transcript_biotype "protein_coding"; +chrXI SGD exon 278281 278664 . + 0 transcript_id "YKL086W_id002"; gene_name "SRX1"; gene_id "YKL086W"; +chrXI SGD gene 278731 280519 . + . gene_id "YKL085W"; gene_biotype "protein_coding"; +chrXI SGD transcript 278731 280519 . + . transcript_id "YKL085W_id004"; gene_id "YKL085W"; gene_name "MDH1"; transcript_biotype "protein_coding"; +chrXI SGD exon 278731 280519 . + . transcript_id "YKL085W_id004"; gene_id "YKL085W"; gene_name "MDH1"; +chrXI SGD transcript 279123 280127 . + . transcript_id "YKL085W_id001"; gene_id "YKL085W"; gene_name "MDH1"; transcript_biotype "protein_coding"; +chrXI SGD exon 279123 280127 . + 0 transcript_id "YKL085W_id001"; gene_name "MDH1"; gene_id "YKL085W"; +chrXI SGD gene 280414 281023 . + . gene_id "YKL084W"; gene_biotype "protein_coding"; +chrXI SGD transcript 280414 281023 . + . transcript_id "YKL084W_id001"; gene_id "YKL084W"; gene_name "HOT13"; transcript_biotype "protein_coding"; +chrXI SGD exon 280414 281023 . + . transcript_id "YKL084W_id001"; gene_id "YKL084W"; gene_name "HOT13"; +chrXI SGD transcript 280509 280859 . + . transcript_id "YKL084W_id007"; gene_id "YKL084W"; gene_name "HOT13"; transcript_biotype "protein_coding"; +chrXI SGD exon 280509 280859 . + 0 transcript_id "YKL084W_id007"; gene_name "HOT13"; gene_id "YKL084W"; +chrXI SGD gene 280848 282376 . - . gene_id "YKL082C"; gene_biotype "protein_coding"; +chrXI SGD transcript 280848 282376 . - . transcript_id "YKL082C_id001"; gene_id "YKL082C"; gene_name "RRP14"; transcript_biotype "protein_coding"; +chrXI SGD exon 280848 282376 . - . transcript_id "YKL082C_id001"; gene_id "YKL082C"; gene_name "RRP14"; +chrXI SGD gene 280921 281535 . + . gene_id "YKL083W"; gene_biotype "protein_coding"; +chrXI SGD transcript 280921 281535 . + . transcript_id "YKL083W_mRNA"; gene_id "YKL083W"; transcript_biotype "protein_coding"; +chrXI SGD CDS 280921 281535 . + 0 transcript_id "YKL083W_mRNA"; gene_id "YKL083W"; +chrXI SGD transcript 281025 282329 . - . transcript_id "YKL082C_id002"; gene_id "YKL082C"; gene_name "RRP14"; transcript_biotype "protein_coding"; +chrXI SGD exon 281025 282329 . - 0 transcript_id "YKL082C_id002"; gene_name "RRP14"; gene_id "YKL082C"; +chrXI SGD gene 282812 284695 . + . gene_id "YKL081W"; gene_biotype "protein_coding"; +chrXI SGD transcript 282812 284695 . + . transcript_id "YKL081W_id004"; gene_id "YKL081W"; gene_name "TEF4"; transcript_biotype "protein_coding"; +chrXI SGD exon 282812 284695 . + . transcript_id "YKL081W_id004"; gene_id "YKL081W"; gene_name "TEF4"; +chrXI SGD transcript 282891 284455 . + . transcript_id "YKL081W_id001"; gene_id "YKL081W"; gene_name "TEF4"; transcript_biotype "protein_coding"; +chrXI SGD exon 282891 283095 . + 0 transcript_id "YKL081W_id001"; gene_name "TEF4"; gene_id "YKL081W"; +chrXI SGD exon 283422 284455 . + 2 transcript_id "YKL081W_id001"; gene_name "TEF4"; gene_id "YKL081W"; +chrXI SGD gene 283185 283279 . + . gene_id "YNCK0009W"; gene_biotype "ncRNA"; +chrXI SGD transcript 283185 283279 . + . transcript_id "YNCK0009W_snoRNA"; gene_id "YNCK0009W"; gene_name "SNR38"; transcript_biotype "ncRNA"; +chrXI SGD exon 283185 283279 . + . transcript_id "YNCK0009W_snoRNA"; gene_name "SNR38"; gene_id "YNCK0009W"; +chrXI SGD gene 284901 286336 . + . gene_id "YKL080W"; gene_biotype "protein_coding"; +chrXI SGD transcript 284901 286336 . + . transcript_id "YKL080W_id001"; gene_id "YKL080W"; gene_name "VMA5"; transcript_biotype "protein_coding"; +chrXI SGD exon 284901 286336 . + . transcript_id "YKL080W_id001"; gene_id "YKL080W"; gene_name "VMA5"; +chrXI SGD transcript 285030 286208 . + . transcript_id "YKL080W_id002"; gene_id "YKL080W"; gene_name "VMA5"; transcript_biotype "protein_coding"; +chrXI SGD exon 285030 286208 . + 0 transcript_id "YKL080W_id002"; gene_name "VMA5"; gene_id "YKL080W"; +chrXI SGD gene 286526 288646 . + . gene_id "YKL079W"; gene_biotype "protein_coding"; +chrXI SGD transcript 286526 288646 . + . transcript_id "YKL079W_id003"; gene_id "YKL079W"; gene_name "SMY1"; transcript_biotype "protein_coding"; +chrXI SGD exon 286526 288646 . + . transcript_id "YKL079W_id003"; gene_id "YKL079W"; gene_name "SMY1"; +chrXI SGD transcript 286603 288573 . + . transcript_id "YKL079W_id001"; gene_id "YKL079W"; gene_name "SMY1"; transcript_biotype "protein_coding"; +chrXI SGD exon 286603 288573 . + 0 transcript_id "YKL079W_id001"; gene_name "SMY1"; gene_id "YKL079W"; +chrXI SGD gene 288812 291156 . + . gene_id "YKL078W"; gene_biotype "protein_coding"; +chrXI SGD transcript 288812 291156 . + . transcript_id "YKL078W_id001"; gene_id "YKL078W"; gene_name "DHR2"; transcript_biotype "protein_coding"; +chrXI SGD exon 288812 291156 . + . transcript_id "YKL078W_id001"; gene_id "YKL078W"; gene_name "DHR2"; +chrXI SGD transcript 288845 291052 . + . transcript_id "YKL078W_id002"; gene_id "YKL078W"; gene_name "DHR2"; transcript_biotype "protein_coding"; +chrXI SGD exon 288845 291052 . + 0 transcript_id "YKL078W_id002"; gene_name "DHR2"; gene_id "YKL078W"; +chrXI SGD gene 291340 292965 . + . gene_id "YKL077W"; gene_biotype "protein_coding"; +chrXI SGD transcript 291340 292965 . + . transcript_id "YKL077W_id001"; gene_id "YKL077W"; gene_name "PSG1"; transcript_biotype "protein_coding"; +chrXI SGD exon 291340 292965 . + . transcript_id "YKL077W_id001"; gene_id "YKL077W"; gene_name "PSG1"; +chrXI SGD transcript 291453 292631 . + . transcript_id "YKL077W_id005"; gene_id "YKL077W"; gene_name "PSG1"; transcript_biotype "protein_coding"; +chrXI SGD exon 291453 292631 . + 0 transcript_id "YKL077W_id005"; gene_name "PSG1"; gene_id "YKL077W"; +chrXI SGD gene 292757 294260 . - . gene_id "YKL076C"; gene_biotype "protein_coding"; +chrXI SGD transcript 292757 294260 . - . transcript_id "YKL076C_id001"; gene_id "YKL076C"; gene_name "PSY1"; transcript_biotype "protein_coding"; +chrXI SGD exon 292757 294260 . - . transcript_id "YKL076C_id001"; gene_id "YKL076C"; gene_name "PSY1"; +chrXI SGD transcript 292838 293221 . - . transcript_id "YKL076C_id006"; gene_id "YKL076C"; gene_name "PSY1"; transcript_biotype "protein_coding"; +chrXI SGD exon 292838 293221 . - 0 transcript_id "YKL076C_id006"; gene_name "PSY1"; gene_id "YKL076C"; +chrXI SGD gene 292956 294308 . - . gene_id "YKL075C"; gene_biotype "protein_coding"; +chrXI SGD transcript 292956 294308 . - . transcript_id "YKL075C_mRNA"; gene_id "YKL075C"; gene_name "AAN1"; transcript_biotype "protein_coding"; +chrXI SGD CDS 292956 294308 . - 0 transcript_id "YKL075C_mRNA"; gene_name "AAN1"; gene_id "YKL075C"; +chrXI SGD gene 294501 296201 . - . gene_id "YKL074C"; gene_biotype "protein_coding"; +chrXI SGD transcript 294501 296201 . - . transcript_id "YKL074C_id002"; gene_id "YKL074C"; gene_name "MUD2"; transcript_biotype "protein_coding"; +chrXI SGD exon 294501 296201 . - . transcript_id "YKL074C_id002"; gene_id "YKL074C"; gene_name "MUD2"; +chrXI SGD transcript 294610 296193 . - . transcript_id "YKL074C_id001"; gene_id "YKL074C"; gene_name "MUD2"; transcript_biotype "protein_coding"; +chrXI SGD exon 294610 296193 . - 0 transcript_id "YKL074C_id001"; gene_name "MUD2"; gene_id "YKL074C"; +chrXI SGD gene 296353 299166 . + . gene_id "YKL073W"; gene_biotype "protein_coding"; +chrXI SGD transcript 296353 299166 . + . transcript_id "YKL073W_id001"; gene_id "YKL073W"; gene_name "LHS1"; transcript_biotype "protein_coding"; +chrXI SGD exon 296353 299166 . + . transcript_id "YKL073W_id001"; gene_id "YKL073W"; gene_name "LHS1"; +chrXI SGD transcript 296430 299075 . + . transcript_id "YKL073W_id007"; gene_id "YKL073W"; gene_name "LHS1"; transcript_biotype "protein_coding"; +chrXI SGD exon 296430 299075 . + 0 transcript_id "YKL073W_id007"; gene_name "LHS1"; gene_id "YKL073W"; +chrXI SGD gene 299344 302018 . + . gene_id "YKL072W"; gene_biotype "protein_coding"; +chrXI SGD transcript 299344 302018 . + . transcript_id "YKL072W_id001"; gene_id "YKL072W"; gene_name "STB6"; transcript_biotype "protein_coding"; +chrXI SGD exon 299344 302018 . + . transcript_id "YKL072W_id001"; gene_id "YKL072W"; gene_name "STB6"; +chrXI SGD transcript 299582 301882 . + . transcript_id "YKL072W_id002"; gene_id "YKL072W"; gene_name "STB6"; transcript_biotype "protein_coding"; +chrXI SGD exon 299582 301882 . + 0 transcript_id "YKL072W_id002"; gene_name "STB6"; gene_id "YKL072W"; +chrXI SGD gene 302918 303023 . + . gene_id "YNCK0010W"; gene_biotype "ncRNA"; +chrXI SGD transcript 302918 303023 . + . transcript_id "YNCK0010W_tRNA"; gene_id "YNCK0010W"; transcript_biotype "ncRNA"; +chrXI SGD exon 302918 302953 . + . transcript_id "YNCK0010W_tRNA"; gene_id "YNCK0010W"; +chrXI SGD exon 302988 303023 . + . transcript_id "YNCK0010W_tRNA"; gene_id "YNCK0010W"; +chrXI SGD gene 304894 305983 . + . gene_id "YKL071W"; gene_biotype "protein_coding"; +chrXI SGD transcript 304894 305983 . + . transcript_id "YKL071W_id003"; gene_id "YKL071W"; gene_name "OSI1"; transcript_biotype "protein_coding"; +chrXI SGD exon 304894 305983 . + . transcript_id "YKL071W_id003"; gene_id "YKL071W"; gene_name "OSI1"; +chrXI SGD transcript 305114 305884 . + . transcript_id "YKL071W_id001"; gene_id "YKL071W"; gene_name "OSI1"; transcript_biotype "protein_coding"; +chrXI SGD exon 305114 305884 . + 0 transcript_id "YKL071W_id001"; gene_name "OSI1"; gene_id "YKL071W"; +chrXI SGD gene 306211 306720 . + . gene_id "YKL070W"; gene_biotype "protein_coding"; +chrXI SGD transcript 306211 306720 . + . transcript_id "YKL070W_id001"; gene_id "YKL070W"; transcript_biotype "protein_coding"; +chrXI SGD exon 306211 306720 . + 0 transcript_id "YKL070W_id001"; gene_id "YKL070W"; +chrXI SGD gene 307242 308048 . + . gene_id "YKL069W"; gene_biotype "protein_coding"; +chrXI SGD transcript 307242 308048 . + . transcript_id "YKL069W_id001"; gene_id "YKL069W"; transcript_biotype "protein_coding"; +chrXI SGD exon 307242 308048 . + . transcript_id "YKL069W_id001"; gene_id "YKL069W"; +chrXI SGD transcript 307285 307827 . + . transcript_id "YKL069W_id002"; gene_id "YKL069W"; transcript_biotype "protein_coding"; +chrXI SGD exon 307285 307827 . + 0 transcript_id "YKL069W_id002"; gene_id "YKL069W"; +chrXI SGD gene 308144 308217 . - . gene_id "YNCK0011C"; gene_biotype "ncRNA"; +chrXI SGD transcript 308144 308217 . - . transcript_id "YNCK0011C_tRNA"; gene_id "YNCK0011C"; transcript_biotype "ncRNA"; +chrXI SGD exon 308144 308217 . - . transcript_id "YNCK0011C_tRNA"; gene_id "YNCK0011C"; +chrXI SGD gene 308995 309754 . + . gene_id "YKL068W-A"; gene_biotype "protein_coding"; +chrXI SGD transcript 308995 309754 . + . transcript_id "YKL068W-A_id001"; gene_id "YKL068W-A"; transcript_biotype "protein_coding"; +chrXI SGD exon 308995 309754 . + . transcript_id "YKL068W-A_id001"; gene_id "YKL068W-A"; +chrXI SGD transcript 309206 309442 . + . transcript_id "YKL068W-A_id002"; gene_id "YKL068W-A"; transcript_biotype "protein_coding"; +chrXI SGD exon 309206 309442 . + 0 transcript_id "YKL068W-A_id002"; gene_id "YKL068W-A"; +chrXI SGD gene 310079 313180 . + . gene_id "YKL068W"; gene_biotype "protein_coding"; +chrXI SGD transcript 310079 313180 . + . transcript_id "YKL068W_id002"; gene_id "YKL068W"; gene_name "NUP100"; transcript_biotype "protein_coding"; +chrXI SGD exon 310079 313180 . + . transcript_id "YKL068W_id002"; gene_id "YKL068W"; gene_name "NUP100"; +chrXI SGD transcript 310199 313078 . + . transcript_id "YKL068W_id001"; gene_id "YKL068W"; gene_name "NUP100"; transcript_biotype "protein_coding"; +chrXI SGD exon 310199 313078 . + 0 transcript_id "YKL068W_id001"; gene_name "NUP100"; gene_id "YKL068W"; +chrXI SGD gene 313401 313472 . - . gene_id "YNCK0012C"; gene_biotype "ncRNA"; +chrXI SGD transcript 313401 313472 . - . transcript_id "YNCK0012C_tRNA"; gene_id "YNCK0012C"; transcript_biotype "ncRNA"; +chrXI SGD exon 313401 313472 . - . transcript_id "YNCK0012C_tRNA"; gene_id "YNCK0012C"; +chrXI SGD gene 314742 315568 . + . gene_id "YKL067W"; gene_biotype "protein_coding"; +chrXI SGD transcript 314742 315568 . + . transcript_id "YKL067W_id005"; gene_id "YKL067W"; gene_name "YNK1"; transcript_biotype "protein_coding"; +chrXI SGD exon 314742 315568 . + . transcript_id "YKL067W_id005"; gene_id "YKL067W"; gene_name "YNK1"; +chrXI SGD transcript 314812 315273 . + . transcript_id "YKL067W_id001"; gene_id "YKL067W"; gene_name "YNK1"; transcript_biotype "protein_coding"; +chrXI SGD exon 314812 315273 . + 0 transcript_id "YKL067W_id001"; gene_name "YNK1"; gene_id "YKL067W"; +chrXI SGD gene 315281 315724 . + . gene_id "YKL066W"; gene_biotype "protein_coding"; +chrXI SGD transcript 315281 315724 . + . transcript_id "YKL066W_mRNA"; gene_id "YKL066W"; transcript_biotype "protein_coding"; +chrXI SGD CDS 315281 315724 . + 0 transcript_id "YKL066W_mRNA"; gene_id "YKL066W"; +chrXI SGD gene 315954 316175 . + . gene_id "YKL065W-A"; gene_biotype "protein_coding"; +chrXI SGD transcript 315954 316175 . + . transcript_id "YKL065W-A_id001"; gene_id "YKL065W-A"; gene_name "DPC7"; transcript_biotype "protein_coding"; +chrXI SGD exon 315954 316175 . + 0 transcript_id "YKL065W-A_id001"; gene_name "DPC7"; gene_id "YKL065W-A"; +chrXI SGD gene 316299 317303 . - . gene_id "YKL065C"; gene_biotype "protein_coding"; +chrXI SGD transcript 316299 317303 . - . transcript_id "YKL065C_id004"; gene_id "YKL065C"; gene_name "YET1"; transcript_biotype "protein_coding"; +chrXI SGD exon 316299 317303 . - . transcript_id "YKL065C_id004"; gene_id "YKL065C"; gene_name "YET1"; +chrXI SGD transcript 316437 317057 . - . transcript_id "YKL065C_id001"; gene_id "YKL065C"; gene_name "YET1"; transcript_biotype "protein_coding"; +chrXI SGD exon 316437 317057 . - 0 transcript_id "YKL065C_id001"; gene_name "YET1"; gene_id "YKL065C"; +chrXI SGD gene 317764 320673 . + . gene_id "YKL064W"; gene_biotype "protein_coding"; +chrXI SGD transcript 317764 320673 . + . transcript_id "YKL064W_mRNA"; gene_id "YKL064W"; gene_name "MNR2"; transcript_biotype "protein_coding"; +chrXI SGD CDS 317764 320673 . + 0 transcript_id "YKL064W_mRNA"; gene_name "MNR2"; gene_id "YKL064W"; +chrXI SGD gene 320856 322213 . - . gene_id "YKL063C"; gene_biotype "protein_coding"; +chrXI SGD transcript 320856 322213 . - . transcript_id "YKL063C_id002"; gene_id "YKL063C"; transcript_biotype "protein_coding"; +chrXI SGD exon 320856 322213 . - . transcript_id "YKL063C_id002"; gene_id "YKL063C"; +chrXI SGD transcript 321015 321518 . - . transcript_id "YKL063C_id001"; gene_id "YKL063C"; transcript_biotype "protein_coding"; +chrXI SGD exon 321015 321518 . - 0 transcript_id "YKL063C_id001"; gene_id "YKL063C"; +chrXI SGD gene 323082 325541 . + . gene_id "YKL062W"; gene_biotype "protein_coding"; +chrXI SGD transcript 323082 325541 . + . transcript_id "YKL062W_id002"; gene_id "YKL062W"; gene_name "MSN4"; transcript_biotype "protein_coding"; +chrXI SGD exon 323082 325541 . + . transcript_id "YKL062W_id002"; gene_id "YKL062W"; gene_name "MSN4"; +chrXI SGD transcript 323228 325120 . + . transcript_id "YKL062W_id001"; gene_id "YKL062W"; gene_name "MSN4"; transcript_biotype "protein_coding"; +chrXI SGD exon 323228 325120 . + 0 transcript_id "YKL062W_id001"; gene_name "MSN4"; gene_id "YKL062W"; +chrXI SGD gene 325741 326394 . + . gene_id "YKL061W"; gene_biotype "protein_coding"; +chrXI SGD transcript 325741 326394 . + . transcript_id "YKL061W_id004"; gene_id "YKL061W"; gene_name "BLI1"; transcript_biotype "protein_coding"; +chrXI SGD exon 325741 326394 . + . transcript_id "YKL061W_id004"; gene_id "YKL061W"; gene_name "BLI1"; +chrXI SGD transcript 325771 326112 . + . transcript_id "YKL061W_id001"; gene_id "YKL061W"; gene_name "BLI1"; transcript_biotype "protein_coding"; +chrXI SGD exon 325771 326112 . + 0 transcript_id "YKL061W_id001"; gene_name "BLI1"; gene_id "YKL061W"; +chrXI SGD gene 325978 327509 . - . gene_id "YKL060C"; gene_biotype "protein_coding"; +chrXI SGD transcript 325978 327509 . - . transcript_id "YKL060C_id001"; gene_id "YKL060C"; gene_name "FBA1"; transcript_biotype "protein_coding"; +chrXI SGD exon 325978 327509 . - . transcript_id "YKL060C_id001"; gene_id "YKL060C"; gene_name "FBA1"; +chrXI SGD transcript 326408 327487 . - . transcript_id "YKL060C_id007"; gene_id "YKL060C"; gene_name "FBA1"; transcript_biotype "protein_coding"; +chrXI SGD exon 326408 327487 . - 0 transcript_id "YKL060C_id007"; gene_name "FBA1"; gene_id "YKL060C"; +chrXI SGD gene 327997 329513 . - . gene_id "YKL059C"; gene_biotype "protein_coding"; +chrXI SGD transcript 327997 329513 . - . transcript_id "YKL059C_id006"; gene_id "YKL059C"; gene_name "MPE1"; transcript_biotype "protein_coding"; +chrXI SGD exon 327997 329513 . - . transcript_id "YKL059C_id006"; gene_id "YKL059C"; gene_name "MPE1"; +chrXI SGD transcript 328118 329443 . - . transcript_id "YKL059C_id001"; gene_id "YKL059C"; gene_name "MPE1"; transcript_biotype "protein_coding"; +chrXI SGD exon 328118 329443 . - 0 transcript_id "YKL059C_id001"; gene_name "MPE1"; gene_id "YKL059C"; +chrXI SGD gene 329898 330698 . + . gene_id "YKL058W"; gene_biotype "protein_coding"; +chrXI SGD transcript 329898 330698 . + . transcript_id "YKL058W_id001"; gene_id "YKL058W"; gene_name "TOA2"; transcript_biotype "protein_coding"; +chrXI SGD exon 329898 330698 . + . transcript_id "YKL058W_id001"; gene_id "YKL058W"; gene_name "TOA2"; +chrXI SGD transcript 330166 330534 . + . transcript_id "YKL058W_id002"; gene_id "YKL058W"; gene_name "TOA2"; transcript_biotype "protein_coding"; +chrXI SGD exon 330166 330534 . + 0 transcript_id "YKL058W_id002"; gene_name "TOA2"; gene_id "YKL058W"; +chrXI SGD gene 330799 334024 . - . gene_id "YKL057C"; gene_biotype "protein_coding"; +chrXI SGD transcript 330799 334024 . - . transcript_id "YKL057C_id002"; gene_id "YKL057C"; gene_name "NUP120"; transcript_biotype "protein_coding"; +chrXI SGD exon 330799 334024 . - . transcript_id "YKL057C_id002"; gene_id "YKL057C"; gene_name "NUP120"; +chrXI SGD transcript 330856 333969 . - . transcript_id "YKL057C_id001"; gene_id "YKL057C"; gene_name "NUP120"; transcript_biotype "protein_coding"; +chrXI SGD exon 330856 333969 . - 0 transcript_id "YKL057C_id001"; gene_name "NUP120"; gene_id "YKL057C"; +chrXI SGD gene 334283 336128 . - . gene_id "YKL056C"; gene_biotype "protein_coding"; +chrXI SGD transcript 334283 336128 . - . transcript_id "YKL056C_id002"; gene_id "YKL056C"; gene_name "TMA19"; transcript_biotype "protein_coding"; +chrXI SGD exon 334283 336128 . - . transcript_id "YKL056C_id002"; gene_id "YKL056C"; gene_name "TMA19"; +chrXI SGD transcript 334412 334915 . - . transcript_id "YKL056C_id001"; gene_id "YKL056C"; gene_name "TMA19"; transcript_biotype "protein_coding"; +chrXI SGD exon 334412 334915 . - 0 transcript_id "YKL056C_id001"; gene_name "TMA19"; gene_id "YKL056C"; +chrXI SGD gene 334882 336202 . - . gene_id "YKL055C"; gene_biotype "protein_coding"; +chrXI SGD transcript 334882 336202 . - . transcript_id "YKL055C_id002"; gene_id "YKL055C"; gene_name "OAR1"; transcript_biotype "protein_coding"; +chrXI SGD exon 334882 336202 . - . transcript_id "YKL055C_id002"; gene_id "YKL055C"; gene_name "OAR1"; +chrXI SGD transcript 335321 336157 . - . transcript_id "YKL055C_id001"; gene_id "YKL055C"; gene_name "OAR1"; transcript_biotype "protein_coding"; +chrXI SGD exon 335321 336157 . - 0 transcript_id "YKL055C_id001"; gene_name "OAR1"; gene_id "YKL055C"; +chrXI SGD gene 336319 338863 . - . gene_id "YKL054C"; gene_biotype "protein_coding"; +chrXI SGD transcript 336319 338863 . - . transcript_id "YKL054C_id005"; gene_id "YKL054C"; gene_name "DEF1"; transcript_biotype "protein_coding"; +chrXI SGD exon 336319 338863 . - . transcript_id "YKL054C_id005"; gene_id "YKL054C"; gene_name "DEF1"; +chrXI SGD transcript 336537 338753 . - . transcript_id "YKL054C_id001"; gene_id "YKL054C"; gene_name "DEF1"; transcript_biotype "protein_coding"; +chrXI SGD exon 336537 338753 . - 0 transcript_id "YKL054C_id001"; gene_name "DEF1"; gene_id "YKL054C"; +chrXI SGD gene 338974 339523 . - . gene_id "YKL053C-A"; gene_biotype "protein_coding"; +chrXI SGD transcript 338974 339523 . - . transcript_id "YKL053C-A_id001"; gene_id "YKL053C-A"; gene_name "MDM35"; transcript_biotype "protein_coding"; +chrXI SGD exon 338974 339523 . - . transcript_id "YKL053C-A_id001"; gene_id "YKL053C-A"; gene_name "MDM35"; +chrXI SGD transcript 339182 339442 . - . transcript_id "YKL053C-A_id002"; gene_id "YKL053C-A"; gene_name "MDM35"; transcript_biotype "protein_coding"; +chrXI SGD exon 339182 339442 . - 0 transcript_id "YKL053C-A_id002"; gene_name "MDM35"; gene_id "YKL053C-A"; +chrXI SGD gene 339572 339946 . + . gene_id "YKL053W"; gene_biotype "protein_coding"; +chrXI SGD transcript 339572 339946 . + . transcript_id "YKL053W_mRNA"; gene_id "YKL053W"; transcript_biotype "protein_coding"; +chrXI SGD CDS 339572 339946 . + 0 transcript_id "YKL053W_mRNA"; gene_id "YKL053W"; +chrXI SGD gene 339628 340979 . - . gene_id "YKL052C"; gene_biotype "protein_coding"; +chrXI SGD transcript 339628 340979 . - . transcript_id "YKL052C_id004"; gene_id "YKL052C"; gene_name "ASK1"; transcript_biotype "protein_coding"; +chrXI SGD exon 339628 340979 . - . transcript_id "YKL052C_id004"; gene_id "YKL052C"; gene_name "ASK1"; +chrXI SGD transcript 339668 340546 . - . transcript_id "YKL052C_id001"; gene_id "YKL052C"; gene_name "ASK1"; transcript_biotype "protein_coding"; +chrXI SGD exon 339668 340546 . - 0 transcript_id "YKL052C_id001"; gene_name "ASK1"; gene_id "YKL052C"; +chrXI SGD gene 341172 342774 . + . gene_id "YKL051W"; gene_biotype "protein_coding"; +chrXI SGD transcript 341172 342774 . + . transcript_id "YKL051W_id003"; gene_id "YKL051W"; gene_name "SFK1"; transcript_biotype "protein_coding"; +chrXI SGD exon 341172 342774 . + . transcript_id "YKL051W_id003"; gene_id "YKL051W"; gene_name "SFK1"; +chrXI SGD transcript 341312 342373 . + . transcript_id "YKL051W_id001"; gene_id "YKL051W"; gene_name "SFK1"; transcript_biotype "protein_coding"; +chrXI SGD exon 341312 342373 . + 0 transcript_id "YKL051W_id001"; gene_name "SFK1"; gene_id "YKL051W"; +chrXI SGD gene 342852 345620 . - . gene_id "YKL050C"; gene_biotype "protein_coding"; +chrXI SGD transcript 342852 345620 . - . transcript_id "YKL050C_mRNA"; gene_id "YKL050C"; gene_name "LPX2"; transcript_biotype "protein_coding"; +chrXI SGD CDS 342852 345620 . - 0 transcript_id "YKL050C_mRNA"; gene_name "LPX2"; gene_id "YKL050C"; +chrXI SGD gene 345963 346843 . - . gene_id "YKL049C"; gene_biotype "protein_coding"; +chrXI SGD transcript 345963 346843 . - . transcript_id "YKL049C_id005"; gene_id "YKL049C"; gene_name "CSE4"; transcript_biotype "protein_coding"; +chrXI SGD exon 345963 346843 . - . transcript_id "YKL049C_id005"; gene_id "YKL049C"; gene_name "CSE4"; +chrXI SGD transcript 346075 346764 . - . transcript_id "YKL049C_id001"; gene_id "YKL049C"; gene_name "CSE4"; transcript_biotype "protein_coding"; +chrXI SGD exon 346075 346764 . - 0 transcript_id "YKL049C_id001"; gene_name "CSE4"; gene_id "YKL049C"; +chrXI SGD gene 347033 349221 . - . gene_id "YKL048C"; gene_biotype "protein_coding"; +chrXI SGD transcript 347033 349221 . - . transcript_id "YKL048C_id001"; gene_id "YKL048C"; gene_name "ELM1"; transcript_biotype "protein_coding"; +chrXI SGD exon 347033 349221 . - . transcript_id "YKL048C_id001"; gene_id "YKL048C"; gene_name "ELM1"; +chrXI SGD transcript 347214 349136 . - . transcript_id "YKL048C_id003"; gene_id "YKL048C"; gene_name "ELM1"; transcript_biotype "protein_coding"; +chrXI SGD exon 347214 349136 . - 0 transcript_id "YKL048C_id003"; gene_name "ELM1"; gene_id "YKL048C"; +chrXI SGD gene 349415 351187 . + . gene_id "YKL047W"; gene_biotype "protein_coding"; +chrXI SGD transcript 349415 351187 . + . transcript_id "YKL047W_id001"; gene_id "YKL047W"; gene_name "ANR2"; transcript_biotype "protein_coding"; +chrXI SGD exon 349415 351187 . + . transcript_id "YKL047W_id001"; gene_id "YKL047W"; gene_name "ANR2"; +chrXI SGD transcript 349463 351013 . + . transcript_id "YKL047W_id002"; gene_id "YKL047W"; gene_name "ANR2"; transcript_biotype "protein_coding"; +chrXI SGD exon 349463 351013 . + 0 transcript_id "YKL047W_id002"; gene_name "ANR2"; gene_id "YKL047W"; +chrXI SGD gene 351039 352890 . - . gene_id "YKL046C"; gene_biotype "protein_coding"; +chrXI SGD transcript 351039 352890 . - . transcript_id "YKL046C_id001"; gene_id "YKL046C"; gene_name "DCW1"; transcript_biotype "protein_coding"; +chrXI SGD exon 351039 352890 . - . transcript_id "YKL046C_id001"; gene_id "YKL046C"; gene_name "DCW1"; +chrXI SGD transcript 351275 352624 . - . transcript_id "YKL046C_id003"; gene_id "YKL046C"; gene_name "DCW1"; transcript_biotype "protein_coding"; +chrXI SGD exon 351275 352624 . - 0 transcript_id "YKL046C_id003"; gene_name "DCW1"; gene_id "YKL046C"; +chrXI SGD gene 353420 355218 . + . gene_id "YKL045W"; gene_biotype "protein_coding"; +chrXI SGD transcript 353420 355218 . + . transcript_id "YKL045W_id003"; gene_id "YKL045W"; gene_name "PRI2"; transcript_biotype "protein_coding"; +chrXI SGD exon 353420 355218 . + . transcript_id "YKL045W_id003"; gene_id "YKL045W"; gene_name "PRI2"; +chrXI SGD transcript 353493 355079 . + . transcript_id "YKL045W_id001"; gene_id "YKL045W"; gene_name "PRI2"; transcript_biotype "protein_coding"; +chrXI SGD exon 353493 355079 . + 0 transcript_id "YKL045W_id001"; gene_name "PRI2"; gene_id "YKL045W"; +chrXI SGD gene 356018 356713 . + . gene_id "YKL044W"; gene_biotype "protein_coding"; +chrXI SGD transcript 356018 356713 . + . transcript_id "YKL044W_id001"; gene_id "YKL044W"; gene_name "MMO1"; transcript_biotype "protein_coding"; +chrXI SGD exon 356018 356713 . + . transcript_id "YKL044W_id001"; gene_id "YKL044W"; gene_name "MMO1"; +chrXI SGD transcript 356322 356642 . + . transcript_id "YKL044W_id003"; gene_id "YKL044W"; gene_name "MMO1"; transcript_biotype "protein_coding"; +chrXI SGD exon 356322 356642 . + 0 transcript_id "YKL044W_id003"; gene_name "MMO1"; gene_id "YKL044W"; +chrXI SGD gene 356442 358014 . + . gene_id "YKL043W"; gene_biotype "protein_coding"; +chrXI SGD transcript 356442 358014 . + . transcript_id "YKL043W_id003"; gene_id "YKL043W"; gene_name "PHD1"; transcript_biotype "protein_coding"; +chrXI SGD exon 356442 358014 . + . transcript_id "YKL043W_id003"; gene_id "YKL043W"; gene_name "PHD1"; +chrXI SGD transcript 356748 357848 . + . transcript_id "YKL043W_id001"; gene_id "YKL043W"; gene_name "PHD1"; transcript_biotype "protein_coding"; +chrXI SGD exon 356748 357848 . + 0 transcript_id "YKL043W_id001"; gene_name "PHD1"; gene_id "YKL043W"; +chrXI SGD gene 358475 359566 . + . gene_id "YKL042W"; gene_biotype "protein_coding"; +chrXI SGD transcript 358475 359566 . + . transcript_id "YKL042W_id001"; gene_id "YKL042W"; gene_name "SPC42"; transcript_biotype "protein_coding"; +chrXI SGD exon 358475 359566 . + 0 transcript_id "YKL042W_id001"; gene_name "SPC42"; gene_id "YKL042W"; +chrXI SGD gene 360049 361148 . + . gene_id "YKL041W"; gene_biotype "protein_coding"; +chrXI SGD transcript 360049 361148 . + . transcript_id "YKL041W_id001"; gene_id "YKL041W"; gene_name "VPS24"; transcript_biotype "protein_coding"; +chrXI SGD exon 360049 361148 . + . transcript_id "YKL041W_id001"; gene_id "YKL041W"; gene_name "VPS24"; +chrXI SGD gene 360120 361890 . - . gene_id "YKL040C"; gene_biotype "protein_coding"; +chrXI SGD transcript 360120 361890 . - . transcript_id "YKL040C_id004"; gene_id "YKL040C"; gene_name "NFU1"; transcript_biotype "protein_coding"; +chrXI SGD exon 360120 361890 . - . transcript_id "YKL040C_id004"; gene_id "YKL040C"; gene_name "NFU1"; +chrXI SGD transcript 360143 360817 . + . transcript_id "YKL041W_id002"; gene_id "YKL041W"; gene_name "VPS24"; transcript_biotype "protein_coding"; +chrXI SGD exon 360143 360817 . + 0 transcript_id "YKL041W_id002"; gene_name "VPS24"; gene_id "YKL041W"; +chrXI SGD transcript 361058 361828 . - . transcript_id "YKL040C_id001"; gene_id "YKL040C"; gene_name "NFU1"; transcript_biotype "protein_coding"; +chrXI SGD exon 361058 361828 . - 0 transcript_id "YKL040C_id001"; gene_name "NFU1"; gene_id "YKL040C"; +chrXI SGD gene 362448 364452 . + . gene_id "YKL039W"; gene_biotype "protein_coding"; +chrXI SGD transcript 362448 364452 . + . transcript_id "YKL039W_id004"; gene_id "YKL039W"; gene_name "PTM1"; transcript_biotype "protein_coding"; +chrXI SGD exon 362448 364452 . + . transcript_id "YKL039W_id004"; gene_id "YKL039W"; gene_name "PTM1"; +chrXI SGD transcript 362622 364193 . + . transcript_id "YKL039W_id001"; gene_id "YKL039W"; gene_name "PTM1"; transcript_biotype "protein_coding"; +chrXI SGD exon 362622 364193 . + 0 transcript_id "YKL039W_id001"; gene_name "PTM1"; gene_id "YKL039W"; +chrXI SGD gene 364776 364876 . + . gene_id "YNCK0013W"; gene_biotype "ncRNA"; +chrXI SGD transcript 364776 364876 . + . transcript_id "YNCK0013W_snoRNA"; gene_id "YNCK0013W"; gene_name "SNR69"; transcript_biotype "ncRNA"; +chrXI SGD exon 364776 364876 . + . transcript_id "YNCK0013W_snoRNA"; gene_name "SNR69"; gene_id "YNCK0013W"; +chrXI SGD gene 365605 369117 . + . gene_id "YKL038W"; gene_biotype "protein_coding"; +chrXI SGD transcript 365605 369117 . + . transcript_id "YKL038W_id001"; gene_id "YKL038W"; gene_name "RGT1"; transcript_biotype "protein_coding"; +chrXI SGD exon 365605 369117 . + 0 transcript_id "YKL038W_id001"; gene_name "RGT1"; gene_id "YKL038W"; +chrXI SGD gene 369201 370019 . - . gene_id "YKL036C"; gene_biotype "protein_coding"; +chrXI SGD transcript 369201 370019 . - . transcript_id "YKL036C_id002"; gene_id "YKL036C"; transcript_biotype "protein_coding"; +chrXI SGD exon 369201 370019 . - . transcript_id "YKL036C_id002"; gene_id "YKL036C"; +chrXI SGD gene 369365 369721 . + . gene_id "YKL037W"; gene_biotype "protein_coding"; +chrXI SGD transcript 369365 369721 . + . transcript_id "YKL037W_mRNA"; gene_id "YKL037W"; gene_name "AIM26"; transcript_biotype "protein_coding"; +chrXI SGD CDS 369365 369721 . + 0 transcript_id "YKL037W_mRNA"; gene_name "AIM26"; gene_id "YKL037W"; +chrXI SGD transcript 369528 369920 . - . transcript_id "YKL036C_id001"; gene_id "YKL036C"; transcript_biotype "protein_coding"; +chrXI SGD exon 369528 369920 . - 0 transcript_id "YKL036C_id001"; gene_id "YKL036C"; +chrXI SGD gene 369758 371556 . + . gene_id "YKL035W"; gene_biotype "protein_coding"; +chrXI SGD transcript 369758 371556 . + . transcript_id "YKL035W_id002"; gene_id "YKL035W"; gene_name "UGP1"; transcript_biotype "protein_coding"; +chrXI SGD exon 369758 371556 . + . transcript_id "YKL035W_id002"; gene_id "YKL035W"; gene_name "UGP1"; +chrXI SGD transcript 369891 371390 . + . transcript_id "YKL035W_id001"; gene_id "YKL035W"; gene_name "UGP1"; transcript_biotype "protein_coding"; +chrXI SGD exon 369891 371390 . + 0 transcript_id "YKL035W_id001"; gene_name "UGP1"; gene_id "YKL035W"; +chrXI SGD gene 371685 374238 . + . gene_id "YKL034W"; gene_biotype "protein_coding"; +chrXI SGD transcript 371685 374238 . + . transcript_id "YKL034W_id001"; gene_id "YKL034W"; gene_name "TUL1"; transcript_biotype "protein_coding"; +chrXI SGD exon 371685 374238 . + . transcript_id "YKL034W_id001"; gene_id "YKL034W"; gene_name "TUL1"; +chrXI SGD transcript 371829 374105 . + . transcript_id "YKL034W_id002"; gene_id "YKL034W"; gene_name "TUL1"; transcript_biotype "protein_coding"; +chrXI SGD exon 371829 374105 . + 0 transcript_id "YKL034W_id002"; gene_name "TUL1"; gene_id "YKL034W"; +chrXI SGD gene 374383 375362 . + . gene_id "YKL033W-A"; gene_biotype "protein_coding"; +chrXI SGD transcript 374383 375362 . + . transcript_id "YKL033W-A_id001"; gene_id "YKL033W-A"; transcript_biotype "protein_coding"; +chrXI SGD exon 374383 375362 . + . transcript_id "YKL033W-A_id001"; gene_id "YKL033W-A"; +chrXI SGD transcript 374505 375215 . + . transcript_id "YKL033W-A_id005"; gene_id "YKL033W-A"; transcript_biotype "protein_coding"; +chrXI SGD exon 374505 375215 . + 0 transcript_id "YKL033W-A_id005"; gene_id "YKL033W-A"; +chrXI SGD gene 375456 378572 . + . gene_id "YKL033W"; gene_biotype "protein_coding"; +chrXI SGD transcript 375456 378572 . + . transcript_id "YKL033W_mRNA"; gene_id "YKL033W"; gene_name "TTI1"; transcript_biotype "protein_coding"; +chrXI SGD CDS 375456 378572 . + 0 transcript_id "YKL033W_mRNA"; gene_name "TTI1"; gene_id "YKL033W"; +chrXI SGD gene 379680 379753 . + . gene_id "YNCK0014W"; gene_biotype "ncRNA"; +chrXI SGD transcript 379680 379753 . + . transcript_id "YNCK0014W_tRNA"; gene_id "YNCK0014W"; transcript_biotype "ncRNA"; +chrXI SGD exon 379680 379753 . + . transcript_id "YNCK0014W_tRNA"; gene_id "YNCK0014W"; +chrXI SGD gene 380065 381858 . - . gene_id "YKL032C"; gene_biotype "protein_coding"; +chrXI SGD transcript 380065 381858 . - . transcript_id "YKL032C_mRNA"; gene_id "YKL032C"; gene_name "IXR1"; transcript_biotype "protein_coding"; +chrXI SGD CDS 380065 381858 . - 0 transcript_id "YKL032C_mRNA"; gene_name "IXR1"; gene_id "YKL032C"; +chrXI SGD gene 382072 382485 . + . gene_id "YKL031W"; gene_biotype "protein_coding"; +chrXI SGD transcript 382072 382485 . + . transcript_id "YKL031W_mRNA"; gene_id "YKL031W"; transcript_biotype "protein_coding"; +chrXI SGD CDS 382072 382485 . + 0 transcript_id "YKL031W_mRNA"; gene_id "YKL031W"; +chrXI SGD gene 382498 383103 . + . gene_id "YKL030W"; gene_biotype "protein_coding"; +chrXI SGD transcript 382498 383103 . + . transcript_id "YKL030W_mRNA"; gene_id "YKL030W"; transcript_biotype "protein_coding"; +chrXI SGD CDS 382498 383103 . + 0 transcript_id "YKL030W_mRNA"; gene_id "YKL030W"; +chrXI SGD gene 382604 384847 . - . gene_id "YKL029C"; gene_biotype "protein_coding"; +chrXI SGD transcript 382604 384847 . - . transcript_id "YKL029C_id001"; gene_id "YKL029C"; gene_name "MAE1"; transcript_biotype "protein_coding"; +chrXI SGD exon 382604 384847 . - . transcript_id "YKL029C_id001"; gene_id "YKL029C"; gene_name "MAE1"; +chrXI SGD transcript 382716 384725 . - . transcript_id "YKL029C_id003"; gene_id "YKL029C"; gene_name "MAE1"; transcript_biotype "protein_coding"; +chrXI SGD exon 382716 384725 . - 0 transcript_id "YKL029C_id003"; gene_name "MAE1"; gene_id "YKL029C"; +chrXI SGD gene 385714 387541 . + . gene_id "YKL028W"; gene_biotype "protein_coding"; +chrXI SGD transcript 385714 387541 . + . transcript_id "YKL028W_id002"; gene_id "YKL028W"; gene_name "TFA1"; transcript_biotype "protein_coding"; +chrXI SGD exon 385714 387541 . + . transcript_id "YKL028W_id002"; gene_id "YKL028W"; gene_name "TFA1"; +chrXI SGD transcript 385758 387206 . + . transcript_id "YKL028W_id001"; gene_id "YKL028W"; gene_name "TFA1"; transcript_biotype "protein_coding"; +chrXI SGD exon 385758 387206 . + 0 transcript_id "YKL028W_id001"; gene_name "TFA1"; gene_id "YKL028W"; +chrXI SGD gene 387399 389009 . + . gene_id "YKL027W"; gene_biotype "protein_coding"; +chrXI SGD transcript 387399 389009 . + . transcript_id "YKL027W_id003"; gene_id "YKL027W"; gene_name "TCD2"; transcript_biotype "protein_coding"; +chrXI SGD exon 387399 389009 . + . transcript_id "YKL027W_id003"; gene_id "YKL027W"; gene_name "TCD2"; +chrXI SGD transcript 387562 388905 . + . transcript_id "YKL027W_id001"; gene_id "YKL027W"; gene_name "TCD2"; transcript_biotype "protein_coding"; +chrXI SGD exon 387562 388905 . + 0 transcript_id "YKL027W_id001"; gene_name "TCD2"; gene_id "YKL027W"; +chrXI SGD gene 389185 389994 . - . gene_id "YKL026C"; gene_biotype "protein_coding"; +chrXI SGD transcript 389185 389994 . - . transcript_id "YKL026C_id010"; gene_id "YKL026C"; gene_name "GPX1"; transcript_biotype "protein_coding"; +chrXI SGD exon 389185 389994 . - . transcript_id "YKL026C_id010"; gene_id "YKL026C"; gene_name "GPX1"; +chrXI SGD transcript 389380 389883 . - . transcript_id "YKL026C_id001"; gene_id "YKL026C"; gene_name "GPX1"; transcript_biotype "protein_coding"; +chrXI SGD exon 389380 389883 . - 0 transcript_id "YKL026C_id001"; gene_name "GPX1"; gene_id "YKL026C"; +chrXI SGD gene 390171 392313 . - . gene_id "YKL025C"; gene_biotype "protein_coding"; +chrXI SGD transcript 390171 392313 . - . transcript_id "YKL025C_id002"; gene_id "YKL025C"; gene_name "PAN3"; transcript_biotype "protein_coding"; +chrXI SGD exon 390171 392313 . - . transcript_id "YKL025C_id002"; gene_id "YKL025C"; gene_name "PAN3"; +chrXI SGD transcript 390240 392279 . - . transcript_id "YKL025C_id001"; gene_id "YKL025C"; gene_name "PAN3"; transcript_biotype "protein_coding"; +chrXI SGD exon 390240 392279 . - 0 transcript_id "YKL025C_id001"; gene_name "PAN3"; gene_id "YKL025C"; +chrXI SGD gene 392526 393140 . - . gene_id "YKL024C"; gene_biotype "protein_coding"; +chrXI SGD transcript 392526 393140 . - . transcript_id "YKL024C_id001"; gene_id "YKL024C"; gene_name "URA6"; transcript_biotype "protein_coding"; +chrXI SGD exon 392526 393140 . - 0 transcript_id "YKL024C_id001"; gene_name "URA6"; gene_id "YKL024C"; +chrXI SGD gene 393146 393373 . - . gene_id "YKL023C-A"; gene_biotype "protein_coding"; +chrXI SGD transcript 393146 393373 . - . transcript_id "YKL023C-A_id001"; gene_id "YKL023C-A"; gene_name "MIN9"; transcript_biotype "protein_coding"; +chrXI SGD exon 393146 393373 . - 0 transcript_id "YKL023C-A_id001"; gene_name "MIN9"; gene_id "YKL023C-A"; +chrXI SGD gene 393581 394707 . + . gene_id "YKL023W"; gene_biotype "protein_coding"; +chrXI SGD transcript 393581 394707 . + . transcript_id "YKL023W_id007"; gene_id "YKL023W"; gene_name "SKA1"; transcript_biotype "protein_coding"; +chrXI SGD exon 393581 394707 . + . transcript_id "YKL023W_id007"; gene_id "YKL023W"; gene_name "SKA1"; +chrXI SGD transcript 393721 394554 . + . transcript_id "YKL023W_id001"; gene_id "YKL023W"; gene_name "SKA1"; transcript_biotype "protein_coding"; +chrXI SGD exon 393721 394554 . + 0 transcript_id "YKL023W_id001"; gene_name "SKA1"; gene_id "YKL023W"; +chrXI SGD gene 394726 397248 . - . gene_id "YKL022C"; gene_biotype "protein_coding"; +chrXI SGD transcript 394726 397248 . - . transcript_id "YKL022C_mRNA"; gene_id "YKL022C"; gene_name "CDC16"; transcript_biotype "protein_coding"; +chrXI SGD CDS 394726 397248 . - 0 transcript_id "YKL022C_mRNA"; gene_name "CDC16"; gene_id "YKL022C"; +chrXI SGD gene 397344 398750 . - . gene_id "YKL021C"; gene_biotype "protein_coding"; +chrXI SGD transcript 397344 398750 . - . transcript_id "YKL021C_mRNA"; gene_id "YKL021C"; gene_name "MAK11"; transcript_biotype "protein_coding"; +chrXI SGD CDS 397344 398750 . - 0 transcript_id "YKL021C_mRNA"; gene_name "MAK11"; gene_id "YKL021C"; +chrXI SGD gene 398832 402080 . - . gene_id "YKL020C"; gene_biotype "protein_coding"; +chrXI SGD transcript 398832 402080 . - . transcript_id "YKL020C_id001"; gene_id "YKL020C"; gene_name "SPT23"; transcript_biotype "protein_coding"; +chrXI SGD exon 398832 402080 . - 0 transcript_id "YKL020C_id001"; gene_name "SPT23"; gene_id "YKL020C"; +chrXI SGD gene 402357 403594 . + . gene_id "YKL019W"; gene_biotype "protein_coding"; +chrXI SGD transcript 402357 403594 . + . transcript_id "YKL019W_id002"; gene_id "YKL019W"; gene_name "RAM2"; transcript_biotype "protein_coding"; +chrXI SGD exon 402357 403594 . + . transcript_id "YKL019W_id002"; gene_id "YKL019W"; gene_name "RAM2"; +chrXI SGD transcript 402568 403518 . + . transcript_id "YKL019W_id001"; gene_id "YKL019W"; gene_name "RAM2"; transcript_biotype "protein_coding"; +chrXI SGD exon 402568 403518 . + 0 transcript_id "YKL019W_id001"; gene_name "RAM2"; gene_id "YKL019W"; +chrXI SGD gene 403010 403935 . - . gene_id "YKL018C-A"; gene_biotype "protein_coding"; +chrXI SGD transcript 403010 403935 . - . transcript_id "YKL018C-A_id001"; gene_id "YKL018C-A"; gene_name "MCO12"; transcript_biotype "protein_coding"; +chrXI SGD exon 403010 403935 . - . transcript_id "YKL018C-A_id001"; gene_id "YKL018C-A"; gene_name "MCO12"; +chrXI SGD transcript 403580 403879 . - . transcript_id "YKL018C-A_id003"; gene_id "YKL018C-A"; gene_name "MCO12"; transcript_biotype "protein_coding"; +chrXI SGD exon 403580 403879 . - 0 transcript_id "YKL018C-A_id003"; gene_name "MCO12"; gene_id "YKL018C-A"; +chrXI SGD gene 404062 405251 . + . gene_id "YKL018W"; gene_biotype "protein_coding"; +chrXI SGD transcript 404062 405251 . + . transcript_id "YKL018W_id001"; gene_id "YKL018W"; gene_name "SWD2"; transcript_biotype "protein_coding"; +chrXI SGD exon 404062 405251 . + . transcript_id "YKL018W_id001"; gene_id "YKL018W"; gene_name "SWD2"; +chrXI SGD transcript 404102 405091 . + . transcript_id "YKL018W_id002"; gene_id "YKL018W"; gene_name "SWD2"; transcript_biotype "protein_coding"; +chrXI SGD exon 404102 405091 . + 0 transcript_id "YKL018W_id002"; gene_name "SWD2"; gene_id "YKL018W"; +chrXI SGD gene 405079 407248 . - . gene_id "YKL017C"; gene_biotype "protein_coding"; +chrXI SGD transcript 405079 407248 . - . transcript_id "YKL017C_id002"; gene_id "YKL017C"; gene_name "HCS1"; transcript_biotype "protein_coding"; +chrXI SGD exon 405079 407248 . - . transcript_id "YKL017C_id002"; gene_id "YKL017C"; gene_name "HCS1"; +chrXI SGD transcript 405190 407241 . - . transcript_id "YKL017C_id001"; gene_id "YKL017C"; gene_name "HCS1"; transcript_biotype "protein_coding"; +chrXI SGD exon 405190 407241 . - 0 transcript_id "YKL017C_id001"; gene_name "HCS1"; gene_id "YKL017C"; +chrXI SGD gene 407270 408085 . - . gene_id "YKL016C"; gene_biotype "protein_coding"; +chrXI SGD transcript 407270 408085 . - . transcript_id "YKL016C_id002"; gene_id "YKL016C"; gene_name "ATP7"; transcript_biotype "protein_coding"; +chrXI SGD exon 407270 408085 . - . transcript_id "YKL016C_id002"; gene_id "YKL016C"; gene_name "ATP7"; +chrXI SGD transcript 407465 407989 . - . transcript_id "YKL016C_id001"; gene_id "YKL016C"; gene_name "ATP7"; transcript_biotype "protein_coding"; +chrXI SGD exon 407465 407989 . - 0 transcript_id "YKL016C_id001"; gene_name "ATP7"; gene_id "YKL016C"; +chrXI SGD gene 408544 411483 . + . gene_id "YKL015W"; gene_biotype "protein_coding"; +chrXI SGD transcript 408544 411483 . + . transcript_id "YKL015W_id001"; gene_id "YKL015W"; gene_name "PUT3"; transcript_biotype "protein_coding"; +chrXI SGD exon 408544 411483 . + 0 transcript_id "YKL015W_id001"; gene_name "PUT3"; gene_id "YKL015W"; +chrXI SGD gene 411619 416913 . - . gene_id "YKL014C"; gene_biotype "protein_coding"; +chrXI SGD transcript 411619 416913 . - . transcript_id "YKL014C_mRNA"; gene_id "YKL014C"; gene_name "URB1"; transcript_biotype "protein_coding"; +chrXI SGD CDS 411619 416913 . - 0 transcript_id "YKL014C_mRNA"; gene_name "URB1"; gene_id "YKL014C"; +chrXI SGD gene 417232 418076 . - . gene_id "YKL013C"; gene_biotype "protein_coding"; +chrXI SGD transcript 417232 418076 . - . transcript_id "YKL013C_id001"; gene_id "YKL013C"; gene_name "ARC19"; transcript_biotype "protein_coding"; +chrXI SGD exon 417232 418076 . - . transcript_id "YKL013C_id001"; gene_id "YKL013C"; gene_name "ARC19"; +chrXI SGD transcript 417508 418023 . - . transcript_id "YKL013C_id002"; gene_id "YKL013C"; gene_name "ARC19"; transcript_biotype "protein_coding"; +chrXI SGD exon 417508 418023 . - 0 transcript_id "YKL013C_id002"; gene_name "ARC19"; gene_id "YKL013C"; +chrXI SGD gene 418263 420303 . + . gene_id "YKL012W"; gene_biotype "protein_coding"; +chrXI SGD transcript 418263 420303 . + . transcript_id "YKL012W_id002"; gene_id "YKL012W"; gene_name "PRP40"; transcript_biotype "protein_coding"; +chrXI SGD exon 418263 420303 . + . transcript_id "YKL012W_id002"; gene_id "YKL012W"; gene_name "PRP40"; +chrXI SGD transcript 418310 420061 . + . transcript_id "YKL012W_id001"; gene_id "YKL012W"; gene_name "PRP40"; transcript_biotype "protein_coding"; +chrXI SGD exon 418310 420061 . + 0 transcript_id "YKL012W_id001"; gene_name "PRP40"; gene_id "YKL012W"; +chrXI SGD gene 420066 421342 . - . gene_id "YKL011C"; gene_biotype "protein_coding"; +chrXI SGD transcript 420066 421342 . - . transcript_id "YKL011C_id005"; gene_id "YKL011C"; gene_name "CCE1"; transcript_biotype "protein_coding"; +chrXI SGD exon 420066 421342 . - . transcript_id "YKL011C_id005"; gene_id "YKL011C"; gene_name "CCE1"; +chrXI SGD transcript 420155 421216 . - . transcript_id "YKL011C_id001"; gene_id "YKL011C"; gene_name "CCE1"; transcript_biotype "protein_coding"; +chrXI SGD exon 420155 421216 . - 0 transcript_id "YKL011C_id001"; gene_name "CCE1"; gene_id "YKL011C"; +chrXI SGD gene 421424 425875 . - . gene_id "YKL010C"; gene_biotype "protein_coding"; +chrXI SGD transcript 421424 425875 . - . transcript_id "YKL010C_id001"; gene_id "YKL010C"; gene_name "UFD4"; transcript_biotype "protein_coding"; +chrXI SGD exon 421424 425875 . - 0 transcript_id "YKL010C_id001"; gene_name "UFD4"; gene_id "YKL010C"; +chrXI SGD gene 426165 427084 . + . gene_id "YKL009W"; gene_biotype "protein_coding"; +chrXI SGD transcript 426165 427084 . + . transcript_id "YKL009W_id002"; gene_id "YKL009W"; gene_name "MRT4"; transcript_biotype "protein_coding"; +chrXI SGD exon 426165 427084 . + . transcript_id "YKL009W_id002"; gene_id "YKL009W"; gene_name "MRT4"; +chrXI SGD transcript 426242 426952 . + . transcript_id "YKL009W_id001"; gene_id "YKL009W"; gene_name "MRT4"; transcript_biotype "protein_coding"; +chrXI SGD exon 426242 426952 . + 0 transcript_id "YKL009W_id001"; gene_name "MRT4"; gene_id "YKL009W"; +chrXI SGD gene 427139 428760 . - . gene_id "YKL008C"; gene_biotype "protein_coding"; +chrXI SGD transcript 427139 428760 . - . transcript_id "YKL008C_id004"; gene_id "YKL008C"; gene_name "LAC1"; transcript_biotype "protein_coding"; +chrXI SGD exon 427139 428760 . - . transcript_id "YKL008C_id004"; gene_id "YKL008C"; gene_name "LAC1"; +chrXI SGD transcript 427295 428551 . - . transcript_id "YKL008C_id001"; gene_id "YKL008C"; gene_name "LAC1"; transcript_biotype "protein_coding"; +chrXI SGD exon 427295 428551 . - 0 transcript_id "YKL008C_id001"; gene_name "LAC1"; gene_id "YKL008C"; +chrXI SGD gene 428945 430246 . + . gene_id "YKL007W"; gene_biotype "protein_coding"; +chrXI SGD transcript 428945 430246 . + . transcript_id "YKL007W_id005"; gene_id "YKL007W"; gene_name "CAP1"; transcript_biotype "protein_coding"; +chrXI SGD exon 428945 430246 . + . transcript_id "YKL007W_id005"; gene_id "YKL007W"; gene_name "CAP1"; +chrXI SGD transcript 429302 430108 . + . transcript_id "YKL007W_id001"; gene_id "YKL007W"; gene_name "CAP1"; transcript_biotype "protein_coding"; +chrXI SGD exon 429302 430108 . + 0 transcript_id "YKL007W_id001"; gene_name "CAP1"; gene_id "YKL007W"; +chrXI SGD gene 430129 431303 . - . gene_id "YKL006C-A"; gene_biotype "protein_coding"; +chrXI SGD transcript 430129 431303 . - . transcript_id "YKL006C-A_id004"; gene_id "YKL006C-A"; gene_name "SFT1"; transcript_biotype "protein_coding"; +chrXI SGD exon 430129 431303 . - . transcript_id "YKL006C-A_id004"; gene_id "YKL006C-A"; gene_name "SFT1"; +chrXI SGD transcript 430198 430632 . - . transcript_id "YKL006C-A_id001"; gene_id "YKL006C-A"; gene_name "SFT1"; transcript_biotype "protein_coding"; +chrXI SGD exon 430198 430455 . - 0 transcript_id "YKL006C-A_id001"; gene_name "SFT1"; gene_id "YKL006C-A"; +chrXI SGD exon 430597 430632 . - 0 transcript_id "YKL006C-A_id001"; gene_name "SFT1"; gene_id "YKL006C-A"; +chrXI SGD gene 431030 431138 . - . gene_id "YNCK0015C"; gene_biotype "ncRNA"; +chrXI SGD transcript 431030 431138 . - . transcript_id "YNCK0015C_snoRNA"; gene_id "YNCK0015C"; gene_name "SNR87"; transcript_biotype "ncRNA"; +chrXI SGD exon 431030 431138 . - . transcript_id "YNCK0015C_snoRNA"; gene_name "SNR87"; gene_id "YNCK0015C"; +chrXI SGD gene 431712 432810 . + . gene_id "YKL006W"; gene_biotype "protein_coding"; +chrXI SGD transcript 431712 432810 . + . transcript_id "YKL006W_id002"; gene_id "YKL006W"; gene_name "RPL14A"; transcript_biotype "protein_coding"; +chrXI SGD exon 431712 432810 . + . transcript_id "YKL006W_id002"; gene_id "YKL006W"; gene_name "RPL14A"; +chrXI SGD transcript 431906 432720 . + . transcript_id "YKL006W_id001"; gene_id "YKL006W"; gene_name "RPL14A"; transcript_biotype "protein_coding"; +chrXI SGD exon 431906 432034 . + 0 transcript_id "YKL006W_id001"; gene_name "RPL14A"; gene_id "YKL006W"; +chrXI SGD exon 432433 432720 . + 0 transcript_id "YKL006W_id001"; gene_name "RPL14A"; gene_id "YKL006W"; +chrXI SGD gene 433093 434877 . - . gene_id "YKL005C"; gene_biotype "protein_coding"; +chrXI SGD transcript 433093 434877 . - . transcript_id "YKL005C_id001"; gene_id "YKL005C"; gene_name "BYE1"; transcript_biotype "protein_coding"; +chrXI SGD exon 433093 434877 . - 0 transcript_id "YKL005C_id001"; gene_name "BYE1"; gene_id "YKL005C"; +chrXI SGD gene 435214 436965 . + . gene_id "YKL004W"; gene_biotype "protein_coding"; +chrXI SGD transcript 435214 436965 . + . transcript_id "YKL004W_id003"; gene_id "YKL004W"; gene_name "AUR1"; transcript_biotype "protein_coding"; +chrXI SGD exon 435214 436965 . + . transcript_id "YKL004W_id003"; gene_id "YKL004W"; gene_name "AUR1"; +chrXI SGD transcript 435580 436785 . + . transcript_id "YKL004W_id001"; gene_id "YKL004W"; gene_name "AUR1"; transcript_biotype "protein_coding"; +chrXI SGD exon 435580 436785 . + 0 transcript_id "YKL004W_id001"; gene_name "AUR1"; gene_id "YKL004W"; +chrXI SGD gene 436964 438579 . - . gene_id "YKL003C"; gene_biotype "protein_coding"; +chrXI SGD transcript 436964 438579 . - . transcript_id "YKL003C_id001"; gene_id "YKL003C"; gene_name "MRP17"; transcript_biotype "protein_coding"; +chrXI SGD exon 436964 438579 . - . transcript_id "YKL003C_id001"; gene_id "YKL003C"; gene_name "MRP17"; +chrXI SGD transcript 437097 437492 . - . transcript_id "YKL003C_id003"; gene_id "YKL003C"; gene_name "MRP17"; transcript_biotype "protein_coding"; +chrXI SGD exon 437097 437492 . - 0 transcript_id "YKL003C_id003"; gene_name "MRP17"; gene_id "YKL003C"; +chrXI SGD gene 437300 438636 . + . gene_id "YKL002W"; gene_biotype "protein_coding"; +chrXI SGD transcript 437300 438636 . + . transcript_id "YKL002W_id001"; gene_id "YKL002W"; gene_name "DID4"; transcript_biotype "protein_coding"; +chrXI SGD exon 437300 438636 . + . transcript_id "YKL002W_id001"; gene_id "YKL002W"; gene_name "DID4"; +chrXI SGD transcript 437778 438544 . + . transcript_id "YKL002W_id002"; gene_id "YKL002W"; gene_name "DID4"; transcript_biotype "protein_coding"; +chrXI SGD exon 437778 437837 . + 0 transcript_id "YKL002W_id002"; gene_name "DID4"; gene_id "YKL002W"; +chrXI SGD exon 437906 438544 . + 0 transcript_id "YKL002W_id002"; gene_name "DID4"; gene_id "YKL002W"; +chrXI SGD gene 438668 439536 . - . gene_id "YKL001C"; gene_biotype "protein_coding"; +chrXI SGD transcript 438668 439536 . - . transcript_id "YKL001C_id001"; gene_id "YKL001C"; gene_name "MET14"; transcript_biotype "protein_coding"; +chrXI SGD exon 438668 439536 . - . transcript_id "YKL001C_id001"; gene_id "YKL001C"; gene_name "MET14"; +chrXI SGD transcript 438777 439385 . - . transcript_id "YKL001C_id003"; gene_id "YKL001C"; gene_name "MET14"; transcript_biotype "protein_coding"; +chrXI SGD exon 438777 439385 . - 0 transcript_id "YKL001C_id003"; gene_name "MET14"; gene_id "YKL001C"; +chrXI SGD gene 440466 442790 . - . gene_id "YKR001C"; gene_biotype "protein_coding"; +chrXI SGD transcript 440466 442790 . - . transcript_id "YKR001C_id008"; gene_id "YKR001C"; gene_name "VPS1"; transcript_biotype "protein_coding"; +chrXI SGD exon 440466 442790 . - . transcript_id "YKR001C_id008"; gene_id "YKR001C"; gene_name "VPS1"; +chrXI SGD transcript 440608 442722 . - . transcript_id "YKR001C_id001"; gene_id "YKR001C"; gene_name "VPS1"; transcript_biotype "protein_coding"; +chrXI SGD exon 440608 442722 . - 0 transcript_id "YKR001C_id001"; gene_name "VPS1"; gene_id "YKR001C"; +chrXI SGD gene 442981 445035 . + . gene_id "YKR002W"; gene_biotype "protein_coding"; +chrXI SGD transcript 442981 445035 . + . transcript_id "YKR002W_id002"; gene_id "YKR002W"; gene_name "PAP1"; transcript_biotype "protein_coding"; +chrXI SGD exon 442981 445035 . + . transcript_id "YKR002W_id002"; gene_id "YKR002W"; gene_name "PAP1"; +chrXI SGD transcript 443232 444938 . + . transcript_id "YKR002W_id001"; gene_id "YKR002W"; gene_name "PAP1"; transcript_biotype "protein_coding"; +chrXI SGD exon 443232 444938 . + 0 transcript_id "YKR002W_id001"; gene_name "PAP1"; gene_id "YKR002W"; +chrXI SGD gene 444864 446816 . + . gene_id "YKR003W"; gene_biotype "protein_coding"; +chrXI SGD transcript 444864 446816 . + . transcript_id "YKR003W_id001"; gene_id "YKR003W"; gene_name "OSH6"; transcript_biotype "protein_coding"; +chrXI SGD exon 444864 446816 . + . transcript_id "YKR003W_id001"; gene_id "YKR003W"; gene_name "OSH6"; +chrXI SGD transcript 445381 446727 . + . transcript_id "YKR003W_id004"; gene_id "YKR003W"; gene_name "OSH6"; transcript_biotype "protein_coding"; +chrXI SGD exon 445381 446727 . + 0 transcript_id "YKR003W_id004"; gene_name "OSH6"; gene_id "YKR003W"; +chrXI SGD gene 446203 448083 . - . gene_id "YKR004C"; gene_biotype "protein_coding"; +chrXI SGD transcript 446203 448083 . - . transcript_id "YKR004C_id002"; gene_id "YKR004C"; gene_name "ECM9"; transcript_biotype "protein_coding"; +chrXI SGD exon 446203 448083 . - . transcript_id "YKR004C_id002"; gene_id "YKR004C"; gene_name "ECM9"; +chrXI SGD transcript 446799 448036 . - . transcript_id "YKR004C_id001"; gene_id "YKR004C"; gene_name "ECM9"; transcript_biotype "protein_coding"; +chrXI SGD exon 446799 447706 . - 2 transcript_id "YKR004C_id001"; gene_name "ECM9"; gene_id "YKR004C"; +chrXI SGD exon 447811 448036 . - 0 transcript_id "YKR004C_id001"; gene_name "ECM9"; gene_id "YKR004C"; +chrXI SGD gene 448521 450167 . - . gene_id "YKR005C"; gene_biotype "protein_coding"; +chrXI SGD transcript 448521 450167 . - . transcript_id "YKR005C_mRNA"; gene_id "YKR005C"; transcript_biotype "protein_coding"; +chrXI SGD CDS 448521 449951 . - 0 transcript_id "YKR005C_mRNA"; gene_id "YKR005C"; +chrXI SGD CDS 450021 450167 . - 0 transcript_id "YKR005C_mRNA"; gene_id "YKR005C"; +chrXI SGD gene 450332 451270 . - . gene_id "YKR006C"; gene_biotype "protein_coding"; +chrXI SGD transcript 450332 451270 . - . transcript_id "YKR006C_id002"; gene_id "YKR006C"; gene_name "MRPL13"; transcript_biotype "protein_coding"; +chrXI SGD exon 450332 451270 . - . transcript_id "YKR006C_id002"; gene_id "YKR006C"; gene_name "MRPL13"; +chrXI SGD transcript 450423 451217 . - . transcript_id "YKR006C_id001"; gene_id "YKR006C"; gene_name "MRPL13"; transcript_biotype "protein_coding"; +chrXI SGD exon 450423 451217 . - 0 transcript_id "YKR006C_id001"; gene_name "MRPL13"; gene_id "YKR006C"; +chrXI SGD gene 451385 452072 . + . gene_id "YKR007W"; gene_biotype "protein_coding"; +chrXI SGD transcript 451385 452072 . + . transcript_id "YKR007W_id002"; gene_id "YKR007W"; gene_name "MEH1"; transcript_biotype "protein_coding"; +chrXI SGD exon 451385 452072 . + . transcript_id "YKR007W_id002"; gene_id "YKR007W"; gene_name "MEH1"; +chrXI SGD transcript 451434 451988 . + . transcript_id "YKR007W_id001"; gene_id "YKR007W"; gene_name "MEH1"; transcript_biotype "protein_coding"; +chrXI SGD exon 451434 451988 . + 0 transcript_id "YKR007W_id001"; gene_name "MEH1"; gene_id "YKR007W"; +chrXI SGD gene 452169 454203 . + . gene_id "YKR008W"; gene_biotype "protein_coding"; +chrXI SGD transcript 452169 454203 . + . transcript_id "YKR008W_id002"; gene_id "YKR008W"; gene_name "RSC4"; transcript_biotype "protein_coding"; +chrXI SGD exon 452169 454203 . + . transcript_id "YKR008W_id002"; gene_id "YKR008W"; gene_name "RSC4"; +chrXI SGD transcript 452201 454078 . + . transcript_id "YKR008W_id001"; gene_id "YKR008W"; gene_name "RSC4"; transcript_biotype "protein_coding"; +chrXI SGD exon 452201 454078 . + 0 transcript_id "YKR008W_id001"; gene_name "RSC4"; gene_id "YKR008W"; +chrXI SGD gene 454352 457054 . - . gene_id "YKR009C"; gene_biotype "protein_coding"; +chrXI SGD transcript 454352 457054 . - . transcript_id "YKR009C_mRNA"; gene_id "YKR009C"; gene_name "FOX2"; transcript_biotype "protein_coding"; +chrXI SGD CDS 454352 457054 . - 0 transcript_id "YKR009C_mRNA"; gene_name "FOX2"; gene_id "YKR009C"; +chrXI SGD gene 458557 458670 . + . gene_id "YNCK0016W"; gene_biotype "ncRNA"; +chrXI SGD transcript 458557 458670 . + . transcript_id "YNCK0016W_tRNA"; gene_id "YNCK0016W"; transcript_biotype "ncRNA"; +chrXI SGD exon 458557 458594 . + . transcript_id "YNCK0016W_tRNA"; gene_id "YNCK0016W"; +chrXI SGD exon 458627 458670 . + . transcript_id "YNCK0016W_tRNA"; gene_id "YNCK0016W"; +chrXI SGD gene 458783 461328 . - . gene_id "YKR010C"; gene_biotype "protein_coding"; +chrXI SGD transcript 458783 461328 . - . transcript_id "YKR010C_id002"; gene_id "YKR010C"; gene_name "TOF2"; transcript_biotype "protein_coding"; +chrXI SGD exon 458783 461328 . - . transcript_id "YKR010C_id002"; gene_id "YKR010C"; gene_name "TOF2"; +chrXI SGD transcript 458924 461239 . - . transcript_id "YKR010C_id001"; gene_id "YKR010C"; gene_name "TOF2"; transcript_biotype "protein_coding"; +chrXI SGD exon 458924 461239 . - 0 transcript_id "YKR010C_id001"; gene_name "TOF2"; gene_id "YKR010C"; +chrXI SGD gene 461524 462815 . - . gene_id "YKR011C"; gene_biotype "protein_coding"; +chrXI SGD transcript 461524 462815 . - . transcript_id "YKR011C_id007"; gene_id "YKR011C"; transcript_biotype "protein_coding"; +chrXI SGD exon 461524 462815 . - . transcript_id "YKR011C_id007"; gene_id "YKR011C"; +chrXI SGD transcript 461635 462696 . - . transcript_id "YKR011C_id001"; gene_id "YKR011C"; transcript_biotype "protein_coding"; +chrXI SGD exon 461635 462696 . - 0 transcript_id "YKR011C_id001"; gene_id "YKR011C"; +chrXI SGD gene 463660 465024 . - . gene_id "YKR012C"; gene_biotype "protein_coding"; +chrXI SGD transcript 463660 465024 . - . transcript_id "YKR012C_id002"; gene_id "YKR012C"; transcript_biotype "protein_coding"; +chrXI SGD exon 463660 465024 . - . transcript_id "YKR012C_id002"; gene_id "YKR012C"; +chrXI SGD transcript 463739 464116 . - . transcript_id "YKR012C_id001"; gene_id "YKR012C"; transcript_biotype "protein_coding"; +chrXI SGD exon 463739 464116 . - 0 transcript_id "YKR012C_id001"; gene_id "YKR012C"; +chrXI SGD gene 463919 465169 . + . gene_id "YKR013W"; gene_biotype "protein_coding"; +chrXI SGD transcript 463919 465169 . + . transcript_id "YKR013W_id005"; gene_id "YKR013W"; gene_name "PRY2"; transcript_biotype "protein_coding"; +chrXI SGD exon 463919 465169 . + . transcript_id "YKR013W_id005"; gene_id "YKR013W"; gene_name "PRY2"; +chrXI SGD transcript 463959 464948 . + . transcript_id "YKR013W_id001"; gene_id "YKR013W"; gene_name "PRY2"; transcript_biotype "protein_coding"; +chrXI SGD exon 463959 464948 . + 0 transcript_id "YKR013W_id001"; gene_name "PRY2"; gene_id "YKR013W"; +chrXI SGD gene 465227 466214 . - . gene_id "YKR014C"; gene_biotype "protein_coding"; +chrXI SGD transcript 465227 466214 . - . transcript_id "YKR014C_id003"; gene_id "YKR014C"; gene_name "YPT52"; transcript_biotype "protein_coding"; +chrXI SGD exon 465227 466214 . - . transcript_id "YKR014C_id003"; gene_id "YKR014C"; gene_name "YPT52"; +chrXI SGD transcript 465367 466071 . - . transcript_id "YKR014C_id001"; gene_id "YKR014C"; gene_name "YPT52"; transcript_biotype "protein_coding"; +chrXI SGD exon 465367 466071 . - 0 transcript_id "YKR014C_id001"; gene_name "YPT52"; gene_id "YKR014C"; +chrXI SGD gene 466961 468667 . - . gene_id "YKR015C"; gene_biotype "protein_coding"; +chrXI SGD transcript 466961 468667 . - . transcript_id "YKR015C_id001"; gene_id "YKR015C"; transcript_biotype "protein_coding"; +chrXI SGD exon 466961 468667 . - 0 transcript_id "YKR015C_id001"; gene_id "YKR015C"; +chrXI SGD gene 469666 471615 . + . gene_id "YKR016W"; gene_biotype "protein_coding"; +chrXI SGD transcript 469666 471615 . + . transcript_id "YKR016W_id004"; gene_id "YKR016W"; gene_name "MIC60"; transcript_biotype "protein_coding"; +chrXI SGD exon 469666 471615 . + . transcript_id "YKR016W_id004"; gene_id "YKR016W"; gene_name "MIC60"; +chrXI SGD transcript 469717 471339 . + . transcript_id "YKR016W_id001"; gene_id "YKR016W"; gene_name "MIC60"; transcript_biotype "protein_coding"; +chrXI SGD exon 469717 471339 . + 0 transcript_id "YKR016W_id001"; gene_name "MIC60"; gene_id "YKR016W"; +chrXI SGD gene 471514 473464 . - . gene_id "YKR017C"; gene_biotype "protein_coding"; +chrXI SGD transcript 471514 473464 . - . transcript_id "YKR017C_id002"; gene_id "YKR017C"; gene_name "HEL1"; transcript_biotype "protein_coding"; +chrXI SGD exon 471514 473464 . - . transcript_id "YKR017C_id002"; gene_id "YKR017C"; gene_name "HEL1"; +chrXI SGD transcript 471694 473349 . - . transcript_id "YKR017C_id001"; gene_id "YKR017C"; gene_name "HEL1"; transcript_biotype "protein_coding"; +chrXI SGD exon 471694 473349 . - 0 transcript_id "YKR017C_id001"; gene_name "HEL1"; gene_id "YKR017C"; +chrXI SGD gene 473382 475922 . - . gene_id "YKR018C"; gene_biotype "protein_coding"; +chrXI SGD transcript 473382 475922 . - . transcript_id "YKR018C_id003"; gene_id "YKR018C"; transcript_biotype "protein_coding"; +chrXI SGD exon 473382 475922 . - . transcript_id "YKR018C_id003"; gene_id "YKR018C"; +chrXI SGD transcript 473723 475900 . - . transcript_id "YKR018C_id001"; gene_id "YKR018C"; transcript_biotype "protein_coding"; +chrXI SGD exon 473723 475900 . - 0 transcript_id "YKR018C_id001"; gene_id "YKR018C"; +chrXI SGD gene 476060 478174 . - . gene_id "YKR019C"; gene_biotype "protein_coding"; +chrXI SGD transcript 476060 478174 . - . transcript_id "YKR019C_id002"; gene_id "YKR019C"; gene_name "IRS4"; transcript_biotype "protein_coding"; +chrXI SGD exon 476060 478174 . - . transcript_id "YKR019C_id002"; gene_id "YKR019C"; gene_name "IRS4"; +chrXI SGD transcript 476216 478063 . - . transcript_id "YKR019C_id001"; gene_id "YKR019C"; gene_name "IRS4"; transcript_biotype "protein_coding"; +chrXI SGD exon 476216 478063 . - 0 transcript_id "YKR019C_id001"; gene_name "IRS4"; gene_id "YKR019C"; +chrXI SGD gene 478306 479186 . + . gene_id "YKR020W"; gene_biotype "protein_coding"; +chrXI SGD transcript 478306 479186 . + . transcript_id "YKR020W_id004"; gene_id "YKR020W"; gene_name "VPS51"; transcript_biotype "protein_coding"; +chrXI SGD exon 478306 479186 . + . transcript_id "YKR020W_id004"; gene_id "YKR020W"; gene_name "VPS51"; +chrXI SGD transcript 478338 478832 . + . transcript_id "YKR020W_id001"; gene_id "YKR020W"; gene_name "VPS51"; transcript_biotype "protein_coding"; +chrXI SGD exon 478338 478832 . + 0 transcript_id "YKR020W_id001"; gene_name "VPS51"; gene_id "YKR020W"; +chrXI SGD gene 479234 481981 . + . gene_id "YKR021W"; gene_biotype "protein_coding"; +chrXI SGD transcript 479234 481981 . + . transcript_id "YKR021W_id001"; gene_id "YKR021W"; gene_name "ALY1"; transcript_biotype "protein_coding"; +chrXI SGD exon 479234 481981 . + 0 transcript_id "YKR021W_id001"; gene_name "ALY1"; gene_id "YKR021W"; +chrXI SGD gene 482040 483226 . - . gene_id "YKR022C"; gene_biotype "protein_coding"; +chrXI SGD transcript 482040 483226 . - . transcript_id "YKR022C_id005"; gene_id "YKR022C"; gene_name "NTR2"; transcript_biotype "protein_coding"; +chrXI SGD exon 482040 483226 . - . transcript_id "YKR022C_id005"; gene_id "YKR022C"; gene_name "NTR2"; +chrXI SGD transcript 482171 483139 . - . transcript_id "YKR022C_id001"; gene_id "YKR022C"; gene_name "NTR2"; transcript_biotype "protein_coding"; +chrXI SGD exon 482171 483139 . - 0 transcript_id "YKR022C_id001"; gene_name "NTR2"; gene_id "YKR022C"; +chrXI SGD gene 483358 485105 . + . gene_id "YKR023W"; gene_biotype "protein_coding"; +chrXI SGD transcript 483358 485105 . + . transcript_id "YKR023W_id002"; gene_id "YKR023W"; gene_name "RQT4"; transcript_biotype "protein_coding"; +chrXI SGD exon 483358 485105 . + . transcript_id "YKR023W_id002"; gene_id "YKR023W"; gene_name "RQT4"; +chrXI SGD transcript 483419 485011 . + . transcript_id "YKR023W_id001"; gene_id "YKR023W"; gene_name "RQT4"; transcript_biotype "protein_coding"; +chrXI SGD exon 483419 485011 . + 0 transcript_id "YKR023W_id001"; gene_name "RQT4"; gene_id "YKR023W"; +chrXI SGD gene 485013 487414 . - . gene_id "YKR024C"; gene_biotype "protein_coding"; +chrXI SGD transcript 485013 487414 . - . transcript_id "YKR024C_id001"; gene_id "YKR024C"; gene_name "DBP7"; transcript_biotype "protein_coding"; +chrXI SGD exon 485013 487414 . - . transcript_id "YKR024C_id001"; gene_id "YKR024C"; gene_name "DBP7"; +chrXI SGD transcript 485144 487372 . - . transcript_id "YKR024C_id003"; gene_id "YKR024C"; gene_name "DBP7"; transcript_biotype "protein_coding"; +chrXI SGD exon 485144 487372 . - 0 transcript_id "YKR024C_id003"; gene_name "DBP7"; gene_id "YKR024C"; +chrXI SGD gene 487710 488756 . + . gene_id "YKR025W"; gene_biotype "protein_coding"; +chrXI SGD transcript 487710 488756 . + . transcript_id "YKR025W_id002"; gene_id "YKR025W"; gene_name "RPC37"; transcript_biotype "protein_coding"; +chrXI SGD exon 487710 488756 . + . transcript_id "YKR025W_id002"; gene_id "YKR025W"; gene_name "RPC37"; +chrXI SGD transcript 487770 488618 . + . transcript_id "YKR025W_id001"; gene_id "YKR025W"; gene_name "RPC37"; transcript_biotype "protein_coding"; +chrXI SGD exon 487770 488618 . + 0 transcript_id "YKR025W_id001"; gene_name "RPC37"; gene_id "YKR025W"; +chrXI SGD gene 488553 489799 . - . gene_id "YKR026C"; gene_biotype "protein_coding"; +chrXI SGD transcript 488553 489799 . - . transcript_id "YKR026C_id003"; gene_id "YKR026C"; gene_name "GCN3"; transcript_biotype "protein_coding"; +chrXI SGD exon 488553 489799 . - . transcript_id "YKR026C_id003"; gene_id "YKR026C"; gene_name "GCN3"; +chrXI SGD transcript 488738 489655 . - . transcript_id "YKR026C_id001"; gene_id "YKR026C"; gene_name "GCN3"; transcript_biotype "protein_coding"; +chrXI SGD exon 488738 489655 . - 0 transcript_id "YKR026C_id001"; gene_name "GCN3"; gene_id "YKR026C"; +chrXI SGD gene 490968 491040 . + . gene_id "YNCK0017W"; gene_biotype "ncRNA"; +chrXI SGD transcript 490968 491040 . + . transcript_id "YNCK0017W_tRNA"; gene_id "YNCK0017W"; transcript_biotype "ncRNA"; +chrXI SGD exon 490968 491040 . + . transcript_id "YNCK0017W_tRNA"; gene_id "YNCK0017W"; +chrXI SGD gene 491357 494146 . + . gene_id "YKR027W"; gene_biotype "protein_coding"; +chrXI SGD transcript 491357 494146 . + . transcript_id "YKR027W_id001"; gene_id "YKR027W"; gene_name "BCH2"; transcript_biotype "protein_coding"; +chrXI SGD exon 491357 494146 . + . transcript_id "YKR027W_id001"; gene_id "YKR027W"; gene_name "BCH2"; +chrXI SGD transcript 491364 493661 . + . transcript_id "YKR027W_id003"; gene_id "YKR027W"; gene_name "BCH2"; transcript_biotype "protein_coding"; +chrXI SGD exon 491364 493661 . + 0 transcript_id "YKR027W_id003"; gene_name "BCH2"; gene_id "YKR027W"; +chrXI SGD gene 494257 497358 . + . gene_id "YKR028W"; gene_biotype "protein_coding"; +chrXI SGD transcript 494257 497358 . + . transcript_id "YKR028W_id001"; gene_id "YKR028W"; gene_name "SAP190"; transcript_biotype "protein_coding"; +chrXI SGD exon 494257 497358 . + 0 transcript_id "YKR028W_id001"; gene_name "SAP190"; gene_id "YKR028W"; +chrXI SGD gene 497485 499838 . - . gene_id "YKR029C"; gene_biotype "protein_coding"; +chrXI SGD transcript 497485 499838 . - . transcript_id "YKR029C_id003"; gene_id "YKR029C"; gene_name "SET3"; transcript_biotype "protein_coding"; +chrXI SGD exon 497485 499838 . - . transcript_id "YKR029C_id003"; gene_id "YKR029C"; gene_name "SET3"; +chrXI SGD transcript 497578 499833 . - . transcript_id "YKR029C_id001"; gene_id "YKR029C"; gene_name "SET3"; transcript_biotype "protein_coding"; +chrXI SGD exon 497578 499833 . - 0 transcript_id "YKR029C_id001"; gene_name "SET3"; gene_id "YKR029C"; +chrXI SGD gene 500060 501219 . + . gene_id "YKR030W"; gene_biotype "protein_coding"; +chrXI SGD transcript 500060 501219 . + . transcript_id "YKR030W_id003"; gene_id "YKR030W"; gene_name "GMH1"; transcript_biotype "protein_coding"; +chrXI SGD exon 500060 501219 . + . transcript_id "YKR030W_id003"; gene_id "YKR030W"; gene_name "GMH1"; +chrXI SGD transcript 500282 501103 . + . transcript_id "YKR030W_id001"; gene_id "YKR030W"; gene_name "GMH1"; transcript_biotype "protein_coding"; +chrXI SGD exon 500282 501103 . + 0 transcript_id "YKR030W_id001"; gene_name "GMH1"; gene_id "YKR030W"; +chrXI SGD gene 501344 506395 . - . gene_id "YKR031C"; gene_biotype "protein_coding"; +chrXI SGD transcript 501344 506395 . - . transcript_id "YKR031C_mRNA"; gene_id "YKR031C"; gene_name "SPO14"; transcript_biotype "protein_coding"; +chrXI SGD CDS 501344 506395 . - 0 transcript_id "YKR031C_mRNA"; gene_name "SPO14"; gene_id "YKR031C"; +chrXI SGD gene 506517 506831 . + . gene_id "YKR032W"; gene_biotype "protein_coding"; +chrXI SGD transcript 506517 506831 . + . transcript_id "YKR032W_mRNA"; gene_id "YKR032W"; transcript_biotype "protein_coding"; +chrXI SGD CDS 506517 506831 . + 0 transcript_id "YKR032W_mRNA"; gene_id "YKR032W"; +chrXI SGD gene 506879 507304 . - . gene_id "YKR033C"; gene_biotype "protein_coding"; +chrXI SGD transcript 506879 507304 . - . transcript_id "YKR033C_mRNA"; gene_id "YKR033C"; transcript_biotype "protein_coding"; +chrXI SGD CDS 506879 507304 . - 0 transcript_id "YKR033C_mRNA"; gene_id "YKR033C"; +chrXI SGD gene 506898 507707 . + . gene_id "YKR034W"; gene_biotype "protein_coding"; +chrXI SGD transcript 506898 507707 . + . transcript_id "YKR034W_mRNA"; gene_id "YKR034W"; gene_name "DAL80"; transcript_biotype "protein_coding"; +chrXI SGD CDS 506898 507707 . + 0 transcript_id "YKR034W_mRNA"; gene_name "DAL80"; gene_id "YKR034W"; +chrXI SGD gene 507920 508561 . - . gene_id "YKR035C"; gene_biotype "protein_coding"; +chrXI SGD transcript 507920 508561 . - . transcript_id "YKR035C_mRNA"; gene_id "YKR035C"; gene_name "OPI8"; transcript_biotype "protein_coding"; +chrXI SGD CDS 507920 508561 . - 0 transcript_id "YKR035C_mRNA"; gene_name "OPI8"; gene_id "YKR035C"; +chrXI SGD gene 507926 508740 . + . gene_id "YKR035W-A"; gene_biotype "protein_coding"; +chrXI SGD transcript 507926 508740 . + . transcript_id "YKR035W-A_id005"; gene_id "YKR035W-A"; gene_name "DID2"; transcript_biotype "protein_coding"; +chrXI SGD exon 507926 508740 . + . transcript_id "YKR035W-A_id005"; gene_id "YKR035W-A"; gene_name "DID2"; +chrXI SGD transcript 507939 508553 . + . transcript_id "YKR035W-A_id001"; gene_id "YKR035W-A"; gene_name "DID2"; transcript_biotype "protein_coding"; +chrXI SGD exon 507939 508553 . + 0 transcript_id "YKR035W-A_id001"; gene_name "DID2"; gene_id "YKR035W-A"; +chrXI SGD gene 508547 510657 . - . gene_id "YKR036C"; gene_biotype "protein_coding"; +chrXI SGD transcript 508547 510657 . - . transcript_id "YKR036C_id001"; gene_id "YKR036C"; gene_name "CAF4"; transcript_biotype "protein_coding"; +chrXI SGD exon 508547 510657 . - . transcript_id "YKR036C_id001"; gene_id "YKR036C"; gene_name "CAF4"; +chrXI SGD transcript 508702 510633 . - . transcript_id "YKR036C_id003"; gene_id "YKR036C"; gene_name "CAF4"; transcript_biotype "protein_coding"; +chrXI SGD exon 508702 510633 . - 0 transcript_id "YKR036C_id003"; gene_name "CAF4"; gene_id "YKR036C"; +chrXI SGD gene 510744 511859 . - . gene_id "YKR037C"; gene_biotype "protein_coding"; +chrXI SGD transcript 510744 511859 . - . transcript_id "YKR037C_id001"; gene_id "YKR037C"; gene_name "SPC34"; transcript_biotype "protein_coding"; +chrXI SGD exon 510744 511859 . - . transcript_id "YKR037C_id001"; gene_id "YKR037C"; gene_name "SPC34"; +chrXI SGD transcript 510910 511797 . - . transcript_id "YKR037C_id003"; gene_id "YKR037C"; gene_name "SPC34"; transcript_biotype "protein_coding"; +chrXI SGD exon 510910 511797 . - 0 transcript_id "YKR037C_id003"; gene_name "SPC34"; gene_id "YKR037C"; +chrXI SGD gene 511822 513177 . - . gene_id "YKR038C"; gene_biotype "protein_coding"; +chrXI SGD transcript 511822 513177 . - . transcript_id "YKR038C_id002"; gene_id "YKR038C"; gene_name "KAE1"; transcript_biotype "protein_coding"; +chrXI SGD exon 511822 513177 . - . transcript_id "YKR038C_id002"; gene_id "YKR038C"; gene_name "KAE1"; +chrXI SGD transcript 511999 513159 . - . transcript_id "YKR038C_id001"; gene_id "YKR038C"; gene_name "KAE1"; transcript_biotype "protein_coding"; +chrXI SGD exon 511999 513159 . - 0 transcript_id "YKR038C_id001"; gene_name "KAE1"; gene_id "YKR038C"; +chrXI SGD gene 513332 513403 . - . gene_id "YNCK0018C"; gene_biotype "ncRNA"; +chrXI SGD transcript 513332 513403 . - . transcript_id "YNCK0018C_tRNA"; gene_id "YNCK0018C"; transcript_biotype "ncRNA"; +chrXI SGD exon 513332 513403 . - . transcript_id "YNCK0018C_tRNA"; gene_id "YNCK0018C"; +chrXI SGD gene 514960 517021 . + . gene_id "YKR039W"; gene_biotype "protein_coding"; +chrXI SGD transcript 514960 517021 . + . transcript_id "YKR039W_id001"; gene_id "YKR039W"; gene_name "GAP1"; transcript_biotype "protein_coding"; +chrXI SGD exon 514960 517021 . + . transcript_id "YKR039W_id001"; gene_id "YKR039W"; gene_name "GAP1"; +chrXI SGD transcript 515063 516871 . + . transcript_id "YKR039W_id002"; gene_id "YKR039W"; gene_name "GAP1"; transcript_biotype "protein_coding"; +chrXI SGD exon 515063 516871 . + 0 transcript_id "YKR039W_id002"; gene_name "GAP1"; gene_id "YKR039W"; +chrXI SGD gene 517988 518060 . + . gene_id "YNCK0019W"; gene_biotype "ncRNA"; +chrXI SGD transcript 517988 518060 . + . transcript_id "YNCK0019W_tRNA"; gene_id "YNCK0019W"; transcript_biotype "ncRNA"; +chrXI SGD exon 517988 518060 . + . transcript_id "YNCK0019W_tRNA"; gene_id "YNCK0019W"; +chrXI SGD gene 518063 518566 . - . gene_id "YKR040C"; gene_biotype "protein_coding"; +chrXI SGD transcript 518063 518566 . - . transcript_id "YKR040C_mRNA"; gene_id "YKR040C"; transcript_biotype "protein_coding"; +chrXI SGD CDS 518063 518566 . - 0 transcript_id "YKR040C_mRNA"; gene_id "YKR040C"; +chrXI SGD gene 518179 519367 . + . gene_id "YKR041W"; gene_biotype "protein_coding"; +chrXI SGD transcript 518179 519367 . + . transcript_id "YKR041W_id003"; gene_id "YKR041W"; transcript_biotype "protein_coding"; +chrXI SGD exon 518179 519367 . + . transcript_id "YKR041W_id003"; gene_id "YKR041W"; +chrXI SGD transcript 518198 518950 . + . transcript_id "YKR041W_id001"; gene_id "YKR041W"; transcript_biotype "protein_coding"; +chrXI SGD exon 518198 518950 . + 0 transcript_id "YKR041W_id001"; gene_id "YKR041W"; +chrXI SGD gene 519154 520831 . + . gene_id "YKR042W"; gene_biotype "protein_coding"; +chrXI SGD transcript 519154 520831 . + . transcript_id "YKR042W_id003"; gene_id "YKR042W"; gene_name "UTH1"; transcript_biotype "protein_coding"; +chrXI SGD exon 519154 520831 . + . transcript_id "YKR042W_id003"; gene_id "YKR042W"; gene_name "UTH1"; +chrXI SGD transcript 519527 520624 . + . transcript_id "YKR042W_id001"; gene_id "YKR042W"; gene_name "UTH1"; transcript_biotype "protein_coding"; +chrXI SGD exon 519527 520624 . + 0 transcript_id "YKR042W_id001"; gene_name "UTH1"; gene_id "YKR042W"; +chrXI SGD gene 520638 521734 . - . gene_id "YKR043C"; gene_biotype "protein_coding"; +chrXI SGD transcript 520638 521734 . - . transcript_id "YKR043C_id002"; gene_id "YKR043C"; gene_name "SHB17"; transcript_biotype "protein_coding"; +chrXI SGD exon 520638 521734 . - . transcript_id "YKR043C_id002"; gene_id "YKR043C"; gene_name "SHB17"; +chrXI SGD transcript 520897 521712 . - . transcript_id "YKR043C_id001"; gene_id "YKR043C"; gene_name "SHB17"; transcript_biotype "protein_coding"; +chrXI SGD exon 520897 521712 . - 0 transcript_id "YKR043C_id001"; gene_name "SHB17"; gene_id "YKR043C"; +chrXI SGD gene 521871 523997 . - . gene_id "YKR045C"; gene_biotype "protein_coding"; +chrXI SGD transcript 521871 523997 . - . transcript_id "YKR045C_id003"; gene_id "YKR045C"; transcript_biotype "protein_coding"; +chrXI SGD exon 521871 523997 . - . transcript_id "YKR045C_id003"; gene_id "YKR045C"; +chrXI SGD gene 521955 523595 . + . gene_id "YKR044W"; gene_biotype "protein_coding"; +chrXI SGD transcript 521955 523595 . + . transcript_id "YKR044W_id002"; gene_id "YKR044W"; gene_name "UIP5"; transcript_biotype "protein_coding"; +chrXI SGD exon 521955 523595 . + . transcript_id "YKR044W_id002"; gene_id "YKR044W"; gene_name "UIP5"; +chrXI SGD transcript 522015 523346 . + . transcript_id "YKR044W_id001"; gene_id "YKR044W"; gene_name "UIP5"; transcript_biotype "protein_coding"; +chrXI SGD exon 522015 523346 . + 0 transcript_id "YKR044W_id001"; gene_name "UIP5"; gene_id "YKR044W"; +chrXI SGD transcript 523418 523969 . - . transcript_id "YKR045C_id001"; gene_id "YKR045C"; transcript_biotype "protein_coding"; +chrXI SGD exon 523418 523969 . - 0 transcript_id "YKR045C_id001"; gene_id "YKR045C"; +chrXI SGD gene 524059 525112 . - . gene_id "YKR046C"; gene_biotype "protein_coding"; +chrXI SGD transcript 524059 525112 . - . transcript_id "YKR046C_id004"; gene_id "YKR046C"; gene_name "PLN1"; transcript_biotype "protein_coding"; +chrXI SGD exon 524059 525112 . - . transcript_id "YKR046C_id004"; gene_id "YKR046C"; gene_name "PLN1"; +chrXI SGD transcript 524223 525074 . - . transcript_id "YKR046C_id001"; gene_id "YKR046C"; gene_name "PLN1"; transcript_biotype "protein_coding"; +chrXI SGD exon 524223 525074 . - 0 transcript_id "YKR046C_id001"; gene_name "PLN1"; gene_id "YKR046C"; +chrXI SGD gene 525222 526659 . - . gene_id "YKR048C"; gene_biotype "protein_coding"; +chrXI SGD transcript 525222 526659 . - . transcript_id "YKR048C_id004"; gene_id "YKR048C"; gene_name "NAP1"; transcript_biotype "protein_coding"; +chrXI SGD exon 525222 526659 . - . transcript_id "YKR048C_id004"; gene_id "YKR048C"; gene_name "NAP1"; +chrXI SGD gene 525257 525562 . + . gene_id "YKR047W"; gene_biotype "protein_coding"; +chrXI SGD transcript 525257 525562 . + . transcript_id "YKR047W_mRNA"; gene_id "YKR047W"; transcript_biotype "protein_coding"; +chrXI SGD CDS 525257 525562 . + 0 transcript_id "YKR047W_mRNA"; gene_id "YKR047W"; +chrXI SGD transcript 525387 526640 . - . transcript_id "YKR048C_id001"; gene_id "YKR048C"; gene_name "NAP1"; transcript_biotype "protein_coding"; +chrXI SGD exon 525387 526640 . - 0 transcript_id "YKR048C_id001"; gene_name "NAP1"; gene_id "YKR048C"; +chrXI SGD gene 526777 527651 . - . gene_id "YKR049C"; gene_biotype "protein_coding"; +chrXI SGD transcript 526777 527651 . - . transcript_id "YKR049C_id001"; gene_id "YKR049C"; gene_name "FMP46"; transcript_biotype "protein_coding"; +chrXI SGD exon 526777 527651 . - . transcript_id "YKR049C_id001"; gene_id "YKR049C"; gene_name "FMP46"; +chrXI SGD transcript 526830 527231 . - . transcript_id "YKR049C_id004"; gene_id "YKR049C"; gene_name "FMP46"; transcript_biotype "protein_coding"; +chrXI SGD exon 526830 527231 . - 0 transcript_id "YKR049C_id004"; gene_name "FMP46"; gene_id "YKR049C"; +chrXI SGD gene 526860 530612 . + . gene_id "YKR050W"; gene_biotype "protein_coding"; +chrXI SGD transcript 526860 530612 . + . transcript_id "YKR050W_id001"; gene_id "YKR050W"; gene_name "TRK2"; transcript_biotype "protein_coding"; +chrXI SGD exon 526860 530612 . + . transcript_id "YKR050W_id001"; gene_id "YKR050W"; gene_name "TRK2"; +chrXI SGD transcript 527815 530484 . + . transcript_id "YKR050W_id002"; gene_id "YKR050W"; gene_name "TRK2"; transcript_biotype "protein_coding"; +chrXI SGD exon 527815 530484 . + 0 transcript_id "YKR050W_id002"; gene_name "TRK2"; gene_id "YKR050W"; +chrXI SGD gene 530819 532278 . + . gene_id "YKR051W"; gene_biotype "protein_coding"; +chrXI SGD transcript 530819 532278 . + . transcript_id "YKR051W_id009"; gene_id "YKR051W"; gene_name "HFL1"; transcript_biotype "protein_coding"; +chrXI SGD exon 530819 532278 . + . transcript_id "YKR051W_id009"; gene_id "YKR051W"; gene_name "HFL1"; +chrXI SGD transcript 530946 532202 . + . transcript_id "YKR051W_id001"; gene_id "YKR051W"; gene_name "HFL1"; transcript_biotype "protein_coding"; +chrXI SGD exon 530946 532202 . + 0 transcript_id "YKR051W_id001"; gene_name "HFL1"; gene_id "YKR051W"; +chrXI SGD gene 532182 533830 . - . gene_id "YKR052C"; gene_biotype "protein_coding"; +chrXI SGD transcript 532182 533830 . - . transcript_id "YKR052C_id002"; gene_id "YKR052C"; gene_name "MRS4"; transcript_biotype "protein_coding"; +chrXI SGD exon 532182 533830 . - . transcript_id "YKR052C_id002"; gene_id "YKR052C"; gene_name "MRS4"; +chrXI SGD transcript 532550 533464 . - . transcript_id "YKR052C_id001"; gene_id "YKR052C"; gene_name "MRS4"; transcript_biotype "protein_coding"; +chrXI SGD exon 532550 533464 . - 0 transcript_id "YKR052C_id001"; gene_name "MRS4"; gene_id "YKR052C"; +chrXI SGD gene 533976 536090 . - . gene_id "YKR053C"; gene_biotype "protein_coding"; +chrXI SGD transcript 533976 536090 . - . transcript_id "YKR053C_id002"; gene_id "YKR053C"; gene_name "YSR3"; transcript_biotype "protein_coding"; +chrXI SGD exon 533976 536090 . - . transcript_id "YKR053C_id002"; gene_id "YKR053C"; gene_name "YSR3"; +chrXI SGD transcript 534067 535281 . - . transcript_id "YKR053C_id001"; gene_id "YKR053C"; gene_name "YSR3"; transcript_biotype "protein_coding"; +chrXI SGD exon 534067 535281 . - 0 transcript_id "YKR053C_id001"; gene_name "YSR3"; gene_id "YKR053C"; +chrXI SGD gene 535647 547925 . - . gene_id "YKR054C"; gene_biotype "protein_coding"; +chrXI SGD transcript 535647 547925 . - . transcript_id "YKR054C_mRNA"; gene_id "YKR054C"; gene_name "DYN1"; transcript_biotype "protein_coding"; +chrXI SGD CDS 535647 547925 . - 0 transcript_id "YKR054C_mRNA"; gene_name "DYN1"; gene_id "YKR054C"; +chrXI SGD gene 548165 549483 . + . gene_id "YKR055W"; gene_biotype "protein_coding"; +chrXI SGD transcript 548165 549483 . + . transcript_id "YKR055W_id002"; gene_id "YKR055W"; gene_name "RHO4"; transcript_biotype "protein_coding"; +chrXI SGD exon 548165 549483 . + . transcript_id "YKR055W_id002"; gene_id "YKR055W"; gene_name "RHO4"; +chrXI SGD transcript 548216 549091 . + . transcript_id "YKR055W_id001"; gene_id "YKR055W"; gene_name "RHO4"; transcript_biotype "protein_coding"; +chrXI SGD exon 548216 549091 . + 0 transcript_id "YKR055W_id001"; gene_name "RHO4"; gene_id "YKR055W"; +chrXI SGD gene 549448 551367 . + . gene_id "YKR056W"; gene_biotype "protein_coding"; +chrXI SGD transcript 549448 551367 . + . transcript_id "YKR056W_mRNA"; gene_id "YKR056W"; gene_name "TRM2"; transcript_biotype "protein_coding"; +chrXI SGD CDS 549448 551367 . + 0 transcript_id "YKR056W_mRNA"; gene_name "TRM2"; gene_id "YKR056W"; +chrXI SGD gene 551627 552533 . + . gene_id "YKR057W"; gene_biotype "protein_coding"; +chrXI SGD transcript 551627 552533 . + . transcript_id "YKR057W_id002"; gene_id "YKR057W"; gene_name "RPS21A"; transcript_biotype "protein_coding"; +chrXI SGD exon 551627 552533 . + . transcript_id "YKR057W_id002"; gene_id "YKR057W"; gene_name "RPS21A"; +chrXI SGD transcript 551657 552242 . + . transcript_id "YKR057W_id001"; gene_id "YKR057W"; gene_name "RPS21A"; transcript_biotype "protein_coding"; +chrXI SGD exon 551657 551680 . + 0 transcript_id "YKR057W_id001"; gene_name "RPS21A"; gene_id "YKR057W"; +chrXI SGD exon 552003 552242 . + 0 transcript_id "YKR057W_id001"; gene_name "RPS21A"; gene_id "YKR057W"; +chrXI SGD gene 552598 554730 . + . gene_id "YKR058W"; gene_biotype "protein_coding"; +chrXI SGD transcript 552598 554730 . + . transcript_id "YKR058W_id007"; gene_id "YKR058W"; gene_name "GLG1"; transcript_biotype "protein_coding"; +chrXI SGD exon 552598 554730 . + . transcript_id "YKR058W_id007"; gene_id "YKR058W"; gene_name "GLG1"; +chrXI SGD transcript 552770 554620 . + . transcript_id "YKR058W_id001"; gene_id "YKR058W"; gene_name "GLG1"; transcript_biotype "protein_coding"; +chrXI SGD exon 552770 554620 . + 0 transcript_id "YKR058W_id001"; gene_name "GLG1"; gene_id "YKR058W"; +chrXI SGD gene 554871 556456 . + . gene_id "YKR059W"; gene_biotype "protein_coding"; +chrXI SGD transcript 554871 556456 . + . transcript_id "YKR059W_id001"; gene_id "YKR059W"; gene_name "TIF1"; transcript_biotype "protein_coding"; +chrXI SGD exon 554871 556456 . + . transcript_id "YKR059W_id001"; gene_id "YKR059W"; gene_name "TIF1"; +chrXI SGD transcript 554987 556174 . + . transcript_id "YKR059W_id003"; gene_id "YKR059W"; gene_name "TIF1"; transcript_biotype "protein_coding"; +chrXI SGD exon 554987 556174 . + 0 transcript_id "YKR059W_id003"; gene_name "TIF1"; gene_id "YKR059W"; +chrXI SGD gene 556494 557687 . + . gene_id "YKR060W"; gene_biotype "protein_coding"; +chrXI SGD transcript 556494 557687 . + . transcript_id "YKR060W_id006"; gene_id "YKR060W"; gene_name "UTP30"; transcript_biotype "protein_coding"; +chrXI SGD exon 556494 557687 . + . transcript_id "YKR060W_id006"; gene_id "YKR060W"; gene_name "UTP30"; +chrXI SGD transcript 556518 557342 . + . transcript_id "YKR060W_id001"; gene_id "YKR060W"; gene_name "UTP30"; transcript_biotype "protein_coding"; +chrXI SGD exon 556518 557342 . + 0 transcript_id "YKR060W_id001"; gene_name "UTP30"; gene_id "YKR060W"; +chrXI SGD gene 557542 559024 . + . gene_id "YKR061W"; gene_biotype "protein_coding"; +chrXI SGD transcript 557542 559024 . + . transcript_id "YKR061W_id005"; gene_id "YKR061W"; gene_name "KTR2"; transcript_biotype "protein_coding"; +chrXI SGD exon 557542 559024 . + . transcript_id "YKR061W_id005"; gene_id "YKR061W"; gene_name "KTR2"; +chrXI SGD transcript 557677 558954 . + . transcript_id "YKR061W_id001"; gene_id "YKR061W"; gene_name "KTR2"; transcript_biotype "protein_coding"; +chrXI SGD exon 557677 558954 . + 0 transcript_id "YKR061W_id001"; gene_name "KTR2"; gene_id "YKR061W"; +chrXI SGD gene 559016 559366 . - . gene_id "YNCK0020C"; gene_biotype "ncRNA"; +chrXI SGD transcript 559016 559366 . - . transcript_id "YNCK0020C_snoRNA"; gene_id "YNCK0020C"; gene_name "SNR42"; transcript_biotype "ncRNA"; +chrXI SGD exon 559016 559366 . - . transcript_id "YNCK0020C_snoRNA"; gene_name "SNR42"; gene_id "YNCK0020C"; +chrXI SGD gene 559645 561307 . + . gene_id "YKR062W"; gene_biotype "protein_coding"; +chrXI SGD transcript 559645 561307 . + . transcript_id "YKR062W_id006"; gene_id "YKR062W"; gene_name "TFA2"; transcript_biotype "protein_coding"; +chrXI SGD exon 559645 561307 . + . transcript_id "YKR062W_id006"; gene_id "YKR062W"; gene_name "TFA2"; +chrXI SGD transcript 559666 560652 . + . transcript_id "YKR062W_id001"; gene_id "YKR062W"; gene_name "TFA2"; transcript_biotype "protein_coding"; +chrXI SGD exon 559666 560652 . + 0 transcript_id "YKR062W_id001"; gene_name "TFA2"; gene_id "YKR062W"; +chrXI SGD gene 560596 562308 . - . gene_id "YKR063C"; gene_biotype "protein_coding"; +chrXI SGD transcript 560596 562308 . - . transcript_id "YKR063C_id002"; gene_id "YKR063C"; gene_name "LAS1"; transcript_biotype "protein_coding"; +chrXI SGD exon 560596 562308 . - . transcript_id "YKR063C_id002"; gene_id "YKR063C"; gene_name "LAS1"; +chrXI SGD transcript 560789 562297 . - . transcript_id "YKR063C_id001"; gene_id "YKR063C"; gene_name "LAS1"; transcript_biotype "protein_coding"; +chrXI SGD exon 560789 562297 . - 0 transcript_id "YKR063C_id001"; gene_name "LAS1"; gene_id "YKR063C"; +chrXI SGD gene 562498 565296 . + . gene_id "YKR064W"; gene_biotype "protein_coding"; +chrXI SGD transcript 562498 565296 . + . transcript_id "YKR064W_id002"; gene_id "YKR064W"; gene_name "OAF3"; transcript_biotype "protein_coding"; +chrXI SGD exon 562498 565296 . + . transcript_id "YKR064W_id002"; gene_id "YKR064W"; gene_name "OAF3"; +chrXI SGD transcript 562547 565138 . + . transcript_id "YKR064W_id001"; gene_id "YKR064W"; gene_name "OAF3"; transcript_biotype "protein_coding"; +chrXI SGD exon 562547 565138 . + 0 transcript_id "YKR064W_id001"; gene_name "OAF3"; gene_id "YKR064W"; +chrXI SGD gene 565088 565921 . - . gene_id "YKR065C"; gene_biotype "protein_coding"; +chrXI SGD transcript 565088 565921 . - . transcript_id "YKR065C_id005"; gene_id "YKR065C"; gene_name "PAM17"; transcript_biotype "protein_coding"; +chrXI SGD exon 565088 565921 . - . transcript_id "YKR065C_id005"; gene_id "YKR065C"; gene_name "PAM17"; +chrXI SGD transcript 565299 565892 . - . transcript_id "YKR065C_id001"; gene_id "YKR065C"; gene_name "PAM17"; transcript_biotype "protein_coding"; +chrXI SGD exon 565299 565892 . - 0 transcript_id "YKR065C_id001"; gene_name "PAM17"; gene_id "YKR065C"; +chrXI SGD gene 565986 567236 . - . gene_id "YKR066C"; gene_biotype "protein_coding"; +chrXI SGD transcript 565986 567236 . - . transcript_id "YKR066C_id002"; gene_id "YKR066C"; gene_name "CCP1"; transcript_biotype "protein_coding"; +chrXI SGD exon 565986 567236 . - . transcript_id "YKR066C_id002"; gene_id "YKR066C"; gene_name "CCP1"; +chrXI SGD transcript 566113 567198 . - . transcript_id "YKR066C_id001"; gene_id "YKR066C"; gene_name "CCP1"; transcript_biotype "protein_coding"; +chrXI SGD exon 566113 567198 . - 0 transcript_id "YKR066C_id001"; gene_name "CCP1"; gene_id "YKR066C"; +chrXI SGD gene 567792 570329 . + . gene_id "YKR067W"; gene_biotype "protein_coding"; +chrXI SGD transcript 567792 570329 . + . transcript_id "YKR067W_id001"; gene_id "YKR067W"; gene_name "GPT2"; transcript_biotype "protein_coding"; +chrXI SGD exon 567792 570329 . + . transcript_id "YKR067W_id001"; gene_id "YKR067W"; gene_name "GPT2"; +chrXI SGD transcript 567918 570149 . + . transcript_id "YKR067W_id002"; gene_id "YKR067W"; gene_name "GPT2"; transcript_biotype "protein_coding"; +chrXI SGD exon 567918 570149 . + 0 transcript_id "YKR067W_id002"; gene_name "GPT2"; gene_id "YKR067W"; +chrXI SGD gene 570209 571147 . - . gene_id "YKR068C"; gene_biotype "protein_coding"; +chrXI SGD transcript 570209 571147 . - . transcript_id "YKR068C_id001"; gene_id "YKR068C"; gene_name "BET3"; transcript_biotype "protein_coding"; +chrXI SGD exon 570209 571147 . - . transcript_id "YKR068C_id001"; gene_id "YKR068C"; gene_name "BET3"; +chrXI SGD transcript 570328 570909 . - . transcript_id "YKR068C_id002"; gene_id "YKR068C"; gene_name "BET3"; transcript_biotype "protein_coding"; +chrXI SGD exon 570328 570909 . - 0 transcript_id "YKR068C_id002"; gene_name "BET3"; gene_id "YKR068C"; +chrXI SGD gene 571431 573446 . + . gene_id "YKR069W"; gene_biotype "protein_coding"; +chrXI SGD transcript 571431 573446 . + . transcript_id "YKR069W_id001"; gene_id "YKR069W"; gene_name "MET1"; transcript_biotype "protein_coding"; +chrXI SGD exon 571431 573446 . + . transcript_id "YKR069W_id001"; gene_id "YKR069W"; gene_name "MET1"; +chrXI SGD transcript 571612 573393 . + . transcript_id "YKR069W_id003"; gene_id "YKR069W"; gene_name "MET1"; transcript_biotype "protein_coding"; +chrXI SGD exon 571612 573393 . + 0 transcript_id "YKR069W_id003"; gene_name "MET1"; gene_id "YKR069W"; +chrXI SGD gene 573554 574885 . + . gene_id "YKR070W"; gene_biotype "protein_coding"; +chrXI SGD transcript 573554 574885 . + . transcript_id "YKR070W_id002"; gene_id "YKR070W"; transcript_biotype "protein_coding"; +chrXI SGD exon 573554 574885 . + . transcript_id "YKR070W_id002"; gene_id "YKR070W"; +chrXI SGD transcript 573574 574632 . + . transcript_id "YKR070W_id001"; gene_id "YKR070W"; transcript_biotype "protein_coding"; +chrXI SGD exon 573574 574632 . + 0 transcript_id "YKR070W_id001"; gene_id "YKR070W"; +chrXI SGD gene 574597 576038 . - . gene_id "YKR071C"; gene_biotype "protein_coding"; +chrXI SGD transcript 574597 576038 . - . transcript_id "YKR071C_id001"; gene_id "YKR071C"; gene_name "DRE2"; transcript_biotype "protein_coding"; +chrXI SGD exon 574597 576038 . - . transcript_id "YKR071C_id001"; gene_id "YKR071C"; gene_name "DRE2"; +chrXI SGD transcript 574934 575980 . - . transcript_id "YKR071C_id003"; gene_id "YKR071C"; gene_name "DRE2"; transcript_biotype "protein_coding"; +chrXI SGD exon 574934 575980 . - 0 transcript_id "YKR071C_id003"; gene_name "DRE2"; gene_id "YKR071C"; +chrXI SGD gene 576216 578312 . - . gene_id "YKR072C"; gene_biotype "protein_coding"; +chrXI SGD transcript 576216 578312 . - . transcript_id "YKR072C_id001"; gene_id "YKR072C"; gene_name "SIS2"; transcript_biotype "protein_coding"; +chrXI SGD exon 576216 578312 . - . transcript_id "YKR072C_id001"; gene_id "YKR072C"; gene_name "SIS2"; +chrXI SGD transcript 576435 578123 . - . transcript_id "YKR072C_id004"; gene_id "YKR072C"; gene_name "SIS2"; transcript_biotype "protein_coding"; +chrXI SGD exon 576435 578123 . - 0 transcript_id "YKR072C_id004"; gene_name "SIS2"; gene_id "YKR072C"; +chrXI SGD gene 578187 578507 . - . gene_id "YKR073C"; gene_biotype "protein_coding"; +chrXI SGD transcript 578187 578507 . - . transcript_id "YKR073C_mRNA"; gene_id "YKR073C"; transcript_biotype "protein_coding"; +chrXI SGD CDS 578187 578507 . - 0 transcript_id "YKR073C_mRNA"; gene_id "YKR073C"; +chrXI SGD gene 578965 579060 . + . gene_id "YNCK0021W"; gene_biotype "ncRNA"; +chrXI SGD transcript 578965 579060 . + . transcript_id "YNCK0021W_tRNA"; gene_id "YNCK0021W"; transcript_biotype "ncRNA"; +chrXI SGD exon 578965 579001 . + . transcript_id "YNCK0021W_tRNA"; gene_id "YNCK0021W"; +chrXI SGD exon 579025 579060 . + . transcript_id "YNCK0021W_tRNA"; gene_id "YNCK0021W"; +chrXI SGD gene 579163 579847 . + . gene_id "YKR074W"; gene_biotype "protein_coding"; +chrXI SGD transcript 579163 579847 . + . transcript_id "YKR074W_id004"; gene_id "YKR074W"; gene_name "AIM29"; transcript_biotype "protein_coding"; +chrXI SGD exon 579163 579847 . + . transcript_id "YKR074W_id004"; gene_id "YKR074W"; gene_name "AIM29"; +chrXI SGD transcript 579209 579676 . + . transcript_id "YKR074W_id001"; gene_id "YKR074W"; gene_name "AIM29"; transcript_biotype "protein_coding"; +chrXI SGD exon 579209 579676 . + 0 transcript_id "YKR074W_id001"; gene_name "AIM29"; gene_id "YKR074W"; +chrXI SGD gene 579217 580824 . + . gene_id "YKR075W-A"; gene_biotype "protein_coding"; +chrXI SGD transcript 579217 580824 . + . transcript_id "YKR075W-A_id001"; gene_id "YKR075W-A"; transcript_biotype "protein_coding"; +chrXI SGD exon 579217 580824 . + . transcript_id "YKR075W-A_id001"; gene_id "YKR075W-A"; +chrXI SGD gene 579687 580926 . - . gene_id "YKR075C"; gene_biotype "protein_coding"; +chrXI SGD transcript 579687 580926 . - . transcript_id "YKR075C_id002"; gene_id "YKR075C"; transcript_biotype "protein_coding"; +chrXI SGD exon 579687 580926 . - . transcript_id "YKR075C_id002"; gene_id "YKR075C"; +chrXI SGD transcript 579827 580750 . - . transcript_id "YKR075C_id001"; gene_id "YKR075C"; transcript_biotype "protein_coding"; +chrXI SGD exon 579827 580750 . - 0 transcript_id "YKR075C_id001"; gene_id "YKR075C"; +chrXI SGD transcript 580212 580481 . + . transcript_id "YKR075W-A_id002"; gene_id "YKR075W-A"; transcript_biotype "protein_coding"; +chrXI SGD exon 580212 580481 . + 0 transcript_id "YKR075W-A_id002"; gene_id "YKR075W-A"; +chrXI SGD gene 581988 583543 . + . gene_id "YKR076W"; gene_biotype "protein_coding"; +chrXI SGD transcript 581988 583543 . + . transcript_id "YKR076W_id001"; gene_id "YKR076W"; gene_name "ECM4"; transcript_biotype "protein_coding"; +chrXI SGD exon 581988 583543 . + . transcript_id "YKR076W_id001"; gene_id "YKR076W"; gene_name "ECM4"; +chrXI SGD transcript 582283 583395 . + . transcript_id "YKR076W_id002"; gene_id "YKR076W"; gene_name "ECM4"; transcript_biotype "protein_coding"; +chrXI SGD exon 582283 583395 . + 0 transcript_id "YKR076W_id002"; gene_name "ECM4"; gene_id "YKR076W"; +chrXI SGD gene 583562 584848 . + . gene_id "YKR077W"; gene_biotype "protein_coding"; +chrXI SGD transcript 583562 584848 . + . transcript_id "YKR077W_id002"; gene_id "YKR077W"; gene_name "MSA2"; transcript_biotype "protein_coding"; +chrXI SGD exon 583562 584848 . + . transcript_id "YKR077W_id002"; gene_id "YKR077W"; gene_name "MSA2"; +chrXI SGD transcript 583653 584744 . + . transcript_id "YKR077W_id001"; gene_id "YKR077W"; gene_name "MSA2"; transcript_biotype "protein_coding"; +chrXI SGD exon 583653 584744 . + 0 transcript_id "YKR077W_id001"; gene_name "MSA2"; gene_id "YKR077W"; +chrXI SGD gene 584935 586752 . + . gene_id "YKR078W"; gene_biotype "protein_coding"; +chrXI SGD transcript 584935 586752 . + . transcript_id "YKR078W_id007"; gene_id "YKR078W"; gene_name "VPS501"; transcript_biotype "protein_coding"; +chrXI SGD exon 584935 586752 . + . transcript_id "YKR078W_id007"; gene_id "YKR078W"; gene_name "VPS501"; +chrXI SGD transcript 584952 586709 . + . transcript_id "YKR078W_id001"; gene_id "YKR078W"; gene_name "VPS501"; transcript_biotype "protein_coding"; +chrXI SGD exon 584952 586709 . + 0 transcript_id "YKR078W_id001"; gene_name "VPS501"; gene_id "YKR078W"; +chrXI SGD gene 586789 589305 . - . gene_id "YKR079C"; gene_biotype "protein_coding"; +chrXI SGD transcript 586789 589305 . - . transcript_id "YKR079C_id001"; gene_id "YKR079C"; gene_name "TRZ1"; transcript_biotype "protein_coding"; +chrXI SGD exon 586789 589305 . - 0 transcript_id "YKR079C_id001"; gene_name "TRZ1"; gene_id "YKR079C"; +chrXI SGD gene 590214 591505 . + . gene_id "YKR080W"; gene_biotype "protein_coding"; +chrXI SGD transcript 590214 591505 . + . transcript_id "YKR080W_id004"; gene_id "YKR080W"; gene_name "MTD1"; transcript_biotype "protein_coding"; +chrXI SGD exon 590214 591505 . + . transcript_id "YKR080W_id004"; gene_id "YKR080W"; gene_name "MTD1"; +chrXI SGD transcript 590395 591357 . + . transcript_id "YKR080W_id001"; gene_id "YKR080W"; gene_name "MTD1"; transcript_biotype "protein_coding"; +chrXI SGD exon 590395 591357 . + 0 transcript_id "YKR080W_id001"; gene_name "MTD1"; gene_id "YKR080W"; +chrXI SGD gene 591374 592607 . - . gene_id "YKR081C"; gene_biotype "protein_coding"; +chrXI SGD transcript 591374 592607 . - . transcript_id "YKR081C_id001"; gene_id "YKR081C"; gene_name "RPF2"; transcript_biotype "protein_coding"; +chrXI SGD exon 591374 592607 . - . transcript_id "YKR081C_id001"; gene_id "YKR081C"; gene_name "RPF2"; +chrXI SGD transcript 591506 592540 . - . transcript_id "YKR081C_id004"; gene_id "YKR081C"; gene_name "RPF2"; transcript_biotype "protein_coding"; +chrXI SGD exon 591506 592540 . - 0 transcript_id "YKR081C_id004"; gene_name "RPF2"; gene_id "YKR081C"; +chrXI SGD gene 592767 596378 . + . gene_id "YKR082W"; gene_biotype "protein_coding"; +chrXI SGD transcript 592767 596378 . + . transcript_id "YKR082W_id001"; gene_id "YKR082W"; gene_name "NUP133"; transcript_biotype "protein_coding"; +chrXI SGD exon 592767 596378 . + . transcript_id "YKR082W_id001"; gene_id "YKR082W"; gene_name "NUP133"; +chrXI SGD transcript 592825 596298 . + . transcript_id "YKR082W_id002"; gene_id "YKR082W"; gene_name "NUP133"; transcript_biotype "protein_coding"; +chrXI SGD exon 592825 596298 . + 0 transcript_id "YKR082W_id002"; gene_name "NUP133"; gene_id "YKR082W"; +chrXI SGD gene 596202 596890 . - . gene_id "YKR083C"; gene_biotype "protein_coding"; +chrXI SGD transcript 596202 596890 . - . transcript_id "YKR083C_id002"; gene_id "YKR083C"; gene_name "DAD2"; transcript_biotype "protein_coding"; +chrXI SGD exon 596202 596890 . - . transcript_id "YKR083C_id002"; gene_id "YKR083C"; gene_name "DAD2"; +chrXI SGD transcript 596421 596822 . - . transcript_id "YKR083C_id001"; gene_id "YKR083C"; gene_name "DAD2"; transcript_biotype "protein_coding"; +chrXI SGD exon 596421 596822 . - 0 transcript_id "YKR083C_id001"; gene_name "DAD2"; gene_id "YKR083C"; +chrXI SGD gene 596947 598983 . - . gene_id "YKR084C"; gene_biotype "protein_coding"; +chrXI SGD transcript 596947 598983 . - . transcript_id "YKR084C_id001"; gene_id "YKR084C"; gene_name "HBS1"; transcript_biotype "protein_coding"; +chrXI SGD exon 596947 598983 . - . transcript_id "YKR084C_id001"; gene_id "YKR084C"; gene_name "HBS1"; +chrXI SGD transcript 597055 598890 . - . transcript_id "YKR084C_id004"; gene_id "YKR084C"; gene_name "HBS1"; transcript_biotype "protein_coding"; +chrXI SGD exon 597055 598890 . - 0 transcript_id "YKR084C_id004"; gene_name "HBS1"; gene_id "YKR084C"; +chrXI SGD gene 598926 599704 . - . gene_id "YKR085C"; gene_biotype "protein_coding"; +chrXI SGD transcript 598926 599704 . - . transcript_id "YKR085C_id001"; gene_id "YKR085C"; gene_name "MRPL20"; transcript_biotype "protein_coding"; +chrXI SGD exon 598926 599704 . - . transcript_id "YKR085C_id001"; gene_id "YKR085C"; gene_name "MRPL20"; +chrXI SGD transcript 599094 599681 . - . transcript_id "YKR085C_id002"; gene_id "YKR085C"; gene_name "MRPL20"; transcript_biotype "protein_coding"; +chrXI SGD exon 599094 599681 . - 0 transcript_id "YKR085C_id002"; gene_name "MRPL20"; gene_id "YKR085C"; +chrXI SGD gene 599857 603072 . + . gene_id "YKR086W"; gene_biotype "protein_coding"; +chrXI SGD transcript 599857 603072 . + . transcript_id "YKR086W_id001"; gene_id "YKR086W"; gene_name "PRP16"; transcript_biotype "protein_coding"; +chrXI SGD exon 599857 603072 . + 0 transcript_id "YKR086W_id001"; gene_name "PRP16"; gene_id "YKR086W"; +chrXI SGD gene 603035 604252 . - . gene_id "YKR087C"; gene_biotype "protein_coding"; +chrXI SGD transcript 603035 604252 . - . transcript_id "YKR087C_id001"; gene_id "YKR087C"; gene_name "OMA1"; transcript_biotype "protein_coding"; +chrXI SGD exon 603035 604252 . - . transcript_id "YKR087C_id001"; gene_id "YKR087C"; gene_name "OMA1"; +chrXI SGD transcript 603195 604232 . - . transcript_id "YKR087C_id002"; gene_id "YKR087C"; gene_name "OMA1"; transcript_biotype "protein_coding"; +chrXI SGD exon 603195 604232 . - 0 transcript_id "YKR087C_id002"; gene_name "OMA1"; gene_id "YKR087C"; +chrXI SGD gene 604280 605447 . - . gene_id "YKR088C"; gene_biotype "protein_coding"; +chrXI SGD transcript 604280 605447 . - . transcript_id "YKR088C_id002"; gene_id "YKR088C"; gene_name "TVP38"; transcript_biotype "protein_coding"; +chrXI SGD exon 604280 605447 . - . transcript_id "YKR088C_id002"; gene_id "YKR088C"; gene_name "TVP38"; +chrXI SGD transcript 604405 605418 . - . transcript_id "YKR088C_id001"; gene_id "YKR088C"; gene_name "TVP38"; transcript_biotype "protein_coding"; +chrXI SGD exon 604405 605418 . - 0 transcript_id "YKR088C_id001"; gene_name "TVP38"; gene_id "YKR088C"; +chrXI SGD gene 605551 608444 . - . gene_id "YKR089C"; gene_biotype "protein_coding"; +chrXI SGD transcript 605551 608444 . - . transcript_id "YKR089C_id003"; gene_id "YKR089C"; gene_name "TGL4"; transcript_biotype "protein_coding"; +chrXI SGD exon 605551 608444 . - . transcript_id "YKR089C_id003"; gene_id "YKR089C"; gene_name "TGL4"; +chrXI SGD transcript 605633 608365 . - . transcript_id "YKR089C_id001"; gene_id "YKR089C"; gene_name "TGL4"; transcript_biotype "protein_coding"; +chrXI SGD exon 605633 608365 . - 0 transcript_id "YKR089C_id001"; gene_name "TGL4"; gene_id "YKR089C"; +chrXI SGD gene 608773 611263 . + . gene_id "YKR090W"; gene_biotype "protein_coding"; +chrXI SGD transcript 608773 611263 . + . transcript_id "YKR090W_id004"; gene_id "YKR090W"; gene_name "PXL1"; transcript_biotype "protein_coding"; +chrXI SGD exon 608773 611263 . + . transcript_id "YKR090W_id004"; gene_id "YKR090W"; gene_name "PXL1"; +chrXI SGD transcript 608946 611066 . + . transcript_id "YKR090W_id001"; gene_id "YKR090W"; gene_name "PXL1"; transcript_biotype "protein_coding"; +chrXI SGD exon 608946 611066 . + 0 transcript_id "YKR090W_id001"; gene_name "PXL1"; gene_id "YKR090W"; +chrXI SGD gene 611491 612400 . + . gene_id "YKR091W"; gene_biotype "protein_coding"; +chrXI SGD transcript 611491 612400 . + . transcript_id "YKR091W_id009"; gene_id "YKR091W"; gene_name "SRL3"; transcript_biotype "protein_coding"; +chrXI SGD exon 611491 612400 . + . transcript_id "YKR091W_id009"; gene_id "YKR091W"; gene_name "SRL3"; +chrXI SGD transcript 611525 612265 . + . transcript_id "YKR091W_id001"; gene_id "YKR091W"; gene_name "SRL3"; transcript_biotype "protein_coding"; +chrXI SGD exon 611525 612265 . + 0 transcript_id "YKR091W_id001"; gene_name "SRL3"; gene_id "YKR091W"; +chrXI SGD gene 612539 614130 . - . gene_id "YKR092C"; gene_biotype "protein_coding"; +chrXI SGD transcript 612539 614130 . - . transcript_id "YKR092C_id001"; gene_id "YKR092C"; gene_name "SRP40"; transcript_biotype "protein_coding"; +chrXI SGD exon 612539 614130 . - . transcript_id "YKR092C_id001"; gene_id "YKR092C"; gene_name "SRP40"; +chrXI SGD transcript 612665 613885 . - . transcript_id "YKR092C_id002"; gene_id "YKR092C"; gene_name "SRP40"; transcript_biotype "protein_coding"; +chrXI SGD exon 612665 613885 . - 0 transcript_id "YKR092C_id002"; gene_name "SRP40"; gene_id "YKR092C"; +chrXI SGD gene 615532 617744 . + . gene_id "YKR093W"; gene_biotype "protein_coding"; +chrXI SGD transcript 615532 617744 . + . transcript_id "YKR093W_id001"; gene_id "YKR093W"; gene_name "PTR2"; transcript_biotype "protein_coding"; +chrXI SGD exon 615532 617744 . + . transcript_id "YKR093W_id001"; gene_id "YKR093W"; gene_name "PTR2"; +chrXI SGD transcript 615730 617535 . + . transcript_id "YKR093W_id003"; gene_id "YKR093W"; gene_name "PTR2"; transcript_biotype "protein_coding"; +chrXI SGD exon 615730 617535 . + 0 transcript_id "YKR093W_id003"; gene_name "PTR2"; gene_id "YKR093W"; +chrXI SGD gene 617693 618790 . - . gene_id "YKR094C"; gene_biotype "protein_coding"; +chrXI SGD transcript 617693 618790 . - . transcript_id "YKR094C_id001"; gene_id "YKR094C"; gene_name "RPL40B"; transcript_biotype "protein_coding"; +chrXI SGD exon 617693 618790 . - . transcript_id "YKR094C_id001"; gene_id "YKR094C"; gene_name "RPL40B"; +chrXI SGD transcript 617996 618750 . - . transcript_id "YKR094C_id003"; gene_id "YKR094C"; gene_name "RPL40B"; transcript_biotype "protein_coding"; +chrXI SGD exon 617996 618374 . - 1 transcript_id "YKR094C_id003"; gene_name "RPL40B"; gene_id "YKR094C"; +chrXI SGD exon 618743 618750 . - 0 transcript_id "YKR094C_id003"; gene_name "RPL40B"; gene_id "YKR094C"; +chrXI SGD gene 619805 625432 . + . gene_id "YKR095W"; gene_biotype "protein_coding"; +chrXI SGD transcript 619805 625432 . + . transcript_id "YKR095W_mRNA"; gene_id "YKR095W"; gene_name "MLP1"; transcript_biotype "protein_coding"; +chrXI SGD CDS 619805 625432 . + 0 transcript_id "YKR095W_mRNA"; gene_name "MLP1"; gene_id "YKR095W"; +chrXI SGD gene 625727 626275 . + . gene_id "YKR095W-A"; gene_biotype "protein_coding"; +chrXI SGD transcript 625727 626275 . + . transcript_id "YKR095W-A_id003"; gene_id "YKR095W-A"; gene_name "PCC1"; transcript_biotype "protein_coding"; +chrXI SGD exon 625727 626275 . + . transcript_id "YKR095W-A_id003"; gene_id "YKR095W-A"; gene_name "PCC1"; +chrXI SGD transcript 625864 626205 . + . transcript_id "YKR095W-A_id001"; gene_id "YKR095W-A"; gene_name "PCC1"; transcript_biotype "protein_coding"; +chrXI SGD exon 625864 625901 . + 0 transcript_id "YKR095W-A_id001"; gene_name "PCC1"; gene_id "YKR095W-A"; +chrXI SGD exon 625977 626205 . + 1 transcript_id "YKR095W-A_id001"; gene_name "PCC1"; gene_id "YKR095W-A"; +chrXI SGD gene 626793 630380 . + . gene_id "YKR096W"; gene_biotype "protein_coding"; +chrXI SGD transcript 626793 630380 . + . transcript_id "YKR096W_id001"; gene_id "YKR096W"; gene_name "ESL2"; transcript_biotype "protein_coding"; +chrXI SGD exon 626793 630380 . + 0 transcript_id "YKR096W_id001"; gene_name "ESL2"; gene_id "YKR096W"; +chrXI SGD gene 631152 632801 . + . gene_id "YKR097W"; gene_biotype "protein_coding"; +chrXI SGD transcript 631152 632801 . + . transcript_id "YKR097W_id001"; gene_id "YKR097W"; gene_name "PCK1"; transcript_biotype "protein_coding"; +chrXI SGD exon 631152 632801 . + 0 transcript_id "YKR097W_id001"; gene_name "PCK1"; gene_id "YKR097W"; +chrXI SGD gene 632905 635260 . - . gene_id "YKR098C"; gene_biotype "protein_coding"; +chrXI SGD transcript 632905 635260 . - . transcript_id "YKR098C_id003"; gene_id "YKR098C"; gene_name "UBP11"; transcript_biotype "protein_coding"; +chrXI SGD exon 632905 635260 . - . transcript_id "YKR098C_id003"; gene_id "YKR098C"; gene_name "UBP11"; +chrXI SGD transcript 633026 635179 . - . transcript_id "YKR098C_id001"; gene_id "YKR098C"; gene_name "UBP11"; transcript_biotype "protein_coding"; +chrXI SGD exon 633026 635179 . - 0 transcript_id "YKR098C_id001"; gene_name "UBP11"; gene_id "YKR098C"; +chrXI SGD gene 635579 638412 . + . gene_id "YKR099W"; gene_biotype "protein_coding"; +chrXI SGD transcript 635579 638412 . + . transcript_id "YKR099W_id003"; gene_id "YKR099W"; gene_name "BAS1"; transcript_biotype "protein_coding"; +chrXI SGD exon 635579 638412 . + . transcript_id "YKR099W_id003"; gene_id "YKR099W"; gene_name "BAS1"; +chrXI SGD transcript 635851 638286 . + . transcript_id "YKR099W_id001"; gene_id "YKR099W"; gene_name "BAS1"; transcript_biotype "protein_coding"; +chrXI SGD exon 635851 638286 . + 0 transcript_id "YKR099W_id001"; gene_name "BAS1"; gene_id "YKR099W"; +chrXI SGD gene 638438 640316 . - . gene_id "YKR100C"; gene_biotype "protein_coding"; +chrXI SGD transcript 638438 640316 . - . transcript_id "YKR100C_id003"; gene_id "YKR100C"; gene_name "SKG1"; transcript_biotype "protein_coding"; +chrXI SGD exon 638438 640316 . - . transcript_id "YKR100C_id003"; gene_id "YKR100C"; gene_name "SKG1"; +chrXI SGD transcript 638901 639968 . - . transcript_id "YKR100C_id001"; gene_id "YKR100C"; gene_name "SKG1"; transcript_biotype "protein_coding"; +chrXI SGD exon 638901 639968 . - 0 transcript_id "YKR100C_id001"; gene_name "SKG1"; gene_id "YKR100C"; +chrXI SGD gene 640512 642731 . + . gene_id "YKR101W"; gene_biotype "protein_coding"; +chrXI SGD transcript 640512 642731 . + . transcript_id "YKR101W_id002"; gene_id "YKR101W"; gene_name "SIR1"; transcript_biotype "protein_coding"; +chrXI SGD exon 640512 642731 . + . transcript_id "YKR101W_id002"; gene_id "YKR101W"; gene_name "SIR1"; +chrXI SGD transcript 640540 642504 . + . transcript_id "YKR101W_id001"; gene_id "YKR101W"; gene_name "SIR1"; transcript_biotype "protein_coding"; +chrXI SGD exon 640540 642504 . + 0 transcript_id "YKR101W_id001"; gene_name "SIR1"; gene_id "YKR101W"; +chrXI SGD gene 646356 649865 . + . gene_id "YKR102W"; gene_biotype "protein_coding"; +chrXI SGD transcript 646356 649865 . + . transcript_id "YKR102W_mRNA"; gene_id "YKR102W"; gene_name "FLO10"; transcript_biotype "protein_coding"; +chrXI SGD CDS 646356 649865 . + 0 transcript_id "YKR102W_mRNA"; gene_name "FLO10"; gene_id "YKR102W"; +chrXI SGD gene 653080 656736 . + . gene_id "YKR103W"; gene_biotype "protein_coding"; +chrXI SGD transcript 653080 656736 . + . transcript_id "YKR103W_mRNA"; gene_id "YKR103W"; gene_name "NFT1"; transcript_biotype "protein_coding"; +chrXI SGD CDS 653080 656736 . + 0 transcript_id "YKR103W_mRNA"; gene_name "NFT1"; gene_id "YKR103W"; +chrXI SGD gene 656829 658051 . + . gene_id "YKR104W"; gene_biotype "protein_coding"; +chrXI SGD transcript 656829 658051 . + . transcript_id "YKR104W_id002"; gene_id "YKR104W"; transcript_biotype "protein_coding"; +chrXI SGD exon 656829 658051 . + . transcript_id "YKR104W_id002"; gene_id "YKR104W"; +chrXI SGD transcript 656836 657756 . + . transcript_id "YKR104W_id001"; gene_id "YKR104W"; transcript_biotype "protein_coding"; +chrXI SGD exon 656836 657756 . + 0 transcript_id "YKR104W_id001"; gene_id "YKR104W"; +chrXI SGD gene 658716 660464 . - . gene_id "YKR105C"; gene_biotype "protein_coding"; +chrXI SGD transcript 658716 660464 . - . transcript_id "YKR105C_mRNA"; gene_id "YKR105C"; gene_name "VBA5"; transcript_biotype "protein_coding"; +chrXI SGD CDS 658716 660464 . - 0 transcript_id "YKR105C_mRNA"; gene_name "VBA5"; gene_id "YKR105C"; +chrXI SGD gene 661442 663289 . + . gene_id "YKR106W"; gene_biotype "protein_coding"; +chrXI SGD transcript 661442 663289 . + . transcript_id "YKR106W_mRNA"; gene_id "YKR106W"; gene_name "GEX2"; transcript_biotype "protein_coding"; +chrXI SGD CDS 661442 663289 . + 0 transcript_id "YKR106W_mRNA"; gene_name "GEX2"; gene_id "YKR106W"; +chrXII SGD gene 585 4301 . - . gene_id "YLL067C"; gene_biotype "protein_coding"; +chrXII SGD transcript 585 4301 . - . transcript_id "YLL067C_mRNA"; gene_id "YLL067C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 585 3915 . - 1 transcript_id "YLL067C_mRNA"; gene_id "YLL067C"; +chrXII SGD CDS 4015 4301 . - 0 transcript_id "YLL067C_mRNA"; gene_id "YLL067C"; +chrXII SGD gene 843 1325 . + . gene_id "YLL067W-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 843 1325 . + . transcript_id "YLL067W-A_mRNA"; gene_id "YLL067W-A"; transcript_biotype "protein_coding"; +chrXII SGD CDS 843 1325 . + 0 transcript_id "YLL067W-A_mRNA"; gene_id "YLL067W-A"; +chrXII SGD gene 5605 5775 . + . gene_id "YLL066W-B"; gene_biotype "protein_coding"; +chrXII SGD transcript 5605 5775 . + . transcript_id "YLL066W-B_mRNA"; gene_id "YLL066W-B"; transcript_biotype "protein_coding"; +chrXII SGD CDS 5605 5775 . + 0 transcript_id "YLL066W-B_mRNA"; gene_id "YLL066W-B"; +chrXII SGD gene 6120 9836 . - . gene_id "YLL066C"; gene_biotype "protein_coding"; +chrXII SGD transcript 6120 9836 . - . transcript_id "YLL066C_mRNA"; gene_id "YLL066C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 6120 9450 . - 1 transcript_id "YLL066C_mRNA"; gene_id "YLL066C"; +chrXII SGD CDS 9550 9836 . - 0 transcript_id "YLL066C_mRNA"; gene_id "YLL066C"; +chrXII SGD gene 6486 6968 . + . gene_id "YLL066W-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 6486 6968 . + . transcript_id "YLL066W-A_mRNA"; gene_id "YLL066W-A"; transcript_biotype "protein_coding"; +chrXII SGD CDS 6486 6968 . + 0 transcript_id "YLL066W-A_mRNA"; gene_id "YLL066W-A"; +chrXII SGD gene 11726 12076 . + . gene_id "YLL065W"; gene_biotype "protein_coding"; +chrXII SGD transcript 11726 12076 . + . transcript_id "YLL065W_mRNA"; gene_id "YLL065W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 11726 12076 . + 0 transcript_id "YLL065W_mRNA"; gene_id "YLL065W"; +chrXII SGD gene 13083 13445 . - . gene_id "YLL064C"; gene_biotype "protein_coding"; +chrXII SGD transcript 13083 13445 . - . transcript_id "YLL064C_mRNA"; gene_id "YLL064C"; gene_name "PAU18"; transcript_biotype "protein_coding"; +chrXII SGD CDS 13083 13445 . - 0 transcript_id "YLL064C_mRNA"; gene_name "PAU18"; gene_id "YLL064C"; +chrXII SGD gene 14489 16376 . - . gene_id "YLL063C"; gene_biotype "protein_coding"; +chrXII SGD transcript 14489 16376 . - . transcript_id "YLL063C_id002"; gene_id "YLL063C"; gene_name "AYT1"; transcript_biotype "protein_coding"; +chrXII SGD exon 14489 16376 . - . transcript_id "YLL063C_id002"; gene_id "YLL063C"; gene_name "AYT1"; +chrXII SGD transcript 14648 16072 . - . transcript_id "YLL063C_id001"; gene_id "YLL063C"; gene_name "AYT1"; transcript_biotype "protein_coding"; +chrXII SGD exon 14648 16072 . - 0 transcript_id "YLL063C_id001"; gene_name "AYT1"; gene_id "YLL063C"; +chrXII SGD gene 16502 17732 . - . gene_id "YLL062C"; gene_biotype "protein_coding"; +chrXII SGD transcript 16502 17732 . - . transcript_id "YLL062C_id002"; gene_id "YLL062C"; gene_name "MHT1"; transcript_biotype "protein_coding"; +chrXII SGD exon 16502 17732 . - . transcript_id "YLL062C_id002"; gene_id "YLL062C"; gene_name "MHT1"; +chrXII SGD transcript 16639 17613 . - . transcript_id "YLL062C_id001"; gene_id "YLL062C"; gene_name "MHT1"; transcript_biotype "protein_coding"; +chrXII SGD exon 16639 17613 . - 0 transcript_id "YLL062C_id001"; gene_name "MHT1"; gene_id "YLL062C"; +chrXII SGD gene 17940 19909 . + . gene_id "YLL061W"; gene_biotype "protein_coding"; +chrXII SGD transcript 17940 19909 . + . transcript_id "YLL061W_id004"; gene_id "YLL061W"; gene_name "MMP1"; transcript_biotype "protein_coding"; +chrXII SGD exon 17940 19909 . + . transcript_id "YLL061W_id004"; gene_id "YLL061W"; gene_name "MMP1"; +chrXII SGD transcript 17956 19707 . + . transcript_id "YLL061W_id001"; gene_id "YLL061W"; gene_name "MMP1"; transcript_biotype "protein_coding"; +chrXII SGD exon 17956 19707 . + 0 transcript_id "YLL061W_id001"; gene_name "MMP1"; gene_id "YLL061W"; +chrXII SGD gene 20917 22684 . - . gene_id "YLL060C"; gene_biotype "protein_coding"; +chrXII SGD transcript 20917 22684 . - . transcript_id "YLL060C_id003"; gene_id "YLL060C"; gene_name "GTT2"; transcript_biotype "protein_coding"; +chrXII SGD exon 20917 22684 . - . transcript_id "YLL060C_id003"; gene_id "YLL060C"; gene_name "GTT2"; +chrXII SGD transcript 21138 21839 . - . transcript_id "YLL060C_id001"; gene_id "YLL060C"; gene_name "GTT2"; transcript_biotype "protein_coding"; +chrXII SGD exon 21138 21839 . - 0 transcript_id "YLL060C_id001"; gene_name "GTT2"; gene_id "YLL060C"; +chrXII SGD gene 22474 22980 . - . gene_id "YLL059C"; gene_biotype "protein_coding"; +chrXII SGD transcript 22474 22980 . - . transcript_id "YLL059C_id001"; gene_id "YLL059C"; transcript_biotype "protein_coding"; +chrXII SGD exon 22474 22980 . - 0 transcript_id "YLL059C_id001"; gene_id "YLL059C"; +chrXII SGD gene 23381 25383 . + . gene_id "YLL058W"; gene_biotype "protein_coding"; +chrXII SGD transcript 23381 25383 . + . transcript_id "YLL058W_id001"; gene_id "YLL058W"; gene_name "HSU1"; transcript_biotype "protein_coding"; +chrXII SGD exon 23381 25383 . + . transcript_id "YLL058W_id001"; gene_id "YLL058W"; gene_name "HSU1"; +chrXII SGD transcript 23569 25296 . + . transcript_id "YLL058W_id002"; gene_id "YLL058W"; gene_name "HSU1"; transcript_biotype "protein_coding"; +chrXII SGD exon 23569 25296 . + 0 transcript_id "YLL058W_id002"; gene_name "HSU1"; gene_id "YLL058W"; +chrXII SGD gene 25756 26994 . - . gene_id "YLL057C"; gene_biotype "protein_coding"; +chrXII SGD transcript 25756 26994 . - . transcript_id "YLL057C_mRNA"; gene_id "YLL057C"; gene_name "JLP1"; transcript_biotype "protein_coding"; +chrXII SGD CDS 25756 26994 . - 0 transcript_id "YLL057C_mRNA"; gene_name "JLP1"; gene_id "YLL057C"; +chrXII SGD gene 27288 29535 . - . gene_id "YLL056C"; gene_biotype "protein_coding"; +chrXII SGD transcript 27288 29535 . - . transcript_id "YLL056C_id001"; gene_id "YLL056C"; transcript_biotype "protein_coding"; +chrXII SGD exon 27288 29535 . - . transcript_id "YLL056C_id001"; gene_id "YLL056C"; +chrXII SGD transcript 27409 28305 . - . transcript_id "YLL056C_id002"; gene_id "YLL056C"; transcript_biotype "protein_coding"; +chrXII SGD exon 27409 28305 . - 0 transcript_id "YLL056C_id002"; gene_id "YLL056C"; +chrXII SGD gene 30109 31704 . + . gene_id "YLL055W"; gene_biotype "protein_coding"; +chrXII SGD transcript 30109 31704 . + . transcript_id "YLL055W_id001"; gene_id "YLL055W"; gene_name "YCT1"; transcript_biotype "protein_coding"; +chrXII SGD exon 30109 31704 . + 0 transcript_id "YLL055W_id001"; gene_name "YCT1"; gene_id "YLL055W"; +chrXII SGD gene 32673 35204 . - . gene_id "YLL054C"; gene_biotype "protein_coding"; +chrXII SGD transcript 32673 35204 . - . transcript_id "YLL054C_id001"; gene_id "YLL054C"; transcript_biotype "protein_coding"; +chrXII SGD exon 32673 35204 . - 0 transcript_id "YLL054C_id001"; gene_id "YLL054C"; +chrXII SGD gene 35503 35961 . - . gene_id "YLL053C"; gene_biotype "protein_coding"; +chrXII SGD transcript 35503 35961 . - . transcript_id "YLL053C_id001"; gene_id "YLL053C"; transcript_biotype "protein_coding"; +chrXII SGD exon 35503 35961 . - 0 transcript_id "YLL053C_id001"; gene_id "YLL053C"; +chrXII SGD gene 35912 36361 . - . gene_id "YLL052C"; gene_biotype "protein_coding"; +chrXII SGD transcript 35912 36361 . - . transcript_id "YLL052C_mRNA"; gene_id "YLL052C"; gene_name "AQY2"; transcript_biotype "protein_coding"; +chrXII SGD CDS 35912 36361 . - 0 transcript_id "YLL052C_mRNA"; gene_name "AQY2"; gene_id "YLL052C"; +chrXII SGD gene 37333 39471 . - . gene_id "YLL051C"; gene_biotype "protein_coding"; +chrXII SGD transcript 37333 39471 . - . transcript_id "YLL051C_id001"; gene_id "YLL051C"; gene_name "FRE6"; transcript_biotype "protein_coding"; +chrXII SGD exon 37333 39471 . - 0 transcript_id "YLL051C_id001"; gene_name "FRE6"; gene_id "YLL051C"; +chrXII SGD gene 39638 40447 . - . gene_id "YLL050C"; gene_biotype "protein_coding"; +chrXII SGD transcript 39638 40447 . - . transcript_id "YLL050C_id002"; gene_id "YLL050C"; gene_name "COF1"; transcript_biotype "protein_coding"; +chrXII SGD exon 39638 40447 . - . transcript_id "YLL050C_id002"; gene_id "YLL050C"; gene_name "COF1"; +chrXII SGD transcript 39804 40414 . - . transcript_id "YLL050C_id001"; gene_id "YLL050C"; gene_name "COF1"; transcript_biotype "protein_coding"; +chrXII SGD exon 39804 40221 . - 1 transcript_id "YLL050C_id001"; gene_name "COF1"; gene_id "YLL050C"; +chrXII SGD exon 40401 40414 . - 0 transcript_id "YLL050C_id001"; gene_name "COF1"; gene_id "YLL050C"; +chrXII SGD gene 40666 41205 . + . gene_id "YLL049W"; gene_biotype "protein_coding"; +chrXII SGD transcript 40666 41205 . + . transcript_id "YLL049W_mRNA"; gene_id "YLL049W"; gene_name "LDB18"; transcript_biotype "protein_coding"; +chrXII SGD CDS 40666 41205 . + 0 transcript_id "YLL049W_mRNA"; gene_name "LDB18"; gene_id "YLL049W"; +chrXII SGD gene 41280 46265 . - . gene_id "YLL048C"; gene_biotype "protein_coding"; +chrXII SGD transcript 41280 46265 . - . transcript_id "YLL048C_mRNA"; gene_id "YLL048C"; gene_name "YBT1"; transcript_biotype "protein_coding"; +chrXII SGD CDS 41280 46265 . - 0 transcript_id "YLL048C_mRNA"; gene_name "YBT1"; gene_id "YLL048C"; +chrXII SGD gene 46672 47055 . + . gene_id "YLL047W"; gene_biotype "protein_coding"; +chrXII SGD transcript 46672 47055 . + . transcript_id "YLL047W_mRNA"; gene_id "YLL047W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 46672 47055 . + 0 transcript_id "YLL047W_mRNA"; gene_id "YLL047W"; +chrXII SGD gene 46714 47463 . - . gene_id "YLL046C"; gene_biotype "protein_coding"; +chrXII SGD transcript 46714 47463 . - . transcript_id "YLL046C_mRNA"; gene_id "YLL046C"; gene_name "RNP1"; transcript_biotype "protein_coding"; +chrXII SGD CDS 46714 47463 . - 0 transcript_id "YLL046C_mRNA"; gene_name "RNP1"; gene_id "YLL046C"; +chrXII SGD gene 47585 48652 . - . gene_id "YLL045C"; gene_biotype "protein_coding"; +chrXII SGD transcript 47585 48652 . - . transcript_id "YLL045C_id003"; gene_id "YLL045C"; gene_name "RPL8B"; transcript_biotype "protein_coding"; +chrXII SGD exon 47585 48652 . - . transcript_id "YLL045C_id003"; gene_id "YLL045C"; gene_name "RPL8B"; +chrXII SGD transcript 47859 48629 . - . transcript_id "YLL045C_id001"; gene_id "YLL045C"; gene_name "RPL8B"; transcript_biotype "protein_coding"; +chrXII SGD exon 47859 48629 . - 0 transcript_id "YLL045C_id001"; gene_name "RPL8B"; gene_id "YLL045C"; +chrXII SGD gene 48216 48662 . + . gene_id "YLL044W"; gene_biotype "protein_coding"; +chrXII SGD transcript 48216 48662 . + . transcript_id "YLL044W_mRNA"; gene_id "YLL044W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 48216 48662 . + 0 transcript_id "YLL044W_mRNA"; gene_id "YLL044W"; +chrXII SGD gene 49900 52113 . + . gene_id "YLL043W"; gene_biotype "protein_coding"; +chrXII SGD transcript 49900 52113 . + . transcript_id "YLL043W_id002"; gene_id "YLL043W"; gene_name "FPS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 49900 52113 . + . transcript_id "YLL043W_id002"; gene_id "YLL043W"; gene_name "FPS1"; +chrXII SGD transcript 49938 51947 . + . transcript_id "YLL043W_id001"; gene_id "YLL043W"; gene_name "FPS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 49938 51947 . + 0 transcript_id "YLL043W_id001"; gene_name "FPS1"; gene_id "YLL043W"; +chrXII SGD gene 52056 52613 . - . gene_id "YLL042C"; gene_biotype "protein_coding"; +chrXII SGD transcript 52056 52613 . - . transcript_id "YLL042C_id005"; gene_id "YLL042C"; gene_name "ATG10"; transcript_biotype "protein_coding"; +chrXII SGD exon 52056 52613 . - . transcript_id "YLL042C_id005"; gene_id "YLL042C"; gene_name "ATG10"; +chrXII SGD transcript 52087 52590 . - . transcript_id "YLL042C_id001"; gene_id "YLL042C"; gene_name "ATG10"; transcript_biotype "protein_coding"; +chrXII SGD exon 52087 52590 . - 0 transcript_id "YLL042C_id001"; gene_name "ATG10"; gene_id "YLL042C"; +chrXII SGD gene 52760 54016 . - . gene_id "YLL041C"; gene_biotype "protein_coding"; +chrXII SGD transcript 52760 54016 . - . transcript_id "YLL041C_id003"; gene_id "YLL041C"; gene_name "SDH2"; transcript_biotype "protein_coding"; +chrXII SGD exon 52760 54016 . - . transcript_id "YLL041C_id003"; gene_id "YLL041C"; gene_name "SDH2"; +chrXII SGD transcript 53131 53931 . - . transcript_id "YLL041C_id001"; gene_id "YLL041C"; gene_name "SDH2"; transcript_biotype "protein_coding"; +chrXII SGD exon 53131 53931 . - 0 transcript_id "YLL041C_id001"; gene_name "SDH2"; gene_id "YLL041C"; +chrXII SGD gene 54211 63645 . - . gene_id "YLL040C"; gene_biotype "protein_coding"; +chrXII SGD transcript 54211 63645 . - . transcript_id "YLL040C_mRNA"; gene_id "YLL040C"; gene_name "VPS13"; transcript_biotype "protein_coding"; +chrXII SGD CDS 54211 63645 . - 0 transcript_id "YLL040C_mRNA"; gene_name "VPS13"; gene_id "YLL040C"; +chrXII SGD gene 63945 65811 . - . gene_id "YLL039C"; gene_biotype "protein_coding"; +chrXII SGD transcript 63945 65811 . - . transcript_id "YLL039C_id001"; gene_id "YLL039C"; gene_name "UBI4"; transcript_biotype "protein_coding"; +chrXII SGD exon 63945 65811 . - . transcript_id "YLL039C_id001"; gene_id "YLL039C"; gene_name "UBI4"; +chrXII SGD transcript 64062 65207 . - . transcript_id "YLL039C_id002"; gene_id "YLL039C"; gene_name "UBI4"; transcript_biotype "protein_coding"; +chrXII SGD exon 64062 65207 . - 0 transcript_id "YLL039C_id002"; gene_name "UBI4"; gene_id "YLL039C"; +chrXII SGD gene 65235 66552 . - . gene_id "YLL038C"; gene_biotype "protein_coding"; +chrXII SGD transcript 65235 66552 . - . transcript_id "YLL038C_id007"; gene_id "YLL038C"; gene_name "ENT4"; transcript_biotype "protein_coding"; +chrXII SGD exon 65235 66552 . - . transcript_id "YLL038C_id007"; gene_id "YLL038C"; gene_name "ENT4"; +chrXII SGD transcript 65775 66518 . - . transcript_id "YLL038C_id001"; gene_id "YLL038C"; gene_name "ENT4"; transcript_biotype "protein_coding"; +chrXII SGD exon 65775 66518 . - 0 transcript_id "YLL038C_id001"; gene_name "ENT4"; gene_id "YLL038C"; +chrXII SGD gene 66562 66942 . + . gene_id "YLL037W"; gene_biotype "protein_coding"; +chrXII SGD transcript 66562 66942 . + . transcript_id "YLL037W_mRNA"; gene_id "YLL037W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 66562 66942 . + 0 transcript_id "YLL037W_mRNA"; gene_id "YLL037W"; +chrXII SGD gene 66658 68290 . - . gene_id "YLL036C"; gene_biotype "protein_coding"; +chrXII SGD transcript 66658 68290 . - . transcript_id "YLL036C_id001"; gene_id "YLL036C"; gene_name "PRP19"; transcript_biotype "protein_coding"; +chrXII SGD exon 66658 68290 . - . transcript_id "YLL036C_id001"; gene_id "YLL036C"; gene_name "PRP19"; +chrXII SGD transcript 66745 68256 . - . transcript_id "YLL036C_id005"; gene_id "YLL036C"; gene_name "PRP19"; transcript_biotype "protein_coding"; +chrXII SGD exon 66745 68256 . - 0 transcript_id "YLL036C_id005"; gene_name "PRP19"; gene_id "YLL036C"; +chrXII SGD gene 68453 70642 . + . gene_id "YLL035W"; gene_biotype "protein_coding"; +chrXII SGD transcript 68453 70642 . + . transcript_id "YLL035W_id001"; gene_id "YLL035W"; gene_name "GRC3"; transcript_biotype "protein_coding"; +chrXII SGD exon 68453 70642 . + . transcript_id "YLL035W_id001"; gene_id "YLL035W"; gene_name "GRC3"; +chrXII SGD transcript 68580 70478 . + . transcript_id "YLL035W_id002"; gene_id "YLL035W"; gene_name "GRC3"; transcript_biotype "protein_coding"; +chrXII SGD exon 68580 70478 . + 0 transcript_id "YLL035W_id002"; gene_name "GRC3"; gene_id "YLL035W"; +chrXII SGD gene 70478 73187 . - . gene_id "YLL034C"; gene_biotype "protein_coding"; +chrXII SGD transcript 70478 73187 . - . transcript_id "YLL034C_id001"; gene_id "YLL034C"; gene_name "RIX7"; transcript_biotype "protein_coding"; +chrXII SGD exon 70478 73187 . - . transcript_id "YLL034C_id001"; gene_id "YLL034C"; gene_name "RIX7"; +chrXII SGD transcript 70633 73146 . - . transcript_id "YLL034C_id004"; gene_id "YLL034C"; gene_name "RIX7"; transcript_biotype "protein_coding"; +chrXII SGD exon 70633 73146 . - 0 transcript_id "YLL034C_id004"; gene_name "RIX7"; gene_id "YLL034C"; +chrXII SGD gene 73409 74101 . + . gene_id "YLL033W"; gene_biotype "protein_coding"; +chrXII SGD transcript 73409 74101 . + . transcript_id "YLL033W_id001"; gene_id "YLL033W"; gene_name "IRC19"; transcript_biotype "protein_coding"; +chrXII SGD exon 73409 74101 . + 0 transcript_id "YLL033W_id001"; gene_name "IRC19"; gene_id "YLL033W"; +chrXII SGD gene 74270 76747 . - . gene_id "YLL032C"; gene_biotype "protein_coding"; +chrXII SGD transcript 74270 76747 . - . transcript_id "YLL032C_mRNA"; gene_id "YLL032C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 74270 76747 . - 0 transcript_id "YLL032C_mRNA"; gene_id "YLL032C"; +chrXII SGD gene 77059 80285 . - . gene_id "YLL031C"; gene_biotype "protein_coding"; +chrXII SGD transcript 77059 80285 . - . transcript_id "YLL031C_id002"; gene_id "YLL031C"; gene_name "GPI13"; transcript_biotype "protein_coding"; +chrXII SGD exon 77059 80285 . - . transcript_id "YLL031C_id002"; gene_id "YLL031C"; gene_name "GPI13"; +chrXII SGD transcript 77152 80205 . - . transcript_id "YLL031C_id001"; gene_id "YLL031C"; gene_name "GPI13"; transcript_biotype "protein_coding"; +chrXII SGD exon 77152 80205 . - 0 transcript_id "YLL031C_id001"; gene_name "GPI13"; gene_id "YLL031C"; +chrXII SGD gene 80356 80697 . - . gene_id "YLL030C"; gene_biotype "protein_coding"; +chrXII SGD transcript 80356 80697 . - . transcript_id "YLL030C_mRNA"; gene_id "YLL030C"; gene_name "RRT7"; transcript_biotype "protein_coding"; +chrXII SGD CDS 80356 80697 . - 0 transcript_id "YLL030C_mRNA"; gene_name "RRT7"; gene_id "YLL030C"; +chrXII SGD gene 81309 83822 . + . gene_id "YLL029W"; gene_biotype "protein_coding"; +chrXII SGD transcript 81309 83822 . + . transcript_id "YLL029W_id001"; gene_id "YLL029W"; gene_name "FRA1"; transcript_biotype "protein_coding"; +chrXII SGD exon 81309 83822 . + . transcript_id "YLL029W_id001"; gene_id "YLL029W"; gene_name "FRA1"; +chrXII SGD transcript 81461 83710 . + . transcript_id "YLL029W_id002"; gene_id "YLL029W"; gene_name "FRA1"; transcript_biotype "protein_coding"; +chrXII SGD exon 81461 83710 . + 0 transcript_id "YLL029W_id002"; gene_name "FRA1"; gene_id "YLL029W"; +chrXII SGD gene 84498 86949 . + . gene_id "YLL028W"; gene_biotype "protein_coding"; +chrXII SGD transcript 84498 86949 . + . transcript_id "YLL028W_id001"; gene_id "YLL028W"; gene_name "TPO1"; transcript_biotype "protein_coding"; +chrXII SGD exon 84498 86949 . + . transcript_id "YLL028W_id001"; gene_id "YLL028W"; gene_name "TPO1"; +chrXII SGD transcript 84804 86564 . + . transcript_id "YLL028W_id007"; gene_id "YLL028W"; gene_name "TPO1"; transcript_biotype "protein_coding"; +chrXII SGD exon 84804 86564 . + 0 transcript_id "YLL028W_id007"; gene_name "TPO1"; gene_id "YLL028W"; +chrXII SGD gene 87077 88261 . + . gene_id "YLL027W"; gene_biotype "protein_coding"; +chrXII SGD transcript 87077 88261 . + . transcript_id "YLL027W_id001"; gene_id "YLL027W"; gene_name "ISA1"; transcript_biotype "protein_coding"; +chrXII SGD exon 87077 88261 . + . transcript_id "YLL027W_id001"; gene_id "YLL027W"; gene_name "ISA1"; +chrXII SGD transcript 87403 88155 . + . transcript_id "YLL027W_id003"; gene_id "YLL027W"; gene_name "ISA1"; transcript_biotype "protein_coding"; +chrXII SGD exon 87403 88155 . + 0 transcript_id "YLL027W_id003"; gene_name "ISA1"; gene_id "YLL027W"; +chrXII SGD gene 88623 91349 . + . gene_id "YLL026W"; gene_biotype "protein_coding"; +chrXII SGD transcript 88623 91349 . + . transcript_id "YLL026W_id001"; gene_id "YLL026W"; gene_name "HSP104"; transcript_biotype "protein_coding"; +chrXII SGD exon 88623 91349 . + 0 transcript_id "YLL026W_id001"; gene_name "HSP104"; gene_id "YLL026W"; +chrXII SGD gene 92548 92650 . + . gene_id "YNCL0001W"; gene_biotype "ncRNA"; +chrXII SGD transcript 92548 92650 . + . transcript_id "YNCL0001W_tRNA"; gene_id "YNCL0001W"; transcript_biotype "ncRNA"; +chrXII SGD exon 92548 92583 . + . transcript_id "YNCL0001W_tRNA"; gene_id "YNCL0001W"; +chrXII SGD exon 92615 92650 . + . transcript_id "YNCL0001W_tRNA"; gene_id "YNCL0001W"; +chrXII SGD gene 94712 95357 . + . gene_id "YLL025W"; gene_biotype "protein_coding"; +chrXII SGD transcript 94712 95357 . + . transcript_id "YLL025W_id001"; gene_id "YLL025W"; gene_name "PAU17"; transcript_biotype "protein_coding"; +chrXII SGD exon 94712 95357 . + . transcript_id "YLL025W_id001"; gene_id "YLL025W"; gene_name "PAU17"; +chrXII SGD transcript 94747 95121 . + . transcript_id "YLL025W_id004"; gene_id "YLL025W"; gene_name "PAU17"; transcript_biotype "protein_coding"; +chrXII SGD exon 94747 95121 . + 0 transcript_id "YLL025W_id004"; gene_name "PAU17"; gene_id "YLL025W"; +chrXII SGD gene 95216 97537 . - . gene_id "YLL024C"; gene_biotype "protein_coding"; +chrXII SGD transcript 95216 97537 . - . transcript_id "YLL024C_id001"; gene_id "YLL024C"; gene_name "SSA2"; transcript_biotype "protein_coding"; +chrXII SGD exon 95216 97537 . - . transcript_id "YLL024C_id001"; gene_id "YLL024C"; gene_name "SSA2"; +chrXII SGD transcript 95566 97485 . - . transcript_id "YLL024C_id004"; gene_id "YLL024C"; gene_name "SSA2"; transcript_biotype "protein_coding"; +chrXII SGD exon 95566 97485 . - 0 transcript_id "YLL024C_id004"; gene_name "SSA2"; gene_id "YLL024C"; +chrXII SGD gene 97818 98899 . - . gene_id "YLL023C"; gene_biotype "protein_coding"; +chrXII SGD transcript 97818 98899 . - . transcript_id "YLL023C_id001"; gene_id "YLL023C"; gene_name "POM33"; transcript_biotype "protein_coding"; +chrXII SGD exon 97818 98899 . - . transcript_id "YLL023C_id001"; gene_id "YLL023C"; gene_name "POM33"; +chrXII SGD transcript 97997 98836 . - . transcript_id "YLL023C_id002"; gene_id "YLL023C"; gene_name "POM33"; transcript_biotype "protein_coding"; +chrXII SGD exon 97997 98836 . - 0 transcript_id "YLL023C_id002"; gene_name "POM33"; gene_id "YLL023C"; +chrXII SGD gene 98906 100231 . - . gene_id "YLL022C"; gene_biotype "protein_coding"; +chrXII SGD transcript 98906 100231 . - . transcript_id "YLL022C_id004"; gene_id "YLL022C"; gene_name "HIF1"; transcript_biotype "protein_coding"; +chrXII SGD exon 98906 100231 . - . transcript_id "YLL022C_id004"; gene_id "YLL022C"; gene_name "HIF1"; +chrXII SGD transcript 99044 100201 . - . transcript_id "YLL022C_id001"; gene_id "YLL022C"; gene_name "HIF1"; transcript_biotype "protein_coding"; +chrXII SGD exon 99044 100201 . - 0 transcript_id "YLL022C_id001"; gene_name "HIF1"; gene_id "YLL022C"; +chrXII SGD gene 100947 105347 . + . gene_id "YLL021W"; gene_biotype "protein_coding"; +chrXII SGD transcript 100947 105347 . + . transcript_id "YLL021W_mRNA"; gene_id "YLL021W"; gene_name "SPA2"; transcript_biotype "protein_coding"; +chrXII SGD CDS 100947 105347 . + 0 transcript_id "YLL021W_mRNA"; gene_name "SPA2"; gene_id "YLL021W"; +chrXII SGD gene 105503 106752 . - . gene_id "YLL020C"; gene_biotype "protein_coding"; +chrXII SGD transcript 105503 106752 . - . transcript_id "YLL020C_id002"; gene_id "YLL020C"; transcript_biotype "protein_coding"; +chrXII SGD exon 105503 106752 . - . transcript_id "YLL020C_id002"; gene_id "YLL020C"; +chrXII SGD transcript 105556 105861 . - . transcript_id "YLL020C_id001"; gene_id "YLL020C"; transcript_biotype "protein_coding"; +chrXII SGD exon 105556 105861 . - 0 transcript_id "YLL020C_id001"; gene_id "YLL020C"; +chrXII SGD gene 105686 107899 . - . gene_id "YLL019C"; gene_biotype "protein_coding"; +chrXII SGD transcript 105686 107899 . - . transcript_id "YLL019C_mRNA"; gene_id "YLL019C"; gene_name "KNS1"; transcript_biotype "protein_coding"; +chrXII SGD CDS 105686 107899 . - 0 transcript_id "YLL019C_mRNA"; gene_name "KNS1"; gene_id "YLL019C"; +chrXII SGD gene 106908 107000 . + . gene_id "YLL019W-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 106908 107000 . + . transcript_id "YLL019W-A_mRNA"; gene_id "YLL019W-A"; transcript_biotype "protein_coding"; +chrXII SGD CDS 106908 107000 . + 0 transcript_id "YLL019W-A_mRNA"; gene_id "YLL019W-A"; +chrXII SGD gene 107359 109027 . - . gene_id "YLL018C-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 107359 109027 . - . transcript_id "YLL018C-A_id001"; gene_id "YLL018C-A"; gene_name "COX19"; transcript_biotype "protein_coding"; +chrXII SGD exon 107359 109027 . - . transcript_id "YLL018C-A_id001"; gene_id "YLL018C-A"; gene_name "COX19"; +chrXII SGD transcript 108676 108972 . - . transcript_id "YLL018C-A_id003"; gene_id "YLL018C-A"; gene_name "COX19"; transcript_biotype "protein_coding"; +chrXII SGD exon 108676 108972 . - 0 transcript_id "YLL018C-A_id003"; gene_name "COX19"; gene_id "YLL018C-A"; +chrXII SGD gene 109538 111608 . - . gene_id "YLL018C"; gene_biotype "protein_coding"; +chrXII SGD transcript 109538 111608 . - . transcript_id "YLL018C_id003"; gene_id "YLL018C"; gene_name "DPS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 109538 111608 . - . transcript_id "YLL018C_id003"; gene_id "YLL018C"; gene_name "DPS1"; +chrXII SGD transcript 109902 111575 . - . transcript_id "YLL018C_id001"; gene_id "YLL018C"; gene_name "DPS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 109902 111575 . - 0 transcript_id "YLL018C_id001"; gene_name "DPS1"; gene_id "YLL018C"; +chrXII SGD gene 116432 121111 . + . gene_id "YLL015W"; gene_biotype "protein_coding"; +chrXII SGD transcript 116432 121111 . + . transcript_id "YLL015W_id001"; gene_id "YLL015W"; gene_name "BPT1"; transcript_biotype "protein_coding"; +chrXII SGD exon 116432 121111 . + 0 transcript_id "YLL015W_id001"; gene_name "BPT1"; gene_id "YLL015W"; +chrXII SGD gene 121304 121993 . + . gene_id "YLL014W"; gene_biotype "protein_coding"; +chrXII SGD transcript 121304 121993 . + . transcript_id "YLL014W_id002"; gene_id "YLL014W"; gene_name "EMC6"; transcript_biotype "protein_coding"; +chrXII SGD exon 121304 121993 . + . transcript_id "YLL014W_id002"; gene_id "YLL014W"; gene_name "EMC6"; +chrXII SGD transcript 121322 121648 . + . transcript_id "YLL014W_id001"; gene_id "YLL014W"; gene_name "EMC6"; transcript_biotype "protein_coding"; +chrXII SGD exon 121322 121648 . + 0 transcript_id "YLL014W_id001"; gene_name "EMC6"; gene_id "YLL014W"; +chrXII SGD gene 122075 124714 . - . gene_id "YLL013C"; gene_biotype "protein_coding"; +chrXII SGD transcript 122075 124714 . - . transcript_id "YLL013C_id001"; gene_id "YLL013C"; gene_name "PUF3"; transcript_biotype "protein_coding"; +chrXII SGD exon 122075 124714 . - 0 transcript_id "YLL013C_id001"; gene_name "PUF3"; gene_id "YLL013C"; +chrXII SGD gene 125445 127358 . + . gene_id "YLL012W"; gene_biotype "protein_coding"; +chrXII SGD transcript 125445 127358 . + . transcript_id "YLL012W_id002"; gene_id "YLL012W"; gene_name "YEH1"; transcript_biotype "protein_coding"; +chrXII SGD exon 125445 127358 . + . transcript_id "YLL012W_id002"; gene_id "YLL012W"; gene_name "YEH1"; +chrXII SGD transcript 125534 127255 . + . transcript_id "YLL012W_id001"; gene_id "YLL012W"; gene_name "YEH1"; transcript_biotype "protein_coding"; +chrXII SGD exon 125534 127255 . + 0 transcript_id "YLL012W_id001"; gene_name "YEH1"; gene_id "YLL012W"; +chrXII SGD gene 127512 129117 . + . gene_id "YLL011W"; gene_biotype "protein_coding"; +chrXII SGD transcript 127512 129117 . + . transcript_id "YLL011W_id002"; gene_id "YLL011W"; gene_name "SOF1"; transcript_biotype "protein_coding"; +chrXII SGD exon 127512 129117 . + . transcript_id "YLL011W_id002"; gene_id "YLL011W"; gene_name "SOF1"; +chrXII SGD transcript 127523 128992 . + . transcript_id "YLL011W_id001"; gene_id "YLL011W"; gene_name "SOF1"; transcript_biotype "protein_coding"; +chrXII SGD exon 127523 128992 . + 0 transcript_id "YLL011W_id001"; gene_name "SOF1"; gene_id "YLL011W"; +chrXII SGD gene 128980 130674 . - . gene_id "YLL010C"; gene_biotype "protein_coding"; +chrXII SGD transcript 128980 130674 . - . transcript_id "YLL010C_id010"; gene_id "YLL010C"; gene_name "PSR1"; transcript_biotype "protein_coding"; +chrXII SGD exon 128980 130674 . - . transcript_id "YLL010C_id010"; gene_id "YLL010C"; gene_name "PSR1"; +chrXII SGD transcript 129330 130613 . - . transcript_id "YLL010C_id001"; gene_id "YLL010C"; gene_name "PSR1"; transcript_biotype "protein_coding"; +chrXII SGD exon 129330 130613 . - 0 transcript_id "YLL010C_id001"; gene_name "PSR1"; gene_id "YLL010C"; +chrXII SGD gene 131037 131489 . - . gene_id "YLL009C"; gene_biotype "protein_coding"; +chrXII SGD transcript 131037 131489 . - . transcript_id "YLL009C_id002"; gene_id "YLL009C"; gene_name "COX17"; transcript_biotype "protein_coding"; +chrXII SGD exon 131037 131489 . - . transcript_id "YLL009C_id002"; gene_id "YLL009C"; gene_name "COX17"; +chrXII SGD transcript 131205 131414 . - . transcript_id "YLL009C_id001"; gene_id "YLL009C"; gene_name "COX17"; transcript_biotype "protein_coding"; +chrXII SGD exon 131205 131414 . - 0 transcript_id "YLL009C_id001"; gene_name "COX17"; gene_id "YLL009C"; +chrXII SGD gene 131697 134098 . + . gene_id "YLL008W"; gene_biotype "protein_coding"; +chrXII SGD transcript 131697 134098 . + . transcript_id "YLL008W_id009"; gene_id "YLL008W"; gene_name "DRS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 131697 134098 . + . transcript_id "YLL008W_id009"; gene_id "YLL008W"; gene_name "DRS1"; +chrXII SGD transcript 131729 133987 . + . transcript_id "YLL008W_id001"; gene_id "YLL008W"; gene_name "DRS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 131729 133987 . + 0 transcript_id "YLL008W_id001"; gene_name "DRS1"; gene_id "YLL008W"; +chrXII SGD gene 134017 136386 . - . gene_id "YLL007C"; gene_biotype "protein_coding"; +chrXII SGD transcript 134017 136386 . - . transcript_id "YLL007C_id001"; gene_id "YLL007C"; gene_name "LMO1"; transcript_biotype "protein_coding"; +chrXII SGD exon 134017 136386 . - . transcript_id "YLL007C_id001"; gene_id "YLL007C"; gene_name "LMO1"; +chrXII SGD transcript 134302 136299 . - . transcript_id "YLL007C_id003"; gene_id "YLL007C"; gene_name "LMO1"; transcript_biotype "protein_coding"; +chrXII SGD exon 134302 136299 . - 0 transcript_id "YLL007C_id003"; gene_name "LMO1"; gene_id "YLL007C"; +chrXII SGD gene 136345 136521 . + . gene_id "YLL006W-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 136345 136521 . + . transcript_id "YLL006W-A_mRNA"; gene_id "YLL006W-A"; transcript_biotype "protein_coding"; +chrXII SGD CDS 136345 136521 . + 0 transcript_id "YLL006W-A_mRNA"; gene_id "YLL006W-A"; +chrXII SGD gene 136557 139498 . + . gene_id "YLL006W"; gene_biotype "protein_coding"; +chrXII SGD transcript 136557 139498 . + . transcript_id "YLL006W_id001"; gene_id "YLL006W"; gene_name "MMM1"; transcript_biotype "protein_coding"; +chrXII SGD exon 136557 139498 . + . transcript_id "YLL006W_id001"; gene_id "YLL006W"; gene_name "MMM1"; +chrXII SGD transcript 136586 137866 . + . transcript_id "YLL006W_id004"; gene_id "YLL006W"; gene_name "MMM1"; transcript_biotype "protein_coding"; +chrXII SGD exon 136586 137866 . + 0 transcript_id "YLL006W_id004"; gene_name "MMM1"; gene_id "YLL006W"; +chrXII SGD gene 137940 140546 . - . gene_id "YLL005C"; gene_biotype "protein_coding"; +chrXII SGD transcript 137940 140546 . - . transcript_id "YLL005C_mRNA"; gene_id "YLL005C"; gene_name "SPO75"; transcript_biotype "protein_coding"; +chrXII SGD CDS 137940 140546 . - 0 transcript_id "YLL005C_mRNA"; gene_name "SPO75"; gene_id "YLL005C"; +chrXII SGD gene 141056 143017 . + . gene_id "YLL004W"; gene_biotype "protein_coding"; +chrXII SGD transcript 141056 143017 . + . transcript_id "YLL004W_id001"; gene_id "YLL004W"; gene_name "ORC3"; transcript_biotype "protein_coding"; +chrXII SGD exon 141056 143017 . + . transcript_id "YLL004W_id001"; gene_id "YLL004W"; gene_name "ORC3"; +chrXII SGD transcript 141073 142923 . + . transcript_id "YLL004W_id002"; gene_id "YLL004W"; gene_name "ORC3"; transcript_biotype "protein_coding"; +chrXII SGD exon 141073 142923 . + 0 transcript_id "YLL004W_id002"; gene_name "ORC3"; gene_id "YLL004W"; +chrXII SGD gene 143201 146041 . + . gene_id "YLL003W"; gene_biotype "protein_coding"; +chrXII SGD transcript 143201 146041 . + . transcript_id "YLL003W_id001"; gene_id "YLL003W"; gene_name "SFI1"; transcript_biotype "protein_coding"; +chrXII SGD exon 143201 146041 . + 0 transcript_id "YLL003W_id001"; gene_name "SFI1"; gene_id "YLL003W"; +chrXII SGD gene 146237 147675 . + . gene_id "YLL002W"; gene_biotype "protein_coding"; +chrXII SGD transcript 146237 147675 . + . transcript_id "YLL002W_id002"; gene_id "YLL002W"; gene_name "RTT109"; transcript_biotype "protein_coding"; +chrXII SGD exon 146237 147675 . + . transcript_id "YLL002W_id002"; gene_id "YLL002W"; gene_name "RTT109"; +chrXII SGD transcript 146291 147601 . + . transcript_id "YLL002W_id001"; gene_id "YLL002W"; gene_name "RTT109"; transcript_biotype "protein_coding"; +chrXII SGD exon 146291 147601 . + 0 transcript_id "YLL002W_id001"; gene_name "RTT109"; gene_id "YLL002W"; +chrXII SGD gene 147823 150393 . + . gene_id "YLL001W"; gene_biotype "protein_coding"; +chrXII SGD transcript 147823 150393 . + . transcript_id "YLL001W_id003"; gene_id "YLL001W"; gene_name "DNM1"; transcript_biotype "protein_coding"; +chrXII SGD exon 147823 150393 . + . transcript_id "YLL001W_id003"; gene_id "YLL001W"; gene_name "DNM1"; +chrXII SGD transcript 147890 150163 . + . transcript_id "YLL001W_id001"; gene_id "YLL001W"; gene_name "DNM1"; transcript_biotype "protein_coding"; +chrXII SGD exon 147890 150163 . + 0 transcript_id "YLL001W_id001"; gene_name "DNM1"; gene_id "YLL001W"; +chrXII SGD gene 151245 153978 . - . gene_id "YLR001C"; gene_biotype "protein_coding"; +chrXII SGD transcript 151245 153978 . - . transcript_id "YLR001C_id002"; gene_id "YLR001C"; transcript_biotype "protein_coding"; +chrXII SGD exon 151245 153978 . - . transcript_id "YLR001C_id002"; gene_id "YLR001C"; +chrXII SGD transcript 151389 153977 . - . transcript_id "YLR001C_id001"; gene_id "YLR001C"; transcript_biotype "protein_coding"; +chrXII SGD exon 151389 153977 . - 0 transcript_id "YLR001C_id001"; gene_id "YLR001C"; +chrXII SGD gene 154222 156384 . - . gene_id "YLR002C"; gene_biotype "protein_coding"; +chrXII SGD transcript 154222 156384 . - . transcript_id "YLR002C_id002"; gene_id "YLR002C"; gene_name "NOC3"; transcript_biotype "protein_coding"; +chrXII SGD exon 154222 156384 . - . transcript_id "YLR002C_id002"; gene_id "YLR002C"; gene_name "NOC3"; +chrXII SGD transcript 154343 156334 . - . transcript_id "YLR002C_id001"; gene_id "YLR002C"; gene_name "NOC3"; transcript_biotype "protein_coding"; +chrXII SGD exon 154343 156334 . - 0 transcript_id "YLR002C_id001"; gene_name "NOC3"; gene_id "YLR002C"; +chrXII SGD gene 156726 157780 . - . gene_id "YLR003C"; gene_biotype "protein_coding"; +chrXII SGD transcript 156726 157780 . - . transcript_id "YLR003C_id001"; gene_id "YLR003C"; gene_name "CMS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 156726 157780 . - . transcript_id "YLR003C_id001"; gene_id "YLR003C"; gene_name "CMS1"; +chrXII SGD transcript 156855 157730 . - . transcript_id "YLR003C_id004"; gene_id "YLR003C"; gene_name "CMS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 156855 157730 . - 0 transcript_id "YLR003C_id004"; gene_name "CMS1"; gene_id "YLR003C"; +chrXII SGD gene 157868 159559 . - . gene_id "YLR004C"; gene_biotype "protein_coding"; +chrXII SGD transcript 157868 159559 . - . transcript_id "YLR004C_id006"; gene_id "YLR004C"; gene_name "THI73"; transcript_biotype "protein_coding"; +chrXII SGD exon 157868 159559 . - . transcript_id "YLR004C_id006"; gene_id "YLR004C"; gene_name "THI73"; +chrXII SGD transcript 157934 159505 . - . transcript_id "YLR004C_id001"; gene_id "YLR004C"; gene_name "THI73"; transcript_biotype "protein_coding"; +chrXII SGD exon 157934 159505 . - 0 transcript_id "YLR004C_id001"; gene_name "THI73"; gene_id "YLR004C"; +chrXII SGD gene 160012 161725 . + . gene_id "YLR005W"; gene_biotype "protein_coding"; +chrXII SGD transcript 160012 161725 . + . transcript_id "YLR005W_id001"; gene_id "YLR005W"; gene_name "SSL1"; transcript_biotype "protein_coding"; +chrXII SGD exon 160012 161725 . + . transcript_id "YLR005W_id001"; gene_id "YLR005W"; gene_name "SSL1"; +chrXII SGD transcript 160049 161434 . + . transcript_id "YLR005W_id002"; gene_id "YLR005W"; gene_name "SSL1"; transcript_biotype "protein_coding"; +chrXII SGD exon 160049 161434 . + 0 transcript_id "YLR005W_id002"; gene_name "SSL1"; gene_id "YLR005W"; +chrXII SGD gene 161755 163893 . - . gene_id "YLR006C"; gene_biotype "protein_coding"; +chrXII SGD transcript 161755 163893 . - . transcript_id "YLR006C_id001"; gene_id "YLR006C"; gene_name "SSK1"; transcript_biotype "protein_coding"; +chrXII SGD exon 161755 163893 . - 0 transcript_id "YLR006C_id001"; gene_name "SSK1"; gene_id "YLR006C"; +chrXII SGD gene 164385 165567 . + . gene_id "YLR007W"; gene_biotype "protein_coding"; +chrXII SGD transcript 164385 165567 . + . transcript_id "YLR007W_id001"; gene_id "YLR007W"; gene_name "NSE1"; transcript_biotype "protein_coding"; +chrXII SGD exon 164385 165567 . + . transcript_id "YLR007W_id001"; gene_id "YLR007W"; gene_name "NSE1"; +chrXII SGD transcript 164392 165402 . + . transcript_id "YLR007W_id002"; gene_id "YLR007W"; gene_name "NSE1"; transcript_biotype "protein_coding"; +chrXII SGD exon 164392 165402 . + 0 transcript_id "YLR007W_id002"; gene_name "NSE1"; gene_id "YLR007W"; +chrXII SGD gene 165249 166184 . - . gene_id "YLR008C"; gene_biotype "protein_coding"; +chrXII SGD transcript 165249 166184 . - . transcript_id "YLR008C_id001"; gene_id "YLR008C"; gene_name "PAM18"; transcript_biotype "protein_coding"; +chrXII SGD exon 165249 166184 . - . transcript_id "YLR008C_id001"; gene_id "YLR008C"; gene_name "PAM18"; +chrXII SGD transcript 165577 166083 . - . transcript_id "YLR008C_id003"; gene_id "YLR008C"; gene_name "PAM18"; transcript_biotype "protein_coding"; +chrXII SGD exon 165577 166083 . - 0 transcript_id "YLR008C_id003"; gene_name "PAM18"; gene_id "YLR008C"; +chrXII SGD gene 166347 167270 . + . gene_id "YLR009W"; gene_biotype "protein_coding"; +chrXII SGD transcript 166347 167270 . + . transcript_id "YLR009W_id010"; gene_id "YLR009W"; gene_name "RLP24"; transcript_biotype "protein_coding"; +chrXII SGD exon 166347 167270 . + . transcript_id "YLR009W_id010"; gene_id "YLR009W"; gene_name "RLP24"; +chrXII SGD transcript 166537 167136 . + . transcript_id "YLR009W_id001"; gene_id "YLR009W"; gene_name "RLP24"; transcript_biotype "protein_coding"; +chrXII SGD exon 166537 167136 . + 0 transcript_id "YLR009W_id001"; gene_name "RLP24"; gene_id "YLR009W"; +chrXII SGD gene 167116 167813 . - . gene_id "YLR010C"; gene_biotype "protein_coding"; +chrXII SGD transcript 167116 167813 . - . transcript_id "YLR010C_id004"; gene_id "YLR010C"; gene_name "TEN1"; transcript_biotype "protein_coding"; +chrXII SGD exon 167116 167813 . - . transcript_id "YLR010C_id004"; gene_id "YLR010C"; gene_name "TEN1"; +chrXII SGD transcript 167320 167802 . - . transcript_id "YLR010C_id001"; gene_id "YLR010C"; gene_name "TEN1"; transcript_biotype "protein_coding"; +chrXII SGD exon 167320 167802 . - 0 transcript_id "YLR010C_id001"; gene_name "TEN1"; gene_id "YLR010C"; +chrXII SGD gene 167944 168025 . - . gene_id "YNCL0002C"; gene_biotype "ncRNA"; +chrXII SGD transcript 167944 168025 . - . transcript_id "YNCL0002C_tRNA"; gene_id "YNCL0002C"; transcript_biotype "ncRNA"; +chrXII SGD exon 167944 168025 . - . transcript_id "YNCL0002C_tRNA"; gene_id "YNCL0002C"; +chrXII SGD gene 168881 169955 . + . gene_id "YLR011W"; gene_biotype "protein_coding"; +chrXII SGD transcript 168881 169955 . + . transcript_id "YLR011W_id001"; gene_id "YLR011W"; gene_name "LOT6"; transcript_biotype "protein_coding"; +chrXII SGD exon 168881 169955 . + . transcript_id "YLR011W_id001"; gene_id "YLR011W"; gene_name "LOT6"; +chrXII SGD transcript 169103 169678 . + . transcript_id "YLR011W_id002"; gene_id "YLR011W"; gene_name "LOT6"; transcript_biotype "protein_coding"; +chrXII SGD exon 169103 169678 . + 0 transcript_id "YLR011W_id002"; gene_name "LOT6"; gene_id "YLR011W"; +chrXII SGD gene 169982 170281 . - . gene_id "YLR012C"; gene_biotype "protein_coding"; +chrXII SGD transcript 169982 170281 . - . transcript_id "YLR012C_id001"; gene_id "YLR012C"; transcript_biotype "protein_coding"; +chrXII SGD exon 169982 170281 . - 0 transcript_id "YLR012C_id001"; gene_id "YLR012C"; +chrXII SGD gene 171339 171764 . + . gene_id "YLR013W"; gene_biotype "protein_coding"; +chrXII SGD transcript 171339 171764 . + . transcript_id "YLR013W_mRNA"; gene_id "YLR013W"; gene_name "GAT3"; transcript_biotype "protein_coding"; +chrXII SGD CDS 171339 171764 . + 0 transcript_id "YLR013W_mRNA"; gene_name "GAT3"; gene_id "YLR013W"; +chrXII SGD gene 172268 174982 . - . gene_id "YLR014C"; gene_biotype "protein_coding"; +chrXII SGD transcript 172268 174982 . - . transcript_id "YLR014C_mRNA"; gene_id "YLR014C"; gene_name "PPR1"; transcript_biotype "protein_coding"; +chrXII SGD CDS 172268 174982 . - 0 transcript_id "YLR014C_mRNA"; gene_name "PPR1"; gene_id "YLR014C"; +chrXII SGD gene 175174 177146 . + . gene_id "YLR015W"; gene_biotype "protein_coding"; +chrXII SGD transcript 175174 177146 . + . transcript_id "YLR015W_id002"; gene_id "YLR015W"; gene_name "BRE2"; transcript_biotype "protein_coding"; +chrXII SGD exon 175174 177146 . + . transcript_id "YLR015W_id002"; gene_id "YLR015W"; gene_name "BRE2"; +chrXII SGD transcript 175227 176744 . + . transcript_id "YLR015W_id001"; gene_id "YLR015W"; gene_name "BRE2"; transcript_biotype "protein_coding"; +chrXII SGD exon 175227 176744 . + 0 transcript_id "YLR015W_id001"; gene_name "BRE2"; gene_id "YLR015W"; +chrXII SGD gene 176477 177463 . - . gene_id "YLR016C"; gene_biotype "protein_coding"; +chrXII SGD transcript 176477 177463 . - . transcript_id "YLR016C_id002"; gene_id "YLR016C"; gene_name "PML1"; transcript_biotype "protein_coding"; +chrXII SGD exon 176477 177463 . - . transcript_id "YLR016C_id002"; gene_id "YLR016C"; gene_name "PML1"; +chrXII SGD transcript 176802 177416 . - . transcript_id "YLR016C_id001"; gene_id "YLR016C"; gene_name "PML1"; transcript_biotype "protein_coding"; +chrXII SGD exon 176802 177416 . - 0 transcript_id "YLR016C_id001"; gene_name "PML1"; gene_id "YLR016C"; +chrXII SGD gene 177600 178710 . + . gene_id "YLR017W"; gene_biotype "protein_coding"; +chrXII SGD transcript 177600 178710 . + . transcript_id "YLR017W_id007"; gene_id "YLR017W"; gene_name "MEU1"; transcript_biotype "protein_coding"; +chrXII SGD exon 177600 178710 . + . transcript_id "YLR017W_id007"; gene_id "YLR017W"; gene_name "MEU1"; +chrXII SGD transcript 177608 178621 . + . transcript_id "YLR017W_id001"; gene_id "YLR017W"; gene_name "MEU1"; transcript_biotype "protein_coding"; +chrXII SGD exon 177608 178621 . + 0 transcript_id "YLR017W_id001"; gene_name "MEU1"; gene_id "YLR017W"; +chrXII SGD gene 178572 179688 . - . gene_id "YLR018C"; gene_biotype "protein_coding"; +chrXII SGD transcript 178572 179688 . - . transcript_id "YLR018C_id001"; gene_id "YLR018C"; gene_name "POM34"; transcript_biotype "protein_coding"; +chrXII SGD exon 178572 179688 . - . transcript_id "YLR018C_id001"; gene_id "YLR018C"; gene_name "POM34"; +chrXII SGD transcript 178707 179606 . - . transcript_id "YLR018C_id005"; gene_id "YLR018C"; gene_name "POM34"; transcript_biotype "protein_coding"; +chrXII SGD exon 178707 179606 . - 0 transcript_id "YLR018C_id005"; gene_name "POM34"; gene_id "YLR018C"; +chrXII SGD gene 179982 181735 . + . gene_id "YLR019W"; gene_biotype "protein_coding"; +chrXII SGD transcript 179982 181735 . + . transcript_id "YLR019W_id005"; gene_id "YLR019W"; gene_name "PSR2"; transcript_biotype "protein_coding"; +chrXII SGD exon 179982 181735 . + . transcript_id "YLR019W_id005"; gene_id "YLR019W"; gene_name "PSR2"; +chrXII SGD transcript 180288 181481 . + . transcript_id "YLR019W_id001"; gene_id "YLR019W"; gene_name "PSR2"; transcript_biotype "protein_coding"; +chrXII SGD exon 180288 181481 . + 0 transcript_id "YLR019W_id001"; gene_name "PSR2"; gene_id "YLR019W"; +chrXII SGD gene 181612 183455 . - . gene_id "YLR020C"; gene_biotype "protein_coding"; +chrXII SGD transcript 181612 183455 . - . transcript_id "YLR020C_id002"; gene_id "YLR020C"; gene_name "YEH2"; transcript_biotype "protein_coding"; +chrXII SGD exon 181612 183455 . - . transcript_id "YLR020C_id002"; gene_id "YLR020C"; gene_name "YEH2"; +chrXII SGD transcript 181789 183405 . - . transcript_id "YLR020C_id001"; gene_id "YLR020C"; gene_name "YEH2"; transcript_biotype "protein_coding"; +chrXII SGD exon 181789 183405 . - 0 transcript_id "YLR020C_id001"; gene_name "YEH2"; gene_id "YLR020C"; +chrXII SGD gene 183614 184640 . + . gene_id "YLR021W"; gene_biotype "protein_coding"; +chrXII SGD transcript 183614 184640 . + . transcript_id "YLR021W_id001"; gene_id "YLR021W"; gene_name "IRC25"; transcript_biotype "protein_coding"; +chrXII SGD exon 183614 184640 . + . transcript_id "YLR021W_id001"; gene_id "YLR021W"; gene_name "IRC25"; +chrXII SGD transcript 183623 184162 . + . transcript_id "YLR021W_id002"; gene_id "YLR021W"; gene_name "IRC25"; transcript_biotype "protein_coding"; +chrXII SGD exon 183623 184162 . + 0 transcript_id "YLR021W_id002"; gene_name "IRC25"; gene_id "YLR021W"; +chrXII SGD gene 183884 184964 . - . gene_id "YLR022C"; gene_biotype "protein_coding"; +chrXII SGD transcript 183884 184964 . - . transcript_id "YLR022C_id001"; gene_id "YLR022C"; gene_name "SDO1"; transcript_biotype "protein_coding"; +chrXII SGD exon 183884 184964 . - . transcript_id "YLR022C_id001"; gene_id "YLR022C"; gene_name "SDO1"; +chrXII SGD transcript 184174 184926 . - . transcript_id "YLR022C_id002"; gene_id "YLR022C"; gene_name "SDO1"; transcript_biotype "protein_coding"; +chrXII SGD exon 184174 184926 . - 0 transcript_id "YLR022C_id002"; gene_name "SDO1"; gene_id "YLR022C"; +chrXII SGD gene 185028 187342 . - . gene_id "YLR023C"; gene_biotype "protein_coding"; +chrXII SGD transcript 185028 187342 . - . transcript_id "YLR023C_id002"; gene_id "YLR023C"; gene_name "IZH3"; transcript_biotype "protein_coding"; +chrXII SGD exon 185028 187342 . - . transcript_id "YLR023C_id002"; gene_id "YLR023C"; gene_name "IZH3"; +chrXII SGD transcript 185498 187129 . - . transcript_id "YLR023C_id001"; gene_id "YLR023C"; gene_name "IZH3"; transcript_biotype "protein_coding"; +chrXII SGD exon 185498 187129 . - 0 transcript_id "YLR023C_id001"; gene_name "IZH3"; gene_id "YLR023C"; +chrXII SGD gene 187663 193281 . - . gene_id "YLR024C"; gene_biotype "protein_coding"; +chrXII SGD transcript 187663 193281 . - . transcript_id "YLR024C_mRNA"; gene_id "YLR024C"; gene_name "UBR2"; transcript_biotype "protein_coding"; +chrXII SGD CDS 187663 193281 . - 0 transcript_id "YLR024C_mRNA"; gene_name "UBR2"; gene_id "YLR024C"; +chrXII SGD gene 194388 195459 . + . gene_id "YLR025W"; gene_biotype "protein_coding"; +chrXII SGD transcript 194388 195459 . + . transcript_id "YLR025W_id001"; gene_id "YLR025W"; gene_name "SNF7"; transcript_biotype "protein_coding"; +chrXII SGD exon 194388 195459 . + . transcript_id "YLR025W_id001"; gene_id "YLR025W"; gene_name "SNF7"; +chrXII SGD transcript 194452 195174 . + . transcript_id "YLR025W_id002"; gene_id "YLR025W"; gene_name "SNF7"; transcript_biotype "protein_coding"; +chrXII SGD exon 194452 195174 . + 0 transcript_id "YLR025W_id002"; gene_name "SNF7"; gene_id "YLR025W"; +chrXII SGD gene 195218 196564 . - . gene_id "YLR026C"; gene_biotype "protein_coding"; +chrXII SGD transcript 195218 196564 . - . transcript_id "YLR026C_id002"; gene_id "YLR026C"; gene_name "SED5"; transcript_biotype "protein_coding"; +chrXII SGD exon 195218 196564 . - . transcript_id "YLR026C_id002"; gene_id "YLR026C"; gene_name "SED5"; +chrXII SGD transcript 195450 196472 . - . transcript_id "YLR026C_id001"; gene_id "YLR026C"; gene_name "SED5"; transcript_biotype "protein_coding"; +chrXII SGD exon 195450 196472 . - 0 transcript_id "YLR026C_id001"; gene_name "SED5"; gene_id "YLR026C"; +chrXII SGD gene 196484 198113 . - . gene_id "YLR027C"; gene_biotype "protein_coding"; +chrXII SGD transcript 196484 198113 . - . transcript_id "YLR027C_id001"; gene_id "YLR027C"; gene_name "AAT2"; transcript_biotype "protein_coding"; +chrXII SGD exon 196484 198113 . - . transcript_id "YLR027C_id001"; gene_id "YLR027C"; gene_name "AAT2"; +chrXII SGD transcript 196829 198085 . - . transcript_id "YLR027C_id002"; gene_id "YLR027C"; gene_name "AAT2"; transcript_biotype "protein_coding"; +chrXII SGD exon 196829 198085 . - 0 transcript_id "YLR027C_id002"; gene_name "AAT2"; gene_id "YLR027C"; +chrXII SGD gene 198784 199389 . + . gene_id "YNCL0003W"; gene_biotype "ncRNA"; +chrXII SGD transcript 198784 199389 . + . transcript_id "YNCL0003W_snoRNA"; gene_id "YNCL0003W"; gene_name "SNR30"; transcript_biotype "ncRNA"; +chrXII SGD exon 198784 199389 . + . transcript_id "YNCL0003W_snoRNA"; gene_name "SNR30"; gene_id "YNCL0003W"; +chrXII SGD gene 199401 201521 . - . gene_id "YLR028C"; gene_biotype "protein_coding"; +chrXII SGD transcript 199401 201521 . - . transcript_id "YLR028C_id004"; gene_id "YLR028C"; gene_name "ADE16"; transcript_biotype "protein_coding"; +chrXII SGD exon 199401 201521 . - . transcript_id "YLR028C_id004"; gene_id "YLR028C"; gene_name "ADE16"; +chrXII SGD transcript 199540 201315 . - . transcript_id "YLR028C_id001"; gene_id "YLR028C"; gene_name "ADE16"; transcript_biotype "protein_coding"; +chrXII SGD exon 199540 201315 . - 0 transcript_id "YLR028C_id001"; gene_name "ADE16"; gene_id "YLR028C"; +chrXII SGD gene 201598 202613 . - . gene_id "YLR029C"; gene_biotype "protein_coding"; +chrXII SGD transcript 201598 202613 . - . transcript_id "YLR029C_id001"; gene_id "YLR029C"; gene_name "RPL15A"; transcript_biotype "protein_coding"; +chrXII SGD exon 201598 202613 . - . transcript_id "YLR029C_id001"; gene_id "YLR029C"; gene_name "RPL15A"; +chrXII SGD transcript 201976 202590 . - . transcript_id "YLR029C_id002"; gene_id "YLR029C"; gene_name "RPL15A"; transcript_biotype "protein_coding"; +chrXII SGD exon 201976 202590 . - 0 transcript_id "YLR029C_id002"; gene_name "RPL15A"; gene_id "YLR029C"; +chrXII SGD gene 203290 204081 . + . gene_id "YLR030W"; gene_biotype "protein_coding"; +chrXII SGD transcript 203290 204081 . + . transcript_id "YLR030W_mRNA"; gene_id "YLR030W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 203290 204081 . + 0 transcript_id "YLR030W_mRNA"; gene_id "YLR030W"; +chrXII SGD gene 204225 204785 . + . gene_id "YLR031W"; gene_biotype "protein_coding"; +chrXII SGD transcript 204225 204785 . + . transcript_id "YLR031W_id001"; gene_id "YLR031W"; transcript_biotype "protein_coding"; +chrXII SGD exon 204225 204785 . + 0 transcript_id "YLR031W_id001"; gene_id "YLR031W"; +chrXII SGD gene 204991 208500 . + . gene_id "YLR032W"; gene_biotype "protein_coding"; +chrXII SGD transcript 204991 208500 . + . transcript_id "YLR032W_id001"; gene_id "YLR032W"; gene_name "RAD5"; transcript_biotype "protein_coding"; +chrXII SGD exon 204991 208500 . + 0 transcript_id "YLR032W_id001"; gene_name "RAD5"; gene_id "YLR032W"; +chrXII SGD gene 208653 210467 . + . gene_id "YLR033W"; gene_biotype "protein_coding"; +chrXII SGD transcript 208653 210467 . + . transcript_id "YLR033W_id001"; gene_id "YLR033W"; gene_name "RSC58"; transcript_biotype "protein_coding"; +chrXII SGD exon 208653 210467 . + . transcript_id "YLR033W_id001"; gene_id "YLR033W"; gene_name "RSC58"; +chrXII SGD transcript 208761 210269 . + . transcript_id "YLR033W_id002"; gene_id "YLR033W"; gene_name "RSC58"; transcript_biotype "protein_coding"; +chrXII SGD exon 208761 210269 . + 0 transcript_id "YLR033W_id002"; gene_name "RSC58"; gene_id "YLR033W"; +chrXII SGD gene 210077 212098 . - . gene_id "YLR034C"; gene_biotype "protein_coding"; +chrXII SGD transcript 210077 212098 . - . transcript_id "YLR034C_id001"; gene_id "YLR034C"; gene_name "SMF3"; transcript_biotype "protein_coding"; +chrXII SGD exon 210077 212098 . - . transcript_id "YLR034C_id001"; gene_id "YLR034C"; gene_name "SMF3"; +chrXII SGD transcript 210512 211933 . - . transcript_id "YLR034C_id005"; gene_id "YLR034C"; gene_name "SMF3"; transcript_biotype "protein_coding"; +chrXII SGD exon 210512 211933 . - 0 transcript_id "YLR034C_id005"; gene_name "SMF3"; gene_id "YLR034C"; +chrXII SGD gene 212003 214478 . - . gene_id "YLR035C"; gene_biotype "protein_coding"; +chrXII SGD transcript 212003 214478 . - . transcript_id "YLR035C_id001"; gene_id "YLR035C"; gene_name "MLH2"; transcript_biotype "protein_coding"; +chrXII SGD exon 212003 214478 . - . transcript_id "YLR035C_id001"; gene_id "YLR035C"; gene_name "MLH2"; +chrXII SGD transcript 212369 214456 . - . transcript_id "YLR035C_id003"; gene_id "YLR035C"; gene_name "MLH2"; transcript_biotype "protein_coding"; +chrXII SGD exon 212369 214456 . - 0 transcript_id "YLR035C_id003"; gene_name "MLH2"; gene_id "YLR035C"; +chrXII SGD gene 214883 214955 . - . gene_id "YNCL0004C"; gene_biotype "ncRNA"; +chrXII SGD transcript 214883 214955 . - . transcript_id "YNCL0004C_tRNA"; gene_id "YNCL0004C"; transcript_biotype "ncRNA"; +chrXII SGD exon 214883 214955 . - . transcript_id "YNCL0004C_tRNA"; gene_id "YNCL0004C"; +chrXII SGD gene 215440 218907 . - . gene_id "YLR035C-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 215440 218907 . - . transcript_id "YLR035C-A_dummy"; gene_id "YLR035C-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 215440 218907 . - 0 transcript_id "YLR035C-A_dummy"; gene_id "YLR035C-A"; +chrXII SGD gene 221348 222411 . - . gene_id "YLR036C"; gene_biotype "protein_coding"; +chrXII SGD transcript 221348 222411 . - . transcript_id "YLR036C_id001"; gene_id "YLR036C"; transcript_biotype "protein_coding"; +chrXII SGD exon 221348 222411 . - . transcript_id "YLR036C_id001"; gene_id "YLR036C"; +chrXII SGD transcript 221521 222132 . - . transcript_id "YLR036C_id003"; gene_id "YLR036C"; transcript_biotype "protein_coding"; +chrXII SGD exon 221521 222132 . - 0 transcript_id "YLR036C_id003"; gene_id "YLR036C"; +chrXII SGD gene 222534 224576 . - . gene_id "YLR037C"; gene_biotype "protein_coding"; +chrXII SGD transcript 222534 224576 . - . transcript_id "YLR037C_id002"; gene_id "YLR037C"; gene_name "PAU23"; transcript_biotype "protein_coding"; +chrXII SGD exon 222534 224576 . - . transcript_id "YLR037C_id002"; gene_id "YLR037C"; gene_name "PAU23"; +chrXII SGD transcript 222685 223059 . - . transcript_id "YLR037C_id001"; gene_id "YLR037C"; gene_name "PAU23"; transcript_biotype "protein_coding"; +chrXII SGD exon 222685 223059 . - 0 transcript_id "YLR037C_id001"; gene_name "PAU23"; gene_id "YLR037C"; +chrXII SGD gene 224870 225698 . - . gene_id "YLR038C"; gene_biotype "protein_coding"; +chrXII SGD transcript 224870 225698 . - . transcript_id "YLR038C_id001"; gene_id "YLR038C"; gene_name "COX12"; transcript_biotype "protein_coding"; +chrXII SGD exon 224870 225698 . - . transcript_id "YLR038C_id001"; gene_id "YLR038C"; gene_name "COX12"; +chrXII SGD transcript 224921 225172 . - . transcript_id "YLR038C_id002"; gene_id "YLR038C"; gene_name "COX12"; transcript_biotype "protein_coding"; +chrXII SGD exon 224921 225172 . - 0 transcript_id "YLR038C_id002"; gene_name "COX12"; gene_id "YLR038C"; +chrXII SGD gene 225426 228596 . - . gene_id "YLR039C"; gene_biotype "protein_coding"; +chrXII SGD transcript 225426 228596 . - . transcript_id "YLR039C_mRNA"; gene_id "YLR039C"; gene_name "RIC1"; transcript_biotype "protein_coding"; +chrXII SGD CDS 225426 228596 . - 0 transcript_id "YLR039C_mRNA"; gene_name "RIC1"; gene_id "YLR039C"; +chrXII SGD gene 228764 229876 . - . gene_id "YLR040C"; gene_biotype "protein_coding"; +chrXII SGD transcript 228764 229876 . - . transcript_id "YLR040C_id001"; gene_id "YLR040C"; gene_name "AFB1"; transcript_biotype "protein_coding"; +chrXII SGD exon 228764 229876 . - . transcript_id "YLR040C_id001"; gene_id "YLR040C"; gene_name "AFB1"; +chrXII SGD transcript 228908 229582 . - . transcript_id "YLR040C_id002"; gene_id "YLR040C"; gene_name "AFB1"; transcript_biotype "protein_coding"; +chrXII SGD exon 228908 229582 . - 0 transcript_id "YLR040C_id002"; gene_name "AFB1"; gene_id "YLR040C"; +chrXII SGD gene 228917 230656 . + . gene_id "YLR041W"; gene_biotype "protein_coding"; +chrXII SGD transcript 228917 230656 . + . transcript_id "YLR041W_id001"; gene_id "YLR041W"; transcript_biotype "protein_coding"; +chrXII SGD exon 228917 230656 . + . transcript_id "YLR041W_id001"; gene_id "YLR041W"; +chrXII SGD transcript 229377 229697 . + . transcript_id "YLR041W_id003"; gene_id "YLR041W"; transcript_biotype "protein_coding"; +chrXII SGD exon 229377 229697 . + 0 transcript_id "YLR041W_id003"; gene_id "YLR041W"; +chrXII SGD gene 229849 230549 . - . gene_id "YLR042C"; gene_biotype "protein_coding"; +chrXII SGD transcript 229849 230549 . - . transcript_id "YLR042C_id002"; gene_id "YLR042C"; gene_name "NFG1"; transcript_biotype "protein_coding"; +chrXII SGD exon 229849 230549 . - . transcript_id "YLR042C_id002"; gene_id "YLR042C"; gene_name "NFG1"; +chrXII SGD transcript 229966 230451 . - . transcript_id "YLR042C_id001"; gene_id "YLR042C"; gene_name "NFG1"; transcript_biotype "protein_coding"; +chrXII SGD exon 229966 230451 . - 0 transcript_id "YLR042C_id001"; gene_name "NFG1"; gene_id "YLR042C"; +chrXII SGD gene 231361 232040 . - . gene_id "YLR043C"; gene_biotype "protein_coding"; +chrXII SGD transcript 231361 232040 . - . transcript_id "YLR043C_id001"; gene_id "YLR043C"; gene_name "TRX1"; transcript_biotype "protein_coding"; +chrXII SGD exon 231361 232040 . - . transcript_id "YLR043C_id001"; gene_id "YLR043C"; gene_name "TRX1"; +chrXII SGD transcript 231702 232013 . - . transcript_id "YLR043C_id002"; gene_id "YLR043C"; gene_name "TRX1"; transcript_biotype "protein_coding"; +chrXII SGD exon 231702 232013 . - 0 transcript_id "YLR043C_id002"; gene_name "TRX1"; gene_id "YLR043C"; +chrXII SGD gene 232313 234289 . - . gene_id "YLR044C"; gene_biotype "protein_coding"; +chrXII SGD transcript 232313 234289 . - . transcript_id "YLR044C_id001"; gene_id "YLR044C"; gene_name "PDC1"; transcript_biotype "protein_coding"; +chrXII SGD exon 232313 234289 . - . transcript_id "YLR044C_id001"; gene_id "YLR044C"; gene_name "PDC1"; +chrXII SGD transcript 232390 234081 . - . transcript_id "YLR044C_id002"; gene_id "YLR044C"; gene_name "PDC1"; transcript_biotype "protein_coding"; +chrXII SGD exon 232390 234081 . - 0 transcript_id "YLR044C_id002"; gene_name "PDC1"; gene_id "YLR044C"; +chrXII SGD gene 234919 237703 . - . gene_id "YLR045C"; gene_biotype "protein_coding"; +chrXII SGD transcript 234919 237703 . - . transcript_id "YLR045C_id006"; gene_id "YLR045C"; gene_name "STU2"; transcript_biotype "protein_coding"; +chrXII SGD exon 234919 237703 . - . transcript_id "YLR045C_id006"; gene_id "YLR045C"; gene_name "STU2"; +chrXII SGD transcript 235037 237703 . - . transcript_id "YLR045C_id001"; gene_id "YLR045C"; gene_name "STU2"; transcript_biotype "protein_coding"; +chrXII SGD exon 235037 237703 . - 0 transcript_id "YLR045C_id001"; gene_name "STU2"; gene_id "YLR045C"; +chrXII SGD gene 237949 240977 . - . gene_id "YLR046C"; gene_biotype "protein_coding"; +chrXII SGD transcript 237949 240977 . - . transcript_id "YLR046C_id001"; gene_id "YLR046C"; transcript_biotype "protein_coding"; +chrXII SGD exon 237949 240977 . - . transcript_id "YLR046C_id001"; gene_id "YLR046C"; +chrXII SGD transcript 238001 238813 . - . transcript_id "YLR046C_id002"; gene_id "YLR046C"; transcript_biotype "protein_coding"; +chrXII SGD exon 238001 238813 . - 0 transcript_id "YLR046C_id002"; gene_id "YLR046C"; +chrXII SGD gene 239347 241407 . - . gene_id "YLR047C"; gene_biotype "protein_coding"; +chrXII SGD transcript 239347 241407 . - . transcript_id "YLR047C_mRNA"; gene_id "YLR047C"; gene_name "FRE8"; transcript_biotype "protein_coding"; +chrXII SGD CDS 239347 241407 . - 0 transcript_id "YLR047C_mRNA"; gene_name "FRE8"; gene_id "YLR047C"; +chrXII SGD gene 241930 243568 . + . gene_id "YLR048W"; gene_biotype "protein_coding"; +chrXII SGD transcript 241930 243568 . + . transcript_id "YLR048W_id002"; gene_id "YLR048W"; gene_name "RPS0B"; transcript_biotype "protein_coding"; +chrXII SGD exon 241930 243568 . + . transcript_id "YLR048W_id002"; gene_id "YLR048W"; gene_name "RPS0B"; +chrXII SGD transcript 242232 243349 . + . transcript_id "YLR048W_id001"; gene_id "YLR048W"; gene_name "RPS0B"; transcript_biotype "protein_coding"; +chrXII SGD exon 242232 242321 . + 0 transcript_id "YLR048W_id001"; gene_name "RPS0B"; gene_id "YLR048W"; +chrXII SGD exon 242681 243349 . + 0 transcript_id "YLR048W_id001"; gene_name "RPS0B"; gene_id "YLR048W"; +chrXII SGD gene 243783 245384 . - . gene_id "YLR049C"; gene_biotype "protein_coding"; +chrXII SGD transcript 243783 245384 . - . transcript_id "YLR049C_id005"; gene_id "YLR049C"; gene_name "MLO50"; transcript_biotype "protein_coding"; +chrXII SGD exon 243783 245384 . - . transcript_id "YLR049C_id005"; gene_id "YLR049C"; gene_name "MLO50"; +chrXII SGD transcript 243886 245172 . - . transcript_id "YLR049C_id001"; gene_id "YLR049C"; gene_name "MLO50"; transcript_biotype "protein_coding"; +chrXII SGD exon 243886 245172 . - 0 transcript_id "YLR049C_id001"; gene_name "MLO50"; gene_id "YLR049C"; +chrXII SGD gene 245495 246269 . - . gene_id "YLR050C"; gene_biotype "protein_coding"; +chrXII SGD transcript 245495 246269 . - . transcript_id "YLR050C_id002"; gene_id "YLR050C"; gene_name "EMA19"; transcript_biotype "protein_coding"; +chrXII SGD exon 245495 246269 . - . transcript_id "YLR050C_id002"; gene_id "YLR050C"; gene_name "EMA19"; +chrXII SGD transcript 245587 246072 . - . transcript_id "YLR050C_id001"; gene_id "YLR050C"; gene_name "EMA19"; transcript_biotype "protein_coding"; +chrXII SGD exon 245587 246072 . - 0 transcript_id "YLR050C_id001"; gene_name "EMA19"; gene_id "YLR050C"; +chrXII SGD gene 246173 247011 . - . gene_id "YLR051C"; gene_biotype "protein_coding"; +chrXII SGD transcript 246173 247011 . - . transcript_id "YLR051C_id003"; gene_id "YLR051C"; gene_name "FCF2"; transcript_biotype "protein_coding"; +chrXII SGD exon 246173 247011 . - . transcript_id "YLR051C_id003"; gene_id "YLR051C"; gene_name "FCF2"; +chrXII SGD transcript 246324 246977 . - . transcript_id "YLR051C_id001"; gene_id "YLR051C"; gene_name "FCF2"; transcript_biotype "protein_coding"; +chrXII SGD exon 246324 246977 . - 0 transcript_id "YLR051C_id001"; gene_name "FCF2"; gene_id "YLR051C"; +chrXII SGD gene 247155 248641 . + . gene_id "YLR052W"; gene_biotype "protein_coding"; +chrXII SGD transcript 247155 248641 . + . transcript_id "YLR052W_id004"; gene_id "YLR052W"; gene_name "IES3"; transcript_biotype "protein_coding"; +chrXII SGD exon 247155 248641 . + . transcript_id "YLR052W_id004"; gene_id "YLR052W"; gene_name "IES3"; +chrXII SGD transcript 247201 247953 . + . transcript_id "YLR052W_id001"; gene_id "YLR052W"; gene_name "IES3"; transcript_biotype "protein_coding"; +chrXII SGD exon 247201 247953 . + 0 transcript_id "YLR052W_id001"; gene_name "IES3"; gene_id "YLR052W"; +chrXII SGD gene 248000 248438 . - . gene_id "YLR053C"; gene_biotype "protein_coding"; +chrXII SGD transcript 248000 248438 . - . transcript_id "YLR053C_id002"; gene_id "YLR053C"; gene_name "NRS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 248000 248438 . - . transcript_id "YLR053C_id002"; gene_id "YLR053C"; gene_name "NRS1"; +chrXII SGD transcript 248100 248426 . - . transcript_id "YLR053C_id001"; gene_id "YLR053C"; gene_name "NRS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 248100 248426 . - 0 transcript_id "YLR053C_id001"; gene_name "NRS1"; gene_id "YLR053C"; +chrXII SGD gene 248717 250978 . - . gene_id "YLR054C"; gene_biotype "protein_coding"; +chrXII SGD transcript 248717 250978 . - . transcript_id "YLR054C_mRNA"; gene_id "YLR054C"; gene_name "OSW2"; transcript_biotype "protein_coding"; +chrXII SGD CDS 248717 250860 . - 2 transcript_id "YLR054C_mRNA"; gene_name "OSW2"; gene_id "YLR054C"; +chrXII SGD CDS 250948 250978 . - 0 transcript_id "YLR054C_mRNA"; gene_name "OSW2"; gene_id "YLR054C"; +chrXII SGD gene 251272 253080 . - . gene_id "YLR055C"; gene_biotype "protein_coding"; +chrXII SGD transcript 251272 253080 . - . transcript_id "YLR055C_id001"; gene_id "YLR055C"; gene_name "SPT8"; transcript_biotype "protein_coding"; +chrXII SGD exon 251272 253080 . - 0 transcript_id "YLR055C_id001"; gene_name "SPT8"; gene_id "YLR055C"; +chrXII SGD gene 253650 255085 . + . gene_id "YLR056W"; gene_biotype "protein_coding"; +chrXII SGD transcript 253650 255085 . + . transcript_id "YLR056W_id003"; gene_id "YLR056W"; gene_name "ERG3"; transcript_biotype "protein_coding"; +chrXII SGD exon 253650 255085 . + . transcript_id "YLR056W_id003"; gene_id "YLR056W"; gene_name "ERG3"; +chrXII SGD transcript 253861 254958 . + . transcript_id "YLR056W_id001"; gene_id "YLR056W"; gene_name "ERG3"; transcript_biotype "protein_coding"; +chrXII SGD exon 253861 254958 . + 0 transcript_id "YLR056W_id001"; gene_name "ERG3"; gene_id "YLR056W"; +chrXII SGD gene 255241 257969 . + . gene_id "YLR057W"; gene_biotype "protein_coding"; +chrXII SGD transcript 255241 257969 . + . transcript_id "YLR057W_id001"; gene_id "YLR057W"; gene_name "MNL2"; transcript_biotype "protein_coding"; +chrXII SGD exon 255241 257969 . + . transcript_id "YLR057W_id001"; gene_id "YLR057W"; gene_name "MNL2"; +chrXII SGD transcript 255306 257855 . + . transcript_id "YLR057W_id002"; gene_id "YLR057W"; gene_name "MNL2"; transcript_biotype "protein_coding"; +chrXII SGD exon 255306 257855 . + 0 transcript_id "YLR057W_id002"; gene_name "MNL2"; gene_id "YLR057W"; +chrXII SGD gene 257842 259515 . - . gene_id "YLR058C"; gene_biotype "protein_coding"; +chrXII SGD transcript 257842 259515 . - . transcript_id "YLR058C_id003"; gene_id "YLR058C"; gene_name "SHM2"; transcript_biotype "protein_coding"; +chrXII SGD exon 257842 259515 . - . transcript_id "YLR058C_id003"; gene_id "YLR058C"; gene_name "SHM2"; +chrXII SGD transcript 257992 259401 . - . transcript_id "YLR058C_id001"; gene_id "YLR058C"; gene_name "SHM2"; transcript_biotype "protein_coding"; +chrXII SGD exon 257992 259401 . - 0 transcript_id "YLR058C_id001"; gene_name "SHM2"; gene_id "YLR058C"; +chrXII SGD gene 259738 260547 . - . gene_id "YLR059C"; gene_biotype "protein_coding"; +chrXII SGD transcript 259738 260547 . - . transcript_id "YLR059C_id001"; gene_id "YLR059C"; gene_name "REX2"; transcript_biotype "protein_coding"; +chrXII SGD exon 259738 260547 . - 0 transcript_id "YLR059C_id001"; gene_name "REX2"; gene_id "YLR059C"; +chrXII SGD gene 260926 262924 . + . gene_id "YLR060W"; gene_biotype "protein_coding"; +chrXII SGD transcript 260926 262924 . + . transcript_id "YLR060W_id001"; gene_id "YLR060W"; gene_name "FRS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 260926 262924 . + . transcript_id "YLR060W_id001"; gene_id "YLR060W"; gene_name "FRS1"; +chrXII SGD transcript 260979 262766 . + . transcript_id "YLR060W_id004"; gene_id "YLR060W"; gene_name "FRS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 260979 262766 . + 0 transcript_id "YLR060W_id004"; gene_name "FRS1"; gene_id "YLR060W"; +chrXII SGD gene 263109 264053 . + . gene_id "YLR061W"; gene_biotype "protein_coding"; +chrXII SGD transcript 263109 264053 . + . transcript_id "YLR061W_id001"; gene_id "YLR061W"; gene_name "RPL22A"; transcript_biotype "protein_coding"; +chrXII SGD exon 263109 264053 . + . transcript_id "YLR061W_id001"; gene_id "YLR061W"; gene_name "RPL22A"; +chrXII SGD transcript 263194 263948 . + . transcript_id "YLR061W_id002"; gene_id "YLR061W"; gene_name "RPL22A"; transcript_biotype "protein_coding"; +chrXII SGD exon 263194 263205 . + 0 transcript_id "YLR061W_id002"; gene_name "RPL22A"; gene_id "YLR061W"; +chrXII SGD exon 263595 263948 . + 0 transcript_id "YLR061W_id002"; gene_name "RPL22A"; gene_id "YLR061W"; +chrXII SGD gene 263577 263954 . - . gene_id "YLR062C"; gene_biotype "protein_coding"; +chrXII SGD transcript 263577 263954 . - . transcript_id "YLR062C_mRNA"; gene_id "YLR062C"; gene_name "BUD28"; transcript_biotype "protein_coding"; +chrXII SGD CDS 263577 263954 . - 0 transcript_id "YLR062C_mRNA"; gene_name "BUD28"; gene_id "YLR062C"; +chrXII SGD gene 264157 265254 . + . gene_id "YLR063W"; gene_biotype "protein_coding"; +chrXII SGD transcript 264157 265254 . + . transcript_id "YLR063W_mRNA"; gene_id "YLR063W"; gene_name "BMT6"; transcript_biotype "protein_coding"; +chrXII SGD CDS 264157 265254 . + 0 transcript_id "YLR063W_mRNA"; gene_name "BMT6"; gene_id "YLR063W"; +chrXII SGD gene 264233 266361 . + . gene_id "YLR064W"; gene_biotype "protein_coding"; +chrXII SGD transcript 264233 266361 . + . transcript_id "YLR064W_id002"; gene_id "YLR064W"; gene_name "PER33"; transcript_biotype "protein_coding"; +chrXII SGD exon 264233 266361 . + . transcript_id "YLR064W_id002"; gene_id "YLR064W"; gene_name "PER33"; +chrXII SGD transcript 265456 266277 . + . transcript_id "YLR064W_id001"; gene_id "YLR064W"; gene_name "PER33"; transcript_biotype "protein_coding"; +chrXII SGD exon 265456 266277 . + 0 transcript_id "YLR064W_id001"; gene_name "PER33"; gene_id "YLR064W"; +chrXII SGD gene 265595 266976 . - . gene_id "YLR065C"; gene_biotype "protein_coding"; +chrXII SGD transcript 265595 266976 . - . transcript_id "YLR065C_id001"; gene_id "YLR065C"; gene_name "SND2"; transcript_biotype "protein_coding"; +chrXII SGD exon 265595 266976 . - . transcript_id "YLR065C_id001"; gene_id "YLR065C"; gene_name "SND2"; +chrXII SGD transcript 266373 266918 . - . transcript_id "YLR065C_id003"; gene_id "YLR065C"; gene_name "SND2"; transcript_biotype "protein_coding"; +chrXII SGD exon 266373 266918 . - 0 transcript_id "YLR065C_id003"; gene_name "SND2"; gene_id "YLR065C"; +chrXII SGD gene 267093 268008 . + . gene_id "YLR066W"; gene_biotype "protein_coding"; +chrXII SGD transcript 267093 268008 . + . transcript_id "YLR066W_id001"; gene_id "YLR066W"; gene_name "SPC3"; transcript_biotype "protein_coding"; +chrXII SGD exon 267093 268008 . + . transcript_id "YLR066W_id001"; gene_id "YLR066W"; gene_name "SPC3"; +chrXII SGD transcript 267169 267723 . + . transcript_id "YLR066W_id003"; gene_id "YLR066W"; gene_name "SPC3"; transcript_biotype "protein_coding"; +chrXII SGD exon 267169 267723 . + 0 transcript_id "YLR066W_id003"; gene_name "SPC3"; gene_id "YLR066W"; +chrXII SGD gene 267813 270710 . - . gene_id "YLR067C"; gene_biotype "protein_coding"; +chrXII SGD transcript 267813 270710 . - . transcript_id "YLR067C_id001"; gene_id "YLR067C"; gene_name "PET309"; transcript_biotype "protein_coding"; +chrXII SGD exon 267813 270710 . - 0 transcript_id "YLR067C_id001"; gene_name "PET309"; gene_id "YLR067C"; +chrXII SGD gene 270929 271562 . + . gene_id "YLR068W"; gene_biotype "protein_coding"; +chrXII SGD transcript 270929 271562 . + . transcript_id "YLR068W_id003"; gene_id "YLR068W"; gene_name "FYV7"; transcript_biotype "protein_coding"; +chrXII SGD exon 270929 271562 . + . transcript_id "YLR068W_id003"; gene_id "YLR068W"; gene_name "FYV7"; +chrXII SGD transcript 271008 271463 . + . transcript_id "YLR068W_id001"; gene_id "YLR068W"; gene_name "FYV7"; transcript_biotype "protein_coding"; +chrXII SGD exon 271008 271463 . + 0 transcript_id "YLR068W_id001"; gene_name "FYV7"; gene_id "YLR068W"; +chrXII SGD gene 271475 273967 . - . gene_id "YLR069C"; gene_biotype "protein_coding"; +chrXII SGD transcript 271475 273967 . - . transcript_id "YLR069C_id001"; gene_id "YLR069C"; gene_name "MEF1"; transcript_biotype "protein_coding"; +chrXII SGD exon 271475 273967 . - . transcript_id "YLR069C_id001"; gene_id "YLR069C"; gene_name "MEF1"; +chrXII SGD transcript 271630 273915 . - . transcript_id "YLR069C_id002"; gene_id "YLR069C"; gene_name "MEF1"; transcript_biotype "protein_coding"; +chrXII SGD exon 271630 273915 . - 0 transcript_id "YLR069C_id002"; gene_name "MEF1"; gene_id "YLR069C"; +chrXII SGD gene 274141 275211 . - . gene_id "YLR070C"; gene_biotype "protein_coding"; +chrXII SGD transcript 274141 275211 . - . transcript_id "YLR070C_mRNA"; gene_id "YLR070C"; gene_name "XYL2"; transcript_biotype "protein_coding"; +chrXII SGD CDS 274141 275211 . - 0 transcript_id "YLR070C_mRNA"; gene_name "XYL2"; gene_id "YLR070C"; +chrXII SGD gene 275378 278626 . - . gene_id "YLR071C"; gene_biotype "protein_coding"; +chrXII SGD transcript 275378 278626 . - . transcript_id "YLR071C_id001"; gene_id "YLR071C"; gene_name "RGR1"; transcript_biotype "protein_coding"; +chrXII SGD exon 275378 278626 . - 0 transcript_id "YLR071C_id001"; gene_name "RGR1"; gene_id "YLR071C"; +chrXII SGD gene 278796 280996 . + . gene_id "YLR072W"; gene_biotype "protein_coding"; +chrXII SGD transcript 278796 280996 . + . transcript_id "YLR072W_id001"; gene_id "YLR072W"; gene_name "LAM6"; transcript_biotype "protein_coding"; +chrXII SGD exon 278796 280996 . + . transcript_id "YLR072W_id001"; gene_id "YLR072W"; gene_name "LAM6"; +chrXII SGD transcript 278862 280943 . + . transcript_id "YLR072W_id003"; gene_id "YLR072W"; gene_name "LAM6"; transcript_biotype "protein_coding"; +chrXII SGD exon 278862 280943 . + 0 transcript_id "YLR072W_id003"; gene_name "LAM6"; gene_id "YLR072W"; +chrXII SGD gene 280763 281735 . - . gene_id "YLR073C"; gene_biotype "protein_coding"; +chrXII SGD transcript 280763 281735 . - . transcript_id "YLR073C_id001"; gene_id "YLR073C"; gene_name "RFU1"; transcript_biotype "protein_coding"; +chrXII SGD exon 280763 281735 . - . transcript_id "YLR073C_id001"; gene_id "YLR073C"; gene_name "RFU1"; +chrXII SGD transcript 281019 281621 . - . transcript_id "YLR073C_id004"; gene_id "YLR073C"; gene_name "RFU1"; transcript_biotype "protein_coding"; +chrXII SGD exon 281019 281621 . - 0 transcript_id "YLR073C_id004"; gene_name "RFU1"; gene_id "YLR073C"; +chrXII SGD gene 281889 282788 . - . gene_id "YLR074C"; gene_biotype "protein_coding"; +chrXII SGD transcript 281889 282788 . - . transcript_id "YLR074C_id001"; gene_id "YLR074C"; gene_name "BUD20"; transcript_biotype "protein_coding"; +chrXII SGD exon 281889 282788 . - . transcript_id "YLR074C_id001"; gene_id "YLR074C"; gene_name "BUD20"; +chrXII SGD transcript 281956 282456 . - . transcript_id "YLR074C_id002"; gene_id "YLR074C"; gene_name "BUD20"; transcript_biotype "protein_coding"; +chrXII SGD exon 281956 282456 . - 0 transcript_id "YLR074C_id002"; gene_name "BUD20"; gene_id "YLR074C"; +chrXII SGD gene 282927 283592 . + . gene_id "YLR075W"; gene_biotype "protein_coding"; +chrXII SGD transcript 282927 283592 . + . transcript_id "YLR075W_id001"; gene_id "YLR075W"; gene_name "RPL10"; transcript_biotype "protein_coding"; +chrXII SGD exon 282927 283592 . + 0 transcript_id "YLR075W_id001"; gene_name "RPL10"; gene_id "YLR075W"; +chrXII SGD gene 283185 283607 . - . gene_id "YLR076C"; gene_biotype "protein_coding"; +chrXII SGD transcript 283185 283607 . - . transcript_id "YLR076C_mRNA"; gene_id "YLR076C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 283185 283607 . - 0 transcript_id "YLR076C_mRNA"; gene_id "YLR076C"; +chrXII SGD gene 283738 285794 . + . gene_id "YLR077W"; gene_biotype "protein_coding"; +chrXII SGD transcript 283738 285794 . + . transcript_id "YLR077W_id002"; gene_id "YLR077W"; gene_name "FMP25"; transcript_biotype "protein_coding"; +chrXII SGD exon 283738 285794 . + . transcript_id "YLR077W_id002"; gene_id "YLR077W"; gene_name "FMP25"; +chrXII SGD transcript 283872 285623 . + . transcript_id "YLR077W_id001"; gene_id "YLR077W"; gene_name "FMP25"; transcript_biotype "protein_coding"; +chrXII SGD exon 283872 285623 . + 0 transcript_id "YLR077W_id001"; gene_name "FMP25"; gene_id "YLR077W"; +chrXII SGD gene 285644 287278 . - . gene_id "YLR078C"; gene_biotype "protein_coding"; +chrXII SGD transcript 285644 287278 . - . transcript_id "YLR078C_id001"; gene_id "YLR078C"; gene_name "BOS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 285644 287278 . - . transcript_id "YLR078C_id001"; gene_id "YLR078C"; gene_name "BOS1"; +chrXII SGD transcript 285736 286559 . - . transcript_id "YLR078C_id005"; gene_id "YLR078C"; gene_name "BOS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 285736 286467 . - 0 transcript_id "YLR078C_id005"; gene_name "BOS1"; gene_id "YLR078C"; +chrXII SGD exon 286557 286559 . - 0 transcript_id "YLR078C_id005"; gene_name "BOS1"; gene_id "YLR078C"; +chrXII SGD gene 286768 287840 . + . gene_id "YLR079W"; gene_biotype "protein_coding"; +chrXII SGD transcript 286768 287840 . + . transcript_id "YLR079W_id004"; gene_id "YLR079W"; gene_name "SIC1"; transcript_biotype "protein_coding"; +chrXII SGD exon 286768 287840 . + . transcript_id "YLR079W_id004"; gene_id "YLR079W"; gene_name "SIC1"; +chrXII SGD transcript 286820 287674 . + . transcript_id "YLR079W_id001"; gene_id "YLR079W"; gene_name "SIC1"; transcript_biotype "protein_coding"; +chrXII SGD exon 286820 287674 . + 0 transcript_id "YLR079W_id001"; gene_name "SIC1"; gene_id "YLR079W"; +chrXII SGD gene 287916 289250 . + . gene_id "YLR080W"; gene_biotype "protein_coding"; +chrXII SGD transcript 287916 289250 . + . transcript_id "YLR080W_id001"; gene_id "YLR080W"; gene_name "EMP46"; transcript_biotype "protein_coding"; +chrXII SGD exon 287916 289250 . + 0 transcript_id "YLR080W_id001"; gene_name "EMP46"; gene_id "YLR080W"; +chrXII SGD gene 290151 292024 . + . gene_id "YLR081W"; gene_biotype "protein_coding"; +chrXII SGD transcript 290151 292024 . + . transcript_id "YLR081W_id685"; gene_id "YLR081W"; gene_name "GAL2"; transcript_biotype "protein_coding"; +chrXII SGD exon 290151 292024 . + . transcript_id "YLR081W_id685"; gene_id "YLR081W"; gene_name "GAL2"; +chrXII SGD transcript 290212 291936 . + . transcript_id "YLR081W_id001"; gene_id "YLR081W"; gene_name "GAL2"; transcript_biotype "protein_coding"; +chrXII SGD exon 290212 291936 . + 0 transcript_id "YLR081W_id001"; gene_name "GAL2"; gene_id "YLR081W"; +chrXII SGD gene 292045 293657 . - . gene_id "YLR082C"; gene_biotype "protein_coding"; +chrXII SGD transcript 292045 293657 . - . transcript_id "YLR082C_id001"; gene_id "YLR082C"; gene_name "SRL2"; transcript_biotype "protein_coding"; +chrXII SGD exon 292045 293657 . - . transcript_id "YLR082C_id001"; gene_id "YLR082C"; gene_name "SRL2"; +chrXII SGD transcript 292394 293572 . - . transcript_id "YLR082C_id004"; gene_id "YLR082C"; gene_name "SRL2"; transcript_biotype "protein_coding"; +chrXII SGD exon 292394 293572 . - 0 transcript_id "YLR082C_id004"; gene_name "SRL2"; gene_id "YLR082C"; +chrXII SGD gene 293861 296271 . - . gene_id "YLR083C"; gene_biotype "protein_coding"; +chrXII SGD transcript 293861 296271 . - . transcript_id "YLR083C_id002"; gene_id "YLR083C"; gene_name "EMP70"; transcript_biotype "protein_coding"; +chrXII SGD exon 293861 296271 . - . transcript_id "YLR083C_id002"; gene_id "YLR083C"; gene_name "EMP70"; +chrXII SGD transcript 294091 296094 . - . transcript_id "YLR083C_id001"; gene_id "YLR083C"; gene_name "EMP70"; transcript_biotype "protein_coding"; +chrXII SGD exon 294091 296094 . - 0 transcript_id "YLR083C_id001"; gene_name "EMP70"; gene_id "YLR083C"; +chrXII SGD gene 296589 300251 . - . gene_id "YLR084C"; gene_biotype "protein_coding"; +chrXII SGD transcript 296589 300251 . - . transcript_id "YLR084C_mRNA"; gene_id "YLR084C"; gene_name "RAX2"; transcript_biotype "protein_coding"; +chrXII SGD CDS 296589 300251 . - 0 transcript_id "YLR084C_mRNA"; gene_name "RAX2"; gene_id "YLR084C"; +chrXII SGD gene 300517 302016 . - . gene_id "YLR085C"; gene_biotype "protein_coding"; +chrXII SGD transcript 300517 302016 . - . transcript_id "YLR085C_id002"; gene_id "YLR085C"; gene_name "ARP6"; transcript_biotype "protein_coding"; +chrXII SGD exon 300517 302016 . - . transcript_id "YLR085C_id002"; gene_id "YLR085C"; gene_name "ARP6"; +chrXII SGD transcript 300673 301989 . - . transcript_id "YLR085C_id001"; gene_id "YLR085C"; gene_name "ARP6"; transcript_biotype "protein_coding"; +chrXII SGD exon 300673 301989 . - 0 transcript_id "YLR085C_id001"; gene_name "ARP6"; gene_id "YLR085C"; +chrXII SGD gene 302243 306499 . + . gene_id "YLR086W"; gene_biotype "protein_coding"; +chrXII SGD transcript 302243 306499 . + . transcript_id "YLR086W_mRNA"; gene_id "YLR086W"; gene_name "SMC4"; transcript_biotype "protein_coding"; +chrXII SGD CDS 302243 306499 . + 0 transcript_id "YLR086W_mRNA"; gene_name "SMC4"; gene_id "YLR086W"; +chrXII SGD gene 306855 315731 . - . gene_id "YLR087C"; gene_biotype "protein_coding"; +chrXII SGD transcript 306855 315731 . - . transcript_id "YLR087C_mRNA"; gene_id "YLR087C"; gene_name "CSF1"; transcript_biotype "protein_coding"; +chrXII SGD CDS 306855 315731 . - 0 transcript_id "YLR087C_mRNA"; gene_name "CSF1"; gene_id "YLR087C"; +chrXII SGD gene 315945 318129 . + . gene_id "YLR088W"; gene_biotype "protein_coding"; +chrXII SGD transcript 315945 318129 . + . transcript_id "YLR088W_id001"; gene_id "YLR088W"; gene_name "GAA1"; transcript_biotype "protein_coding"; +chrXII SGD exon 315945 318129 . + . transcript_id "YLR088W_id001"; gene_id "YLR088W"; gene_name "GAA1"; +chrXII SGD transcript 316107 317951 . + . transcript_id "YLR088W_id002"; gene_id "YLR088W"; gene_name "GAA1"; transcript_biotype "protein_coding"; +chrXII SGD exon 316107 317951 . + 0 transcript_id "YLR088W_id002"; gene_name "GAA1"; gene_id "YLR088W"; +chrXII SGD gene 318029 320319 . - . gene_id "YLR089C"; gene_biotype "protein_coding"; +chrXII SGD transcript 318029 320319 . - . transcript_id "YLR089C_id003"; gene_id "YLR089C"; gene_name "ALT1"; transcript_biotype "protein_coding"; +chrXII SGD exon 318029 320319 . - . transcript_id "YLR089C_id003"; gene_id "YLR089C"; gene_name "ALT1"; +chrXII SGD transcript 318237 320015 . - . transcript_id "YLR089C_id001"; gene_id "YLR089C"; gene_name "ALT1"; transcript_biotype "protein_coding"; +chrXII SGD exon 318237 320015 . - 0 transcript_id "YLR089C_id001"; gene_name "ALT1"; gene_id "YLR089C"; +chrXII SGD gene 320612 322178 . + . gene_id "YLR090W"; gene_biotype "protein_coding"; +chrXII SGD transcript 320612 322178 . + . transcript_id "YLR090W_id004"; gene_id "YLR090W"; gene_name "XDJ1"; transcript_biotype "protein_coding"; +chrXII SGD exon 320612 322178 . + . transcript_id "YLR090W_id004"; gene_id "YLR090W"; gene_name "XDJ1"; +chrXII SGD transcript 320701 322080 . + . transcript_id "YLR090W_id001"; gene_id "YLR090W"; gene_name "XDJ1"; transcript_biotype "protein_coding"; +chrXII SGD exon 320701 322080 . + 0 transcript_id "YLR090W_id001"; gene_name "XDJ1"; gene_id "YLR090W"; +chrXII SGD gene 322254 323563 . + . gene_id "YLR091W"; gene_biotype "protein_coding"; +chrXII SGD transcript 322254 323563 . + . transcript_id "YLR091W_id002"; gene_id "YLR091W"; gene_name "GEP5"; transcript_biotype "protein_coding"; +chrXII SGD exon 322254 323563 . + . transcript_id "YLR091W_id002"; gene_id "YLR091W"; gene_name "GEP5"; +chrXII SGD transcript 322297 323178 . + . transcript_id "YLR091W_id001"; gene_id "YLR091W"; gene_name "GEP5"; transcript_biotype "protein_coding"; +chrXII SGD exon 322297 323178 . + 0 transcript_id "YLR091W_id001"; gene_name "GEP5"; gene_id "YLR091W"; +chrXII SGD gene 323544 326225 . + . gene_id "YLR092W"; gene_biotype "protein_coding"; +chrXII SGD transcript 323544 326225 . + . transcript_id "YLR092W_mRNA"; gene_id "YLR092W"; gene_name "SUL2"; transcript_biotype "protein_coding"; +chrXII SGD CDS 323544 326225 . + 0 transcript_id "YLR092W_mRNA"; gene_name "SUL2"; gene_id "YLR092W"; +chrXII SGD gene 326242 327489 . - . gene_id "YLR093C"; gene_biotype "protein_coding"; +chrXII SGD transcript 326242 327489 . - . transcript_id "YLR093C_id001"; gene_id "YLR093C"; gene_name "NYV1"; transcript_biotype "protein_coding"; +chrXII SGD exon 326242 327489 . - . transcript_id "YLR093C_id001"; gene_id "YLR093C"; gene_name "NYV1"; +chrXII SGD transcript 326513 327415 . - . transcript_id "YLR093C_id002"; gene_id "YLR093C"; gene_name "NYV1"; transcript_biotype "protein_coding"; +chrXII SGD exon 326513 327258 . - 2 transcript_id "YLR093C_id002"; gene_name "NYV1"; gene_id "YLR093C"; +chrXII SGD exon 327400 327415 . - 0 transcript_id "YLR093C_id002"; gene_name "NYV1"; gene_id "YLR093C"; +chrXII SGD gene 327730 329238 . - . gene_id "YLR094C"; gene_biotype "protein_coding"; +chrXII SGD transcript 327730 329238 . - . transcript_id "YLR094C_id001"; gene_id "YLR094C"; gene_name "GIS3"; transcript_biotype "protein_coding"; +chrXII SGD exon 327730 329238 . - 0 transcript_id "YLR094C_id001"; gene_name "GIS3"; gene_id "YLR094C"; +chrXII SGD gene 329616 332152 . - . gene_id "YLR095C"; gene_biotype "protein_coding"; +chrXII SGD transcript 329616 332152 . - . transcript_id "YLR095C_id002"; gene_id "YLR095C"; gene_name "IOC2"; transcript_biotype "protein_coding"; +chrXII SGD exon 329616 332152 . - . transcript_id "YLR095C_id002"; gene_id "YLR095C"; gene_name "IOC2"; +chrXII SGD transcript 329677 332115 . - . transcript_id "YLR095C_id001"; gene_id "YLR095C"; gene_name "IOC2"; transcript_biotype "protein_coding"; +chrXII SGD exon 329677 332115 . - 0 transcript_id "YLR095C_id001"; gene_name "IOC2"; gene_id "YLR095C"; +chrXII SGD gene 332590 336033 . + . gene_id "YLR096W"; gene_biotype "protein_coding"; +chrXII SGD transcript 332590 336033 . + . transcript_id "YLR096W_mRNA"; gene_id "YLR096W"; gene_name "KIN2"; transcript_biotype "protein_coding"; +chrXII SGD CDS 332590 336033 . + 0 transcript_id "YLR096W_mRNA"; gene_name "KIN2"; gene_id "YLR096W"; +chrXII SGD gene 336058 337317 . - . gene_id "YLR097C"; gene_biotype "protein_coding"; +chrXII SGD transcript 336058 337317 . - . transcript_id "YLR097C_id001"; gene_id "YLR097C"; gene_name "HRT3"; transcript_biotype "protein_coding"; +chrXII SGD exon 336058 337317 . - . transcript_id "YLR097C_id001"; gene_id "YLR097C"; gene_name "HRT3"; +chrXII SGD transcript 336231 337265 . - . transcript_id "YLR097C_id005"; gene_id "YLR097C"; gene_name "HRT3"; transcript_biotype "protein_coding"; +chrXII SGD exon 336231 337265 . - 0 transcript_id "YLR097C_id005"; gene_name "HRT3"; gene_id "YLR097C"; +chrXII SGD gene 337384 339665 . - . gene_id "YLR098C"; gene_biotype "protein_coding"; +chrXII SGD transcript 337384 339665 . - . transcript_id "YLR098C_id002"; gene_id "YLR098C"; gene_name "CHA4"; transcript_biotype "protein_coding"; +chrXII SGD exon 337384 339665 . - . transcript_id "YLR098C_id002"; gene_id "YLR098C"; gene_name "CHA4"; +chrXII SGD transcript 337527 339473 . - . transcript_id "YLR098C_id001"; gene_id "YLR098C"; gene_name "CHA4"; transcript_biotype "protein_coding"; +chrXII SGD exon 337527 339473 . - 0 transcript_id "YLR098C_id001"; gene_name "CHA4"; gene_id "YLR098C"; +chrXII SGD gene 339620 341027 . - . gene_id "YLR099C"; gene_biotype "protein_coding"; +chrXII SGD transcript 339620 341027 . - . transcript_id "YLR099C_id004"; gene_id "YLR099C"; gene_name "ICT1"; transcript_biotype "protein_coding"; +chrXII SGD exon 339620 341027 . - . transcript_id "YLR099C_id004"; gene_id "YLR099C"; gene_name "ICT1"; +chrXII SGD gene 339690 341649 . + . gene_id "YLR099W-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 339690 341649 . + . transcript_id "YLR099W-A_id001"; gene_id "YLR099W-A"; gene_name "MIM2"; transcript_biotype "protein_coding"; +chrXII SGD exon 339690 341649 . + . transcript_id "YLR099W-A_id001"; gene_id "YLR099W-A"; gene_name "MIM2"; +chrXII SGD transcript 339744 340928 . - . transcript_id "YLR099C_id001"; gene_id "YLR099C"; gene_name "ICT1"; transcript_biotype "protein_coding"; +chrXII SGD exon 339744 340928 . - 0 transcript_id "YLR099C_id001"; gene_name "ICT1"; gene_id "YLR099C"; +chrXII SGD transcript 341325 341588 . + . transcript_id "YLR099W-A_id002"; gene_id "YLR099W-A"; gene_name "MIM2"; transcript_biotype "protein_coding"; +chrXII SGD exon 341325 341588 . + 0 transcript_id "YLR099W-A_id002"; gene_name "MIM2"; gene_id "YLR099W-A"; +chrXII SGD gene 341783 343065 . + . gene_id "YLR100W"; gene_biotype "protein_coding"; +chrXII SGD transcript 341783 343065 . + . transcript_id "YLR100W_id005"; gene_id "YLR100W"; gene_name "ERG27"; transcript_biotype "protein_coding"; +chrXII SGD exon 341783 343065 . + . transcript_id "YLR100W_id005"; gene_id "YLR100W"; gene_name "ERG27"; +chrXII SGD transcript 341810 342853 . + . transcript_id "YLR100W_id001"; gene_id "YLR100W"; gene_name "ERG27"; transcript_biotype "protein_coding"; +chrXII SGD exon 341810 342853 . + 0 transcript_id "YLR100W_id001"; gene_name "ERG27"; gene_id "YLR100W"; +chrXII SGD gene 342566 342961 . - . gene_id "YLR101C"; gene_biotype "protein_coding"; +chrXII SGD transcript 342566 342961 . - . transcript_id "YLR101C_mRNA"; gene_id "YLR101C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 342566 342961 . - 0 transcript_id "YLR101C_mRNA"; gene_id "YLR101C"; +chrXII SGD gene 342819 343807 . - . gene_id "YLR102C"; gene_biotype "protein_coding"; +chrXII SGD transcript 342819 343807 . - . transcript_id "YLR102C_id002"; gene_id "YLR102C"; gene_name "APC9"; transcript_biotype "protein_coding"; +chrXII SGD exon 342819 343807 . - . transcript_id "YLR102C_id002"; gene_id "YLR102C"; gene_name "APC9"; +chrXII SGD transcript 342970 343767 . - . transcript_id "YLR102C_id001"; gene_id "YLR102C"; gene_name "APC9"; transcript_biotype "protein_coding"; +chrXII SGD exon 342970 343767 . - 0 transcript_id "YLR102C_id001"; gene_name "APC9"; gene_id "YLR102C"; +chrXII SGD gene 343911 346034 . - . gene_id "YLR103C"; gene_biotype "protein_coding"; +chrXII SGD transcript 343911 346034 . - . transcript_id "YLR103C_id003"; gene_id "YLR103C"; gene_name "CDC45"; transcript_biotype "protein_coding"; +chrXII SGD exon 343911 346034 . - . transcript_id "YLR103C_id003"; gene_id "YLR103C"; gene_name "CDC45"; +chrXII SGD transcript 343989 345941 . - . transcript_id "YLR103C_id001"; gene_id "YLR103C"; gene_name "CDC45"; transcript_biotype "protein_coding"; +chrXII SGD exon 343989 345941 . - 0 transcript_id "YLR103C_id001"; gene_name "CDC45"; gene_id "YLR103C"; +chrXII SGD gene 346166 347041 . + . gene_id "YLR104W"; gene_biotype "protein_coding"; +chrXII SGD transcript 346166 347041 . + . transcript_id "YLR104W_id005"; gene_id "YLR104W"; gene_name "LCL2"; transcript_biotype "protein_coding"; +chrXII SGD exon 346166 347041 . + . transcript_id "YLR104W_id005"; gene_id "YLR104W"; gene_name "LCL2"; +chrXII SGD transcript 346585 346980 . + . transcript_id "YLR104W_id001"; gene_id "YLR104W"; gene_name "LCL2"; transcript_biotype "protein_coding"; +chrXII SGD exon 346585 346980 . + 0 transcript_id "YLR104W_id001"; gene_name "LCL2"; gene_id "YLR104W"; +chrXII SGD gene 346963 348340 . - . gene_id "YLR105C"; gene_biotype "protein_coding"; +chrXII SGD transcript 346963 348340 . - . transcript_id "YLR105C_id002"; gene_id "YLR105C"; gene_name "SEN2"; transcript_biotype "protein_coding"; +chrXII SGD exon 346963 348340 . - . transcript_id "YLR105C_id002"; gene_id "YLR105C"; gene_name "SEN2"; +chrXII SGD transcript 347047 348180 . - . transcript_id "YLR105C_id001"; gene_id "YLR105C"; gene_name "SEN2"; transcript_biotype "protein_coding"; +chrXII SGD exon 347047 348180 . - 0 transcript_id "YLR105C_id001"; gene_name "SEN2"; gene_id "YLR105C"; +chrXII SGD gene 348427 348510 . - . gene_id "YNCL0005C"; gene_biotype "ncRNA"; +chrXII SGD transcript 348427 348510 . - . transcript_id "YNCL0005C_snoRNA"; gene_id "YNCL0005C"; gene_name "SNR79"; transcript_biotype "ncRNA"; +chrXII SGD exon 348427 348510 . - . transcript_id "YNCL0005C_snoRNA"; gene_name "SNR79"; gene_id "YNCL0005C"; +chrXII SGD gene 349006 363738 . - . gene_id "YLR106C"; gene_biotype "protein_coding"; +chrXII SGD transcript 349006 363738 . - . transcript_id "YLR106C_mRNA"; gene_id "YLR106C"; gene_name "REA1"; transcript_biotype "protein_coding"; +chrXII SGD CDS 349006 363738 . - 0 transcript_id "YLR106C_mRNA"; gene_name "REA1"; gene_id "YLR106C"; +chrXII SGD gene 364068 365444 . + . gene_id "YLR107W"; gene_biotype "protein_coding"; +chrXII SGD transcript 364068 365444 . + . transcript_id "YLR107W_id005"; gene_id "YLR107W"; gene_name "REX3"; transcript_biotype "protein_coding"; +chrXII SGD exon 364068 365444 . + . transcript_id "YLR107W_id005"; gene_id "YLR107W"; gene_name "REX3"; +chrXII SGD transcript 364116 365330 . + . transcript_id "YLR107W_id001"; gene_id "YLR107W"; gene_name "REX3"; transcript_biotype "protein_coding"; +chrXII SGD exon 364116 365330 . + 0 transcript_id "YLR107W_id001"; gene_name "REX3"; gene_id "YLR107W"; +chrXII SGD gene 366235 366346 . + . gene_id "YNCL0006W"; gene_biotype "ncRNA"; +chrXII SGD transcript 366235 366346 . + . transcript_id "YNCL0006W_snRNA"; gene_id "YNCL0006W"; gene_name "SNR6"; transcript_biotype "ncRNA"; +chrXII SGD exon 366235 366346 . + . transcript_id "YNCL0006W_snRNA"; gene_name "SNR6"; gene_id "YNCL0006W"; +chrXII SGD gene 366521 368184 . - . gene_id "YLR108C"; gene_biotype "protein_coding"; +chrXII SGD transcript 366521 368184 . - . transcript_id "YLR108C_id002"; gene_id "YLR108C"; transcript_biotype "protein_coding"; +chrXII SGD exon 366521 368184 . - . transcript_id "YLR108C_id002"; gene_id "YLR108C"; +chrXII SGD transcript 366667 368124 . - . transcript_id "YLR108C_id001"; gene_id "YLR108C"; transcript_biotype "protein_coding"; +chrXII SGD exon 366667 368124 . - 0 transcript_id "YLR108C_id001"; gene_id "YLR108C"; +chrXII SGD gene 368741 370145 . - . gene_id "YLR110C"; gene_biotype "protein_coding"; +chrXII SGD transcript 368741 370145 . - . transcript_id "YLR110C_id001"; gene_id "YLR110C"; gene_name "CCW12"; transcript_biotype "protein_coding"; +chrXII SGD exon 368741 370145 . - . transcript_id "YLR110C_id001"; gene_id "YLR110C"; gene_name "CCW12"; +chrXII SGD gene 368744 370151 . + . gene_id "YLR109W"; gene_biotype "protein_coding"; +chrXII SGD transcript 368744 370151 . + . transcript_id "YLR109W_id001"; gene_id "YLR109W"; gene_name "AHP1"; transcript_biotype "protein_coding"; +chrXII SGD exon 368744 370151 . + . transcript_id "YLR109W_id001"; gene_id "YLR109W"; gene_name "AHP1"; +chrXII SGD transcript 368781 369311 . + . transcript_id "YLR109W_id002"; gene_id "YLR109W"; gene_name "AHP1"; transcript_biotype "protein_coding"; +chrXII SGD exon 368781 369311 . + 0 transcript_id "YLR109W_id002"; gene_name "AHP1"; gene_id "YLR109W"; +chrXII SGD transcript 369697 370098 . - . transcript_id "YLR110C_id003"; gene_id "YLR110C"; gene_name "CCW12"; transcript_biotype "protein_coding"; +chrXII SGD exon 369697 370098 . - 0 transcript_id "YLR110C_id003"; gene_name "CCW12"; gene_id "YLR110C"; +chrXII SGD gene 370391 370723 . + . gene_id "YLR111W"; gene_biotype "protein_coding"; +chrXII SGD transcript 370391 370723 . + . transcript_id "YLR111W_id001"; gene_id "YLR111W"; transcript_biotype "protein_coding"; +chrXII SGD exon 370391 370723 . + 0 transcript_id "YLR111W_id001"; gene_id "YLR111W"; +chrXII SGD gene 370739 371663 . + . gene_id "YLR112W"; gene_biotype "protein_coding"; +chrXII SGD transcript 370739 371663 . + . transcript_id "YLR112W_id001"; gene_id "YLR112W"; transcript_biotype "protein_coding"; +chrXII SGD exon 370739 371663 . + . transcript_id "YLR112W_id001"; gene_id "YLR112W"; +chrXII SGD transcript 370791 371210 . + . transcript_id "YLR112W_id002"; gene_id "YLR112W"; transcript_biotype "protein_coding"; +chrXII SGD exon 370791 371210 . + 0 transcript_id "YLR112W_id002"; gene_id "YLR112W"; +chrXII SGD gene 371276 373065 . + . gene_id "YLR113W"; gene_biotype "protein_coding"; +chrXII SGD transcript 371276 373065 . + . transcript_id "YLR113W_id005"; gene_id "YLR113W"; gene_name "HOG1"; transcript_biotype "protein_coding"; +chrXII SGD exon 371276 373065 . + . transcript_id "YLR113W_id005"; gene_id "YLR113W"; gene_name "HOG1"; +chrXII SGD transcript 371620 372927 . + . transcript_id "YLR113W_id001"; gene_id "YLR113W"; gene_name "HOG1"; transcript_biotype "protein_coding"; +chrXII SGD exon 371620 372927 . + 0 transcript_id "YLR113W_id001"; gene_name "HOG1"; gene_id "YLR113W"; +chrXII SGD gene 374355 374427 . + . gene_id "YNCL0007W"; gene_biotype "ncRNA"; +chrXII SGD transcript 374355 374427 . + . transcript_id "YNCL0007W_tRNA"; gene_id "YNCL0007W"; transcript_biotype "ncRNA"; +chrXII SGD exon 374355 374427 . + . transcript_id "YNCL0007W_tRNA"; gene_id "YNCL0007W"; +chrXII SGD gene 374506 377321 . - . gene_id "YLR114C"; gene_biotype "protein_coding"; +chrXII SGD transcript 374506 377321 . - . transcript_id "YLR114C_id003"; gene_id "YLR114C"; gene_name "AVL9"; transcript_biotype "protein_coding"; +chrXII SGD exon 374506 377321 . - . transcript_id "YLR114C_id003"; gene_id "YLR114C"; gene_name "AVL9"; +chrXII SGD transcript 374944 377238 . - . transcript_id "YLR114C_id001"; gene_id "YLR114C"; gene_name "AVL9"; transcript_biotype "protein_coding"; +chrXII SGD exon 374944 377238 . - 0 transcript_id "YLR114C_id001"; gene_name "AVL9"; gene_id "YLR114C"; +chrXII SGD gene 377985 380564 . + . gene_id "YLR115W"; gene_biotype "protein_coding"; +chrXII SGD transcript 377985 380564 . + . transcript_id "YLR115W_id001"; gene_id "YLR115W"; gene_name "CFT2"; transcript_biotype "protein_coding"; +chrXII SGD exon 377985 380564 . + 0 transcript_id "YLR115W_id001"; gene_name "CFT2"; gene_id "YLR115W"; +chrXII SGD gene 380821 382721 . + . gene_id "YLR116W"; gene_biotype "protein_coding"; +chrXII SGD transcript 380821 382721 . + . transcript_id "YLR116W_id001"; gene_id "YLR116W"; gene_name "MSL5"; transcript_biotype "protein_coding"; +chrXII SGD exon 380821 382721 . + . transcript_id "YLR116W_id001"; gene_id "YLR116W"; gene_name "MSL5"; +chrXII SGD transcript 380822 382252 . + . transcript_id "YLR116W_id003"; gene_id "YLR116W"; gene_name "MSL5"; transcript_biotype "protein_coding"; +chrXII SGD exon 380822 382252 . + 0 transcript_id "YLR116W_id003"; gene_name "MSL5"; gene_id "YLR116W"; +chrXII SGD gene 382319 384572 . - . gene_id "YLR117C"; gene_biotype "protein_coding"; +chrXII SGD transcript 382319 384572 . - . transcript_id "YLR117C_id003"; gene_id "YLR117C"; gene_name "CLF1"; transcript_biotype "protein_coding"; +chrXII SGD exon 382319 384572 . - . transcript_id "YLR117C_id003"; gene_id "YLR117C"; gene_name "CLF1"; +chrXII SGD transcript 382471 384534 . - . transcript_id "YLR117C_id001"; gene_id "YLR117C"; gene_name "CLF1"; transcript_biotype "protein_coding"; +chrXII SGD exon 382471 384534 . - 0 transcript_id "YLR117C_id001"; gene_name "CLF1"; gene_id "YLR117C"; +chrXII SGD gene 384622 385812 . - . gene_id "YLR118C"; gene_biotype "protein_coding"; +chrXII SGD transcript 384622 385812 . - . transcript_id "YLR118C_id002"; gene_id "YLR118C"; gene_name "TML25"; transcript_biotype "protein_coding"; +chrXII SGD exon 384622 385812 . - . transcript_id "YLR118C_id002"; gene_id "YLR118C"; gene_name "TML25"; +chrXII SGD transcript 384725 385408 . - . transcript_id "YLR118C_id001"; gene_id "YLR118C"; gene_name "TML25"; transcript_biotype "protein_coding"; +chrXII SGD exon 384725 385408 . - 0 transcript_id "YLR118C_id001"; gene_name "TML25"; gene_id "YLR118C"; +chrXII SGD gene 385534 386175 . + . gene_id "YLR119W"; gene_biotype "protein_coding"; +chrXII SGD transcript 385534 386175 . + . transcript_id "YLR119W_id001"; gene_id "YLR119W"; gene_name "SRN2"; transcript_biotype "protein_coding"; +chrXII SGD exon 385534 386175 . + 0 transcript_id "YLR119W_id001"; gene_name "SRN2"; gene_id "YLR119W"; +chrXII SGD gene 386107 388333 . - . gene_id "YLR120C"; gene_biotype "protein_coding"; +chrXII SGD transcript 386107 388333 . - . transcript_id "YLR120C_id005"; gene_id "YLR120C"; gene_name "YPS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 386107 388333 . - . transcript_id "YLR120C_id005"; gene_id "YLR120C"; gene_name "YPS1"; +chrXII SGD transcript 386511 388220 . - . transcript_id "YLR120C_id001"; gene_id "YLR120C"; gene_name "YPS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 386511 388220 . - 0 transcript_id "YLR120C_id001"; gene_name "YPS1"; gene_id "YLR120C"; +chrXII SGD gene 388161 388783 . + . gene_id "YLR120W-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 388161 388783 . + . transcript_id "YLR120W-A_id003"; gene_id "YLR120W-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 388161 388783 . + . transcript_id "YLR120W-A_id003"; gene_id "YLR120W-A"; +chrXII SGD gene 388601 390305 . - . gene_id "YLR121C"; gene_biotype "protein_coding"; +chrXII SGD transcript 388601 390305 . - . transcript_id "YLR121C_id009"; gene_id "YLR121C"; gene_name "YPS3"; transcript_biotype "protein_coding"; +chrXII SGD exon 388601 390305 . - . transcript_id "YLR121C_id009"; gene_id "YLR121C"; gene_name "YPS3"; +chrXII SGD transcript 388672 388773 . + . transcript_id "YLR120W-A_id001"; gene_id "YLR120W-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 388672 388773 . + 0 transcript_id "YLR120W-A_id001"; gene_id "YLR120W-A"; +chrXII SGD transcript 388744 390270 . - . transcript_id "YLR121C_id001"; gene_id "YLR121C"; gene_name "YPS3"; transcript_biotype "protein_coding"; +chrXII SGD exon 388744 390270 . - 0 transcript_id "YLR121C_id001"; gene_name "YPS3"; gene_id "YLR121C"; +chrXII SGD gene 390954 391331 . - . gene_id "YLR122C"; gene_biotype "protein_coding"; +chrXII SGD transcript 390954 391331 . - . transcript_id "YLR122C_mRNA"; gene_id "YLR122C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 390954 391331 . - 0 transcript_id "YLR122C_mRNA"; gene_id "YLR122C"; +chrXII SGD gene 391063 392022 . - . gene_id "YLR123C"; gene_biotype "protein_coding"; +chrXII SGD transcript 391063 392022 . - . transcript_id "YLR123C_id001"; gene_id "YLR123C"; transcript_biotype "protein_coding"; +chrXII SGD exon 391063 392022 . - . transcript_id "YLR123C_id001"; gene_id "YLR123C"; +chrXII SGD transcript 391078 391407 . - . transcript_id "YLR123C_id002"; gene_id "YLR123C"; transcript_biotype "protein_coding"; +chrXII SGD exon 391078 391407 . - 0 transcript_id "YLR123C_id002"; gene_id "YLR123C"; +chrXII SGD gene 391600 391944 . + . gene_id "YLR124W"; gene_biotype "protein_coding"; +chrXII SGD transcript 391600 391944 . + . transcript_id "YLR124W_mRNA"; gene_id "YLR124W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 391600 391944 . + 0 transcript_id "YLR124W_mRNA"; gene_id "YLR124W"; +chrXII SGD gene 393472 394790 . + . gene_id "YLR125W"; gene_biotype "protein_coding"; +chrXII SGD transcript 393472 394790 . + . transcript_id "YLR125W_id003"; gene_id "YLR125W"; transcript_biotype "protein_coding"; +chrXII SGD exon 393472 394790 . + . transcript_id "YLR125W_id003"; gene_id "YLR125W"; +chrXII SGD transcript 393484 393894 . + . transcript_id "YLR125W_id001"; gene_id "YLR125W"; transcript_biotype "protein_coding"; +chrXII SGD exon 393484 393894 . + 0 transcript_id "YLR125W_id001"; gene_id "YLR125W"; +chrXII SGD gene 394534 395618 . - . gene_id "YLR126C"; gene_biotype "protein_coding"; +chrXII SGD transcript 394534 395618 . - . transcript_id "YLR126C_id002"; gene_id "YLR126C"; transcript_biotype "protein_coding"; +chrXII SGD exon 394534 395618 . - . transcript_id "YLR126C_id002"; gene_id "YLR126C"; +chrXII SGD transcript 394765 395520 . - . transcript_id "YLR126C_id001"; gene_id "YLR126C"; transcript_biotype "protein_coding"; +chrXII SGD exon 394765 395520 . - 0 transcript_id "YLR126C_id001"; gene_id "YLR126C"; +chrXII SGD gene 395602 398392 . - . gene_id "YLR127C"; gene_biotype "protein_coding"; +chrXII SGD transcript 395602 398392 . - . transcript_id "YLR127C_id003"; gene_id "YLR127C"; gene_name "APC2"; transcript_biotype "protein_coding"; +chrXII SGD exon 395602 398392 . - . transcript_id "YLR127C_id003"; gene_id "YLR127C"; gene_name "APC2"; +chrXII SGD transcript 395758 398319 . - . transcript_id "YLR127C_id001"; gene_id "YLR127C"; gene_name "APC2"; transcript_biotype "protein_coding"; +chrXII SGD exon 395758 398319 . - 0 transcript_id "YLR127C_id001"; gene_name "APC2"; gene_id "YLR127C"; +chrXII SGD gene 398148 399634 . + . gene_id "YLR128W"; gene_biotype "protein_coding"; +chrXII SGD transcript 398148 399634 . + . transcript_id "YLR128W_id001"; gene_id "YLR128W"; gene_name "DCN1"; transcript_biotype "protein_coding"; +chrXII SGD exon 398148 399634 . + . transcript_id "YLR128W_id001"; gene_id "YLR128W"; gene_name "DCN1"; +chrXII SGD transcript 398530 399433 . + . transcript_id "YLR128W_id002"; gene_id "YLR128W"; gene_name "DCN1"; transcript_biotype "protein_coding"; +chrXII SGD exon 398530 398532 . + 0 transcript_id "YLR128W_id002"; gene_name "DCN1"; gene_id "YLR128W"; +chrXII SGD exon 398627 399433 . + 0 transcript_id "YLR128W_id002"; gene_name "DCN1"; gene_id "YLR128W"; +chrXII SGD gene 399588 402605 . + . gene_id "YLR129W"; gene_biotype "protein_coding"; +chrXII SGD transcript 399588 402605 . + . transcript_id "YLR129W_id001"; gene_id "YLR129W"; gene_name "DIP2"; transcript_biotype "protein_coding"; +chrXII SGD exon 399588 402605 . + . transcript_id "YLR129W_id001"; gene_id "YLR129W"; gene_name "DIP2"; +chrXII SGD transcript 399657 402488 . + . transcript_id "YLR129W_id002"; gene_id "YLR129W"; gene_name "DIP2"; transcript_biotype "protein_coding"; +chrXII SGD exon 399657 402488 . + 0 transcript_id "YLR129W_id002"; gene_name "DIP2"; gene_id "YLR129W"; +chrXII SGD gene 402540 404207 . - . gene_id "YLR130C"; gene_biotype "protein_coding"; +chrXII SGD transcript 402540 404207 . - . transcript_id "YLR130C_id003"; gene_id "YLR130C"; gene_name "ZRT2"; transcript_biotype "protein_coding"; +chrXII SGD exon 402540 404207 . - . transcript_id "YLR130C_id003"; gene_id "YLR130C"; gene_name "ZRT2"; +chrXII SGD transcript 402794 404062 . - . transcript_id "YLR130C_id001"; gene_id "YLR130C"; gene_name "ZRT2"; transcript_biotype "protein_coding"; +chrXII SGD exon 402794 404062 . - 0 transcript_id "YLR130C_id001"; gene_name "ZRT2"; gene_id "YLR130C"; +chrXII SGD gene 404436 407088 . - . gene_id "YLR131C"; gene_biotype "protein_coding"; +chrXII SGD transcript 404436 407088 . - . transcript_id "YLR131C_id001"; gene_id "YLR131C"; gene_name "ACE2"; transcript_biotype "protein_coding"; +chrXII SGD exon 404436 407088 . - . transcript_id "YLR131C_id001"; gene_id "YLR131C"; gene_name "ACE2"; +chrXII SGD transcript 404510 406822 . - . transcript_id "YLR131C_id002"; gene_id "YLR131C"; gene_name "ACE2"; transcript_biotype "protein_coding"; +chrXII SGD exon 404510 406822 . - 0 transcript_id "YLR131C_id002"; gene_name "ACE2"; gene_id "YLR131C"; +chrXII SGD gene 406844 408240 . - . gene_id "YLR132C"; gene_biotype "protein_coding"; +chrXII SGD transcript 406844 408240 . - . transcript_id "YLR132C_id001"; gene_id "YLR132C"; gene_name "USB1"; transcript_biotype "protein_coding"; +chrXII SGD exon 406844 408240 . - . transcript_id "YLR132C_id001"; gene_id "YLR132C"; gene_name "USB1"; +chrXII SGD transcript 407283 408155 . - . transcript_id "YLR132C_id003"; gene_id "YLR132C"; gene_name "USB1"; transcript_biotype "protein_coding"; +chrXII SGD exon 407283 408155 . - 0 transcript_id "YLR132C_id003"; gene_name "USB1"; gene_id "YLR132C"; +chrXII SGD gene 408415 410773 . + . gene_id "YLR133W"; gene_biotype "protein_coding"; +chrXII SGD transcript 408415 410773 . + . transcript_id "YLR133W_id001"; gene_id "YLR133W"; gene_name "CKI1"; transcript_biotype "protein_coding"; +chrXII SGD exon 408415 410773 . + . transcript_id "YLR133W_id001"; gene_id "YLR133W"; gene_name "CKI1"; +chrXII SGD transcript 408445 410193 . + . transcript_id "YLR133W_id002"; gene_id "YLR133W"; gene_name "CKI1"; transcript_biotype "protein_coding"; +chrXII SGD exon 408445 410193 . + 0 transcript_id "YLR133W_id002"; gene_name "CKI1"; gene_id "YLR133W"; +chrXII SGD gene 410680 412545 . + . gene_id "YLR134W"; gene_biotype "protein_coding"; +chrXII SGD transcript 410680 412545 . + . transcript_id "YLR134W_id002"; gene_id "YLR134W"; gene_name "PDC5"; transcript_biotype "protein_coding"; +chrXII SGD exon 410680 412545 . + . transcript_id "YLR134W_id002"; gene_id "YLR134W"; gene_name "PDC5"; +chrXII SGD transcript 410723 412414 . + . transcript_id "YLR134W_id001"; gene_id "YLR134W"; gene_name "PDC5"; transcript_biotype "protein_coding"; +chrXII SGD exon 410723 412414 . + 0 transcript_id "YLR134W_id001"; gene_name "PDC5"; gene_id "YLR134W"; +chrXII SGD gene 413217 415680 . + . gene_id "YLR135W"; gene_biotype "protein_coding"; +chrXII SGD transcript 413217 415680 . + . transcript_id "YLR135W_id001"; gene_id "YLR135W"; gene_name "SLX4"; transcript_biotype "protein_coding"; +chrXII SGD exon 413217 415680 . + . transcript_id "YLR135W_id001"; gene_id "YLR135W"; gene_name "SLX4"; +chrXII SGD transcript 413281 415527 . + . transcript_id "YLR135W_id003"; gene_id "YLR135W"; gene_name "SLX4"; transcript_biotype "protein_coding"; +chrXII SGD exon 413281 415527 . + 0 transcript_id "YLR135W_id003"; gene_name "SLX4"; gene_id "YLR135W"; +chrXII SGD gene 415550 416759 . - . gene_id "YLR136C"; gene_biotype "protein_coding"; +chrXII SGD transcript 415550 416759 . - . transcript_id "YLR136C_id001"; gene_id "YLR136C"; gene_name "TIS11"; transcript_biotype "protein_coding"; +chrXII SGD exon 415550 416759 . - . transcript_id "YLR136C_id001"; gene_id "YLR136C"; gene_name "TIS11"; +chrXII SGD transcript 415801 416658 . - . transcript_id "YLR136C_id002"; gene_id "YLR136C"; gene_name "TIS11"; transcript_biotype "protein_coding"; +chrXII SGD exon 415801 416658 . - 0 transcript_id "YLR136C_id002"; gene_name "TIS11"; gene_id "YLR136C"; +chrXII SGD gene 416999 418379 . + . gene_id "YLR137W"; gene_biotype "protein_coding"; +chrXII SGD transcript 416999 418379 . + . transcript_id "YLR137W_id001"; gene_id "YLR137W"; gene_name "RKM5"; transcript_biotype "protein_coding"; +chrXII SGD exon 416999 418379 . + . transcript_id "YLR137W_id001"; gene_id "YLR137W"; gene_name "RKM5"; +chrXII SGD transcript 417006 418109 . + . transcript_id "YLR137W_id004"; gene_id "YLR137W"; gene_name "RKM5"; transcript_biotype "protein_coding"; +chrXII SGD exon 417006 418109 . + 0 transcript_id "YLR137W_id004"; gene_name "RKM5"; gene_id "YLR137W"; +chrXII SGD gene 418338 421466 . + . gene_id "YLR138W"; gene_biotype "protein_coding"; +chrXII SGD transcript 418338 421466 . + . transcript_id "YLR138W_id002"; gene_id "YLR138W"; gene_name "NHA1"; transcript_biotype "protein_coding"; +chrXII SGD exon 418338 421466 . + . transcript_id "YLR138W_id002"; gene_id "YLR138W"; gene_name "NHA1"; +chrXII SGD transcript 418437 421394 . + . transcript_id "YLR138W_id001"; gene_id "YLR138W"; gene_name "NHA1"; transcript_biotype "protein_coding"; +chrXII SGD exon 418437 421394 . + 0 transcript_id "YLR138W_id001"; gene_name "NHA1"; gene_id "YLR138W"; +chrXII SGD gene 421368 423524 . - . gene_id "YLR139C"; gene_biotype "protein_coding"; +chrXII SGD transcript 421368 423524 . - . transcript_id "YLR139C_id002"; gene_id "YLR139C"; gene_name "SLS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 421368 423524 . - . transcript_id "YLR139C_id002"; gene_id "YLR139C"; gene_name "SLS1"; +chrXII SGD transcript 421542 423473 . - . transcript_id "YLR139C_id001"; gene_id "YLR139C"; gene_name "SLS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 421542 423473 . - 0 transcript_id "YLR139C_id001"; gene_name "SLS1"; gene_id "YLR139C"; +chrXII SGD gene 423474 423800 . + . gene_id "YLR140W"; gene_biotype "protein_coding"; +chrXII SGD transcript 423474 423800 . + . transcript_id "YLR140W_mRNA"; gene_id "YLR140W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 423474 423800 . + 0 transcript_id "YLR140W_mRNA"; gene_id "YLR140W"; +chrXII SGD gene 423644 425197 . + . gene_id "YLR141W"; gene_biotype "protein_coding"; +chrXII SGD transcript 423644 425197 . + . transcript_id "YLR141W_id004"; gene_id "YLR141W"; gene_name "RRN5"; transcript_biotype "protein_coding"; +chrXII SGD exon 423644 425197 . + . transcript_id "YLR141W_id004"; gene_id "YLR141W"; gene_name "RRN5"; +chrXII SGD transcript 423683 424774 . + . transcript_id "YLR141W_id001"; gene_id "YLR141W"; gene_name "RRN5"; transcript_biotype "protein_coding"; +chrXII SGD exon 423683 424774 . + 0 transcript_id "YLR141W_id001"; gene_name "RRN5"; gene_id "YLR141W"; +chrXII SGD gene 425186 426616 . + . gene_id "YLR142W"; gene_biotype "protein_coding"; +chrXII SGD transcript 425186 426616 . + . transcript_id "YLR142W_id001"; gene_id "YLR142W"; gene_name "PUT1"; transcript_biotype "protein_coding"; +chrXII SGD exon 425186 426616 . + 0 transcript_id "YLR142W_id001"; gene_name "PUT1"; gene_id "YLR142W"; +chrXII SGD gene 427132 427203 . + . gene_id "YNCL0008W"; gene_biotype "ncRNA"; +chrXII SGD transcript 427132 427203 . + . transcript_id "YNCL0008W_tRNA"; gene_id "YNCL0008W"; transcript_biotype "ncRNA"; +chrXII SGD exon 427132 427203 . + . transcript_id "YNCL0008W_tRNA"; gene_id "YNCL0008W"; +chrXII SGD gene 427296 429595 . + . gene_id "YLR143W"; gene_biotype "protein_coding"; +chrXII SGD transcript 427296 429595 . + . transcript_id "YLR143W_id002"; gene_id "YLR143W"; gene_name "DPH6"; transcript_biotype "protein_coding"; +chrXII SGD exon 427296 429595 . + . transcript_id "YLR143W_id002"; gene_id "YLR143W"; gene_name "DPH6"; +chrXII SGD transcript 427329 429386 . + . transcript_id "YLR143W_id001"; gene_id "YLR143W"; gene_name "DPH6"; transcript_biotype "protein_coding"; +chrXII SGD exon 427329 429386 . + 0 transcript_id "YLR143W_id001"; gene_name "DPH6"; gene_id "YLR143W"; +chrXII SGD gene 429677 432016 . - . gene_id "YLR144C"; gene_biotype "protein_coding"; +chrXII SGD transcript 429677 432016 . - . transcript_id "YLR144C_id001"; gene_id "YLR144C"; gene_name "ACF2"; transcript_biotype "protein_coding"; +chrXII SGD exon 429677 432016 . - 0 transcript_id "YLR144C_id001"; gene_name "ACF2"; gene_id "YLR144C"; +chrXII SGD gene 431784 432824 . + . gene_id "YLR145W"; gene_biotype "protein_coding"; +chrXII SGD transcript 431784 432824 . + . transcript_id "YLR145W_id001"; gene_id "YLR145W"; gene_name "RMP1"; transcript_biotype "protein_coding"; +chrXII SGD exon 431784 432824 . + . transcript_id "YLR145W_id001"; gene_id "YLR145W"; gene_name "RMP1"; +chrXII SGD transcript 432168 432773 . + . transcript_id "YLR145W_id003"; gene_id "YLR145W"; gene_name "RMP1"; transcript_biotype "protein_coding"; +chrXII SGD exon 432168 432773 . + 0 transcript_id "YLR145W_id003"; gene_name "RMP1"; gene_id "YLR145W"; +chrXII SGD gene 432740 433951 . - . gene_id "YLR146C"; gene_biotype "protein_coding"; +chrXII SGD transcript 432740 433951 . - . transcript_id "YLR146C_id003"; gene_id "YLR146C"; gene_name "SPE4"; transcript_biotype "protein_coding"; +chrXII SGD exon 432740 433951 . - . transcript_id "YLR146C_id003"; gene_id "YLR146C"; gene_name "SPE4"; +chrXII SGD transcript 432823 433725 . - . transcript_id "YLR146C_id001"; gene_id "YLR146C"; gene_name "SPE4"; transcript_biotype "protein_coding"; +chrXII SGD exon 432823 433725 . - 0 transcript_id "YLR146C_id001"; gene_name "SPE4"; gene_id "YLR146C"; +chrXII SGD gene 433849 434287 . + . gene_id "YLR146W-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 433849 434287 . + . transcript_id "YLR146W-A_id005"; gene_id "YLR146W-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 433849 434287 . + . transcript_id "YLR146W-A_id005"; gene_id "YLR146W-A"; +chrXII SGD transcript 433870 434058 . + . transcript_id "YLR146W-A_id001"; gene_id "YLR146W-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 433870 434058 . + 0 transcript_id "YLR146W-A_id001"; gene_id "YLR146W-A"; +chrXII SGD gene 433933 434494 . - . gene_id "YLR147C"; gene_biotype "protein_coding"; +chrXII SGD transcript 433933 434494 . - . transcript_id "YLR147C_id002"; gene_id "YLR147C"; gene_name "SMD3"; transcript_biotype "protein_coding"; +chrXII SGD exon 433933 434494 . - . transcript_id "YLR147C_id002"; gene_id "YLR147C"; gene_name "SMD3"; +chrXII SGD transcript 434158 434463 . - . transcript_id "YLR147C_id001"; gene_id "YLR147C"; gene_name "SMD3"; transcript_biotype "protein_coding"; +chrXII SGD exon 434158 434463 . - 0 transcript_id "YLR147C_id001"; gene_name "SMD3"; gene_id "YLR147C"; +chrXII SGD gene 434641 437397 . + . gene_id "YLR148W"; gene_biotype "protein_coding"; +chrXII SGD transcript 434641 437397 . + . transcript_id "YLR148W_id001"; gene_id "YLR148W"; gene_name "PEP3"; transcript_biotype "protein_coding"; +chrXII SGD exon 434641 437397 . + 0 transcript_id "YLR148W_id001"; gene_name "PEP3"; gene_id "YLR148W"; +chrXII SGD gene 437631 439823 . - . gene_id "YLR149C"; gene_biotype "protein_coding"; +chrXII SGD transcript 437631 439823 . - . transcript_id "YLR149C_id001"; gene_id "YLR149C"; gene_name "GID11"; transcript_biotype "protein_coding"; +chrXII SGD exon 437631 439823 . - 0 transcript_id "YLR149C_id001"; gene_name "GID11"; gene_id "YLR149C"; +chrXII SGD gene 440231 441516 . + . gene_id "YLR150W"; gene_biotype "protein_coding"; +chrXII SGD transcript 440231 441516 . + . transcript_id "YLR150W_id002"; gene_id "YLR150W"; gene_name "STM1"; transcript_biotype "protein_coding"; +chrXII SGD exon 440231 441516 . + . transcript_id "YLR150W_id002"; gene_id "YLR150W"; gene_name "STM1"; +chrXII SGD gene 440370 440456 . - . gene_id "YLR149C-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 440370 440456 . - . transcript_id "YLR149C-A_mRNA"; gene_id "YLR149C-A"; transcript_biotype "protein_coding"; +chrXII SGD CDS 440370 440456 . - 0 transcript_id "YLR149C-A_mRNA"; gene_id "YLR149C-A"; +chrXII SGD transcript 440467 441288 . + . transcript_id "YLR150W_id001"; gene_id "YLR150W"; gene_name "STM1"; transcript_biotype "protein_coding"; +chrXII SGD exon 440467 441288 . + 0 transcript_id "YLR150W_id001"; gene_name "STM1"; gene_id "YLR150W"; +chrXII SGD gene 441318 442778 . - . gene_id "YLR151C"; gene_biotype "protein_coding"; +chrXII SGD transcript 441318 442778 . - . transcript_id "YLR151C_id001"; gene_id "YLR151C"; gene_name "PCD1"; transcript_biotype "protein_coding"; +chrXII SGD exon 441318 442778 . - . transcript_id "YLR151C_id001"; gene_id "YLR151C"; gene_name "PCD1"; +chrXII SGD transcript 441715 442737 . - . transcript_id "YLR151C_id002"; gene_id "YLR151C"; gene_name "PCD1"; transcript_biotype "protein_coding"; +chrXII SGD exon 441715 442737 . - 0 transcript_id "YLR151C_id002"; gene_name "PCD1"; gene_id "YLR151C"; +chrXII SGD gene 442856 444857 . - . gene_id "YLR152C"; gene_biotype "protein_coding"; +chrXII SGD transcript 442856 444857 . - . transcript_id "YLR152C_id001"; gene_id "YLR152C"; transcript_biotype "protein_coding"; +chrXII SGD exon 442856 444857 . - . transcript_id "YLR152C_id001"; gene_id "YLR152C"; +chrXII SGD transcript 442958 444688 . - . transcript_id "YLR152C_id002"; gene_id "YLR152C"; transcript_biotype "protein_coding"; +chrXII SGD exon 442958 444688 . - 0 transcript_id "YLR152C_id002"; gene_id "YLR152C"; +chrXII SGD gene 445263 447688 . - . gene_id "YLR153C"; gene_biotype "protein_coding"; +chrXII SGD transcript 445263 447688 . - . transcript_id "YLR153C_id001"; gene_id "YLR153C"; gene_name "ACS2"; transcript_biotype "protein_coding"; +chrXII SGD exon 445263 447688 . - . transcript_id "YLR153C_id001"; gene_id "YLR153C"; gene_name "ACS2"; +chrXII SGD transcript 445524 447575 . - . transcript_id "YLR153C_id004"; gene_id "YLR153C"; gene_name "ACS2"; transcript_biotype "protein_coding"; +chrXII SGD exon 445524 447575 . - 0 transcript_id "YLR153C_id004"; gene_name "ACS2"; gene_id "YLR153C"; +chrXII SGD gene 447616 448401 . - . gene_id "YLR154C"; gene_biotype "protein_coding"; +chrXII SGD transcript 447616 448401 . - . transcript_id "YLR154C_id001"; gene_id "YLR154C"; gene_name "RNH203"; transcript_biotype "protein_coding"; +chrXII SGD exon 447616 448401 . - . transcript_id "YLR154C_id001"; gene_id "YLR154C"; gene_name "RNH203"; +chrXII SGD transcript 447982 448314 . - . transcript_id "YLR154C_id008"; gene_id "YLR154C"; gene_name "RNH203"; transcript_biotype "protein_coding"; +chrXII SGD exon 447982 448314 . - 0 transcript_id "YLR154C_id008"; gene_name "RNH203"; gene_id "YLR154C"; +chrXII SGD gene 448650 448721 . - . gene_id "YNCL0009C"; gene_biotype "ncRNA"; +chrXII SGD transcript 448650 448721 . - . transcript_id "YNCL0009C_tRNA"; gene_id "YNCL0009C"; transcript_biotype "ncRNA"; +chrXII SGD exon 448650 448721 . - . transcript_id "YNCL0009C_tRNA"; gene_id "YNCL0009C"; +chrXII SGD gene 451575 451785 . - . gene_id "YNCL0011C"; gene_biotype "ncRNA"; +chrXII SGD transcript 451575 451785 . - . transcript_id "YNCL0011C_rRNA"; gene_id "YNCL0011C"; gene_name "ETS2-1"; transcript_biotype "ncRNA"; +chrXII SGD exon 451575 451785 . - . transcript_id "YNCL0011C_rRNA"; gene_name "ETS2-1"; gene_id "YNCL0011C"; +chrXII SGD gene 451786 455181 . - . gene_id "YNCL0012C"; gene_biotype "ncRNA"; +chrXII SGD transcript 451786 455181 . - . transcript_id "YNCL0012C_rRNA"; gene_id "YNCL0012C"; gene_name "RDN25-1"; transcript_biotype "ncRNA"; +chrXII SGD exon 451786 455181 . - . transcript_id "YNCL0012C_rRNA"; gene_name "RDN25-1"; gene_id "YNCL0012C"; +chrXII SGD gene 451786 458432 . - . gene_id "YNCL0010C"; gene_biotype "ncRNA"; +chrXII SGD transcript 451786 458432 . - . transcript_id "YNCL0010C_rRNA"; gene_id "YNCL0010C"; gene_name "RDN37-1"; transcript_biotype "ncRNA"; +chrXII SGD exon 451786 455181 . - . transcript_id "YNCL0010C_rRNA"; gene_name "RDN37-1"; gene_id "YNCL0010C"; +chrXII SGD exon 455414 455571 . - . transcript_id "YNCL0010C_rRNA"; gene_name "RDN37-1"; gene_id "YNCL0010C"; +chrXII SGD exon 455933 458432 . - . transcript_id "YNCL0010C_rRNA"; gene_name "RDN37-1"; gene_id "YNCL0010C"; +chrXII SGD gene 452438 452623 . + . gene_id "YLR154W-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 452438 452623 . + . transcript_id "YLR154W-A_mRNA"; gene_id "YLR154W-A"; transcript_biotype "protein_coding"; +chrXII SGD CDS 452438 452623 . + 0 transcript_id "YLR154W-A_mRNA"; gene_id "YLR154W-A"; +chrXII SGD gene 454392 454556 . + . gene_id "YLR154W-B"; gene_biotype "protein_coding"; +chrXII SGD transcript 454392 454556 . + . transcript_id "YLR154W-B_mRNA"; gene_id "YLR154W-B"; transcript_biotype "protein_coding"; +chrXII SGD CDS 454392 454556 . + 0 transcript_id "YLR154W-B_mRNA"; gene_id "YLR154W-B"; +chrXII SGD gene 454696 455070 . + . gene_id "YLR154W-C"; gene_biotype "protein_coding"; +chrXII SGD transcript 454696 455070 . + . transcript_id "YLR154W-C_mRNA"; gene_id "YLR154W-C"; gene_name "TAR1"; transcript_biotype "protein_coding"; +chrXII SGD CDS 454696 455070 . + 0 transcript_id "YLR154W-C_mRNA"; gene_name "TAR1"; gene_id "YLR154W-C"; +chrXII SGD gene 455182 455413 . - . gene_id "YNCL0013C"; gene_biotype "ncRNA"; +chrXII SGD transcript 455182 455413 . - . transcript_id "YNCL0013C_rRNA"; gene_id "YNCL0013C"; gene_name "ITS2-1"; transcript_biotype "ncRNA"; +chrXII SGD exon 455182 455413 . - . transcript_id "YNCL0013C_rRNA"; gene_name "ITS2-1"; gene_id "YNCL0013C"; +chrXII SGD gene 455414 455571 . - . gene_id "YNCL0014C"; gene_biotype "ncRNA"; +chrXII SGD transcript 455414 455571 . - . transcript_id "YNCL0014C_rRNA"; gene_id "YNCL0014C"; gene_name "RDN58-1"; transcript_biotype "ncRNA"; +chrXII SGD exon 455414 455571 . - . transcript_id "YNCL0014C_rRNA"; gene_name "RDN58-1"; gene_id "YNCL0014C"; +chrXII SGD gene 455433 455636 . + . gene_id "YLR154W-E"; gene_biotype "protein_coding"; +chrXII SGD transcript 455433 455636 . + . transcript_id "YLR154W-E_mRNA"; gene_id "YLR154W-E"; transcript_biotype "protein_coding"; +chrXII SGD CDS 455433 455636 . + 0 transcript_id "YLR154W-E_mRNA"; gene_id "YLR154W-E"; +chrXII SGD gene 455572 455932 . - . gene_id "YNCL0015C"; gene_biotype "ncRNA"; +chrXII SGD transcript 455572 455932 . - . transcript_id "YNCL0015C_rRNA"; gene_id "YNCL0015C"; gene_name "ITS1-1"; transcript_biotype "ncRNA"; +chrXII SGD exon 455572 455932 . - . transcript_id "YNCL0015C_rRNA"; gene_name "ITS1-1"; gene_id "YNCL0015C"; +chrXII SGD gene 455883 456023 . + . gene_id "YLR154W-F"; gene_biotype "protein_coding"; +chrXII SGD transcript 455883 456023 . + . transcript_id "YLR154W-F_mRNA"; gene_id "YLR154W-F"; transcript_biotype "protein_coding"; +chrXII SGD CDS 455883 456023 . + 0 transcript_id "YLR154W-F_mRNA"; gene_id "YLR154W-F"; +chrXII SGD gene 455933 457732 . - . gene_id "YNCL0016C"; gene_biotype "ncRNA"; +chrXII SGD transcript 455933 457732 . - . transcript_id "YNCL0016C_rRNA"; gene_id "YNCL0016C"; gene_name "RDN18-1"; transcript_biotype "ncRNA"; +chrXII SGD exon 455933 457732 . - . transcript_id "YNCL0016C_rRNA"; gene_name "RDN18-1"; gene_id "YNCL0016C"; +chrXII SGD gene 457733 458432 . - . gene_id "YNCL0017C"; gene_biotype "ncRNA"; +chrXII SGD transcript 457733 458432 . - . transcript_id "YNCL0017C_rRNA"; gene_id "YNCL0017C"; gene_name "ETS1-1"; transcript_biotype "ncRNA"; +chrXII SGD exon 457733 458432 . - . transcript_id "YNCL0017C_rRNA"; gene_name "ETS1-1"; gene_id "YNCL0017C"; +chrXII SGD gene 459676 459796 . + . gene_id "YNCL0018W"; gene_biotype "ncRNA"; +chrXII SGD transcript 459676 459796 . + . transcript_id "YNCL0018W_rRNA"; gene_id "YNCL0018W"; gene_name "RDN5-1"; transcript_biotype "ncRNA"; +chrXII SGD exon 459676 459796 . + . transcript_id "YNCL0018W_rRNA"; gene_name "RDN5-1"; gene_id "YNCL0018W"; +chrXII SGD gene 460712 460922 . - . gene_id "YNCL0019C"; gene_biotype "ncRNA"; +chrXII SGD transcript 460712 460922 . - . transcript_id "YNCL0019C_rRNA"; gene_id "YNCL0019C"; gene_name "ETS2-2"; transcript_biotype "ncRNA"; +chrXII SGD exon 460712 460922 . - . transcript_id "YNCL0019C_rRNA"; gene_name "ETS2-2"; gene_id "YNCL0019C"; +chrXII SGD gene 460923 464318 . - . gene_id "YNCL0021C"; gene_biotype "ncRNA"; +chrXII SGD transcript 460923 464318 . - . transcript_id "YNCL0021C_rRNA"; gene_id "YNCL0021C"; gene_name "RDN25-2"; transcript_biotype "ncRNA"; +chrXII SGD exon 460923 464318 . - . transcript_id "YNCL0021C_rRNA"; gene_name "RDN25-2"; gene_id "YNCL0021C"; +chrXII SGD gene 460923 467569 . - . gene_id "YNCL0020C"; gene_biotype "ncRNA"; +chrXII SGD transcript 460923 467569 . - . transcript_id "YNCL0020C_rRNA"; gene_id "YNCL0020C"; gene_name "RDN37-2"; transcript_biotype "ncRNA"; +chrXII SGD exon 460923 464318 . - . transcript_id "YNCL0020C_rRNA"; gene_name "RDN37-2"; gene_id "YNCL0020C"; +chrXII SGD exon 464551 464708 . - . transcript_id "YNCL0020C_rRNA"; gene_name "RDN37-2"; gene_id "YNCL0020C"; +chrXII SGD exon 465070 467569 . - . transcript_id "YNCL0020C_rRNA"; gene_name "RDN37-2"; gene_id "YNCL0020C"; +chrXII SGD gene 462522 462671 . - . gene_id "YLR154C-G"; gene_biotype "protein_coding"; +chrXII SGD transcript 462522 462671 . - . transcript_id "YLR154C-G_mRNA"; gene_id "YLR154C-G"; transcript_biotype "protein_coding"; +chrXII SGD CDS 462522 462671 . - 0 transcript_id "YLR154C-G_mRNA"; gene_id "YLR154C-G"; +chrXII SGD gene 464319 464550 . - . gene_id "YNCL0022C"; gene_biotype "ncRNA"; +chrXII SGD transcript 464319 464550 . - . transcript_id "YNCL0022C_rRNA"; gene_id "YNCL0022C"; gene_name "ITS2-2"; transcript_biotype "ncRNA"; +chrXII SGD exon 464319 464550 . - . transcript_id "YNCL0022C_rRNA"; gene_name "ITS2-2"; gene_id "YNCL0022C"; +chrXII SGD gene 464551 464708 . - . gene_id "YNCL0023C"; gene_biotype "ncRNA"; +chrXII SGD transcript 464551 464708 . - . transcript_id "YNCL0023C_rRNA"; gene_id "YNCL0023C"; gene_name "RDN58-2"; transcript_biotype "ncRNA"; +chrXII SGD exon 464551 464708 . - . transcript_id "YNCL0023C_rRNA"; gene_name "RDN58-2"; gene_id "YNCL0023C"; +chrXII SGD gene 464709 465069 . - . gene_id "YNCL0024C"; gene_biotype "ncRNA"; +chrXII SGD transcript 464709 465069 . - . transcript_id "YNCL0024C_rRNA"; gene_id "YNCL0024C"; gene_name "ITS1-2"; transcript_biotype "ncRNA"; +chrXII SGD exon 464709 465069 . - . transcript_id "YNCL0024C_rRNA"; gene_name "ITS1-2"; gene_id "YNCL0024C"; +chrXII SGD gene 465070 466869 . - . gene_id "YNCL0025C"; gene_biotype "ncRNA"; +chrXII SGD transcript 465070 466869 . - . transcript_id "YNCL0025C_rRNA"; gene_id "YNCL0025C"; gene_name "RDN18-2"; transcript_biotype "ncRNA"; +chrXII SGD exon 465070 466869 . - . transcript_id "YNCL0025C_rRNA"; gene_name "RDN18-2"; gene_id "YNCL0025C"; +chrXII SGD gene 466870 467569 . - . gene_id "YNCL0026C"; gene_biotype "ncRNA"; +chrXII SGD transcript 466870 467569 . - . transcript_id "YNCL0026C_rRNA"; gene_id "YNCL0026C"; gene_name "ETS1-2"; transcript_biotype "ncRNA"; +chrXII SGD exon 466870 467569 . - . transcript_id "YNCL0026C_rRNA"; gene_name "ETS1-2"; gene_id "YNCL0026C"; +chrXII SGD gene 468813 468931 . + . gene_id "YNCL0027W"; gene_biotype "ncRNA"; +chrXII SGD transcript 468813 468931 . + . transcript_id "YNCL0027W_rRNA"; gene_id "YNCL0027W"; gene_name "RDN5-2"; transcript_biotype "ncRNA"; +chrXII SGD exon 468813 468931 . + . transcript_id "YNCL0027W_rRNA"; gene_name "RDN5-2"; gene_id "YNCL0027W"; +chrXII SGD gene 468827 468958 . - . gene_id "YLR154C-H"; gene_biotype "protein_coding"; +chrXII SGD transcript 468827 468958 . - . transcript_id "YLR154C-H_mRNA"; gene_id "YLR154C-H"; transcript_biotype "protein_coding"; +chrXII SGD CDS 468827 468958 . - 0 transcript_id "YLR154C-H_mRNA"; gene_id "YLR154C-H"; +chrXII SGD gene 469317 470405 . - . gene_id "YLR155C"; gene_biotype "protein_coding"; +chrXII SGD transcript 469317 470405 . - . transcript_id "YLR155C_mRNA"; gene_id "YLR155C"; gene_name "ASP3-1"; transcript_biotype "protein_coding"; +chrXII SGD CDS 469317 470405 . - 0 transcript_id "YLR155C_mRNA"; gene_name "ASP3-1"; gene_id "YLR155C"; +chrXII SGD gene 472113 472457 . + . gene_id "YLR156W"; gene_biotype "protein_coding"; +chrXII SGD transcript 472113 472457 . + . transcript_id "YLR156W_mRNA"; gene_id "YLR156W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 472113 472457 . + 0 transcript_id "YLR156W_mRNA"; gene_id "YLR156W"; +chrXII SGD gene 472465 472583 . + . gene_id "YNCL0028W"; gene_biotype "ncRNA"; +chrXII SGD transcript 472465 472583 . + . transcript_id "YNCL0028W_rRNA"; gene_id "YNCL0028W"; gene_name "RDN5-3"; transcript_biotype "ncRNA"; +chrXII SGD exon 472465 472583 . + . transcript_id "YNCL0028W_rRNA"; gene_name "RDN5-3"; gene_id "YNCL0028W"; +chrXII SGD gene 472479 472610 . - . gene_id "YLR156C-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 472479 472610 . - . transcript_id "YLR156C-A_mRNA"; gene_id "YLR156C-A"; transcript_biotype "protein_coding"; +chrXII SGD CDS 472479 472610 . - 0 transcript_id "YLR156C-A_mRNA"; gene_id "YLR156C-A"; +chrXII SGD gene 472969 474057 . - . gene_id "YLR157C"; gene_biotype "protein_coding"; +chrXII SGD transcript 472969 474057 . - . transcript_id "YLR157C_mRNA"; gene_id "YLR157C"; gene_name "ASP3-2"; transcript_biotype "protein_coding"; +chrXII SGD CDS 472969 474057 . - 0 transcript_id "YLR157C_mRNA"; gene_name "ASP3-2"; gene_id "YLR157C"; +chrXII SGD gene 475764 475976 . + . gene_id "YLR157W-D"; gene_biotype "protein_coding"; +chrXII SGD transcript 475764 475976 . + . transcript_id "YLR157W-D_mRNA"; gene_id "YLR157W-D"; transcript_biotype "protein_coding"; +chrXII SGD CDS 475764 475976 . + 0 transcript_id "YLR157W-D_mRNA"; gene_id "YLR157W-D"; +chrXII SGD gene 476333 481601 . - . gene_id "YLR157C-B"; gene_biotype "protein_coding"; +chrXII SGD transcript 476333 481601 . - . transcript_id "YLR157C-B_dummy"; gene_id "YLR157C-B"; transcript_biotype "protein_coding"; +chrXII SGD exon 476333 480295 . - 0 transcript_id "YLR157C-B_dummy"; gene_id "YLR157C-B"; +chrXII SGD exon 480297 481601 . - 0 transcript_id "YLR157C-B_dummy"; gene_id "YLR157C-B"; +chrXII SGD gene 480279 481601 . - . gene_id "YLR157C-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 480279 481601 . - . transcript_id "YLR157C-A_dummy"; gene_id "YLR157C-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 480279 481601 . - 0 transcript_id "YLR157C-A_dummy"; gene_id "YLR157C-A"; +chrXII SGD gene 481873 482037 . + . gene_id "YLR157W-E"; gene_biotype "protein_coding"; +chrXII SGD transcript 481873 482037 . + . transcript_id "YLR157W-E_mRNA"; gene_id "YLR157W-E"; transcript_biotype "protein_coding"; +chrXII SGD CDS 481873 482037 . + 0 transcript_id "YLR157W-E_mRNA"; gene_id "YLR157W-E"; +chrXII SGD gene 482045 482163 . + . gene_id "YNCL0029W"; gene_biotype "ncRNA"; +chrXII SGD transcript 482045 482163 . + . transcript_id "YNCL0029W_rRNA"; gene_id "YNCL0029W"; gene_name "RDN5-4"; transcript_biotype "ncRNA"; +chrXII SGD exon 482045 482163 . + . transcript_id "YNCL0029W_rRNA"; gene_name "RDN5-4"; gene_id "YNCL0029W"; +chrXII SGD gene 482059 482190 . - . gene_id "YLR157C-C"; gene_biotype "protein_coding"; +chrXII SGD transcript 482059 482190 . - . transcript_id "YLR157C-C_mRNA"; gene_id "YLR157C-C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 482059 482190 . - 0 transcript_id "YLR157C-C_mRNA"; gene_id "YLR157C-C"; +chrXII SGD gene 482549 483637 . - . gene_id "YLR158C"; gene_biotype "protein_coding"; +chrXII SGD transcript 482549 483637 . - . transcript_id "YLR158C_mRNA"; gene_id "YLR158C"; gene_name "ASP3-3"; transcript_biotype "protein_coding"; +chrXII SGD CDS 482549 483637 . - 0 transcript_id "YLR158C_mRNA"; gene_name "ASP3-3"; gene_id "YLR158C"; +chrXII SGD gene 485345 485689 . + . gene_id "YLR159W"; gene_biotype "protein_coding"; +chrXII SGD transcript 485345 485689 . + . transcript_id "YLR159W_mRNA"; gene_id "YLR159W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 485345 485689 . + 0 transcript_id "YLR159W_mRNA"; gene_id "YLR159W"; +chrXII SGD gene 485697 485815 . + . gene_id "YNCL0030W"; gene_biotype "ncRNA"; +chrXII SGD transcript 485697 485815 . + . transcript_id "YNCL0030W_rRNA"; gene_id "YNCL0030W"; gene_name "RDN5-5"; transcript_biotype "ncRNA"; +chrXII SGD exon 485697 485815 . + . transcript_id "YNCL0030W_rRNA"; gene_name "RDN5-5"; gene_id "YNCL0030W"; +chrXII SGD gene 485711 485842 . - . gene_id "YLR159C-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 485711 485842 . - . transcript_id "YLR159C-A_mRNA"; gene_id "YLR159C-A"; transcript_biotype "protein_coding"; +chrXII SGD CDS 485711 485842 . - 0 transcript_id "YLR159C-A_mRNA"; gene_id "YLR159C-A"; +chrXII SGD gene 486201 487289 . - . gene_id "YLR160C"; gene_biotype "protein_coding"; +chrXII SGD transcript 486201 487289 . - . transcript_id "YLR160C_mRNA"; gene_id "YLR160C"; gene_name "ASP3-4"; transcript_biotype "protein_coding"; +chrXII SGD CDS 486201 487289 . - 0 transcript_id "YLR160C_mRNA"; gene_name "ASP3-4"; gene_id "YLR160C"; +chrXII SGD gene 488997 489341 . + . gene_id "YLR161W"; gene_biotype "protein_coding"; +chrXII SGD transcript 488997 489341 . + . transcript_id "YLR161W_mRNA"; gene_id "YLR161W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 488997 489341 . + 0 transcript_id "YLR161W_mRNA"; gene_id "YLR161W"; +chrXII SGD gene 489349 489469 . + . gene_id "YNCL0031W"; gene_biotype "ncRNA"; +chrXII SGD transcript 489349 489469 . + . transcript_id "YNCL0031W_rRNA"; gene_id "YNCL0031W"; gene_name "RDN5-6"; transcript_biotype "ncRNA"; +chrXII SGD exon 489349 489469 . + . transcript_id "YNCL0031W_rRNA"; gene_name "RDN5-6"; gene_id "YNCL0031W"; +chrXII SGD gene 489573 489929 . + . gene_id "YLR162W"; gene_biotype "protein_coding"; +chrXII SGD transcript 489573 489929 . + . transcript_id "YLR162W_mRNA"; gene_id "YLR162W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 489573 489929 . + 0 transcript_id "YLR162W_mRNA"; gene_id "YLR162W"; +chrXII SGD gene 490406 490594 . + . gene_id "YLR162W-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 490406 490594 . + . transcript_id "YLR162W-A_mRNA"; gene_id "YLR162W-A"; gene_name "RRT15"; transcript_biotype "protein_coding"; +chrXII SGD CDS 490406 490594 . + 0 transcript_id "YLR162W-A_mRNA"; gene_name "RRT15"; gene_id "YLR162W-A"; +chrXII SGD gene 491701 493305 . - . gene_id "YLR163C"; gene_biotype "protein_coding"; +chrXII SGD transcript 491701 493305 . - . transcript_id "YLR163C_id002"; gene_id "YLR163C"; gene_name "MAS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 491701 493305 . - . transcript_id "YLR163C_id002"; gene_id "YLR163C"; gene_name "MAS1"; +chrXII SGD transcript 491866 493254 . - . transcript_id "YLR163C_id001"; gene_id "YLR163C"; gene_name "MAS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 491866 493254 . - 0 transcript_id "YLR163C_id001"; gene_name "MAS1"; gene_id "YLR163C"; +chrXII SGD gene 492812 492925 . + . gene_id "YLR163W-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 492812 492925 . + . transcript_id "YLR163W-A_mRNA"; gene_id "YLR163W-A"; transcript_biotype "protein_coding"; +chrXII SGD CDS 492812 492925 . + 0 transcript_id "YLR163W-A_mRNA"; gene_id "YLR163W-A"; +chrXII SGD gene 493520 494533 . + . gene_id "YLR164W"; gene_biotype "protein_coding"; +chrXII SGD transcript 493520 494533 . + . transcript_id "YLR164W_id001"; gene_id "YLR164W"; gene_name "SHH4"; transcript_biotype "protein_coding"; +chrXII SGD exon 493520 494533 . + . transcript_id "YLR164W_id001"; gene_id "YLR164W"; gene_name "SHH4"; +chrXII SGD transcript 493883 494389 . + . transcript_id "YLR164W_id002"; gene_id "YLR164W"; gene_name "SHH4"; transcript_biotype "protein_coding"; +chrXII SGD exon 493883 494389 . + 0 transcript_id "YLR164W_id002"; gene_name "SHH4"; gene_id "YLR164W"; +chrXII SGD gene 494371 495299 . - . gene_id "YLR165C"; gene_biotype "protein_coding"; +chrXII SGD transcript 494371 495299 . - . transcript_id "YLR165C_id002"; gene_id "YLR165C"; gene_name "PUS5"; transcript_biotype "protein_coding"; +chrXII SGD exon 494371 495299 . - . transcript_id "YLR165C_id002"; gene_id "YLR165C"; gene_name "PUS5"; +chrXII SGD transcript 494494 495258 . - . transcript_id "YLR165C_id001"; gene_id "YLR165C"; gene_name "PUS5"; transcript_biotype "protein_coding"; +chrXII SGD exon 494494 495258 . - 0 transcript_id "YLR165C_id001"; gene_name "PUS5"; gene_id "YLR165C"; +chrXII SGD gene 495384 498080 . - . gene_id "YLR166C"; gene_biotype "protein_coding"; +chrXII SGD transcript 495384 498080 . - . transcript_id "YLR166C_id003"; gene_id "YLR166C"; gene_name "SEC10"; transcript_biotype "protein_coding"; +chrXII SGD exon 495384 498080 . - . transcript_id "YLR166C_id003"; gene_id "YLR166C"; gene_name "SEC10"; +chrXII SGD transcript 495429 498044 . - . transcript_id "YLR166C_id001"; gene_id "YLR166C"; gene_name "SEC10"; transcript_biotype "protein_coding"; +chrXII SGD exon 495429 498044 . - 0 transcript_id "YLR166C_id001"; gene_name "SEC10"; gene_id "YLR166C"; +chrXII SGD gene 498188 499453 . + . gene_id "YLR167W"; gene_biotype "protein_coding"; +chrXII SGD transcript 498188 499453 . + . transcript_id "YLR167W_id001"; gene_id "YLR167W"; gene_name "RPS31"; transcript_biotype "protein_coding"; +chrXII SGD exon 498188 499453 . + . transcript_id "YLR167W_id001"; gene_id "YLR167W"; gene_name "RPS31"; +chrXII SGD transcript 498947 499405 . + . transcript_id "YLR167W_id003"; gene_id "YLR167W"; gene_name "RPS31"; transcript_biotype "protein_coding"; +chrXII SGD exon 498947 499405 . + 0 transcript_id "YLR167W_id003"; gene_name "RPS31"; gene_id "YLR167W"; +chrXII SGD gene 499453 500696 . - . gene_id "YLR168C"; gene_biotype "protein_coding"; +chrXII SGD transcript 499453 500696 . - . transcript_id "YLR168C_id002"; gene_id "YLR168C"; gene_name "UPS2"; transcript_biotype "protein_coding"; +chrXII SGD exon 499453 500696 . - . transcript_id "YLR168C_id002"; gene_id "YLR168C"; gene_name "UPS2"; +chrXII SGD transcript 499578 500270 . - . transcript_id "YLR168C_id001"; gene_id "YLR168C"; gene_name "UPS2"; transcript_biotype "protein_coding"; +chrXII SGD exon 499578 500270 . - 0 transcript_id "YLR168C_id001"; gene_name "UPS2"; gene_id "YLR168C"; +chrXII SGD gene 500258 501096 . - . gene_id "YLR170C"; gene_biotype "protein_coding"; +chrXII SGD transcript 500258 501096 . - . transcript_id "YLR170C_id001"; gene_id "YLR170C"; gene_name "APS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 500258 501096 . - . transcript_id "YLR170C_id001"; gene_id "YLR170C"; gene_name "APS1"; +chrXII SGD gene 500335 500688 . + . gene_id "YLR169W"; gene_biotype "protein_coding"; +chrXII SGD transcript 500335 500688 . + . transcript_id "YLR169W_mRNA"; gene_id "YLR169W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 500335 500688 . + 0 transcript_id "YLR169W_mRNA"; gene_id "YLR169W"; +chrXII SGD transcript 500579 501049 . - . transcript_id "YLR170C_id005"; gene_id "YLR170C"; gene_name "APS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 500579 501049 . - 0 transcript_id "YLR170C_id005"; gene_name "APS1"; gene_id "YLR170C"; +chrXII SGD gene 500733 501122 . + . gene_id "YLR171W"; gene_biotype "protein_coding"; +chrXII SGD transcript 500733 501122 . + . transcript_id "YLR171W_mRNA"; gene_id "YLR171W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 500733 501122 . + 0 transcript_id "YLR171W_mRNA"; gene_id "YLR171W"; +chrXII SGD gene 500848 502199 . - . gene_id "YLR172C"; gene_biotype "protein_coding"; +chrXII SGD transcript 500848 502199 . - . transcript_id "YLR172C_id001"; gene_id "YLR172C"; gene_name "DPH5"; transcript_biotype "protein_coding"; +chrXII SGD exon 500848 502199 . - . transcript_id "YLR172C_id001"; gene_id "YLR172C"; gene_name "DPH5"; +chrXII SGD transcript 501260 502162 . - . transcript_id "YLR172C_id006"; gene_id "YLR172C"; gene_name "DPH5"; transcript_biotype "protein_coding"; +chrXII SGD exon 501260 502162 . - 0 transcript_id "YLR172C_id006"; gene_name "DPH5"; gene_id "YLR172C"; +chrXII SGD gene 502360 504642 . + . gene_id "YLR173W"; gene_biotype "protein_coding"; +chrXII SGD transcript 502360 504642 . + . transcript_id "YLR173W_id006"; gene_id "YLR173W"; gene_name "TAG1"; transcript_biotype "protein_coding"; +chrXII SGD exon 502360 504642 . + . transcript_id "YLR173W_id006"; gene_id "YLR173W"; gene_name "TAG1"; +chrXII SGD transcript 502421 504247 . + . transcript_id "YLR173W_id001"; gene_id "YLR173W"; gene_name "TAG1"; transcript_biotype "protein_coding"; +chrXII SGD exon 502421 504247 . + 0 transcript_id "YLR173W_id001"; gene_name "TAG1"; gene_id "YLR173W"; +chrXII SGD gene 504304 505912 . + . gene_id "YLR174W"; gene_biotype "protein_coding"; +chrXII SGD transcript 504304 505912 . + . transcript_id "YLR174W_id002"; gene_id "YLR174W"; gene_name "IDP2"; transcript_biotype "protein_coding"; +chrXII SGD exon 504304 505912 . + . transcript_id "YLR174W_id002"; gene_id "YLR174W"; gene_name "IDP2"; +chrXII SGD transcript 504591 505829 . + . transcript_id "YLR174W_id001"; gene_id "YLR174W"; gene_name "IDP2"; transcript_biotype "protein_coding"; +chrXII SGD exon 504591 505829 . + 0 transcript_id "YLR174W_id001"; gene_name "IDP2"; gene_id "YLR174W"; +chrXII SGD gene 506036 507748 . + . gene_id "YLR175W"; gene_biotype "protein_coding"; +chrXII SGD transcript 506036 507748 . + . transcript_id "YLR175W_id003"; gene_id "YLR175W"; gene_name "CBF5"; transcript_biotype "protein_coding"; +chrXII SGD exon 506036 507748 . + . transcript_id "YLR175W_id003"; gene_id "YLR175W"; gene_name "CBF5"; +chrXII SGD transcript 506134 507585 . + . transcript_id "YLR175W_id001"; gene_id "YLR175W"; gene_name "CBF5"; transcript_biotype "protein_coding"; +chrXII SGD exon 506134 507585 . + 0 transcript_id "YLR175W_id001"; gene_name "CBF5"; gene_id "YLR175W"; +chrXII SGD gene 507797 510232 . - . gene_id "YLR176C"; gene_biotype "protein_coding"; +chrXII SGD transcript 507797 510232 . - . transcript_id "YLR176C_mRNA"; gene_id "YLR176C"; gene_name "RFX1"; transcript_biotype "protein_coding"; +chrXII SGD CDS 507797 510232 . - 0 transcript_id "YLR176C_mRNA"; gene_name "RFX1"; gene_id "YLR176C"; +chrXII SGD gene 511054 512940 . + . gene_id "YLR177W"; gene_biotype "protein_coding"; +chrXII SGD transcript 511054 512940 . + . transcript_id "YLR177W_id001"; gene_id "YLR177W"; transcript_biotype "protein_coding"; +chrXII SGD exon 511054 512940 . + 0 transcript_id "YLR177W_id001"; gene_id "YLR177W"; +chrXII SGD gene 513110 514383 . - . gene_id "YLR178C"; gene_biotype "protein_coding"; +chrXII SGD transcript 513110 514383 . - . transcript_id "YLR178C_id001"; gene_id "YLR178C"; gene_name "TFS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 513110 514383 . - . transcript_id "YLR178C_id001"; gene_id "YLR178C"; gene_name "TFS1"; +chrXII SGD transcript 513162 513821 . - . transcript_id "YLR178C_id002"; gene_id "YLR178C"; gene_name "TFS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 513162 513821 . - 0 transcript_id "YLR178C_id002"; gene_name "TFS1"; gene_id "YLR178C"; +chrXII SGD gene 513777 514790 . - . gene_id "YLR179C"; gene_biotype "protein_coding"; +chrXII SGD transcript 513777 514790 . - . transcript_id "YLR179C_id003"; gene_id "YLR179C"; transcript_biotype "protein_coding"; +chrXII SGD exon 513777 514790 . - . transcript_id "YLR179C_id003"; gene_id "YLR179C"; +chrXII SGD transcript 514108 514713 . - . transcript_id "YLR179C_id001"; gene_id "YLR179C"; transcript_biotype "protein_coding"; +chrXII SGD exon 514108 514713 . - 0 transcript_id "YLR179C_id001"; gene_id "YLR179C"; +chrXII SGD gene 515206 516819 . + . gene_id "YLR180W"; gene_biotype "protein_coding"; +chrXII SGD transcript 515206 516819 . + . transcript_id "YLR180W_id002"; gene_id "YLR180W"; gene_name "SAM1"; transcript_biotype "protein_coding"; +chrXII SGD exon 515206 516819 . + . transcript_id "YLR180W_id002"; gene_id "YLR180W"; gene_name "SAM1"; +chrXII SGD transcript 515262 516410 . + . transcript_id "YLR180W_id001"; gene_id "YLR180W"; gene_name "SAM1"; transcript_biotype "protein_coding"; +chrXII SGD exon 515262 516410 . + 0 transcript_id "YLR180W_id001"; gene_name "SAM1"; gene_id "YLR180W"; +chrXII SGD gene 516547 517976 . - . gene_id "YLR181C"; gene_biotype "protein_coding"; +chrXII SGD transcript 516547 517976 . - . transcript_id "YLR181C_id001"; gene_id "YLR181C"; gene_name "VTA1"; transcript_biotype "protein_coding"; +chrXII SGD exon 516547 517976 . - . transcript_id "YLR181C_id001"; gene_id "YLR181C"; gene_name "VTA1"; +chrXII SGD transcript 516678 517670 . - . transcript_id "YLR181C_id003"; gene_id "YLR181C"; gene_name "VTA1"; transcript_biotype "protein_coding"; +chrXII SGD exon 516678 517670 . - 0 transcript_id "YLR181C_id003"; gene_name "VTA1"; gene_id "YLR181C"; +chrXII SGD gene 517893 520531 . + . gene_id "YLR182W"; gene_biotype "protein_coding"; +chrXII SGD transcript 517893 520531 . + . transcript_id "YLR182W_id003"; gene_id "YLR182W"; gene_name "SWI6"; transcript_biotype "protein_coding"; +chrXII SGD exon 517893 520531 . + . transcript_id "YLR182W_id003"; gene_id "YLR182W"; gene_name "SWI6"; +chrXII SGD transcript 517940 520351 . + . transcript_id "YLR182W_id001"; gene_id "YLR182W"; gene_name "SWI6"; transcript_biotype "protein_coding"; +chrXII SGD exon 517940 520351 . + 0 transcript_id "YLR182W_id001"; gene_name "SWI6"; gene_id "YLR182W"; +chrXII SGD gene 520393 522141 . - . gene_id "YLR183C"; gene_biotype "protein_coding"; +chrXII SGD transcript 520393 522141 . - . transcript_id "YLR183C_id001"; gene_id "YLR183C"; gene_name "TOS4"; transcript_biotype "protein_coding"; +chrXII SGD exon 520393 522141 . - . transcript_id "YLR183C_id001"; gene_id "YLR183C"; gene_name "TOS4"; +chrXII SGD transcript 520543 522012 . - . transcript_id "YLR183C_id002"; gene_id "YLR183C"; gene_name "TOS4"; transcript_biotype "protein_coding"; +chrXII SGD exon 520543 522012 . - 0 transcript_id "YLR183C_id002"; gene_name "TOS4"; gene_id "YLR183C"; +chrXII SGD gene 522106 522453 . + . gene_id "YLR184W"; gene_biotype "protein_coding"; +chrXII SGD transcript 522106 522453 . + . transcript_id "YLR184W_mRNA"; gene_id "YLR184W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 522106 522453 . + 0 transcript_id "YLR184W_mRNA"; gene_id "YLR184W"; +chrXII SGD gene 522393 523385 . + . gene_id "YLR185W"; gene_biotype "protein_coding"; +chrXII SGD transcript 522393 523385 . + . transcript_id "YLR185W_id001"; gene_id "YLR185W"; gene_name "RPL37A"; transcript_biotype "protein_coding"; +chrXII SGD exon 522393 523385 . + . transcript_id "YLR185W_id001"; gene_id "YLR185W"; gene_name "RPL37A"; +chrXII SGD transcript 522663 523288 . + . transcript_id "YLR185W_id002"; gene_id "YLR185W"; gene_name "RPL37A"; transcript_biotype "protein_coding"; +chrXII SGD exon 522663 522669 . + 0 transcript_id "YLR185W_id002"; gene_name "RPL37A"; gene_id "YLR185W"; +chrXII SGD exon 523029 523288 . + 2 transcript_id "YLR185W_id002"; gene_name "RPL37A"; gene_id "YLR185W"; +chrXII SGD gene 523491 524584 . + . gene_id "YLR186W"; gene_biotype "protein_coding"; +chrXII SGD transcript 523491 524584 . + . transcript_id "YLR186W_id001"; gene_id "YLR186W"; gene_name "EMG1"; transcript_biotype "protein_coding"; +chrXII SGD exon 523491 524584 . + . transcript_id "YLR186W_id001"; gene_id "YLR186W"; gene_name "EMG1"; +chrXII SGD transcript 523632 524390 . + . transcript_id "YLR186W_id003"; gene_id "YLR186W"; gene_name "EMG1"; transcript_biotype "protein_coding"; +chrXII SGD exon 523632 524390 . + 0 transcript_id "YLR186W_id003"; gene_name "EMG1"; gene_id "YLR186W"; +chrXII SGD gene 524865 527945 . + . gene_id "YLR187W"; gene_biotype "protein_coding"; +chrXII SGD transcript 524865 527945 . + . transcript_id "YLR187W_id001"; gene_id "YLR187W"; gene_name "SKG3"; transcript_biotype "protein_coding"; +chrXII SGD exon 524865 527945 . + 0 transcript_id "YLR187W_id001"; gene_name "SKG3"; gene_id "YLR187W"; +chrXII SGD gene 528227 530719 . + . gene_id "YLR188W"; gene_biotype "protein_coding"; +chrXII SGD transcript 528227 530719 . + . transcript_id "YLR188W_id001"; gene_id "YLR188W"; gene_name "MDL1"; transcript_biotype "protein_coding"; +chrXII SGD exon 528227 530719 . + . transcript_id "YLR188W_id001"; gene_id "YLR188W"; gene_name "MDL1"; +chrXII SGD transcript 528300 530387 . + . transcript_id "YLR188W_id003"; gene_id "YLR188W"; gene_name "MDL1"; transcript_biotype "protein_coding"; +chrXII SGD exon 528300 530387 . + 0 transcript_id "YLR188W_id003"; gene_name "MDL1"; gene_id "YLR188W"; +chrXII SGD gene 530797 534393 . - . gene_id "YLR189C"; gene_biotype "protein_coding"; +chrXII SGD transcript 530797 534393 . - . transcript_id "YLR189C_id001"; gene_id "YLR189C"; gene_name "ATG26"; transcript_biotype "protein_coding"; +chrXII SGD exon 530797 534393 . - 0 transcript_id "YLR189C_id001"; gene_name "ATG26"; gene_id "YLR189C"; +chrXII SGD gene 534787 537098 . + . gene_id "YLR190W"; gene_biotype "protein_coding"; +chrXII SGD transcript 534787 537098 . + . transcript_id "YLR190W_id002"; gene_id "YLR190W"; gene_name "MMR1"; transcript_biotype "protein_coding"; +chrXII SGD exon 534787 537098 . + . transcript_id "YLR190W_id002"; gene_id "YLR190W"; gene_name "MMR1"; +chrXII SGD transcript 535214 536689 . + . transcript_id "YLR190W_id001"; gene_id "YLR190W"; gene_name "MMR1"; transcript_biotype "protein_coding"; +chrXII SGD exon 535214 536689 . + 0 transcript_id "YLR190W_id001"; gene_name "MMR1"; gene_id "YLR190W"; +chrXII SGD gene 537228 538700 . + . gene_id "YLR191W"; gene_biotype "protein_coding"; +chrXII SGD transcript 537228 538700 . + . transcript_id "YLR191W_id004"; gene_id "YLR191W"; gene_name "PEX13"; transcript_biotype "protein_coding"; +chrXII SGD exon 537228 538700 . + . transcript_id "YLR191W_id004"; gene_id "YLR191W"; gene_name "PEX13"; +chrXII SGD transcript 537272 538432 . + . transcript_id "YLR191W_id001"; gene_id "YLR191W"; gene_name "PEX13"; transcript_biotype "protein_coding"; +chrXII SGD exon 537272 538432 . + 0 transcript_id "YLR191W_id001"; gene_name "PEX13"; gene_id "YLR191W"; +chrXII SGD gene 538415 539638 . - . gene_id "YLR192C"; gene_biotype "protein_coding"; +chrXII SGD transcript 538415 539638 . - . transcript_id "YLR192C_id005"; gene_id "YLR192C"; gene_name "HCR1"; transcript_biotype "protein_coding"; +chrXII SGD exon 538415 539638 . - . transcript_id "YLR192C_id005"; gene_id "YLR192C"; gene_name "HCR1"; +chrXII SGD transcript 538792 539589 . - . transcript_id "YLR192C_id001"; gene_id "YLR192C"; gene_name "HCR1"; transcript_biotype "protein_coding"; +chrXII SGD exon 538792 539589 . - 0 transcript_id "YLR192C_id001"; gene_name "HCR1"; gene_id "YLR192C"; +chrXII SGD gene 539824 540607 . - . gene_id "YLR193C"; gene_biotype "protein_coding"; +chrXII SGD transcript 539824 540607 . - . transcript_id "YLR193C_id014"; gene_id "YLR193C"; gene_name "UPS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 539824 540607 . - . transcript_id "YLR193C_id014"; gene_id "YLR193C"; gene_name "UPS1"; +chrXII SGD transcript 540009 540536 . - . transcript_id "YLR193C_id001"; gene_id "YLR193C"; gene_name "UPS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 540009 540536 . - 0 transcript_id "YLR193C_id001"; gene_name "UPS1"; gene_id "YLR193C"; +chrXII SGD gene 540742 541832 . - . gene_id "YLR194C"; gene_biotype "protein_coding"; +chrXII SGD transcript 540742 541832 . - . transcript_id "YLR194C_id001"; gene_id "YLR194C"; gene_name "NCW2"; transcript_biotype "protein_coding"; +chrXII SGD exon 540742 541832 . - . transcript_id "YLR194C_id001"; gene_id "YLR194C"; gene_name "NCW2"; +chrXII SGD transcript 540809 541573 . - . transcript_id "YLR194C_id002"; gene_id "YLR194C"; gene_name "NCW2"; transcript_biotype "protein_coding"; +chrXII SGD exon 540809 541573 . - 0 transcript_id "YLR194C_id002"; gene_name "NCW2"; gene_id "YLR194C"; +chrXII SGD gene 541554 543322 . - . gene_id "YLR195C"; gene_biotype "protein_coding"; +chrXII SGD transcript 541554 543322 . - . transcript_id "YLR195C_id001"; gene_id "YLR195C"; gene_name "NMT1"; transcript_biotype "protein_coding"; +chrXII SGD exon 541554 543322 . - . transcript_id "YLR195C_id001"; gene_id "YLR195C"; gene_name "NMT1"; +chrXII SGD transcript 541937 543304 . - . transcript_id "YLR195C_id003"; gene_id "YLR195C"; gene_name "NMT1"; transcript_biotype "protein_coding"; +chrXII SGD exon 541937 543304 . - 0 transcript_id "YLR195C_id003"; gene_name "NMT1"; gene_id "YLR195C"; +chrXII SGD gene 543890 545913 . + . gene_id "YLR196W"; gene_biotype "protein_coding"; +chrXII SGD transcript 543890 545913 . + . transcript_id "YLR196W_id004"; gene_id "YLR196W"; gene_name "PWP1"; transcript_biotype "protein_coding"; +chrXII SGD exon 543890 545913 . + . transcript_id "YLR196W_id004"; gene_id "YLR196W"; gene_name "PWP1"; +chrXII SGD transcript 543968 545698 . + . transcript_id "YLR196W_id001"; gene_id "YLR196W"; gene_name "PWP1"; transcript_biotype "protein_coding"; +chrXII SGD exon 543968 545698 . + 0 transcript_id "YLR196W_id001"; gene_name "PWP1"; gene_id "YLR196W"; +chrXII SGD gene 546016 547797 . + . gene_id "YLR197W"; gene_biotype "protein_coding"; +chrXII SGD transcript 546016 547797 . + . transcript_id "YLR197W_id002"; gene_id "YLR197W"; gene_name "NOP56"; transcript_biotype "protein_coding"; +chrXII SGD exon 546016 547797 . + . transcript_id "YLR197W_id002"; gene_id "YLR197W"; gene_name "NOP56"; +chrXII SGD transcript 546097 547611 . + . transcript_id "YLR197W_id001"; gene_id "YLR197W"; gene_name "NOP56"; transcript_biotype "protein_coding"; +chrXII SGD exon 546097 547611 . + 0 transcript_id "YLR197W_id001"; gene_name "NOP56"; gene_id "YLR197W"; +chrXII SGD gene 547286 547645 . - . gene_id "YLR198C"; gene_biotype "protein_coding"; +chrXII SGD transcript 547286 547645 . - . transcript_id "YLR198C_mRNA"; gene_id "YLR198C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 547286 547645 . - 0 transcript_id "YLR198C_mRNA"; gene_id "YLR198C"; +chrXII SGD gene 547652 548952 . - . gene_id "YLR199C"; gene_biotype "protein_coding"; +chrXII SGD transcript 547652 548952 . - . transcript_id "YLR199C_id001"; gene_id "YLR199C"; gene_name "PBA1"; transcript_biotype "protein_coding"; +chrXII SGD exon 547652 548952 . - . transcript_id "YLR199C_id001"; gene_id "YLR199C"; gene_name "PBA1"; +chrXII SGD transcript 547853 548769 . - . transcript_id "YLR199C_id004"; gene_id "YLR199C"; gene_name "PBA1"; transcript_biotype "protein_coding"; +chrXII SGD exon 547853 548677 . - 0 transcript_id "YLR199C_id004"; gene_name "PBA1"; gene_id "YLR199C"; +chrXII SGD exon 548764 548769 . - 0 transcript_id "YLR199C_id004"; gene_name "PBA1"; gene_id "YLR199C"; +chrXII SGD gene 548971 549707 . + . gene_id "YLR200W"; gene_biotype "protein_coding"; +chrXII SGD transcript 548971 549707 . + . transcript_id "YLR200W_id003"; gene_id "YLR200W"; gene_name "YKE2"; transcript_biotype "protein_coding"; +chrXII SGD exon 548971 549707 . + . transcript_id "YLR200W_id003"; gene_id "YLR200W"; gene_name "YKE2"; +chrXII SGD transcript 549012 549356 . + . transcript_id "YLR200W_id001"; gene_id "YLR200W"; gene_name "YKE2"; transcript_biotype "protein_coding"; +chrXII SGD exon 549012 549356 . + 0 transcript_id "YLR200W_id001"; gene_name "YKE2"; gene_id "YLR200W"; +chrXII SGD gene 549114 550303 . - . gene_id "YLR201C"; gene_biotype "protein_coding"; +chrXII SGD transcript 549114 550303 . - . transcript_id "YLR201C_id001"; gene_id "YLR201C"; gene_name "COQ9"; transcript_biotype "protein_coding"; +chrXII SGD exon 549114 550303 . - . transcript_id "YLR201C_id001"; gene_id "YLR201C"; gene_name "COQ9"; +chrXII SGD transcript 549511 550293 . - . transcript_id "YLR201C_id002"; gene_id "YLR201C"; gene_name "COQ9"; transcript_biotype "protein_coding"; +chrXII SGD exon 549511 550293 . - 0 transcript_id "YLR201C_id002"; gene_name "COQ9"; gene_id "YLR201C"; +chrXII SGD gene 550194 550636 . - . gene_id "YLR202C"; gene_biotype "protein_coding"; +chrXII SGD transcript 550194 550636 . - . transcript_id "YLR202C_mRNA"; gene_id "YLR202C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 550194 550458 . - 1 transcript_id "YLR202C_mRNA"; gene_id "YLR202C"; +chrXII SGD CDS 550575 550636 . - 0 transcript_id "YLR202C_mRNA"; gene_id "YLR202C"; +chrXII SGD gene 550282 552026 . - . gene_id "YLR203C"; gene_biotype "protein_coding"; +chrXII SGD transcript 550282 552026 . - . transcript_id "YLR203C_id002"; gene_id "YLR203C"; gene_name "MSS51"; transcript_biotype "protein_coding"; +chrXII SGD exon 550282 552026 . - . transcript_id "YLR203C_id002"; gene_id "YLR203C"; gene_name "MSS51"; +chrXII SGD transcript 550650 551960 . - . transcript_id "YLR203C_id001"; gene_id "YLR203C"; gene_name "MSS51"; transcript_biotype "protein_coding"; +chrXII SGD exon 550650 551960 . - 0 transcript_id "YLR203C_id001"; gene_name "MSS51"; gene_id "YLR203C"; +chrXII SGD gene 552207 552767 . + . gene_id "YLR204W"; gene_biotype "protein_coding"; +chrXII SGD transcript 552207 552767 . + . transcript_id "YLR204W_id002"; gene_id "YLR204W"; gene_name "QRI5"; transcript_biotype "protein_coding"; +chrXII SGD exon 552207 552767 . + . transcript_id "YLR204W_id002"; gene_id "YLR204W"; gene_name "QRI5"; +chrXII SGD transcript 552270 552605 . + . transcript_id "YLR204W_id001"; gene_id "YLR204W"; gene_name "QRI5"; transcript_biotype "protein_coding"; +chrXII SGD exon 552270 552605 . + 0 transcript_id "YLR204W_id001"; gene_name "QRI5"; gene_id "YLR204W"; +chrXII SGD gene 552660 553817 . - . gene_id "YLR205C"; gene_biotype "protein_coding"; +chrXII SGD transcript 552660 553817 . - . transcript_id "YLR205C_id004"; gene_id "YLR205C"; gene_name "HMX1"; transcript_biotype "protein_coding"; +chrXII SGD exon 552660 553817 . - . transcript_id "YLR205C_id004"; gene_id "YLR205C"; gene_name "HMX1"; +chrXII SGD transcript 552724 553677 . - . transcript_id "YLR205C_id001"; gene_id "YLR205C"; gene_name "HMX1"; transcript_biotype "protein_coding"; +chrXII SGD exon 552724 553677 . - 0 transcript_id "YLR205C_id001"; gene_name "HMX1"; gene_id "YLR205C"; +chrXII SGD gene 554578 556419 . + . gene_id "YLR206W"; gene_biotype "protein_coding"; +chrXII SGD transcript 554578 556419 . + . transcript_id "YLR206W_mRNA"; gene_id "YLR206W"; gene_name "ENT2"; transcript_biotype "protein_coding"; +chrXII SGD CDS 554578 556419 . + 0 transcript_id "YLR206W_mRNA"; gene_name "ENT2"; gene_id "YLR206W"; +chrXII SGD gene 556728 559365 . + . gene_id "YLR207W"; gene_biotype "protein_coding"; +chrXII SGD transcript 556728 559365 . + . transcript_id "YLR207W_id001"; gene_id "YLR207W"; gene_name "HRD3"; transcript_biotype "protein_coding"; +chrXII SGD exon 556728 559365 . + . transcript_id "YLR207W_id001"; gene_id "YLR207W"; gene_name "HRD3"; +chrXII SGD transcript 556788 559289 . + . transcript_id "YLR207W_id002"; gene_id "YLR207W"; gene_name "HRD3"; transcript_biotype "protein_coding"; +chrXII SGD exon 556788 559289 . + 0 transcript_id "YLR207W_id002"; gene_name "HRD3"; gene_id "YLR207W"; +chrXII SGD gene 559030 560808 . + . gene_id "YLR208W"; gene_biotype "protein_coding"; +chrXII SGD transcript 559030 560808 . + . transcript_id "YLR208W_id002"; gene_id "YLR208W"; gene_name "SEC13"; transcript_biotype "protein_coding"; +chrXII SGD exon 559030 560808 . + . transcript_id "YLR208W_id002"; gene_id "YLR208W"; gene_name "SEC13"; +chrXII SGD transcript 559551 560444 . + . transcript_id "YLR208W_id001"; gene_id "YLR208W"; gene_name "SEC13"; transcript_biotype "protein_coding"; +chrXII SGD exon 559551 560444 . + 0 transcript_id "YLR208W_id001"; gene_name "SEC13"; gene_id "YLR208W"; +chrXII SGD gene 560612 561834 . - . gene_id "YLR209C"; gene_biotype "protein_coding"; +chrXII SGD transcript 560612 561834 . - . transcript_id "YLR209C_id001"; gene_id "YLR209C"; gene_name "PNP1"; transcript_biotype "protein_coding"; +chrXII SGD exon 560612 561834 . - . transcript_id "YLR209C_id001"; gene_id "YLR209C"; gene_name "PNP1"; +chrXII SGD transcript 560797 561732 . - . transcript_id "YLR209C_id003"; gene_id "YLR209C"; gene_name "PNP1"; transcript_biotype "protein_coding"; +chrXII SGD exon 560797 561732 . - 0 transcript_id "YLR209C_id003"; gene_name "PNP1"; gene_id "YLR209C"; +chrXII SGD gene 561940 563570 . + . gene_id "YLR210W"; gene_biotype "protein_coding"; +chrXII SGD transcript 561940 563570 . + . transcript_id "YLR210W_id002"; gene_id "YLR210W"; gene_name "CLB4"; transcript_biotype "protein_coding"; +chrXII SGD exon 561940 563570 . + . transcript_id "YLR210W_id002"; gene_id "YLR210W"; gene_name "CLB4"; +chrXII SGD transcript 562008 563390 . + . transcript_id "YLR210W_id001"; gene_id "YLR210W"; gene_name "CLB4"; transcript_biotype "protein_coding"; +chrXII SGD exon 562008 563390 . + 0 transcript_id "YLR210W_id001"; gene_name "CLB4"; gene_id "YLR210W"; +chrXII SGD gene 563453 564643 . - . gene_id "YLR211C"; gene_biotype "protein_coding"; +chrXII SGD transcript 563453 564643 . - . transcript_id "YLR211C_id002"; gene_id "YLR211C"; gene_name "ATG38"; transcript_biotype "protein_coding"; +chrXII SGD exon 563453 564643 . - . transcript_id "YLR211C_id002"; gene_id "YLR211C"; gene_name "ATG38"; +chrXII SGD transcript 563792 564531 . - . transcript_id "YLR211C_id001"; gene_id "YLR211C"; gene_name "ATG38"; transcript_biotype "protein_coding"; +chrXII SGD exon 563792 564454 . - 0 transcript_id "YLR211C_id001"; gene_name "ATG38"; gene_id "YLR211C"; +chrXII SGD exon 564514 564531 . - 0 transcript_id "YLR211C_id001"; gene_name "ATG38"; gene_id "YLR211C"; +chrXII SGD gene 564695 566326 . - . gene_id "YLR212C"; gene_biotype "protein_coding"; +chrXII SGD transcript 564695 566326 . - . transcript_id "YLR212C_id002"; gene_id "YLR212C"; gene_name "TUB4"; transcript_biotype "protein_coding"; +chrXII SGD exon 564695 566326 . - . transcript_id "YLR212C_id002"; gene_id "YLR212C"; gene_name "TUB4"; +chrXII SGD transcript 564860 566281 . - . transcript_id "YLR212C_id001"; gene_id "YLR212C"; gene_name "TUB4"; transcript_biotype "protein_coding"; +chrXII SGD exon 564860 566281 . - 0 transcript_id "YLR212C_id001"; gene_name "TUB4"; gene_id "YLR212C"; +chrXII SGD gene 566535 568435 . - . gene_id "YLR213C"; gene_biotype "protein_coding"; +chrXII SGD transcript 566535 568435 . - . transcript_id "YLR213C_id001"; gene_id "YLR213C"; gene_name "CRR1"; transcript_biotype "protein_coding"; +chrXII SGD exon 566535 568435 . - . transcript_id "YLR213C_id001"; gene_id "YLR213C"; gene_name "CRR1"; +chrXII SGD transcript 566654 567922 . - . transcript_id "YLR213C_id002"; gene_id "YLR213C"; gene_name "CRR1"; transcript_biotype "protein_coding"; +chrXII SGD exon 566654 567922 . - 0 transcript_id "YLR213C_id002"; gene_name "CRR1"; gene_id "YLR213C"; +chrXII SGD gene 568470 570771 . + . gene_id "YLR214W"; gene_biotype "protein_coding"; +chrXII SGD transcript 568470 570771 . + . transcript_id "YLR214W_id004"; gene_id "YLR214W"; gene_name "FRE1"; transcript_biotype "protein_coding"; +chrXII SGD exon 568470 570771 . + . transcript_id "YLR214W_id004"; gene_id "YLR214W"; gene_name "FRE1"; +chrXII SGD transcript 568567 570627 . + . transcript_id "YLR214W_id001"; gene_id "YLR214W"; gene_name "FRE1"; transcript_biotype "protein_coding"; +chrXII SGD exon 568567 570627 . + 0 transcript_id "YLR214W_id001"; gene_name "FRE1"; gene_id "YLR214W"; +chrXII SGD gene 570649 571919 . - . gene_id "YLR215C"; gene_biotype "protein_coding"; +chrXII SGD transcript 570649 571919 . - . transcript_id "YLR215C_id003"; gene_id "YLR215C"; gene_name "CDC123"; transcript_biotype "protein_coding"; +chrXII SGD exon 570649 571919 . - . transcript_id "YLR215C_id003"; gene_id "YLR215C"; gene_name "CDC123"; +chrXII SGD transcript 570776 571858 . - . transcript_id "YLR215C_id001"; gene_id "YLR215C"; gene_name "CDC123"; transcript_biotype "protein_coding"; +chrXII SGD exon 570776 571858 . - 0 transcript_id "YLR215C_id001"; gene_name "CDC123"; gene_id "YLR215C"; +chrXII SGD gene 571984 573312 . - . gene_id "YLR216C"; gene_biotype "protein_coding"; +chrXII SGD transcript 571984 573312 . - . transcript_id "YLR216C_id001"; gene_id "YLR216C"; gene_name "CPR6"; transcript_biotype "protein_coding"; +chrXII SGD exon 571984 573312 . - . transcript_id "YLR216C_id001"; gene_id "YLR216C"; gene_name "CPR6"; +chrXII SGD transcript 572096 573211 . - . transcript_id "YLR216C_id003"; gene_id "YLR216C"; gene_name "CPR6"; transcript_biotype "protein_coding"; +chrXII SGD exon 572096 573211 . - 0 transcript_id "YLR216C_id003"; gene_name "CPR6"; gene_id "YLR216C"; +chrXII SGD gene 572909 573232 . + . gene_id "YLR217W"; gene_biotype "protein_coding"; +chrXII SGD transcript 572909 573232 . + . transcript_id "YLR217W_id001"; gene_id "YLR217W"; transcript_biotype "protein_coding"; +chrXII SGD exon 572909 573232 . + 0 transcript_id "YLR217W_id001"; gene_id "YLR217W"; +chrXII SGD gene 573466 573918 . - . gene_id "YLR218C"; gene_biotype "protein_coding"; +chrXII SGD transcript 573466 573918 . - . transcript_id "YLR218C_id001"; gene_id "YLR218C"; gene_name "COA4"; transcript_biotype "protein_coding"; +chrXII SGD exon 573466 573918 . - 0 transcript_id "YLR218C_id001"; gene_name "COA4"; gene_id "YLR218C"; +chrXII SGD gene 573956 576681 . + . gene_id "YLR219W"; gene_biotype "protein_coding"; +chrXII SGD transcript 573956 576681 . + . transcript_id "YLR219W_id001"; gene_id "YLR219W"; gene_name "MSC3"; transcript_biotype "protein_coding"; +chrXII SGD exon 573956 576681 . + . transcript_id "YLR219W_id001"; gene_id "YLR219W"; gene_name "MSC3"; +chrXII SGD transcript 574151 576337 . + . transcript_id "YLR219W_id003"; gene_id "YLR219W"; gene_name "MSC3"; transcript_biotype "protein_coding"; +chrXII SGD exon 574151 576337 . + 0 transcript_id "YLR219W_id003"; gene_name "MSC3"; gene_id "YLR219W"; +chrXII SGD gene 576664 578371 . + . gene_id "YLR220W"; gene_biotype "protein_coding"; +chrXII SGD transcript 576664 578371 . + . transcript_id "YLR220W_id001"; gene_id "YLR220W"; gene_name "CCC1"; transcript_biotype "protein_coding"; +chrXII SGD exon 576664 578371 . + . transcript_id "YLR220W_id001"; gene_id "YLR220W"; gene_name "CCC1"; +chrXII SGD transcript 576825 577793 . + . transcript_id "YLR220W_id003"; gene_id "YLR220W"; gene_name "CCC1"; transcript_biotype "protein_coding"; +chrXII SGD exon 576825 577793 . + 0 transcript_id "YLR220W_id003"; gene_name "CCC1"; gene_id "YLR220W"; +chrXII SGD gene 578127 579132 . - . gene_id "YLR221C"; gene_biotype "protein_coding"; +chrXII SGD transcript 578127 579132 . - . transcript_id "YLR221C_id002"; gene_id "YLR221C"; gene_name "RSA3"; transcript_biotype "protein_coding"; +chrXII SGD exon 578127 579132 . - . transcript_id "YLR221C_id002"; gene_id "YLR221C"; gene_name "RSA3"; +chrXII SGD transcript 578362 579024 . - . transcript_id "YLR221C_id001"; gene_id "YLR221C"; gene_name "RSA3"; transcript_biotype "protein_coding"; +chrXII SGD exon 578362 579024 . - 0 transcript_id "YLR221C_id001"; gene_name "RSA3"; gene_id "YLR221C"; +chrXII SGD gene 579220 581816 . - . gene_id "YLR222C"; gene_biotype "protein_coding"; +chrXII SGD transcript 579220 581816 . - . transcript_id "YLR222C_id002"; gene_id "YLR222C"; gene_name "UTP13"; transcript_biotype "protein_coding"; +chrXII SGD exon 579220 581816 . - . transcript_id "YLR222C_id002"; gene_id "YLR222C"; gene_name "UTP13"; +chrXII SGD transcript 579318 581771 . - . transcript_id "YLR222C_id001"; gene_id "YLR222C"; gene_name "UTP13"; transcript_biotype "protein_coding"; +chrXII SGD exon 579318 581771 . - 0 transcript_id "YLR222C_id001"; gene_name "UTP13"; gene_id "YLR222C"; +chrXII SGD gene 582006 582236 . - . gene_id "YLR222C-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 582006 582236 . - . transcript_id "YLR222C-A_mRNA"; gene_id "YLR222C-A"; transcript_biotype "protein_coding"; +chrXII SGD CDS 582006 582236 . - 0 transcript_id "YLR222C-A_mRNA"; gene_id "YLR222C-A"; +chrXII SGD gene 582233 585490 . - . gene_id "YLR223C"; gene_biotype "protein_coding"; +chrXII SGD transcript 582233 585490 . - . transcript_id "YLR223C_mRNA"; gene_id "YLR223C"; gene_name "IFH1"; transcript_biotype "protein_coding"; +chrXII SGD CDS 582233 585490 . - 0 transcript_id "YLR223C_mRNA"; gene_name "IFH1"; gene_id "YLR223C"; +chrXII SGD gene 585867 587658 . + . gene_id "YLR224W"; gene_biotype "protein_coding"; +chrXII SGD transcript 585867 587658 . + . transcript_id "YLR224W_id001"; gene_id "YLR224W"; gene_name "UCC1"; transcript_biotype "protein_coding"; +chrXII SGD exon 585867 587658 . + . transcript_id "YLR224W_id001"; gene_id "YLR224W"; gene_name "UCC1"; +chrXII SGD transcript 586464 587573 . + . transcript_id "YLR224W_id005"; gene_id "YLR224W"; gene_name "UCC1"; transcript_biotype "protein_coding"; +chrXII SGD exon 586464 587573 . + 0 transcript_id "YLR224W_id005"; gene_name "UCC1"; gene_id "YLR224W"; +chrXII SGD gene 587695 588918 . - . gene_id "YLR225C"; gene_biotype "protein_coding"; +chrXII SGD transcript 587695 588918 . - . transcript_id "YLR225C_id001"; gene_id "YLR225C"; transcript_biotype "protein_coding"; +chrXII SGD exon 587695 588918 . - 0 transcript_id "YLR225C_id001"; gene_id "YLR225C"; +chrXII SGD gene 589305 591152 . + . gene_id "YLR226W"; gene_biotype "protein_coding"; +chrXII SGD transcript 589305 591152 . + . transcript_id "YLR226W_id002"; gene_id "YLR226W"; gene_name "BUR2"; transcript_biotype "protein_coding"; +chrXII SGD exon 589305 591152 . + . transcript_id "YLR226W_id002"; gene_id "YLR226W"; gene_name "BUR2"; +chrXII SGD transcript 589354 590541 . + . transcript_id "YLR226W_id001"; gene_id "YLR226W"; gene_name "BUR2"; transcript_biotype "protein_coding"; +chrXII SGD exon 589354 590541 . + 0 transcript_id "YLR226W_id001"; gene_name "BUR2"; gene_id "YLR226W"; +chrXII SGD gene 590562 592043 . - . gene_id "YLR227C"; gene_biotype "protein_coding"; +chrXII SGD transcript 590562 592043 . - . transcript_id "YLR227C_mRNA"; gene_id "YLR227C"; gene_name "ADY4"; transcript_biotype "protein_coding"; +chrXII SGD CDS 590562 592043 . - 0 transcript_id "YLR227C_mRNA"; gene_name "ADY4"; gene_id "YLR227C"; +chrXII SGD gene 592519 592619 . - . gene_id "YNCL0032C"; gene_biotype "ncRNA"; +chrXII SGD transcript 592519 592619 . - . transcript_id "YNCL0032C_tRNA"; gene_id "YNCL0032C"; transcript_biotype "ncRNA"; +chrXII SGD exon 592519 592562 . - . transcript_id "YNCL0032C_tRNA"; gene_id "YNCL0032C"; +chrXII SGD exon 592582 592619 . - . transcript_id "YNCL0032C_tRNA"; gene_id "YNCL0032C"; +chrXII SGD gene 593438 594760 . + . gene_id "YLR227W-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 593438 594760 . + . transcript_id "YLR227W-A_dummy"; gene_id "YLR227W-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 593438 594760 . + 0 transcript_id "YLR227W-A_dummy"; gene_id "YLR227W-A"; +chrXII SGD gene 593438 598706 . + . gene_id "YLR227W-B"; gene_biotype "protein_coding"; +chrXII SGD transcript 593438 598706 . + . transcript_id "YLR227W-B_dummy"; gene_id "YLR227W-B"; transcript_biotype "protein_coding"; +chrXII SGD exon 593438 594742 . + 0 transcript_id "YLR227W-B_dummy"; gene_id "YLR227W-B"; +chrXII SGD exon 594744 598706 . + 0 transcript_id "YLR227W-B_dummy"; gene_id "YLR227W-B"; +chrXII SGD gene 599803 602655 . - . gene_id "YLR228C"; gene_biotype "protein_coding"; +chrXII SGD transcript 599803 602655 . - . transcript_id "YLR228C_id001"; gene_id "YLR228C"; gene_name "ECM22"; transcript_biotype "protein_coding"; +chrXII SGD exon 599803 602655 . - . transcript_id "YLR228C_id001"; gene_id "YLR228C"; gene_name "ECM22"; +chrXII SGD transcript 600019 602463 . - . transcript_id "YLR228C_id002"; gene_id "YLR228C"; gene_name "ECM22"; transcript_biotype "protein_coding"; +chrXII SGD exon 600019 602463 . - 0 transcript_id "YLR228C_id002"; gene_name "ECM22"; gene_id "YLR228C"; +chrXII SGD gene 603083 604889 . - . gene_id "YLR229C"; gene_biotype "protein_coding"; +chrXII SGD transcript 603083 604889 . - . transcript_id "YLR229C_id001"; gene_id "YLR229C"; gene_name "CDC42"; transcript_biotype "protein_coding"; +chrXII SGD exon 603083 604889 . - . transcript_id "YLR229C_id001"; gene_id "YLR229C"; gene_name "CDC42"; +chrXII SGD transcript 604212 604787 . - . transcript_id "YLR229C_id002"; gene_id "YLR229C"; gene_name "CDC42"; transcript_biotype "protein_coding"; +chrXII SGD exon 604212 604787 . - 0 transcript_id "YLR229C_id002"; gene_name "CDC42"; gene_id "YLR229C"; +chrXII SGD gene 604574 604879 . + . gene_id "YLR230W"; gene_biotype "protein_coding"; +chrXII SGD transcript 604574 604879 . + . transcript_id "YLR230W_mRNA"; gene_id "YLR230W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 604574 604879 . + 0 transcript_id "YLR230W_mRNA"; gene_id "YLR230W"; +chrXII SGD gene 605300 605432 . - . gene_id "YNCL0033C"; gene_biotype "ncRNA"; +chrXII SGD transcript 605300 605432 . - . transcript_id "YNCL0033C_tRNA"; gene_id "YNCL0033C"; transcript_biotype "ncRNA"; +chrXII SGD exon 605300 605335 . - . transcript_id "YNCL0033C_tRNA"; gene_id "YNCL0033C"; +chrXII SGD exon 605396 605432 . - . transcript_id "YNCL0033C_tRNA"; gene_id "YNCL0033C"; +chrXII SGD gene 605676 607261 . - . gene_id "YLR231C"; gene_biotype "protein_coding"; +chrXII SGD transcript 605676 607261 . - . transcript_id "YLR231C_id004"; gene_id "YLR231C"; gene_name "BNA5"; transcript_biotype "protein_coding"; +chrXII SGD exon 605676 607261 . - . transcript_id "YLR231C_id004"; gene_id "YLR231C"; gene_name "BNA5"; +chrXII SGD transcript 605758 607119 . - . transcript_id "YLR231C_id001"; gene_id "YLR231C"; gene_name "BNA5"; transcript_biotype "protein_coding"; +chrXII SGD exon 605758 607119 . - 0 transcript_id "YLR231C_id001"; gene_name "BNA5"; gene_id "YLR231C"; +chrXII SGD gene 606830 607177 . + . gene_id "YLR232W"; gene_biotype "protein_coding"; +chrXII SGD transcript 606830 607177 . + . transcript_id "YLR232W_mRNA"; gene_id "YLR232W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 606830 607177 . + 0 transcript_id "YLR232W_mRNA"; gene_id "YLR232W"; +chrXII SGD gene 607425 609524 . - . gene_id "YLR233C"; gene_biotype "protein_coding"; +chrXII SGD transcript 607425 609524 . - . transcript_id "YLR233C_id001"; gene_id "YLR233C"; gene_name "EST1"; transcript_biotype "protein_coding"; +chrXII SGD exon 607425 609524 . - 0 transcript_id "YLR233C_id001"; gene_name "EST1"; gene_id "YLR233C"; +chrXII SGD gene 609716 612284 . + . gene_id "YLR234W"; gene_biotype "protein_coding"; +chrXII SGD transcript 609716 612284 . + . transcript_id "YLR234W_id001"; gene_id "YLR234W"; gene_name "TOP3"; transcript_biotype "protein_coding"; +chrXII SGD exon 609716 612284 . + . transcript_id "YLR234W_id001"; gene_id "YLR234W"; gene_name "TOP3"; +chrXII SGD transcript 609783 611753 . + . transcript_id "YLR234W_id002"; gene_id "YLR234W"; gene_name "TOP3"; transcript_biotype "protein_coding"; +chrXII SGD exon 609783 611753 . + 0 transcript_id "YLR234W_id002"; gene_name "TOP3"; gene_id "YLR234W"; +chrXII SGD gene 611532 611930 . - . gene_id "YLR235C"; gene_biotype "protein_coding"; +chrXII SGD transcript 611532 611930 . - . transcript_id "YLR235C_mRNA"; gene_id "YLR235C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 611532 611930 . - 0 transcript_id "YLR235C_mRNA"; gene_id "YLR235C"; +chrXII SGD gene 611794 612117 . - . gene_id "YLR236C"; gene_biotype "protein_coding"; +chrXII SGD transcript 611794 612117 . - . transcript_id "YLR236C_mRNA"; gene_id "YLR236C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 611794 612117 . - 0 transcript_id "YLR236C_mRNA"; gene_id "YLR236C"; +chrXII SGD gene 612232 614349 . + . gene_id "YLR237W"; gene_biotype "protein_coding"; +chrXII SGD transcript 612232 614349 . + . transcript_id "YLR237W_id003"; gene_id "YLR237W"; gene_name "THI7"; transcript_biotype "protein_coding"; +chrXII SGD exon 612232 614349 . + . transcript_id "YLR237W_id003"; gene_id "YLR237W"; gene_name "THI7"; +chrXII SGD transcript 612367 614163 . + . transcript_id "YLR237W_id001"; gene_id "YLR237W"; gene_name "THI7"; transcript_biotype "protein_coding"; +chrXII SGD exon 612367 614163 . + 0 transcript_id "YLR237W_id001"; gene_name "THI7"; gene_id "YLR237W"; +chrXII SGD gene 614755 616191 . + . gene_id "YLR238W"; gene_biotype "protein_coding"; +chrXII SGD transcript 614755 616191 . + . transcript_id "YLR238W_id001"; gene_id "YLR238W"; gene_name "FAR10"; transcript_biotype "protein_coding"; +chrXII SGD exon 614755 616191 . + 0 transcript_id "YLR238W_id001"; gene_name "FAR10"; gene_id "YLR238W"; +chrXII SGD gene 616136 617348 . - . gene_id "YLR239C"; gene_biotype "protein_coding"; +chrXII SGD transcript 616136 617348 . - . transcript_id "YLR239C_id001"; gene_id "YLR239C"; gene_name "LIP2"; transcript_biotype "protein_coding"; +chrXII SGD exon 616136 617348 . - . transcript_id "YLR239C_id001"; gene_id "YLR239C"; gene_name "LIP2"; +chrXII SGD transcript 616332 617318 . - . transcript_id "YLR239C_id002"; gene_id "YLR239C"; gene_name "LIP2"; transcript_biotype "protein_coding"; +chrXII SGD exon 616332 617318 . - 0 transcript_id "YLR239C_id002"; gene_name "LIP2"; gene_id "YLR239C"; +chrXII SGD gene 617500 620325 . + . gene_id "YLR240W"; gene_biotype "protein_coding"; +chrXII SGD transcript 617500 620325 . + . transcript_id "YLR240W_id001"; gene_id "YLR240W"; gene_name "VPS34"; transcript_biotype "protein_coding"; +chrXII SGD exon 617500 620325 . + . transcript_id "YLR240W_id001"; gene_id "YLR240W"; gene_name "VPS34"; +chrXII SGD transcript 617533 620160 . + . transcript_id "YLR240W_id003"; gene_id "YLR240W"; gene_name "VPS34"; transcript_biotype "protein_coding"; +chrXII SGD exon 617533 620160 . + 0 transcript_id "YLR240W_id003"; gene_name "VPS34"; gene_id "YLR240W"; +chrXII SGD gene 620432 622975 . + . gene_id "YLR241W"; gene_biotype "protein_coding"; +chrXII SGD transcript 620432 622975 . + . transcript_id "YLR241W_id003"; gene_id "YLR241W"; gene_name "CSC1"; transcript_biotype "protein_coding"; +chrXII SGD exon 620432 622975 . + . transcript_id "YLR241W_id003"; gene_id "YLR241W"; gene_name "CSC1"; +chrXII SGD transcript 620473 622821 . + . transcript_id "YLR241W_id001"; gene_id "YLR241W"; gene_name "CSC1"; transcript_biotype "protein_coding"; +chrXII SGD exon 620473 622821 . + 0 transcript_id "YLR241W_id001"; gene_name "CSC1"; gene_id "YLR241W"; +chrXII SGD gene 622773 623963 . - . gene_id "YLR242C"; gene_biotype "protein_coding"; +chrXII SGD transcript 622773 623963 . - . transcript_id "YLR242C_id001"; gene_id "YLR242C"; gene_name "ARV1"; transcript_biotype "protein_coding"; +chrXII SGD exon 622773 623963 . - . transcript_id "YLR242C_id001"; gene_id "YLR242C"; gene_name "ARV1"; +chrXII SGD transcript 622918 623883 . - . transcript_id "YLR242C_id002"; gene_id "YLR242C"; gene_name "ARV1"; transcript_biotype "protein_coding"; +chrXII SGD exon 622918 623883 . - 0 transcript_id "YLR242C_id002"; gene_name "ARV1"; gene_id "YLR242C"; +chrXII SGD gene 624111 625190 . + . gene_id "YLR243W"; gene_biotype "protein_coding"; +chrXII SGD transcript 624111 625190 . + . transcript_id "YLR243W_id001"; gene_id "YLR243W"; gene_name "GPN3"; transcript_biotype "protein_coding"; +chrXII SGD exon 624111 625190 . + . transcript_id "YLR243W_id001"; gene_id "YLR243W"; gene_name "GPN3"; +chrXII SGD transcript 624203 625021 . + . transcript_id "YLR243W_id003"; gene_id "YLR243W"; gene_name "GPN3"; transcript_biotype "protein_coding"; +chrXII SGD exon 624203 625021 . + 0 transcript_id "YLR243W_id003"; gene_name "GPN3"; gene_id "YLR243W"; +chrXII SGD gene 625112 626915 . - . gene_id "YLR244C"; gene_biotype "protein_coding"; +chrXII SGD transcript 625112 626915 . - . transcript_id "YLR244C_id001"; gene_id "YLR244C"; gene_name "MAP1"; transcript_biotype "protein_coding"; +chrXII SGD exon 625112 626915 . - . transcript_id "YLR244C_id001"; gene_id "YLR244C"; gene_name "MAP1"; +chrXII SGD transcript 625168 626331 . - . transcript_id "YLR244C_id004"; gene_id "YLR244C"; gene_name "MAP1"; transcript_biotype "protein_coding"; +chrXII SGD exon 625168 626331 . - 0 transcript_id "YLR244C_id004"; gene_name "MAP1"; gene_id "YLR244C"; +chrXII SGD gene 626315 626994 . - . gene_id "YLR245C"; gene_biotype "protein_coding"; +chrXII SGD transcript 626315 626994 . - . transcript_id "YLR245C_id004"; gene_id "YLR245C"; gene_name "CDD1"; transcript_biotype "protein_coding"; +chrXII SGD exon 626315 626994 . - . transcript_id "YLR245C_id004"; gene_id "YLR245C"; gene_name "CDD1"; +chrXII SGD transcript 626502 626930 . - . transcript_id "YLR245C_id001"; gene_id "YLR245C"; gene_name "CDD1"; transcript_biotype "protein_coding"; +chrXII SGD exon 626502 626930 . - 0 transcript_id "YLR245C_id001"; gene_name "CDD1"; gene_id "YLR245C"; +chrXII SGD gene 626770 628267 . + . gene_id "YLR246W"; gene_biotype "protein_coding"; +chrXII SGD transcript 626770 628267 . + . transcript_id "YLR246W_id002"; gene_id "YLR246W"; gene_name "ERF2"; transcript_biotype "protein_coding"; +chrXII SGD exon 626770 628267 . + . transcript_id "YLR246W_id002"; gene_id "YLR246W"; gene_name "ERF2"; +chrXII SGD transcript 627118 628197 . + . transcript_id "YLR246W_id001"; gene_id "YLR246W"; gene_name "ERF2"; transcript_biotype "protein_coding"; +chrXII SGD exon 627118 628197 . + 0 transcript_id "YLR246W_id001"; gene_name "ERF2"; gene_id "YLR246W"; +chrXII SGD gene 628383 628497 . + . gene_id "YNCL0034W"; gene_biotype "ncRNA"; +chrXII SGD transcript 628383 628497 . + . transcript_id "YNCL0034W_tRNA"; gene_id "YNCL0034W"; transcript_biotype "ncRNA"; +chrXII SGD exon 628383 628420 . + . transcript_id "YNCL0034W_tRNA"; gene_id "YNCL0034W"; +chrXII SGD exon 628454 628497 . + . transcript_id "YNCL0034W_tRNA"; gene_id "YNCL0034W"; +chrXII SGD gene 628684 633354 . - . gene_id "YLR247C"; gene_biotype "protein_coding"; +chrXII SGD transcript 628684 633354 . - . transcript_id "YLR247C_mRNA"; gene_id "YLR247C"; gene_name "IRC20"; transcript_biotype "protein_coding"; +chrXII SGD CDS 628684 633354 . - 0 transcript_id "YLR247C_mRNA"; gene_name "IRC20"; gene_id "YLR247C"; +chrXII SGD gene 633587 636216 . + . gene_id "YLR248W"; gene_biotype "protein_coding"; +chrXII SGD transcript 633587 636216 . + . transcript_id "YLR248W_id002"; gene_id "YLR248W"; gene_name "RCK2"; transcript_biotype "protein_coding"; +chrXII SGD exon 633587 636216 . + . transcript_id "YLR248W_id002"; gene_id "YLR248W"; gene_name "RCK2"; +chrXII SGD transcript 634252 636084 . + . transcript_id "YLR248W_id001"; gene_id "YLR248W"; gene_name "RCK2"; transcript_biotype "protein_coding"; +chrXII SGD exon 634252 636084 . + 0 transcript_id "YLR248W_id001"; gene_name "RCK2"; gene_id "YLR248W"; +chrXII SGD gene 636714 640084 . + . gene_id "YLR249W"; gene_biotype "protein_coding"; +chrXII SGD transcript 636714 640084 . + . transcript_id "YLR249W_id002"; gene_id "YLR249W"; gene_name "YEF3"; transcript_biotype "protein_coding"; +chrXII SGD exon 636714 640084 . + . transcript_id "YLR249W_id002"; gene_id "YLR249W"; gene_name "YEF3"; +chrXII SGD transcript 636780 639914 . + . transcript_id "YLR249W_id001"; gene_id "YLR249W"; gene_name "YEF3"; transcript_biotype "protein_coding"; +chrXII SGD exon 636780 639914 . + 0 transcript_id "YLR249W_id001"; gene_name "YEF3"; gene_id "YLR249W"; +chrXII SGD gene 640264 641311 . + . gene_id "YLR250W"; gene_biotype "protein_coding"; +chrXII SGD transcript 640264 641311 . + . transcript_id "YLR250W_id004"; gene_id "YLR250W"; gene_name "SSP120"; transcript_biotype "protein_coding"; +chrXII SGD exon 640264 641311 . + . transcript_id "YLR250W_id004"; gene_id "YLR250W"; gene_name "SSP120"; +chrXII SGD transcript 640317 641021 . + . transcript_id "YLR250W_id001"; gene_id "YLR250W"; gene_name "SSP120"; transcript_biotype "protein_coding"; +chrXII SGD exon 640317 641021 . + 0 transcript_id "YLR250W_id001"; gene_name "SSP120"; gene_id "YLR250W"; +chrXII SGD gene 641464 642057 . + . gene_id "YLR251W"; gene_biotype "protein_coding"; +chrXII SGD transcript 641464 642057 . + . transcript_id "YLR251W_id001"; gene_id "YLR251W"; gene_name "SYM1"; transcript_biotype "protein_coding"; +chrXII SGD exon 641464 642057 . + 0 transcript_id "YLR251W_id001"; gene_name "SYM1"; gene_id "YLR251W"; +chrXII SGD gene 641508 642307 . + . gene_id "YLR252W"; gene_biotype "protein_coding"; +chrXII SGD transcript 641508 642307 . + . transcript_id "YLR252W_id001"; gene_id "YLR252W"; transcript_biotype "protein_coding"; +chrXII SGD exon 641508 642307 . + . transcript_id "YLR252W_id001"; gene_id "YLR252W"; +chrXII SGD transcript 641957 642262 . + . transcript_id "YLR252W_id002"; gene_id "YLR252W"; transcript_biotype "protein_coding"; +chrXII SGD exon 641957 642262 . + 0 transcript_id "YLR252W_id002"; gene_id "YLR252W"; +chrXII SGD gene 642515 644430 . + . gene_id "YLR253W"; gene_biotype "protein_coding"; +chrXII SGD transcript 642515 644430 . + . transcript_id "YLR253W_id002"; gene_id "YLR253W"; gene_name "CQD2"; transcript_biotype "protein_coding"; +chrXII SGD exon 642515 644430 . + . transcript_id "YLR253W_id002"; gene_id "YLR253W"; gene_name "CQD2"; +chrXII SGD transcript 642627 644336 . + . transcript_id "YLR253W_id001"; gene_id "YLR253W"; gene_name "CQD2"; transcript_biotype "protein_coding"; +chrXII SGD exon 642627 644336 . + 0 transcript_id "YLR253W_id001"; gene_name "CQD2"; gene_id "YLR253W"; +chrXII SGD gene 644329 645571 . - . gene_id "YLR254C"; gene_biotype "protein_coding"; +chrXII SGD transcript 644329 645571 . - . transcript_id "YLR254C_id002"; gene_id "YLR254C"; gene_name "NDL1"; transcript_biotype "protein_coding"; +chrXII SGD exon 644329 645571 . - . transcript_id "YLR254C_id002"; gene_id "YLR254C"; gene_name "NDL1"; +chrXII SGD transcript 644404 644973 . - . transcript_id "YLR254C_id001"; gene_id "YLR254C"; gene_name "NDL1"; transcript_biotype "protein_coding"; +chrXII SGD exon 644404 644973 . - 0 transcript_id "YLR254C_id001"; gene_name "NDL1"; gene_id "YLR254C"; +chrXII SGD gene 645108 645982 . - . gene_id "YLR255C"; gene_biotype "protein_coding"; +chrXII SGD transcript 645108 645982 . - . transcript_id "YLR255C_id001"; gene_id "YLR255C"; transcript_biotype "protein_coding"; +chrXII SGD exon 645108 645982 . - . transcript_id "YLR255C_id001"; gene_id "YLR255C"; +chrXII SGD transcript 645600 645953 . - . transcript_id "YLR255C_id006"; gene_id "YLR255C"; transcript_biotype "protein_coding"; +chrXII SGD exon 645600 645953 . - 0 transcript_id "YLR255C_id006"; gene_id "YLR255C"; +chrXII SGD gene 646415 650923 . + . gene_id "YLR256W"; gene_biotype "protein_coding"; +chrXII SGD transcript 646415 650923 . + . transcript_id "YLR256W_mRNA"; gene_id "YLR256W"; gene_name "HAP1"; transcript_biotype "protein_coding"; +chrXII SGD CDS 646415 650923 . + 0 transcript_id "YLR256W_mRNA"; gene_name "HAP1"; gene_id "YLR256W"; +chrXII SGD gene 651117 652439 . + . gene_id "YLR256W-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 651117 652439 . + . transcript_id "YLR256W-A_dummy"; gene_id "YLR256W-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 651117 652439 . + 0 transcript_id "YLR256W-A_dummy"; gene_id "YLR256W-A"; +chrXII SGD gene 656934 657006 . - . gene_id "YNCL0035C"; gene_biotype "ncRNA"; +chrXII SGD transcript 656934 657006 . - . transcript_id "YNCL0035C_tRNA"; gene_id "YNCL0035C"; transcript_biotype "ncRNA"; +chrXII SGD exon 656934 657006 . - . transcript_id "YNCL0035C_tRNA"; gene_id "YNCL0035C"; +chrXII SGD gene 658557 659942 . + . gene_id "YLR257W"; gene_biotype "protein_coding"; +chrXII SGD transcript 658557 659942 . + . transcript_id "YLR257W_id003"; gene_id "YLR257W"; transcript_biotype "protein_coding"; +chrXII SGD exon 658557 659942 . + . transcript_id "YLR257W_id003"; gene_id "YLR257W"; +chrXII SGD transcript 658826 659791 . + . transcript_id "YLR257W_id001"; gene_id "YLR257W"; transcript_biotype "protein_coding"; +chrXII SGD exon 658826 659791 . + 0 transcript_id "YLR257W_id001"; gene_id "YLR257W"; +chrXII SGD gene 660635 663201 . + . gene_id "YLR258W"; gene_biotype "protein_coding"; +chrXII SGD transcript 660635 663201 . + . transcript_id "YLR258W_id003"; gene_id "YLR258W"; gene_name "GSY2"; transcript_biotype "protein_coding"; +chrXII SGD exon 660635 663201 . + . transcript_id "YLR258W_id003"; gene_id "YLR258W"; gene_name "GSY2"; +chrXII SGD transcript 660716 662833 . + . transcript_id "YLR258W_id001"; gene_id "YLR258W"; gene_name "GSY2"; transcript_biotype "protein_coding"; +chrXII SGD exon 660716 662833 . + 0 transcript_id "YLR258W_id001"; gene_name "GSY2"; gene_id "YLR258W"; +chrXII SGD gene 663065 665048 . - . gene_id "YLR259C"; gene_biotype "protein_coding"; +chrXII SGD transcript 663065 665048 . - . transcript_id "YLR259C_id002"; gene_id "YLR259C"; gene_name "HSP60"; transcript_biotype "protein_coding"; +chrXII SGD exon 663065 665048 . - . transcript_id "YLR259C_id002"; gene_id "YLR259C"; gene_name "HSP60"; +chrXII SGD transcript 663284 665002 . - . transcript_id "YLR259C_id001"; gene_id "YLR259C"; gene_name "HSP60"; transcript_biotype "protein_coding"; +chrXII SGD exon 663284 665002 . - 0 transcript_id "YLR259C_id001"; gene_name "HSP60"; gene_id "YLR259C"; +chrXII SGD gene 665708 668123 . + . gene_id "YLR260W"; gene_biotype "protein_coding"; +chrXII SGD transcript 665708 668123 . + . transcript_id "YLR260W_id001"; gene_id "YLR260W"; gene_name "LCB5"; transcript_biotype "protein_coding"; +chrXII SGD exon 665708 668123 . + . transcript_id "YLR260W_id001"; gene_id "YLR260W"; gene_name "LCB5"; +chrXII SGD transcript 665844 667907 . + . transcript_id "YLR260W_id002"; gene_id "YLR260W"; gene_name "LCB5"; transcript_biotype "protein_coding"; +chrXII SGD exon 665844 667907 . + 0 transcript_id "YLR260W_id002"; gene_name "LCB5"; gene_id "YLR260W"; +chrXII SGD gene 667930 668843 . - . gene_id "YLR261C"; gene_biotype "protein_coding"; +chrXII SGD transcript 667930 668843 . - . transcript_id "YLR261C_id002"; gene_id "YLR261C"; gene_name "VPS63"; transcript_biotype "protein_coding"; +chrXII SGD exon 667930 668843 . - . transcript_id "YLR261C_id002"; gene_id "YLR261C"; gene_name "VPS63"; +chrXII SGD transcript 668237 668563 . - . transcript_id "YLR261C_id001"; gene_id "YLR261C"; gene_name "VPS63"; transcript_biotype "protein_coding"; +chrXII SGD exon 668237 668563 . - 0 transcript_id "YLR261C_id001"; gene_name "VPS63"; gene_id "YLR261C"; +chrXII SGD gene 668244 668891 . - . gene_id "YLR262C"; gene_biotype "protein_coding"; +chrXII SGD transcript 668244 668891 . - . transcript_id "YLR262C_mRNA"; gene_id "YLR262C"; gene_name "YPT6"; transcript_biotype "protein_coding"; +chrXII SGD CDS 668244 668891 . - 0 transcript_id "YLR262C_mRNA"; gene_name "YPT6"; gene_id "YLR262C"; +chrXII SGD gene 669368 670065 . - . gene_id "YLR262C-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 669368 670065 . - . transcript_id "YLR262C-A_id001"; gene_id "YLR262C-A"; gene_name "TMA7"; transcript_biotype "protein_coding"; +chrXII SGD exon 669368 670065 . - . transcript_id "YLR262C-A_id001"; gene_id "YLR262C-A"; gene_name "TMA7"; +chrXII SGD transcript 669468 669662 . - . transcript_id "YLR262C-A_id002"; gene_id "YLR262C-A"; gene_name "TMA7"; transcript_biotype "protein_coding"; +chrXII SGD exon 669468 669662 . - 0 transcript_id "YLR262C-A_id002"; gene_name "TMA7"; gene_id "YLR262C-A"; +chrXII SGD gene 670340 672823 . + . gene_id "YLR263W"; gene_biotype "protein_coding"; +chrXII SGD transcript 670340 672823 . + . transcript_id "YLR263W_mRNA"; gene_id "YLR263W"; gene_name "RED1"; transcript_biotype "protein_coding"; +chrXII SGD CDS 670340 672823 . + 0 transcript_id "YLR263W_mRNA"; gene_name "RED1"; gene_id "YLR263W"; +chrXII SGD gene 673075 674359 . + . gene_id "YLR264W"; gene_biotype "protein_coding"; +chrXII SGD transcript 673075 674359 . + . transcript_id "YLR264W_id002"; gene_id "YLR264W"; gene_name "RPS28B"; transcript_biotype "protein_coding"; +chrXII SGD exon 673075 674359 . + . transcript_id "YLR264W_id002"; gene_id "YLR264W"; gene_name "RPS28B"; +chrXII SGD transcript 673131 673334 . + . transcript_id "YLR264W_id001"; gene_id "YLR264W"; gene_name "RPS28B"; transcript_biotype "protein_coding"; +chrXII SGD exon 673131 673334 . + 0 transcript_id "YLR264W_id001"; gene_name "RPS28B"; gene_id "YLR264W"; +chrXII SGD gene 673828 673944 . - . gene_id "YLR264C-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 673828 673944 . - . transcript_id "YLR264C-A_mRNA"; gene_id "YLR264C-A"; transcript_biotype "protein_coding"; +chrXII SGD CDS 673828 673944 . - 0 transcript_id "YLR264C-A_mRNA"; gene_id "YLR264C-A"; +chrXII SGD gene 674427 675455 . - . gene_id "YLR265C"; gene_biotype "protein_coding"; +chrXII SGD transcript 674427 675455 . - . transcript_id "YLR265C_mRNA"; gene_id "YLR265C"; gene_name "NEJ1"; transcript_biotype "protein_coding"; +chrXII SGD CDS 674427 675455 . - 0 transcript_id "YLR265C_mRNA"; gene_name "NEJ1"; gene_id "YLR265C"; +chrXII SGD gene 675590 677753 . - . gene_id "YLR266C"; gene_biotype "protein_coding"; +chrXII SGD transcript 675590 677753 . - . transcript_id "YLR266C_id001"; gene_id "YLR266C"; gene_name "PDR8"; transcript_biotype "protein_coding"; +chrXII SGD exon 675590 677753 . - . transcript_id "YLR266C_id001"; gene_id "YLR266C"; gene_name "PDR8"; +chrXII SGD transcript 675619 677724 . - . transcript_id "YLR266C_id002"; gene_id "YLR266C"; gene_name "PDR8"; transcript_biotype "protein_coding"; +chrXII SGD exon 675619 677724 . - 0 transcript_id "YLR266C_id002"; gene_name "PDR8"; gene_id "YLR266C"; +chrXII SGD gene 678212 679924 . + . gene_id "YLR267W"; gene_biotype "protein_coding"; +chrXII SGD transcript 678212 679924 . + . transcript_id "YLR267W_id001"; gene_id "YLR267W"; gene_name "BOP2"; transcript_biotype "protein_coding"; +chrXII SGD exon 678212 679924 . + 0 transcript_id "YLR267W_id001"; gene_name "BOP2"; gene_id "YLR267W"; +chrXII SGD gene 680128 681146 . + . gene_id "YLR268W"; gene_biotype "protein_coding"; +chrXII SGD transcript 680128 681146 . + . transcript_id "YLR268W_id002"; gene_id "YLR268W"; gene_name "SEC22"; transcript_biotype "protein_coding"; +chrXII SGD exon 680128 681146 . + . transcript_id "YLR268W_id002"; gene_id "YLR268W"; gene_name "SEC22"; +chrXII SGD transcript 680200 680844 . + . transcript_id "YLR268W_id001"; gene_id "YLR268W"; gene_name "SEC22"; transcript_biotype "protein_coding"; +chrXII SGD exon 680200 680844 . + 0 transcript_id "YLR268W_id001"; gene_name "SEC22"; gene_id "YLR268W"; +chrXII SGD gene 680866 681216 . - . gene_id "YLR269C"; gene_biotype "protein_coding"; +chrXII SGD transcript 680866 681216 . - . transcript_id "YLR269C_mRNA"; gene_id "YLR269C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 680866 681216 . - 0 transcript_id "YLR269C_mRNA"; gene_id "YLR269C"; +chrXII SGD gene 681026 682434 . + . gene_id "YLR270W"; gene_biotype "protein_coding"; +chrXII SGD transcript 681026 682434 . + . transcript_id "YLR270W_id001"; gene_id "YLR270W"; gene_name "DCS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 681026 682434 . + . transcript_id "YLR270W_id001"; gene_id "YLR270W"; gene_name "DCS1"; +chrXII SGD transcript 681186 682238 . + . transcript_id "YLR270W_id003"; gene_id "YLR270W"; gene_name "DCS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 681186 682238 . + 0 transcript_id "YLR270W_id003"; gene_name "DCS1"; gene_id "YLR270W"; +chrXII SGD gene 682384 683664 . + . gene_id "YLR271W"; gene_biotype "protein_coding"; +chrXII SGD transcript 682384 683664 . + . transcript_id "YLR271W_id003"; gene_id "YLR271W"; gene_name "CMG1"; transcript_biotype "protein_coding"; +chrXII SGD exon 682384 683664 . + . transcript_id "YLR271W_id003"; gene_id "YLR271W"; gene_name "CMG1"; +chrXII SGD transcript 682737 683561 . + . transcript_id "YLR271W_id001"; gene_id "YLR271W"; gene_name "CMG1"; transcript_biotype "protein_coding"; +chrXII SGD exon 682737 683561 . + 0 transcript_id "YLR271W_id001"; gene_name "CMG1"; gene_id "YLR271W"; +chrXII SGD gene 683591 687254 . - . gene_id "YLR272C"; gene_biotype "protein_coding"; +chrXII SGD transcript 683591 687254 . - . transcript_id "YLR272C_id002"; gene_id "YLR272C"; gene_name "YCS4"; transcript_biotype "protein_coding"; +chrXII SGD exon 683591 687254 . - . transcript_id "YLR272C_id002"; gene_id "YLR272C"; gene_name "YCS4"; +chrXII SGD transcript 683672 687202 . - . transcript_id "YLR272C_id001"; gene_id "YLR272C"; gene_name "YCS4"; transcript_biotype "protein_coding"; +chrXII SGD exon 683672 687202 . - 0 transcript_id "YLR272C_id001"; gene_name "YCS4"; gene_id "YLR272C"; +chrXII SGD gene 687859 687932 . - . gene_id "YNCL0036C"; gene_biotype "ncRNA"; +chrXII SGD transcript 687859 687932 . - . transcript_id "YNCL0036C_tRNA"; gene_id "YNCL0036C"; transcript_biotype "ncRNA"; +chrXII SGD exon 687859 687932 . - . transcript_id "YNCL0036C_tRNA"; gene_id "YNCL0036C"; +chrXII SGD gene 689083 691029 . - . gene_id "YLR273C"; gene_biotype "protein_coding"; +chrXII SGD transcript 689083 691029 . - . transcript_id "YLR273C_id001"; gene_id "YLR273C"; gene_name "PIG1"; transcript_biotype "protein_coding"; +chrXII SGD exon 689083 691029 . - 0 transcript_id "YLR273C_id001"; gene_name "PIG1"; gene_id "YLR273C"; +chrXII SGD gene 691555 693882 . + . gene_id "YLR274W"; gene_biotype "protein_coding"; +chrXII SGD transcript 691555 693882 . + . transcript_id "YLR274W_id001"; gene_id "YLR274W"; gene_name "MCM5"; transcript_biotype "protein_coding"; +chrXII SGD exon 691555 693882 . + 0 transcript_id "YLR274W_id001"; gene_name "MCM5"; gene_id "YLR274W"; +chrXII SGD gene 694167 695058 . + . gene_id "YLR275W"; gene_biotype "protein_coding"; +chrXII SGD transcript 694167 695058 . + . transcript_id "YLR275W_id001"; gene_id "YLR275W"; gene_name "SMD2"; transcript_biotype "protein_coding"; +chrXII SGD exon 694167 695058 . + . transcript_id "YLR275W_id001"; gene_id "YLR275W"; gene_name "SMD2"; +chrXII SGD transcript 694378 694800 . + . transcript_id "YLR275W_id002"; gene_id "YLR275W"; gene_name "SMD2"; transcript_biotype "protein_coding"; +chrXII SGD exon 694378 694382 . + 0 transcript_id "YLR275W_id002"; gene_name "SMD2"; gene_id "YLR275W"; +chrXII SGD exon 694473 694800 . + 1 transcript_id "YLR275W_id002"; gene_name "SMD2"; gene_id "YLR275W"; +chrXII SGD gene 694980 696982 . - . gene_id "YLR276C"; gene_biotype "protein_coding"; +chrXII SGD transcript 694980 696982 . - . transcript_id "YLR276C_id002"; gene_id "YLR276C"; gene_name "DBP9"; transcript_biotype "protein_coding"; +chrXII SGD exon 694980 696982 . - . transcript_id "YLR276C_id002"; gene_id "YLR276C"; gene_name "DBP9"; +chrXII SGD transcript 695046 696830 . - . transcript_id "YLR276C_id001"; gene_id "YLR276C"; gene_name "DBP9"; transcript_biotype "protein_coding"; +chrXII SGD exon 695046 696830 . - 0 transcript_id "YLR276C_id001"; gene_name "DBP9"; gene_id "YLR276C"; +chrXII SGD gene 697073 699653 . - . gene_id "YLR277C"; gene_biotype "protein_coding"; +chrXII SGD transcript 697073 699653 . - . transcript_id "YLR277C_id001"; gene_id "YLR277C"; gene_name "YSH1"; transcript_biotype "protein_coding"; +chrXII SGD exon 697073 699653 . - . transcript_id "YLR277C_id001"; gene_id "YLR277C"; gene_name "YSH1"; +chrXII SGD transcript 697156 699495 . - . transcript_id "YLR277C_id002"; gene_id "YLR277C"; gene_name "YSH1"; transcript_biotype "protein_coding"; +chrXII SGD exon 697156 699495 . - 0 transcript_id "YLR277C_id002"; gene_name "YSH1"; gene_id "YLR277C"; +chrXII SGD gene 699999 704024 . - . gene_id "YLR278C"; gene_biotype "protein_coding"; +chrXII SGD transcript 699999 704024 . - . transcript_id "YLR278C_mRNA"; gene_id "YLR278C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 699999 704024 . - 0 transcript_id "YLR278C_mRNA"; gene_id "YLR278C"; +chrXII SGD gene 704309 704698 . + . gene_id "YLR279W"; gene_biotype "protein_coding"; +chrXII SGD transcript 704309 704698 . + . transcript_id "YLR279W_mRNA"; gene_id "YLR279W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 704309 704698 . + 0 transcript_id "YLR279W_mRNA"; gene_id "YLR279W"; +chrXII SGD gene 704483 704833 . - . gene_id "YLR280C"; gene_biotype "protein_coding"; +chrXII SGD transcript 704483 704833 . - . transcript_id "YLR280C_id001"; gene_id "YLR280C"; transcript_biotype "protein_coding"; +chrXII SGD exon 704483 704833 . - 0 transcript_id "YLR280C_id001"; gene_id "YLR280C"; +chrXII SGD gene 704493 704960 . - . gene_id "YLR281C"; gene_biotype "protein_coding"; +chrXII SGD transcript 704493 704960 . - . transcript_id "YLR281C_mRNA"; gene_id "YLR281C"; gene_name "RSO55"; transcript_biotype "protein_coding"; +chrXII SGD CDS 704493 704960 . - 0 transcript_id "YLR281C_mRNA"; gene_name "RSO55"; gene_id "YLR281C"; +chrXII SGD gene 704847 706223 . + . gene_id "YLR283W"; gene_biotype "protein_coding"; +chrXII SGD transcript 704847 706223 . + . transcript_id "YLR283W_id001"; gene_id "YLR283W"; gene_name "PUT7"; transcript_biotype "protein_coding"; +chrXII SGD exon 704847 706223 . + . transcript_id "YLR283W_id001"; gene_id "YLR283W"; gene_name "PUT7"; +chrXII SGD gene 705071 705412 . - . gene_id "YLR282C"; gene_biotype "protein_coding"; +chrXII SGD transcript 705071 705412 . - . transcript_id "YLR282C_mRNA"; gene_id "YLR282C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 705071 705412 . - 0 transcript_id "YLR282C_mRNA"; gene_id "YLR282C"; +chrXII SGD transcript 705186 706130 . + . transcript_id "YLR283W_id002"; gene_id "YLR283W"; gene_name "PUT7"; transcript_biotype "protein_coding"; +chrXII SGD exon 705186 706130 . + 0 transcript_id "YLR283W_id002"; gene_name "PUT7"; gene_id "YLR283W"; +chrXII SGD gene 706113 707143 . - . gene_id "YLR284C"; gene_biotype "protein_coding"; +chrXII SGD transcript 706113 707143 . - . transcript_id "YLR284C_id004"; gene_id "YLR284C"; gene_name "ECI1"; transcript_biotype "protein_coding"; +chrXII SGD exon 706113 707143 . - . transcript_id "YLR284C_id004"; gene_id "YLR284C"; gene_name "ECI1"; +chrXII SGD transcript 706198 707040 . - . transcript_id "YLR284C_id001"; gene_id "YLR284C"; gene_name "ECI1"; transcript_biotype "protein_coding"; +chrXII SGD exon 706198 707040 . - 0 transcript_id "YLR284C_id001"; gene_name "ECI1"; gene_id "YLR284C"; +chrXII SGD gene 707354 708405 . + . gene_id "YLR285W"; gene_biotype "protein_coding"; +chrXII SGD transcript 707354 708405 . + . transcript_id "YLR285W_id002"; gene_id "YLR285W"; gene_name "NNT1"; transcript_biotype "protein_coding"; +chrXII SGD exon 707354 708405 . + . transcript_id "YLR285W_id002"; gene_id "YLR285W"; gene_name "NNT1"; +chrXII SGD transcript 707360 708145 . + . transcript_id "YLR285W_id001"; gene_id "YLR285W"; gene_name "NNT1"; transcript_biotype "protein_coding"; +chrXII SGD exon 707360 708145 . + 0 transcript_id "YLR285W_id001"; gene_name "NNT1"; gene_id "YLR285W"; +chrXII SGD gene 708161 708603 . - . gene_id "YLR285C-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 708161 708603 . - . transcript_id "YLR285C-A_id004"; gene_id "YLR285C-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 708161 708603 . - . transcript_id "YLR285C-A_id004"; gene_id "YLR285C-A"; +chrXII SGD transcript 708168 708338 . - . transcript_id "YLR285C-A_id001"; gene_id "YLR285C-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 708168 708338 . - 0 transcript_id "YLR285C-A_id001"; gene_id "YLR285C-A"; +chrXII SGD gene 708251 710376 . - . gene_id "YLR286C"; gene_biotype "protein_coding"; +chrXII SGD transcript 708251 710376 . - . transcript_id "YLR286C_id005"; gene_id "YLR286C"; gene_name "CTS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 708251 710376 . - . transcript_id "YLR286C_id005"; gene_id "YLR286C"; gene_name "CTS1"; +chrXII SGD transcript 708448 710136 . - . transcript_id "YLR286C_id001"; gene_id "YLR286C"; gene_name "CTS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 708448 710136 . - 0 transcript_id "YLR286C_id001"; gene_name "CTS1"; gene_id "YLR286C"; +chrXII SGD gene 708456 710215 . + . gene_id "YLR286W-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 708456 710215 . + . transcript_id "YLR286W-A_id001"; gene_id "YLR286W-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 708456 710215 . + . transcript_id "YLR286W-A_id001"; gene_id "YLR286W-A"; +chrXII SGD transcript 708562 708696 . + . transcript_id "YLR286W-A_id007"; gene_id "YLR286W-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 708562 708696 . + 0 transcript_id "YLR286W-A_id007"; gene_id "YLR286W-A"; +chrXII SGD gene 710349 712128 . - . gene_id "YLR287C"; gene_biotype "protein_coding"; +chrXII SGD transcript 710349 712128 . - . transcript_id "YLR287C_id002"; gene_id "YLR287C"; transcript_biotype "protein_coding"; +chrXII SGD exon 710349 712128 . - . transcript_id "YLR287C_id002"; gene_id "YLR287C"; +chrXII SGD transcript 710991 712058 . - . transcript_id "YLR287C_id001"; gene_id "YLR287C"; transcript_biotype "protein_coding"; +chrXII SGD exon 710991 712058 . - 0 transcript_id "YLR287C_id001"; gene_id "YLR287C"; +chrXII SGD gene 712317 713224 . - . gene_id "YLR287C-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 712317 713224 . - . transcript_id "YLR287C-A_id006"; gene_id "YLR287C-A"; gene_name "RPS30A"; transcript_biotype "protein_coding"; +chrXII SGD exon 712317 713224 . - . transcript_id "YLR287C-A_id006"; gene_id "YLR287C-A"; gene_name "RPS30A"; +chrXII SGD transcript 712537 713158 . - . transcript_id "YLR287C-A_id001"; gene_id "YLR287C-A"; gene_name "RPS30A"; transcript_biotype "protein_coding"; +chrXII SGD exon 712537 712725 . - 0 transcript_id "YLR287C-A_id001"; gene_name "RPS30A"; gene_id "YLR287C-A"; +chrXII SGD exon 713156 713158 . - 0 transcript_id "YLR287C-A_id001"; gene_name "RPS30A"; gene_id "YLR287C-A"; +chrXII SGD gene 713319 714922 . - . gene_id "YLR288C"; gene_biotype "protein_coding"; +chrXII SGD transcript 713319 714922 . - . transcript_id "YLR288C_id004"; gene_id "YLR288C"; gene_name "MEC3"; transcript_biotype "protein_coding"; +chrXII SGD exon 713319 714922 . - . transcript_id "YLR288C_id004"; gene_id "YLR288C"; gene_name "MEC3"; +chrXII SGD transcript 713480 714904 . - . transcript_id "YLR288C_id001"; gene_id "YLR288C"; gene_name "MEC3"; transcript_biotype "protein_coding"; +chrXII SGD exon 713480 714904 . - 0 transcript_id "YLR288C_id001"; gene_name "MEC3"; gene_id "YLR288C"; +chrXII SGD gene 715089 717026 . + . gene_id "YLR289W"; gene_biotype "protein_coding"; +chrXII SGD transcript 715089 717026 . + . transcript_id "YLR289W_id001"; gene_id "YLR289W"; gene_name "GUF1"; transcript_biotype "protein_coding"; +chrXII SGD exon 715089 717026 . + 0 transcript_id "YLR289W_id001"; gene_name "GUF1"; gene_id "YLR289W"; +chrXII SGD gene 716960 718001 . - . gene_id "YLR290C"; gene_biotype "protein_coding"; +chrXII SGD transcript 716960 718001 . - . transcript_id "YLR290C_id002"; gene_id "YLR290C"; gene_name "COQ11"; transcript_biotype "protein_coding"; +chrXII SGD exon 716960 718001 . - . transcript_id "YLR290C_id002"; gene_id "YLR290C"; gene_name "COQ11"; +chrXII SGD transcript 717145 717978 . - . transcript_id "YLR290C_id001"; gene_id "YLR290C"; gene_name "COQ11"; transcript_biotype "protein_coding"; +chrXII SGD exon 717145 717978 . - 0 transcript_id "YLR290C_id001"; gene_name "COQ11"; gene_id "YLR290C"; +chrXII SGD gene 718138 719527 . - . gene_id "YLR291C"; gene_biotype "protein_coding"; +chrXII SGD transcript 718138 719527 . - . transcript_id "YLR291C_id001"; gene_id "YLR291C"; gene_name "GCD7"; transcript_biotype "protein_coding"; +chrXII SGD exon 718138 719527 . - . transcript_id "YLR291C_id001"; gene_id "YLR291C"; gene_name "GCD7"; +chrXII SGD transcript 718317 719462 . - . transcript_id "YLR291C_id002"; gene_id "YLR291C"; gene_name "GCD7"; transcript_biotype "protein_coding"; +chrXII SGD exon 718317 719462 . - 0 transcript_id "YLR291C_id002"; gene_name "GCD7"; gene_id "YLR291C"; +chrXII SGD gene 719605 720442 . - . gene_id "YLR292C"; gene_biotype "protein_coding"; +chrXII SGD transcript 719605 720442 . - . transcript_id "YLR292C_id003"; gene_id "YLR292C"; gene_name "SEC72"; transcript_biotype "protein_coding"; +chrXII SGD exon 719605 720442 . - . transcript_id "YLR292C_id003"; gene_id "YLR292C"; gene_name "SEC72"; +chrXII SGD transcript 719789 720370 . - . transcript_id "YLR292C_id001"; gene_id "YLR292C"; gene_name "SEC72"; transcript_biotype "protein_coding"; +chrXII SGD exon 719789 720370 . - 0 transcript_id "YLR292C_id001"; gene_name "SEC72"; gene_id "YLR292C"; +chrXII SGD gene 720512 721497 . - . gene_id "YLR293C"; gene_biotype "protein_coding"; +chrXII SGD transcript 720512 721497 . - . transcript_id "YLR293C_id007"; gene_id "YLR293C"; gene_name "GSP1"; transcript_biotype "protein_coding"; +chrXII SGD exon 720512 721497 . - . transcript_id "YLR293C_id007"; gene_id "YLR293C"; gene_name "GSP1"; +chrXII SGD transcript 720771 721430 . - . transcript_id "YLR293C_id001"; gene_id "YLR293C"; gene_name "GSP1"; transcript_biotype "protein_coding"; +chrXII SGD exon 720771 721430 . - 0 transcript_id "YLR293C_id001"; gene_name "GSP1"; gene_id "YLR293C"; +chrXII SGD gene 721701 722030 . - . gene_id "YLR294C"; gene_biotype "protein_coding"; +chrXII SGD transcript 721701 722030 . - . transcript_id "YLR294C_id001"; gene_id "YLR294C"; transcript_biotype "protein_coding"; +chrXII SGD exon 721701 722030 . - 0 transcript_id "YLR294C_id001"; gene_id "YLR294C"; +chrXII SGD gene 721720 722498 . - . gene_id "YLR295C"; gene_biotype "protein_coding"; +chrXII SGD transcript 721720 722498 . - . transcript_id "YLR295C_id002"; gene_id "YLR295C"; gene_name "ATP14"; transcript_biotype "protein_coding"; +chrXII SGD exon 721720 722498 . - . transcript_id "YLR295C_id002"; gene_id "YLR295C"; gene_name "ATP14"; +chrXII SGD transcript 721999 722373 . - . transcript_id "YLR295C_id001"; gene_id "YLR295C"; gene_name "ATP14"; transcript_biotype "protein_coding"; +chrXII SGD exon 721999 722373 . - 0 transcript_id "YLR295C_id001"; gene_name "ATP14"; gene_id "YLR295C"; +chrXII SGD gene 722978 723304 . + . gene_id "YLR296W"; gene_biotype "protein_coding"; +chrXII SGD transcript 722978 723304 . + . transcript_id "YLR296W_id001"; gene_id "YLR296W"; transcript_biotype "protein_coding"; +chrXII SGD exon 722978 723304 . + 0 transcript_id "YLR296W_id001"; gene_id "YLR296W"; +chrXII SGD gene 723834 724728 . + . gene_id "YLR297W"; gene_biotype "protein_coding"; +chrXII SGD transcript 723834 724728 . + . transcript_id "YLR297W_id005"; gene_id "YLR297W"; transcript_biotype "protein_coding"; +chrXII SGD exon 723834 724728 . + . transcript_id "YLR297W_id005"; gene_id "YLR297W"; +chrXII SGD gene 723978 725443 . - . gene_id "YLR298C"; gene_biotype "protein_coding"; +chrXII SGD transcript 723978 725443 . - . transcript_id "YLR298C_id001"; gene_id "YLR298C"; gene_name "YHC1"; transcript_biotype "protein_coding"; +chrXII SGD exon 723978 725443 . - . transcript_id "YLR298C_id001"; gene_id "YLR298C"; gene_name "YHC1"; +chrXII SGD transcript 724044 724433 . + . transcript_id "YLR297W_id001"; gene_id "YLR297W"; transcript_biotype "protein_coding"; +chrXII SGD exon 724044 724433 . + 0 transcript_id "YLR297W_id001"; gene_id "YLR297W"; +chrXII SGD transcript 724721 725416 . - . transcript_id "YLR298C_id002"; gene_id "YLR298C"; gene_name "YHC1"; transcript_biotype "protein_coding"; +chrXII SGD exon 724721 725416 . - 0 transcript_id "YLR298C_id002"; gene_name "YHC1"; gene_id "YLR298C"; +chrXII SGD gene 725890 728162 . + . gene_id "YLR299W"; gene_biotype "protein_coding"; +chrXII SGD transcript 725890 728162 . + . transcript_id "YLR299W_id001"; gene_id "YLR299W"; gene_name "ECM38"; transcript_biotype "protein_coding"; +chrXII SGD exon 725890 728162 . + . transcript_id "YLR299W_id001"; gene_id "YLR299W"; gene_name "ECM38"; +chrXII SGD transcript 726069 728051 . + . transcript_id "YLR299W_id003"; gene_id "YLR299W"; gene_name "ECM38"; transcript_biotype "protein_coding"; +chrXII SGD exon 726069 728051 . + 0 transcript_id "YLR299W_id003"; gene_name "ECM38"; gene_id "YLR299W"; +chrXII SGD gene 727911 728003 . - . gene_id "YLR299C-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 727911 728003 . - . transcript_id "YLR299C-A_mRNA"; gene_id "YLR299C-A"; transcript_biotype "protein_coding"; +chrXII SGD CDS 727911 728003 . - 0 transcript_id "YLR299C-A_mRNA"; gene_id "YLR299C-A"; +chrXII SGD gene 728821 730605 . + . gene_id "YLR300W"; gene_biotype "protein_coding"; +chrXII SGD transcript 728821 730605 . + . transcript_id "YLR300W_id001"; gene_id "YLR300W"; gene_name "EXG1"; transcript_biotype "protein_coding"; +chrXII SGD exon 728821 730605 . + . transcript_id "YLR300W_id001"; gene_id "YLR300W"; gene_name "EXG1"; +chrXII SGD transcript 728955 730301 . + . transcript_id "YLR300W_id002"; gene_id "YLR300W"; gene_name "EXG1"; transcript_biotype "protein_coding"; +chrXII SGD exon 728955 730301 . + 0 transcript_id "YLR300W_id002"; gene_name "EXG1"; gene_id "YLR300W"; +chrXII SGD gene 730795 731771 . + . gene_id "YLR301W"; gene_biotype "protein_coding"; +chrXII SGD transcript 730795 731771 . + . transcript_id "YLR301W_id001"; gene_id "YLR301W"; gene_name "HRI1"; transcript_biotype "protein_coding"; +chrXII SGD exon 730795 731771 . + . transcript_id "YLR301W_id001"; gene_id "YLR301W"; gene_name "HRI1"; +chrXII SGD transcript 730825 731559 . + . transcript_id "YLR301W_id002"; gene_id "YLR301W"; gene_name "HRI1"; transcript_biotype "protein_coding"; +chrXII SGD exon 730825 731559 . + 0 transcript_id "YLR301W_id002"; gene_name "HRI1"; gene_id "YLR301W"; +chrXII SGD gene 732090 732190 . + . gene_id "YNCL0037W"; gene_biotype "ncRNA"; +chrXII SGD transcript 732090 732190 . + . transcript_id "YNCL0037W_tRNA"; gene_id "YNCL0037W"; transcript_biotype "ncRNA"; +chrXII SGD exon 732090 732127 . + . transcript_id "YNCL0037W_tRNA"; gene_id "YNCL0037W"; +chrXII SGD exon 732147 732190 . + . transcript_id "YNCL0037W_tRNA"; gene_id "YNCL0037W"; +chrXII SGD gene 732191 732553 . - . gene_id "YLR302C"; gene_biotype "protein_coding"; +chrXII SGD transcript 732191 732553 . - . transcript_id "YLR302C_mRNA"; gene_id "YLR302C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 732191 732553 . - 0 transcript_id "YLR302C_mRNA"; gene_id "YLR302C"; +chrXII SGD gene 732501 734372 . + . gene_id "YLR303W"; gene_biotype "protein_coding"; +chrXII SGD transcript 732501 734372 . + . transcript_id "YLR303W_id005"; gene_id "YLR303W"; gene_name "MET17"; transcript_biotype "protein_coding"; +chrXII SGD exon 732501 734372 . + . transcript_id "YLR303W_id005"; gene_id "YLR303W"; gene_name "MET17"; +chrXII SGD transcript 732542 733876 . + . transcript_id "YLR303W_id001"; gene_id "YLR303W"; gene_name "MET17"; transcript_biotype "protein_coding"; +chrXII SGD exon 732542 733876 . + 0 transcript_id "YLR303W_id001"; gene_name "MET17"; gene_id "YLR303W"; +chrXII SGD gene 734802 734875 . + . gene_id "YNCL0038W"; gene_biotype "ncRNA"; +chrXII SGD transcript 734802 734875 . + . transcript_id "YNCL0038W_tRNA"; gene_id "YNCL0038W"; transcript_biotype "ncRNA"; +chrXII SGD exon 734802 734875 . + . transcript_id "YNCL0038W_tRNA"; gene_id "YNCL0038W"; +chrXII SGD gene 735034 737659 . - . gene_id "YLR304C"; gene_biotype "protein_coding"; +chrXII SGD transcript 735034 737659 . - . transcript_id "YLR304C_id005"; gene_id "YLR304C"; gene_name "ACO1"; transcript_biotype "protein_coding"; +chrXII SGD exon 735034 737659 . - . transcript_id "YLR304C_id005"; gene_id "YLR304C"; gene_name "ACO1"; +chrXII SGD transcript 735212 737548 . - . transcript_id "YLR304C_id001"; gene_id "YLR304C"; gene_name "ACO1"; transcript_biotype "protein_coding"; +chrXII SGD exon 735212 737548 . - 0 transcript_id "YLR304C_id001"; gene_name "ACO1"; gene_id "YLR304C"; +chrXII SGD gene 738161 743863 . - . gene_id "YLR305C"; gene_biotype "protein_coding"; +chrXII SGD transcript 738161 743863 . - . transcript_id "YLR305C_mRNA"; gene_id "YLR305C"; gene_name "STT4"; transcript_biotype "protein_coding"; +chrXII SGD CDS 738161 743863 . - 0 transcript_id "YLR305C_mRNA"; gene_name "STT4"; gene_id "YLR305C"; +chrXII SGD gene 744084 745124 . + . gene_id "YLR306W"; gene_biotype "protein_coding"; +chrXII SGD transcript 744084 745124 . + . transcript_id "YLR306W_id002"; gene_id "YLR306W"; gene_name "UBC12"; transcript_biotype "protein_coding"; +chrXII SGD exon 744084 745124 . + . transcript_id "YLR306W_id002"; gene_id "YLR306W"; gene_name "UBC12"; +chrXII SGD transcript 744151 744851 . + . transcript_id "YLR306W_id001"; gene_id "YLR306W"; gene_name "UBC12"; transcript_biotype "protein_coding"; +chrXII SGD exon 744151 744153 . + 0 transcript_id "YLR306W_id001"; gene_name "UBC12"; gene_id "YLR306W"; +chrXII SGD exon 744288 744851 . + 0 transcript_id "YLR306W_id001"; gene_name "UBC12"; gene_id "YLR306W"; +chrXII SGD gene 745620 746525 . + . gene_id "YLR307W"; gene_biotype "protein_coding"; +chrXII SGD transcript 745620 746525 . + . transcript_id "YLR307W_id001"; gene_id "YLR307W"; gene_name "CDA1"; transcript_biotype "protein_coding"; +chrXII SGD exon 745620 746525 . + 0 transcript_id "YLR307W_id001"; gene_name "CDA1"; gene_id "YLR307W"; +chrXII SGD gene 746848 747111 . - . gene_id "YLR307C-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 746848 747111 . - . transcript_id "YLR307C-A_mRNA"; gene_id "YLR307C-A"; gene_name "DPA10"; transcript_biotype "protein_coding"; +chrXII SGD CDS 746848 747111 . - 0 transcript_id "YLR307C-A_mRNA"; gene_name "DPA10"; gene_id "YLR307C-A"; +chrXII SGD gene 747937 748875 . + . gene_id "YLR308W"; gene_biotype "protein_coding"; +chrXII SGD transcript 747937 748875 . + . transcript_id "YLR308W_mRNA"; gene_id "YLR308W"; gene_name "CDA2"; transcript_biotype "protein_coding"; +chrXII SGD CDS 747937 748875 . + 0 transcript_id "YLR308W_mRNA"; gene_name "CDA2"; gene_id "YLR308W"; +chrXII SGD gene 749034 751769 . - . gene_id "YLR309C"; gene_biotype "protein_coding"; +chrXII SGD transcript 749034 751769 . - . transcript_id "YLR309C_id001"; gene_id "YLR309C"; gene_name "IMH1"; transcript_biotype "protein_coding"; +chrXII SGD exon 749034 751769 . - 0 transcript_id "YLR309C_id001"; gene_name "IMH1"; gene_id "YLR309C"; +chrXII SGD gene 752224 756993 . - . gene_id "YLR310C"; gene_biotype "protein_coding"; +chrXII SGD transcript 752224 756993 . - . transcript_id "YLR310C_mRNA"; gene_id "YLR310C"; gene_name "CDC25"; transcript_biotype "protein_coding"; +chrXII SGD CDS 752224 756993 . - 0 transcript_id "YLR310C_mRNA"; gene_name "CDC25"; gene_id "YLR310C"; +chrXII SGD gene 757255 757614 . - . gene_id "YLR311C"; gene_biotype "protein_coding"; +chrXII SGD transcript 757255 757614 . - . transcript_id "YLR311C_id004"; gene_id "YLR311C"; transcript_biotype "protein_coding"; +chrXII SGD exon 757255 757614 . - . transcript_id "YLR311C_id004"; gene_id "YLR311C"; +chrXII SGD transcript 757265 757612 . - . transcript_id "YLR311C_id001"; gene_id "YLR311C"; transcript_biotype "protein_coding"; +chrXII SGD exon 757265 757612 . - 0 transcript_id "YLR311C_id001"; gene_id "YLR311C"; +chrXII SGD gene 757423 759027 . - . gene_id "YLR312C"; gene_biotype "protein_coding"; +chrXII SGD transcript 757423 759027 . - . transcript_id "YLR312C_id003"; gene_id "YLR312C"; gene_name "ATG39"; transcript_biotype "protein_coding"; +chrXII SGD exon 757423 759027 . - . transcript_id "YLR312C_id003"; gene_id "YLR312C"; gene_name "ATG39"; +chrXII SGD transcript 757637 758833 . - . transcript_id "YLR312C_id001"; gene_id "YLR312C"; gene_name "ATG39"; transcript_biotype "protein_coding"; +chrXII SGD exon 757637 758833 . - 0 transcript_id "YLR312C_id001"; gene_name "ATG39"; gene_id "YLR312C"; +chrXII SGD gene 759468 760525 . + . gene_id "YLR312W-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 759468 760525 . + . transcript_id "YLR312W-A_id001"; gene_id "YLR312W-A"; gene_name "MRPL15"; transcript_biotype "protein_coding"; +chrXII SGD exon 759468 760525 . + . transcript_id "YLR312W-A_id001"; gene_id "YLR312W-A"; gene_name "MRPL15"; +chrXII SGD transcript 759480 760241 . + . transcript_id "YLR312W-A_id002"; gene_id "YLR312W-A"; gene_name "MRPL15"; transcript_biotype "protein_coding"; +chrXII SGD exon 759480 760241 . + 0 transcript_id "YLR312W-A_id002"; gene_name "MRPL15"; gene_id "YLR312W-A"; +chrXII SGD gene 760240 762381 . - . gene_id "YLR313C"; gene_biotype "protein_coding"; +chrXII SGD transcript 760240 762381 . - . transcript_id "YLR313C_id002"; gene_id "YLR313C"; gene_name "SPH1"; transcript_biotype "protein_coding"; +chrXII SGD exon 760240 762381 . - . transcript_id "YLR313C_id002"; gene_id "YLR313C"; gene_name "SPH1"; +chrXII SGD transcript 760750 762342 . - . transcript_id "YLR313C_id001"; gene_id "YLR313C"; gene_name "SPH1"; transcript_biotype "protein_coding"; +chrXII SGD exon 760750 762342 . - 0 transcript_id "YLR313C_id001"; gene_name "SPH1"; gene_id "YLR313C"; +chrXII SGD gene 762437 764207 . - . gene_id "YLR314C"; gene_biotype "protein_coding"; +chrXII SGD transcript 762437 764207 . - . transcript_id "YLR314C_id002"; gene_id "YLR314C"; gene_name "CDC3"; transcript_biotype "protein_coding"; +chrXII SGD exon 762437 764207 . - . transcript_id "YLR314C_id002"; gene_id "YLR314C"; gene_name "CDC3"; +chrXII SGD transcript 762575 764137 . - . transcript_id "YLR314C_id001"; gene_id "YLR314C"; gene_name "CDC3"; transcript_biotype "protein_coding"; +chrXII SGD exon 762575 764137 . - 0 transcript_id "YLR314C_id001"; gene_name "CDC3"; gene_id "YLR314C"; +chrXII SGD gene 764758 765958 . + . gene_id "YLR315W"; gene_biotype "protein_coding"; +chrXII SGD transcript 764758 765958 . + . transcript_id "YLR315W_id003"; gene_id "YLR315W"; gene_name "NKP2"; transcript_biotype "protein_coding"; +chrXII SGD exon 764758 765958 . + . transcript_id "YLR315W_id003"; gene_id "YLR315W"; gene_name "NKP2"; +chrXII SGD transcript 764808 765269 . + . transcript_id "YLR315W_id001"; gene_id "YLR315W"; gene_name "NKP2"; transcript_biotype "protein_coding"; +chrXII SGD exon 764808 765269 . + 0 transcript_id "YLR315W_id001"; gene_name "NKP2"; gene_id "YLR315W"; +chrXII SGD gene 765110 766418 . - . gene_id "YLR316C"; gene_biotype "protein_coding"; +chrXII SGD transcript 765110 766418 . - . transcript_id "YLR316C_id002"; gene_id "YLR316C"; gene_name "TAD3"; transcript_biotype "protein_coding"; +chrXII SGD exon 765110 766418 . - . transcript_id "YLR316C_id002"; gene_id "YLR316C"; gene_name "TAD3"; +chrXII SGD gene 765183 766232 . + . gene_id "YLR317W"; gene_biotype "protein_coding"; +chrXII SGD transcript 765183 766232 . + . transcript_id "YLR317W_id002"; gene_id "YLR317W"; transcript_biotype "protein_coding"; +chrXII SGD exon 765183 766232 . + . transcript_id "YLR317W_id002"; gene_id "YLR317W"; +chrXII SGD transcript 765266 766358 . - . transcript_id "YLR316C_id001"; gene_id "YLR316C"; gene_name "TAD3"; transcript_biotype "protein_coding"; +chrXII SGD exon 765266 766073 . - 1 transcript_id "YLR316C_id001"; gene_name "TAD3"; gene_id "YLR316C"; +chrXII SGD exon 766130 766181 . - 2 transcript_id "YLR316C_id001"; gene_name "TAD3"; gene_id "YLR316C"; +chrXII SGD exon 766250 766358 . - 0 transcript_id "YLR316C_id001"; gene_name "TAD3"; gene_id "YLR316C"; +chrXII SGD transcript 765655 766089 . + . transcript_id "YLR317W_id001"; gene_id "YLR317W"; transcript_biotype "protein_coding"; +chrXII SGD exon 765655 766089 . + 0 transcript_id "YLR317W_id001"; gene_id "YLR317W"; +chrXII SGD gene 766542 769196 . + . gene_id "YLR318W"; gene_biotype "protein_coding"; +chrXII SGD transcript 766542 769196 . + . transcript_id "YLR318W_mRNA"; gene_id "YLR318W"; gene_name "EST2"; transcript_biotype "protein_coding"; +chrXII SGD CDS 766542 769196 . + 0 transcript_id "YLR318W_mRNA"; gene_name "EST2"; gene_id "YLR318W"; +chrXII SGD gene 769318 771684 . - . gene_id "YLR319C"; gene_biotype "protein_coding"; +chrXII SGD transcript 769318 771684 . - . transcript_id "YLR319C_mRNA"; gene_id "YLR319C"; gene_name "BUD6"; transcript_biotype "protein_coding"; +chrXII SGD CDS 769318 771684 . - 0 transcript_id "YLR319C_mRNA"; gene_name "BUD6"; gene_id "YLR319C"; +chrXII SGD gene 771940 776304 . + . gene_id "YLR320W"; gene_biotype "protein_coding"; +chrXII SGD transcript 771940 776304 . + . transcript_id "YLR320W_mRNA"; gene_id "YLR320W"; gene_name "MMS22"; transcript_biotype "protein_coding"; +chrXII SGD CDS 771940 776304 . + 0 transcript_id "YLR320W_mRNA"; gene_name "MMS22"; gene_id "YLR320W"; +chrXII SGD gene 776257 777931 . - . gene_id "YLR321C"; gene_biotype "protein_coding"; +chrXII SGD transcript 776257 777931 . - . transcript_id "YLR321C_id001"; gene_id "YLR321C"; gene_name "SFH1"; transcript_biotype "protein_coding"; +chrXII SGD exon 776257 777931 . - . transcript_id "YLR321C_id001"; gene_id "YLR321C"; gene_name "SFH1"; +chrXII SGD transcript 776584 777864 . - . transcript_id "YLR321C_id003"; gene_id "YLR321C"; gene_name "SFH1"; transcript_biotype "protein_coding"; +chrXII SGD exon 776584 777864 . - 0 transcript_id "YLR321C_id003"; gene_name "SFH1"; gene_id "YLR321C"; +chrXII SGD gene 777628 777942 . + . gene_id "YLR322W"; gene_biotype "protein_coding"; +chrXII SGD transcript 777628 777942 . + . transcript_id "YLR322W_id001"; gene_id "YLR322W"; gene_name "VPS65"; transcript_biotype "protein_coding"; +chrXII SGD exon 777628 777942 . + 0 transcript_id "YLR322W_id001"; gene_name "VPS65"; gene_id "YLR322W"; +chrXII SGD gene 777887 780902 . - . gene_id "YLR323C"; gene_biotype "protein_coding"; +chrXII SGD transcript 777887 780902 . - . transcript_id "YLR323C_id001"; gene_id "YLR323C"; gene_name "CWC24"; transcript_biotype "protein_coding"; +chrXII SGD exon 777887 780902 . - . transcript_id "YLR323C_id001"; gene_id "YLR323C"; gene_name "CWC24"; +chrXII SGD transcript 778173 778952 . - . transcript_id "YLR323C_id004"; gene_id "YLR323C"; gene_name "CWC24"; transcript_biotype "protein_coding"; +chrXII SGD exon 778173 778952 . - 0 transcript_id "YLR323C_id004"; gene_name "CWC24"; gene_id "YLR323C"; +chrXII SGD gene 779148 780934 . + . gene_id "YLR324W"; gene_biotype "protein_coding"; +chrXII SGD transcript 779148 780934 . + . transcript_id "YLR324W_id002"; gene_id "YLR324W"; gene_name "PEX30"; transcript_biotype "protein_coding"; +chrXII SGD exon 779148 780934 . + . transcript_id "YLR324W_id002"; gene_id "YLR324W"; gene_name "PEX30"; +chrXII SGD transcript 779215 780786 . + . transcript_id "YLR324W_id001"; gene_id "YLR324W"; gene_name "PEX30"; transcript_biotype "protein_coding"; +chrXII SGD exon 779215 780786 . + 0 transcript_id "YLR324W_id001"; gene_name "PEX30"; gene_id "YLR324W"; +chrXII SGD gene 780902 781875 . - . gene_id "YLR325C"; gene_biotype "protein_coding"; +chrXII SGD transcript 780902 781875 . - . transcript_id "YLR325C_id002"; gene_id "YLR325C"; gene_name "RPL38"; transcript_biotype "protein_coding"; +chrXII SGD exon 780902 781875 . - . transcript_id "YLR325C_id002"; gene_id "YLR325C"; gene_name "RPL38"; +chrXII SGD transcript 781143 781379 . - . transcript_id "YLR325C_id001"; gene_id "YLR325C"; gene_name "RPL38"; transcript_biotype "protein_coding"; +chrXII SGD exon 781143 781379 . - 0 transcript_id "YLR325C_id001"; gene_name "RPL38"; gene_id "YLR325C"; +chrXII SGD gene 782012 783037 . + . gene_id "YLR326W"; gene_biotype "protein_coding"; +chrXII SGD transcript 782012 783037 . + . transcript_id "YLR326W_id001"; gene_id "YLR326W"; transcript_biotype "protein_coding"; +chrXII SGD exon 782012 783037 . + . transcript_id "YLR326W_id001"; gene_id "YLR326W"; +chrXII SGD transcript 782174 782896 . + . transcript_id "YLR326W_id002"; gene_id "YLR326W"; transcript_biotype "protein_coding"; +chrXII SGD exon 782174 782896 . + 0 transcript_id "YLR326W_id002"; gene_id "YLR326W"; +chrXII SGD gene 782946 783634 . - . gene_id "YLR327C"; gene_biotype "protein_coding"; +chrXII SGD transcript 782946 783634 . - . transcript_id "YLR327C_id003"; gene_id "YLR327C"; gene_name "TMA10"; transcript_biotype "protein_coding"; +chrXII SGD exon 782946 783634 . - . transcript_id "YLR327C_id003"; gene_id "YLR327C"; gene_name "TMA10"; +chrXII SGD transcript 783127 783387 . - . transcript_id "YLR327C_id001"; gene_id "YLR327C"; gene_name "TMA10"; transcript_biotype "protein_coding"; +chrXII SGD exon 783127 783387 . - 0 transcript_id "YLR327C_id001"; gene_name "TMA10"; gene_id "YLR327C"; +chrXII SGD gene 784354 784453 . + . gene_id "YNCL0039W"; gene_biotype "ncRNA"; +chrXII SGD transcript 784354 784453 . + . transcript_id "YNCL0039W_tRNA"; gene_id "YNCL0039W"; transcript_biotype "ncRNA"; +chrXII SGD exon 784354 784389 . + . transcript_id "YNCL0039W_tRNA"; gene_id "YNCL0039W"; +chrXII SGD exon 784410 784453 . + . transcript_id "YNCL0039W_tRNA"; gene_id "YNCL0039W"; +chrXII SGD gene 784702 786469 . + . gene_id "YLR328W"; gene_biotype "protein_coding"; +chrXII SGD transcript 784702 786469 . + . transcript_id "YLR328W_id001"; gene_id "YLR328W"; gene_name "NMA1"; transcript_biotype "protein_coding"; +chrXII SGD exon 784702 786469 . + . transcript_id "YLR328W_id001"; gene_id "YLR328W"; gene_name "NMA1"; +chrXII SGD transcript 784913 786118 . + . transcript_id "YLR328W_id005"; gene_id "YLR328W"; gene_name "NMA1"; transcript_biotype "protein_coding"; +chrXII SGD exon 784913 786118 . + 0 transcript_id "YLR328W_id005"; gene_name "NMA1"; gene_id "YLR328W"; +chrXII SGD gene 786442 787333 . + . gene_id "YLR329W"; gene_biotype "protein_coding"; +chrXII SGD transcript 786442 787333 . + . transcript_id "YLR329W_mRNA"; gene_id "YLR329W"; gene_name "REC102"; transcript_biotype "protein_coding"; +chrXII SGD CDS 786442 786615 . + 0 transcript_id "YLR329W_mRNA"; gene_name "REC102"; gene_id "YLR329W"; +chrXII SGD CDS 786713 787333 . + 0 transcript_id "YLR329W_mRNA"; gene_name "REC102"; gene_id "YLR329W"; +chrXII SGD gene 787609 789829 . + . gene_id "YLR330W"; gene_biotype "protein_coding"; +chrXII SGD transcript 787609 789829 . + . transcript_id "YLR330W_id002"; gene_id "YLR330W"; gene_name "CHS5"; transcript_biotype "protein_coding"; +chrXII SGD exon 787609 789829 . + . transcript_id "YLR330W_id002"; gene_id "YLR330W"; gene_name "CHS5"; +chrXII SGD transcript 787664 789679 . + . transcript_id "YLR330W_id001"; gene_id "YLR330W"; gene_name "CHS5"; transcript_biotype "protein_coding"; +chrXII SGD exon 787664 789679 . + 0 transcript_id "YLR330W_id001"; gene_name "CHS5"; gene_id "YLR330W"; +chrXII SGD gene 790225 792021 . + . gene_id "YLR332W"; gene_biotype "protein_coding"; +chrXII SGD transcript 790225 792021 . + . transcript_id "YLR332W_id002"; gene_id "YLR332W"; gene_name "MID2"; transcript_biotype "protein_coding"; +chrXII SGD exon 790225 792021 . + . transcript_id "YLR332W_id002"; gene_id "YLR332W"; gene_name "MID2"; +chrXII SGD gene 790669 791046 . - . gene_id "YLR331C"; gene_biotype "protein_coding"; +chrXII SGD transcript 790669 791046 . - . transcript_id "YLR331C_mRNA"; gene_id "YLR331C"; gene_name "JIP3"; transcript_biotype "protein_coding"; +chrXII SGD CDS 790669 791046 . - 0 transcript_id "YLR331C_mRNA"; gene_name "JIP3"; gene_id "YLR331C"; +chrXII SGD transcript 790676 791806 . + . transcript_id "YLR332W_id001"; gene_id "YLR332W"; gene_name "MID2"; transcript_biotype "protein_coding"; +chrXII SGD exon 790676 791806 . + 0 transcript_id "YLR332W_id001"; gene_name "MID2"; gene_id "YLR332W"; +chrXII SGD gene 793918 793989 . + . gene_id "YNCL0040W"; gene_biotype "ncRNA"; +chrXII SGD transcript 793918 793989 . + . transcript_id "YNCL0040W_tRNA"; gene_id "YNCL0040W"; transcript_biotype "ncRNA"; +chrXII SGD exon 793918 793989 . + . transcript_id "YNCL0040W_tRNA"; gene_id "YNCL0040W"; +chrXII SGD gene 794486 794575 . - . gene_id "YNCL0041C"; gene_biotype "ncRNA"; +chrXII SGD transcript 794486 794575 . - . transcript_id "YNCL0041C_snoRNA"; gene_id "YNCL0041C"; gene_name "SNR61"; transcript_biotype "ncRNA"; +chrXII SGD exon 794486 794575 . - . transcript_id "YNCL0041C_snoRNA"; gene_name "SNR61"; gene_id "YNCL0041C"; +chrXII SGD gene 794697 794794 . - . gene_id "YNCL0042C"; gene_biotype "ncRNA"; +chrXII SGD transcript 794697 794794 . - . transcript_id "YNCL0042C_snoRNA"; gene_id "YNCL0042C"; gene_name "SNR55"; transcript_biotype "ncRNA"; +chrXII SGD exon 794697 794794 . - . transcript_id "YNCL0042C_snoRNA"; gene_name "SNR55"; gene_id "YNCL0042C"; +chrXII SGD gene 794937 795024 . - . gene_id "YNCL0043C"; gene_biotype "ncRNA"; +chrXII SGD transcript 794937 795024 . - . transcript_id "YNCL0043C_snoRNA"; gene_id "YNCL0043C"; gene_name "SNR57"; transcript_biotype "ncRNA"; +chrXII SGD exon 794937 795024 . - . transcript_id "YNCL0043C_snoRNA"; gene_name "SNR57"; gene_id "YNCL0043C"; +chrXII SGD gene 795397 796496 . - . gene_id "YLR333C"; gene_biotype "protein_coding"; +chrXII SGD transcript 795397 796496 . - . transcript_id "YLR333C_id001"; gene_id "YLR333C"; gene_name "RPS25B"; transcript_biotype "protein_coding"; +chrXII SGD exon 795397 796496 . - . transcript_id "YLR333C_id001"; gene_id "YLR333C"; gene_name "RPS25B"; +chrXII SGD transcript 795573 796335 . - . transcript_id "YLR333C_id002"; gene_id "YLR333C"; gene_name "RPS25B"; transcript_biotype "protein_coding"; +chrXII SGD exon 795573 795899 . - . transcript_id "YLR333C_id002"; gene_name "RPS25B"; gene_id "YLR333C"; +chrXII SGD exon 795913 796335 . - . transcript_id "YLR333C_id002"; gene_name "RPS25B"; gene_id "YLR333C"; +chrXII SGD exon 795573 795899 . - 0 transcript_id "YLR333C_id002"; gene_name "RPS25B"; gene_id "YLR333C"; +chrXII SGD gene 796698 797078 . - . gene_id "YLR334C"; gene_biotype "protein_coding"; +chrXII SGD transcript 796698 797078 . - . transcript_id "YLR334C_mRNA"; gene_id "YLR334C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 796698 797078 . - 0 transcript_id "YLR334C_mRNA"; gene_id "YLR334C"; +chrXII SGD gene 797178 797249 . + . gene_id "YNCL0044W"; gene_biotype "ncRNA"; +chrXII SGD transcript 797178 797249 . + . transcript_id "YNCL0044W_tRNA"; gene_id "YNCL0044W"; transcript_biotype "ncRNA"; +chrXII SGD exon 797178 797249 . + . transcript_id "YNCL0044W_tRNA"; gene_id "YNCL0044W"; +chrXII SGD gene 797400 799777 . + . gene_id "YLR335W"; gene_biotype "protein_coding"; +chrXII SGD transcript 797400 799777 . + . transcript_id "YLR335W_id001"; gene_id "YLR335W"; gene_name "NUP2"; transcript_biotype "protein_coding"; +chrXII SGD exon 797400 799777 . + . transcript_id "YLR335W_id001"; gene_id "YLR335W"; gene_name "NUP2"; +chrXII SGD transcript 797430 799592 . + . transcript_id "YLR335W_id004"; gene_id "YLR335W"; gene_name "NUP2"; transcript_biotype "protein_coding"; +chrXII SGD exon 797430 799592 . + 0 transcript_id "YLR335W_id004"; gene_name "NUP2"; gene_id "YLR335W"; +chrXII SGD gene 799528 802437 . - . gene_id "YLR336C"; gene_biotype "protein_coding"; +chrXII SGD transcript 799528 802437 . - . transcript_id "YLR336C_id001"; gene_id "YLR336C"; gene_name "SGD1"; transcript_biotype "protein_coding"; +chrXII SGD exon 799528 802437 . - . transcript_id "YLR336C_id001"; gene_id "YLR336C"; gene_name "SGD1"; +chrXII SGD transcript 799697 802396 . - . transcript_id "YLR336C_id003"; gene_id "YLR336C"; gene_name "SGD1"; transcript_biotype "protein_coding"; +chrXII SGD exon 799697 802396 . - 0 transcript_id "YLR336C_id003"; gene_name "SGD1"; gene_id "YLR336C"; +chrXII SGD gene 802517 805171 . - . gene_id "YLR337C"; gene_biotype "protein_coding"; +chrXII SGD transcript 802517 805171 . - . transcript_id "YLR337C_id001"; gene_id "YLR337C"; gene_name "VRP1"; transcript_biotype "protein_coding"; +chrXII SGD exon 802517 805171 . - . transcript_id "YLR337C_id001"; gene_id "YLR337C"; gene_name "VRP1"; +chrXII SGD transcript 802653 805106 . - . transcript_id "YLR337C_id005"; gene_id "YLR337C"; gene_name "VRP1"; transcript_biotype "protein_coding"; +chrXII SGD exon 802653 805106 . - 0 transcript_id "YLR337C_id005"; gene_name "VRP1"; gene_id "YLR337C"; +chrXII SGD gene 804346 805203 . + . gene_id "YLR338W"; gene_biotype "protein_coding"; +chrXII SGD transcript 804346 805203 . + . transcript_id "YLR338W_mRNA"; gene_id "YLR338W"; gene_name "OPI9"; transcript_biotype "protein_coding"; +chrXII SGD CDS 804346 805203 . + 0 transcript_id "YLR338W_mRNA"; gene_name "OPI9"; gene_id "YLR338W"; +chrXII SGD gene 805784 806335 . - . gene_id "YLR339C"; gene_biotype "protein_coding"; +chrXII SGD transcript 805784 806335 . - . transcript_id "YLR339C_mRNA"; gene_id "YLR339C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 805784 806335 . - 0 transcript_id "YLR339C_mRNA"; gene_id "YLR339C"; +chrXII SGD gene 805827 807173 . + . gene_id "YLR340W"; gene_biotype "protein_coding"; +chrXII SGD transcript 805827 807173 . + . transcript_id "YLR340W_id001"; gene_id "YLR340W"; gene_name "RPP0"; transcript_biotype "protein_coding"; +chrXII SGD exon 805827 807173 . + . transcript_id "YLR340W_id001"; gene_id "YLR340W"; gene_name "RPP0"; +chrXII SGD transcript 805887 806825 . + . transcript_id "YLR340W_id004"; gene_id "YLR340W"; gene_name "RPP0"; transcript_biotype "protein_coding"; +chrXII SGD exon 805887 806825 . + 0 transcript_id "YLR340W_id004"; gene_name "RPP0"; gene_id "YLR340W"; +chrXII SGD gene 807385 808818 . + . gene_id "YLR341W"; gene_biotype "protein_coding"; +chrXII SGD transcript 807385 808818 . + . transcript_id "YLR341W_mRNA"; gene_id "YLR341W"; gene_name "SPO77"; transcript_biotype "protein_coding"; +chrXII SGD CDS 807385 808818 . + 0 transcript_id "YLR341W_mRNA"; gene_name "SPO77"; gene_id "YLR341W"; +chrXII SGD gene 809997 815627 . + . gene_id "YLR342W"; gene_biotype "protein_coding"; +chrXII SGD transcript 809997 815627 . + . transcript_id "YLR342W_mRNA"; gene_id "YLR342W"; gene_name "FKS1"; transcript_biotype "protein_coding"; +chrXII SGD CDS 809997 815627 . + 0 transcript_id "YLR342W_mRNA"; gene_name "FKS1"; gene_id "YLR342W"; +chrXII SGD gene 814680 816494 . + . gene_id "YLR342W-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 814680 816494 . + . transcript_id "YLR342W-A_id001"; gene_id "YLR342W-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 814680 816494 . + . transcript_id "YLR342W-A_id001"; gene_id "YLR342W-A"; +chrXII SGD transcript 815810 815983 . + . transcript_id "YLR342W-A_id004"; gene_id "YLR342W-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 815810 815983 . + 0 transcript_id "YLR342W-A_id004"; gene_id "YLR342W-A"; +chrXII SGD gene 816094 817761 . + . gene_id "YLR343W"; gene_biotype "protein_coding"; +chrXII SGD transcript 816094 817761 . + . transcript_id "YLR343W_mRNA"; gene_id "YLR343W"; gene_name "GAS2"; transcript_biotype "protein_coding"; +chrXII SGD CDS 816094 817761 . + 0 transcript_id "YLR343W_mRNA"; gene_name "GAS2"; gene_id "YLR343W"; +chrXII SGD gene 818609 818680 . + . gene_id "YNCL0045W"; gene_biotype "ncRNA"; +chrXII SGD transcript 818609 818680 . + . transcript_id "YNCL0045W_tRNA"; gene_id "YNCL0045W"; gene_name "TRR4"; transcript_biotype "ncRNA"; +chrXII SGD exon 818609 818680 . + . transcript_id "YNCL0045W_tRNA"; gene_name "TRR4"; gene_id "YNCL0045W"; +chrXII SGD gene 818849 820242 . + . gene_id "YLR344W"; gene_biotype "protein_coding"; +chrXII SGD transcript 818849 820242 . + . transcript_id "YLR344W_id002"; gene_id "YLR344W"; gene_name "RPL26A"; transcript_biotype "protein_coding"; +chrXII SGD exon 818849 820242 . + . transcript_id "YLR344W_id002"; gene_id "YLR344W"; gene_name "RPL26A"; +chrXII SGD transcript 819312 820142 . + . transcript_id "YLR344W_id001"; gene_id "YLR344W"; gene_name "RPL26A"; transcript_biotype "protein_coding"; +chrXII SGD exon 819312 819330 . + 0 transcript_id "YLR344W_id001"; gene_name "RPL26A"; gene_id "YLR344W"; +chrXII SGD exon 819778 820142 . + 2 transcript_id "YLR344W_id001"; gene_name "RPL26A"; gene_id "YLR344W"; +chrXII SGD gene 820365 822104 . + . gene_id "YLR345W"; gene_biotype "protein_coding"; +chrXII SGD transcript 820365 822104 . + . transcript_id "YLR345W_id004"; gene_id "YLR345W"; transcript_biotype "protein_coding"; +chrXII SGD exon 820365 822104 . + . transcript_id "YLR345W_id004"; gene_id "YLR345W"; +chrXII SGD transcript 820511 822040 . + . transcript_id "YLR345W_id001"; gene_id "YLR345W"; transcript_biotype "protein_coding"; +chrXII SGD exon 820511 822040 . + 0 transcript_id "YLR345W_id001"; gene_id "YLR345W"; +chrXII SGD gene 822134 822762 . - . gene_id "YLR346C"; gene_biotype "protein_coding"; +chrXII SGD transcript 822134 822762 . - . transcript_id "YLR346C_id002"; gene_id "YLR346C"; gene_name "CIS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 822134 822762 . - . transcript_id "YLR346C_id002"; gene_id "YLR346C"; gene_name "CIS1"; +chrXII SGD transcript 822287 822592 . - . transcript_id "YLR346C_id001"; gene_id "YLR346C"; gene_name "CIS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 822287 822592 . - 0 transcript_id "YLR346C_id001"; gene_name "CIS1"; gene_id "YLR346C"; +chrXII SGD gene 823347 826615 . - . gene_id "YLR347C"; gene_biotype "protein_coding"; +chrXII SGD transcript 823347 826615 . - . transcript_id "YLR347C_id001"; gene_id "YLR347C"; gene_name "KAP95"; transcript_biotype "protein_coding"; +chrXII SGD exon 823347 826615 . - . transcript_id "YLR347C_id001"; gene_id "YLR347C"; gene_name "KAP95"; +chrXII SGD transcript 823828 826413 . - . transcript_id "YLR347C_id003"; gene_id "YLR347C"; gene_name "KAP95"; transcript_biotype "protein_coding"; +chrXII SGD exon 823828 826413 . - 0 transcript_id "YLR347C_id003"; gene_name "KAP95"; gene_id "YLR347C"; +chrXII SGD gene 824789 824929 . + . gene_id "YLR347W-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 824789 824929 . + . transcript_id "YLR347W-A_id001"; gene_id "YLR347W-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 824789 824929 . + 0 transcript_id "YLR347W-A_id001"; gene_id "YLR347W-A"; +chrXII SGD gene 826866 827965 . - . gene_id "YLR348C"; gene_biotype "protein_coding"; +chrXII SGD transcript 826866 827965 . - . transcript_id "YLR348C_id004"; gene_id "YLR348C"; gene_name "DIC1"; transcript_biotype "protein_coding"; +chrXII SGD exon 826866 827965 . - . transcript_id "YLR348C_id004"; gene_id "YLR348C"; gene_name "DIC1"; +chrXII SGD transcript 826977 827873 . - . transcript_id "YLR348C_id001"; gene_id "YLR348C"; gene_name "DIC1"; transcript_biotype "protein_coding"; +chrXII SGD exon 826977 827873 . - 0 transcript_id "YLR348C_id001"; gene_name "DIC1"; gene_id "YLR348C"; +chrXII SGD gene 827521 828027 . + . gene_id "YLR349W"; gene_biotype "protein_coding"; +chrXII SGD transcript 827521 828027 . + . transcript_id "YLR349W_mRNA"; gene_id "YLR349W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 827521 828027 . + 0 transcript_id "YLR349W_mRNA"; gene_id "YLR349W"; +chrXII SGD gene 828606 829518 . + . gene_id "YLR350W"; gene_biotype "protein_coding"; +chrXII SGD transcript 828606 829518 . + . transcript_id "YLR350W_id001"; gene_id "YLR350W"; gene_name "ORM2"; transcript_biotype "protein_coding"; +chrXII SGD exon 828606 829518 . + . transcript_id "YLR350W_id001"; gene_id "YLR350W"; gene_name "ORM2"; +chrXII SGD transcript 828730 829380 . + . transcript_id "YLR350W_id002"; gene_id "YLR350W"; gene_name "ORM2"; transcript_biotype "protein_coding"; +chrXII SGD exon 828730 829380 . + 0 transcript_id "YLR350W_id002"; gene_name "ORM2"; gene_id "YLR350W"; +chrXII SGD gene 829301 830402 . - . gene_id "YLR351C"; gene_biotype "protein_coding"; +chrXII SGD transcript 829301 830402 . - . transcript_id "YLR351C_id001"; gene_id "YLR351C"; gene_name "NIT3"; transcript_biotype "protein_coding"; +chrXII SGD exon 829301 830402 . - . transcript_id "YLR351C_id001"; gene_id "YLR351C"; gene_name "NIT3"; +chrXII SGD transcript 829489 830364 . - . transcript_id "YLR351C_id003"; gene_id "YLR351C"; gene_name "NIT3"; transcript_biotype "protein_coding"; +chrXII SGD exon 829489 830364 . - 0 transcript_id "YLR351C_id003"; gene_name "NIT3"; gene_id "YLR351C"; +chrXII SGD gene 830991 833636 . + . gene_id "YLR352W"; gene_biotype "protein_coding"; +chrXII SGD transcript 830991 833636 . + . transcript_id "YLR352W_id001"; gene_id "YLR352W"; gene_name "LUG1"; transcript_biotype "protein_coding"; +chrXII SGD exon 830991 833636 . + . transcript_id "YLR352W_id001"; gene_id "YLR352W"; gene_name "LUG1"; +chrXII SGD transcript 831116 833539 . + . transcript_id "YLR352W_id002"; gene_id "YLR352W"; gene_name "LUG1"; transcript_biotype "protein_coding"; +chrXII SGD exon 831116 833539 . + 0 transcript_id "YLR352W_id002"; gene_name "LUG1"; gene_id "YLR352W"; +chrXII SGD gene 833871 836329 . + . gene_id "YLR353W"; gene_biotype "protein_coding"; +chrXII SGD transcript 833871 836329 . + . transcript_id "YLR353W_id002"; gene_id "YLR353W"; gene_name "BUD8"; transcript_biotype "protein_coding"; +chrXII SGD exon 833871 836329 . + . transcript_id "YLR353W_id002"; gene_id "YLR353W"; gene_name "BUD8"; +chrXII SGD transcript 834352 836163 . + . transcript_id "YLR353W_id001"; gene_id "YLR353W"; gene_name "BUD8"; transcript_biotype "protein_coding"; +chrXII SGD exon 834352 836163 . + 0 transcript_id "YLR353W_id001"; gene_name "BUD8"; gene_id "YLR353W"; +chrXII SGD gene 836181 837429 . - . gene_id "YLR354C"; gene_biotype "protein_coding"; +chrXII SGD transcript 836181 837429 . - . transcript_id "YLR354C_id002"; gene_id "YLR354C"; gene_name "TAL1"; transcript_biotype "protein_coding"; +chrXII SGD exon 836181 837429 . - . transcript_id "YLR354C_id002"; gene_id "YLR354C"; gene_name "TAL1"; +chrXII SGD transcript 836350 837357 . - . transcript_id "YLR354C_id001"; gene_id "YLR354C"; gene_name "TAL1"; transcript_biotype "protein_coding"; +chrXII SGD exon 836350 837357 . - 0 transcript_id "YLR354C_id001"; gene_name "TAL1"; gene_id "YLR354C"; +chrXII SGD gene 837762 839332 . - . gene_id "YLR355C"; gene_biotype "protein_coding"; +chrXII SGD transcript 837762 839332 . - . transcript_id "YLR355C_id007"; gene_id "YLR355C"; gene_name "ILV5"; transcript_biotype "protein_coding"; +chrXII SGD exon 837762 839332 . - . transcript_id "YLR355C_id007"; gene_id "YLR355C"; gene_name "ILV5"; +chrXII SGD transcript 838066 839253 . - . transcript_id "YLR355C_id001"; gene_id "YLR355C"; gene_name "ILV5"; transcript_biotype "protein_coding"; +chrXII SGD exon 838066 839253 . - 0 transcript_id "YLR355C_id001"; gene_name "ILV5"; gene_id "YLR355C"; +chrXII SGD gene 840237 841123 . + . gene_id "YLR356W"; gene_biotype "protein_coding"; +chrXII SGD transcript 840237 841123 . + . transcript_id "YLR356W_id001"; gene_id "YLR356W"; gene_name "ATG33"; transcript_biotype "protein_coding"; +chrXII SGD exon 840237 841123 . + . transcript_id "YLR356W_id001"; gene_id "YLR356W"; gene_name "ATG33"; +chrXII SGD transcript 840321 840914 . + . transcript_id "YLR356W_id002"; gene_id "YLR356W"; gene_name "ATG33"; transcript_biotype "protein_coding"; +chrXII SGD exon 840321 840914 . + 0 transcript_id "YLR356W_id002"; gene_name "ATG33"; gene_id "YLR356W"; +chrXII SGD gene 841275 844191 . + . gene_id "YLR357W"; gene_biotype "protein_coding"; +chrXII SGD transcript 841275 844191 . + . transcript_id "YLR357W_id002"; gene_id "YLR357W"; gene_name "RSC2"; transcript_biotype "protein_coding"; +chrXII SGD exon 841275 844191 . + . transcript_id "YLR357W_id002"; gene_id "YLR357W"; gene_name "RSC2"; +chrXII SGD transcript 841331 844000 . + . transcript_id "YLR357W_id001"; gene_id "YLR357W"; gene_name "RSC2"; transcript_biotype "protein_coding"; +chrXII SGD exon 841331 844000 . + 0 transcript_id "YLR357W_id001"; gene_name "RSC2"; gene_id "YLR357W"; +chrXII SGD gene 843487 844050 . - . gene_id "YLR358C"; gene_biotype "protein_coding"; +chrXII SGD transcript 843487 844050 . - . transcript_id "YLR358C_mRNA"; gene_id "YLR358C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 843487 844050 . - 0 transcript_id "YLR358C_mRNA"; gene_id "YLR358C"; +chrXII SGD gene 844166 845875 . + . gene_id "YLR359W"; gene_biotype "protein_coding"; +chrXII SGD transcript 844166 845875 . + . transcript_id "YLR359W_id006"; gene_id "YLR359W"; gene_name "ADE13"; transcript_biotype "protein_coding"; +chrXII SGD exon 844166 845875 . + . transcript_id "YLR359W_id006"; gene_id "YLR359W"; gene_name "ADE13"; +chrXII SGD transcript 844282 845730 . + . transcript_id "YLR359W_id001"; gene_id "YLR359W"; gene_name "ADE13"; transcript_biotype "protein_coding"; +chrXII SGD exon 844282 845730 . + 0 transcript_id "YLR359W_id001"; gene_name "ADE13"; gene_id "YLR359W"; +chrXII SGD gene 846003 847560 . + . gene_id "YLR360W"; gene_biotype "protein_coding"; +chrXII SGD transcript 846003 847560 . + . transcript_id "YLR360W_id001"; gene_id "YLR360W"; gene_name "VPS38"; transcript_biotype "protein_coding"; +chrXII SGD exon 846003 847560 . + . transcript_id "YLR360W_id001"; gene_id "YLR360W"; gene_name "VPS38"; +chrXII SGD transcript 846103 847422 . + . transcript_id "YLR360W_id002"; gene_id "YLR360W"; gene_name "VPS38"; transcript_biotype "protein_coding"; +chrXII SGD exon 846103 847422 . + 0 transcript_id "YLR360W_id002"; gene_name "VPS38"; gene_id "YLR360W"; +chrXII SGD gene 846908 849145 . - . gene_id "YLR361C"; gene_biotype "protein_coding"; +chrXII SGD transcript 846908 849145 . - . transcript_id "YLR361C_id004"; gene_id "YLR361C"; gene_name "DCR2"; transcript_biotype "protein_coding"; +chrXII SGD exon 846908 849145 . - . transcript_id "YLR361C_id004"; gene_id "YLR361C"; gene_name "DCR2"; +chrXII SGD transcript 847388 849124 . - . transcript_id "YLR361C_id001"; gene_id "YLR361C"; gene_name "DCR2"; transcript_biotype "protein_coding"; +chrXII SGD exon 847388 849124 . - 0 transcript_id "YLR361C_id001"; gene_name "DCR2"; gene_id "YLR361C"; +chrXII SGD gene 849098 849696 . - . gene_id "YLR361C-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 849098 849696 . - . transcript_id "YLR361C-A_id002"; gene_id "YLR361C-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 849098 849696 . - . transcript_id "YLR361C-A_id002"; gene_id "YLR361C-A"; +chrXII SGD transcript 849383 849679 . - . transcript_id "YLR361C-A_id001"; gene_id "YLR361C-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 849383 849679 . - 0 transcript_id "YLR361C-A_id001"; gene_id "YLR361C-A"; +chrXII SGD gene 849801 852135 . + . gene_id "YLR362W"; gene_biotype "protein_coding"; +chrXII SGD transcript 849801 852135 . + . transcript_id "YLR362W_id003"; gene_id "YLR362W"; gene_name "STE11"; transcript_biotype "protein_coding"; +chrXII SGD exon 849801 852135 . + . transcript_id "YLR362W_id003"; gene_id "YLR362W"; gene_name "STE11"; +chrXII SGD transcript 849866 852019 . + . transcript_id "YLR362W_id001"; gene_id "YLR362W"; gene_name "STE11"; transcript_biotype "protein_coding"; +chrXII SGD exon 849866 852019 . + 0 transcript_id "YLR362W_id001"; gene_name "STE11"; gene_id "YLR362W"; +chrXII SGD gene 851950 853230 . - . gene_id "YLR363C"; gene_biotype "protein_coding"; +chrXII SGD transcript 851950 853230 . - . transcript_id "YLR363C_id001"; gene_id "YLR363C"; gene_name "NMD4"; transcript_biotype "protein_coding"; +chrXII SGD exon 851950 853230 . - . transcript_id "YLR363C_id001"; gene_id "YLR363C"; gene_name "NMD4"; +chrXII SGD transcript 852495 853151 . - . transcript_id "YLR363C_id002"; gene_id "YLR363C"; gene_name "NMD4"; transcript_biotype "protein_coding"; +chrXII SGD exon 852495 853151 . - 0 transcript_id "YLR363C_id002"; gene_name "NMD4"; gene_id "YLR363C"; +chrXII SGD gene 853433 854108 . + . gene_id "YLR363W-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 853433 854108 . + . transcript_id "YLR363W-A_id001"; gene_id "YLR363W-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 853433 854108 . + . transcript_id "YLR363W-A_id001"; gene_id "YLR363W-A"; +chrXII SGD transcript 853461 853718 . + . transcript_id "YLR363W-A_id002"; gene_id "YLR363W-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 853461 853718 . + 0 transcript_id "YLR363W-A_id002"; gene_id "YLR363W-A"; +chrXII SGD gene 853953 854800 . + . gene_id "YLR364W"; gene_biotype "protein_coding"; +chrXII SGD transcript 853953 854800 . + . transcript_id "YLR364W_id001"; gene_id "YLR364W"; gene_name "GRX8"; transcript_biotype "protein_coding"; +chrXII SGD exon 853953 854800 . + . transcript_id "YLR364W_id001"; gene_id "YLR364W"; gene_name "GRX8"; +chrXII SGD transcript 854062 854391 . + . transcript_id "YLR364W_id003"; gene_id "YLR364W"; gene_name "GRX8"; transcript_biotype "protein_coding"; +chrXII SGD exon 854062 854391 . + 0 transcript_id "YLR364W_id003"; gene_name "GRX8"; gene_id "YLR364W"; +chrXII SGD gene 855199 855531 . + . gene_id "YLR365W"; gene_biotype "protein_coding"; +chrXII SGD transcript 855199 855531 . + . transcript_id "YLR365W_mRNA"; gene_id "YLR365W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 855199 855531 . + 0 transcript_id "YLR365W_mRNA"; gene_id "YLR365W"; +chrXII SGD gene 855523 855645 . - . gene_id "YLR364C-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 855523 855645 . - . transcript_id "YLR364C-A_mRNA"; gene_id "YLR364C-A"; transcript_biotype "protein_coding"; +chrXII SGD CDS 855523 855645 . - 0 transcript_id "YLR364C-A_mRNA"; gene_id "YLR364C-A"; +chrXII SGD gene 855538 855843 . + . gene_id "YLR366W"; gene_biotype "protein_coding"; +chrXII SGD transcript 855538 855843 . + . transcript_id "YLR366W_mRNA"; gene_id "YLR366W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 855538 855843 . + 0 transcript_id "YLR366W_mRNA"; gene_id "YLR366W"; +chrXII SGD gene 855837 857544 . + . gene_id "YLR367W"; gene_biotype "protein_coding"; +chrXII SGD transcript 855837 857544 . + . transcript_id "YLR367W_id001"; gene_id "YLR367W"; gene_name "RPS22B"; transcript_biotype "protein_coding"; +chrXII SGD exon 855837 857544 . + . transcript_id "YLR367W_id001"; gene_id "YLR367W"; gene_name "RPS22B"; +chrXII SGD transcript 855878 857317 . + . transcript_id "YLR367W_id005"; gene_id "YLR367W"; gene_name "RPS22B"; transcript_biotype "protein_coding"; +chrXII SGD exon 855878 856434 . + . transcript_id "YLR367W_id005"; gene_name "RPS22B"; gene_id "YLR367W"; +chrXII SGD exon 856442 856574 . + . transcript_id "YLR367W_id005"; gene_name "RPS22B"; gene_id "YLR367W"; +chrXII SGD exon 857058 857317 . + . transcript_id "YLR367W_id005"; gene_name "RPS22B"; gene_id "YLR367W"; +chrXII SGD exon 856442 856574 . + 0 transcript_id "YLR367W_id005"; gene_name "RPS22B"; gene_id "YLR367W"; +chrXII SGD exon 857058 857317 . + 2 transcript_id "YLR367W_id005"; gene_name "RPS22B"; gene_id "YLR367W"; +chrXII SGD gene 856710 856920 . + . gene_id "YNCL0046W"; gene_biotype "ncRNA"; +chrXII SGD transcript 856710 856920 . + . transcript_id "YNCL0046W_snoRNA"; gene_id "YNCL0046W"; gene_name "SNR44"; transcript_biotype "ncRNA"; +chrXII SGD exon 856710 856920 . + . transcript_id "YNCL0046W_snoRNA"; gene_name "SNR44"; gene_id "YNCL0046W"; +chrXII SGD gene 857486 859380 . + . gene_id "YLR368W"; gene_biotype "protein_coding"; +chrXII SGD transcript 857486 859380 . + . transcript_id "YLR368W_id003"; gene_id "YLR368W"; gene_name "MDM30"; transcript_biotype "protein_coding"; +chrXII SGD exon 857486 859380 . + . transcript_id "YLR368W_id003"; gene_id "YLR368W"; gene_name "MDM30"; +chrXII SGD transcript 857540 859336 . + . transcript_id "YLR368W_id001"; gene_id "YLR368W"; gene_name "MDM30"; transcript_biotype "protein_coding"; +chrXII SGD exon 857540 859336 . + 0 transcript_id "YLR368W_id001"; gene_name "MDM30"; gene_id "YLR368W"; +chrXII SGD gene 859552 861525 . + . gene_id "YLR369W"; gene_biotype "protein_coding"; +chrXII SGD transcript 859552 861525 . + . transcript_id "YLR369W_id001"; gene_id "YLR369W"; gene_name "SSQ1"; transcript_biotype "protein_coding"; +chrXII SGD exon 859552 861525 . + 0 transcript_id "YLR369W_id001"; gene_name "SSQ1"; gene_id "YLR369W"; +chrXII SGD gene 861470 862297 . - . gene_id "YLR370C"; gene_biotype "protein_coding"; +chrXII SGD transcript 861470 862297 . - . transcript_id "YLR370C_id003"; gene_id "YLR370C"; gene_name "ARC18"; transcript_biotype "protein_coding"; +chrXII SGD exon 861470 862297 . - . transcript_id "YLR370C_id003"; gene_id "YLR370C"; gene_name "ARC18"; +chrXII SGD transcript 861718 862254 . - . transcript_id "YLR370C_id001"; gene_id "YLR370C"; gene_name "ARC18"; transcript_biotype "protein_coding"; +chrXII SGD exon 861718 862254 . - 0 transcript_id "YLR370C_id001"; gene_name "ARC18"; gene_id "YLR370C"; +chrXII SGD gene 862714 866784 . + . gene_id "YLR371W"; gene_biotype "protein_coding"; +chrXII SGD transcript 862714 866784 . + . transcript_id "YLR371W_mRNA"; gene_id "YLR371W"; gene_name "ROM2"; transcript_biotype "protein_coding"; +chrXII SGD CDS 862714 866784 . + 0 transcript_id "YLR371W_mRNA"; gene_name "ROM2"; gene_id "YLR371W"; +chrXII SGD gene 867137 868650 . + . gene_id "YLR372W"; gene_biotype "protein_coding"; +chrXII SGD transcript 867137 868650 . + . transcript_id "YLR372W_id004"; gene_id "YLR372W"; gene_name "ELO3"; transcript_biotype "protein_coding"; +chrXII SGD exon 867137 868650 . + . transcript_id "YLR372W_id004"; gene_id "YLR372W"; gene_name "ELO3"; +chrXII SGD transcript 867354 868391 . + . transcript_id "YLR372W_id001"; gene_id "YLR372W"; gene_name "ELO3"; transcript_biotype "protein_coding"; +chrXII SGD exon 867354 868391 . + 0 transcript_id "YLR372W_id001"; gene_name "ELO3"; gene_id "YLR372W"; +chrXII SGD gene 868583 871398 . - . gene_id "YLR373C"; gene_biotype "protein_coding"; +chrXII SGD transcript 868583 871398 . - . transcript_id "YLR373C_id002"; gene_id "YLR373C"; gene_name "VID22"; transcript_biotype "protein_coding"; +chrXII SGD exon 868583 871398 . - . transcript_id "YLR373C_id002"; gene_id "YLR373C"; gene_name "VID22"; +chrXII SGD transcript 868662 871367 . - . transcript_id "YLR373C_id001"; gene_id "YLR373C"; gene_name "VID22"; transcript_biotype "protein_coding"; +chrXII SGD exon 868662 871367 . - 0 transcript_id "YLR373C_id001"; gene_name "VID22"; gene_id "YLR373C"; +chrXII SGD gene 871453 871842 . - . gene_id "YLR374C"; gene_biotype "protein_coding"; +chrXII SGD transcript 871453 871842 . - . transcript_id "YLR374C_mRNA"; gene_id "YLR374C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 871453 871842 . - 0 transcript_id "YLR374C_mRNA"; gene_id "YLR374C"; +chrXII SGD gene 871607 872827 . + . gene_id "YLR375W"; gene_biotype "protein_coding"; +chrXII SGD transcript 871607 872827 . + . transcript_id "YLR375W_id007"; gene_id "YLR375W"; gene_name "STP3"; transcript_biotype "protein_coding"; +chrXII SGD exon 871607 872827 . + . transcript_id "YLR375W_id007"; gene_id "YLR375W"; gene_name "STP3"; +chrXII SGD transcript 871697 872728 . + . transcript_id "YLR375W_id001"; gene_id "YLR375W"; gene_name "STP3"; transcript_biotype "protein_coding"; +chrXII SGD exon 871697 872728 . + 0 transcript_id "YLR375W_id001"; gene_name "STP3"; gene_id "YLR375W"; +chrXII SGD gene 872731 873622 . - . gene_id "YLR376C"; gene_biotype "protein_coding"; +chrXII SGD transcript 872731 873622 . - . transcript_id "YLR376C_id006"; gene_id "YLR376C"; gene_name "PSY3"; transcript_biotype "protein_coding"; +chrXII SGD exon 872731 873622 . - . transcript_id "YLR376C_id006"; gene_id "YLR376C"; gene_name "PSY3"; +chrXII SGD transcript 872826 873554 . - . transcript_id "YLR376C_id001"; gene_id "YLR376C"; gene_name "PSY3"; transcript_biotype "protein_coding"; +chrXII SGD exon 872826 873554 . - 0 transcript_id "YLR376C_id001"; gene_name "PSY3"; gene_id "YLR376C"; +chrXII SGD gene 873746 874792 . - . gene_id "YLR377C"; gene_biotype "protein_coding"; +chrXII SGD transcript 873746 874792 . - . transcript_id "YLR377C_mRNA"; gene_id "YLR377C"; gene_name "FBP1"; transcript_biotype "protein_coding"; +chrXII SGD CDS 873746 874792 . - 0 transcript_id "YLR377C_mRNA"; gene_name "FBP1"; gene_id "YLR377C"; +chrXII SGD gene 875376 875471 . + . gene_id "YNCL0047W"; gene_biotype "ncRNA"; +chrXII SGD transcript 875376 875471 . + . transcript_id "YNCL0047W_tRNA"; gene_id "YNCL0047W"; transcript_biotype "ncRNA"; +chrXII SGD exon 875376 875412 . + . transcript_id "YNCL0047W_tRNA"; gene_id "YNCL0047W"; +chrXII SGD exon 875436 875471 . + . transcript_id "YNCL0047W_tRNA"; gene_id "YNCL0047W"; +chrXII SGD gene 875736 877178 . - . gene_id "YLR378C"; gene_biotype "protein_coding"; +chrXII SGD transcript 875736 877178 . - . transcript_id "YLR378C_id001"; gene_id "YLR378C"; gene_name "SEC61"; transcript_biotype "protein_coding"; +chrXII SGD exon 875736 877178 . - 0 transcript_id "YLR378C_id001"; gene_name "SEC61"; gene_id "YLR378C"; +chrXII SGD gene 876922 877296 . + . gene_id "YLR379W"; gene_biotype "protein_coding"; +chrXII SGD transcript 876922 877296 . + . transcript_id "YLR379W_mRNA"; gene_id "YLR379W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 876922 877296 . + 0 transcript_id "YLR379W_mRNA"; gene_id "YLR379W"; +chrXII SGD gene 877444 877716 . + . gene_id "YLR379W-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 877444 877716 . + . transcript_id "YLR379W-A_mRNA"; gene_id "YLR379W-A"; transcript_biotype "protein_coding"; +chrXII SGD CDS 877444 877716 . + 0 transcript_id "YLR379W-A_mRNA"; gene_id "YLR379W-A"; +chrXII SGD gene 877651 879643 . + . gene_id "YLR380W"; gene_biotype "protein_coding"; +chrXII SGD transcript 877651 879643 . + . transcript_id "YLR380W_id001"; gene_id "YLR380W"; gene_name "CSR1"; transcript_biotype "protein_coding"; +chrXII SGD exon 877651 879643 . + . transcript_id "YLR380W_id001"; gene_id "YLR380W"; gene_name "CSR1"; +chrXII SGD transcript 878282 879508 . + . transcript_id "YLR380W_id002"; gene_id "YLR380W"; gene_name "CSR1"; transcript_biotype "protein_coding"; +chrXII SGD exon 878282 879508 . + 0 transcript_id "YLR380W_id002"; gene_name "CSR1"; gene_id "YLR380W"; +chrXII SGD gene 879723 881924 . + . gene_id "YLR381W"; gene_biotype "protein_coding"; +chrXII SGD transcript 879723 881924 . + . transcript_id "YLR381W_mRNA"; gene_id "YLR381W"; gene_name "CTF3"; transcript_biotype "protein_coding"; +chrXII SGD CDS 879723 881924 . + 0 transcript_id "YLR381W_mRNA"; gene_name "CTF3"; gene_id "YLR381W"; +chrXII SGD gene 881986 884833 . - . gene_id "YLR382C"; gene_biotype "protein_coding"; +chrXII SGD transcript 881986 884833 . - . transcript_id "YLR382C_id003"; gene_id "YLR382C"; gene_name "NAM2"; transcript_biotype "protein_coding"; +chrXII SGD exon 881986 884833 . - . transcript_id "YLR382C_id003"; gene_id "YLR382C"; gene_name "NAM2"; +chrXII SGD transcript 882067 884751 . - . transcript_id "YLR382C_id001"; gene_id "YLR382C"; gene_name "NAM2"; transcript_biotype "protein_coding"; +chrXII SGD exon 882067 884751 . - 0 transcript_id "YLR382C_id001"; gene_name "NAM2"; gene_id "YLR382C"; +chrXII SGD gene 885288 888632 . + . gene_id "YLR383W"; gene_biotype "protein_coding"; +chrXII SGD transcript 885288 888632 . + . transcript_id "YLR383W_mRNA"; gene_id "YLR383W"; gene_name "SMC6"; transcript_biotype "protein_coding"; +chrXII SGD CDS 885288 888632 . + 0 transcript_id "YLR383W_mRNA"; gene_name "SMC6"; gene_id "YLR383W"; +chrXII SGD gene 888851 892900 . - . gene_id "YLR384C"; gene_biotype "protein_coding"; +chrXII SGD transcript 888851 892900 . - . transcript_id "YLR384C_mRNA"; gene_id "YLR384C"; gene_name "IKI3"; transcript_biotype "protein_coding"; +chrXII SGD CDS 888851 892900 . - 0 transcript_id "YLR384C_mRNA"; gene_name "IKI3"; gene_id "YLR384C"; +chrXII SGD gene 892992 893390 . - . gene_id "YLR385C"; gene_biotype "protein_coding"; +chrXII SGD transcript 892992 893390 . - . transcript_id "YLR385C_id001"; gene_id "YLR385C"; gene_name "SWC7"; transcript_biotype "protein_coding"; +chrXII SGD exon 892992 893390 . - 0 transcript_id "YLR385C_id001"; gene_name "SWC7"; gene_id "YLR385C"; +chrXII SGD gene 893571 896430 . + . gene_id "YLR386W"; gene_biotype "protein_coding"; +chrXII SGD transcript 893571 896430 . + . transcript_id "YLR386W_id002"; gene_id "YLR386W"; gene_name "VAC14"; transcript_biotype "protein_coding"; +chrXII SGD exon 893571 896430 . + . transcript_id "YLR386W_id002"; gene_id "YLR386W"; gene_name "VAC14"; +chrXII SGD transcript 893628 896270 . + . transcript_id "YLR386W_id001"; gene_id "YLR386W"; gene_name "VAC14"; transcript_biotype "protein_coding"; +chrXII SGD exon 893628 896270 . + 0 transcript_id "YLR386W_id001"; gene_name "VAC14"; gene_id "YLR386W"; +chrXII SGD gene 895957 897769 . - . gene_id "YLR387C"; gene_biotype "protein_coding"; +chrXII SGD transcript 895957 897769 . - . transcript_id "YLR387C_id001"; gene_id "YLR387C"; gene_name "REH1"; transcript_biotype "protein_coding"; +chrXII SGD exon 895957 897769 . - . transcript_id "YLR387C_id001"; gene_id "YLR387C"; gene_name "REH1"; +chrXII SGD transcript 896374 897672 . - . transcript_id "YLR387C_id002"; gene_id "YLR387C"; gene_name "REH1"; transcript_biotype "protein_coding"; +chrXII SGD exon 896374 897672 . - 0 transcript_id "YLR387C_id002"; gene_name "REH1"; gene_id "YLR387C"; +chrXII SGD gene 898006 898962 . + . gene_id "YLR388W"; gene_biotype "protein_coding"; +chrXII SGD transcript 898006 898962 . + . transcript_id "YLR388W_id001"; gene_id "YLR388W"; gene_name "RPS29A"; transcript_biotype "protein_coding"; +chrXII SGD exon 898006 898962 . + . transcript_id "YLR388W_id001"; gene_id "YLR388W"; gene_name "RPS29A"; +chrXII SGD transcript 898158 898821 . + . transcript_id "YLR388W_id002"; gene_id "YLR388W"; gene_name "RPS29A"; transcript_biotype "protein_coding"; +chrXII SGD exon 898158 898645 . + . transcript_id "YLR388W_id002"; gene_name "RPS29A"; gene_id "YLR388W"; +chrXII SGD exon 898651 898821 . + . transcript_id "YLR388W_id002"; gene_name "RPS29A"; gene_id "YLR388W"; +chrXII SGD exon 898651 898821 . + 0 transcript_id "YLR388W_id002"; gene_name "RPS29A"; gene_id "YLR388W"; +chrXII SGD gene 898899 903675 . + . gene_id "YLR390W"; gene_biotype "protein_coding"; +chrXII SGD transcript 898899 903675 . + . transcript_id "YLR390W_id003"; gene_id "YLR390W"; gene_name "ECM19"; transcript_biotype "protein_coding"; +chrXII SGD exon 898899 903675 . + . transcript_id "YLR390W_id003"; gene_id "YLR390W"; gene_name "ECM19"; +chrXII SGD gene 899180 899382 . + . gene_id "YNCL0048W"; gene_biotype "ncRNA"; +chrXII SGD transcript 899180 899382 . + . transcript_id "YNCL0048W_snoRNA"; gene_id "YNCL0048W"; gene_name "SNR34"; transcript_biotype "ncRNA"; +chrXII SGD exon 899180 899382 . + . transcript_id "YNCL0048W_snoRNA"; gene_name "SNR34"; gene_id "YNCL0048W"; +chrXII SGD gene 899577 902660 . - . gene_id "YLR389C"; gene_biotype "protein_coding"; +chrXII SGD transcript 899577 902660 . - . transcript_id "YLR389C_id001"; gene_id "YLR389C"; gene_name "STE23"; transcript_biotype "protein_coding"; +chrXII SGD exon 899577 902660 . - 0 transcript_id "YLR389C_id001"; gene_name "STE23"; gene_id "YLR389C"; +chrXII SGD transcript 903066 903404 . + . transcript_id "YLR390W_id001"; gene_id "YLR390W"; gene_name "ECM19"; transcript_biotype "protein_coding"; +chrXII SGD exon 903066 903404 . + 0 transcript_id "YLR390W_id001"; gene_name "ECM19"; gene_id "YLR390W"; +chrXII SGD gene 903685 905047 . + . gene_id "YLR390W-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 903685 905047 . + . transcript_id "YLR390W-A_id001"; gene_id "YLR390W-A"; gene_name "CCW14"; transcript_biotype "protein_coding"; +chrXII SGD exon 903685 905047 . + . transcript_id "YLR390W-A_id001"; gene_id "YLR390W-A"; gene_name "CCW14"; +chrXII SGD transcript 903724 904440 . + . transcript_id "YLR390W-A_id002"; gene_id "YLR390W-A"; gene_name "CCW14"; transcript_biotype "protein_coding"; +chrXII SGD exon 903724 904440 . + 0 transcript_id "YLR390W-A_id002"; gene_name "CCW14"; gene_id "YLR390W-A"; +chrXII SGD gene 904657 906693 . - . gene_id "YLR392C"; gene_biotype "protein_coding"; +chrXII SGD transcript 904657 906693 . - . transcript_id "YLR392C_id003"; gene_id "YLR392C"; gene_name "ART10"; transcript_biotype "protein_coding"; +chrXII SGD exon 904657 906693 . - . transcript_id "YLR392C_id003"; gene_id "YLR392C"; gene_name "ART10"; +chrXII SGD transcript 904749 906305 . - . transcript_id "YLR392C_id001"; gene_id "YLR392C"; gene_name "ART10"; transcript_biotype "protein_coding"; +chrXII SGD exon 904749 906305 . - 0 transcript_id "YLR392C_id001"; gene_name "ART10"; gene_id "YLR392C"; +chrXII SGD gene 907023 909050 . + . gene_id "YLR393W"; gene_biotype "protein_coding"; +chrXII SGD transcript 907023 909050 . + . transcript_id "YLR393W_id001"; gene_id "YLR393W"; gene_name "ATP10"; transcript_biotype "protein_coding"; +chrXII SGD exon 907023 909050 . + . transcript_id "YLR393W_id001"; gene_id "YLR393W"; gene_name "ATP10"; +chrXII SGD transcript 907079 907918 . + . transcript_id "YLR393W_id003"; gene_id "YLR393W"; gene_name "ATP10"; transcript_biotype "protein_coding"; +chrXII SGD exon 907079 907918 . + 0 transcript_id "YLR393W_id003"; gene_name "ATP10"; gene_id "YLR393W"; +chrXII SGD gene 907322 909491 . + . gene_id "YLR394W"; gene_biotype "protein_coding"; +chrXII SGD transcript 907322 909491 . + . transcript_id "YLR394W_id002"; gene_id "YLR394W"; gene_name "CST9"; transcript_biotype "protein_coding"; +chrXII SGD exon 907322 909491 . + . transcript_id "YLR394W_id002"; gene_id "YLR394W"; gene_name "CST9"; +chrXII SGD transcript 907950 909398 . + . transcript_id "YLR394W_id001"; gene_id "YLR394W"; gene_name "CST9"; transcript_biotype "protein_coding"; +chrXII SGD exon 907950 909398 . + 0 transcript_id "YLR394W_id001"; gene_name "CST9"; gene_id "YLR394W"; +chrXII SGD gene 909458 910600 . - . gene_id "YLR395C"; gene_biotype "protein_coding"; +chrXII SGD transcript 909458 910600 . - . transcript_id "YLR395C_id001"; gene_id "YLR395C"; gene_name "COX8"; transcript_biotype "protein_coding"; +chrXII SGD exon 909458 910600 . - . transcript_id "YLR395C_id001"; gene_id "YLR395C"; gene_name "COX8"; +chrXII SGD transcript 909729 909965 . - . transcript_id "YLR395C_id003"; gene_id "YLR395C"; gene_name "COX8"; transcript_biotype "protein_coding"; +chrXII SGD exon 909729 909965 . - 0 transcript_id "YLR395C_id003"; gene_name "COX8"; gene_id "YLR395C"; +chrXII SGD gene 910013 912364 . - . gene_id "YLR396C"; gene_biotype "protein_coding"; +chrXII SGD transcript 910013 912364 . - . transcript_id "YLR396C_id003"; gene_id "YLR396C"; gene_name "VPS33"; transcript_biotype "protein_coding"; +chrXII SGD exon 910013 912364 . - . transcript_id "YLR396C_id003"; gene_id "YLR396C"; gene_name "VPS33"; +chrXII SGD transcript 910235 912310 . - . transcript_id "YLR396C_id001"; gene_id "YLR396C"; gene_name "VPS33"; transcript_biotype "protein_coding"; +chrXII SGD exon 910235 912310 . - 0 transcript_id "YLR396C_id001"; gene_name "VPS33"; gene_id "YLR396C"; +chrXII SGD gene 912407 915014 . - . gene_id "YLR397C"; gene_biotype "protein_coding"; +chrXII SGD transcript 912407 915014 . - . transcript_id "YLR397C_id001"; gene_id "YLR397C"; gene_name "AFG2"; transcript_biotype "protein_coding"; +chrXII SGD exon 912407 915014 . - . transcript_id "YLR397C_id001"; gene_id "YLR397C"; gene_name "AFG2"; +chrXII SGD transcript 912550 914892 . - . transcript_id "YLR397C_id004"; gene_id "YLR397C"; gene_name "AFG2"; transcript_biotype "protein_coding"; +chrXII SGD exon 912550 914892 . - 0 transcript_id "YLR397C_id004"; gene_name "AFG2"; gene_id "YLR397C"; +chrXII SGD gene 914951 919049 . - . gene_id "YLR398C"; gene_biotype "protein_coding"; +chrXII SGD transcript 914951 919049 . - . transcript_id "YLR398C_id001"; gene_id "YLR398C"; gene_name "SKI2"; transcript_biotype "protein_coding"; +chrXII SGD exon 914951 919049 . - . transcript_id "YLR398C_id001"; gene_id "YLR398C"; gene_name "SKI2"; +chrXII SGD transcript 915156 919019 . - . transcript_id "YLR398C_id002"; gene_id "YLR398C"; gene_name "SKI2"; transcript_biotype "protein_coding"; +chrXII SGD exon 915156 919019 . - 0 transcript_id "YLR398C_id002"; gene_name "SKI2"; gene_id "YLR398C"; +chrXII SGD gene 919220 921646 . - . gene_id "YLR399C"; gene_biotype "protein_coding"; +chrXII SGD transcript 919220 921646 . - . transcript_id "YLR399C_id007"; gene_id "YLR399C"; gene_name "BDF1"; transcript_biotype "protein_coding"; +chrXII SGD exon 919220 921646 . - . transcript_id "YLR399C_id007"; gene_id "YLR399C"; gene_name "BDF1"; +chrXII SGD transcript 919536 921596 . - . transcript_id "YLR399C_id001"; gene_id "YLR399C"; gene_name "BDF1"; transcript_biotype "protein_coding"; +chrXII SGD exon 919536 921596 . - 0 transcript_id "YLR399C_id001"; gene_name "BDF1"; gene_id "YLR399C"; +chrXII SGD gene 920147 924493 . - . gene_id "YLR401C"; gene_biotype "protein_coding"; +chrXII SGD transcript 920147 924493 . - . transcript_id "YLR401C_id001"; gene_id "YLR401C"; gene_name "DUS3"; transcript_biotype "protein_coding"; +chrXII SGD exon 920147 924493 . - . transcript_id "YLR401C_id001"; gene_id "YLR401C"; gene_name "DUS3"; +chrXII SGD gene 920869 920973 . + . gene_id "YLR399W-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 920869 920973 . + . transcript_id "YLR399W-A_mRNA"; gene_id "YLR399W-A"; transcript_biotype "protein_coding"; +chrXII SGD CDS 920869 920973 . + 0 transcript_id "YLR399W-A_mRNA"; gene_id "YLR399W-A"; +chrXII SGD gene 922063 922536 . + . gene_id "YLR400W"; gene_biotype "protein_coding"; +chrXII SGD transcript 922063 922536 . + . transcript_id "YLR400W_id001"; gene_id "YLR400W"; transcript_biotype "protein_coding"; +chrXII SGD exon 922063 922536 . + 0 transcript_id "YLR400W_id001"; gene_id "YLR400W"; +chrXII SGD transcript 922442 924448 . - . transcript_id "YLR401C_id002"; gene_id "YLR401C"; gene_name "DUS3"; transcript_biotype "protein_coding"; +chrXII SGD exon 922442 924448 . - 0 transcript_id "YLR401C_id002"; gene_name "DUS3"; gene_id "YLR401C"; +chrXII SGD gene 924889 925080 . + . gene_id "YLR402W"; gene_biotype "protein_coding"; +chrXII SGD transcript 924889 925080 . + . transcript_id "YLR402W_mRNA"; gene_id "YLR402W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 924889 925080 . + 0 transcript_id "YLR402W_mRNA"; gene_id "YLR402W"; +chrXII SGD gene 925568 927619 . + . gene_id "YLR403W"; gene_biotype "protein_coding"; +chrXII SGD transcript 925568 927619 . + . transcript_id "YLR403W_mRNA"; gene_id "YLR403W"; gene_name "SFP1"; transcript_biotype "protein_coding"; +chrXII SGD CDS 925568 927619 . + 0 transcript_id "YLR403W_mRNA"; gene_name "SFP1"; gene_id "YLR403W"; +chrXII SGD gene 928706 929808 . + . gene_id "YLR404W"; gene_biotype "protein_coding"; +chrXII SGD transcript 928706 929808 . + . transcript_id "YLR404W_id001"; gene_id "YLR404W"; gene_name "SEI1"; transcript_biotype "protein_coding"; +chrXII SGD exon 928706 929808 . + . transcript_id "YLR404W_id001"; gene_id "YLR404W"; gene_name "SEI1"; +chrXII SGD transcript 928743 929600 . + . transcript_id "YLR404W_id005"; gene_id "YLR404W"; gene_name "SEI1"; transcript_biotype "protein_coding"; +chrXII SGD exon 928743 929600 . + 0 transcript_id "YLR404W_id005"; gene_name "SEI1"; gene_id "YLR404W"; +chrXII SGD gene 929050 931040 . + . gene_id "YLR405W"; gene_biotype "protein_coding"; +chrXII SGD transcript 929050 931040 . + . transcript_id "YLR405W_id001"; gene_id "YLR405W"; gene_name "DUS4"; transcript_biotype "protein_coding"; +chrXII SGD exon 929050 931040 . + . transcript_id "YLR405W_id001"; gene_id "YLR405W"; gene_name "DUS4"; +chrXII SGD transcript 929789 930892 . + . transcript_id "YLR405W_id002"; gene_id "YLR405W"; gene_name "DUS4"; transcript_biotype "protein_coding"; +chrXII SGD exon 929789 930892 . + 0 transcript_id "YLR405W_id002"; gene_name "DUS4"; gene_id "YLR405W"; +chrXII SGD gene 930882 932008 . - . gene_id "YLR406C"; gene_biotype "protein_coding"; +chrXII SGD transcript 930882 932008 . - . transcript_id "YLR406C_id002"; gene_id "YLR406C"; gene_name "RPL31B"; transcript_biotype "protein_coding"; +chrXII SGD exon 930882 932008 . - . transcript_id "YLR406C_id002"; gene_id "YLR406C"; gene_name "RPL31B"; +chrXII SGD transcript 931065 931755 . - . transcript_id "YLR406C_id001"; gene_id "YLR406C"; gene_name "RPL31B"; transcript_biotype "protein_coding"; +chrXII SGD exon 931065 931349 . - 0 transcript_id "YLR406C_id001"; gene_name "RPL31B"; gene_id "YLR406C"; +chrXII SGD exon 931699 931755 . - 0 transcript_id "YLR406C_id001"; gene_name "RPL31B"; gene_id "YLR406C"; +chrXII SGD gene 932206 932355 . - . gene_id "YLR406C-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 932206 932355 . - . transcript_id "YLR406C-A_id001"; gene_id "YLR406C-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 932206 932355 . - 0 transcript_id "YLR406C-A_id001"; gene_id "YLR406C-A"; +chrXII SGD gene 932719 933891 . + . gene_id "YLR407W"; gene_biotype "protein_coding"; +chrXII SGD transcript 932719 933891 . + . transcript_id "YLR407W_id002"; gene_id "YLR407W"; transcript_biotype "protein_coding"; +chrXII SGD exon 932719 933891 . + . transcript_id "YLR407W_id002"; gene_id "YLR407W"; +chrXII SGD transcript 932967 933653 . + . transcript_id "YLR407W_id001"; gene_id "YLR407W"; transcript_biotype "protein_coding"; +chrXII SGD exon 932967 933653 . + 0 transcript_id "YLR407W_id001"; gene_id "YLR407W"; +chrXII SGD gene 933781 934272 . - . gene_id "YLR408C"; gene_biotype "protein_coding"; +chrXII SGD transcript 933781 934272 . - . transcript_id "YLR408C_id002"; gene_id "YLR408C"; gene_name "BLS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 933781 934272 . - . transcript_id "YLR408C_id002"; gene_id "YLR408C"; gene_name "BLS1"; +chrXII SGD transcript 933885 934253 . - . transcript_id "YLR408C_id001"; gene_id "YLR408C"; gene_name "BLS1"; transcript_biotype "protein_coding"; +chrXII SGD exon 933885 934253 . - 0 transcript_id "YLR408C_id001"; gene_name "BLS1"; gene_id "YLR408C"; +chrXII SGD gene 934306 937280 . - . gene_id "YLR409C"; gene_biotype "protein_coding"; +chrXII SGD transcript 934306 937280 . - . transcript_id "YLR409C_id001"; gene_id "YLR409C"; gene_name "UTP21"; transcript_biotype "protein_coding"; +chrXII SGD exon 934306 937280 . - . transcript_id "YLR409C_id001"; gene_id "YLR409C"; gene_name "UTP21"; +chrXII SGD transcript 934414 937233 . - . transcript_id "YLR409C_id002"; gene_id "YLR409C"; gene_name "UTP21"; transcript_biotype "protein_coding"; +chrXII SGD exon 934414 937233 . - 0 transcript_id "YLR409C_id002"; gene_name "UTP21"; gene_id "YLR409C"; +chrXII SGD gene 937541 940981 . + . gene_id "YLR410W"; gene_biotype "protein_coding"; +chrXII SGD transcript 937541 940981 . + . transcript_id "YLR410W_id001"; gene_id "YLR410W"; gene_name "VIP1"; transcript_biotype "protein_coding"; +chrXII SGD exon 937541 940981 . + 0 transcript_id "YLR410W_id001"; gene_name "VIP1"; gene_id "YLR410W"; +chrXII SGD gene 941483 942799 . + . gene_id "YLR410W-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 941483 942799 . + . transcript_id "YLR410W-A_dummy"; gene_id "YLR410W-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 941483 942799 . + 0 transcript_id "YLR410W-A_dummy"; gene_id "YLR410W-A"; +chrXII SGD gene 941483 946796 . + . gene_id "YLR410W-B"; gene_biotype "protein_coding"; +chrXII SGD transcript 941483 946796 . + . transcript_id "YLR410W-B_dummy"; gene_id "YLR410W-B"; transcript_biotype "protein_coding"; +chrXII SGD exon 941483 942775 . + 0 transcript_id "YLR410W-B_dummy"; gene_id "YLR410W-B"; +chrXII SGD exon 942777 946796 . + 0 transcript_id "YLR410W-B_dummy"; gene_id "YLR410W-B"; +chrXII SGD gene 947167 948132 . + . gene_id "YLR411W"; gene_biotype "protein_coding"; +chrXII SGD transcript 947167 948132 . + . transcript_id "YLR411W_id001"; gene_id "YLR411W"; gene_name "CTR3"; transcript_biotype "protein_coding"; +chrXII SGD exon 947167 948132 . + . transcript_id "YLR411W_id001"; gene_id "YLR411W"; gene_name "CTR3"; +chrXII SGD transcript 947253 947978 . + . transcript_id "YLR411W_id002"; gene_id "YLR411W"; gene_name "CTR3"; transcript_biotype "protein_coding"; +chrXII SGD exon 947253 947978 . + 0 transcript_id "YLR411W_id002"; gene_name "CTR3"; gene_id "YLR411W"; +chrXII SGD gene 948368 950239 . + . gene_id "YLR412W"; gene_biotype "protein_coding"; +chrXII SGD transcript 948368 949192 . + . transcript_id "YLR412W_id001"; gene_id "YLR412W"; gene_name "BER1"; transcript_biotype "protein_coding"; +chrXII SGD exon 948368 949192 . + 0 transcript_id "YLR412W_id001"; gene_name "BER1"; gene_id "YLR412W"; +chrXII SGD transcript 948368 950239 . + . transcript_id "YLR412W_id002"; gene_id "YLR412W"; gene_name "BER1"; transcript_biotype "protein_coding"; +chrXII SGD exon 948368 950239 . + . transcript_id "YLR412W_id002"; gene_id "YLR412W"; gene_name "BER1"; +chrXII SGD gene 949422 950581 . - . gene_id "YLR412C-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 949422 950581 . - . transcript_id "YLR412C-A_id002"; gene_id "YLR412C-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 949422 950581 . - . transcript_id "YLR412C-A_id002"; gene_id "YLR412C-A"; +chrXII SGD transcript 950267 950473 . - . transcript_id "YLR412C-A_id001"; gene_id "YLR412C-A"; transcript_biotype "protein_coding"; +chrXII SGD exon 950267 950473 . - 0 transcript_id "YLR412C-A_id001"; gene_id "YLR412C-A"; +chrXII SGD gene 951106 953354 . + . gene_id "YLR413W"; gene_biotype "protein_coding"; +chrXII SGD transcript 951106 953354 . + . transcript_id "YLR413W_id006"; gene_id "YLR413W"; gene_name "INA1"; transcript_biotype "protein_coding"; +chrXII SGD exon 951106 953354 . + . transcript_id "YLR413W_id006"; gene_id "YLR413W"; gene_name "INA1"; +chrXII SGD transcript 951156 953183 . + . transcript_id "YLR413W_id001"; gene_id "YLR413W"; gene_name "INA1"; transcript_biotype "protein_coding"; +chrXII SGD exon 951156 953183 . + 0 transcript_id "YLR413W_id001"; gene_name "INA1"; gene_id "YLR413W"; +chrXII SGD gene 953251 954343 . - . gene_id "YLR414C"; gene_biotype "protein_coding"; +chrXII SGD transcript 953251 954343 . - . transcript_id "YLR414C_id003"; gene_id "YLR414C"; gene_name "PUN1"; transcript_biotype "protein_coding"; +chrXII SGD exon 953251 954343 . - . transcript_id "YLR414C_id003"; gene_id "YLR414C"; gene_name "PUN1"; +chrXII SGD transcript 953353 954144 . - . transcript_id "YLR414C_id001"; gene_id "YLR414C"; gene_name "PUN1"; transcript_biotype "protein_coding"; +chrXII SGD exon 953353 954144 . - 0 transcript_id "YLR414C_id001"; gene_name "PUN1"; gene_id "YLR414C"; +chrXII SGD gene 954259 954597 . - . gene_id "YLR415C"; gene_biotype "protein_coding"; +chrXII SGD transcript 954259 954597 . - . transcript_id "YLR415C_mRNA"; gene_id "YLR415C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 954259 954597 . - 0 transcript_id "YLR415C_mRNA"; gene_id "YLR415C"; +chrXII SGD gene 954491 954889 . - . gene_id "YLR416C"; gene_biotype "protein_coding"; +chrXII SGD transcript 954491 954889 . - . transcript_id "YLR416C_mRNA"; gene_id "YLR416C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 954491 954889 . - 0 transcript_id "YLR416C_mRNA"; gene_id "YLR416C"; +chrXII SGD gene 954909 956841 . + . gene_id "YLR417W"; gene_biotype "protein_coding"; +chrXII SGD transcript 954909 956841 . + . transcript_id "YLR417W_id001"; gene_id "YLR417W"; gene_name "VPS36"; transcript_biotype "protein_coding"; +chrXII SGD exon 954909 956841 . + . transcript_id "YLR417W_id001"; gene_id "YLR417W"; gene_name "VPS36"; +chrXII SGD transcript 955010 956710 . + . transcript_id "YLR417W_id002"; gene_id "YLR417W"; gene_name "VPS36"; transcript_biotype "protein_coding"; +chrXII SGD exon 955010 956710 . + 0 transcript_id "YLR417W_id002"; gene_name "VPS36"; gene_id "YLR417W"; +chrXII SGD gene 956600 958195 . - . gene_id "YLR418C"; gene_biotype "protein_coding"; +chrXII SGD transcript 956600 958195 . - . transcript_id "YLR418C_id001"; gene_id "YLR418C"; gene_name "CDC73"; transcript_biotype "protein_coding"; +chrXII SGD exon 956600 958195 . - . transcript_id "YLR418C_id001"; gene_id "YLR418C"; gene_name "CDC73"; +chrXII SGD transcript 956914 958095 . - . transcript_id "YLR418C_id004"; gene_id "YLR418C"; gene_name "CDC73"; transcript_biotype "protein_coding"; +chrXII SGD exon 956914 958095 . - 0 transcript_id "YLR418C_id004"; gene_name "CDC73"; gene_id "YLR418C"; +chrXII SGD gene 958428 962735 . + . gene_id "YLR419W"; gene_biotype "protein_coding"; +chrXII SGD transcript 958428 962735 . + . transcript_id "YLR419W_id001"; gene_id "YLR419W"; transcript_biotype "protein_coding"; +chrXII SGD exon 958428 962735 . + 0 transcript_id "YLR419W_id001"; gene_id "YLR419W"; +chrXII SGD gene 962972 963055 . - . gene_id "YNCL0049C"; gene_biotype "ncRNA"; +chrXII SGD transcript 962972 963055 . - . transcript_id "YNCL0049C_tRNA"; gene_id "YNCL0049C"; transcript_biotype "ncRNA"; +chrXII SGD exon 962972 963055 . - . transcript_id "YNCL0049C_tRNA"; gene_id "YNCL0049C"; +chrXII SGD gene 963677 965011 . + . gene_id "YLR420W"; gene_biotype "protein_coding"; +chrXII SGD transcript 963677 965011 . + . transcript_id "YLR420W_id001"; gene_id "YLR420W"; gene_name "URA4"; transcript_biotype "protein_coding"; +chrXII SGD exon 963677 965011 . + . transcript_id "YLR420W_id001"; gene_id "YLR420W"; gene_name "URA4"; +chrXII SGD transcript 963785 964879 . + . transcript_id "YLR420W_id002"; gene_id "YLR420W"; gene_name "URA4"; transcript_biotype "protein_coding"; +chrXII SGD exon 963785 964879 . + 0 transcript_id "YLR420W_id002"; gene_name "URA4"; gene_id "YLR420W"; +chrXII SGD gene 964746 965593 . - . gene_id "YLR421C"; gene_biotype "protein_coding"; +chrXII SGD transcript 964746 965593 . - . transcript_id "YLR421C_id005"; gene_id "YLR421C"; gene_name "RPN13"; transcript_biotype "protein_coding"; +chrXII SGD exon 964746 965593 . - . transcript_id "YLR421C_id005"; gene_id "YLR421C"; gene_name "RPN13"; +chrXII SGD transcript 965090 965560 . - . transcript_id "YLR421C_id001"; gene_id "YLR421C"; gene_name "RPN13"; transcript_biotype "protein_coding"; +chrXII SGD exon 965090 965560 . - 0 transcript_id "YLR421C_id001"; gene_name "RPN13"; gene_id "YLR421C"; +chrXII SGD gene 965897 971695 . + . gene_id "YLR422W"; gene_biotype "protein_coding"; +chrXII SGD transcript 965897 971695 . + . transcript_id "YLR422W_mRNA"; gene_id "YLR422W"; gene_name "DCK1"; transcript_biotype "protein_coding"; +chrXII SGD CDS 965897 971695 . + 0 transcript_id "YLR422W_mRNA"; gene_name "DCK1"; gene_id "YLR422W"; +chrXII SGD gene 971690 973299 . - . gene_id "YLR423C"; gene_biotype "protein_coding"; +chrXII SGD transcript 971690 973299 . - . transcript_id "YLR423C_id003"; gene_id "YLR423C"; gene_name "ATG17"; transcript_biotype "protein_coding"; +chrXII SGD exon 971690 973299 . - . transcript_id "YLR423C_id003"; gene_id "YLR423C"; gene_name "ATG17"; +chrXII SGD transcript 971917 973170 . - . transcript_id "YLR423C_id001"; gene_id "YLR423C"; gene_name "ATG17"; transcript_biotype "protein_coding"; +chrXII SGD exon 971917 973170 . - 0 transcript_id "YLR423C_id001"; gene_name "ATG17"; gene_id "YLR423C"; +chrXII SGD gene 973395 975521 . + . gene_id "YLR424W"; gene_biotype "protein_coding"; +chrXII SGD transcript 973395 975521 . + . transcript_id "YLR424W_id001"; gene_id "YLR424W"; gene_name "SPP382"; transcript_biotype "protein_coding"; +chrXII SGD exon 973395 975521 . + 0 transcript_id "YLR424W_id001"; gene_name "SPP382"; gene_id "YLR424W"; +chrXII SGD gene 975983 976056 . - . gene_id "YNCL0050C"; gene_biotype "ncRNA"; +chrXII SGD transcript 975983 976056 . - . transcript_id "YNCL0050C_tRNA"; gene_id "YNCL0050C"; transcript_biotype "ncRNA"; +chrXII SGD exon 975983 976056 . - . transcript_id "YNCL0050C_tRNA"; gene_id "YNCL0050C"; +chrXII SGD gene 982894 986817 . + . gene_id "YLR425W"; gene_biotype "protein_coding"; +chrXII SGD transcript 982894 986817 . + . transcript_id "YLR425W_mRNA"; gene_id "YLR425W"; gene_name "TUS1"; transcript_biotype "protein_coding"; +chrXII SGD CDS 982894 986817 . + 0 transcript_id "YLR425W_mRNA"; gene_name "TUS1"; gene_id "YLR425W"; +chrXII SGD gene 987037 988207 . + . gene_id "YLR426W"; gene_biotype "protein_coding"; +chrXII SGD transcript 987037 988207 . + . transcript_id "YLR426W_id003"; gene_id "YLR426W"; gene_name "TDA5"; transcript_biotype "protein_coding"; +chrXII SGD exon 987037 988207 . + . transcript_id "YLR426W_id003"; gene_id "YLR426W"; gene_name "TDA5"; +chrXII SGD transcript 987062 988113 . + . transcript_id "YLR426W_id001"; gene_id "YLR426W"; gene_name "TDA5"; transcript_biotype "protein_coding"; +chrXII SGD exon 987062 987141 . + 0 transcript_id "YLR426W_id001"; gene_name "TDA5"; gene_id "YLR426W"; +chrXII SGD exon 987213 988113 . + 1 transcript_id "YLR426W_id001"; gene_name "TDA5"; gene_id "YLR426W"; +chrXII SGD gene 988294 990612 . + . gene_id "YLR427W"; gene_biotype "protein_coding"; +chrXII SGD transcript 988294 990612 . + . transcript_id "YLR427W_id001"; gene_id "YLR427W"; gene_name "MAG2"; transcript_biotype "protein_coding"; +chrXII SGD exon 988294 990612 . + . transcript_id "YLR427W_id001"; gene_id "YLR427W"; gene_name "MAG2"; +chrXII SGD transcript 988428 990440 . + . transcript_id "YLR427W_id002"; gene_id "YLR427W"; gene_name "MAG2"; transcript_biotype "protein_coding"; +chrXII SGD exon 988428 990440 . + 0 transcript_id "YLR427W_id002"; gene_name "MAG2"; gene_id "YLR427W"; +chrXII SGD gene 990617 990961 . - . gene_id "YLR428C"; gene_biotype "protein_coding"; +chrXII SGD transcript 990617 990961 . - . transcript_id "YLR428C_id001"; gene_id "YLR428C"; transcript_biotype "protein_coding"; +chrXII SGD exon 990617 990961 . - 0 transcript_id "YLR428C_id001"; gene_id "YLR428C"; +chrXII SGD gene 990730 992922 . + . gene_id "YLR429W"; gene_biotype "protein_coding"; +chrXII SGD transcript 990730 992922 . + . transcript_id "YLR429W_id002"; gene_id "YLR429W"; gene_name "CRN1"; transcript_biotype "protein_coding"; +chrXII SGD exon 990730 992922 . + . transcript_id "YLR429W_id002"; gene_id "YLR429W"; gene_name "CRN1"; +chrXII SGD transcript 990777 992732 . + . transcript_id "YLR429W_id001"; gene_id "YLR429W"; gene_name "CRN1"; transcript_biotype "protein_coding"; +chrXII SGD exon 990777 992732 . + 0 transcript_id "YLR429W_id001"; gene_name "CRN1"; gene_id "YLR429W"; +chrXII SGD gene 993434 1000129 . + . gene_id "YLR430W"; gene_biotype "protein_coding"; +chrXII SGD transcript 993434 1000129 . + . transcript_id "YLR430W_mRNA"; gene_id "YLR430W"; gene_name "SEN1"; transcript_biotype "protein_coding"; +chrXII SGD CDS 993434 1000129 . + 0 transcript_id "YLR430W_mRNA"; gene_name "SEN1"; gene_id "YLR430W"; +chrXII SGD gene 1000134 1001847 . - . gene_id "YLR431C"; gene_biotype "protein_coding"; +chrXII SGD transcript 1000134 1001847 . - . transcript_id "YLR431C_id007"; gene_id "YLR431C"; gene_name "ATG23"; transcript_biotype "protein_coding"; +chrXII SGD exon 1000134 1001847 . - . transcript_id "YLR431C_id007"; gene_id "YLR431C"; gene_name "ATG23"; +chrXII SGD transcript 1000342 1001703 . - . transcript_id "YLR431C_id001"; gene_id "YLR431C"; gene_name "ATG23"; transcript_biotype "protein_coding"; +chrXII SGD exon 1000342 1001703 . - 0 transcript_id "YLR431C_id001"; gene_name "ATG23"; gene_id "YLR431C"; +chrXII SGD gene 1002439 1004459 . + . gene_id "YLR432W"; gene_biotype "protein_coding"; +chrXII SGD transcript 1002439 1004459 . + . transcript_id "YLR432W_id002"; gene_id "YLR432W"; gene_name "IMD3"; transcript_biotype "protein_coding"; +chrXII SGD exon 1002439 1004459 . + . transcript_id "YLR432W_id002"; gene_id "YLR432W"; gene_name "IMD3"; +chrXII SGD transcript 1002557 1004128 . + . transcript_id "YLR432W_id001"; gene_id "YLR432W"; gene_name "IMD3"; transcript_biotype "protein_coding"; +chrXII SGD exon 1002557 1004128 . + 0 transcript_id "YLR432W_id001"; gene_name "IMD3"; gene_id "YLR432W"; +chrXII SGD gene 1004051 1006122 . - . gene_id "YLR433C"; gene_biotype "protein_coding"; +chrXII SGD transcript 1004051 1006122 . - . transcript_id "YLR433C_id002"; gene_id "YLR433C"; gene_name "CNA1"; transcript_biotype "protein_coding"; +chrXII SGD exon 1004051 1006122 . - . transcript_id "YLR433C_id002"; gene_id "YLR433C"; gene_name "CNA1"; +chrXII SGD transcript 1004347 1006008 . - . transcript_id "YLR433C_id001"; gene_id "YLR433C"; gene_name "CNA1"; transcript_biotype "protein_coding"; +chrXII SGD exon 1004347 1006008 . - 0 transcript_id "YLR433C_id001"; gene_name "CNA1"; gene_id "YLR433C"; +chrXII SGD gene 1006025 1006408 . - . gene_id "YLR434C"; gene_biotype "protein_coding"; +chrXII SGD transcript 1006025 1006408 . - . transcript_id "YLR434C_mRNA"; gene_id "YLR434C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 1006025 1006408 . - 0 transcript_id "YLR434C_mRNA"; gene_id "YLR434C"; +chrXII SGD gene 1006299 1007325 . + . gene_id "YLR435W"; gene_biotype "protein_coding"; +chrXII SGD transcript 1006299 1007325 . + . transcript_id "YLR435W_id004"; gene_id "YLR435W"; gene_name "TSR2"; transcript_biotype "protein_coding"; +chrXII SGD exon 1006299 1007325 . + . transcript_id "YLR435W_id004"; gene_id "YLR435W"; gene_name "TSR2"; +chrXII SGD transcript 1006378 1006995 . + . transcript_id "YLR435W_id001"; gene_id "YLR435W"; gene_name "TSR2"; transcript_biotype "protein_coding"; +chrXII SGD exon 1006378 1006995 . + 0 transcript_id "YLR435W_id001"; gene_name "TSR2"; gene_id "YLR435W"; +chrXII SGD gene 1007421 1011245 . - . gene_id "YLR436C"; gene_biotype "protein_coding"; +chrXII SGD transcript 1007421 1011245 . - . transcript_id "YLR436C_id001"; gene_id "YLR436C"; gene_name "ECM30"; transcript_biotype "protein_coding"; +chrXII SGD exon 1007421 1011245 . - 0 transcript_id "YLR436C_id001"; gene_name "ECM30"; gene_id "YLR436C"; +chrXII SGD gene 1011390 1012096 . - . gene_id "YLR437C"; gene_biotype "protein_coding"; +chrXII SGD transcript 1011390 1012096 . - . transcript_id "YLR437C_id001"; gene_id "YLR437C"; gene_name "DIF1"; transcript_biotype "protein_coding"; +chrXII SGD exon 1011390 1012096 . - . transcript_id "YLR437C_id001"; gene_id "YLR437C"; gene_name "DIF1"; +chrXII SGD transcript 1011622 1012023 . - . transcript_id "YLR437C_id005"; gene_id "YLR437C"; gene_name "DIF1"; transcript_biotype "protein_coding"; +chrXII SGD exon 1011622 1012023 . - 0 transcript_id "YLR437C_id005"; gene_name "DIF1"; gene_id "YLR437C"; +chrXII SGD gene 1012451 1013890 . + . gene_id "YLR438W"; gene_biotype "protein_coding"; +chrXII SGD transcript 1012451 1013890 . + . transcript_id "YLR438W_id003"; gene_id "YLR438W"; gene_name "CAR2"; transcript_biotype "protein_coding"; +chrXII SGD exon 1012451 1013890 . + . transcript_id "YLR438W_id003"; gene_id "YLR438W"; gene_name "CAR2"; +chrXII SGD gene 1012459 1012686 . - . gene_id "YLR437C-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 1012459 1012686 . - . transcript_id "YLR437C-A_mRNA"; gene_id "YLR437C-A"; transcript_biotype "protein_coding"; +chrXII SGD CDS 1012459 1012686 . - 0 transcript_id "YLR437C-A_mRNA"; gene_id "YLR437C-A"; +chrXII SGD transcript 1012501 1013775 . + . transcript_id "YLR438W_id001"; gene_id "YLR438W"; gene_name "CAR2"; transcript_biotype "protein_coding"; +chrXII SGD exon 1012501 1013775 . + 0 transcript_id "YLR438W_id001"; gene_name "CAR2"; gene_id "YLR438W"; +chrXII SGD gene 1013803 1016047 . - . gene_id "YLR438C-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 1013803 1016047 . - . transcript_id "YLR438C-A_id001"; gene_id "YLR438C-A"; gene_name "LSM3"; transcript_biotype "protein_coding"; +chrXII SGD exon 1013803 1016047 . - . transcript_id "YLR438C-A_id001"; gene_id "YLR438C-A"; gene_name "LSM3"; +chrXII SGD gene 1013877 1015589 . + . gene_id "YLR439W"; gene_biotype "protein_coding"; +chrXII SGD transcript 1013877 1015589 . + . transcript_id "YLR439W_id001"; gene_id "YLR439W"; gene_name "MRPL4"; transcript_biotype "protein_coding"; +chrXII SGD exon 1013877 1015589 . + . transcript_id "YLR439W_id001"; gene_id "YLR439W"; gene_name "MRPL4"; +chrXII SGD transcript 1013909 1014178 . - . transcript_id "YLR438C-A_id002"; gene_id "YLR438C-A"; gene_name "LSM3"; transcript_biotype "protein_coding"; +chrXII SGD exon 1013909 1014178 . - 0 transcript_id "YLR438C-A_id002"; gene_name "LSM3"; gene_id "YLR438C-A"; +chrXII SGD gene 1014241 1017924 . - . gene_id "YLR440C"; gene_biotype "protein_coding"; +chrXII SGD transcript 1014241 1017924 . - . transcript_id "YLR440C_id001"; gene_id "YLR440C"; gene_name "SEC39"; transcript_biotype "protein_coding"; +chrXII SGD exon 1014241 1017924 . - . transcript_id "YLR440C_id001"; gene_id "YLR440C"; gene_name "SEC39"; +chrXII SGD transcript 1014491 1015450 . + . transcript_id "YLR439W_id002"; gene_id "YLR439W"; gene_name "MRPL4"; transcript_biotype "protein_coding"; +chrXII SGD exon 1014491 1015450 . + 0 transcript_id "YLR439W_id002"; gene_name "MRPL4"; gene_id "YLR439W"; +chrXII SGD transcript 1015568 1017697 . - . transcript_id "YLR440C_id002"; gene_id "YLR440C"; gene_name "SEC39"; transcript_biotype "protein_coding"; +chrXII SGD exon 1015568 1017697 . - 0 transcript_id "YLR440C_id002"; gene_name "SEC39"; gene_id "YLR440C"; +chrXII SGD gene 1017814 1018952 . - . gene_id "YLR441C"; gene_biotype "protein_coding"; +chrXII SGD transcript 1017814 1018952 . - . transcript_id "YLR441C_id001"; gene_id "YLR441C"; gene_name "RPS1A"; transcript_biotype "protein_coding"; +chrXII SGD exon 1017814 1018952 . - . transcript_id "YLR441C_id001"; gene_id "YLR441C"; gene_name "RPS1A"; +chrXII SGD transcript 1018141 1018908 . - . transcript_id "YLR441C_id003"; gene_id "YLR441C"; gene_name "RPS1A"; transcript_biotype "protein_coding"; +chrXII SGD exon 1018141 1018908 . - 0 transcript_id "YLR441C_id003"; gene_name "RPS1A"; gene_id "YLR441C"; +chrXII SGD gene 1019170 1022289 . - . gene_id "YLR442C"; gene_biotype "protein_coding"; +chrXII SGD transcript 1019170 1022289 . - . transcript_id "YLR442C_id001"; gene_id "YLR442C"; gene_name "SIR3"; transcript_biotype "protein_coding"; +chrXII SGD exon 1019170 1022289 . - . transcript_id "YLR442C_id001"; gene_id "YLR442C"; gene_name "SIR3"; +chrXII SGD transcript 1019315 1022251 . - . transcript_id "YLR442C_id002"; gene_id "YLR442C"; gene_name "SIR3"; transcript_biotype "protein_coding"; +chrXII SGD exon 1019315 1022251 . - 0 transcript_id "YLR442C_id002"; gene_name "SIR3"; gene_id "YLR442C"; +chrXII SGD gene 1022454 1024072 . + . gene_id "YLR443W"; gene_biotype "protein_coding"; +chrXII SGD transcript 1022454 1024072 . + . transcript_id "YLR443W_id001"; gene_id "YLR443W"; gene_name "ECM7"; transcript_biotype "protein_coding"; +chrXII SGD exon 1022454 1024072 . + . transcript_id "YLR443W_id001"; gene_id "YLR443W"; gene_name "ECM7"; +chrXII SGD transcript 1022625 1023971 . + . transcript_id "YLR443W_id002"; gene_id "YLR443W"; gene_name "ECM7"; transcript_biotype "protein_coding"; +chrXII SGD exon 1022625 1023971 . + 0 transcript_id "YLR443W_id002"; gene_name "ECM7"; gene_id "YLR443W"; +chrXII SGD gene 1023386 1024005 . - . gene_id "YLR444C"; gene_biotype "protein_coding"; +chrXII SGD transcript 1023386 1024005 . - . transcript_id "YLR444C_id002"; gene_id "YLR444C"; transcript_biotype "protein_coding"; +chrXII SGD exon 1023386 1024005 . - . transcript_id "YLR444C_id002"; gene_id "YLR444C"; +chrXII SGD transcript 1023686 1023988 . - . transcript_id "YLR444C_id001"; gene_id "YLR444C"; transcript_biotype "protein_coding"; +chrXII SGD exon 1023686 1023988 . - 0 transcript_id "YLR444C_id001"; gene_id "YLR444C"; +chrXII SGD gene 1024189 1024837 . + . gene_id "YLR445W"; gene_biotype "protein_coding"; +chrXII SGD transcript 1024189 1024837 . + . transcript_id "YLR445W_mRNA"; gene_id "YLR445W"; gene_name "GMC2"; transcript_biotype "protein_coding"; +chrXII SGD CDS 1024189 1024572 . + 0 transcript_id "YLR445W_mRNA"; gene_name "GMC2"; gene_id "YLR445W"; +chrXII SGD CDS 1024655 1024837 . + 0 transcript_id "YLR445W_mRNA"; gene_name "GMC2"; gene_id "YLR445W"; +chrXII SGD gene 1025128 1026801 . + . gene_id "YLR446W"; gene_biotype "protein_coding"; +chrXII SGD transcript 1025128 1026801 . + . transcript_id "YLR446W_id001"; gene_id "YLR446W"; gene_name "NGK1"; transcript_biotype "protein_coding"; +chrXII SGD exon 1025128 1026801 . + . transcript_id "YLR446W_id001"; gene_id "YLR446W"; gene_name "NGK1"; +chrXII SGD transcript 1025214 1026515 . + . transcript_id "YLR446W_id002"; gene_id "YLR446W"; gene_name "NGK1"; transcript_biotype "protein_coding"; +chrXII SGD exon 1025214 1026515 . + 0 transcript_id "YLR446W_id002"; gene_name "NGK1"; gene_id "YLR446W"; +chrXII SGD gene 1026357 1027947 . - . gene_id "YLR447C"; gene_biotype "protein_coding"; +chrXII SGD transcript 1026357 1027947 . - . transcript_id "YLR447C_id001"; gene_id "YLR447C"; gene_name "VMA6"; transcript_biotype "protein_coding"; +chrXII SGD exon 1026357 1027947 . - . transcript_id "YLR447C_id001"; gene_id "YLR447C"; gene_name "VMA6"; +chrXII SGD transcript 1026856 1027893 . - . transcript_id "YLR447C_id003"; gene_id "YLR447C"; gene_name "VMA6"; transcript_biotype "protein_coding"; +chrXII SGD exon 1026856 1027893 . - 0 transcript_id "YLR447C_id003"; gene_name "VMA6"; gene_id "YLR447C"; +chrXII SGD gene 1028788 1030275 . + . gene_id "YLR448W"; gene_biotype "protein_coding"; +chrXII SGD transcript 1028788 1030275 . + . transcript_id "YLR448W_id001"; gene_id "YLR448W"; gene_name "RPL6B"; transcript_biotype "protein_coding"; +chrXII SGD exon 1028788 1030275 . + . transcript_id "YLR448W_id001"; gene_id "YLR448W"; gene_name "RPL6B"; +chrXII SGD transcript 1028854 1029768 . + . transcript_id "YLR448W_id002"; gene_id "YLR448W"; gene_name "RPL6B"; transcript_biotype "protein_coding"; +chrXII SGD exon 1028854 1028868 . + 0 transcript_id "YLR448W_id002"; gene_name "RPL6B"; gene_id "YLR448W"; +chrXII SGD exon 1029253 1029768 . + 0 transcript_id "YLR448W_id002"; gene_name "RPL6B"; gene_id "YLR448W"; +chrXII SGD gene 1030758 1032103 . + . gene_id "YLR449W"; gene_biotype "protein_coding"; +chrXII SGD transcript 1030758 1032103 . + . transcript_id "YLR449W_id001"; gene_id "YLR449W"; gene_name "FPR4"; transcript_biotype "protein_coding"; +chrXII SGD exon 1030758 1032103 . + . transcript_id "YLR449W_id001"; gene_id "YLR449W"; gene_name "FPR4"; +chrXII SGD transcript 1030834 1032012 . + . transcript_id "YLR449W_id003"; gene_id "YLR449W"; gene_name "FPR4"; transcript_biotype "protein_coding"; +chrXII SGD exon 1030834 1032012 . + 0 transcript_id "YLR449W_id003"; gene_name "FPR4"; gene_id "YLR449W"; +chrXII SGD gene 1032627 1035764 . + . gene_id "YLR450W"; gene_biotype "protein_coding"; +chrXII SGD transcript 1032627 1035764 . + . transcript_id "YLR450W_id001"; gene_id "YLR450W"; gene_name "HMG2"; transcript_biotype "protein_coding"; +chrXII SGD exon 1032627 1035764 . + 0 transcript_id "YLR450W_id001"; gene_name "HMG2"; gene_id "YLR450W"; +chrXII SGD gene 1036009 1038942 . + . gene_id "YLR451W"; gene_biotype "protein_coding"; +chrXII SGD transcript 1036009 1038942 . + . transcript_id "YLR451W_id004"; gene_id "YLR451W"; gene_name "LEU3"; transcript_biotype "protein_coding"; +chrXII SGD exon 1036009 1038942 . + . transcript_id "YLR451W_id004"; gene_id "YLR451W"; gene_name "LEU3"; +chrXII SGD transcript 1036093 1038753 . + . transcript_id "YLR451W_id001"; gene_id "YLR451W"; gene_name "LEU3"; transcript_biotype "protein_coding"; +chrXII SGD exon 1036093 1038753 . + 0 transcript_id "YLR451W_id001"; gene_name "LEU3"; gene_id "YLR451W"; +chrXII SGD gene 1039270 1041366 . - . gene_id "YLR452C"; gene_biotype "protein_coding"; +chrXII SGD transcript 1039270 1041366 . - . transcript_id "YLR452C_id001"; gene_id "YLR452C"; gene_name "SST2"; transcript_biotype "protein_coding"; +chrXII SGD exon 1039270 1041366 . - 0 transcript_id "YLR452C_id001"; gene_name "SST2"; gene_id "YLR452C"; +chrXII SGD gene 1041799 1042986 . - . gene_id "YLR453C"; gene_biotype "protein_coding"; +chrXII SGD transcript 1041799 1042986 . - . transcript_id "YLR453C_id001"; gene_id "YLR453C"; gene_name "RIF2"; transcript_biotype "protein_coding"; +chrXII SGD exon 1041799 1042986 . - 0 transcript_id "YLR453C_id001"; gene_name "RIF2"; gene_id "YLR453C"; +chrXII SGD gene 1043998 1051884 . + . gene_id "YLR454W"; gene_biotype "protein_coding"; +chrXII SGD transcript 1043998 1051884 . + . transcript_id "YLR454W_mRNA"; gene_id "YLR454W"; gene_name "FMP27"; transcript_biotype "protein_coding"; +chrXII SGD CDS 1043998 1051884 . + 0 transcript_id "YLR454W_mRNA"; gene_name "FMP27"; gene_id "YLR454W"; +chrXII SGD gene 1052071 1052144 . - . gene_id "YNCL0051C"; gene_biotype "ncRNA"; +chrXII SGD transcript 1052071 1052144 . - . transcript_id "YNCL0051C_tRNA"; gene_id "YNCL0051C"; transcript_biotype "ncRNA"; +chrXII SGD exon 1052071 1052144 . - . transcript_id "YNCL0051C_tRNA"; gene_id "YNCL0051C"; +chrXII SGD gene 1053346 1055013 . + . gene_id "YLR455W"; gene_biotype "protein_coding"; +chrXII SGD transcript 1053346 1055013 . + . transcript_id "YLR455W_id002"; gene_id "YLR455W"; gene_name "PDP3"; transcript_biotype "protein_coding"; +chrXII SGD exon 1053346 1055013 . + . transcript_id "YLR455W_id002"; gene_id "YLR455W"; gene_name "PDP3"; +chrXII SGD transcript 1053629 1054543 . + . transcript_id "YLR455W_id001"; gene_id "YLR455W"; gene_name "PDP3"; transcript_biotype "protein_coding"; +chrXII SGD exon 1053629 1054543 . + 0 transcript_id "YLR455W_id001"; gene_name "PDP3"; gene_id "YLR455W"; +chrXII SGD gene 1055058 1055849 . + . gene_id "YLR456W"; gene_biotype "protein_coding"; +chrXII SGD transcript 1055058 1055849 . + . transcript_id "YLR456W_id002"; gene_id "YLR456W"; transcript_biotype "protein_coding"; +chrXII SGD exon 1055058 1055849 . + . transcript_id "YLR456W_id002"; gene_id "YLR456W"; +chrXII SGD transcript 1055070 1055684 . + . transcript_id "YLR456W_id001"; gene_id "YLR456W"; transcript_biotype "protein_coding"; +chrXII SGD exon 1055070 1055684 . + 0 transcript_id "YLR456W_id001"; gene_id "YLR456W"; +chrXII SGD gene 1055634 1057126 . - . gene_id "YLR457C"; gene_biotype "protein_coding"; +chrXII SGD transcript 1055634 1057126 . - . transcript_id "YLR457C_id001"; gene_id "YLR457C"; gene_name "NBP1"; transcript_biotype "protein_coding"; +chrXII SGD exon 1055634 1057126 . - . transcript_id "YLR457C_id001"; gene_id "YLR457C"; gene_name "NBP1"; +chrXII SGD transcript 1055812 1056771 . - . transcript_id "YLR457C_id004"; gene_id "YLR457C"; gene_name "NBP1"; transcript_biotype "protein_coding"; +chrXII SGD exon 1055812 1056771 . - 0 transcript_id "YLR457C_id004"; gene_name "NBP1"; gene_id "YLR457C"; +chrXII SGD gene 1056455 1056835 . + . gene_id "YLR458W"; gene_biotype "protein_coding"; +chrXII SGD transcript 1056455 1056835 . + . transcript_id "YLR458W_mRNA"; gene_id "YLR458W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 1056455 1056835 . + 0 transcript_id "YLR458W_mRNA"; gene_id "YLR458W"; +chrXII SGD gene 1057322 1058824 . + . gene_id "YLR459W"; gene_biotype "protein_coding"; +chrXII SGD transcript 1057322 1058824 . + . transcript_id "YLR459W_id002"; gene_id "YLR459W"; gene_name "GAB1"; transcript_biotype "protein_coding"; +chrXII SGD exon 1057322 1058824 . + . transcript_id "YLR459W_id002"; gene_id "YLR459W"; gene_name "GAB1"; +chrXII SGD transcript 1057334 1058518 . + . transcript_id "YLR459W_id001"; gene_id "YLR459W"; gene_name "GAB1"; transcript_biotype "protein_coding"; +chrXII SGD exon 1057334 1058518 . + 0 transcript_id "YLR459W_id001"; gene_name "GAB1"; gene_id "YLR459W"; +chrXII SGD gene 1059757 1060887 . - . gene_id "YLR460C"; gene_biotype "protein_coding"; +chrXII SGD transcript 1059757 1060887 . - . transcript_id "YLR460C_id001"; gene_id "YLR460C"; transcript_biotype "protein_coding"; +chrXII SGD exon 1059757 1060887 . - 0 transcript_id "YLR460C_id001"; gene_id "YLR460C"; +chrXII SGD gene 1062919 1063281 . + . gene_id "YLR461W"; gene_biotype "protein_coding"; +chrXII SGD transcript 1062919 1063281 . + . transcript_id "YLR461W_mRNA"; gene_id "YLR461W"; gene_name "PAU4"; transcript_biotype "protein_coding"; +chrXII SGD CDS 1062919 1063281 . + 0 transcript_id "YLR461W_mRNA"; gene_name "PAU4"; gene_id "YLR461W"; +chrXII SGD gene 1065956 1066564 . + . gene_id "YLR462W"; gene_biotype "protein_coding"; +chrXII SGD transcript 1065956 1066564 . + . transcript_id "YLR462W_mRNA"; gene_id "YLR462W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 1065956 1066564 . + 0 transcript_id "YLR462W_mRNA"; gene_id "YLR462W"; +chrXII SGD gene 1066265 1066816 . - . gene_id "YLR463C"; gene_biotype "protein_coding"; +chrXII SGD transcript 1066265 1066816 . - . transcript_id "YLR463C_mRNA"; gene_id "YLR463C"; transcript_biotype "protein_coding"; +chrXII SGD CDS 1066265 1066816 . - 0 transcript_id "YLR463C_mRNA"; gene_id "YLR463C"; +chrXII SGD gene 1066572 1067501 . + . gene_id "YLR464W"; gene_biotype "protein_coding"; +chrXII SGD transcript 1066572 1067501 . + . transcript_id "YLR464W_mRNA"; gene_id "YLR464W"; transcript_biotype "protein_coding"; +chrXII SGD CDS 1066572 1067084 . + 0 transcript_id "YLR464W_mRNA"; gene_id "YLR464W"; +chrXII SGD CDS 1067364 1067501 . + 0 transcript_id "YLR464W_mRNA"; gene_id "YLR464W"; +chrXII SGD gene 1067045 1067353 . - . gene_id "YLR465C"; gene_biotype "protein_coding"; +chrXII SGD transcript 1067045 1067353 . - . transcript_id "YLR465C_mRNA"; gene_id "YLR465C"; gene_name "BSC3"; transcript_biotype "protein_coding"; +chrXII SGD CDS 1067045 1067353 . - 0 transcript_id "YLR465C_mRNA"; gene_name "BSC3"; gene_id "YLR465C"; +chrXII SGD gene 1067087 1071235 . + . gene_id "YLR466W"; gene_biotype "protein_coding"; +chrXII SGD transcript 1067087 1071235 . + . transcript_id "YLR466W_mRNA"; gene_id "YLR466W"; gene_name "YRF1-4"; transcript_biotype "protein_coding"; +chrXII SGD CDS 1067087 1071235 . + 0 transcript_id "YLR466W_mRNA"; gene_name "YRF1-4"; gene_id "YLR466W"; +chrXII SGD gene 1070387 1070869 . - . gene_id "YLR466C-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 1070387 1070869 . - . transcript_id "YLR466C-A_mRNA"; gene_id "YLR466C-A"; transcript_biotype "protein_coding"; +chrXII SGD CDS 1070387 1070869 . - 0 transcript_id "YLR466C-A_mRNA"; gene_id "YLR466C-A"; +chrXII SGD gene 1071594 1071710 . - . gene_id "YLR466C-B"; gene_biotype "protein_coding"; +chrXII SGD transcript 1071594 1071710 . - . transcript_id "YLR466C-B_mRNA"; gene_id "YLR466C-B"; transcript_biotype "protein_coding"; +chrXII SGD exon 1071594 1071710 . - . transcript_id "YLR466C-B_mRNA"; gene_id "YLR466C-B"; +chrXII SGD CDS 1071594 1071710 . - 0 transcript_id "YLR466C-B_mRNA"; gene_id "YLR466C-B"; +chrXII SGD gene 1072508 1077898 . + . gene_id "YLR467W"; gene_biotype "protein_coding"; +chrXII SGD transcript 1072508 1077898 . + . transcript_id "YLR467W_mRNA"; gene_id "YLR467W"; gene_name "YRF1-5"; transcript_biotype "protein_coding"; +chrXII SGD CDS 1072508 1077898 . + 0 transcript_id "YLR467W_mRNA"; gene_name "YRF1-5"; gene_id "YLR467W"; +chrXII SGD gene 1077050 1077532 . - . gene_id "YLR467C-A"; gene_biotype "protein_coding"; +chrXII SGD transcript 1077050 1077532 . - . transcript_id "YLR467C-A_mRNA"; gene_id "YLR467C-A"; transcript_biotype "protein_coding"; +chrXII SGD CDS 1077050 1077532 . - 0 transcript_id "YLR467C-A_mRNA"; gene_id "YLR467C-A"; +chrXIII SGD gene 461 4684 . - . gene_id "YML133C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 461 4684 . - . transcript_id "YML133C_mRNA"; gene_id "YML133C"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 461 3791 . - 1 transcript_id "YML133C_mRNA"; gene_id "YML133C"; +chrXIII SGD CDS 3891 4684 . - 0 transcript_id "YML133C_mRNA"; gene_id "YML133C"; +chrXIII SGD gene 827 1309 . + . gene_id "YML133W-B"; gene_biotype "protein_coding"; +chrXIII SGD transcript 827 1309 . + . transcript_id "YML133W-B_mRNA"; gene_id "YML133W-B"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 827 1309 . + 0 transcript_id "YML133W-B_mRNA"; gene_id "YML133W-B"; +chrXIII SGD gene 1610 2185 . + . gene_id "YML133W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 1610 2185 . + . transcript_id "YML133W-A_mRNA"; gene_id "YML133W-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 1610 2185 . + 0 transcript_id "YML133W-A_mRNA"; gene_id "YML133W-A"; +chrXIII SGD gene 7244 8383 . + . gene_id "YML132W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 7244 8383 . + . transcript_id "YML132W_mRNA"; gene_id "YML132W"; gene_name "COS3"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 7244 8383 . + 0 transcript_id "YML132W_mRNA"; gene_name "COS3"; gene_id "YML132W"; +chrXIII SGD gene 10104 11562 . + . gene_id "YML131W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 10104 11562 . + . transcript_id "YML131W_id001"; gene_id "YML131W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 10104 11562 . + . transcript_id "YML131W_id001"; gene_id "YML131W"; +chrXIII SGD transcript 10198 11295 . + . transcript_id "YML131W_id005"; gene_id "YML131W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 10198 11295 . + 0 transcript_id "YML131W_id005"; gene_id "YML131W"; +chrXIII SGD gene 11389 13295 . - . gene_id "YML130C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 11389 13295 . - . transcript_id "YML130C_id002"; gene_id "YML130C"; gene_name "ERO1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 11389 13295 . - . transcript_id "YML130C_id002"; gene_id "YML130C"; gene_name "ERO1"; +chrXIII SGD transcript 11483 13174 . - . transcript_id "YML130C_id001"; gene_id "YML130C"; gene_name "ERO1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 11483 13174 . - 0 transcript_id "YML130C_id001"; gene_name "ERO1"; gene_id "YML130C"; +chrXIII SGD gene 14211 14784 . - . gene_id "YML129C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 14211 14784 . - . transcript_id "YML129C_id004"; gene_id "YML129C"; gene_name "COX14"; transcript_biotype "protein_coding"; +chrXIII SGD exon 14211 14784 . - . transcript_id "YML129C_id004"; gene_id "YML129C"; gene_name "COX14"; +chrXIII SGD transcript 14541 14753 . - . transcript_id "YML129C_id001"; gene_id "YML129C"; gene_name "COX14"; transcript_biotype "protein_coding"; +chrXIII SGD exon 14541 14753 . - 0 transcript_id "YML129C_id001"; gene_name "COX14"; gene_id "YML129C"; +chrXIII SGD gene 14956 16840 . - . gene_id "YML128C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 14956 16840 . - . transcript_id "YML128C_id002"; gene_id "YML128C"; gene_name "MSC1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 14956 16840 . - . transcript_id "YML128C_id002"; gene_id "YML128C"; gene_name "MSC1"; +chrXIII SGD transcript 15135 16676 . - . transcript_id "YML128C_id001"; gene_id "YML128C"; gene_name "MSC1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 15135 16676 . - 0 transcript_id "YML128C_id001"; gene_name "MSC1"; gene_id "YML128C"; +chrXIII SGD gene 16984 18986 . + . gene_id "YML127W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 16984 18986 . + . transcript_id "YML127W_id001"; gene_id "YML127W"; gene_name "RSC9"; transcript_biotype "protein_coding"; +chrXIII SGD exon 16984 18986 . + . transcript_id "YML127W_id001"; gene_id "YML127W"; gene_name "RSC9"; +chrXIII SGD transcript 17064 18809 . + . transcript_id "YML127W_id002"; gene_id "YML127W"; gene_name "RSC9"; transcript_biotype "protein_coding"; +chrXIII SGD exon 17064 18809 . + 0 transcript_id "YML127W_id002"; gene_name "RSC9"; gene_id "YML127W"; +chrXIII SGD gene 19060 20535 . - . gene_id "YML126C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 19060 20535 . - . transcript_id "YML126C_mRNA"; gene_id "YML126C"; gene_name "ERG13"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 19060 20535 . - 0 transcript_id "YML126C_mRNA"; gene_name "ERG13"; gene_id "YML126C"; +chrXIII SGD gene 20533 21736 . - . gene_id "YML125C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 20533 21736 . - . transcript_id "YML125C_id001"; gene_id "YML125C"; gene_name "PGA3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 20533 21736 . - . transcript_id "YML125C_id001"; gene_id "YML125C"; gene_name "PGA3"; +chrXIII SGD transcript 20761 21699 . - . transcript_id "YML125C_id002"; gene_id "YML125C"; gene_name "PGA3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 20761 21699 . - 0 transcript_id "YML125C_id002"; gene_name "PGA3"; gene_id "YML125C"; +chrXIII SGD gene 21894 23721 . - . gene_id "YML124C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 21894 23721 . - . transcript_id "YML124C_id001"; gene_id "YML124C"; gene_name "TUB3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 21894 23721 . - . transcript_id "YML124C_id001"; gene_id "YML124C"; gene_name "TUB3"; +chrXIII SGD transcript 22048 23683 . - . transcript_id "YML124C_id003"; gene_id "YML124C"; gene_name "TUB3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 22048 23360 . - 2 transcript_id "YML124C_id003"; gene_name "TUB3"; gene_id "YML124C"; +chrXIII SGD exon 23659 23683 . - 0 transcript_id "YML124C_id003"; gene_name "TUB3"; gene_id "YML124C"; +chrXIII SGD gene 23564 26578 . + . gene_id "YNCM0001W"; gene_biotype "ncRNA"; +chrXIII SGD transcript 23564 26578 . + . transcript_id "YNCM0001W_ncRNA"; gene_id "YNCM0001W"; transcript_biotype "ncRNA"; +chrXIII SGD exon 23564 26578 . + . transcript_id "YNCM0001W_ncRNA"; gene_id "YNCM0001W"; +chrXIII SGD gene 23891 25919 . - . gene_id "YML123C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 23891 25919 . - . transcript_id "YML123C_id002"; gene_id "YML123C"; gene_name "PHO84"; transcript_biotype "protein_coding"; +chrXIII SGD exon 23891 25919 . - . transcript_id "YML123C_id002"; gene_id "YML123C"; gene_name "PHO84"; +chrXIII SGD transcript 24037 25800 . - . transcript_id "YML123C_id001"; gene_id "YML123C"; gene_name "PHO84"; transcript_biotype "protein_coding"; +chrXIII SGD exon 24037 25800 . - 0 transcript_id "YML123C_id001"; gene_name "PHO84"; gene_id "YML123C"; +chrXIII SGD gene 25873 26478 . - . gene_id "YML122C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 25873 26478 . - . transcript_id "YML122C_id002"; gene_id "YML122C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 25873 26478 . - . transcript_id "YML122C_id002"; gene_id "YML122C"; +chrXIII SGD transcript 26038 26418 . - . transcript_id "YML122C_id001"; gene_id "YML122C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 26038 26418 . - 0 transcript_id "YML122C_id001"; gene_id "YML122C"; +chrXIII SGD gene 26795 28134 . + . gene_id "YML121W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 26795 28134 . + . transcript_id "YML121W_id004"; gene_id "YML121W"; gene_name "GTR1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 26795 28134 . + . transcript_id "YML121W_id004"; gene_id "YML121W"; gene_name "GTR1"; +chrXIII SGD transcript 26930 27862 . + . transcript_id "YML121W_id001"; gene_id "YML121W"; gene_name "GTR1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 26930 27862 . + 0 transcript_id "YML121W_id001"; gene_name "GTR1"; gene_id "YML121W"; +chrXIII SGD gene 27865 29965 . - . gene_id "YML120C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 27865 29965 . - . transcript_id "YML120C_id001"; gene_id "YML120C"; gene_name "NDI1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 27865 29965 . - . transcript_id "YML120C_id001"; gene_id "YML120C"; gene_name "NDI1"; +chrXIII SGD transcript 28266 29807 . - . transcript_id "YML120C_id002"; gene_id "YML120C"; gene_name "NDI1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 28266 29807 . - 0 transcript_id "YML120C_id002"; gene_name "NDI1"; gene_id "YML120C"; +chrXIII SGD gene 30147 31744 . + . gene_id "YML119W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 30147 31744 . + . transcript_id "YML119W_id003"; gene_id "YML119W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 30147 31744 . + . transcript_id "YML119W_id003"; gene_id "YML119W"; +chrXIII SGD transcript 30611 31684 . + . transcript_id "YML119W_id001"; gene_id "YML119W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 30611 31684 . + 0 transcript_id "YML119W_id001"; gene_id "YML119W"; +chrXIII SGD gene 32221 34074 . + . gene_id "YML118W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 32221 34074 . + . transcript_id "YML118W_id001"; gene_id "YML118W"; gene_name "NGL3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 32221 34074 . + . transcript_id "YML118W_id001"; gene_id "YML118W"; gene_name "NGL3"; +chrXIII SGD transcript 32334 33851 . + . transcript_id "YML118W_id002"; gene_id "YML118W"; gene_name "NGL3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 32334 33851 . + 0 transcript_id "YML118W_id002"; gene_name "NGL3"; gene_id "YML118W"; +chrXIII SGD gene 34243 37647 . + . gene_id "YML117W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 34243 37647 . + . transcript_id "YML117W_mRNA"; gene_id "YML117W"; gene_name "NAB6"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 34243 37647 . + 0 transcript_id "YML117W_mRNA"; gene_name "NAB6"; gene_id "YML117W"; +chrXIII SGD gene 35330 37812 . + . gene_id "YML116W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 35330 37812 . + . transcript_id "YML116W-A_id003"; gene_id "YML116W-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 35330 37812 . + . transcript_id "YML116W-A_id003"; gene_id "YML116W-A"; +chrXIII SGD transcript 37472 37774 . + . transcript_id "YML116W-A_id001"; gene_id "YML116W-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 37472 37774 . + 0 transcript_id "YML116W-A_id001"; gene_id "YML116W-A"; +chrXIII SGD gene 38115 40112 . + . gene_id "YML116W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 38115 40112 . + . transcript_id "YML116W_id001"; gene_id "YML116W"; gene_name "ATR1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 38115 40112 . + . transcript_id "YML116W_id001"; gene_id "YML116W"; gene_name "ATR1"; +chrXIII SGD transcript 38196 39824 . + . transcript_id "YML116W_id005"; gene_id "YML116W"; gene_name "ATR1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 38196 39824 . + 0 transcript_id "YML116W_id005"; gene_name "ATR1"; gene_id "YML116W"; +chrXIII SGD gene 39932 41865 . - . gene_id "YML115C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 39932 41865 . - . transcript_id "YML115C_id003"; gene_id "YML115C"; gene_name "VAN1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 39932 41865 . - . transcript_id "YML115C_id003"; gene_id "YML115C"; gene_name "VAN1"; +chrXIII SGD transcript 40187 41794 . - . transcript_id "YML115C_id001"; gene_id "YML115C"; gene_name "VAN1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 40187 41794 . - 0 transcript_id "YML115C_id001"; gene_name "VAN1"; gene_id "YML115C"; +chrXIII SGD gene 41964 43751 . - . gene_id "YML114C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 41964 43751 . - . transcript_id "YML114C_id001"; gene_id "YML114C"; gene_name "TAF8"; transcript_biotype "protein_coding"; +chrXIII SGD exon 41964 43751 . - . transcript_id "YML114C_id001"; gene_id "YML114C"; gene_name "TAF8"; +chrXIII SGD transcript 42043 43575 . - . transcript_id "YML114C_id010"; gene_id "YML114C"; gene_name "TAF8"; transcript_biotype "protein_coding"; +chrXIII SGD exon 42043 43575 . - 0 transcript_id "YML114C_id010"; gene_name "TAF8"; gene_id "YML114C"; +chrXIII SGD gene 43706 44935 . + . gene_id "YML113W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 43706 44935 . + . transcript_id "YML113W_id002"; gene_id "YML113W"; gene_name "DAT1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 43706 44935 . + . transcript_id "YML113W_id002"; gene_id "YML113W"; gene_name "DAT1"; +chrXIII SGD transcript 44045 44791 . + . transcript_id "YML113W_id001"; gene_id "YML113W"; gene_name "DAT1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 44045 44791 . + 0 transcript_id "YML113W_id001"; gene_name "DAT1"; gene_id "YML113W"; +chrXIII SGD gene 45009 46062 . + . gene_id "YML112W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 45009 46062 . + . transcript_id "YML112W_id001"; gene_id "YML112W"; gene_name "CTK3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 45009 46062 . + . transcript_id "YML112W_id001"; gene_id "YML112W"; gene_name "CTK3"; +chrXIII SGD transcript 45063 45953 . + . transcript_id "YML112W_id002"; gene_id "YML112W"; gene_name "CTK3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 45063 45953 . + 0 transcript_id "YML112W_id002"; gene_name "CTK3"; gene_id "YML112W"; +chrXIII SGD gene 46942 49704 . + . gene_id "YML111W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 46942 49704 . + . transcript_id "YML111W_mRNA"; gene_id "YML111W"; gene_name "BUL2"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 46942 49704 . + 0 transcript_id "YML111W_mRNA"; gene_name "BUL2"; gene_id "YML111W"; +chrXIII SGD gene 49282 50976 . - . gene_id "YML110C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 49282 50976 . - . transcript_id "YML110C_id002"; gene_id "YML110C"; gene_name "COQ5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 49282 50976 . - . transcript_id "YML110C_id002"; gene_id "YML110C"; gene_name "COQ5"; +chrXIII SGD transcript 50031 50954 . - . transcript_id "YML110C_id001"; gene_id "YML110C"; gene_name "COQ5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 50031 50954 . - 0 transcript_id "YML110C_id001"; gene_name "COQ5"; gene_id "YML110C"; +chrXIII SGD gene 51640 54468 . + . gene_id "YML109W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 51640 54468 . + . transcript_id "YML109W_id001"; gene_id "YML109W"; gene_name "ZDS2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 51640 54468 . + 0 transcript_id "YML109W_id001"; gene_name "ZDS2"; gene_id "YML109W"; +chrXIII SGD gene 54733 55762 . + . gene_id "YML108W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 54733 55762 . + . transcript_id "YML108W_id002"; gene_id "YML108W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 54733 55762 . + . transcript_id "YML108W_id002"; gene_id "YML108W"; +chrXIII SGD transcript 54793 55110 . + . transcript_id "YML108W_id001"; gene_id "YML108W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 54793 55110 . + 0 transcript_id "YML108W_id001"; gene_id "YML108W"; +chrXIII SGD gene 55136 56282 . - . gene_id "YML107C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 55136 56282 . - . transcript_id "YML107C_id002"; gene_id "YML107C"; gene_name "PML39"; transcript_biotype "protein_coding"; +chrXIII SGD exon 55136 56282 . - . transcript_id "YML107C_id002"; gene_id "YML107C"; gene_name "PML39"; +chrXIII SGD transcript 55265 56269 . - . transcript_id "YML107C_id001"; gene_id "YML107C"; gene_name "PML39"; transcript_biotype "protein_coding"; +chrXIII SGD exon 55265 56269 . - 0 transcript_id "YML107C_id001"; gene_name "PML39"; gene_id "YML107C"; +chrXIII SGD gene 55292 57518 . + . gene_id "YML106W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 55292 57518 . + . transcript_id "YML106W_id001"; gene_id "YML106W"; gene_name "URA5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 55292 57518 . + . transcript_id "YML106W_id001"; gene_id "YML106W"; gene_name "URA5"; +chrXIII SGD transcript 56773 57453 . + . transcript_id "YML106W_id003"; gene_id "YML106W"; gene_name "URA5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 56773 57453 . + 0 transcript_id "YML106W_id003"; gene_name "URA5"; gene_id "YML106W"; +chrXIII SGD gene 57759 58766 . - . gene_id "YML105C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 57759 58766 . - . transcript_id "YML105C_id001"; gene_id "YML105C"; gene_name "SEC65"; transcript_biotype "protein_coding"; +chrXIII SGD exon 57759 58766 . - . transcript_id "YML105C_id001"; gene_id "YML105C"; gene_name "SEC65"; +chrXIII SGD transcript 57866 58687 . - . transcript_id "YML105C_id003"; gene_id "YML105C"; gene_name "SEC65"; transcript_biotype "protein_coding"; +chrXIII SGD exon 57866 58687 . - 0 transcript_id "YML105C_id003"; gene_name "SEC65"; gene_id "YML105C"; +chrXIII SGD gene 58879 62376 . - . gene_id "YML104C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 58879 62376 . - . transcript_id "YML104C_id001"; gene_id "YML104C"; gene_name "MDM1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 58879 62376 . - . transcript_id "YML104C_id001"; gene_id "YML104C"; gene_name "MDM1"; +chrXIII SGD transcript 58939 62322 . - . transcript_id "YML104C_id002"; gene_id "YML104C"; gene_name "MDM1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 58939 62322 . - 0 transcript_id "YML104C_id002"; gene_name "MDM1"; gene_id "YML104C"; +chrXIII SGD gene 62582 67549 . - . gene_id "YML103C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 62582 67549 . - . transcript_id "YML103C_mRNA"; gene_id "YML103C"; gene_name "NUP188"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 62582 67549 . - 0 transcript_id "YML103C_mRNA"; gene_name "NUP188"; gene_id "YML103C"; +chrXIII SGD gene 67768 67938 . - . gene_id "YNCM0002C"; gene_biotype "ncRNA"; +chrXIII SGD transcript 67768 67938 . - . transcript_id "YNCM0002C_snoRNA"; gene_id "YNCM0002C"; gene_name "SNR85"; transcript_biotype "ncRNA"; +chrXIII SGD exon 67768 67938 . - . transcript_id "YNCM0002C_snoRNA"; gene_name "SNR85"; gene_id "YNCM0002C"; +chrXIII SGD gene 68024 69753 . + . gene_id "YML102W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 68024 69753 . + . transcript_id "YML102W_id003"; gene_id "YML102W"; gene_name "CAC2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 68024 69753 . + . transcript_id "YML102W_id003"; gene_id "YML102W"; gene_name "CAC2"; +chrXIII SGD transcript 68294 69700 . + . transcript_id "YML102W_id001"; gene_id "YML102W"; gene_name "CAC2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 68294 69700 . + 0 transcript_id "YML102W_id001"; gene_name "CAC2"; gene_id "YML102W"; +chrXIII SGD gene 68821 70553 . + . gene_id "YML100W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 68821 70553 . + . transcript_id "YML100W-A_id001"; gene_id "YML100W-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 68821 70553 . + . transcript_id "YML100W-A_id001"; gene_id "YML100W-A"; +chrXIII SGD gene 69409 69726 . - . gene_id "YML101C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 69409 69726 . - . transcript_id "YML101C-A_id001"; gene_id "YML101C-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 69409 69726 . - 0 transcript_id "YML101C-A_id001"; gene_id "YML101C-A"; +chrXIII SGD gene 69628 70148 . - . gene_id "YML101C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 69628 70148 . - . transcript_id "YML101C_id001"; gene_id "YML101C"; gene_name "CUE4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 69628 70148 . - . transcript_id "YML101C_id001"; gene_id "YML101C"; gene_name "CUE4"; +chrXIII SGD transcript 69735 70088 . - . transcript_id "YML101C_id003"; gene_id "YML101C"; gene_name "CUE4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 69735 70088 . - 0 transcript_id "YML101C_id003"; gene_name "CUE4"; gene_id "YML101C"; +chrXIII SGD transcript 70138 70311 . + . transcript_id "YML100W-A_id002"; gene_id "YML100W-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 70138 70311 . + 0 transcript_id "YML100W-A_id002"; gene_id "YML100W-A"; +chrXIII SGD gene 70225 74035 . + . gene_id "YML100W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 70225 74035 . + . transcript_id "YML100W_id001"; gene_id "YML100W"; gene_name "TSL1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 70225 74035 . + . transcript_id "YML100W_id001"; gene_id "YML100W"; gene_name "TSL1"; +chrXIII SGD transcript 70624 73920 . + . transcript_id "YML100W_id003"; gene_id "YML100W"; gene_name "TSL1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 70624 73920 . + 0 transcript_id "YML100W_id003"; gene_name "TSL1"; gene_id "YML100W"; +chrXIII SGD gene 74225 77083 . - . gene_id "YML099C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 74225 77083 . - . transcript_id "YML099C_id001"; gene_id "YML099C"; gene_name "ARG81"; transcript_biotype "protein_coding"; +chrXIII SGD exon 74225 77083 . - . transcript_id "YML099C_id001"; gene_id "YML099C"; gene_name "ARG81"; +chrXIII SGD gene 74229 74558 . + . gene_id "YML099W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 74229 74558 . + . transcript_id "YML099W-A_mRNA"; gene_id "YML099W-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 74229 74558 . + 0 transcript_id "YML099W-A_mRNA"; gene_id "YML099W-A"; +chrXIII SGD transcript 74398 77040 . - . transcript_id "YML099C_id002"; gene_id "YML099C"; gene_name "ARG81"; transcript_biotype "protein_coding"; +chrXIII SGD exon 74398 77040 . - 0 transcript_id "YML099C_id002"; gene_name "ARG81"; gene_id "YML099C"; +chrXIII SGD gene 77209 78330 . + . gene_id "YML098W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 77209 78330 . + . transcript_id "YML098W_id001"; gene_id "YML098W"; gene_name "TAF13"; transcript_biotype "protein_coding"; +chrXIII SGD exon 77209 78330 . + . transcript_id "YML098W_id001"; gene_id "YML098W"; gene_name "TAF13"; +chrXIII SGD transcript 77267 77770 . + . transcript_id "YML098W_id002"; gene_id "YML098W"; gene_name "TAF13"; transcript_biotype "protein_coding"; +chrXIII SGD exon 77267 77770 . + 0 transcript_id "YML098W_id002"; gene_name "TAF13"; gene_id "YML098W"; +chrXIII SGD gene 78248 79746 . - . gene_id "YML097C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 78248 79746 . - . transcript_id "YML097C_id006"; gene_id "YML097C"; gene_name "VPS9"; transcript_biotype "protein_coding"; +chrXIII SGD exon 78248 79746 . - . transcript_id "YML097C_id006"; gene_id "YML097C"; gene_name "VPS9"; +chrXIII SGD transcript 78335 79690 . - . transcript_id "YML097C_id001"; gene_id "YML097C"; gene_name "VPS9"; transcript_biotype "protein_coding"; +chrXIII SGD exon 78335 79690 . - 0 transcript_id "YML097C_id001"; gene_name "VPS9"; gene_id "YML097C"; +chrXIII SGD gene 79885 81713 . + . gene_id "YML096W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 79885 81713 . + . transcript_id "YML096W_id005"; gene_id "YML096W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 79885 81713 . + . transcript_id "YML096W_id005"; gene_id "YML096W"; +chrXIII SGD transcript 79909 81486 . + . transcript_id "YML096W_id001"; gene_id "YML096W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 79909 81486 . + 0 transcript_id "YML096W_id001"; gene_id "YML096W"; +chrXIII SGD gene 80486 82143 . - . gene_id "YML095C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 80486 82143 . - . transcript_id "YML095C_id001"; gene_id "YML095C"; gene_name "RAD10"; transcript_biotype "protein_coding"; +chrXIII SGD exon 80486 82143 . - . transcript_id "YML095C_id001"; gene_id "YML095C"; gene_name "RAD10"; +chrXIII SGD transcript 81481 82113 . - . transcript_id "YML095C_id002"; gene_id "YML095C"; gene_name "RAD10"; transcript_biotype "protein_coding"; +chrXIII SGD exon 81481 82113 . - 0 transcript_id "YML095C_id002"; gene_name "RAD10"; gene_id "YML095C"; +chrXIII SGD gene 81625 82944 . + . gene_id "YML094W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 81625 82944 . + . transcript_id "YML094W_id001"; gene_id "YML094W"; gene_name "GIM5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 81625 82944 . + . transcript_id "YML094W_id001"; gene_id "YML094W"; gene_name "GIM5"; +chrXIII SGD gene 82219 82620 . - . gene_id "YML094C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 82219 82620 . - . transcript_id "YML094C-A_mRNA"; gene_id "YML094C-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 82219 82620 . - 0 transcript_id "YML094C-A_mRNA"; gene_id "YML094C-A"; +chrXIII SGD transcript 82275 82849 . + . transcript_id "YML094W_id002"; gene_id "YML094W"; gene_name "GIM5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 82275 82290 . + 0 transcript_id "YML094W_id002"; gene_name "GIM5"; gene_id "YML094W"; +chrXIII SGD exon 82374 82849 . + 2 transcript_id "YML094W_id002"; gene_name "GIM5"; gene_id "YML094W"; +chrXIII SGD gene 83059 85943 . + . gene_id "YML093W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 83059 85943 . + . transcript_id "YML093W_id002"; gene_id "YML093W"; gene_name "UTP14"; transcript_biotype "protein_coding"; +chrXIII SGD exon 83059 85943 . + . transcript_id "YML093W_id002"; gene_id "YML093W"; gene_name "UTP14"; +chrXIII SGD transcript 83090 85789 . + . transcript_id "YML093W_id001"; gene_id "YML093W"; gene_name "UTP14"; transcript_biotype "protein_coding"; +chrXIII SGD exon 83090 85789 . + 0 transcript_id "YML093W_id001"; gene_name "UTP14"; gene_id "YML093W"; +chrXIII SGD gene 85879 86872 . - . gene_id "YML092C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 85879 86872 . - . transcript_id "YML092C_id008"; gene_id "YML092C"; gene_name "PRE8"; transcript_biotype "protein_coding"; +chrXIII SGD exon 85879 86872 . - . transcript_id "YML092C_id008"; gene_id "YML092C"; gene_name "PRE8"; +chrXIII SGD transcript 85987 86739 . - . transcript_id "YML092C_id001"; gene_id "YML092C"; gene_name "PRE8"; transcript_biotype "protein_coding"; +chrXIII SGD exon 85987 86739 . - 0 transcript_id "YML092C_id001"; gene_name "PRE8"; gene_id "YML092C"; +chrXIII SGD gene 87123 90731 . - . gene_id "YML091C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 87123 90731 . - . transcript_id "YML091C_mRNA"; gene_id "YML091C"; gene_name "RPM2"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 87123 90731 . - 0 transcript_id "YML091C_mRNA"; gene_name "RPM2"; gene_id "YML091C"; +chrXIII SGD gene 90744 91130 . + . gene_id "YML090W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 90744 91130 . + . transcript_id "YML090W_mRNA"; gene_id "YML090W"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 90744 91130 . + 0 transcript_id "YML090W_mRNA"; gene_id "YML090W"; +chrXIII SGD gene 91041 91409 . - . gene_id "YML089C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 91041 91409 . - . transcript_id "YML089C_id001"; gene_id "YML089C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 91041 91409 . - 0 transcript_id "YML089C_id001"; gene_id "YML089C"; +chrXIII SGD gene 91970 92027 . + . gene_id "YNCM0003W"; gene_biotype "ncRNA"; +chrXIII SGD transcript 91970 92027 . + . transcript_id "YNCM0003W_ncRNA"; gene_id "YNCM0003W"; gene_name "ZOD1"; transcript_biotype "ncRNA"; +chrXIII SGD exon 91970 92027 . + . transcript_id "YNCM0003W_ncRNA"; gene_name "ZOD1"; gene_id "YNCM0003W"; +chrXIII SGD gene 92214 94404 . + . gene_id "YML088W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 92214 94404 . + . transcript_id "YML088W_id002"; gene_id "YML088W"; gene_name "UFO1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 92214 94404 . + . transcript_id "YML088W_id002"; gene_id "YML088W"; gene_name "UFO1"; +chrXIII SGD transcript 92235 94241 . + . transcript_id "YML088W_id001"; gene_id "YML088W"; gene_name "UFO1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 92235 94241 . + 0 transcript_id "YML088W_id001"; gene_name "UFO1"; gene_id "YML088W"; +chrXIII SGD gene 94322 95458 . - . gene_id "YML087C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 94322 95458 . - . transcript_id "YML087C_id004"; gene_id "YML087C"; gene_name "AIM33"; transcript_biotype "protein_coding"; +chrXIII SGD exon 94322 95458 . - . transcript_id "YML087C_id004"; gene_id "YML087C"; gene_name "AIM33"; +chrXIII SGD transcript 94431 95369 . - . transcript_id "YML087C_id001"; gene_id "YML087C"; gene_name "AIM33"; transcript_biotype "protein_coding"; +chrXIII SGD exon 94431 95369 . - 0 transcript_id "YML087C_id001"; gene_name "AIM33"; gene_id "YML087C"; +chrXIII SGD gene 95679 97543 . - . gene_id "YML086C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 95679 97543 . - . transcript_id "YML086C_id001"; gene_id "YML086C"; gene_name "ALO1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 95679 97543 . - . transcript_id "YML086C_id001"; gene_id "YML086C"; gene_name "ALO1"; +chrXIII SGD transcript 95791 97371 . - . transcript_id "YML086C_id006"; gene_id "YML086C"; gene_name "ALO1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 95791 97371 . - 0 transcript_id "YML086C_id006"; gene_name "ALO1"; gene_id "YML086C"; +chrXIII SGD gene 97766 99463 . - . gene_id "YML085C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 97766 99463 . - . transcript_id "YML085C_id001"; gene_id "YML085C"; gene_name "TUB1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 97766 99463 . - . transcript_id "YML085C_id001"; gene_id "YML085C"; gene_name "TUB1"; +chrXIII SGD transcript 97941 99400 . - . transcript_id "YML085C_id002"; gene_id "YML085C"; gene_name "TUB1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 97941 99259 . - 2 transcript_id "YML085C_id002"; gene_name "TUB1"; gene_id "YML085C"; +chrXIII SGD exon 99376 99400 . - 0 transcript_id "YML085C_id002"; gene_name "TUB1"; gene_id "YML085C"; +chrXIII SGD gene 99489 99797 . + . gene_id "YML084W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 99489 99797 . + . transcript_id "YML084W_mRNA"; gene_id "YML084W"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 99489 99797 . + 0 transcript_id "YML084W_mRNA"; gene_id "YML084W"; +chrXIII SGD gene 99794 101050 . - . gene_id "YML083C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 99794 101050 . - . transcript_id "YML083C_id001"; gene_id "YML083C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 99794 101050 . - 0 transcript_id "YML083C_id001"; gene_id "YML083C"; +chrXIII SGD gene 101798 103997 . + . gene_id "YML082W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 101798 103997 . + . transcript_id "YML082W_id001"; gene_id "YML082W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 101798 103997 . + . transcript_id "YML082W_id001"; gene_id "YML082W"; +chrXIII SGD transcript 101862 103811 . + . transcript_id "YML082W_id003"; gene_id "YML082W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 101862 103811 . + 0 transcript_id "YML082W_id003"; gene_id "YML082W"; +chrXIII SGD gene 103983 104162 . - . gene_id "YML081C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 103983 104162 . - . transcript_id "YML081C-A_id001"; gene_id "YML081C-A"; gene_name "ATP18"; transcript_biotype "protein_coding"; +chrXIII SGD exon 103983 104162 . - 0 transcript_id "YML081C-A_id001"; gene_name "ATP18"; gene_id "YML081C-A"; +chrXIII SGD gene 104777 108532 . + . gene_id "YML081W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 104777 108532 . + . transcript_id "YML081W_id001"; gene_id "YML081W"; gene_name "TDA9"; transcript_biotype "protein_coding"; +chrXIII SGD exon 104777 108532 . + 0 transcript_id "YML081W_id001"; gene_name "TDA9"; gene_id "YML081W"; +chrXIII SGD gene 108698 110223 . + . gene_id "YML080W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 108698 110223 . + . transcript_id "YML080W_id001"; gene_id "YML080W"; gene_name "DUS1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 108698 110223 . + . transcript_id "YML080W_id001"; gene_id "YML080W"; gene_name "DUS1"; +chrXIII SGD transcript 108806 110077 . + . transcript_id "YML080W_id003"; gene_id "YML080W"; gene_name "DUS1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 108806 110077 . + 0 transcript_id "YML080W_id003"; gene_name "DUS1"; gene_id "YML080W"; +chrXIII SGD gene 110218 111023 . + . gene_id "YML079W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 110218 111023 . + . transcript_id "YML079W_id003"; gene_id "YML079W"; gene_name "CFF1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 110218 111023 . + . transcript_id "YML079W_id003"; gene_id "YML079W"; gene_name "CFF1"; +chrXIII SGD transcript 110247 110852 . + . transcript_id "YML079W_id001"; gene_id "YML079W"; gene_name "CFF1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 110247 110852 . + 0 transcript_id "YML079W_id001"; gene_name "CFF1"; gene_id "YML079W"; +chrXIII SGD gene 110971 111870 . + . gene_id "YML078W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 110971 111870 . + . transcript_id "YML078W_id002"; gene_id "YML078W"; gene_name "CPR3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 110971 111870 . + . transcript_id "YML078W_id002"; gene_id "YML078W"; gene_name "CPR3"; +chrXIII SGD transcript 111002 111550 . + . transcript_id "YML078W_id001"; gene_id "YML078W"; gene_name "CPR3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 111002 111550 . + 0 transcript_id "YML078W_id001"; gene_name "CPR3"; gene_id "YML078W"; +chrXIII SGD gene 111798 112470 . + . gene_id "YML077W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 111798 112470 . + . transcript_id "YML077W_id002"; gene_id "YML077W"; gene_name "BET5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 111798 112470 . + . transcript_id "YML077W_id002"; gene_id "YML077W"; gene_name "BET5"; +chrXIII SGD transcript 111865 112344 . + . transcript_id "YML077W_id001"; gene_id "YML077W"; gene_name "BET5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 111865 112344 . + 0 transcript_id "YML077W_id001"; gene_name "BET5"; gene_id "YML077W"; +chrXIII SGD gene 112513 115347 . - . gene_id "YML076C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 112513 115347 . - . transcript_id "YML076C_id001"; gene_id "YML076C"; gene_name "WAR1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 112513 115347 . - 0 transcript_id "YML076C_id001"; gene_name "WAR1"; gene_id "YML076C"; +chrXIII SGD gene 115627 119069 . - . gene_id "YML075C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 115627 119069 . - . transcript_id "YML075C_id001"; gene_id "YML075C"; gene_name "HMG1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 115627 119069 . - . transcript_id "YML075C_id001"; gene_id "YML075C"; gene_name "HMG1"; +chrXIII SGD transcript 115734 118898 . - . transcript_id "YML075C_id003"; gene_id "YML075C"; gene_name "HMG1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 115734 118898 . - 0 transcript_id "YML075C_id003"; gene_name "HMG1"; gene_id "YML075C"; +chrXIII SGD gene 119944 121387 . - . gene_id "YML074C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 119944 121387 . - . transcript_id "YML074C_id001"; gene_id "YML074C"; gene_name "FPR3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 119944 121387 . - . transcript_id "YML074C_id001"; gene_id "YML074C"; gene_name "FPR3"; +chrXIII SGD transcript 120089 121324 . - . transcript_id "YML074C_id002"; gene_id "YML074C"; gene_name "FPR3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 120089 121324 . - 0 transcript_id "YML074C_id002"; gene_name "FPR3"; gene_id "YML074C"; +chrXIII SGD gene 120562 124209 . - . gene_id "YML073C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 120562 124209 . - . transcript_id "YML073C_id002"; gene_id "YML073C"; gene_name "RPL6A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 120562 124209 . - . transcript_id "YML073C_id002"; gene_id "YML073C"; gene_name "RPL6A"; +chrXIII SGD transcript 123227 124172 . - . transcript_id "YML073C_id001"; gene_id "YML073C"; gene_name "RPL6A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 123227 123742 . - 0 transcript_id "YML073C_id001"; gene_name "RPL6A"; gene_id "YML073C"; +chrXIII SGD exon 124158 124172 . - 0 transcript_id "YML073C_id001"; gene_name "RPL6A"; gene_id "YML073C"; +chrXIII SGD gene 124730 129367 . - . gene_id "YML072C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 124730 129367 . - . transcript_id "YML072C_id001"; gene_id "YML072C"; gene_name "TCB3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 124730 129367 . - 0 transcript_id "YML072C_id001"; gene_name "TCB3"; gene_id "YML072C"; +chrXIII SGD gene 129705 131700 . - . gene_id "YML071C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 129705 131700 . - . transcript_id "YML071C_id002"; gene_id "YML071C"; gene_name "COG8"; transcript_biotype "protein_coding"; +chrXIII SGD exon 129705 131700 . - . transcript_id "YML071C_id002"; gene_id "YML071C"; gene_name "COG8"; +chrXIII SGD transcript 129749 131572 . - . transcript_id "YML071C_id001"; gene_id "YML071C"; gene_name "COG8"; transcript_biotype "protein_coding"; +chrXIII SGD exon 129749 131572 . - 0 transcript_id "YML071C_id001"; gene_name "COG8"; gene_id "YML071C"; +chrXIII SGD gene 131825 131896 . - . gene_id "YNCM0004C"; gene_biotype "ncRNA"; +chrXIII SGD transcript 131825 131896 . - . transcript_id "YNCM0004C_tRNA"; gene_id "YNCM0004C"; transcript_biotype "ncRNA"; +chrXIII SGD exon 131825 131896 . - . transcript_id "YNCM0004C_tRNA"; gene_id "YNCM0004C"; +chrXIII SGD gene 133217 135299 . + . gene_id "YML070W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 133217 135299 . + . transcript_id "YML070W_id003"; gene_id "YML070W"; gene_name "DAK1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 133217 135299 . + . transcript_id "YML070W_id003"; gene_id "YML070W"; gene_name "DAK1"; +chrXIII SGD transcript 133475 135229 . + . transcript_id "YML070W_id001"; gene_id "YML070W"; gene_name "DAK1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 133475 135229 . + 0 transcript_id "YML070W_id001"; gene_name "DAK1"; gene_id "YML070W"; +chrXIII SGD gene 135415 137232 . + . gene_id "YML069W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 135415 137232 . + . transcript_id "YML069W_id005"; gene_id "YML069W"; gene_name "POB3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 135415 137232 . + . transcript_id "YML069W_id005"; gene_id "YML069W"; gene_name "POB3"; +chrXIII SGD transcript 135500 137158 . + . transcript_id "YML069W_id001"; gene_id "YML069W"; gene_name "POB3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 135500 137158 . + 0 transcript_id "YML069W_id001"; gene_name "POB3"; gene_id "YML069W"; +chrXIII SGD gene 137454 139108 . + . gene_id "YML068W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 137454 139108 . + . transcript_id "YML068W_id003"; gene_id "YML068W"; gene_name "ITT1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 137454 139108 . + . transcript_id "YML068W_id003"; gene_id "YML068W"; gene_name "ITT1"; +chrXIII SGD transcript 137550 138944 . + . transcript_id "YML068W_id001"; gene_id "YML068W"; gene_name "ITT1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 137550 138944 . + 0 transcript_id "YML068W_id001"; gene_name "ITT1"; gene_id "YML068W"; +chrXIII SGD gene 138777 140225 . - . gene_id "YML067C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 138777 140225 . - . transcript_id "YML067C_id002"; gene_id "YML067C"; gene_name "ERV41"; transcript_biotype "protein_coding"; +chrXIII SGD exon 138777 140225 . - . transcript_id "YML067C_id002"; gene_id "YML067C"; gene_name "ERV41"; +chrXIII SGD transcript 139063 140214 . - . transcript_id "YML067C_id001"; gene_id "YML067C"; gene_name "ERV41"; transcript_biotype "protein_coding"; +chrXIII SGD exon 139063 140090 . - 2 transcript_id "YML067C_id001"; gene_name "ERV41"; gene_id "YML067C"; +chrXIII SGD exon 140184 140214 . - 0 transcript_id "YML067C_id001"; gene_name "ERV41"; gene_id "YML067C"; +chrXIII SGD gene 140424 141533 . - . gene_id "YML066C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 140424 141533 . - . transcript_id "YML066C_mRNA"; gene_id "YML066C"; gene_name "SMA2"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 140424 141533 . - 0 transcript_id "YML066C_mRNA"; gene_name "SMA2"; gene_id "YML066C"; +chrXIII SGD gene 142116 145045 . + . gene_id "YML065W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 142116 145045 . + . transcript_id "YML065W_id003"; gene_id "YML065W"; gene_name "ORC1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 142116 145045 . + . transcript_id "YML065W_id003"; gene_id "YML065W"; gene_name "ORC1"; +chrXIII SGD transcript 142210 144954 . + . transcript_id "YML065W_id001"; gene_id "YML065W"; gene_name "ORC1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 142210 144954 . + 0 transcript_id "YML065W_id001"; gene_name "ORC1"; gene_id "YML065W"; +chrXIII SGD gene 144861 145959 . - . gene_id "YML064C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 144861 145959 . - . transcript_id "YML064C_id002"; gene_id "YML064C"; gene_name "TEM1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 144861 145959 . - . transcript_id "YML064C_id002"; gene_id "YML064C"; gene_name "TEM1"; +chrXIII SGD transcript 145139 145876 . - . transcript_id "YML064C_id001"; gene_id "YML064C"; gene_name "TEM1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 145139 145876 . - 0 transcript_id "YML064C_id001"; gene_name "TEM1"; gene_id "YML064C"; +chrXIII SGD gene 146238 147314 . + . gene_id "YML063W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 146238 147314 . + . transcript_id "YML063W_id003"; gene_id "YML063W"; gene_name "RPS1B"; transcript_biotype "protein_coding"; +chrXIII SGD exon 146238 147314 . + . transcript_id "YML063W_id003"; gene_id "YML063W"; gene_name "RPS1B"; +chrXIII SGD transcript 146482 147249 . + . transcript_id "YML063W_id001"; gene_id "YML063W"; gene_name "RPS1B"; transcript_biotype "protein_coding"; +chrXIII SGD exon 146482 147249 . + 0 transcript_id "YML063W_id001"; gene_name "RPS1B"; gene_id "YML063W"; +chrXIII SGD gene 147370 148729 . - . gene_id "YML062C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 147370 148729 . - . transcript_id "YML062C_id004"; gene_id "YML062C"; gene_name "MFT1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 147370 148729 . - . transcript_id "YML062C_id004"; gene_id "YML062C"; gene_name "MFT1"; +chrXIII SGD transcript 147505 148683 . - . transcript_id "YML062C_id001"; gene_id "YML062C"; gene_name "MFT1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 147505 148683 . - 0 transcript_id "YML062C_id001"; gene_name "MFT1"; gene_id "YML062C"; +chrXIII SGD gene 148903 151685 . - . gene_id "YML061C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 148903 151685 . - . transcript_id "YML061C_id004"; gene_id "YML061C"; gene_name "PIF1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 148903 151685 . - . transcript_id "YML061C_id004"; gene_id "YML061C"; gene_name "PIF1"; +chrXIII SGD transcript 148953 151532 . - . transcript_id "YML061C_id001"; gene_id "YML061C"; gene_name "PIF1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 148953 151532 . - 0 transcript_id "YML061C_id001"; gene_name "PIF1"; gene_id "YML061C"; +chrXIII SGD gene 151799 153220 . + . gene_id "YML060W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 151799 153220 . + . transcript_id "YML060W_id002"; gene_id "YML060W"; gene_name "OGG1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 151799 153220 . + . transcript_id "YML060W_id002"; gene_id "YML060W"; gene_name "OGG1"; +chrXIII SGD transcript 151871 153001 . + . transcript_id "YML060W_id001"; gene_id "YML060W"; gene_name "OGG1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 151871 153001 . + 0 transcript_id "YML060W_id001"; gene_name "OGG1"; gene_id "YML060W"; +chrXIII SGD gene 153219 158258 . - . gene_id "YML059C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 153219 158258 . - . transcript_id "YML059C_mRNA"; gene_id "YML059C"; gene_name "NTE1"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 153219 158258 . - 0 transcript_id "YML059C_mRNA"; gene_name "NTE1"; gene_id "YML059C"; +chrXIII SGD gene 158708 159098 . + . gene_id "YML058W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 158708 159098 . + . transcript_id "YML058W-A_id003"; gene_id "YML058W-A"; gene_name "HUG1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 158708 159098 . + . transcript_id "YML058W-A_id003"; gene_id "YML058W-A"; gene_name "HUG1"; +chrXIII SGD transcript 158760 158966 . + . transcript_id "YML058W-A_id001"; gene_id "YML058W-A"; gene_name "HUG1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 158760 158966 . + 0 transcript_id "YML058W-A_id001"; gene_name "HUG1"; gene_id "YML058W-A"; +chrXIII SGD gene 159361 160068 . + . gene_id "YML058W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 159361 160068 . + . transcript_id "YML058W_id001"; gene_id "YML058W"; gene_name "SML1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 159361 160068 . + . transcript_id "YML058W_id001"; gene_id "YML058W"; gene_name "SML1"; +chrXIII SGD transcript 159383 159697 . + . transcript_id "YML058W_id003"; gene_id "YML058W"; gene_name "SML1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 159383 159697 . + 0 transcript_id "YML058W_id003"; gene_name "SML1"; gene_id "YML058W"; +chrXIII SGD gene 160023 160412 . - . gene_id "YML057C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 160023 160412 . - . transcript_id "YML057C-A_mRNA"; gene_id "YML057C-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 160023 160412 . - 0 transcript_id "YML057C-A_mRNA"; gene_id "YML057C-A"; +chrXIII SGD gene 160089 162112 . + . gene_id "YML057W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 160089 162112 . + . transcript_id "YML057W_id006"; gene_id "YML057W"; gene_name "CMP2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 160089 162112 . + . transcript_id "YML057W_id006"; gene_id "YML057W"; gene_name "CMP2"; +chrXIII SGD transcript 160180 161994 . + . transcript_id "YML057W_id001"; gene_id "YML057W"; gene_name "CMP2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 160180 161994 . + 0 transcript_id "YML057W_id001"; gene_name "CMP2"; gene_id "YML057W"; +chrXIII SGD gene 162115 164379 . - . gene_id "YML056C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 162115 164379 . - . transcript_id "YML056C_id002"; gene_id "YML056C"; gene_name "IMD4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 162115 164379 . - . transcript_id "YML056C_id002"; gene_id "YML056C"; gene_name "IMD4"; +chrXIII SGD transcript 162194 164176 . - . transcript_id "YML056C_id001"; gene_id "YML056C"; gene_name "IMD4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 162194 163308 . - 2 transcript_id "YML056C_id001"; gene_name "IMD4"; gene_id "YML056C"; +chrXIII SGD exon 163717 164176 . - 0 transcript_id "YML056C_id001"; gene_name "IMD4"; gene_id "YML056C"; +chrXIII SGD gene 163535 163620 . - . gene_id "YNCM0005C"; gene_biotype "ncRNA"; +chrXIII SGD transcript 163535 163620 . - . transcript_id "YNCM0005C_snoRNA"; gene_id "YNCM0005C"; gene_name "SNR54"; transcript_biotype "ncRNA"; +chrXIII SGD exon 163535 163620 . - . transcript_id "YNCM0005C_snoRNA"; gene_name "SNR54"; gene_id "YNCM0005C"; +chrXIII SGD gene 164599 165422 . + . gene_id "YML055W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 164599 165422 . + . transcript_id "YML055W_id002"; gene_id "YML055W"; gene_name "SPC2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 164599 165422 . + . transcript_id "YML055W_id002"; gene_id "YML055W"; gene_name "SPC2"; +chrXIII SGD transcript 164790 165326 . + . transcript_id "YML055W_id001"; gene_id "YML055W"; gene_name "SPC2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 164790 165326 . + 0 transcript_id "YML055W_id001"; gene_name "SPC2"; gene_id "YML055W"; +chrXIII SGD gene 165533 167308 . - . gene_id "YML054C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 165533 167308 . - . transcript_id "YML054C_id001"; gene_id "YML054C"; gene_name "CYB2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 165533 167308 . - 0 transcript_id "YML054C_id001"; gene_name "CYB2"; gene_id "YML054C"; +chrXIII SGD gene 167623 167781 . - . gene_id "YML054C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 167623 167781 . - . transcript_id "YML054C-A_mRNA"; gene_id "YML054C-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 167623 167781 . - 0 transcript_id "YML054C-A_mRNA"; gene_id "YML054C-A"; +chrXIII SGD gene 168795 168883 . + . gene_id "YNCM0006W"; gene_biotype "ncRNA"; +chrXIII SGD transcript 168795 168883 . + . transcript_id "YNCM0006W_tRNA"; gene_id "YNCM0006W"; gene_name "SUP5"; transcript_biotype "ncRNA"; +chrXIII SGD exon 168795 168833 . + . transcript_id "YNCM0006W_tRNA"; gene_name "SUP5"; gene_id "YNCM0006W"; +chrXIII SGD exon 168848 168883 . + . transcript_id "YNCM0006W_tRNA"; gene_name "SUP5"; gene_id "YNCM0006W"; +chrXIII SGD gene 169071 169989 . - . gene_id "YML053C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 169071 169989 . - . transcript_id "YML053C_id006"; gene_id "YML053C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 169071 169989 . - . transcript_id "YML053C_id006"; gene_id "YML053C"; +chrXIII SGD transcript 169116 169754 . - . transcript_id "YML053C_id001"; gene_id "YML053C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 169116 169754 . - 0 transcript_id "YML053C_id001"; gene_id "YML053C"; +chrXIII SGD gene 170363 171474 . + . gene_id "YML052W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 170363 171474 . + . transcript_id "YML052W_id001"; gene_id "YML052W"; gene_name "SUR7"; transcript_biotype "protein_coding"; +chrXIII SGD exon 170363 171474 . + . transcript_id "YML052W_id001"; gene_id "YML052W"; gene_name "SUR7"; +chrXIII SGD transcript 170402 171310 . + . transcript_id "YML052W_id005"; gene_id "YML052W"; gene_name "SUR7"; transcript_biotype "protein_coding"; +chrXIII SGD exon 170402 171310 . + 0 transcript_id "YML052W_id005"; gene_name "SUR7"; gene_id "YML052W"; +chrXIII SGD gene 171475 173044 . + . gene_id "YML051W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 171475 173044 . + . transcript_id "YML051W_id002"; gene_id "YML051W"; gene_name "GAL80"; transcript_biotype "protein_coding"; +chrXIII SGD exon 171475 173044 . + . transcript_id "YML051W_id002"; gene_id "YML051W"; gene_name "GAL80"; +chrXIII SGD transcript 171594 172901 . + . transcript_id "YML051W_id001"; gene_id "YML051W"; gene_name "GAL80"; transcript_biotype "protein_coding"; +chrXIII SGD exon 171594 172901 . + 0 transcript_id "YML051W_id001"; gene_name "GAL80"; gene_id "YML051W"; +chrXIII SGD gene 173121 174200 . + . gene_id "YML050W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 173121 174200 . + . transcript_id "YML050W_id002"; gene_id "YML050W"; gene_name "AIM32"; transcript_biotype "protein_coding"; +chrXIII SGD exon 173121 174200 . + . transcript_id "YML050W_id002"; gene_id "YML050W"; gene_name "AIM32"; +chrXIII SGD transcript 173139 174074 . + . transcript_id "YML050W_id001"; gene_id "YML050W"; gene_name "AIM32"; transcript_biotype "protein_coding"; +chrXIII SGD exon 173139 174074 . + 0 transcript_id "YML050W_id001"; gene_name "AIM32"; gene_id "YML050W"; +chrXIII SGD gene 174220 178305 . - . gene_id "YML049C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 174220 178305 . - . transcript_id "YML049C_mRNA"; gene_id "YML049C"; gene_name "RSE1"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 174220 178305 . - 0 transcript_id "YML049C_mRNA"; gene_name "RSE1"; gene_id "YML049C"; +chrXIII SGD gene 178381 179984 . + . gene_id "YML048W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 178381 179984 . + . transcript_id "YML048W_id004"; gene_id "YML048W"; gene_name "GSF2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 178381 179984 . + . transcript_id "YML048W_id004"; gene_id "YML048W"; gene_name "GSF2"; +chrXIII SGD transcript 178426 179637 . + . transcript_id "YML048W_id001"; gene_id "YML048W"; gene_name "GSF2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 178426 179637 . + 0 transcript_id "YML048W_id001"; gene_name "GSF2"; gene_id "YML048W"; +chrXIII SGD gene 179893 180258 . + . gene_id "YML047W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 179893 180258 . + . transcript_id "YML047W-A_mRNA"; gene_id "YML047W-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 179893 180258 . + 0 transcript_id "YML047W-A_mRNA"; gene_id "YML047W-A"; +chrXIII SGD gene 180017 181075 . - . gene_id "YML047C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 180017 181075 . - . transcript_id "YML047C_mRNA"; gene_id "YML047C"; gene_name "PRM6"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 180017 181075 . - 0 transcript_id "YML047C_mRNA"; gene_name "PRM6"; gene_id "YML047C"; +chrXIII SGD gene 181474 183363 . + . gene_id "YML046W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 181474 183363 . + . transcript_id "YML046W_id001"; gene_id "YML046W"; gene_name "PRP39"; transcript_biotype "protein_coding"; +chrXIII SGD exon 181474 183363 . + 0 transcript_id "YML046W_id001"; gene_name "PRP39"; gene_id "YML046W"; +chrXIII SGD gene 183898 183968 . - . gene_id "YNCM0007C"; gene_biotype "ncRNA"; +chrXIII SGD transcript 183898 183968 . - . transcript_id "YNCM0007C_tRNA"; gene_id "YNCM0007C"; transcript_biotype "ncRNA"; +chrXIII SGD exon 183898 183968 . - . transcript_id "YNCM0007C_tRNA"; gene_id "YNCM0007C"; +chrXIII SGD gene 184461 185783 . + . gene_id "YML045W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 184461 185783 . + . transcript_id "YML045W-A_dummy"; gene_id "YML045W-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 184461 185783 . + 0 transcript_id "YML045W-A_dummy"; gene_id "YML045W-A"; +chrXIII SGD gene 184461 189729 . + . gene_id "YML045W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 184461 189729 . + . transcript_id "YML045W_dummy"; gene_id "YML045W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 184461 185765 . + 0 transcript_id "YML045W_dummy"; gene_id "YML045W"; +chrXIII SGD exon 185767 189729 . + 0 transcript_id "YML045W_dummy"; gene_id "YML045W"; +chrXIII SGD gene 190080 191929 . - . gene_id "YML043C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 190080 191929 . - . transcript_id "YML043C_id002"; gene_id "YML043C"; gene_name "RRN11"; transcript_biotype "protein_coding"; +chrXIII SGD exon 190080 191929 . - . transcript_id "YML043C_id002"; gene_id "YML043C"; gene_name "RRN11"; +chrXIII SGD transcript 190244 191767 . - . transcript_id "YML043C_id001"; gene_id "YML043C"; gene_name "RRN11"; transcript_biotype "protein_coding"; +chrXIII SGD exon 190244 191767 . - 0 transcript_id "YML043C_id001"; gene_name "RRN11"; gene_id "YML043C"; +chrXIII SGD gene 192788 194800 . + . gene_id "YML042W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 192788 194800 . + . transcript_id "YML042W_id001"; gene_id "YML042W"; gene_name "CAT2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 192788 194800 . + 0 transcript_id "YML042W_id001"; gene_name "CAT2"; gene_id "YML042W"; +chrXIII SGD gene 194830 195830 . - . gene_id "YML041C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 194830 195830 . - . transcript_id "YML041C_id002"; gene_id "YML041C"; gene_name "VPS71"; transcript_biotype "protein_coding"; +chrXIII SGD exon 194830 195830 . - . transcript_id "YML041C_id002"; gene_id "YML041C"; gene_name "VPS71"; +chrXIII SGD transcript 194913 195755 . - . transcript_id "YML041C_id001"; gene_id "YML041C"; gene_name "VPS71"; transcript_biotype "protein_coding"; +chrXIII SGD exon 194913 195755 . - 0 transcript_id "YML041C_id001"; gene_name "VPS71"; gene_id "YML041C"; +chrXIII SGD gene 196068 196170 . - . gene_id "YNCM0008C"; gene_biotype "ncRNA"; +chrXIII SGD transcript 196068 196170 . - . transcript_id "YNCM0008C_tRNA"; gene_id "YNCM0008C"; gene_name "SUF7"; transcript_biotype "ncRNA"; +chrXIII SGD exon 196068 196103 . - . transcript_id "YNCM0008C_tRNA"; gene_name "SUF7"; gene_id "YNCM0008C"; +chrXIII SGD exon 196135 196170 . - . transcript_id "YNCM0008C_tRNA"; gene_name "SUF7"; gene_id "YNCM0008C"; +chrXIII SGD gene 196628 197950 . + . gene_id "YML040W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 196628 197950 . + . transcript_id "YML040W_dummy"; gene_id "YML040W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 196628 197950 . + 0 transcript_id "YML040W_dummy"; gene_id "YML040W"; +chrXIII SGD gene 196628 201896 . + . gene_id "YML039W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 196628 201896 . + . transcript_id "YML039W_dummy"; gene_id "YML039W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 196628 197932 . + 0 transcript_id "YML039W_dummy"; gene_id "YML039W"; +chrXIII SGD exon 197934 201896 . + 0 transcript_id "YML039W_dummy"; gene_id "YML039W"; +chrXIII SGD gene 202554 204278 . - . gene_id "YML038C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 202554 204278 . - . transcript_id "YML038C_id002"; gene_id "YML038C"; gene_name "YMD8"; transcript_biotype "protein_coding"; +chrXIII SGD exon 202554 204278 . - . transcript_id "YML038C_id002"; gene_id "YML038C"; gene_name "YMD8"; +chrXIII SGD transcript 202775 204103 . - . transcript_id "YML038C_id001"; gene_id "YML038C"; gene_name "YMD8"; transcript_biotype "protein_coding"; +chrXIII SGD exon 202775 204103 . - 0 transcript_id "YML038C_id001"; gene_name "YMD8"; gene_id "YML038C"; +chrXIII SGD gene 204386 205408 . - . gene_id "YML037C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 204386 205408 . - . transcript_id "YML037C_mRNA"; gene_id "YML037C"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 204386 205408 . - 0 transcript_id "YML037C_mRNA"; gene_id "YML037C"; +chrXIII SGD gene 204986 206345 . + . gene_id "YML036W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 204986 206345 . + . transcript_id "YML036W_id001"; gene_id "YML036W"; gene_name "CGI121"; transcript_biotype "protein_coding"; +chrXIII SGD exon 204986 206345 . + . transcript_id "YML036W_id001"; gene_id "YML036W"; gene_name "CGI121"; +chrXIII SGD transcript 205642 206293 . + . transcript_id "YML036W_id002"; gene_id "YML036W"; gene_name "CGI121"; transcript_biotype "protein_coding"; +chrXIII SGD exon 205642 206097 . + 0 transcript_id "YML036W_id002"; gene_name "CGI121"; gene_id "YML036W"; +chrXIII SGD exon 206204 206293 . + 0 transcript_id "YML036W_id002"; gene_name "CGI121"; gene_id "YML036W"; +chrXIII SGD gene 206189 208989 . - . gene_id "YML035C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 206189 208989 . - . transcript_id "YML035C_id009"; gene_id "YML035C"; gene_name "AMD1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 206189 208989 . - . transcript_id "YML035C_id009"; gene_id "YML035C"; gene_name "AMD1"; +chrXIII SGD transcript 206428 208860 . - . transcript_id "YML035C_id001"; gene_id "YML035C"; gene_name "AMD1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 206428 208860 . - 0 transcript_id "YML035C_id001"; gene_name "AMD1"; gene_id "YML035C"; +chrXIII SGD gene 209399 212329 . + . gene_id "YML034W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 209399 212329 . + . transcript_id "YML034W_id001"; gene_id "YML034W"; gene_name "SRC1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 209399 212329 . + . transcript_id "YML034W_id001"; gene_id "YML034W"; gene_name "SRC1"; +chrXIII SGD gene 209428 209826 . - . gene_id "YML034C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 209428 209826 . - . transcript_id "YML034C-A_mRNA"; gene_id "YML034C-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 209428 209826 . - 0 transcript_id "YML034C-A_mRNA"; gene_id "YML034C-A"; +chrXIII SGD transcript 209525 212155 . + . transcript_id "YML034W_id002"; gene_id "YML034W"; gene_name "SRC1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 209525 211444 . + 0 transcript_id "YML034W_id002"; gene_name "SRC1"; gene_id "YML034W"; +chrXIII SGD exon 211571 212155 . + 0 transcript_id "YML034W_id002"; gene_name "SRC1"; gene_id "YML034W"; +chrXIII SGD gene 212216 213970 . - . gene_id "YML032C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 212216 213970 . - . transcript_id "YML032C_id003"; gene_id "YML032C"; gene_name "RAD52"; transcript_biotype "protein_coding"; +chrXIII SGD exon 212216 213970 . - . transcript_id "YML032C_id003"; gene_id "YML032C"; gene_name "RAD52"; +chrXIII SGD transcript 212515 213930 . - . transcript_id "YML032C_id001"; gene_id "YML032C"; gene_name "RAD52"; transcript_biotype "protein_coding"; +chrXIII SGD exon 212515 213930 . - 0 transcript_id "YML032C_id001"; gene_name "RAD52"; gene_id "YML032C"; +chrXIII SGD gene 214086 214421 . - . gene_id "YML031C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 214086 214421 . - . transcript_id "YML031C-A_mRNA"; gene_id "YML031C-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 214086 214421 . - 0 transcript_id "YML031C-A_mRNA"; gene_id "YML031C-A"; +chrXIII SGD gene 214116 216229 . + . gene_id "YML031W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 214116 216229 . + . transcript_id "YML031W_id001"; gene_id "YML031W"; gene_name "NDC1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 214116 216229 . + . transcript_id "YML031W_id001"; gene_id "YML031W"; gene_name "NDC1"; +chrXIII SGD transcript 214189 216156 . + . transcript_id "YML031W_id002"; gene_id "YML031W"; gene_name "NDC1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 214189 216156 . + 0 transcript_id "YML031W_id002"; gene_name "NDC1"; gene_id "YML031W"; +chrXIII SGD gene 216350 217161 . + . gene_id "YML030W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 216350 217161 . + . transcript_id "YML030W_id005"; gene_id "YML030W"; gene_name "RCF1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 216350 217161 . + . transcript_id "YML030W_id005"; gene_id "YML030W"; gene_name "RCF1"; +chrXIII SGD transcript 216435 216914 . + . transcript_id "YML030W_id001"; gene_id "YML030W"; gene_name "RCF1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 216435 216914 . + 0 transcript_id "YML030W_id001"; gene_name "RCF1"; gene_id "YML030W"; +chrXIII SGD gene 217282 220204 . + . gene_id "YML029W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 217282 220204 . + . transcript_id "YML029W_id004"; gene_id "YML029W"; gene_name "USA1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 217282 220204 . + . transcript_id "YML029W_id004"; gene_id "YML029W"; gene_name "USA1"; +chrXIII SGD transcript 217362 219878 . + . transcript_id "YML029W_id001"; gene_id "YML029W"; gene_name "USA1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 217362 219878 . + 0 transcript_id "YML029W_id001"; gene_name "USA1"; gene_id "YML029W"; +chrXIII SGD gene 219076 220833 . + . gene_id "YML028W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 219076 220833 . + . transcript_id "YML028W_id003"; gene_id "YML028W"; gene_name "TSA1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 219076 220833 . + . transcript_id "YML028W_id003"; gene_id "YML028W"; gene_name "TSA1"; +chrXIII SGD transcript 220138 220728 . + . transcript_id "YML028W_id001"; gene_id "YML028W"; gene_name "TSA1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 220138 220728 . + 0 transcript_id "YML028W_id001"; gene_name "TSA1"; gene_id "YML028W"; +chrXIII SGD gene 221335 222733 . + . gene_id "YML027W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 221335 222733 . + . transcript_id "YML027W_id004"; gene_id "YML027W"; gene_name "YOX1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 221335 222733 . + . transcript_id "YML027W_id004"; gene_id "YML027W"; gene_name "YOX1"; +chrXIII SGD transcript 221406 222563 . + . transcript_id "YML027W_id001"; gene_id "YML027W"; gene_name "YOX1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 221406 222563 . + 0 transcript_id "YML027W_id001"; gene_name "YOX1"; gene_id "YML027W"; +chrXIII SGD gene 222567 223850 . - . gene_id "YML026C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 222567 223850 . - . transcript_id "YML026C_id001"; gene_id "YML026C"; gene_name "RPS18B"; transcript_biotype "protein_coding"; +chrXIII SGD exon 222567 223850 . - . transcript_id "YML026C_id001"; gene_id "YML026C"; gene_name "RPS18B"; +chrXIII SGD transcript 222987 223828 . - . transcript_id "YML026C_id002"; gene_id "YML026C"; gene_name "RPS18B"; transcript_biotype "protein_coding"; +chrXIII SGD exon 222987 223380 . - 1 transcript_id "YML026C_id002"; gene_name "RPS18B"; gene_id "YML026C"; +chrXIII SGD exon 223782 223828 . - 0 transcript_id "YML026C_id002"; gene_name "RPS18B"; gene_id "YML026C"; +chrXIII SGD gene 224260 225407 . - . gene_id "YML025C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 224260 225407 . - . transcript_id "YML025C_id003"; gene_id "YML025C"; gene_name "YML6"; transcript_biotype "protein_coding"; +chrXIII SGD exon 224260 225407 . - . transcript_id "YML025C_id003"; gene_id "YML025C"; gene_name "YML6"; +chrXIII SGD transcript 224406 225365 . - . transcript_id "YML025C_id001"; gene_id "YML025C"; gene_name "YML6"; transcript_biotype "protein_coding"; +chrXIII SGD exon 224406 225239 . - 0 transcript_id "YML025C_id001"; gene_name "YML6"; gene_id "YML025C"; +chrXIII SGD exon 225339 225365 . - 0 transcript_id "YML025C_id001"; gene_name "YML6"; gene_id "YML025C"; +chrXIII SGD gene 225847 226946 . + . gene_id "YML024W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 225847 226946 . + . transcript_id "YML024W_id002"; gene_id "YML024W"; gene_name "RPS17A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 225847 226946 . + . transcript_id "YML024W_id002"; gene_id "YML024W"; gene_name "RPS17A"; +chrXIII SGD transcript 225889 226697 . + . transcript_id "YML024W_id001"; gene_id "YML024W"; gene_name "RPS17A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 225889 225891 . + 0 transcript_id "YML024W_id001"; gene_name "RPS17A"; gene_id "YML024W"; +chrXIII SGD exon 226290 226697 . + 0 transcript_id "YML024W_id001"; gene_name "RPS17A"; gene_id "YML024W"; +chrXIII SGD gene 226910 228719 . - . gene_id "YML023C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 226910 228719 . - . transcript_id "YML023C_id002"; gene_id "YML023C"; gene_name "NSE5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 226910 228719 . - . transcript_id "YML023C_id002"; gene_id "YML023C"; gene_name "NSE5"; +chrXIII SGD transcript 226994 228664 . - . transcript_id "YML023C_id001"; gene_id "YML023C"; gene_name "NSE5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 226994 228664 . - 0 transcript_id "YML023C_id001"; gene_name "NSE5"; gene_id "YML023C"; +chrXIII SGD gene 228915 229998 . + . gene_id "YML022W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 228915 229998 . + . transcript_id "YML022W_id003"; gene_id "YML022W"; gene_name "APT1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 228915 229998 . + . transcript_id "YML022W_id003"; gene_id "YML022W"; gene_name "APT1"; +chrXIII SGD transcript 228937 229500 . + . transcript_id "YML022W_id001"; gene_id "YML022W"; gene_name "APT1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 228937 229500 . + 0 transcript_id "YML022W_id001"; gene_name "APT1"; gene_id "YML022W"; +chrXIII SGD gene 229538 230828 . - . gene_id "YML021C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 229538 230828 . - . transcript_id "YML021C_id001"; gene_id "YML021C"; gene_name "UNG1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 229538 230828 . - . transcript_id "YML021C_id001"; gene_id "YML021C"; gene_name "UNG1"; +chrXIII SGD transcript 229734 230813 . - . transcript_id "YML021C_id003"; gene_id "YML021C"; gene_name "UNG1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 229734 230813 . - 0 transcript_id "YML021C_id003"; gene_name "UNG1"; gene_id "YML021C"; +chrXIII SGD gene 231149 233143 . + . gene_id "YML020W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 231149 233143 . + . transcript_id "YML020W_id001"; gene_id "YML020W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 231149 233143 . + 0 transcript_id "YML020W_id001"; gene_id "YML020W"; +chrXIII SGD gene 233409 234750 . + . gene_id "YML019W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 233409 234750 . + . transcript_id "YML019W_id001"; gene_id "YML019W"; gene_name "OST6"; transcript_biotype "protein_coding"; +chrXIII SGD exon 233409 234750 . + . transcript_id "YML019W_id001"; gene_id "YML019W"; gene_name "OST6"; +chrXIII SGD transcript 233457 234455 . + . transcript_id "YML019W_id002"; gene_id "YML019W"; gene_name "OST6"; transcript_biotype "protein_coding"; +chrXIII SGD exon 233457 234455 . + 0 transcript_id "YML019W_id002"; gene_name "OST6"; gene_id "YML019W"; +chrXIII SGD gene 234570 236083 . - . gene_id "YML018C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 234570 236083 . - . transcript_id "YML018C_id003"; gene_id "YML018C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 234570 236083 . - . transcript_id "YML018C_id003"; gene_id "YML018C"; +chrXIII SGD transcript 234771 235952 . - . transcript_id "YML018C_id001"; gene_id "YML018C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 234771 235952 . - 0 transcript_id "YML018C_id001"; gene_id "YML018C"; +chrXIII SGD gene 236588 238731 . + . gene_id "YML017W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 236588 238731 . + . transcript_id "YML017W_mRNA"; gene_id "YML017W"; gene_name "PSP2"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 236588 236591 . + 0 transcript_id "YML017W_mRNA"; gene_name "PSP2"; gene_id "YML017W"; +chrXIII SGD CDS 236954 238731 . + 2 transcript_id "YML017W_mRNA"; gene_name "PSP2"; gene_id "YML017W"; +chrXIII SGD gene 239458 241536 . - . gene_id "YML016C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 239458 241536 . - . transcript_id "YML016C_mRNA"; gene_id "YML016C"; gene_name "PPZ1"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 239458 241536 . - 0 transcript_id "YML016C_mRNA"; gene_name "PPZ1"; gene_id "YML016C"; +chrXIII SGD gene 241868 243092 . - . gene_id "YML015C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 241868 243092 . - . transcript_id "YML015C_id002"; gene_id "YML015C"; gene_name "TAF11"; transcript_biotype "protein_coding"; +chrXIII SGD exon 241868 243092 . - . transcript_id "YML015C_id002"; gene_id "YML015C"; gene_name "TAF11"; +chrXIII SGD transcript 241989 243029 . - . transcript_id "YML015C_id001"; gene_id "YML015C"; gene_name "TAF11"; transcript_biotype "protein_coding"; +chrXIII SGD exon 241989 243029 . - 0 transcript_id "YML015C_id001"; gene_name "TAF11"; gene_id "YML015C"; +chrXIII SGD gene 243225 244064 . + . gene_id "YML014W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 243225 244064 . + . transcript_id "YML014W_id001"; gene_id "YML014W"; gene_name "TRM9"; transcript_biotype "protein_coding"; +chrXIII SGD exon 243225 244064 . + 0 transcript_id "YML014W_id001"; gene_name "TRM9"; gene_id "YML014W"; +chrXIII SGD gene 244120 246141 . + . gene_id "YML013W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 244120 246141 . + . transcript_id "YML013W_id001"; gene_id "YML013W"; gene_name "UBX2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 244120 246141 . + . transcript_id "YML013W_id001"; gene_id "YML013W"; gene_name "UBX2"; +chrXIII SGD transcript 244149 245903 . + . transcript_id "YML013W_id002"; gene_id "YML013W"; gene_name "UBX2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 244149 245903 . + 0 transcript_id "YML013W_id002"; gene_name "UBX2"; gene_id "YML013W"; +chrXIII SGD gene 244687 246864 . + . gene_id "YML012W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 244687 246864 . + . transcript_id "YML012W_id006"; gene_id "YML012W"; gene_name "ERV25"; transcript_biotype "protein_coding"; +chrXIII SGD exon 244687 246864 . + . transcript_id "YML012W_id006"; gene_id "YML012W"; gene_name "ERV25"; +chrXIII SGD gene 245537 245914 . - . gene_id "YML012C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 245537 245914 . - . transcript_id "YML012C-A_mRNA"; gene_id "YML012C-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 245537 245914 . - 0 transcript_id "YML012C-A_mRNA"; gene_id "YML012C-A"; +chrXIII SGD transcript 246116 246751 . + . transcript_id "YML012W_id001"; gene_id "YML012W"; gene_name "ERV25"; transcript_biotype "protein_coding"; +chrXIII SGD exon 246116 246751 . + 0 transcript_id "YML012W_id001"; gene_name "ERV25"; gene_id "YML012W"; +chrXIII SGD gene 246727 247481 . - . gene_id "YML011C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 246727 247481 . - . transcript_id "YML011C_id003"; gene_id "YML011C"; gene_name "RAD33"; transcript_biotype "protein_coding"; +chrXIII SGD exon 246727 247481 . - . transcript_id "YML011C_id003"; gene_id "YML011C"; gene_name "RAD33"; +chrXIII SGD transcript 246895 247428 . - . transcript_id "YML011C_id001"; gene_id "YML011C"; gene_name "RAD33"; transcript_biotype "protein_coding"; +chrXIII SGD exon 246895 247428 . - 0 transcript_id "YML011C_id001"; gene_name "RAD33"; gene_id "YML011C"; +chrXIII SGD gene 247677 250868 . + . gene_id "YML010W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 247677 250868 . + . transcript_id "YML010W_mRNA"; gene_id "YML010W"; gene_name "SPT5"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 247677 250868 . + 0 transcript_id "YML010W_mRNA"; gene_name "SPT5"; gene_id "YML010W"; +chrXIII SGD gene 248596 251211 . + . gene_id "YML009W-B"; gene_biotype "protein_coding"; +chrXIII SGD transcript 248596 251211 . + . transcript_id "YML009W-B_id003"; gene_id "YML009W-B"; transcript_biotype "protein_coding"; +chrXIII SGD exon 248596 251211 . + . transcript_id "YML009W-B_id003"; gene_id "YML009W-B"; +chrXIII SGD transcript 250435 250911 . + . transcript_id "YML009W-B_id001"; gene_id "YML009W-B"; transcript_biotype "protein_coding"; +chrXIII SGD exon 250435 250911 . + 0 transcript_id "YML009W-B_id001"; gene_id "YML009W-B"; +chrXIII SGD gene 250675 251001 . - . gene_id "YML009C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 250675 251001 . - . transcript_id "YML009C-A_mRNA"; gene_id "YML009C-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 250675 251001 . - 0 transcript_id "YML009C-A_mRNA"; gene_id "YML009C-A"; +chrXIII SGD gene 251016 251565 . - . gene_id "YML009C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 251016 251565 . - . transcript_id "YML009C_id005"; gene_id "YML009C"; gene_name "MRPL39"; transcript_biotype "protein_coding"; +chrXIII SGD exon 251016 251565 . - . transcript_id "YML009C_id005"; gene_id "YML009C"; gene_name "MRPL39"; +chrXIII SGD transcript 251304 251516 . - . transcript_id "YML009C_id001"; gene_id "YML009C"; gene_name "MRPL39"; transcript_biotype "protein_coding"; +chrXIII SGD exon 251304 251516 . - 0 transcript_id "YML009C_id001"; gene_name "MRPL39"; gene_id "YML009C"; +chrXIII SGD gene 251751 253265 . - . gene_id "YML008C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 251751 253265 . - . transcript_id "YML008C_id002"; gene_id "YML008C"; gene_name "ERG6"; transcript_biotype "protein_coding"; +chrXIII SGD exon 251751 253265 . - . transcript_id "YML008C_id002"; gene_id "YML008C"; gene_name "ERG6"; +chrXIII SGD transcript 251839 252990 . - . transcript_id "YML008C_id001"; gene_id "YML008C"; gene_name "ERG6"; transcript_biotype "protein_coding"; +chrXIII SGD exon 251839 252990 . - 0 transcript_id "YML008C_id001"; gene_name "ERG6"; gene_id "YML008C"; +chrXIII SGD gene 253000 253631 . - . gene_id "YML007C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 253000 253631 . - . transcript_id "YML007C-A_id001"; gene_id "YML007C-A"; gene_name "MIN4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 253000 253631 . - . transcript_id "YML007C-A_id001"; gene_id "YML007C-A"; gene_name "MIN4"; +chrXIII SGD transcript 253162 253272 . - . transcript_id "YML007C-A_id002"; gene_id "YML007C-A"; gene_name "MIN4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 253162 253272 . - 0 transcript_id "YML007C-A_id002"; gene_name "MIN4"; gene_id "YML007C-A"; +chrXIII SGD gene 253660 256035 . + . gene_id "YML007W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 253660 256035 . + . transcript_id "YML007W_id001"; gene_id "YML007W"; gene_name "YAP1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 253660 256035 . + . transcript_id "YML007W_id001"; gene_id "YML007W"; gene_name "YAP1"; +chrXIII SGD transcript 253763 255800 . + . transcript_id "YML007W_id003"; gene_id "YML007W"; gene_name "YAP1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 253763 253783 . + . transcript_id "YML007W_id003"; gene_name "YAP1"; gene_id "YML007W"; +chrXIII SGD exon 253848 255800 . + . transcript_id "YML007W_id003"; gene_name "YAP1"; gene_id "YML007W"; +chrXIII SGD exon 253848 255800 . + 0 transcript_id "YML007W_id003"; gene_name "YAP1"; gene_id "YML007W"; +chrXIII SGD gene 256018 258630 . - . gene_id "YML006C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 256018 258630 . - . transcript_id "YML006C_id001"; gene_id "YML006C"; gene_name "GIS4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 256018 258630 . - . transcript_id "YML006C_id001"; gene_id "YML006C"; gene_name "GIS4"; +chrXIII SGD transcript 256092 258416 . - . transcript_id "YML006C_id003"; gene_id "YML006C"; gene_name "GIS4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 256092 258416 . - 0 transcript_id "YML006C_id003"; gene_name "GIS4"; gene_id "YML006C"; +chrXIII SGD gene 259158 259239 . - . gene_id "YNCM0009C"; gene_biotype "ncRNA"; +chrXIII SGD transcript 259158 259239 . - . transcript_id "YNCM0009C_tRNA"; gene_id "YNCM0009C"; transcript_biotype "ncRNA"; +chrXIII SGD exon 259158 259239 . - . transcript_id "YNCM0009C_tRNA"; gene_id "YNCM0009C"; +chrXIII SGD gene 260214 261693 . + . gene_id "YML005W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 260214 261693 . + . transcript_id "YML005W_id003"; gene_id "YML005W"; gene_name "TRM12"; transcript_biotype "protein_coding"; +chrXIII SGD exon 260214 261693 . + . transcript_id "YML005W_id003"; gene_id "YML005W"; gene_name "TRM12"; +chrXIII SGD transcript 260221 261609 . + . transcript_id "YML005W_id001"; gene_id "YML005W"; gene_name "TRM12"; transcript_biotype "protein_coding"; +chrXIII SGD exon 260221 261609 . + 0 transcript_id "YML005W_id001"; gene_name "TRM12"; gene_id "YML005W"; +chrXIII SGD gene 261569 262882 . - . gene_id "YML004C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 261569 262882 . - . transcript_id "YML004C_id001"; gene_id "YML004C"; gene_name "GLO1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 261569 262882 . - . transcript_id "YML004C_id001"; gene_id "YML004C"; gene_name "GLO1"; +chrXIII SGD transcript 261705 262685 . - . transcript_id "YML004C_id002"; gene_id "YML004C"; gene_name "GLO1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 261705 262685 . - 0 transcript_id "YML004C_id002"; gene_name "GLO1"; gene_id "YML004C"; +chrXIII SGD gene 263483 264355 . + . gene_id "YML003W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 263483 264355 . + . transcript_id "YML003W_mRNA"; gene_id "YML003W"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 263483 264355 . + 0 transcript_id "YML003W_mRNA"; gene_id "YML003W"; +chrXIII SGD gene 264541 266754 . + . gene_id "YML002W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 264541 266754 . + . transcript_id "YML002W_id001"; gene_id "YML002W"; gene_name "VRL1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 264541 266754 . + 0 transcript_id "YML002W_id001"; gene_name "VRL1"; gene_id "YML002W"; +chrXIII SGD gene 266941 267930 . + . gene_id "YML001W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 266941 267930 . + . transcript_id "YML001W_id001"; gene_id "YML001W"; gene_name "YPT7"; transcript_biotype "protein_coding"; +chrXIII SGD exon 266941 267930 . + . transcript_id "YML001W_id001"; gene_id "YML001W"; gene_name "YPT7"; +chrXIII SGD transcript 267174 267800 . + . transcript_id "YML001W_id002"; gene_id "YML001W"; gene_name "YPT7"; transcript_biotype "protein_coding"; +chrXIII SGD exon 267174 267800 . + 0 transcript_id "YML001W_id002"; gene_name "YPT7"; gene_id "YML001W"; +chrXIII SGD gene 268812 271495 . - . gene_id "YMR001C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 268812 271495 . - . transcript_id "YMR001C_id001"; gene_id "YMR001C"; gene_name "CDC5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 268812 271495 . - . transcript_id "YMR001C_id001"; gene_id "YMR001C"; gene_name "CDC5"; +chrXIII SGD transcript 269019 271136 . - . transcript_id "YMR001C_id002"; gene_id "YMR001C"; gene_name "CDC5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 269019 271136 . - 0 transcript_id "YMR001C_id002"; gene_name "CDC5"; gene_id "YMR001C"; +chrXIII SGD gene 271347 271577 . - . gene_id "YMR001C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 271347 271577 . - . transcript_id "YMR001C-A_mRNA"; gene_id "YMR001C-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 271347 271577 . - 0 transcript_id "YMR001C-A_mRNA"; gene_id "YMR001C-A"; +chrXIII SGD gene 271888 272906 . + . gene_id "YMR002W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 271888 272906 . + . transcript_id "YMR002W_id002"; gene_id "YMR002W"; gene_name "MIX17"; transcript_biotype "protein_coding"; +chrXIII SGD exon 271888 272906 . + . transcript_id "YMR002W_id002"; gene_id "YMR002W"; gene_name "MIX17"; +chrXIII SGD transcript 272193 272663 . + . transcript_id "YMR002W_id001"; gene_id "YMR002W"; gene_name "MIX17"; transcript_biotype "protein_coding"; +chrXIII SGD exon 272193 272663 . + 0 transcript_id "YMR002W_id001"; gene_name "MIX17"; gene_id "YMR002W"; +chrXIII SGD gene 273075 273798 . + . gene_id "YMR003W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 273075 273798 . + . transcript_id "YMR003W_id007"; gene_id "YMR003W"; gene_name "AIM34"; transcript_biotype "protein_coding"; +chrXIII SGD exon 273075 273798 . + . transcript_id "YMR003W_id007"; gene_id "YMR003W"; gene_name "AIM34"; +chrXIII SGD transcript 273118 273714 . + . transcript_id "YMR003W_id001"; gene_id "YMR003W"; gene_name "AIM34"; transcript_biotype "protein_coding"; +chrXIII SGD exon 273118 273714 . + 0 transcript_id "YMR003W_id001"; gene_name "AIM34"; gene_id "YMR003W"; +chrXIII SGD gene 273920 275700 . + . gene_id "YMR004W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 273920 275700 . + . transcript_id "YMR004W_id005"; gene_id "YMR004W"; gene_name "MVP1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 273920 275700 . + . transcript_id "YMR004W_id005"; gene_id "YMR004W"; gene_name "MVP1"; +chrXIII SGD transcript 274017 275552 . + . transcript_id "YMR004W_id001"; gene_id "YMR004W"; gene_name "MVP1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 274017 275552 . + 0 transcript_id "YMR004W_id001"; gene_name "MVP1"; gene_id "YMR004W"; +chrXIII SGD gene 275974 277354 . + . gene_id "YMR005W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 275974 277354 . + . transcript_id "YMR005W_id006"; gene_id "YMR005W"; gene_name "TAF4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 275974 277354 . + . transcript_id "YMR005W_id006"; gene_id "YMR005W"; gene_name "TAF4"; +chrXIII SGD transcript 276045 277211 . + . transcript_id "YMR005W_id001"; gene_id "YMR005W"; gene_name "TAF4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 276045 277211 . + 0 transcript_id "YMR005W_id001"; gene_name "TAF4"; gene_id "YMR005W"; +chrXIII SGD gene 277456 279757 . - . gene_id "YMR006C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 277456 279757 . - . transcript_id "YMR006C_id011"; gene_id "YMR006C"; gene_name "PLB2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 277456 279757 . - . transcript_id "YMR006C_id011"; gene_id "YMR006C"; gene_name "PLB2"; +chrXIII SGD transcript 277561 279681 . - . transcript_id "YMR006C_id001"; gene_id "YMR006C"; gene_name "PLB2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 277561 279681 . - 0 transcript_id "YMR006C_id001"; gene_name "PLB2"; gene_id "YMR006C"; +chrXIII SGD gene 279942 280526 . + . gene_id "YMR007W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 279942 280526 . + . transcript_id "YMR007W_id001"; gene_id "YMR007W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 279942 280526 . + . transcript_id "YMR007W_id001"; gene_id "YMR007W"; +chrXIII SGD transcript 279960 280340 . + . transcript_id "YMR007W_id002"; gene_id "YMR007W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 279960 280340 . + 0 transcript_id "YMR007W_id002"; gene_id "YMR007W"; +chrXIII SGD gene 280251 283458 . - . gene_id "YMR008C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 280251 283458 . - . transcript_id "YMR008C_id001"; gene_id "YMR008C"; gene_name "PLB1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 280251 283458 . - . transcript_id "YMR008C_id001"; gene_id "YMR008C"; gene_name "PLB1"; +chrXIII SGD transcript 280590 282584 . - . transcript_id "YMR008C_id003"; gene_id "YMR008C"; gene_name "PLB1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 280590 282584 . - 0 transcript_id "YMR008C_id003"; gene_name "PLB1"; gene_id "YMR008C"; +chrXIII SGD gene 283081 283548 . - . gene_id "YMR008C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 283081 283548 . - . transcript_id "YMR008C-A_mRNA"; gene_id "YMR008C-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 283081 283548 . - 0 transcript_id "YMR008C-A_mRNA"; gene_id "YMR008C-A"; +chrXIII SGD gene 284059 285663 . + . gene_id "YMR009W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 284059 285663 . + . transcript_id "YMR009W_id001"; gene_id "YMR009W"; gene_name "ADI1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 284059 285663 . + . transcript_id "YMR009W_id001"; gene_id "YMR009W"; gene_name "ADI1"; +chrXIII SGD transcript 284102 284641 . + . transcript_id "YMR009W_id002"; gene_id "YMR009W"; gene_name "ADI1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 284102 284641 . + 0 transcript_id "YMR009W_id002"; gene_name "ADI1"; gene_id "YMR009W"; +chrXIII SGD gene 284835 286765 . + . gene_id "YMR010W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 284835 286765 . + . transcript_id "YMR010W_id003"; gene_id "YMR010W"; gene_name "ANY1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 284835 286765 . + . transcript_id "YMR010W_id003"; gene_id "YMR010W"; gene_name "ANY1"; +chrXIII SGD transcript 285100 286317 . + . transcript_id "YMR010W_id001"; gene_id "YMR010W"; gene_name "ANY1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 285100 286317 . + 0 transcript_id "YMR010W_id001"; gene_name "ANY1"; gene_id "YMR010W"; +chrXIII SGD gene 288049 289942 . + . gene_id "YMR011W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 288049 289942 . + . transcript_id "YMR011W_id003"; gene_id "YMR011W"; gene_name "HXT2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 288049 289942 . + . transcript_id "YMR011W_id003"; gene_id "YMR011W"; gene_name "HXT2"; +chrXIII SGD transcript 288079 289704 . + . transcript_id "YMR011W_id001"; gene_id "YMR011W"; gene_name "HXT2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 288079 289704 . + 0 transcript_id "YMR011W_id001"; gene_name "HXT2"; gene_id "YMR011W"; +chrXIII SGD gene 290801 290872 . + . gene_id "YNCM0010W"; gene_biotype "ncRNA"; +chrXIII SGD transcript 290801 290872 . + . transcript_id "YNCM0010W_tRNA"; gene_id "YNCM0010W"; transcript_biotype "ncRNA"; +chrXIII SGD exon 290801 290872 . + . transcript_id "YNCM0010W_tRNA"; gene_id "YNCM0010W"; +chrXIII SGD gene 291006 295102 . + . gene_id "YMR012W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 291006 295102 . + . transcript_id "YMR012W_id001"; gene_id "YMR012W"; gene_name "CLU1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 291006 295102 . + . transcript_id "YMR012W_id001"; gene_id "YMR012W"; gene_name "CLU1"; +chrXIII SGD transcript 291134 294967 . + . transcript_id "YMR012W_id002"; gene_id "YMR012W"; gene_name "CLU1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 291134 294967 . + 0 transcript_id "YMR012W_id002"; gene_name "CLU1"; gene_id "YMR012W"; +chrXIII SGD gene 295119 296719 . - . gene_id "YMR013C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 295119 296719 . - . transcript_id "YMR013C-A_id002"; gene_id "YMR013C-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 295119 296719 . - . transcript_id "YMR013C-A_id002"; gene_id "YMR013C-A"; +chrXIII SGD gene 295179 296738 . - . gene_id "YMR013C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 295179 296738 . - . transcript_id "YMR013C_id001"; gene_id "YMR013C"; gene_name "SEC59"; transcript_biotype "protein_coding"; +chrXIII SGD exon 295179 296738 . - 0 transcript_id "YMR013C_id001"; gene_name "SEC59"; gene_id "YMR013C"; +chrXIII SGD transcript 296471 296620 . - . transcript_id "YMR013C-A_id001"; gene_id "YMR013C-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 296471 296620 . - 0 transcript_id "YMR013C-A_id001"; gene_id "YMR013C-A"; +chrXIII SGD gene 297278 297364 . + . gene_id "YNCM0011W"; gene_biotype "ncRNA"; +chrXIII SGD transcript 297278 297364 . + . transcript_id "YNCM0011W_snoRNA"; gene_id "YNCM0011W"; gene_name "SNR78"; transcript_biotype "ncRNA"; +chrXIII SGD exon 297278 297364 . + . transcript_id "YNCM0011W_snoRNA"; gene_name "SNR78"; gene_id "YNCM0011W"; +chrXIII SGD gene 297506 297593 . + . gene_id "YNCM0012W"; gene_biotype "ncRNA"; +chrXIII SGD transcript 297506 297593 . + . transcript_id "YNCM0012W_snoRNA"; gene_id "YNCM0012W"; gene_name "SNR77"; transcript_biotype "ncRNA"; +chrXIII SGD exon 297506 297593 . + . transcript_id "YNCM0012W_snoRNA"; gene_name "SNR77"; gene_id "YNCM0012W"; +chrXIII SGD gene 297506 298625 . + . gene_id "YMR013W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 297506 298625 . + . transcript_id "YMR013W-A_id002"; gene_id "YMR013W-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 297506 298625 . + . transcript_id "YMR013W-A_id002"; gene_id "YMR013W-A"; +chrXIII SGD gene 297725 297833 . + . gene_id "YNCM0013W"; gene_biotype "ncRNA"; +chrXIII SGD transcript 297725 297833 . + . transcript_id "YNCM0013W_snoRNA"; gene_id "YNCM0013W"; gene_name "SNR76"; transcript_biotype "ncRNA"; +chrXIII SGD exon 297725 297833 . + . transcript_id "YNCM0013W_snoRNA"; gene_name "SNR76"; gene_id "YNCM0013W"; +chrXIII SGD gene 297918 298006 . + . gene_id "YNCM0014W"; gene_biotype "ncRNA"; +chrXIII SGD transcript 297918 298006 . + . transcript_id "YNCM0014W_snoRNA"; gene_id "YNCM0014W"; gene_name "SNR75"; transcript_biotype "ncRNA"; +chrXIII SGD exon 297918 298006 . + . transcript_id "YNCM0014W_snoRNA"; gene_name "SNR75"; gene_id "YNCM0014W"; +chrXIII SGD gene 298138 298225 . + . gene_id "YNCM0015W"; gene_biotype "ncRNA"; +chrXIII SGD transcript 298138 298225 . + . transcript_id "YNCM0015W_snoRNA"; gene_id "YNCM0015W"; gene_name "SNR74"; transcript_biotype "ncRNA"; +chrXIII SGD exon 298138 298225 . + . transcript_id "YNCM0015W_snoRNA"; gene_name "SNR74"; gene_id "YNCM0015W"; +chrXIII SGD gene 298307 298412 . + . gene_id "YNCM0016W"; gene_biotype "ncRNA"; +chrXIII SGD transcript 298307 298412 . + . transcript_id "YNCM0016W_snoRNA"; gene_id "YNCM0016W"; gene_name "SNR73"; transcript_biotype "ncRNA"; +chrXIII SGD exon 298307 298412 . + . transcript_id "YNCM0016W_snoRNA"; gene_name "SNR73"; gene_id "YNCM0016W"; +chrXIII SGD transcript 298311 298391 . + . transcript_id "YMR013W-A_id001"; gene_id "YMR013W-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 298311 298391 . + 0 transcript_id "YMR013W-A_id001"; gene_id "YMR013W-A"; +chrXIII SGD gene 298554 298651 . + . gene_id "YNCM0017W"; gene_biotype "ncRNA"; +chrXIII SGD transcript 298554 298651 . + . transcript_id "YNCM0017W_snoRNA"; gene_id "YNCM0017W"; gene_name "SNR72"; transcript_biotype "ncRNA"; +chrXIII SGD exon 298554 298651 . + . transcript_id "YNCM0017W_snoRNA"; gene_name "SNR72"; gene_id "YNCM0017W"; +chrXIII SGD gene 298820 300550 . + . gene_id "YMR014W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 298820 300550 . + . transcript_id "YMR014W_id003"; gene_id "YMR014W"; gene_name "BUD22"; transcript_biotype "protein_coding"; +chrXIII SGD exon 298820 300550 . + . transcript_id "YMR014W_id003"; gene_id "YMR014W"; gene_name "BUD22"; +chrXIII SGD transcript 298868 300427 . + . transcript_id "YMR014W_id001"; gene_id "YMR014W"; gene_name "BUD22"; transcript_biotype "protein_coding"; +chrXIII SGD exon 298868 300427 . + 0 transcript_id "YMR014W_id001"; gene_name "BUD22"; gene_id "YMR014W"; +chrXIII SGD gene 300680 302654 . - . gene_id "YMR015C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 300680 302654 . - . transcript_id "YMR015C_id002"; gene_id "YMR015C"; gene_name "ERG5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 300680 302654 . - . transcript_id "YMR015C_id002"; gene_id "YMR015C"; gene_name "ERG5"; +chrXIII SGD transcript 300869 302485 . - . transcript_id "YMR015C_id001"; gene_id "YMR015C"; gene_name "ERG5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 300869 302485 . - 0 transcript_id "YMR015C_id001"; gene_name "ERG5"; gene_id "YMR015C"; +chrXIII SGD gene 303093 305817 . - . gene_id "YMR016C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 303093 305817 . - . transcript_id "YMR016C_id001"; gene_id "YMR016C"; gene_name "SOK2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 303093 305817 . - . transcript_id "YMR016C_id001"; gene_id "YMR016C"; gene_name "SOK2"; +chrXIII SGD transcript 303236 305593 . - . transcript_id "YMR016C_id002"; gene_id "YMR016C"; gene_name "SOK2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 303236 305593 . - 0 transcript_id "YMR016C_id002"; gene_name "SOK2"; gene_id "YMR016C"; +chrXIII SGD gene 307489 308682 . + . gene_id "YMR017W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 307489 308682 . + . transcript_id "YMR017W_id001"; gene_id "YMR017W"; gene_name "SPO20"; transcript_biotype "protein_coding"; +chrXIII SGD exon 307489 308682 . + 0 transcript_id "YMR017W_id001"; gene_name "SPO20"; gene_id "YMR017W"; +chrXIII SGD gene 310208 311752 . + . gene_id "YMR018W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 310208 311752 . + . transcript_id "YMR018W_mRNA"; gene_id "YMR018W"; gene_name "PEX9"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 310208 311752 . + 0 transcript_id "YMR018W_mRNA"; gene_name "PEX9"; gene_id "YMR018W"; +chrXIII SGD gene 312156 315005 . + . gene_id "YMR019W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 312156 315005 . + . transcript_id "YMR019W_mRNA"; gene_id "YMR019W"; gene_name "STB4"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 312156 315005 . + 0 transcript_id "YMR019W_mRNA"; gene_name "STB4"; gene_id "YMR019W"; +chrXIII SGD gene 315249 316998 . + . gene_id "YMR020W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 315249 316998 . + . transcript_id "YMR020W_id002"; gene_id "YMR020W"; gene_name "FMS1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 315249 316998 . + . transcript_id "YMR020W_id002"; gene_id "YMR020W"; gene_name "FMS1"; +chrXIII SGD transcript 315377 316903 . + . transcript_id "YMR020W_id001"; gene_id "YMR020W"; gene_name "FMS1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 315377 316903 . + 0 transcript_id "YMR020W_id001"; gene_name "FMS1"; gene_id "YMR020W"; +chrXIII SGD gene 316880 318480 . - . gene_id "YMR021C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 316880 318480 . - . transcript_id "YMR021C_id001"; gene_id "YMR021C"; gene_name "MAC1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 316880 318480 . - . transcript_id "YMR021C_id001"; gene_id "YMR021C"; gene_name "MAC1"; +chrXIII SGD transcript 317165 318418 . - . transcript_id "YMR021C_id002"; gene_id "YMR021C"; gene_name "MAC1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 317165 318418 . - 0 transcript_id "YMR021C_id002"; gene_name "MAC1"; gene_id "YMR021C"; +chrXIII SGD gene 318132 319297 . + . gene_id "YMR022W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 318132 319297 . + . transcript_id "YMR022W_id001"; gene_id "YMR022W"; gene_name "UBC7"; transcript_biotype "protein_coding"; +chrXIII SGD exon 318132 319297 . + . transcript_id "YMR022W_id001"; gene_id "YMR022W"; gene_name "UBC7"; +chrXIII SGD transcript 318680 319177 . + . transcript_id "YMR022W_id002"; gene_id "YMR022W"; gene_name "UBC7"; transcript_biotype "protein_coding"; +chrXIII SGD exon 318680 319177 . + 0 transcript_id "YMR022W_id002"; gene_name "UBC7"; gene_id "YMR022W"; +chrXIII SGD gene 319381 321039 . - . gene_id "YMR023C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 319381 321039 . - . transcript_id "YMR023C_id006"; gene_id "YMR023C"; gene_name "MSS1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 319381 321039 . - . transcript_id "YMR023C_id006"; gene_id "YMR023C"; gene_name "MSS1"; +chrXIII SGD transcript 319437 321017 . - . transcript_id "YMR023C_id001"; gene_id "YMR023C"; gene_name "MSS1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 319437 321017 . - 0 transcript_id "YMR023C_id001"; gene_name "MSS1"; gene_id "YMR023C"; +chrXIII SGD gene 321147 321219 . - . gene_id "YNCM0018C"; gene_biotype "ncRNA"; +chrXIII SGD transcript 321147 321219 . - . transcript_id "YNCM0018C_tRNA"; gene_id "YNCM0018C"; transcript_biotype "ncRNA"; +chrXIII SGD exon 321147 321219 . - . transcript_id "YNCM0018C_tRNA"; gene_id "YNCM0018C"; +chrXIII SGD gene 321866 323242 . + . gene_id "YMR024W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 321866 323242 . + . transcript_id "YMR024W_id001"; gene_id "YMR024W"; gene_name "MRPL3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 321866 323242 . + . transcript_id "YMR024W_id001"; gene_id "YMR024W"; gene_name "MRPL3"; +chrXIII SGD transcript 321875 323047 . + . transcript_id "YMR024W_id005"; gene_id "YMR024W"; gene_name "MRPL3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 321875 323047 . + 0 transcript_id "YMR024W_id005"; gene_name "MRPL3"; gene_id "YMR024W"; +chrXIII SGD gene 323278 324273 . + . gene_id "YMR025W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 323278 324273 . + . transcript_id "YMR025W_id003"; gene_id "YMR025W"; gene_name "CSI1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 323278 324273 . + . transcript_id "YMR025W_id003"; gene_id "YMR025W"; gene_name "CSI1"; +chrXIII SGD transcript 323300 324187 . + . transcript_id "YMR025W_id001"; gene_id "YMR025W"; gene_name "CSI1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 323300 324187 . + 0 transcript_id "YMR025W_id001"; gene_name "CSI1"; gene_id "YMR025W"; +chrXIII SGD gene 324159 325616 . - . gene_id "YMR026C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 324159 325616 . - . transcript_id "YMR026C_id002"; gene_id "YMR026C"; gene_name "PEX12"; transcript_biotype "protein_coding"; +chrXIII SGD exon 324159 325616 . - . transcript_id "YMR026C_id002"; gene_id "YMR026C"; gene_name "PEX12"; +chrXIII SGD transcript 324236 325435 . - . transcript_id "YMR026C_id001"; gene_id "YMR026C"; gene_name "PEX12"; transcript_biotype "protein_coding"; +chrXIII SGD exon 324236 325435 . - 0 transcript_id "YMR026C_id001"; gene_name "PEX12"; gene_id "YMR026C"; +chrXIII SGD gene 325778 327415 . + . gene_id "YMR027W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 325778 327415 . + . transcript_id "YMR027W_id001"; gene_id "YMR027W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 325778 327415 . + . transcript_id "YMR027W_id001"; gene_id "YMR027W"; +chrXIII SGD transcript 325877 327289 . + . transcript_id "YMR027W_id004"; gene_id "YMR027W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 325877 327289 . + 0 transcript_id "YMR027W_id004"; gene_id "YMR027W"; +chrXIII SGD gene 327434 328684 . + . gene_id "YMR028W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 327434 328684 . + . transcript_id "YMR028W_id001"; gene_id "YMR028W"; gene_name "TAP42"; transcript_biotype "protein_coding"; +chrXIII SGD exon 327434 328684 . + . transcript_id "YMR028W_id001"; gene_id "YMR028W"; gene_name "TAP42"; +chrXIII SGD transcript 327482 328582 . + . transcript_id "YMR028W_id003"; gene_id "YMR028W"; gene_name "TAP42"; transcript_biotype "protein_coding"; +chrXIII SGD exon 327482 328582 . + 0 transcript_id "YMR028W_id003"; gene_name "TAP42"; gene_id "YMR028W"; +chrXIII SGD gene 328396 330270 . - . gene_id "YMR029C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 328396 330270 . - . transcript_id "YMR029C_id001"; gene_id "YMR029C"; gene_name "FAR8"; transcript_biotype "protein_coding"; +chrXIII SGD exon 328396 330270 . - . transcript_id "YMR029C_id001"; gene_id "YMR029C"; gene_name "FAR8"; +chrXIII SGD transcript 328660 330231 . - . transcript_id "YMR029C_id002"; gene_id "YMR029C"; gene_name "FAR8"; transcript_biotype "protein_coding"; +chrXIII SGD exon 328660 330231 . - 0 transcript_id "YMR029C_id002"; gene_name "FAR8"; gene_id "YMR029C"; +chrXIII SGD gene 330608 332031 . + . gene_id "YMR030W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 330608 332031 . + . transcript_id "YMR030W_id002"; gene_id "YMR030W"; gene_name "RSF1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 330608 332031 . + . transcript_id "YMR030W_id002"; gene_id "YMR030W"; gene_name "RSF1"; +chrXIII SGD transcript 330793 331923 . + . transcript_id "YMR030W_id001"; gene_id "YMR030W"; gene_name "RSF1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 330793 331923 . + 0 transcript_id "YMR030W_id001"; gene_name "RSF1"; gene_id "YMR030W"; +chrXIII SGD gene 332212 334743 . - . gene_id "YMR031C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 332212 334743 . - . transcript_id "YMR031C_id001"; gene_id "YMR031C"; gene_name "EIS1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 332212 334743 . - 0 transcript_id "YMR031C_id001"; gene_name "EIS1"; gene_id "YMR031C"; +chrXIII SGD gene 334709 335035 . + . gene_id "YMR031W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 334709 335035 . + . transcript_id "YMR031W-A_mRNA"; gene_id "YMR031W-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 334709 335035 . + 0 transcript_id "YMR031W-A_mRNA"; gene_id "YMR031W-A"; +chrXIII SGD gene 335194 337461 . + . gene_id "YMR032W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 335194 337461 . + . transcript_id "YMR032W_id002"; gene_id "YMR032W"; gene_name "HOF1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 335194 337461 . + . transcript_id "YMR032W_id002"; gene_id "YMR032W"; gene_name "HOF1"; +chrXIII SGD transcript 335298 337307 . + . transcript_id "YMR032W_id001"; gene_id "YMR032W"; gene_name "HOF1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 335298 337307 . + 0 transcript_id "YMR032W_id001"; gene_name "HOF1"; gene_id "YMR032W"; +chrXIII SGD gene 337313 337603 . + . gene_id "YMR030W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 337313 337603 . + . transcript_id "YMR030W-A_id001"; gene_id "YMR030W-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 337313 337603 . + 0 transcript_id "YMR030W-A_id001"; gene_id "YMR030W-A"; +chrXIII SGD gene 337745 339501 . + . gene_id "YMR033W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 337745 339501 . + . transcript_id "YMR033W_id004"; gene_id "YMR033W"; gene_name "ARP9"; transcript_biotype "protein_coding"; +chrXIII SGD exon 337745 339501 . + . transcript_id "YMR033W_id004"; gene_id "YMR033W"; gene_name "ARP9"; +chrXIII SGD transcript 337788 339277 . + . transcript_id "YMR033W_id001"; gene_id "YMR033W"; gene_name "ARP9"; transcript_biotype "protein_coding"; +chrXIII SGD exon 337788 337817 . + 0 transcript_id "YMR033W_id001"; gene_name "ARP9"; gene_id "YMR033W"; +chrXIII SGD exon 337904 339277 . + 0 transcript_id "YMR033W_id001"; gene_name "ARP9"; gene_id "YMR033W"; +chrXIII SGD gene 339311 340945 . - . gene_id "YMR034C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 339311 340945 . - . transcript_id "YMR034C_id003"; gene_id "YMR034C"; gene_name "RCH1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 339311 340945 . - . transcript_id "YMR034C_id003"; gene_id "YMR034C"; gene_name "RCH1"; +chrXIII SGD transcript 339418 340722 . - . transcript_id "YMR034C_id001"; gene_id "YMR034C"; gene_name "RCH1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 339418 340722 . - 0 transcript_id "YMR034C_id001"; gene_name "RCH1"; gene_id "YMR034C"; +chrXIII SGD gene 341073 341963 . + . gene_id "YMR035W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 341073 341963 . + . transcript_id "YMR035W_id001"; gene_id "YMR035W"; gene_name "IMP2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 341073 341963 . + . transcript_id "YMR035W_id001"; gene_id "YMR035W"; gene_name "IMP2"; +chrXIII SGD transcript 341142 341675 . + . transcript_id "YMR035W_id002"; gene_id "YMR035W"; gene_name "IMP2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 341142 341675 . + 0 transcript_id "YMR035W_id002"; gene_name "IMP2"; gene_id "YMR035W"; +chrXIII SGD gene 341718 343580 . - . gene_id "YMR036C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 341718 343580 . - . transcript_id "YMR036C_id003"; gene_id "YMR036C"; gene_name "MIH1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 341718 343580 . - . transcript_id "YMR036C_id003"; gene_id "YMR036C"; gene_name "MIH1"; +chrXIII SGD transcript 341856 343520 . - . transcript_id "YMR036C_id001"; gene_id "YMR036C"; gene_name "MIH1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 341856 343520 . - 0 transcript_id "YMR036C_id001"; gene_name "MIH1"; gene_id "YMR036C"; +chrXIII SGD gene 344403 346517 . - . gene_id "YMR037C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 344403 346517 . - . transcript_id "YMR037C_id001"; gene_id "YMR037C"; gene_name "MSN2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 344403 346517 . - 0 transcript_id "YMR037C_id001"; gene_name "MSN2"; gene_id "YMR037C"; +chrXIII SGD gene 347092 348298 . - . gene_id "YMR038C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 347092 348298 . - . transcript_id "YMR038C_id001"; gene_id "YMR038C"; gene_name "CCS1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 347092 348298 . - . transcript_id "YMR038C_id001"; gene_id "YMR038C"; gene_name "CCS1"; +chrXIII SGD transcript 347511 348260 . - . transcript_id "YMR038C_id003"; gene_id "YMR038C"; gene_name "CCS1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 347511 348260 . - 0 transcript_id "YMR038C_id003"; gene_name "CCS1"; gene_id "YMR038C"; +chrXIII SGD gene 348446 349709 . - . gene_id "YMR039C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 348446 349709 . - . transcript_id "YMR039C_id003"; gene_id "YMR039C"; gene_name "SUB1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 348446 349709 . - . transcript_id "YMR039C_id003"; gene_id "YMR039C"; gene_name "SUB1"; +chrXIII SGD transcript 348644 349522 . - . transcript_id "YMR039C_id001"; gene_id "YMR039C"; gene_name "SUB1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 348644 349522 . - 0 transcript_id "YMR039C_id001"; gene_name "SUB1"; gene_id "YMR039C"; +chrXIII SGD gene 349966 350941 . + . gene_id "YMR040W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 349966 350941 . + . transcript_id "YMR040W_id001"; gene_id "YMR040W"; gene_name "YET2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 349966 350941 . + . transcript_id "YMR040W_id001"; gene_id "YMR040W"; gene_name "YET2"; +chrXIII SGD transcript 350381 350863 . + . transcript_id "YMR040W_id002"; gene_id "YMR040W"; gene_name "YET2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 350381 350863 . + 0 transcript_id "YMR040W_id002"; gene_name "YET2"; gene_id "YMR040W"; +chrXIII SGD gene 350845 352166 . - . gene_id "YMR041C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 350845 352166 . - . transcript_id "YMR041C_id005"; gene_id "YMR041C"; gene_name "ARA2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 350845 352166 . - . transcript_id "YMR041C_id005"; gene_id "YMR041C"; gene_name "ARA2"; +chrXIII SGD transcript 350966 351973 . - . transcript_id "YMR041C_id001"; gene_id "YMR041C"; gene_name "ARA2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 350966 351973 . - 0 transcript_id "YMR041C_id001"; gene_name "ARA2"; gene_id "YMR041C"; +chrXIII SGD gene 352280 352370 . + . gene_id "YNCM0019W"; gene_biotype "ncRNA"; +chrXIII SGD transcript 352280 352370 . + . transcript_id "YNCM0019W_tRNA"; gene_id "YNCM0019W"; transcript_biotype "ncRNA"; +chrXIII SGD exon 352280 352316 . + . transcript_id "YNCM0019W_tRNA"; gene_id "YNCM0019W"; +chrXIII SGD exon 352335 352370 . + . transcript_id "YNCM0019W_tRNA"; gene_id "YNCM0019W"; +chrXIII SGD gene 352476 353658 . + . gene_id "YMR042W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 352476 353658 . + . transcript_id "YMR042W_id001"; gene_id "YMR042W"; gene_name "ARG80"; transcript_biotype "protein_coding"; +chrXIII SGD exon 352476 353658 . + . transcript_id "YMR042W_id001"; gene_id "YMR042W"; gene_name "ARG80"; +chrXIII SGD transcript 352603 353136 . + . transcript_id "YMR042W_id003"; gene_id "YMR042W"; gene_name "ARG80"; transcript_biotype "protein_coding"; +chrXIII SGD exon 352603 353136 . + 0 transcript_id "YMR042W_id003"; gene_name "ARG80"; gene_id "YMR042W"; +chrXIII SGD gene 353472 355061 . + . gene_id "YMR043W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 353472 355061 . + . transcript_id "YMR043W_id010"; gene_id "YMR043W"; gene_name "MCM1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 353472 355061 . + . transcript_id "YMR043W_id010"; gene_id "YMR043W"; gene_name "MCM1"; +chrXIII SGD transcript 353871 354731 . + . transcript_id "YMR043W_id001"; gene_id "YMR043W"; gene_name "MCM1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 353871 354731 . + 0 transcript_id "YMR043W_id001"; gene_name "MCM1"; gene_id "YMR043W"; +chrXIII SGD gene 355314 356995 . + . gene_id "YMR044W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 355314 356995 . + . transcript_id "YMR044W_id001"; gene_id "YMR044W"; gene_name "IOC4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 355314 356995 . + . transcript_id "YMR044W_id001"; gene_id "YMR044W"; gene_name "IOC4"; +chrXIII SGD transcript 355384 356811 . + . transcript_id "YMR044W_id004"; gene_id "YMR044W"; gene_name "IOC4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 355384 356811 . + 0 transcript_id "YMR044W_id004"; gene_name "IOC4"; gene_id "YMR044W"; +chrXIII SGD gene 357359 362627 . - . gene_id "YMR045C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 357359 362627 . - . transcript_id "YMR045C_dummy"; gene_id "YMR045C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 357359 361321 . - 0 transcript_id "YMR045C_dummy"; gene_id "YMR045C"; +chrXIII SGD exon 361323 362627 . - 0 transcript_id "YMR045C_dummy"; gene_id "YMR045C"; +chrXIII SGD gene 361305 362627 . - . gene_id "YMR046C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 361305 362627 . - . transcript_id "YMR046C_dummy"; gene_id "YMR046C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 361305 362627 . - 0 transcript_id "YMR046C_dummy"; gene_id "YMR046C"; +chrXIII SGD gene 362702 362830 . + . gene_id "YMR046W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 362702 362830 . + . transcript_id "YMR046W-A_id001"; gene_id "YMR046W-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 362702 362830 . + 0 transcript_id "YMR046W-A_id001"; gene_id "YMR046W-A"; +chrXIII SGD gene 363064 363135 . + . gene_id "YNCM0020W"; gene_biotype "ncRNA"; +chrXIII SGD transcript 363064 363135 . + . transcript_id "YNCM0020W_tRNA"; gene_id "YNCM0020W"; transcript_biotype "ncRNA"; +chrXIII SGD exon 363064 363135 . + . transcript_id "YNCM0020W_tRNA"; gene_id "YNCM0020W"; +chrXIII SGD gene 363284 366792 . - . gene_id "YMR047C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 363284 366792 . - . transcript_id "YMR047C_id003"; gene_id "YMR047C"; gene_name "NUP116"; transcript_biotype "protein_coding"; +chrXIII SGD exon 363284 366792 . - . transcript_id "YMR047C_id003"; gene_id "YMR047C"; gene_name "NUP116"; +chrXIII SGD transcript 363364 366705 . - . transcript_id "YMR047C_id001"; gene_id "YMR047C"; gene_name "NUP116"; transcript_biotype "protein_coding"; +chrXIII SGD exon 363364 366705 . - 0 transcript_id "YMR047C_id001"; gene_name "NUP116"; gene_id "YMR047C"; +chrXIII SGD gene 366956 368054 . + . gene_id "YMR048W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 366956 368054 . + . transcript_id "YMR048W_id009"; gene_id "YMR048W"; gene_name "CSM3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 366956 368054 . + . transcript_id "YMR048W_id009"; gene_id "YMR048W"; gene_name "CSM3"; +chrXIII SGD transcript 366981 367934 . + . transcript_id "YMR048W_id001"; gene_id "YMR048W"; gene_name "CSM3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 366981 367934 . + 0 transcript_id "YMR048W_id001"; gene_name "CSM3"; gene_id "YMR048W"; +chrXIII SGD gene 367916 370586 . - . gene_id "YMR049C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 367916 370586 . - . transcript_id "YMR049C_id002"; gene_id "YMR049C"; gene_name "ERB1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 367916 370586 . - . transcript_id "YMR049C_id002"; gene_id "YMR049C"; gene_name "ERB1"; +chrXIII SGD transcript 368094 370517 . - . transcript_id "YMR049C_id001"; gene_id "YMR049C"; gene_name "ERB1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 368094 370517 . - 0 transcript_id "YMR049C_id001"; gene_name "ERB1"; gene_id "YMR049C"; +chrXIII SGD gene 372445 372518 . - . gene_id "YNCM0021C"; gene_biotype "ncRNA"; +chrXIII SGD transcript 372445 372518 . - . transcript_id "YNCM0021C_tRNA"; gene_id "YNCM0021C"; transcript_biotype "ncRNA"; +chrXIII SGD exon 372445 372518 . - . transcript_id "YNCM0021C_tRNA"; gene_id "YNCM0021C"; +chrXIII SGD gene 373057 378325 . - . gene_id "YMR050C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 373057 378325 . - . transcript_id "YMR050C_dummy"; gene_id "YMR050C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 373057 377019 . - 0 transcript_id "YMR050C_dummy"; gene_id "YMR050C"; +chrXIII SGD exon 377021 378325 . - 0 transcript_id "YMR050C_dummy"; gene_id "YMR050C"; +chrXIII SGD gene 377003 378325 . - . gene_id "YMR051C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 377003 378325 . - . transcript_id "YMR051C_dummy"; gene_id "YMR051C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 377003 378325 . - 0 transcript_id "YMR051C_dummy"; gene_id "YMR051C"; +chrXIII SGD gene 379303 379408 . - . gene_id "YNCM0022C"; gene_biotype "ncRNA"; +chrXIII SGD transcript 379303 379408 . - . transcript_id "YNCM0022C_tRNA"; gene_id "YNCM0022C"; transcript_biotype "ncRNA"; +chrXIII SGD exon 379303 379338 . - . transcript_id "YNCM0022C_tRNA"; gene_id "YNCM0022C"; +chrXIII SGD exon 379373 379408 . - . transcript_id "YNCM0022C_tRNA"; gene_id "YNCM0022C"; +chrXIII SGD gene 379566 380963 . + . gene_id "YMR052W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 379566 380963 . + . transcript_id "YMR052W_id001"; gene_id "YMR052W"; gene_name "FAR3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 379566 380963 . + . transcript_id "YMR052W_id001"; gene_id "YMR052W"; gene_name "FAR3"; +chrXIII SGD transcript 379586 380200 . + . transcript_id "YMR052W_id002"; gene_id "YMR052W"; gene_name "FAR3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 379586 380200 . + 0 transcript_id "YMR052W_id002"; gene_name "FAR3"; gene_id "YMR052W"; +chrXIII SGD gene 380052 380805 . - . gene_id "YMR052C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 380052 380805 . - . transcript_id "YMR052C-A_id001"; gene_id "YMR052C-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 380052 380805 . - . transcript_id "YMR052C-A_id001"; gene_id "YMR052C-A"; +chrXIII SGD transcript 380069 380434 . - . transcript_id "YMR052C-A_id002"; gene_id "YMR052C-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 380069 380434 . - 0 transcript_id "YMR052C-A_id002"; gene_id "YMR052C-A"; +chrXIII SGD gene 380346 382898 . - . gene_id "YMR053C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 380346 382898 . - . transcript_id "YMR053C_mRNA"; gene_id "YMR053C"; gene_name "STB2"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 380346 382898 . - 0 transcript_id "YMR053C_mRNA"; gene_name "STB2"; gene_id "YMR053C"; +chrXIII SGD gene 383091 386093 . + . gene_id "YMR054W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 383091 386093 . + . transcript_id "YMR054W_id004"; gene_id "YMR054W"; gene_name "STV1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 383091 386093 . + . transcript_id "YMR054W_id004"; gene_id "YMR054W"; gene_name "STV1"; +chrXIII SGD transcript 383303 385975 . + . transcript_id "YMR054W_id001"; gene_id "YMR054W"; gene_name "STV1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 383303 385975 . + 0 transcript_id "YMR054W_id001"; gene_name "STV1"; gene_id "YMR054W"; +chrXIII SGD gene 386022 387065 . - . gene_id "YMR055C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 386022 387065 . - . transcript_id "YMR055C_id005"; gene_id "YMR055C"; gene_name "BUB2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 386022 387065 . - . transcript_id "YMR055C_id005"; gene_id "YMR055C"; gene_name "BUB2"; +chrXIII SGD transcript 386101 387021 . - . transcript_id "YMR055C_id001"; gene_id "YMR055C"; gene_name "BUB2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 386101 387021 . - 0 transcript_id "YMR055C_id001"; gene_name "BUB2"; gene_id "YMR055C"; +chrXIII SGD gene 387186 388362 . - . gene_id "YMR056C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 387186 388362 . - . transcript_id "YMR056C_id004"; gene_id "YMR056C"; gene_name "AAC1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 387186 388362 . - . transcript_id "YMR056C_id004"; gene_id "YMR056C"; gene_name "AAC1"; +chrXIII SGD transcript 387315 388244 . - . transcript_id "YMR056C_id001"; gene_id "YMR056C"; gene_name "AAC1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 387315 388244 . - 0 transcript_id "YMR056C_id001"; gene_name "AAC1"; gene_id "YMR056C"; +chrXIII SGD gene 388359 388730 . - . gene_id "YMR057C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 388359 388730 . - . transcript_id "YMR057C_mRNA"; gene_id "YMR057C"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 388359 388730 . - 0 transcript_id "YMR057C_mRNA"; gene_id "YMR057C"; +chrXIII SGD gene 388778 390981 . + . gene_id "YMR058W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 388778 390981 . + . transcript_id "YMR058W_id003"; gene_id "YMR058W"; gene_name "FET3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 388778 390981 . + . transcript_id "YMR058W_id003"; gene_id "YMR058W"; gene_name "FET3"; +chrXIII SGD transcript 388822 390732 . + . transcript_id "YMR058W_id001"; gene_id "YMR058W"; gene_name "FET3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 388822 390732 . + 0 transcript_id "YMR058W_id001"; gene_name "FET3"; gene_id "YMR058W"; +chrXIII SGD gene 391058 392299 . + . gene_id "YMR059W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 391058 392299 . + . transcript_id "YMR059W_id001"; gene_id "YMR059W"; gene_name "SEN15"; transcript_biotype "protein_coding"; +chrXIII SGD exon 391058 392299 . + . transcript_id "YMR059W_id001"; gene_id "YMR059W"; gene_name "SEN15"; +chrXIII SGD transcript 391099 391485 . + . transcript_id "YMR059W_id002"; gene_id "YMR059W"; gene_name "SEN15"; transcript_biotype "protein_coding"; +chrXIII SGD exon 391099 391485 . + 0 transcript_id "YMR059W_id002"; gene_name "SEN15"; gene_id "YMR059W"; +chrXIII SGD gene 391491 392555 . - . gene_id "YMR060C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 391491 392555 . - . transcript_id "YMR060C_id003"; gene_id "YMR060C"; gene_name "SAM37"; transcript_biotype "protein_coding"; +chrXIII SGD exon 391491 392555 . - . transcript_id "YMR060C_id003"; gene_id "YMR060C"; gene_name "SAM37"; +chrXIII SGD transcript 391532 392515 . - . transcript_id "YMR060C_id001"; gene_id "YMR060C"; gene_name "SAM37"; transcript_biotype "protein_coding"; +chrXIII SGD exon 391532 392515 . - 0 transcript_id "YMR060C_id001"; gene_name "SAM37"; gene_id "YMR060C"; +chrXIII SGD gene 392739 394954 . + . gene_id "YMR061W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 392739 394954 . + . transcript_id "YMR061W_id001"; gene_id "YMR061W"; gene_name "RNA14"; transcript_biotype "protein_coding"; +chrXIII SGD exon 392739 394954 . + . transcript_id "YMR061W_id001"; gene_id "YMR061W"; gene_name "RNA14"; +chrXIII SGD transcript 392755 394788 . + . transcript_id "YMR061W_id003"; gene_id "YMR061W"; gene_name "RNA14"; transcript_biotype "protein_coding"; +chrXIII SGD exon 392755 394788 . + 0 transcript_id "YMR061W_id003"; gene_name "RNA14"; gene_id "YMR061W"; +chrXIII SGD gene 394768 396395 . - . gene_id "YMR062C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 394768 396395 . - . transcript_id "YMR062C_id001"; gene_id "YMR062C"; gene_name "ARG7"; transcript_biotype "protein_coding"; +chrXIII SGD exon 394768 396395 . - . transcript_id "YMR062C_id001"; gene_id "YMR062C"; gene_name "ARG7"; +chrXIII SGD transcript 395054 396379 . - . transcript_id "YMR062C_id002"; gene_id "YMR062C"; gene_name "ARG7"; transcript_biotype "protein_coding"; +chrXIII SGD exon 395054 396379 . - 0 transcript_id "YMR062C_id002"; gene_name "ARG7"; gene_id "YMR062C"; +chrXIII SGD gene 397077 397796 . + . gene_id "YMR063W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 397077 397796 . + . transcript_id "YMR063W_id001"; gene_id "YMR063W"; gene_name "RIM9"; transcript_biotype "protein_coding"; +chrXIII SGD exon 397077 397796 . + 0 transcript_id "YMR063W_id001"; gene_name "RIM9"; gene_id "YMR063W"; +chrXIII SGD gene 397903 399459 . + . gene_id "YMR064W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 397903 399459 . + . transcript_id "YMR064W_mRNA"; gene_id "YMR064W"; gene_name "AEP1"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 397903 399459 . + 0 transcript_id "YMR064W_mRNA"; gene_name "AEP1"; gene_id "YMR064W"; +chrXIII SGD gene 399702 401216 . + . gene_id "YMR065W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 399702 401216 . + . transcript_id "YMR065W_mRNA"; gene_id "YMR065W"; gene_name "KAR5"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 399702 401216 . + 0 transcript_id "YMR065W_mRNA"; gene_name "KAR5"; gene_id "YMR065W"; +chrXIII SGD gene 401541 404237 . + . gene_id "YMR066W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 401541 404237 . + . transcript_id "YMR066W_id001"; gene_id "YMR066W"; gene_name "SOV1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 401541 404237 . + 0 transcript_id "YMR066W_id001"; gene_name "SOV1"; gene_id "YMR066W"; +chrXIII SGD gene 404211 405610 . - . gene_id "YMR067C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 404211 405610 . - . transcript_id "YMR067C_id002"; gene_id "YMR067C"; gene_name "UBX4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 404211 405610 . - . transcript_id "YMR067C_id002"; gene_id "YMR067C"; gene_name "UBX4"; +chrXIII SGD transcript 404323 405573 . - . transcript_id "YMR067C_id001"; gene_id "YMR067C"; gene_name "UBX4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 404323 405573 . - 0 transcript_id "YMR067C_id001"; gene_name "UBX4"; gene_id "YMR067C"; +chrXIII SGD gene 406264 407678 . + . gene_id "YMR068W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 406264 407678 . + . transcript_id "YMR068W_id002"; gene_id "YMR068W"; gene_name "AVO2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 406264 407678 . + . transcript_id "YMR068W_id002"; gene_id "YMR068W"; gene_name "AVO2"; +chrXIII SGD transcript 406304 407584 . + . transcript_id "YMR068W_id001"; gene_id "YMR068W"; gene_name "AVO2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 406304 407584 . + 0 transcript_id "YMR068W_id001"; gene_name "AVO2"; gene_id "YMR068W"; +chrXIII SGD gene 407709 408566 . + . gene_id "YMR069W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 407709 408566 . + . transcript_id "YMR069W_mRNA"; gene_id "YMR069W"; gene_name "NAT4"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 407709 408566 . + 0 transcript_id "YMR069W_mRNA"; gene_name "NAT4"; gene_id "YMR069W"; +chrXIII SGD gene 409154 410626 . + . gene_id "YMR070W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 409154 410626 . + . transcript_id "YMR070W_id001"; gene_id "YMR070W"; gene_name "MOT3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 409154 410626 . + 0 transcript_id "YMR070W_id001"; gene_name "MOT3"; gene_id "YMR070W"; +chrXIII SGD gene 410681 411358 . - . gene_id "YMR071C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 410681 411358 . - . transcript_id "YMR071C_id006"; gene_id "YMR071C"; gene_name "TVP18"; transcript_biotype "protein_coding"; +chrXIII SGD exon 410681 411358 . - . transcript_id "YMR071C_id006"; gene_id "YMR071C"; gene_name "TVP18"; +chrXIII SGD transcript 410762 411265 . - . transcript_id "YMR071C_id001"; gene_id "YMR071C"; gene_name "TVP18"; transcript_biotype "protein_coding"; +chrXIII SGD exon 410762 411265 . - 0 transcript_id "YMR071C_id001"; gene_name "TVP18"; gene_id "YMR071C"; +chrXIII SGD gene 411492 412277 . + . gene_id "YMR072W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 411492 412277 . + . transcript_id "YMR072W_id004"; gene_id "YMR072W"; gene_name "ABF2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 411492 412277 . + . transcript_id "YMR072W_id004"; gene_id "YMR072W"; gene_name "ABF2"; +chrXIII SGD transcript 411569 412120 . + . transcript_id "YMR072W_id001"; gene_id "YMR072W"; gene_name "ABF2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 411569 412120 . + 0 transcript_id "YMR072W_id001"; gene_name "ABF2"; gene_id "YMR072W"; +chrXIII SGD gene 411758 412913 . - . gene_id "YMR073C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 411758 412913 . - . transcript_id "YMR073C_id001"; gene_id "YMR073C"; gene_name "IRC21"; transcript_biotype "protein_coding"; +chrXIII SGD exon 411758 412913 . - . transcript_id "YMR073C_id001"; gene_id "YMR073C"; gene_name "IRC21"; +chrXIII SGD transcript 412268 412873 . - . transcript_id "YMR073C_id003"; gene_id "YMR073C"; gene_name "IRC21"; transcript_biotype "protein_coding"; +chrXIII SGD exon 412268 412873 . - 0 transcript_id "YMR073C_id003"; gene_name "IRC21"; gene_id "YMR073C"; +chrXIII SGD gene 412972 413769 . - . gene_id "YMR074C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 412972 413769 . - . transcript_id "YMR074C_id001"; gene_id "YMR074C"; gene_name "SDD2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 412972 413769 . - . transcript_id "YMR074C_id001"; gene_id "YMR074C"; gene_name "SDD2"; +chrXIII SGD transcript 413036 413473 . - . transcript_id "YMR074C_id003"; gene_id "YMR074C"; gene_name "SDD2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 413036 413473 . - 0 transcript_id "YMR074C_id003"; gene_name "SDD2"; gene_id "YMR074C"; +chrXIII SGD gene 413913 416150 . + . gene_id "YMR075W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 413913 416150 . + . transcript_id "YMR075W_id003"; gene_id "YMR075W"; gene_name "RCO1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 413913 416150 . + . transcript_id "YMR075W_id003"; gene_id "YMR075W"; gene_name "RCO1"; +chrXIII SGD transcript 413982 416036 . + . transcript_id "YMR075W_id001"; gene_id "YMR075W"; gene_name "RCO1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 413982 416036 . + 0 transcript_id "YMR075W_id001"; gene_name "RCO1"; gene_id "YMR075W"; +chrXIII SGD gene 415688 416053 . - . gene_id "YMR075C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 415688 416053 . - . transcript_id "YMR075C-A_mRNA"; gene_id "YMR075C-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 415688 416053 . - 0 transcript_id "YMR075C-A_mRNA"; gene_id "YMR075C-A"; +chrXIII SGD gene 416196 420029 . - . gene_id "YMR076C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 416196 420029 . - . transcript_id "YMR076C_id001"; gene_id "YMR076C"; gene_name "PDS5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 416196 420029 . - 0 transcript_id "YMR076C_id001"; gene_name "PDS5"; gene_id "YMR076C"; +chrXIII SGD gene 420588 420661 . - . gene_id "YNCM0023C"; gene_biotype "ncRNA"; +chrXIII SGD transcript 420588 420661 . - . transcript_id "YNCM0023C_tRNA"; gene_id "YNCM0023C"; transcript_biotype "ncRNA"; +chrXIII SGD exon 420588 420661 . - . transcript_id "YNCM0023C_tRNA"; gene_id "YNCM0023C"; +chrXIII SGD gene 421249 422192 . - . gene_id "YMR077C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 421249 422192 . - . transcript_id "YMR077C_id001"; gene_id "YMR077C"; gene_name "VPS20"; transcript_biotype "protein_coding"; +chrXIII SGD exon 421249 422192 . - . transcript_id "YMR077C_id001"; gene_id "YMR077C"; gene_name "VPS20"; +chrXIII SGD transcript 421484 422149 . - . transcript_id "YMR077C_id006"; gene_id "YMR077C"; gene_name "VPS20"; transcript_biotype "protein_coding"; +chrXIII SGD exon 421484 422149 . - 0 transcript_id "YMR077C_id006"; gene_name "VPS20"; gene_id "YMR077C"; +chrXIII SGD gene 422321 424735 . - . gene_id "YMR078C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 422321 424735 . - . transcript_id "YMR078C_id001"; gene_id "YMR078C"; gene_name "CTF18"; transcript_biotype "protein_coding"; +chrXIII SGD exon 422321 424735 . - . transcript_id "YMR078C_id001"; gene_id "YMR078C"; gene_name "CTF18"; +chrXIII SGD transcript 422503 424728 . - . transcript_id "YMR078C_id002"; gene_id "YMR078C"; gene_name "CTF18"; transcript_biotype "protein_coding"; +chrXIII SGD exon 422503 424728 . - 0 transcript_id "YMR078C_id002"; gene_name "CTF18"; gene_id "YMR078C"; +chrXIII SGD gene 424894 426389 . + . gene_id "YMR079W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 424894 426389 . + . transcript_id "YMR079W_id001"; gene_id "YMR079W"; gene_name "SEC14"; transcript_biotype "protein_coding"; +chrXIII SGD exon 424894 426389 . + . transcript_id "YMR079W_id001"; gene_id "YMR079W"; gene_name "SEC14"; +chrXIII SGD transcript 424989 426059 . + . transcript_id "YMR079W_id004"; gene_id "YMR079W"; gene_name "SEC14"; transcript_biotype "protein_coding"; +chrXIII SGD exon 424989 424997 . + 0 transcript_id "YMR079W_id004"; gene_name "SEC14"; gene_id "YMR079W"; +chrXIII SGD exon 425154 426059 . + 0 transcript_id "YMR079W_id004"; gene_name "SEC14"; gene_id "YMR079W"; +chrXIII SGD gene 426270 429714 . - . gene_id "YMR080C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 426270 429714 . - . transcript_id "YMR080C_id001"; gene_id "YMR080C"; gene_name "NAM7"; transcript_biotype "protein_coding"; +chrXIII SGD exon 426270 429714 . - . transcript_id "YMR080C_id001"; gene_id "YMR080C"; gene_name "NAM7"; +chrXIII SGD transcript 426712 429627 . - . transcript_id "YMR080C_id002"; gene_id "YMR080C"; gene_name "NAM7"; transcript_biotype "protein_coding"; +chrXIII SGD exon 426712 429627 . - 0 transcript_id "YMR080C_id002"; gene_name "NAM7"; gene_id "YMR080C"; +chrXIII SGD gene 429829 431242 . - . gene_id "YMR081C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 429829 431242 . - . transcript_id "YMR081C_id006"; gene_id "YMR081C"; gene_name "ISF1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 429829 431242 . - . transcript_id "YMR081C_id006"; gene_id "YMR081C"; gene_name "ISF1"; +chrXIII SGD transcript 430079 431095 . - . transcript_id "YMR081C_id001"; gene_id "YMR081C"; gene_name "ISF1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 430079 431095 . - 0 transcript_id "YMR081C_id001"; gene_name "ISF1"; gene_id "YMR081C"; +chrXIII SGD gene 431769 432125 . - . gene_id "YMR082C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 431769 432125 . - . transcript_id "YMR082C_mRNA"; gene_id "YMR082C"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 431769 432125 . - 0 transcript_id "YMR082C_mRNA"; gene_id "YMR082C"; +chrXIII SGD gene 434183 436012 . + . gene_id "YMR083W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 434183 436012 . + . transcript_id "YMR083W_id001"; gene_id "YMR083W"; gene_name "ADH3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 434183 436012 . + . transcript_id "YMR083W_id001"; gene_id "YMR083W"; gene_name "ADH3"; +chrXIII SGD transcript 434788 435915 . + . transcript_id "YMR083W_id004"; gene_id "YMR083W"; gene_name "ADH3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 434788 435915 . + 0 transcript_id "YMR083W_id004"; gene_name "ADH3"; gene_id "YMR083W"; +chrXIII SGD gene 436628 437416 . + . gene_id "YMR084W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 436628 437416 . + . transcript_id "YMR084W_mRNA"; gene_id "YMR084W"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 436628 437416 . + 0 transcript_id "YMR084W_mRNA"; gene_id "YMR084W"; +chrXIII SGD gene 437491 438789 . + . gene_id "YMR085W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 437491 438789 . + . transcript_id "YMR085W_id001"; gene_id "YMR085W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 437491 438789 . + 0 transcript_id "YMR085W_id001"; gene_id "YMR085W"; +chrXIII SGD gene 439208 442090 . + . gene_id "YMR086W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 439208 442090 . + . transcript_id "YMR086W_id001"; gene_id "YMR086W"; gene_name "SEG1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 439208 442090 . + 0 transcript_id "YMR086W_id001"; gene_name "SEG1"; gene_id "YMR086W"; +chrXIII SGD gene 440755 443415 . + . gene_id "YMR087W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 440755 443415 . + . transcript_id "YMR087W_id001"; gene_id "YMR087W"; gene_name "PDL32"; transcript_biotype "protein_coding"; +chrXIII SGD exon 440755 443415 . + . transcript_id "YMR087W_id001"; gene_id "YMR087W"; gene_name "PDL32"; +chrXIII SGD gene 442026 442364 . - . gene_id "YMR086C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 442026 442364 . - . transcript_id "YMR086C-A_id001"; gene_id "YMR086C-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 442026 442364 . - 0 transcript_id "YMR086C-A_id001"; gene_id "YMR086C-A"; +chrXIII SGD transcript 442527 443381 . + . transcript_id "YMR087W_id002"; gene_id "YMR087W"; gene_name "PDL32"; transcript_biotype "protein_coding"; +chrXIII SGD exon 442527 443381 . + 0 transcript_id "YMR087W_id002"; gene_name "PDL32"; gene_id "YMR087W"; +chrXIII SGD gene 443414 445102 . - . gene_id "YMR088C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 443414 445102 . - . transcript_id "YMR088C_id001"; gene_id "YMR088C"; gene_name "VBA1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 443414 445102 . - 0 transcript_id "YMR088C_id001"; gene_name "VBA1"; gene_id "YMR088C"; +chrXIII SGD gene 445430 448287 . - . gene_id "YMR089C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 445430 448287 . - . transcript_id "YMR089C_id006"; gene_id "YMR089C"; gene_name "YTA12"; transcript_biotype "protein_coding"; +chrXIII SGD exon 445430 448287 . - . transcript_id "YMR089C_id006"; gene_id "YMR089C"; gene_name "YTA12"; +chrXIII SGD transcript 445609 448086 . - . transcript_id "YMR089C_id001"; gene_id "YMR089C"; gene_name "YTA12"; transcript_biotype "protein_coding"; +chrXIII SGD exon 445609 448086 . - 0 transcript_id "YMR089C_id001"; gene_name "YTA12"; gene_id "YMR089C"; +chrXIII SGD gene 448474 450059 . + . gene_id "YMR090W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 448474 450059 . + . transcript_id "YMR090W_id003"; gene_id "YMR090W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 448474 450059 . + . transcript_id "YMR090W_id003"; gene_id "YMR090W"; +chrXIII SGD transcript 449245 449928 . + . transcript_id "YMR090W_id001"; gene_id "YMR090W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 449245 449928 . + 0 transcript_id "YMR090W_id001"; gene_id "YMR090W"; +chrXIII SGD gene 449883 451422 . - . gene_id "YMR091C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 449883 451422 . - . transcript_id "YMR091C_id002"; gene_id "YMR091C"; gene_name "NPL6"; transcript_biotype "protein_coding"; +chrXIII SGD exon 449883 451422 . - . transcript_id "YMR091C_id002"; gene_id "YMR091C"; gene_name "NPL6"; +chrXIII SGD transcript 450058 451365 . - . transcript_id "YMR091C_id001"; gene_id "YMR091C"; gene_name "NPL6"; transcript_biotype "protein_coding"; +chrXIII SGD exon 450058 451365 . - 0 transcript_id "YMR091C_id001"; gene_name "NPL6"; gene_id "YMR091C"; +chrXIII SGD gene 451523 453558 . - . gene_id "YMR092C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 451523 453558 . - . transcript_id "YMR092C_id004"; gene_id "YMR092C"; gene_name "AIP1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 451523 453558 . - . transcript_id "YMR092C_id004"; gene_id "YMR092C"; gene_name "AIP1"; +chrXIII SGD transcript 451632 453479 . - . transcript_id "YMR092C_id001"; gene_id "YMR092C"; gene_name "AIP1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 451632 453479 . - 0 transcript_id "YMR092C_id001"; gene_name "AIP1"; gene_id "YMR092C"; +chrXIII SGD gene 453941 455668 . + . gene_id "YMR093W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 453941 455668 . + . transcript_id "YMR093W_id001"; gene_id "YMR093W"; gene_name "UTP15"; transcript_biotype "protein_coding"; +chrXIII SGD exon 453941 455668 . + . transcript_id "YMR093W_id001"; gene_id "YMR093W"; gene_name "UTP15"; +chrXIII SGD transcript 454015 455556 . + . transcript_id "YMR093W_id003"; gene_id "YMR093W"; gene_name "UTP15"; transcript_biotype "protein_coding"; +chrXIII SGD exon 454015 455556 . + 0 transcript_id "YMR093W_id003"; gene_name "UTP15"; gene_id "YMR093W"; +chrXIII SGD gene 455825 457261 . + . gene_id "YMR094W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 455825 457261 . + . transcript_id "YMR094W_id001"; gene_id "YMR094W"; gene_name "CTF13"; transcript_biotype "protein_coding"; +chrXIII SGD exon 455825 457261 . + 0 transcript_id "YMR094W_id001"; gene_name "CTF13"; gene_id "YMR094W"; +chrXIII SGD gene 456549 459541 . + . gene_id "YMR096W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 456549 459541 . + . transcript_id "YMR096W_id001"; gene_id "YMR096W"; gene_name "SNZ1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 456549 459541 . + . transcript_id "YMR096W_id001"; gene_id "YMR096W"; gene_name "SNZ1"; +chrXIII SGD gene 457285 457959 . - . gene_id "YMR095C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 457285 457959 . - . transcript_id "YMR095C_mRNA"; gene_id "YMR095C"; gene_name "SNO1"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 457285 457959 . - 0 transcript_id "YMR095C_mRNA"; gene_name "SNO1"; gene_id "YMR095C"; +chrXIII SGD transcript 458408 459301 . + . transcript_id "YMR096W_id002"; gene_id "YMR096W"; gene_name "SNZ1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 458408 459301 . + 0 transcript_id "YMR096W_id002"; gene_name "SNZ1"; gene_id "YMR096W"; +chrXIII SGD gene 459424 460527 . - . gene_id "YMR097C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 459424 460527 . - . transcript_id "YMR097C_id001"; gene_id "YMR097C"; gene_name "MTG1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 459424 460527 . - 0 transcript_id "YMR097C_id001"; gene_name "MTG1"; gene_id "YMR097C"; +chrXIII SGD gene 460697 462714 . - . gene_id "YMR098C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 460697 462714 . - . transcript_id "YMR098C_id001"; gene_id "YMR098C"; gene_name "ATP25"; transcript_biotype "protein_coding"; +chrXIII SGD exon 460697 462714 . - . transcript_id "YMR098C_id001"; gene_id "YMR098C"; gene_name "ATP25"; +chrXIII SGD transcript 460771 462609 . - . transcript_id "YMR098C_id002"; gene_id "YMR098C"; gene_name "ATP25"; transcript_biotype "protein_coding"; +chrXIII SGD exon 460771 462609 . - 0 transcript_id "YMR098C_id002"; gene_name "ATP25"; gene_id "YMR098C"; +chrXIII SGD gene 463554 463625 . + . gene_id "YNCM0024W"; gene_biotype "ncRNA"; +chrXIII SGD transcript 463554 463625 . + . transcript_id "YNCM0024W_tRNA"; gene_id "YNCM0024W"; transcript_biotype "ncRNA"; +chrXIII SGD exon 463554 463625 . + . transcript_id "YNCM0024W_tRNA"; gene_id "YNCM0024W"; +chrXIII SGD gene 463642 464850 . - . gene_id "YMR099C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 463642 464850 . - . transcript_id "YMR099C_id002"; gene_id "YMR099C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 463642 464850 . - . transcript_id "YMR099C_id002"; gene_id "YMR099C"; +chrXIII SGD transcript 463934 464827 . - . transcript_id "YMR099C_id001"; gene_id "YMR099C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 463934 464827 . - 0 transcript_id "YMR099C_id001"; gene_id "YMR099C"; +chrXIII SGD gene 466300 468162 . + . gene_id "YMR100W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 466300 468162 . + . transcript_id "YMR100W_id001"; gene_id "YMR100W"; gene_name "MUB1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 466300 468162 . + 0 transcript_id "YMR100W_id001"; gene_name "MUB1"; gene_id "YMR100W"; +chrXIII SGD gene 468445 469476 . - . gene_id "YMR101C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 468445 469476 . - . transcript_id "YMR101C_id001"; gene_id "YMR101C"; gene_name "SRT1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 468445 469476 . - 0 transcript_id "YMR101C_id001"; gene_name "SRT1"; gene_id "YMR101C"; +chrXIII SGD gene 469729 472690 . - . gene_id "YMR102C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 469729 472690 . - . transcript_id "YMR102C_id001"; gene_id "YMR102C"; gene_name "LAF1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 469729 472690 . - . transcript_id "YMR102C_id001"; gene_id "YMR102C"; gene_name "LAF1"; +chrXIII SGD transcript 469848 472352 . - . transcript_id "YMR102C_id002"; gene_id "YMR102C"; gene_name "LAF1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 469848 472352 . - 0 transcript_id "YMR102C_id002"; gene_name "LAF1"; gene_id "YMR102C"; +chrXIII SGD gene 472848 474320 . - . gene_id "YMR103C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 472848 474320 . - . transcript_id "YMR103C_id017"; gene_id "YMR103C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 472848 474320 . - . transcript_id "YMR103C_id017"; gene_id "YMR103C"; +chrXIII SGD transcript 472902 473264 . - . transcript_id "YMR103C_id001"; gene_id "YMR103C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 472902 473264 . - 0 transcript_id "YMR103C_id001"; gene_id "YMR103C"; +chrXIII SGD gene 473420 475453 . - . gene_id "YMR104C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 473420 475453 . - . transcript_id "YMR104C_mRNA"; gene_id "YMR104C"; gene_name "YPK2"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 473420 475453 . - 0 transcript_id "YMR104C_mRNA"; gene_name "YPK2"; gene_id "YMR104C"; +chrXIII SGD gene 475768 478395 . - . gene_id "YMR105C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 475768 478395 . - . transcript_id "YMR105C_id002"; gene_id "YMR105C"; gene_name "PGM2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 475768 478395 . - . transcript_id "YMR105C_id002"; gene_id "YMR105C"; gene_name "PGM2"; +chrXIII SGD transcript 475897 477606 . - . transcript_id "YMR105C_id001"; gene_id "YMR105C"; gene_name "PGM2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 475897 477606 . - 0 transcript_id "YMR105C_id001"; gene_name "PGM2"; gene_id "YMR105C"; +chrXIII SGD gene 477385 478321 . + . gene_id "YMR105W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 477385 478321 . + . transcript_id "YMR105W-A_id001"; gene_id "YMR105W-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 477385 478321 . + . transcript_id "YMR105W-A_id001"; gene_id "YMR105W-A"; +chrXIII SGD gene 477713 480196 . - . gene_id "YMR106C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 477713 480196 . - . transcript_id "YMR106C_id001"; gene_id "YMR106C"; gene_name "YKU80"; transcript_biotype "protein_coding"; +chrXIII SGD exon 477713 480196 . - . transcript_id "YMR106C_id001"; gene_id "YMR106C"; gene_name "YKU80"; +chrXIII SGD transcript 478064 478258 . + . transcript_id "YMR105W-A_id002"; gene_id "YMR105W-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 478064 478258 . + 0 transcript_id "YMR105W-A_id002"; gene_id "YMR105W-A"; +chrXIII SGD transcript 478301 480190 . - . transcript_id "YMR106C_id003"; gene_id "YMR106C"; gene_name "YKU80"; transcript_biotype "protein_coding"; +chrXIII SGD exon 478301 480190 . - 0 transcript_id "YMR106C_id003"; gene_name "YKU80"; gene_id "YMR106C"; +chrXIII SGD gene 480621 480693 . - . gene_id "YNCM0025C"; gene_biotype "ncRNA"; +chrXIII SGD transcript 480621 480693 . - . transcript_id "YNCM0025C_tRNA"; gene_id "YNCM0025C"; transcript_biotype "ncRNA"; +chrXIII SGD exon 480621 480693 . - . transcript_id "YNCM0025C_tRNA"; gene_id "YNCM0025C"; +chrXIII SGD gene 483014 483361 . + . gene_id "YMR107W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 483014 483361 . + . transcript_id "YMR107W_id001"; gene_id "YMR107W"; gene_name "SPG4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 483014 483361 . + 0 transcript_id "YMR107W_id001"; gene_name "SPG4"; gene_id "YMR107W"; +chrXIII SGD gene 483814 486338 . + . gene_id "YMR108W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 483814 486338 . + . transcript_id "YMR108W_id001"; gene_id "YMR108W"; gene_name "ILV2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 483814 486338 . + . transcript_id "YMR108W_id001"; gene_id "YMR108W"; gene_name "ILV2"; +chrXIII SGD transcript 484084 486147 . + . transcript_id "YMR108W_id004"; gene_id "YMR108W"; gene_name "ILV2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 484084 486147 . + 0 transcript_id "YMR108W_id004"; gene_name "ILV2"; gene_id "YMR108W"; +chrXIII SGD gene 486546 490328 . + . gene_id "YMR109W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 486546 490328 . + . transcript_id "YMR109W_id004"; gene_id "YMR109W"; gene_name "MYO5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 486546 490328 . + . transcript_id "YMR109W_id004"; gene_id "YMR109W"; gene_name "MYO5"; +chrXIII SGD transcript 486587 490246 . + . transcript_id "YMR109W_id001"; gene_id "YMR109W"; gene_name "MYO5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 486587 490246 . + 0 transcript_id "YMR109W_id001"; gene_name "MYO5"; gene_id "YMR109W"; +chrXIII SGD gene 490242 492011 . - . gene_id "YMR110C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 490242 492011 . - . transcript_id "YMR110C_id008"; gene_id "YMR110C"; gene_name "HFD1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 490242 492011 . - . transcript_id "YMR110C_id008"; gene_id "YMR110C"; gene_name "HFD1"; +chrXIII SGD transcript 490394 491992 . - . transcript_id "YMR110C_id001"; gene_id "YMR110C"; gene_name "HFD1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 490394 491992 . - 0 transcript_id "YMR110C_id001"; gene_name "HFD1"; gene_id "YMR110C"; +chrXIII SGD gene 492259 493902 . - . gene_id "YMR111C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 492259 493902 . - . transcript_id "YMR111C_id005"; gene_id "YMR111C"; gene_name "EUC1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 492259 493902 . - . transcript_id "YMR111C_id005"; gene_id "YMR111C"; gene_name "EUC1"; +chrXIII SGD transcript 492404 493792 . - . transcript_id "YMR111C_id001"; gene_id "YMR111C"; gene_name "EUC1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 492404 493792 . - 0 transcript_id "YMR111C_id001"; gene_name "EUC1"; gene_id "YMR111C"; +chrXIII SGD gene 493979 494639 . - . gene_id "YMR112C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 493979 494639 . - . transcript_id "YMR112C_id002"; gene_id "YMR112C"; gene_name "MED11"; transcript_biotype "protein_coding"; +chrXIII SGD exon 493979 494639 . - . transcript_id "YMR112C_id002"; gene_id "YMR112C"; gene_name "MED11"; +chrXIII SGD transcript 494100 494495 . - . transcript_id "YMR112C_id001"; gene_id "YMR112C"; gene_name "MED11"; transcript_biotype "protein_coding"; +chrXIII SGD exon 494100 494495 . - 0 transcript_id "YMR112C_id001"; gene_name "MED11"; gene_id "YMR112C"; +chrXIII SGD gene 494907 496344 . + . gene_id "YMR113W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 494907 496344 . + . transcript_id "YMR113W_id002"; gene_id "YMR113W"; gene_name "FOL3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 494907 496344 . + . transcript_id "YMR113W_id002"; gene_id "YMR113W"; gene_name "FOL3"; +chrXIII SGD transcript 494999 496282 . + . transcript_id "YMR113W_id001"; gene_id "YMR113W"; gene_name "FOL3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 494999 496282 . + 0 transcript_id "YMR113W_id001"; gene_name "FOL3"; gene_id "YMR113W"; +chrXIII SGD gene 496241 497503 . - . gene_id "YMR114C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 496241 497503 . - . transcript_id "YMR114C_id004"; gene_id "YMR114C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 496241 497503 . - . transcript_id "YMR114C_id004"; gene_id "YMR114C"; +chrXIII SGD transcript 496343 497449 . - . transcript_id "YMR114C_id001"; gene_id "YMR114C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 496343 497449 . - 0 transcript_id "YMR114C_id001"; gene_id "YMR114C"; +chrXIII SGD gene 497650 499334 . + . gene_id "YMR115W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 497650 499334 . + . transcript_id "YMR115W_id002"; gene_id "YMR115W"; gene_name "MGR3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 497650 499334 . + . transcript_id "YMR115W_id002"; gene_id "YMR115W"; gene_name "MGR3"; +chrXIII SGD transcript 497704 499209 . + . transcript_id "YMR115W_id001"; gene_id "YMR115W"; gene_name "MGR3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 497704 499209 . + 0 transcript_id "YMR115W_id001"; gene_name "MGR3"; gene_id "YMR115W"; +chrXIII SGD gene 499232 500798 . - . gene_id "YMR116C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 499232 500798 . - . transcript_id "YMR116C_id013"; gene_id "YMR116C"; gene_name "ASC1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 499232 500798 . - . transcript_id "YMR116C_id013"; gene_id "YMR116C"; gene_name "ASC1"; +chrXIII SGD transcript 499456 500688 . - . transcript_id "YMR116C_id001"; gene_id "YMR116C"; gene_name "ASC1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 499456 499878 . - 0 transcript_id "YMR116C_id001"; gene_name "ASC1"; gene_id "YMR116C"; +chrXIII SGD exon 500152 500688 . - 0 transcript_id "YMR116C_id001"; gene_name "ASC1"; gene_id "YMR116C"; +chrXIII SGD gene 499984 500072 . - . gene_id "YNCM0026C"; gene_biotype "ncRNA"; +chrXIII SGD transcript 499984 500072 . - . transcript_id "YNCM0026C_snoRNA"; gene_id "YNCM0026C"; gene_name "SNR24"; transcript_biotype "ncRNA"; +chrXIII SGD exon 499984 500072 . - . transcript_id "YNCM0026C_snoRNA"; gene_name "SNR24"; gene_id "YNCM0026C"; +chrXIII SGD gene 501045 501911 . - . gene_id "YMR117C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 501045 501911 . - . transcript_id "YMR117C_id002"; gene_id "YMR117C"; gene_name "SPC24"; transcript_biotype "protein_coding"; +chrXIII SGD exon 501045 501911 . - . transcript_id "YMR117C_id002"; gene_id "YMR117C"; gene_name "SPC24"; +chrXIII SGD transcript 501250 501891 . - . transcript_id "YMR117C_id001"; gene_id "YMR117C"; gene_name "SPC24"; transcript_biotype "protein_coding"; +chrXIII SGD exon 501250 501891 . - 0 transcript_id "YMR117C_id001"; gene_name "SPC24"; gene_id "YMR117C"; +chrXIII SGD gene 502144 502734 . - . gene_id "YMR118C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 502144 502734 . - . transcript_id "YMR118C_id001"; gene_id "YMR118C"; gene_name "SHH3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 502144 502734 . - 0 transcript_id "YMR118C_id001"; gene_name "SHH3"; gene_id "YMR118C"; +chrXIII SGD gene 504895 505008 . + . gene_id "YNCM0027W"; gene_biotype "ncRNA"; +chrXIII SGD transcript 504895 505008 . + . transcript_id "YNCM0027W_tRNA"; gene_id "YNCM0027W"; transcript_biotype "ncRNA"; +chrXIII SGD exon 504895 504932 . + . transcript_id "YNCM0027W_tRNA"; gene_id "YNCM0027W"; +chrXIII SGD exon 504965 505008 . + . transcript_id "YNCM0027W_tRNA"; gene_id "YNCM0027W"; +chrXIII SGD gene 505148 507341 . + . gene_id "YMR119W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 505148 507341 . + . transcript_id "YMR119W_id004"; gene_id "YMR119W"; gene_name "ASI1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 505148 507341 . + . transcript_id "YMR119W_id004"; gene_id "YMR119W"; gene_name "ASI1"; +chrXIII SGD transcript 505333 507207 . + . transcript_id "YMR119W_id001"; gene_id "YMR119W"; gene_name "ASI1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 505333 507207 . + 0 transcript_id "YMR119W_id001"; gene_name "ASI1"; gene_id "YMR119W"; +chrXIII SGD gene 506386 508035 . + . gene_id "YMR119W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 506386 508035 . + . transcript_id "YMR119W-A_id001"; gene_id "YMR119W-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 506386 508035 . + . transcript_id "YMR119W-A_id001"; gene_id "YMR119W-A"; +chrXIII SGD transcript 506996 507370 . + . transcript_id "YMR119W-A_id003"; gene_id "YMR119W-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 506996 507370 . + 0 transcript_id "YMR119W-A_id003"; gene_id "YMR119W-A"; +chrXIII SGD gene 507502 509280 . - . gene_id "YMR120C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 507502 509280 . - . transcript_id "YMR120C_id001"; gene_id "YMR120C"; gene_name "ADE17"; transcript_biotype "protein_coding"; +chrXIII SGD exon 507502 509280 . - 0 transcript_id "YMR120C_id001"; gene_name "ADE17"; gene_id "YMR120C"; +chrXIII SGD gene 509668 510400 . - . gene_id "YMR121C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 509668 510400 . - . transcript_id "YMR121C_id013"; gene_id "YMR121C"; gene_name "RPL15B"; transcript_biotype "protein_coding"; +chrXIII SGD exon 509668 510400 . - . transcript_id "YMR121C_id013"; gene_id "YMR121C"; gene_name "RPL15B"; +chrXIII SGD transcript 509734 510348 . - . transcript_id "YMR121C_id001"; gene_id "YMR121C"; gene_name "RPL15B"; transcript_biotype "protein_coding"; +chrXIII SGD exon 509734 510348 . - 0 transcript_id "YMR121C_id001"; gene_name "RPL15B"; gene_id "YMR121C"; +chrXIII SGD gene 510589 511814 . + . gene_id "YMR122W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 510589 511814 . + . transcript_id "YMR122W-A_id001"; gene_id "YMR122W-A"; gene_name "NCW1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 510589 511814 . + . transcript_id "YMR122W-A_id001"; gene_id "YMR122W-A"; gene_name "NCW1"; +chrXIII SGD gene 510701 511075 . - . gene_id "YMR122C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 510701 511075 . - . transcript_id "YMR122C_id001"; gene_id "YMR122C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 510701 511075 . - 0 transcript_id "YMR122C_id001"; gene_id "YMR122C"; +chrXIII SGD transcript 511315 511569 . + . transcript_id "YMR122W-A_id002"; gene_id "YMR122W-A"; gene_name "NCW1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 511315 511569 . + 0 transcript_id "YMR122W-A_id002"; gene_name "NCW1"; gene_id "YMR122W-A"; +chrXIII SGD gene 513573 514280 . + . gene_id "YMR123W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 513573 514280 . + . transcript_id "YMR123W_id003"; gene_id "YMR123W"; gene_name "PKR1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 513573 514280 . + . transcript_id "YMR123W_id003"; gene_id "YMR123W"; gene_name "PKR1"; +chrXIII SGD transcript 513593 513961 . + . transcript_id "YMR123W_id001"; gene_id "YMR123W"; gene_name "PKR1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 513593 513961 . + 0 transcript_id "YMR123W_id001"; gene_name "PKR1"; gene_id "YMR123W"; +chrXIII SGD gene 514456 517287 . + . gene_id "YMR124W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 514456 517287 . + . transcript_id "YMR124W_id001"; gene_id "YMR124W"; gene_name "EPO1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 514456 517287 . + 0 transcript_id "YMR124W_id001"; gene_name "EPO1"; gene_id "YMR124W"; +chrXIII SGD gene 517450 520607 . + . gene_id "YMR125W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 517450 520607 . + . transcript_id "YMR125W_id003"; gene_id "YMR125W"; gene_name "STO1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 517450 520607 . + . transcript_id "YMR125W_id003"; gene_id "YMR125W"; gene_name "STO1"; +chrXIII SGD transcript 517539 520446 . + . transcript_id "YMR125W_id001"; gene_id "YMR125W"; gene_name "STO1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 517539 517563 . + 0 transcript_id "YMR125W_id001"; gene_name "STO1"; gene_id "YMR125W"; +chrXIII SGD exon 517886 520446 . + 2 transcript_id "YMR125W_id001"; gene_name "STO1"; gene_id "YMR125W"; +chrXIII SGD gene 520665 522056 . - . gene_id "YMR126C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 520665 522056 . - . transcript_id "YMR126C_id002"; gene_id "YMR126C"; gene_name "DLT1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 520665 522056 . - . transcript_id "YMR126C_id002"; gene_id "YMR126C"; gene_name "DLT1"; +chrXIII SGD transcript 520761 521789 . - . transcript_id "YMR126C_id001"; gene_id "YMR126C"; gene_name "DLT1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 520761 521789 . - 0 transcript_id "YMR126C_id001"; gene_name "DLT1"; gene_id "YMR126C"; +chrXIII SGD gene 522070 523448 . - . gene_id "YMR127C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 522070 523448 . - . transcript_id "YMR127C_id001"; gene_id "YMR127C"; gene_name "SAS2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 522070 523448 . - . transcript_id "YMR127C_id001"; gene_id "YMR127C"; gene_name "SAS2"; +chrXIII SGD transcript 522329 523345 . - . transcript_id "YMR127C_id002"; gene_id "YMR127C"; gene_name "SAS2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 522329 523345 . - 0 transcript_id "YMR127C_id002"; gene_name "SAS2"; gene_id "YMR127C"; +chrXIII SGD gene 523696 527499 . + . gene_id "YMR128W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 523696 527499 . + . transcript_id "YMR128W_id001"; gene_id "YMR128W"; gene_name "ECM16"; transcript_biotype "protein_coding"; +chrXIII SGD exon 523696 527499 . + 0 transcript_id "YMR128W_id001"; gene_name "ECM16"; gene_id "YMR128W"; +chrXIII SGD gene 527761 531947 . + . gene_id "YMR129W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 527761 531947 . + . transcript_id "YMR129W_id001"; gene_id "YMR129W"; gene_name "POM152"; transcript_biotype "protein_coding"; +chrXIII SGD exon 527761 531947 . + . transcript_id "YMR129W_id001"; gene_id "YMR129W"; gene_name "POM152"; +chrXIII SGD transcript 527804 531817 . + . transcript_id "YMR129W_id002"; gene_id "YMR129W"; gene_name "POM152"; transcript_biotype "protein_coding"; +chrXIII SGD exon 527804 531817 . + 0 transcript_id "YMR129W_id002"; gene_name "POM152"; gene_id "YMR129W"; +chrXIII SGD gene 532026 533172 . + . gene_id "YMR130W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 532026 533172 . + . transcript_id "YMR130W_id007"; gene_id "YMR130W"; gene_name "DPI35"; transcript_biotype "protein_coding"; +chrXIII SGD exon 532026 533172 . + . transcript_id "YMR130W_id007"; gene_id "YMR130W"; gene_name "DPI35"; +chrXIII SGD transcript 532119 533027 . + . transcript_id "YMR130W_id001"; gene_id "YMR130W"; gene_name "DPI35"; transcript_biotype "protein_coding"; +chrXIII SGD exon 532119 533027 . + 0 transcript_id "YMR130W_id001"; gene_name "DPI35"; gene_id "YMR130W"; +chrXIII SGD gene 532989 534773 . - . gene_id "YMR131C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 532989 534773 . - . transcript_id "YMR131C_id002"; gene_id "YMR131C"; gene_name "RRB1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 532989 534773 . - . transcript_id "YMR131C_id002"; gene_id "YMR131C"; gene_name "RRB1"; +chrXIII SGD transcript 533163 534698 . - . transcript_id "YMR131C_id001"; gene_id "YMR131C"; gene_name "RRB1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 533163 534698 . - 0 transcript_id "YMR131C_id001"; gene_name "RRB1"; gene_id "YMR131C"; +chrXIII SGD gene 534530 535657 . - . gene_id "YMR132C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 534530 535657 . - . transcript_id "YMR132C_id001"; gene_id "YMR132C"; gene_name "JLP2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 534530 535657 . - . transcript_id "YMR132C_id001"; gene_id "YMR132C"; gene_name "JLP2"; +chrXIII SGD transcript 534944 535570 . - . transcript_id "YMR132C_id004"; gene_id "YMR132C"; gene_name "JLP2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 534944 535570 . - 0 transcript_id "YMR132C_id004"; gene_name "JLP2"; gene_id "YMR132C"; +chrXIII SGD gene 536207 537609 . + . gene_id "YMR133W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 536207 537609 . + . transcript_id "YMR133W_mRNA"; gene_id "YMR133W"; gene_name "REC114"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 536207 537448 . + 0 transcript_id "YMR133W_mRNA"; gene_name "REC114"; gene_id "YMR133W"; +chrXIII SGD CDS 537565 537609 . + 0 transcript_id "YMR133W_mRNA"; gene_name "REC114"; gene_id "YMR133W"; +chrXIII SGD gene 537751 538873 . + . gene_id "YMR134W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 537751 538873 . + . transcript_id "YMR134W_id007"; gene_id "YMR134W"; gene_name "ERG29"; transcript_biotype "protein_coding"; +chrXIII SGD exon 537751 538873 . + . transcript_id "YMR134W_id007"; gene_id "YMR134W"; gene_name "ERG29"; +chrXIII SGD transcript 537838 538551 . + . transcript_id "YMR134W_id001"; gene_id "YMR134W"; gene_name "ERG29"; transcript_biotype "protein_coding"; +chrXIII SGD exon 537838 538551 . + 0 transcript_id "YMR134W_id001"; gene_name "ERG29"; gene_id "YMR134W"; +chrXIII SGD gene 538645 540112 . - . gene_id "YMR135C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 538645 540112 . - . transcript_id "YMR135C_id003"; gene_id "YMR135C"; gene_name "GID8"; transcript_biotype "protein_coding"; +chrXIII SGD exon 538645 540112 . - . transcript_id "YMR135C_id003"; gene_id "YMR135C"; gene_name "GID8"; +chrXIII SGD transcript 538689 540056 . - . transcript_id "YMR135C_id001"; gene_id "YMR135C"; gene_name "GID8"; transcript_biotype "protein_coding"; +chrXIII SGD exon 538689 540056 . - 0 transcript_id "YMR135C_id001"; gene_name "GID8"; gene_id "YMR135C"; +chrXIII SGD gene 539911 540444 . + . gene_id "YMR135W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 539911 540444 . + . transcript_id "YMR135W-A_mRNA"; gene_id "YMR135W-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 539911 540444 . + 0 transcript_id "YMR135W-A_mRNA"; gene_id "YMR135W-A"; +chrXIII SGD gene 541101 542953 . + . gene_id "YMR136W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 541101 542953 . + . transcript_id "YMR136W_id002"; gene_id "YMR136W"; gene_name "GAT2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 541101 542953 . + . transcript_id "YMR136W_id002"; gene_id "YMR136W"; gene_name "GAT2"; +chrXIII SGD transcript 541199 542881 . + . transcript_id "YMR136W_id001"; gene_id "YMR136W"; gene_name "GAT2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 541199 542881 . + 0 transcript_id "YMR136W_id001"; gene_name "GAT2"; gene_id "YMR136W"; +chrXIII SGD gene 542851 545043 . - . gene_id "YMR137C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 542851 545043 . - . transcript_id "YMR137C_id001"; gene_id "YMR137C"; gene_name "PSO2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 542851 545043 . - . transcript_id "YMR137C_id001"; gene_id "YMR137C"; gene_name "PSO2"; +chrXIII SGD transcript 542978 544963 . - . transcript_id "YMR137C_id003"; gene_id "YMR137C"; gene_name "PSO2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 542978 544963 . - 0 transcript_id "YMR137C_id003"; gene_name "PSO2"; gene_id "YMR137C"; +chrXIII SGD gene 545155 546194 . + . gene_id "YMR138W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 545155 545730 . + . transcript_id "YMR138W_id001"; gene_id "YMR138W"; gene_name "CIN4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 545155 545730 . + 0 transcript_id "YMR138W_id001"; gene_name "CIN4"; gene_id "YMR138W"; +chrXIII SGD transcript 545155 546194 . + . transcript_id "YMR138W_id005"; gene_id "YMR138W"; gene_name "CIN4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 545155 546194 . + . transcript_id "YMR138W_id005"; gene_id "YMR138W"; gene_name "CIN4"; +chrXIII SGD gene 545185 547353 . + . gene_id "YMR139W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 545185 547353 . + . transcript_id "YMR139W_id001"; gene_id "YMR139W"; gene_name "RIM11"; transcript_biotype "protein_coding"; +chrXIII SGD exon 545185 547353 . + . transcript_id "YMR139W_id001"; gene_id "YMR139W"; gene_name "RIM11"; +chrXIII SGD transcript 546125 547237 . + . transcript_id "YMR139W_id002"; gene_id "YMR139W"; gene_name "RIM11"; transcript_biotype "protein_coding"; +chrXIII SGD exon 546125 547237 . + 0 transcript_id "YMR139W_id002"; gene_name "RIM11"; gene_id "YMR139W"; +chrXIII SGD gene 547662 550024 . + . gene_id "YMR140W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 547662 550024 . + . transcript_id "YMR140W_id001"; gene_id "YMR140W"; gene_name "SIP5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 547662 550024 . + . transcript_id "YMR140W_id001"; gene_id "YMR140W"; gene_name "SIP5"; +chrXIII SGD transcript 547714 549183 . + . transcript_id "YMR140W_id002"; gene_id "YMR140W"; gene_name "SIP5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 547714 549183 . + 0 transcript_id "YMR140W_id002"; gene_name "SIP5"; gene_id "YMR140W"; +chrXIII SGD gene 549736 550044 . - . gene_id "YMR141C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 549736 550044 . - . transcript_id "YMR141C_id001"; gene_id "YMR141C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 549736 550044 . - 0 transcript_id "YMR141C_id001"; gene_id "YMR141C"; +chrXIII SGD gene 550108 552908 . - . gene_id "YMR142C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 550108 552908 . - . transcript_id "YMR142C_id001"; gene_id "YMR142C"; gene_name "RPL13B"; transcript_biotype "protein_coding"; +chrXIII SGD exon 550108 552908 . - . transcript_id "YMR142C_id001"; gene_id "YMR142C"; gene_name "RPL13B"; +chrXIII SGD transcript 550206 551207 . - . transcript_id "YMR142C_id003"; gene_id "YMR142C"; gene_name "RPL13B"; transcript_biotype "protein_coding"; +chrXIII SGD exon 550206 550801 . - 2 transcript_id "YMR142C_id003"; gene_name "RPL13B"; gene_id "YMR142C"; +chrXIII SGD exon 551204 551207 . - 0 transcript_id "YMR142C_id003"; gene_name "RPL13B"; gene_id "YMR142C"; +chrXIII SGD gene 550911 551135 . + . gene_id "YMR141W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 550911 551135 . + . transcript_id "YMR141W-A_id001"; gene_id "YMR141W-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 550911 551135 . + 0 transcript_id "YMR141W-A_id001"; gene_id "YMR141W-A"; +chrXIII SGD gene 551799 553052 . + . gene_id "YMR143W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 551799 553052 . + . transcript_id "YMR143W_id002"; gene_id "YMR143W"; gene_name "RPS16A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 551799 553052 . + . transcript_id "YMR143W_id002"; gene_id "YMR143W"; gene_name "RPS16A"; +chrXIII SGD transcript 551928 552903 . + . transcript_id "YMR143W_id001"; gene_id "YMR143W"; gene_name "RPS16A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 551928 551951 . + 0 transcript_id "YMR143W_id001"; gene_name "RPS16A"; gene_id "YMR143W"; +chrXIII SGD exon 552496 552903 . + 0 transcript_id "YMR143W_id001"; gene_name "RPS16A"; gene_id "YMR143W"; +chrXIII SGD gene 553254 554686 . + . gene_id "YMR144W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 553254 554686 . + . transcript_id "YMR144W_id001"; gene_id "YMR144W"; gene_name "FDO1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 553254 554686 . + . transcript_id "YMR144W_id001"; gene_id "YMR144W"; gene_name "FDO1"; +chrXIII SGD transcript 553362 554390 . + . transcript_id "YMR144W_id002"; gene_id "YMR144W"; gene_name "FDO1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 553362 554390 . + 0 transcript_id "YMR144W_id002"; gene_name "FDO1"; gene_id "YMR144W"; +chrXIII SGD gene 554444 556698 . - . gene_id "YMR145C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 554444 556698 . - . transcript_id "YMR145C_id001"; gene_id "YMR145C"; gene_name "NDE1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 554444 556698 . - . transcript_id "YMR145C_id001"; gene_id "YMR145C"; gene_name "NDE1"; +chrXIII SGD transcript 554793 556475 . - . transcript_id "YMR145C_id002"; gene_id "YMR145C"; gene_name "NDE1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 554793 556475 . - 0 transcript_id "YMR145C_id002"; gene_name "NDE1"; gene_id "YMR145C"; +chrXIII SGD gene 557382 558641 . - . gene_id "YMR146C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 557382 558641 . - . transcript_id "YMR146C_id002"; gene_id "YMR146C"; gene_name "TIF34"; transcript_biotype "protein_coding"; +chrXIII SGD exon 557382 558641 . - . transcript_id "YMR146C_id002"; gene_id "YMR146C"; gene_name "TIF34"; +chrXIII SGD transcript 557481 558524 . - . transcript_id "YMR146C_id001"; gene_id "YMR146C"; gene_name "TIF34"; transcript_biotype "protein_coding"; +chrXIII SGD exon 557481 558524 . - 0 transcript_id "YMR146C_id001"; gene_name "TIF34"; gene_id "YMR146C"; +chrXIII SGD gene 559199 560812 . + . gene_id "YMR147W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 559199 560812 . + . transcript_id "YMR147W_id001"; gene_id "YMR147W"; gene_name "LDO45"; transcript_biotype "protein_coding"; +chrXIII SGD exon 559199 559780 . + 0 transcript_id "YMR147W_id001"; gene_name "LDO45"; gene_id "YMR147W"; +chrXIII SGD exon 560156 560812 . + 0 transcript_id "YMR147W_id001"; gene_name "LDO45"; gene_id "YMR147W"; +chrXIII SGD gene 559482 560984 . + . gene_id "YMR148W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 559482 560984 . + . transcript_id "YMR148W_id001"; gene_id "YMR148W"; gene_name "LDO16"; transcript_biotype "protein_coding"; +chrXIII SGD exon 559482 560984 . + . transcript_id "YMR148W_id001"; gene_id "YMR148W"; gene_name "LDO16"; +chrXIII SGD transcript 560366 560812 . + . transcript_id "YMR148W_id003"; gene_id "YMR148W"; gene_name "LDO16"; transcript_biotype "protein_coding"; +chrXIII SGD exon 560366 560812 . + 0 transcript_id "YMR148W_id003"; gene_name "LDO16"; gene_id "YMR148W"; +chrXIII SGD gene 560996 561856 . + . gene_id "YMR149W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 560996 561856 . + . transcript_id "YMR149W_mRNA"; gene_id "YMR149W"; gene_name "SWP1"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 560996 561856 . + 0 transcript_id "YMR149W_mRNA"; gene_name "SWP1"; gene_id "YMR149W"; +chrXIII SGD gene 561956 562528 . - . gene_id "YMR150C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 561956 562528 . - . transcript_id "YMR150C_mRNA"; gene_id "YMR150C"; gene_name "IMP1"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 561956 562528 . - 0 transcript_id "YMR150C_mRNA"; gene_name "IMP1"; gene_id "YMR150C"; +chrXIII SGD gene 562506 562943 . + . gene_id "YMR151W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 562506 562943 . + . transcript_id "YMR151W_id001"; gene_id "YMR151W"; gene_name "YIM2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 562506 562943 . + 0 transcript_id "YMR151W_id001"; gene_name "YIM2"; gene_id "YMR151W"; +chrXIII SGD gene 563082 564362 . + . gene_id "YMR152W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 563082 564362 . + . transcript_id "YMR152W_id003"; gene_id "YMR152W"; gene_name "YIM1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 563082 564362 . + . transcript_id "YMR152W_id003"; gene_id "YMR152W"; gene_name "YIM1"; +chrXIII SGD transcript 563096 564193 . + . transcript_id "YMR152W_id001"; gene_id "YMR152W"; gene_name "YIM1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 563096 564193 . + 0 transcript_id "YMR152W_id001"; gene_name "YIM1"; gene_id "YMR152W"; +chrXIII SGD gene 564406 566659 . + . gene_id "YMR153W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 564406 566659 . + . transcript_id "YMR153W_id001"; gene_id "YMR153W"; gene_name "NUP53"; transcript_biotype "protein_coding"; +chrXIII SGD exon 564406 566659 . + . transcript_id "YMR153W_id001"; gene_id "YMR153W"; gene_name "NUP53"; +chrXIII SGD transcript 564435 565862 . + . transcript_id "YMR153W_id004"; gene_id "YMR153W"; gene_name "NUP53"; transcript_biotype "protein_coding"; +chrXIII SGD exon 564435 565862 . + 0 transcript_id "YMR153W_id004"; gene_name "NUP53"; gene_id "YMR153W"; +chrXIII SGD gene 565574 565909 . - . gene_id "YMR153C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 565574 565909 . - . transcript_id "YMR153C-A_id001"; gene_id "YMR153C-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 565574 565909 . - 0 transcript_id "YMR153C-A_id001"; gene_id "YMR153C-A"; +chrXIII SGD gene 565666 570353 . + . gene_id "YMR155W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 565666 570353 . + . transcript_id "YMR155W_id001"; gene_id "YMR155W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 565666 570353 . + . transcript_id "YMR155W_id001"; gene_id "YMR155W"; +chrXIII SGD gene 565798 568203 . - . gene_id "YMR154C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 565798 568203 . - . transcript_id "YMR154C_id003"; gene_id "YMR154C"; gene_name "RIM13"; transcript_biotype "protein_coding"; +chrXIII SGD exon 565798 568203 . - . transcript_id "YMR154C_id003"; gene_id "YMR154C"; gene_name "RIM13"; +chrXIII SGD transcript 565999 568182 . - . transcript_id "YMR154C_id001"; gene_id "YMR154C"; gene_name "RIM13"; transcript_biotype "protein_coding"; +chrXIII SGD exon 565999 568182 . - 0 transcript_id "YMR154C_id001"; gene_name "RIM13"; gene_id "YMR154C"; +chrXIII SGD transcript 568551 570194 . + . transcript_id "YMR155W_id005"; gene_id "YMR155W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 568551 570194 . + 0 transcript_id "YMR155W_id005"; gene_id "YMR155W"; +chrXIII SGD gene 570244 571215 . - . gene_id "YMR156C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 570244 571215 . - . transcript_id "YMR156C_id001"; gene_id "YMR156C"; gene_name "TPP1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 570244 571215 . - . transcript_id "YMR156C_id001"; gene_id "YMR156C"; gene_name "TPP1"; +chrXIII SGD transcript 570300 571016 . - . transcript_id "YMR156C_id002"; gene_id "YMR156C"; gene_name "TPP1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 570300 571016 . - 0 transcript_id "YMR156C_id002"; gene_name "TPP1"; gene_id "YMR156C"; +chrXIII SGD gene 571116 572090 . - . gene_id "YMR157C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 571116 572090 . - . transcript_id "YMR157C_id003"; gene_id "YMR157C"; gene_name "AIM36"; transcript_biotype "protein_coding"; +chrXIII SGD exon 571116 572090 . - . transcript_id "YMR157C_id003"; gene_id "YMR157C"; gene_name "AIM36"; +chrXIII SGD transcript 571277 572044 . - . transcript_id "YMR157C_id001"; gene_id "YMR157C"; gene_name "AIM36"; transcript_biotype "protein_coding"; +chrXIII SGD exon 571277 572044 . - 0 transcript_id "YMR157C_id001"; gene_name "AIM36"; gene_id "YMR157C"; +chrXIII SGD gene 572008 572798 . + . gene_id "YMR158W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 572008 572798 . + . transcript_id "YMR158W_id002"; gene_id "YMR158W"; gene_name "MRPS8"; transcript_biotype "protein_coding"; +chrXIII SGD exon 572008 572798 . + . transcript_id "YMR158W_id002"; gene_id "YMR158W"; gene_name "MRPS8"; +chrXIII SGD transcript 572248 572715 . + . transcript_id "YMR158W_id001"; gene_id "YMR158W"; gene_name "MRPS8"; transcript_biotype "protein_coding"; +chrXIII SGD exon 572248 572715 . + 0 transcript_id "YMR158W_id001"; gene_name "MRPS8"; gene_id "YMR158W"; +chrXIII SGD gene 572883 572955 . - . gene_id "YNCM0028C"; gene_biotype "ncRNA"; +chrXIII SGD transcript 572883 572955 . - . transcript_id "YNCM0028C_tRNA"; gene_id "YNCM0028C"; gene_name "EMT4"; transcript_biotype "ncRNA"; +chrXIII SGD exon 572883 572955 . - . transcript_id "YNCM0028C_tRNA"; gene_name "EMT4"; gene_id "YNCM0028C"; +chrXIII SGD gene 573114 574894 . - . gene_id "YMR158C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 573114 574894 . - . transcript_id "YMR158C-A_id001"; gene_id "YMR158C-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 573114 574894 . - . transcript_id "YMR158C-A_id001"; gene_id "YMR158C-A"; +chrXIII SGD transcript 573194 573331 . - . transcript_id "YMR158C-A_id002"; gene_id "YMR158C-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 573194 573331 . - 0 transcript_id "YMR158C-A_id002"; gene_id "YMR158C-A"; +chrXIII SGD gene 574471 574791 . + . gene_id "YMR158W-B"; gene_biotype "protein_coding"; +chrXIII SGD transcript 574471 574791 . + . transcript_id "YMR158W-B_mRNA"; gene_id "YMR158W-B"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 574471 574791 . + 0 transcript_id "YMR158W-B_mRNA"; gene_id "YMR158W-B"; +chrXIII SGD gene 574476 574928 . - . gene_id "YMR159C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 574476 574928 . - . transcript_id "YMR159C_mRNA"; gene_id "YMR159C"; gene_name "ATG16"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 574476 574928 . - 0 transcript_id "YMR159C_mRNA"; gene_name "ATG16"; gene_id "YMR159C"; +chrXIII SGD gene 575066 577516 . + . gene_id "YMR160W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 575066 577516 . + . transcript_id "YMR160W_id001"; gene_id "YMR160W"; gene_name "CVM1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 575066 577516 . + 0 transcript_id "YMR160W_id001"; gene_name "CVM1"; gene_id "YMR160W"; +chrXIII SGD gene 577540 578772 . + . gene_id "YMR161W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 577540 578772 . + . transcript_id "YMR161W_id005"; gene_id "YMR161W"; gene_name "HLJ1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 577540 578772 . + . transcript_id "YMR161W_id005"; gene_id "YMR161W"; gene_name "HLJ1"; +chrXIII SGD transcript 577718 578392 . + . transcript_id "YMR161W_id001"; gene_id "YMR161W"; gene_name "HLJ1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 577718 578392 . + 0 transcript_id "YMR161W_id001"; gene_name "HLJ1"; gene_id "YMR161W"; +chrXIII SGD gene 578951 583921 . - . gene_id "YMR162C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 578951 583921 . - . transcript_id "YMR162C_mRNA"; gene_id "YMR162C"; gene_name "DNF3"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 578951 583921 . - 0 transcript_id "YMR162C_mRNA"; gene_name "DNF3"; gene_id "YMR162C"; +chrXIII SGD gene 584215 586533 . - . gene_id "YMR163C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 584215 586533 . - . transcript_id "YMR163C_id002"; gene_id "YMR163C"; gene_name "INP2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 584215 586533 . - . transcript_id "YMR163C_id002"; gene_id "YMR163C"; gene_name "INP2"; +chrXIII SGD transcript 584271 586388 . - . transcript_id "YMR163C_id001"; gene_id "YMR163C"; gene_name "INP2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 584271 586388 . - 0 transcript_id "YMR163C_id001"; gene_name "INP2"; gene_id "YMR163C"; +chrXIII SGD gene 586636 586709 . - . gene_id "YNCM0029C"; gene_biotype "ncRNA"; +chrXIII SGD transcript 586636 586709 . - . transcript_id "YNCM0029C_tRNA"; gene_id "YNCM0029C"; transcript_biotype "ncRNA"; +chrXIII SGD exon 586636 586709 . - . transcript_id "YNCM0029C_tRNA"; gene_id "YNCM0029C"; +chrXIII SGD gene 587274 589550 . - . gene_id "YMR164C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 587274 589550 . - . transcript_id "YMR164C_mRNA"; gene_id "YMR164C"; gene_name "MSS11"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 587274 589550 . - 0 transcript_id "YMR164C_mRNA"; gene_name "MSS11"; gene_id "YMR164C"; +chrXIII SGD gene 590040 592628 . - . gene_id "YMR165C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 590040 592628 . - . transcript_id "YMR165C_id001"; gene_id "YMR165C"; gene_name "PAH1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 590040 592628 . - 0 transcript_id "YMR165C_id001"; gene_name "PAH1"; gene_id "YMR165C"; +chrXIII SGD gene 593121 594743 . - . gene_id "YMR166C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 593121 594743 . - . transcript_id "YMR166C_id001"; gene_id "YMR166C"; gene_name "MME1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 593121 594743 . - . transcript_id "YMR166C_id001"; gene_id "YMR166C"; gene_name "MME1"; +chrXIII SGD transcript 593367 594473 . - . transcript_id "YMR166C_id003"; gene_id "YMR166C"; gene_name "MME1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 593367 594473 . - 0 transcript_id "YMR166C_id003"; gene_name "MME1"; gene_id "YMR166C"; +chrXIII SGD gene 594886 597195 . + . gene_id "YMR167W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 594886 597195 . + . transcript_id "YMR167W_id001"; gene_id "YMR167W"; gene_name "MLH1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 594886 597195 . + 0 transcript_id "YMR167W_id001"; gene_name "MLH1"; gene_id "YMR167W"; +chrXIII SGD gene 597332 599158 . - . gene_id "YMR168C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 597332 599158 . - . transcript_id "YMR168C_id001"; gene_id "YMR168C"; gene_name "CEP3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 597332 599158 . - 0 transcript_id "YMR168C_id001"; gene_name "CEP3"; gene_id "YMR168C"; +chrXIII SGD gene 599297 601131 . - . gene_id "YMR169C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 599297 601131 . - . transcript_id "YMR169C_id001"; gene_id "YMR169C"; gene_name "ALD3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 599297 601131 . - . transcript_id "YMR169C_id001"; gene_id "YMR169C"; gene_name "ALD3"; +chrXIII SGD transcript 599352 600872 . - . transcript_id "YMR169C_id003"; gene_id "YMR169C"; gene_name "ALD3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 599352 600872 . - 0 transcript_id "YMR169C_id003"; gene_name "ALD3"; gene_id "YMR169C"; +chrXIII SGD gene 601424 603343 . - . gene_id "YMR170C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 601424 603343 . - . transcript_id "YMR170C_id001"; gene_id "YMR170C"; gene_name "ALD2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 601424 603343 . - . transcript_id "YMR170C_id001"; gene_id "YMR170C"; gene_name "ALD2"; +chrXIII SGD transcript 601562 603082 . - . transcript_id "YMR170C_id002"; gene_id "YMR170C"; gene_name "ALD2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 601562 603082 . - 0 transcript_id "YMR170C_id002"; gene_name "ALD2"; gene_id "YMR170C"; +chrXIII SGD gene 603621 605742 . - . gene_id "YMR171C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 603621 605742 . - . transcript_id "YMR171C_id002"; gene_id "YMR171C"; gene_name "EAR1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 603621 605742 . - . transcript_id "YMR171C_id002"; gene_id "YMR171C"; gene_name "EAR1"; +chrXIII SGD transcript 603868 605520 . - . transcript_id "YMR171C_id001"; gene_id "YMR171C"; gene_name "EAR1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 603868 605520 . - 0 transcript_id "YMR171C_id001"; gene_name "EAR1"; gene_id "YMR171C"; +chrXIII SGD gene 605981 608140 . + . gene_id "YMR172W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 605981 608140 . + . transcript_id "YMR172W_mRNA"; gene_id "YMR172W"; gene_name "HOT1"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 605981 608140 . + 0 transcript_id "YMR172W_mRNA"; gene_name "HOT1"; gene_id "YMR172W"; +chrXIII SGD gene 607828 608211 . - . gene_id "YMR172C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 607828 608211 . - . transcript_id "YMR172C-A_mRNA"; gene_id "YMR172C-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 607828 608211 . - 0 transcript_id "YMR172C-A_mRNA"; gene_id "YMR172C-A"; +chrXIII SGD gene 608604 610060 . + . gene_id "YMR173W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 608604 610060 . + . transcript_id "YMR173W_id001"; gene_id "YMR173W"; gene_name "DDR48"; transcript_biotype "protein_coding"; +chrXIII SGD exon 608604 610060 . + . transcript_id "YMR173W_id001"; gene_id "YMR173W"; gene_name "DDR48"; +chrXIII SGD transcript 608689 609981 . + . transcript_id "YMR173W_id002"; gene_id "YMR173W"; gene_name "DDR48"; transcript_biotype "protein_coding"; +chrXIII SGD exon 608689 609981 . + 0 transcript_id "YMR173W_id002"; gene_name "DDR48"; gene_id "YMR173W"; +chrXIII SGD gene 608897 610081 . + . gene_id "YMR173W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 608897 610081 . + . transcript_id "YMR173W-A_id001"; gene_id "YMR173W-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 608897 610081 . + 0 transcript_id "YMR173W-A_id001"; gene_id "YMR173W-A"; +chrXIII SGD gene 609988 610683 . - . gene_id "YMR174C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 609988 610683 . - . transcript_id "YMR174C_id002"; gene_id "YMR174C"; gene_name "PAI3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 609988 610683 . - . transcript_id "YMR174C_id002"; gene_id "YMR174C"; gene_name "PAI3"; +chrXIII SGD transcript 610159 610365 . - . transcript_id "YMR174C_id001"; gene_id "YMR174C"; gene_name "PAI3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 610159 610365 . - 0 transcript_id "YMR174C_id001"; gene_name "PAI3"; gene_id "YMR174C"; +chrXIII SGD gene 611016 611255 . + . gene_id "YMR175W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 611016 611255 . + . transcript_id "YMR175W_id001"; gene_id "YMR175W"; gene_name "SIP18"; transcript_biotype "protein_coding"; +chrXIII SGD exon 611016 611255 . + 0 transcript_id "YMR175W_id001"; gene_name "SIP18"; gene_id "YMR175W"; +chrXIII SGD gene 611314 611508 . + . gene_id "YMR175W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 611314 611508 . + . transcript_id "YMR175W-A_mRNA"; gene_id "YMR175W-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 611314 611508 . + 0 transcript_id "YMR175W-A_mRNA"; gene_id "YMR175W-A"; +chrXIII SGD gene 611740 615975 . + . gene_id "YMR176W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 611740 615975 . + . transcript_id "YMR176W_id001"; gene_id "YMR176W"; gene_name "ECM5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 611740 615975 . + 0 transcript_id "YMR176W_id001"; gene_name "ECM5"; gene_id "YMR176W"; +chrXIII SGD gene 616402 618333 . + . gene_id "YMR177W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 616402 618333 . + . transcript_id "YMR177W_id001"; gene_id "YMR177W"; gene_name "MMT1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 616402 618333 . + . transcript_id "YMR177W_id001"; gene_id "YMR177W"; gene_name "MMT1"; +chrXIII SGD transcript 616566 618098 . + . transcript_id "YMR177W_id002"; gene_id "YMR177W"; gene_name "MMT1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 616566 618098 . + 0 transcript_id "YMR177W_id002"; gene_name "MMT1"; gene_id "YMR177W"; +chrXIII SGD gene 618432 619563 . + . gene_id "YMR178W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 618432 619563 . + . transcript_id "YMR178W_id004"; gene_id "YMR178W"; gene_name "FPY1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 618432 619563 . + . transcript_id "YMR178W_id004"; gene_id "YMR178W"; gene_name "FPY1"; +chrXIII SGD transcript 618479 619303 . + . transcript_id "YMR178W_id001"; gene_id "YMR178W"; gene_name "FPY1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 618479 619303 . + 0 transcript_id "YMR178W_id001"; gene_name "FPY1"; gene_id "YMR178W"; +chrXIII SGD gene 619858 622134 . + . gene_id "YMR179W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 619858 622134 . + . transcript_id "YMR179W_id001"; gene_id "YMR179W"; gene_name "SPT21"; transcript_biotype "protein_coding"; +chrXIII SGD exon 619858 622134 . + 0 transcript_id "YMR179W_id001"; gene_name "SPT21"; gene_id "YMR179W"; +chrXIII SGD gene 622107 623238 . - . gene_id "YMR180C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 622107 623238 . - . transcript_id "YMR180C_id001"; gene_id "YMR180C"; gene_name "CTL1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 622107 623238 . - . transcript_id "YMR180C_id001"; gene_id "YMR180C"; gene_name "CTL1"; +chrXIII SGD transcript 622251 623213 . - . transcript_id "YMR180C_id002"; gene_id "YMR180C"; gene_name "CTL1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 622251 623213 . - 0 transcript_id "YMR180C_id002"; gene_name "CTL1"; gene_id "YMR180C"; +chrXIII SGD gene 623328 625077 . - . gene_id "YMR181C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 623328 625077 . - . transcript_id "YMR181C_id001"; gene_id "YMR181C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 623328 625077 . - . transcript_id "YMR181C_id001"; gene_id "YMR181C"; +chrXIII SGD transcript 623616 624080 . - . transcript_id "YMR181C_id003"; gene_id "YMR181C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 623616 624080 . - 0 transcript_id "YMR181C_id003"; gene_id "YMR181C"; +chrXIII SGD gene 624090 625304 . - . gene_id "YMR182C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 624090 625304 . - . transcript_id "YMR182C_id002"; gene_id "YMR182C"; gene_name "RGM1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 624090 625304 . - . transcript_id "YMR182C_id002"; gene_id "YMR182C"; gene_name "RGM1"; +chrXIII SGD gene 624508 626600 . + . gene_id "YMR182W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 624508 626600 . + . transcript_id "YMR182W-A_id001"; gene_id "YMR182W-A"; gene_name "MIN3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 624508 626600 . + . transcript_id "YMR182W-A_id001"; gene_id "YMR182W-A"; gene_name "MIN3"; +chrXIII SGD transcript 624532 625167 . - . transcript_id "YMR182C_id001"; gene_id "YMR182C"; gene_name "RGM1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 624532 625167 . - 0 transcript_id "YMR182C_id001"; gene_name "RGM1"; gene_id "YMR182C"; +chrXIII SGD transcript 625811 625897 . + . transcript_id "YMR182W-A_id003"; gene_id "YMR182W-A"; gene_name "MIN3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 625811 625897 . + 0 transcript_id "YMR182W-A_id003"; gene_name "MIN3"; gene_id "YMR182W-A"; +chrXIII SGD gene 626349 626654 . + . gene_id "YNCM0030W"; gene_biotype "ncRNA"; +chrXIII SGD transcript 626349 626654 . + . transcript_id "YNCM0030W_snoRNA"; gene_id "YNCM0030W"; gene_name "SNR83"; transcript_biotype "ncRNA"; +chrXIII SGD exon 626349 626654 . + . transcript_id "YNCM0030W_snoRNA"; gene_name "SNR83"; gene_id "YNCM0030W"; +chrXIII SGD gene 626562 627883 . - . gene_id "YMR183C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 626562 627883 . - . transcript_id "YMR183C_id001"; gene_id "YMR183C"; gene_name "SSO2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 626562 627883 . - . transcript_id "YMR183C_id001"; gene_id "YMR183C"; gene_name "SSO2"; +chrXIII SGD transcript 626921 627808 . - . transcript_id "YMR183C_id005"; gene_id "YMR183C"; gene_name "SSO2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 626921 627808 . - 0 transcript_id "YMR183C_id005"; gene_name "SSO2"; gene_id "YMR183C"; +chrXIII SGD gene 628182 631144 . + . gene_id "YMR184W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 628182 631144 . + . transcript_id "YMR184W_id001"; gene_id "YMR184W"; gene_name "ADD37"; transcript_biotype "protein_coding"; +chrXIII SGD exon 628182 631144 . + . transcript_id "YMR184W_id001"; gene_id "YMR184W"; gene_name "ADD37"; +chrXIII SGD transcript 628189 628785 . + . transcript_id "YMR184W_id002"; gene_id "YMR184W"; gene_name "ADD37"; transcript_biotype "protein_coding"; +chrXIII SGD exon 628189 628785 . + 0 transcript_id "YMR184W_id002"; gene_name "ADD37"; gene_id "YMR184W"; +chrXIII SGD gene 629025 631970 . + . gene_id "YMR185W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 629025 631970 . + . transcript_id "YMR185W_id001"; gene_id "YMR185W"; gene_name "RTP1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 629025 631970 . + 0 transcript_id "YMR185W_id001"; gene_name "RTP1"; gene_id "YMR185W"; +chrXIII SGD gene 632216 634553 . + . gene_id "YMR186W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 632216 634553 . + . transcript_id "YMR186W_id001"; gene_id "YMR186W"; gene_name "HSC82"; transcript_biotype "protein_coding"; +chrXIII SGD exon 632216 634553 . + . transcript_id "YMR186W_id001"; gene_id "YMR186W"; gene_name "HSC82"; +chrXIII SGD transcript 632355 634472 . + . transcript_id "YMR186W_id002"; gene_id "YMR186W"; gene_name "HSC82"; transcript_biotype "protein_coding"; +chrXIII SGD exon 632355 634472 . + 0 transcript_id "YMR186W_id002"; gene_name "HSC82"; gene_id "YMR186W"; +chrXIII SGD gene 634467 636300 . - . gene_id "YMR187C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 634467 636300 . - . transcript_id "YMR187C_id001"; gene_id "YMR187C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 634467 636300 . - . transcript_id "YMR187C_id001"; gene_id "YMR187C"; +chrXIII SGD transcript 634689 635984 . - . transcript_id "YMR187C_id002"; gene_id "YMR187C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 634689 635984 . - 0 transcript_id "YMR187C_id002"; gene_id "YMR187C"; +chrXIII SGD gene 636162 637116 . - . gene_id "YMR188C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 636162 637116 . - . transcript_id "YMR188C_id003"; gene_id "YMR188C"; gene_name "MRPS17"; transcript_biotype "protein_coding"; +chrXIII SGD exon 636162 637116 . - . transcript_id "YMR188C_id003"; gene_id "YMR188C"; gene_name "MRPS17"; +chrXIII SGD transcript 636291 637004 . - . transcript_id "YMR188C_id001"; gene_id "YMR188C"; gene_name "MRPS17"; transcript_biotype "protein_coding"; +chrXIII SGD exon 636291 637004 . - 0 transcript_id "YMR188C_id001"; gene_name "MRPS17"; gene_id "YMR188C"; +chrXIII SGD gene 637338 640704 . + . gene_id "YMR189W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 637338 640704 . + . transcript_id "YMR189W_id002"; gene_id "YMR189W"; gene_name "GCV2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 637338 640704 . + . transcript_id "YMR189W_id002"; gene_id "YMR189W"; gene_name "GCV2"; +chrXIII SGD transcript 637500 640604 . + . transcript_id "YMR189W_id001"; gene_id "YMR189W"; gene_name "GCV2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 637500 640604 . + 0 transcript_id "YMR189W_id001"; gene_name "GCV2"; gene_id "YMR189W"; +chrXIII SGD gene 640915 645258 . - . gene_id "YMR190C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 640915 645258 . - . transcript_id "YMR190C_id001"; gene_id "YMR190C"; gene_name "SGS1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 640915 645258 . - 0 transcript_id "YMR190C_id001"; gene_name "SGS1"; gene_id "YMR190C"; +chrXIII SGD gene 645656 646777 . + . gene_id "YMR191W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 645656 646777 . + . transcript_id "YMR191W_mRNA"; gene_id "YMR191W"; gene_name "SPG5"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 645656 646777 . + 0 transcript_id "YMR191W_mRNA"; gene_name "SPG5"; gene_id "YMR191W"; +chrXIII SGD gene 647025 649445 . + . gene_id "YMR192W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 647025 649445 . + . transcript_id "YMR192W_id001"; gene_id "YMR192W"; gene_name "GYL1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 647025 649445 . + . transcript_id "YMR192W_id001"; gene_id "YMR192W"; gene_name "GYL1"; +chrXIII SGD transcript 647118 649280 . + . transcript_id "YMR192W_id002"; gene_id "YMR192W"; gene_name "GYL1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 647118 649280 . + 0 transcript_id "YMR192W_id002"; gene_name "GYL1"; gene_id "YMR192W"; +chrXIII SGD gene 650028 651313 . + . gene_id "YMR193W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 650028 651313 . + . transcript_id "YMR193W_id001"; gene_id "YMR193W"; gene_name "MRPL24"; transcript_biotype "protein_coding"; +chrXIII SGD exon 650028 651313 . + . transcript_id "YMR193W_id001"; gene_id "YMR193W"; gene_name "MRPL24"; +chrXIII SGD transcript 650036 650812 . + . transcript_id "YMR193W_id002"; gene_id "YMR193W"; gene_name "MRPL24"; transcript_biotype "protein_coding"; +chrXIII SGD exon 650036 650812 . + 0 transcript_id "YMR193W_id002"; gene_name "MRPL24"; gene_id "YMR193W"; +chrXIII SGD gene 650622 652010 . + . gene_id "YMR194W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 650622 652010 . + . transcript_id "YMR194W_id001"; gene_id "YMR194W"; gene_name "RPL36A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 650622 652010 . + . transcript_id "YMR194W_id001"; gene_id "YMR194W"; gene_name "RPL36A"; +chrXIII SGD gene 651072 651458 . - . gene_id "YMR193C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 651072 651458 . - . transcript_id "YMR193C-A_mRNA"; gene_id "YMR193C-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 651072 651458 . - 0 transcript_id "YMR193C-A_mRNA"; gene_id "YMR193C-A"; +chrXIII SGD transcript 651145 651910 . + . transcript_id "YMR194W_id003"; gene_id "YMR194W"; gene_name "RPL36A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 651145 651160 . + 0 transcript_id "YMR194W_id003"; gene_name "RPL36A"; gene_id "YMR194W"; +chrXIII SGD exon 651624 651910 . + 2 transcript_id "YMR194W_id003"; gene_name "RPL36A"; gene_id "YMR194W"; +chrXIII SGD gene 652275 652532 . + . gene_id "YNCM0031W"; gene_biotype "ncRNA"; +chrXIII SGD transcript 652275 652532 . + . transcript_id "YNCM0031W_snoRNA"; gene_id "YNCM0031W"; gene_name "SNR11"; transcript_biotype "ncRNA"; +chrXIII SGD exon 652275 652532 . + . transcript_id "YNCM0031W_snoRNA"; gene_name "SNR11"; gene_id "YNCM0031W"; +chrXIII SGD gene 652325 653085 . - . gene_id "YMR194C-B"; gene_biotype "protein_coding"; +chrXIII SGD transcript 652325 653085 . - . transcript_id "YMR194C-B_id003"; gene_id "YMR194C-B"; gene_name "CMC4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 652325 653085 . - . transcript_id "YMR194C-B_id003"; gene_id "YMR194C-B"; gene_name "CMC4"; +chrXIII SGD transcript 652594 652887 . - . transcript_id "YMR194C-B_id001"; gene_id "YMR194C-B"; gene_name "CMC4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 652594 652775 . - 2 transcript_id "YMR194C-B_id001"; gene_name "CMC4"; gene_id "YMR194C-B"; +chrXIII SGD exon 652848 652887 . - 0 transcript_id "YMR194C-B_id001"; gene_name "CMC4"; gene_id "YMR194C-B"; +chrXIII SGD gene 652803 653365 . - . gene_id "YMR194C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 652803 653365 . - . transcript_id "YMR194C-A_id001"; gene_id "YMR194C-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 652803 653365 . - . transcript_id "YMR194C-A_id001"; gene_id "YMR194C-A"; +chrXIII SGD transcript 652912 653136 . - . transcript_id "YMR194C-A_id004"; gene_id "YMR194C-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 652912 653136 . - 0 transcript_id "YMR194C-A_id004"; gene_id "YMR194C-A"; +chrXIII SGD gene 653942 654961 . + . gene_id "YMR195W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 653942 654961 . + . transcript_id "YMR195W_id002"; gene_id "YMR195W"; gene_name "ICY1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 653942 654961 . + . transcript_id "YMR195W_id002"; gene_id "YMR195W"; gene_name "ICY1"; +chrXIII SGD transcript 654034 654417 . + . transcript_id "YMR195W_id001"; gene_id "YMR195W"; gene_name "ICY1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 654034 654417 . + 0 transcript_id "YMR195W_id001"; gene_name "ICY1"; gene_id "YMR195W"; +chrXIII SGD gene 655059 658466 . + . gene_id "YMR196W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 655059 658466 . + . transcript_id "YMR196W_id007"; gene_id "YMR196W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 655059 658466 . + . transcript_id "YMR196W_id007"; gene_id "YMR196W"; +chrXIII SGD transcript 655076 658342 . + . transcript_id "YMR196W_id001"; gene_id "YMR196W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 655076 658342 . + 0 transcript_id "YMR196W_id001"; gene_id "YMR196W"; +chrXIII SGD gene 658324 659255 . - . gene_id "YMR197C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 658324 659255 . - . transcript_id "YMR197C_id004"; gene_id "YMR197C"; gene_name "VTI1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 658324 659255 . - . transcript_id "YMR197C_id004"; gene_id "YMR197C"; gene_name "VTI1"; +chrXIII SGD transcript 658545 659198 . - . transcript_id "YMR197C_id001"; gene_id "YMR197C"; gene_name "VTI1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 658545 659198 . - 0 transcript_id "YMR197C_id001"; gene_name "VTI1"; gene_id "YMR197C"; +chrXIII SGD gene 659459 661655 . + . gene_id "YMR198W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 659459 661655 . + . transcript_id "YMR198W_id004"; gene_id "YMR198W"; gene_name "CIK1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 659459 661655 . + . transcript_id "YMR198W_id004"; gene_id "YMR198W"; gene_name "CIK1"; +chrXIII SGD transcript 659745 661529 . + . transcript_id "YMR198W_id001"; gene_id "YMR198W"; gene_name "CIK1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 659745 661529 . + 0 transcript_id "YMR198W_id001"; gene_name "CIK1"; gene_id "YMR198W"; +chrXIII SGD gene 662431 664419 . + . gene_id "YMR199W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 662431 664419 . + . transcript_id "YMR199W_id002"; gene_id "YMR199W"; gene_name "CLN1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 662431 664419 . + . transcript_id "YMR199W_id002"; gene_id "YMR199W"; gene_name "CLN1"; +chrXIII SGD transcript 662644 664284 . + . transcript_id "YMR199W_id001"; gene_id "YMR199W"; gene_name "CLN1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 662644 664284 . + 0 transcript_id "YMR199W_id001"; gene_name "CLN1"; gene_id "YMR199W"; +chrXIII SGD gene 664611 665979 . + . gene_id "YMR200W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 664611 665979 . + . transcript_id "YMR200W_id002"; gene_id "YMR200W"; gene_name "ROT1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 664611 665979 . + . transcript_id "YMR200W_id002"; gene_id "YMR200W"; gene_name "ROT1"; +chrXIII SGD transcript 664752 665522 . + . transcript_id "YMR200W_id001"; gene_id "YMR200W"; gene_name "ROT1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 664752 665522 . + 0 transcript_id "YMR200W_id001"; gene_name "ROT1"; gene_id "YMR200W"; +chrXIII SGD gene 665573 667109 . - . gene_id "YMR201C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 665573 667109 . - . transcript_id "YMR201C_id006"; gene_id "YMR201C"; gene_name "RAD14"; transcript_biotype "protein_coding"; +chrXIII SGD exon 665573 667109 . - . transcript_id "YMR201C_id006"; gene_id "YMR201C"; gene_name "RAD14"; +chrXIII SGD transcript 665845 667044 . - . transcript_id "YMR201C_id001"; gene_id "YMR201C"; gene_name "RAD14"; transcript_biotype "protein_coding"; +chrXIII SGD exon 665845 666933 . - 0 transcript_id "YMR201C_id001"; gene_name "RAD14"; gene_id "YMR201C"; +chrXIII SGD exon 667018 667044 . - 0 transcript_id "YMR201C_id001"; gene_name "RAD14"; gene_id "YMR201C"; +chrXIII SGD gene 667288 667456 . - . gene_id "YNCM0032C"; gene_biotype "ncRNA"; +chrXIII SGD transcript 667288 667456 . - . transcript_id "YNCM0032C_ncRNA"; gene_id "YNCM0032C"; gene_name "RNA170"; transcript_biotype "ncRNA"; +chrXIII SGD exon 667288 667456 . - . transcript_id "YNCM0032C_ncRNA"; gene_name "RNA170"; gene_id "YNCM0032C"; +chrXIII SGD gene 667466 668289 . + . gene_id "YMR202W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 667466 668289 . + . transcript_id "YMR202W_id001"; gene_id "YMR202W"; gene_name "ERG2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 667466 668289 . + . transcript_id "YMR202W_id001"; gene_id "YMR202W"; gene_name "ERG2"; +chrXIII SGD transcript 667537 668205 . + . transcript_id "YMR202W_id004"; gene_id "YMR202W"; gene_name "ERG2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 667537 668205 . + 0 transcript_id "YMR202W_id004"; gene_name "ERG2"; gene_id "YMR202W"; +chrXIII SGD gene 668427 670012 . + . gene_id "YMR203W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 668427 670012 . + . transcript_id "YMR203W_id001"; gene_id "YMR203W"; gene_name "TOM40"; transcript_biotype "protein_coding"; +chrXIII SGD exon 668427 670012 . + . transcript_id "YMR203W_id001"; gene_id "YMR203W"; gene_name "TOM40"; +chrXIII SGD transcript 668492 669655 . + . transcript_id "YMR203W_id002"; gene_id "YMR203W"; gene_name "TOM40"; transcript_biotype "protein_coding"; +chrXIII SGD exon 668492 669655 . + 0 transcript_id "YMR203W_id002"; gene_name "TOM40"; gene_id "YMR203W"; +chrXIII SGD gene 669704 671370 . - . gene_id "YMR204C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 669704 671370 . - . transcript_id "YMR204C_id001"; gene_id "YMR204C"; gene_name "INP1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 669704 671370 . - . transcript_id "YMR204C_id001"; gene_id "YMR204C"; gene_name "INP1"; +chrXIII SGD transcript 670063 671325 . - . transcript_id "YMR204C_id002"; gene_id "YMR204C"; gene_name "INP1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 670063 671325 . - 0 transcript_id "YMR204C_id002"; gene_name "INP1"; gene_id "YMR204C"; +chrXIII SGD gene 671558 674924 . - . gene_id "YMR205C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 671558 674924 . - . transcript_id "YMR205C_id001"; gene_id "YMR205C"; gene_name "PFK2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 671558 674924 . - . transcript_id "YMR205C_id001"; gene_id "YMR205C"; gene_name "PFK2"; +chrXIII SGD transcript 671887 674766 . - . transcript_id "YMR205C_id002"; gene_id "YMR205C"; gene_name "PFK2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 671887 674766 . - 0 transcript_id "YMR205C_id002"; gene_name "PFK2"; gene_id "YMR205C"; +chrXIII SGD gene 675896 676837 . + . gene_id "YMR206W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 675896 676837 . + . transcript_id "YMR206W_id001"; gene_id "YMR206W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 675896 676837 . + 0 transcript_id "YMR206W_id001"; gene_id "YMR206W"; +chrXIII SGD gene 677193 683564 . - . gene_id "YMR207C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 677193 683564 . - . transcript_id "YMR207C_mRNA"; gene_id "YMR207C"; gene_name "HFA1"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 677193 683564 . - 0 transcript_id "YMR207C_mRNA"; gene_name "HFA1"; gene_id "YMR207C"; +chrXIII SGD gene 684387 685907 . + . gene_id "YMR208W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 684387 685907 . + . transcript_id "YMR208W_id005"; gene_id "YMR208W"; gene_name "ERG12"; transcript_biotype "protein_coding"; +chrXIII SGD exon 684387 685907 . + . transcript_id "YMR208W_id005"; gene_id "YMR208W"; gene_name "ERG12"; +chrXIII SGD transcript 684467 685798 . + . transcript_id "YMR208W_id001"; gene_id "YMR208W"; gene_name "ERG12"; transcript_biotype "protein_coding"; +chrXIII SGD exon 684467 685798 . + 0 transcript_id "YMR208W_id001"; gene_name "ERG12"; gene_id "YMR208W"; +chrXIII SGD gene 685721 687317 . - . gene_id "YMR209C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 685721 687317 . - . transcript_id "YMR209C_id001"; gene_id "YMR209C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 685721 687317 . - . transcript_id "YMR209C_id001"; gene_id "YMR209C"; +chrXIII SGD transcript 685911 687284 . - . transcript_id "YMR209C_id004"; gene_id "YMR209C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 685911 687284 . - 0 transcript_id "YMR209C_id004"; gene_id "YMR209C"; +chrXIII SGD gene 687457 688963 . + . gene_id "YMR210W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 687457 688963 . + . transcript_id "YMR210W_id002"; gene_id "YMR210W"; gene_name "MGL2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 687457 688963 . + . transcript_id "YMR210W_id002"; gene_id "YMR210W"; gene_name "MGL2"; +chrXIII SGD transcript 687516 688865 . + . transcript_id "YMR210W_id001"; gene_id "YMR210W"; gene_name "MGL2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 687516 688865 . + 0 transcript_id "YMR210W_id001"; gene_name "MGL2"; gene_id "YMR210W"; +chrXIII SGD gene 689029 690649 . + . gene_id "YMR211W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 689029 690649 . + . transcript_id "YMR211W_id005"; gene_id "YMR211W"; gene_name "DML1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 689029 690649 . + . transcript_id "YMR211W_id005"; gene_id "YMR211W"; gene_name "DML1"; +chrXIII SGD transcript 689083 690510 . + . transcript_id "YMR211W_id001"; gene_id "YMR211W"; gene_name "DML1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 689083 690510 . + 0 transcript_id "YMR211W_id001"; gene_name "DML1"; gene_id "YMR211W"; +chrXIII SGD gene 690548 693185 . - . gene_id "YMR212C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 690548 693185 . - . transcript_id "YMR212C_id005"; gene_id "YMR212C"; gene_name "EFR3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 690548 693185 . - . transcript_id "YMR212C_id005"; gene_id "YMR212C"; gene_name "EFR3"; +chrXIII SGD transcript 690695 693043 . - . transcript_id "YMR212C_id001"; gene_id "YMR212C"; gene_name "EFR3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 690695 693043 . - 0 transcript_id "YMR212C_id001"; gene_name "EFR3"; gene_id "YMR212C"; +chrXIII SGD gene 693314 695213 . + . gene_id "YMR213W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 693314 695213 . + . transcript_id "YMR213W_id002"; gene_id "YMR213W"; gene_name "CEF1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 693314 695213 . + . transcript_id "YMR213W_id002"; gene_id "YMR213W"; gene_name "CEF1"; +chrXIII SGD transcript 693381 695153 . + . transcript_id "YMR213W_id001"; gene_id "YMR213W"; gene_name "CEF1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 693381 695153 . + 0 transcript_id "YMR213W_id001"; gene_name "CEF1"; gene_id "YMR213W"; +chrXIII SGD gene 695320 696739 . + . gene_id "YMR214W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 695320 696739 . + . transcript_id "YMR214W_id003"; gene_id "YMR214W"; gene_name "SCJ1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 695320 696739 . + . transcript_id "YMR214W_id003"; gene_id "YMR214W"; gene_name "SCJ1"; +chrXIII SGD transcript 695350 696483 . + . transcript_id "YMR214W_id001"; gene_id "YMR214W"; gene_name "SCJ1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 695350 696483 . + 0 transcript_id "YMR214W_id001"; gene_name "SCJ1"; gene_id "YMR214W"; +chrXIII SGD gene 696733 698593 . + . gene_id "YMR215W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 696733 698593 . + . transcript_id "YMR215W_id002"; gene_id "YMR215W"; gene_name "GAS3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 696733 698593 . + . transcript_id "YMR215W_id002"; gene_id "YMR215W"; gene_name "GAS3"; +chrXIII SGD transcript 696796 698370 . + . transcript_id "YMR215W_id001"; gene_id "YMR215W"; gene_name "GAS3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 696796 698370 . + 0 transcript_id "YMR215W_id001"; gene_name "GAS3"; gene_id "YMR215W"; +chrXIII SGD gene 698412 701217 . - . gene_id "YMR216C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 698412 701217 . - . transcript_id "YMR216C_id001"; gene_id "YMR216C"; gene_name "SKY1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 698412 701217 . - . transcript_id "YMR216C_id001"; gene_id "YMR216C"; gene_name "SKY1"; +chrXIII SGD transcript 698811 701039 . - . transcript_id "YMR216C_id002"; gene_id "YMR216C"; gene_name "SKY1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 698811 701039 . - 0 transcript_id "YMR216C_id002"; gene_name "SKY1"; gene_id "YMR216C"; +chrXIII SGD gene 701756 703599 . + . gene_id "YMR217W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 701756 703599 . + . transcript_id "YMR217W_id001"; gene_id "YMR217W"; gene_name "GUA1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 701756 703599 . + . transcript_id "YMR217W_id001"; gene_id "YMR217W"; gene_name "GUA1"; +chrXIII SGD transcript 701790 703367 . + . transcript_id "YMR217W_id003"; gene_id "YMR217W"; gene_name "GUA1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 701790 703367 . + 0 transcript_id "YMR217W_id003"; gene_name "GUA1"; gene_id "YMR217W"; +chrXIII SGD gene 703579 706887 . - . gene_id "YMR218C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 703579 706887 . - . transcript_id "YMR218C_id001"; gene_id "YMR218C"; gene_name "TRS130"; transcript_biotype "protein_coding"; +chrXIII SGD exon 703579 706887 . - 0 transcript_id "YMR218C_id001"; gene_name "TRS130"; gene_id "YMR218C"; +chrXIII SGD gene 707133 712109 . + . gene_id "YMR219W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 707133 712109 . + . transcript_id "YMR219W_mRNA"; gene_id "YMR219W"; gene_name "ESC1"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 707133 712109 . + 0 transcript_id "YMR219W_mRNA"; gene_name "ESC1"; gene_id "YMR219W"; +chrXIII SGD gene 712239 713920 . + . gene_id "YMR220W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 712239 713920 . + . transcript_id "YMR220W_id001"; gene_id "YMR220W"; gene_name "ERG8"; transcript_biotype "protein_coding"; +chrXIII SGD exon 712239 713920 . + . transcript_id "YMR220W_id001"; gene_id "YMR220W"; gene_name "ERG8"; +chrXIII SGD transcript 712316 713671 . + . transcript_id "YMR220W_id002"; gene_id "YMR220W"; gene_name "ERG8"; transcript_biotype "protein_coding"; +chrXIII SGD exon 712316 713671 . + 0 transcript_id "YMR220W_id002"; gene_name "ERG8"; gene_id "YMR220W"; +chrXIII SGD gene 713786 715484 . - . gene_id "YMR221C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 713786 715484 . - . transcript_id "YMR221C_id001"; gene_id "YMR221C"; gene_name "FMP42"; transcript_biotype "protein_coding"; +chrXIII SGD exon 713786 715484 . - . transcript_id "YMR221C_id001"; gene_id "YMR221C"; gene_name "FMP42"; +chrXIII SGD transcript 713931 715445 . - . transcript_id "YMR221C_id002"; gene_id "YMR221C"; gene_name "FMP42"; transcript_biotype "protein_coding"; +chrXIII SGD exon 713931 715445 . - 0 transcript_id "YMR221C_id002"; gene_name "FMP42"; gene_id "YMR221C"; +chrXIII SGD gene 715532 716366 . - . gene_id "YMR222C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 715532 716366 . - . transcript_id "YMR222C_id003"; gene_id "YMR222C"; gene_name "FSH2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 715532 716366 . - . transcript_id "YMR222C_id003"; gene_id "YMR222C"; gene_name "FSH2"; +chrXIII SGD transcript 715638 716309 . - . transcript_id "YMR222C_id001"; gene_id "YMR222C"; gene_name "FSH2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 715638 716309 . - 0 transcript_id "YMR222C_id001"; gene_name "FSH2"; gene_id "YMR222C"; +chrXIII SGD gene 716495 718572 . + . gene_id "YMR223W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 716495 718572 . + . transcript_id "YMR223W_id002"; gene_id "YMR223W"; gene_name "UBP8"; transcript_biotype "protein_coding"; +chrXIII SGD exon 716495 718572 . + . transcript_id "YMR223W_id002"; gene_id "YMR223W"; gene_name "UBP8"; +chrXIII SGD transcript 716715 718130 . + . transcript_id "YMR223W_id001"; gene_id "YMR223W"; gene_name "UBP8"; transcript_biotype "protein_coding"; +chrXIII SGD exon 716715 718130 . + 0 transcript_id "YMR223W_id001"; gene_name "UBP8"; gene_id "YMR223W"; +chrXIII SGD gene 718338 720703 . - . gene_id "YMR224C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 718338 720703 . - . transcript_id "YMR224C_id002"; gene_id "YMR224C"; gene_name "MRE11"; transcript_biotype "protein_coding"; +chrXIII SGD exon 718338 720703 . - . transcript_id "YMR224C_id002"; gene_id "YMR224C"; gene_name "MRE11"; +chrXIII SGD transcript 718575 720653 . - . transcript_id "YMR224C_id001"; gene_id "YMR224C"; gene_name "MRE11"; transcript_biotype "protein_coding"; +chrXIII SGD exon 718575 720653 . - 0 transcript_id "YMR224C_id001"; gene_name "MRE11"; gene_id "YMR224C"; +chrXIII SGD gene 720722 721438 . - . gene_id "YMR225C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 720722 721438 . - . transcript_id "YMR225C_id002"; gene_id "YMR225C"; gene_name "MRPL44"; transcript_biotype "protein_coding"; +chrXIII SGD exon 720722 721438 . - . transcript_id "YMR225C_id002"; gene_id "YMR225C"; gene_name "MRPL44"; +chrXIII SGD transcript 720960 721403 . - . transcript_id "YMR225C_id001"; gene_id "YMR225C"; gene_name "MRPL44"; transcript_biotype "protein_coding"; +chrXIII SGD exon 720960 721198 . - 2 transcript_id "YMR225C_id001"; gene_name "MRPL44"; gene_id "YMR225C"; +chrXIII SGD exon 721346 721403 . - 0 transcript_id "YMR225C_id001"; gene_name "MRPL44"; gene_id "YMR225C"; +chrXIII SGD gene 721532 723328 . - . gene_id "YMR226C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 721532 723328 . - . transcript_id "YMR226C_id001"; gene_id "YMR226C"; gene_name "ORA1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 721532 723328 . - . transcript_id "YMR226C_id001"; gene_id "YMR226C"; gene_name "ORA1"; +chrXIII SGD transcript 721593 722396 . - . transcript_id "YMR226C_id002"; gene_id "YMR226C"; gene_name "ORA1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 721593 722396 . - 0 transcript_id "YMR226C_id002"; gene_name "ORA1"; gene_id "YMR226C"; +chrXIII SGD gene 722501 724438 . - . gene_id "YMR227C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 722501 724438 . - . transcript_id "YMR227C_id002"; gene_id "YMR227C"; gene_name "TAF7"; transcript_biotype "protein_coding"; +chrXIII SGD exon 722501 724438 . - . transcript_id "YMR227C_id002"; gene_id "YMR227C"; gene_name "TAF7"; +chrXIII SGD transcript 722613 724385 . - . transcript_id "YMR227C_id001"; gene_id "YMR227C"; gene_name "TAF7"; transcript_biotype "protein_coding"; +chrXIII SGD exon 722613 724385 . - 0 transcript_id "YMR227C_id001"; gene_name "TAF7"; gene_id "YMR227C"; +chrXIII SGD gene 724582 725783 . + . gene_id "YMR228W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 724582 725783 . + . transcript_id "YMR228W_id002"; gene_id "YMR228W"; gene_name "MTF1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 724582 725783 . + . transcript_id "YMR228W_id002"; gene_id "YMR228W"; gene_name "MTF1"; +chrXIII SGD transcript 724626 725651 . + . transcript_id "YMR228W_id001"; gene_id "YMR228W"; gene_name "MTF1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 724626 725651 . + 0 transcript_id "YMR228W_id001"; gene_name "MTF1"; gene_id "YMR228W"; +chrXIII SGD gene 725934 731123 . - . gene_id "YMR229C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 725934 731123 . - . transcript_id "YMR229C_mRNA"; gene_id "YMR229C"; gene_name "RRP5"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 725934 731123 . - 0 transcript_id "YMR229C_mRNA"; gene_name "RRP5"; gene_id "YMR229C"; +chrXIII SGD gene 732361 733442 . + . gene_id "YMR230W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 732361 733442 . + . transcript_id "YMR230W_id002"; gene_id "YMR230W"; gene_name "RPS10B"; transcript_biotype "protein_coding"; +chrXIII SGD exon 732361 733442 . + . transcript_id "YMR230W_id002"; gene_id "YMR230W"; gene_name "RPS10B"; +chrXIII SGD transcript 732414 733141 . + . transcript_id "YMR230W_id001"; gene_id "YMR230W"; gene_name "RPS10B"; transcript_biotype "protein_coding"; +chrXIII SGD exon 732414 732465 . + 0 transcript_id "YMR230W_id001"; gene_name "RPS10B"; gene_id "YMR230W"; +chrXIII SGD exon 732876 733141 . + 2 transcript_id "YMR230W_id001"; gene_name "RPS10B"; gene_id "YMR230W"; +chrXIII SGD gene 733268 733456 . + . gene_id "YMR230W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 733268 733456 . + . transcript_id "YMR230W-A_mRNA"; gene_id "YMR230W-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 733268 733456 . + 0 transcript_id "YMR230W-A_mRNA"; gene_id "YMR230W-A"; +chrXIII SGD gene 733493 736822 . + . gene_id "YMR231W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 733493 736822 . + . transcript_id "YMR231W_id001"; gene_id "YMR231W"; gene_name "PEP5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 733493 736822 . + . transcript_id "YMR231W_id001"; gene_id "YMR231W"; gene_name "PEP5"; +chrXIII SGD transcript 733545 736634 . + . transcript_id "YMR231W_id002"; gene_id "YMR231W"; gene_name "PEP5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 733545 736634 . + 0 transcript_id "YMR231W_id002"; gene_name "PEP5"; gene_id "YMR231W"; +chrXIII SGD gene 736926 738959 . + . gene_id "YMR232W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 736926 738959 . + . transcript_id "YMR232W_mRNA"; gene_id "YMR232W"; gene_name "FUS2"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 736926 738959 . + 0 transcript_id "YMR232W_mRNA"; gene_name "FUS2"; gene_id "YMR232W"; +chrXIII SGD gene 739185 739865 . + . gene_id "YMR233W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 739185 739865 . + . transcript_id "YMR233W_id001"; gene_id "YMR233W"; gene_name "TRI1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 739185 739865 . + 0 transcript_id "YMR233W_id001"; gene_name "TRI1"; gene_id "YMR233W"; +chrXIII SGD gene 740174 741475 . + . gene_id "YMR234W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 740174 741475 . + . transcript_id "YMR234W_id003"; gene_id "YMR234W"; gene_name "RNH1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 740174 741475 . + . transcript_id "YMR234W_id003"; gene_id "YMR234W"; gene_name "RNH1"; +chrXIII SGD transcript 740266 741312 . + . transcript_id "YMR234W_id001"; gene_id "YMR234W"; gene_name "RNH1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 740266 741312 . + 0 transcript_id "YMR234W_id001"; gene_name "RNH1"; gene_id "YMR234W"; +chrXIII SGD gene 741288 742777 . - . gene_id "YMR235C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 741288 742777 . - . transcript_id "YMR235C_id001"; gene_id "YMR235C"; gene_name "RNA1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 741288 742777 . - . transcript_id "YMR235C_id001"; gene_id "YMR235C"; gene_name "RNA1"; +chrXIII SGD transcript 741512 742735 . - . transcript_id "YMR235C_id002"; gene_id "YMR235C"; gene_name "RNA1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 741512 742735 . - 0 transcript_id "YMR235C_id002"; gene_name "RNA1"; gene_id "YMR235C"; +chrXIII SGD gene 742951 743897 . + . gene_id "YMR236W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 742951 743897 . + . transcript_id "YMR236W_id001"; gene_id "YMR236W"; gene_name "TAF9"; transcript_biotype "protein_coding"; +chrXIII SGD exon 742951 743897 . + . transcript_id "YMR236W_id001"; gene_id "YMR236W"; gene_name "TAF9"; +chrXIII SGD transcript 742971 743444 . + . transcript_id "YMR236W_id002"; gene_id "YMR236W"; gene_name "TAF9"; transcript_biotype "protein_coding"; +chrXIII SGD exon 742971 743444 . + 0 transcript_id "YMR236W_id002"; gene_name "TAF9"; gene_id "YMR236W"; +chrXIII SGD gene 743641 746107 . + . gene_id "YMR237W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 743641 746107 . + . transcript_id "YMR237W_id001"; gene_id "YMR237W"; gene_name "BCH1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 743641 746107 . + . transcript_id "YMR237W_id001"; gene_id "YMR237W"; gene_name "BCH1"; +chrXIII SGD transcript 743749 745923 . + . transcript_id "YMR237W_id002"; gene_id "YMR237W"; gene_name "BCH1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 743749 745923 . + 0 transcript_id "YMR237W_id002"; gene_name "BCH1"; gene_id "YMR237W"; +chrXIII SGD gene 746219 747860 . + . gene_id "YMR238W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 746219 747860 . + . transcript_id "YMR238W_id003"; gene_id "YMR238W"; gene_name "DFG5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 746219 747860 . + . transcript_id "YMR238W_id003"; gene_id "YMR238W"; gene_name "DFG5"; +chrXIII SGD transcript 746353 747729 . + . transcript_id "YMR238W_id001"; gene_id "YMR238W"; gene_name "DFG5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 746353 747729 . + 0 transcript_id "YMR238W_id001"; gene_name "DFG5"; gene_id "YMR238W"; +chrXIII SGD gene 747892 747963 . - . gene_id "YNCM0033C"; gene_biotype "ncRNA"; +chrXIII SGD transcript 747892 747963 . - . transcript_id "YNCM0033C_tRNA"; gene_id "YNCM0033C"; transcript_biotype "ncRNA"; +chrXIII SGD exon 747892 747963 . - . transcript_id "YNCM0033C_tRNA"; gene_id "YNCM0033C"; +chrXIII SGD gene 748113 749770 . - . gene_id "YMR239C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 748113 749770 . - . transcript_id "YMR239C_id002"; gene_id "YMR239C"; gene_name "RNT1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 748113 749770 . - . transcript_id "YMR239C_id002"; gene_id "YMR239C"; gene_name "RNT1"; +chrXIII SGD transcript 748262 749677 . - . transcript_id "YMR239C_id001"; gene_id "YMR239C"; gene_name "RNT1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 748262 749677 . - 0 transcript_id "YMR239C_id001"; gene_name "RNT1"; gene_id "YMR239C"; +chrXIII SGD gene 749878 751652 . - . gene_id "YMR240C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 749878 751652 . - . transcript_id "YMR240C_id001"; gene_id "YMR240C"; gene_name "CUS1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 749878 751652 . - . transcript_id "YMR240C_id001"; gene_id "YMR240C"; gene_name "CUS1"; +chrXIII SGD transcript 749930 751240 . - . transcript_id "YMR240C_id004"; gene_id "YMR240C"; gene_name "CUS1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 749930 751240 . - 0 transcript_id "YMR240C_id004"; gene_name "CUS1"; gene_id "YMR240C"; +chrXIII SGD gene 751748 753186 . + . gene_id "YMR241W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 751748 753186 . + . transcript_id "YMR241W_id003"; gene_id "YMR241W"; gene_name "YHM2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 751748 753186 . + . transcript_id "YMR241W_id003"; gene_id "YMR241W"; gene_name "YHM2"; +chrXIII SGD transcript 751961 752905 . + . transcript_id "YMR241W_id001"; gene_id "YMR241W"; gene_name "YHM2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 751961 752905 . + 0 transcript_id "YMR241W_id001"; gene_name "YHM2"; gene_id "YMR241W"; +chrXIII SGD gene 753121 754483 . - . gene_id "YMR242C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 753121 754483 . - . transcript_id "YMR242C_id001"; gene_id "YMR242C"; gene_name "RPL20A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 753121 754483 . - . transcript_id "YMR242C_id001"; gene_id "YMR242C"; gene_name "RPL20A"; +chrXIII SGD transcript 753225 754220 . - . transcript_id "YMR242C_id002"; gene_id "YMR242C"; gene_name "RPL20A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 753225 753742 . - 2 transcript_id "YMR242C_id002"; gene_name "RPL20A"; gene_id "YMR242C"; +chrXIII SGD exon 754220 754220 . - 0 transcript_id "YMR242C_id002"; gene_name "RPL20A"; gene_id "YMR242C"; +chrXIII SGD gene 754245 758328 . - . gene_id "YMR243C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 754245 758328 . - . transcript_id "YMR243C_id001"; gene_id "YMR243C"; gene_name "ZRC1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 754245 758328 . - . transcript_id "YMR243C_id001"; gene_id "YMR243C"; gene_name "ZRC1"; +chrXIII SGD gene 754297 754386 . + . gene_id "YMR242W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 754297 754386 . + . transcript_id "YMR242W-A_mRNA"; gene_id "YMR242W-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 754297 754386 . + 0 transcript_id "YMR242W-A_mRNA"; gene_id "YMR242W-A"; +chrXIII SGD transcript 754838 756166 . - . transcript_id "YMR243C_id006"; gene_id "YMR243C"; gene_name "ZRC1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 754838 756166 . - 0 transcript_id "YMR243C_id006"; gene_name "ZRC1"; gene_id "YMR243C"; +chrXIII SGD gene 757250 758317 . + . gene_id "YMR244W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 757250 758317 . + . transcript_id "YMR244W_mRNA"; gene_id "YMR244W"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 757250 758317 . + 0 transcript_id "YMR244W_mRNA"; gene_id "YMR244W"; +chrXIII SGD gene 758329 759319 . - . gene_id "YMR244C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 758329 759319 . - . transcript_id "YMR244C-A_id001"; gene_id "YMR244C-A"; gene_name "COA6"; transcript_biotype "protein_coding"; +chrXIII SGD exon 758329 759319 . - . transcript_id "YMR244C-A_id001"; gene_id "YMR244C-A"; gene_name "COA6"; +chrXIII SGD transcript 758517 758831 . - . transcript_id "YMR244C-A_id002"; gene_id "YMR244C-A"; gene_name "COA6"; transcript_biotype "protein_coding"; +chrXIII SGD exon 758517 758831 . - 0 transcript_id "YMR244C-A_id002"; gene_name "COA6"; gene_id "YMR244C-A"; +chrXIII SGD gene 758563 759183 . + . gene_id "YMR245W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 758563 759183 . + . transcript_id "YMR245W_mRNA"; gene_id "YMR245W"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 758563 759183 . + 0 transcript_id "YMR245W_mRNA"; gene_id "YMR245W"; +chrXIII SGD gene 759199 762076 . + . gene_id "YMR246W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 759199 762076 . + . transcript_id "YMR246W_id001"; gene_id "YMR246W"; gene_name "FAA4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 759199 762076 . + . transcript_id "YMR246W_id001"; gene_id "YMR246W"; gene_name "FAA4"; +chrXIII SGD transcript 759807 761891 . + . transcript_id "YMR246W_id003"; gene_id "YMR246W"; gene_name "FAA4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 759807 761891 . + 0 transcript_id "YMR246W_id003"; gene_name "FAA4"; gene_id "YMR246W"; +chrXIII SGD gene 762110 763113 . - . gene_id "YNCM0034C"; gene_biotype "ncRNA"; +chrXIII SGD transcript 762110 763113 . - . transcript_id "YNCM0034C_snoRNA"; gene_id "YNCM0034C"; gene_name "SNR86"; transcript_biotype "ncRNA"; +chrXIII SGD exon 762110 763113 . - . transcript_id "YNCM0034C_snoRNA"; gene_name "SNR86"; gene_id "YNCM0034C"; +chrXIII SGD gene 763351 768039 . - . gene_id "YMR247C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 763351 768039 . - . transcript_id "YMR247C_mRNA"; gene_id "YMR247C"; gene_name "RKR1"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 763351 768039 . - 0 transcript_id "YMR247C_mRNA"; gene_name "RKR1"; gene_id "YMR247C"; +chrXIII SGD gene 768369 768441 . - . gene_id "YNCM0035C"; gene_biotype "ncRNA"; +chrXIII SGD transcript 768369 768441 . - . transcript_id "YNCM0035C_tRNA"; gene_id "YNCM0035C"; transcript_biotype "ncRNA"; +chrXIII SGD exon 768369 768441 . - . transcript_id "YNCM0035C_tRNA"; gene_id "YNCM0035C"; +chrXIII SGD gene 769283 769426 . + . gene_id "YMR247W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 769283 769426 . + . transcript_id "YMR247W-A_mRNA"; gene_id "YMR247W-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 769283 769426 . + 0 transcript_id "YMR247W-A_mRNA"; gene_id "YMR247W-A"; +chrXIII SGD gene 770801 772558 . + . gene_id "YMR250W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 770801 772558 . + . transcript_id "YMR250W_id001"; gene_id "YMR250W"; gene_name "GAD1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 770801 772558 . + 0 transcript_id "YMR250W_id001"; gene_name "GAD1"; gene_id "YMR250W"; +chrXIII SGD gene 772915 774015 . + . gene_id "YMR251W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 772915 774015 . + . transcript_id "YMR251W_mRNA"; gene_id "YMR251W"; gene_name "GTO3"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 772915 774015 . + 0 transcript_id "YMR251W_mRNA"; gene_name "GTO3"; gene_id "YMR251W"; +chrXIII SGD gene 774068 775222 . + . gene_id "YMR251W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 774068 775222 . + . transcript_id "YMR251W-A_id015"; gene_id "YMR251W-A"; gene_name "HOR7"; transcript_biotype "protein_coding"; +chrXIII SGD exon 774068 775222 . + . transcript_id "YMR251W-A_id015"; gene_id "YMR251W-A"; gene_name "HOR7"; +chrXIII SGD transcript 774752 774931 . + . transcript_id "YMR251W-A_id001"; gene_id "YMR251W-A"; gene_name "HOR7"; transcript_biotype "protein_coding"; +chrXIII SGD exon 774752 774931 . + 0 transcript_id "YMR251W-A_id001"; gene_name "HOR7"; gene_id "YMR251W-A"; +chrXIII SGD gene 775133 777148 . - . gene_id "YMR252C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 775133 777148 . - . transcript_id "YMR252C_id001"; gene_id "YMR252C"; gene_name "MLO1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 775133 777148 . - . transcript_id "YMR252C_id001"; gene_id "YMR252C"; gene_name "MLO1"; +chrXIII SGD transcript 775315 775719 . - . transcript_id "YMR252C_id002"; gene_id "YMR252C"; gene_name "MLO1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 775315 775719 . - 0 transcript_id "YMR252C_id002"; gene_name "MLO1"; gene_id "YMR252C"; +chrXIII SGD gene 775946 777190 . - . gene_id "YMR253C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 775946 777190 . - . transcript_id "YMR253C_id001"; gene_id "YMR253C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 775946 777190 . - 0 transcript_id "YMR253C_id001"; gene_id "YMR253C"; +chrXIII SGD gene 777568 778843 . + . gene_id "YMR255W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 777568 778843 . + . transcript_id "YMR255W_id001"; gene_id "YMR255W"; gene_name "GFD1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 777568 778843 . + . transcript_id "YMR255W_id001"; gene_id "YMR255W"; gene_name "GFD1"; +chrXIII SGD gene 777615 777923 . - . gene_id "YMR254C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 777615 777923 . - . transcript_id "YMR254C_mRNA"; gene_id "YMR254C"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 777615 777923 . - 0 transcript_id "YMR254C_mRNA"; gene_id "YMR254C"; +chrXIII SGD transcript 778001 778567 . + . transcript_id "YMR255W_id002"; gene_id "YMR255W"; gene_name "GFD1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 778001 778567 . + 0 transcript_id "YMR255W_id002"; gene_name "GFD1"; gene_id "YMR255W"; +chrXIII SGD gene 778604 779165 . - . gene_id "YMR256C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 778604 779165 . - . transcript_id "YMR256C_id001"; gene_id "YMR256C"; gene_name "COX7"; transcript_biotype "protein_coding"; +chrXIII SGD exon 778604 779165 . - . transcript_id "YMR256C_id001"; gene_id "YMR256C"; gene_name "COX7"; +chrXIII SGD transcript 778945 779127 . - . transcript_id "YMR256C_id002"; gene_id "YMR256C"; gene_name "COX7"; transcript_biotype "protein_coding"; +chrXIII SGD exon 778945 779127 . - 0 transcript_id "YMR256C_id002"; gene_name "COX7"; gene_id "YMR256C"; +chrXIII SGD gene 779427 782419 . - . gene_id "YMR257C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 779427 782419 . - . transcript_id "YMR257C_id004"; gene_id "YMR257C"; gene_name "PET111"; transcript_biotype "protein_coding"; +chrXIII SGD exon 779427 782419 . - . transcript_id "YMR257C_id004"; gene_id "YMR257C"; gene_name "PET111"; +chrXIII SGD transcript 779629 782031 . - . transcript_id "YMR257C_id001"; gene_id "YMR257C"; gene_name "PET111"; transcript_biotype "protein_coding"; +chrXIII SGD exon 779629 782031 . - 0 transcript_id "YMR257C_id001"; gene_name "PET111"; gene_id "YMR257C"; +chrXIII SGD gene 782532 784348 . - . gene_id "YMR258C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 782532 784348 . - . transcript_id "YMR258C_id003"; gene_id "YMR258C"; gene_name "ROY1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 782532 784348 . - . transcript_id "YMR258C_id003"; gene_id "YMR258C"; gene_name "ROY1"; +chrXIII SGD transcript 782620 784281 . - . transcript_id "YMR258C_id001"; gene_id "YMR258C"; gene_name "ROY1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 782620 784281 . - 0 transcript_id "YMR258C_id001"; gene_name "ROY1"; gene_id "YMR258C"; +chrXIII SGD gene 784621 788883 . - . gene_id "YMR259C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 784621 788883 . - . transcript_id "YMR259C_id001"; gene_id "YMR259C"; gene_name "TRM732"; transcript_biotype "protein_coding"; +chrXIII SGD exon 784621 788883 . - 0 transcript_id "YMR259C_id001"; gene_name "TRM732"; gene_id "YMR259C"; +chrXIII SGD gene 789066 789864 . - . gene_id "YMR260C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 789066 789864 . - . transcript_id "YMR260C_id002"; gene_id "YMR260C"; gene_name "TIF11"; transcript_biotype "protein_coding"; +chrXIII SGD exon 789066 789864 . - . transcript_id "YMR260C_id002"; gene_id "YMR260C"; gene_name "TIF11"; +chrXIII SGD transcript 789378 789839 . - . transcript_id "YMR260C_id001"; gene_id "YMR260C"; gene_name "TIF11"; transcript_biotype "protein_coding"; +chrXIII SGD exon 789378 789839 . - 0 transcript_id "YMR260C_id001"; gene_name "TIF11"; gene_id "YMR260C"; +chrXIII SGD gene 790060 793539 . - . gene_id "YMR261C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 790060 793539 . - . transcript_id "YMR261C_id002"; gene_id "YMR261C"; gene_name "TPS3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 790060 793539 . - . transcript_id "YMR261C_id002"; gene_id "YMR261C"; gene_name "TPS3"; +chrXIII SGD transcript 790205 793369 . - . transcript_id "YMR261C_id001"; gene_id "YMR261C"; gene_name "TPS3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 790205 793369 . - 0 transcript_id "YMR261C_id001"; gene_name "TPS3"; gene_id "YMR261C"; +chrXIII SGD gene 793686 794938 . + . gene_id "YMR262W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 793686 794938 . + . transcript_id "YMR262W_id005"; gene_id "YMR262W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 793686 794938 . + . transcript_id "YMR262W_id005"; gene_id "YMR262W"; +chrXIII SGD transcript 793726 794667 . + . transcript_id "YMR262W_id001"; gene_id "YMR262W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 793726 794667 . + 0 transcript_id "YMR262W_id001"; gene_id "YMR262W"; +chrXIII SGD gene 794869 795694 . + . gene_id "YMR263W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 794869 795694 . + . transcript_id "YMR263W_id005"; gene_id "YMR263W"; gene_name "SAP30"; transcript_biotype "protein_coding"; +chrXIII SGD exon 794869 795694 . + . transcript_id "YMR263W_id005"; gene_id "YMR263W"; gene_name "SAP30"; +chrXIII SGD transcript 794919 795524 . + . transcript_id "YMR263W_id001"; gene_id "YMR263W"; gene_name "SAP30"; transcript_biotype "protein_coding"; +chrXIII SGD exon 794919 795524 . + 0 transcript_id "YMR263W_id001"; gene_name "SAP30"; gene_id "YMR263W"; +chrXIII SGD gene 795759 797429 . + . gene_id "YMR264W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 795759 797429 . + . transcript_id "YMR264W_id001"; gene_id "YMR264W"; gene_name "CUE1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 795759 797429 . + . transcript_id "YMR264W_id001"; gene_id "YMR264W"; gene_name "CUE1"; +chrXIII SGD transcript 795805 796416 . + . transcript_id "YMR264W_id004"; gene_id "YMR264W"; gene_name "CUE1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 795805 796416 . + 0 transcript_id "YMR264W_id004"; gene_name "CUE1"; gene_id "YMR264W"; +chrXIII SGD gene 796244 797928 . - . gene_id "YMR265C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 796244 797928 . - . transcript_id "YMR265C_id002"; gene_id "YMR265C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 796244 797928 . - . transcript_id "YMR265C_id002"; gene_id "YMR265C"; +chrXIII SGD transcript 796540 797925 . - . transcript_id "YMR265C_id001"; gene_id "YMR265C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 796540 797925 . - 0 transcript_id "YMR265C_id001"; gene_id "YMR265C"; +chrXIII SGD gene 798518 801379 . + . gene_id "YMR266W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 798518 801379 . + . transcript_id "YMR266W_mRNA"; gene_id "YMR266W"; gene_name "RSN1"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 798518 801379 . + 0 transcript_id "YMR266W_mRNA"; gene_name "RSN1"; gene_id "YMR266W"; +chrXIII SGD gene 801708 802965 . + . gene_id "YMR267W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 801708 802965 . + . transcript_id "YMR267W_id001"; gene_id "YMR267W"; gene_name "PPA2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 801708 802965 . + . transcript_id "YMR267W_id001"; gene_id "YMR267W"; gene_name "PPA2"; +chrXIII SGD transcript 801772 802704 . + . transcript_id "YMR267W_id003"; gene_id "YMR267W"; gene_name "PPA2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 801772 802704 . + 0 transcript_id "YMR267W_id003"; gene_name "PPA2"; gene_id "YMR267W"; +chrXIII SGD gene 802681 804264 . - . gene_id "YMR268C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 802681 804264 . - . transcript_id "YMR268C_id002"; gene_id "YMR268C"; gene_name "PRP24"; transcript_biotype "protein_coding"; +chrXIII SGD exon 802681 804264 . - . transcript_id "YMR268C_id002"; gene_id "YMR268C"; gene_name "PRP24"; +chrXIII SGD transcript 802888 804222 . - . transcript_id "YMR268C_id001"; gene_id "YMR268C"; gene_name "PRP24"; transcript_biotype "protein_coding"; +chrXIII SGD exon 802888 804222 . - 0 transcript_id "YMR268C_id001"; gene_name "PRP24"; gene_id "YMR268C"; +chrXIII SGD gene 804214 805146 . + . gene_id "YMR269W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 804214 805146 . + . transcript_id "YMR269W_id001"; gene_id "YMR269W"; gene_name "TMA23"; transcript_biotype "protein_coding"; +chrXIII SGD exon 804214 805146 . + . transcript_id "YMR269W_id001"; gene_id "YMR269W"; gene_name "TMA23"; +chrXIII SGD transcript 804456 805091 . + . transcript_id "YMR269W_id004"; gene_id "YMR269W"; gene_name "TMA23"; transcript_biotype "protein_coding"; +chrXIII SGD exon 804456 805091 . + 0 transcript_id "YMR269W_id004"; gene_name "TMA23"; gene_id "YMR269W"; +chrXIII SGD gene 805069 806564 . - . gene_id "YMR270C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 805069 806564 . - . transcript_id "YMR270C_id001"; gene_id "YMR270C"; gene_name "RRN9"; transcript_biotype "protein_coding"; +chrXIII SGD exon 805069 806564 . - . transcript_id "YMR270C_id001"; gene_id "YMR270C"; gene_name "RRN9"; +chrXIII SGD transcript 805326 806423 . - . transcript_id "YMR270C_id002"; gene_id "YMR270C"; gene_name "RRN9"; transcript_biotype "protein_coding"; +chrXIII SGD exon 805326 806423 . - 0 transcript_id "YMR270C_id002"; gene_name "RRN9"; gene_id "YMR270C"; +chrXIII SGD gene 806708 808087 . - . gene_id "YMR271C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 806708 808087 . - . transcript_id "YMR271C_id002"; gene_id "YMR271C"; gene_name "URA10"; transcript_biotype "protein_coding"; +chrXIII SGD exon 806708 808087 . - . transcript_id "YMR271C_id002"; gene_id "YMR271C"; gene_name "URA10"; +chrXIII SGD transcript 806865 807548 . - . transcript_id "YMR271C_id001"; gene_id "YMR271C"; gene_name "URA10"; transcript_biotype "protein_coding"; +chrXIII SGD exon 806865 807548 . - 0 transcript_id "YMR271C_id001"; gene_name "URA10"; gene_id "YMR271C"; +chrXIII SGD gene 808246 808317 . - . gene_id "YNCM0036C"; gene_biotype "ncRNA"; +chrXIII SGD transcript 808246 808317 . - . transcript_id "YNCM0036C_tRNA"; gene_id "YNCM0036C"; gene_name "CDC65"; transcript_biotype "ncRNA"; +chrXIII SGD exon 808246 808317 . - . transcript_id "YNCM0036C_tRNA"; gene_name "CDC65"; gene_id "YNCM0036C"; +chrXIII SGD gene 809448 810888 . - . gene_id "YMR272C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 809448 810888 . - . transcript_id "YMR272C_id001"; gene_id "YMR272C"; gene_name "SCS7"; transcript_biotype "protein_coding"; +chrXIII SGD exon 809448 810888 . - . transcript_id "YMR272C_id001"; gene_id "YMR272C"; gene_name "SCS7"; +chrXIII SGD transcript 809623 810777 . - . transcript_id "YMR272C_id004"; gene_id "YMR272C"; gene_name "SCS7"; transcript_biotype "protein_coding"; +chrXIII SGD exon 809623 810777 . - 0 transcript_id "YMR272C_id004"; gene_name "SCS7"; gene_id "YMR272C"; +chrXIII SGD gene 810466 810579 . + . gene_id "YMR272W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 810466 810579 . + . transcript_id "YMR272W-A_mRNA"; gene_id "YMR272W-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 810466 810579 . + 0 transcript_id "YMR272W-A_mRNA"; gene_id "YMR272W-A"; +chrXIII SGD gene 811089 811196 . + . gene_id "YMR272W-B"; gene_biotype "protein_coding"; +chrXIII SGD transcript 811089 811196 . + . transcript_id "YMR272W-B_mRNA"; gene_id "YMR272W-B"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 811089 811196 . + 0 transcript_id "YMR272W-B_mRNA"; gene_id "YMR272W-B"; +chrXIII SGD gene 811139 814164 . - . gene_id "YMR273C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 811139 814164 . - . transcript_id "YMR273C_id002"; gene_id "YMR273C"; gene_name "ZDS1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 811139 814164 . - . transcript_id "YMR273C_id002"; gene_id "YMR273C"; gene_name "ZDS1"; +chrXIII SGD transcript 811233 813980 . - . transcript_id "YMR273C_id001"; gene_id "YMR273C"; gene_name "ZDS1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 811233 813980 . - 0 transcript_id "YMR273C_id001"; gene_name "ZDS1"; gene_id "YMR273C"; +chrXIII SGD gene 814304 815399 . - . gene_id "YMR274C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 814304 815399 . - . transcript_id "YMR274C_id004"; gene_id "YMR274C"; gene_name "RCE1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 814304 815399 . - . transcript_id "YMR274C_id004"; gene_id "YMR274C"; gene_name "RCE1"; +chrXIII SGD transcript 814364 815311 . - . transcript_id "YMR274C_id001"; gene_id "YMR274C"; gene_name "RCE1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 814364 815311 . - 0 transcript_id "YMR274C_id001"; gene_name "RCE1"; gene_id "YMR274C"; +chrXIII SGD gene 815520 818632 . - . gene_id "YMR275C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 815520 818632 . - . transcript_id "YMR275C_id001"; gene_id "YMR275C"; gene_name "BUL1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 815520 818632 . - . transcript_id "YMR275C_id001"; gene_id "YMR275C"; gene_name "BUL1"; +chrXIII SGD transcript 815651 818581 . - . transcript_id "YMR275C_id002"; gene_id "YMR275C"; gene_name "BUL1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 815651 818581 . - 0 transcript_id "YMR275C_id002"; gene_name "BUL1"; gene_id "YMR275C"; +chrXIII SGD gene 818771 820074 . + . gene_id "YMR276W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 818771 820074 . + . transcript_id "YMR276W_id002"; gene_id "YMR276W"; gene_name "DSK2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 818771 820074 . + . transcript_id "YMR276W_id002"; gene_id "YMR276W"; gene_name "DSK2"; +chrXIII SGD transcript 818827 819948 . + . transcript_id "YMR276W_id001"; gene_id "YMR276W"; gene_name "DSK2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 818827 819948 . + 0 transcript_id "YMR276W_id001"; gene_name "DSK2"; gene_id "YMR276W"; +chrXIII SGD gene 820120 822583 . + . gene_id "YMR277W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 820120 822583 . + . transcript_id "YMR277W_id001"; gene_id "YMR277W"; gene_name "FCP1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 820120 822583 . + . transcript_id "YMR277W_id001"; gene_id "YMR277W"; gene_name "FCP1"; +chrXIII SGD transcript 820256 822454 . + . transcript_id "YMR277W_id002"; gene_id "YMR277W"; gene_name "FCP1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 820256 822454 . + 0 transcript_id "YMR277W_id002"; gene_name "FCP1"; gene_id "YMR277W"; +chrXIII SGD gene 822723 824752 . + . gene_id "YMR278W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 822723 824752 . + . transcript_id "YMR278W_id002"; gene_id "YMR278W"; gene_name "PRM15"; transcript_biotype "protein_coding"; +chrXIII SGD exon 822723 824752 . + . transcript_id "YMR278W_id002"; gene_id "YMR278W"; gene_name "PRM15"; +chrXIII SGD transcript 822763 824631 . + . transcript_id "YMR278W_id001"; gene_id "YMR278W"; gene_name "PRM15"; transcript_biotype "protein_coding"; +chrXIII SGD exon 822763 824631 . + 0 transcript_id "YMR278W_id001"; gene_name "PRM15"; gene_id "YMR278W"; +chrXIII SGD gene 824729 826351 . - . gene_id "YMR279C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 824729 826351 . - . transcript_id "YMR279C_id001"; gene_id "YMR279C"; gene_name "ATR2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 824729 826351 . - 0 transcript_id "YMR279C_id001"; gene_name "ATR2"; gene_id "YMR279C"; +chrXIII SGD gene 827028 831329 . - . gene_id "YMR280C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 827028 831329 . - . transcript_id "YMR280C_id001"; gene_id "YMR280C"; gene_name "CAT8"; transcript_biotype "protein_coding"; +chrXIII SGD exon 827028 831329 . - 0 transcript_id "YMR280C_id001"; gene_name "CAT8"; gene_id "YMR280C"; +chrXIII SGD gene 832339 833253 . + . gene_id "YMR281W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 832339 833253 . + . transcript_id "YMR281W_id001"; gene_id "YMR281W"; gene_name "GPI12"; transcript_biotype "protein_coding"; +chrXIII SGD exon 832339 833253 . + 0 transcript_id "YMR281W_id001"; gene_name "GPI12"; gene_id "YMR281W"; +chrXIII SGD gene 833210 835145 . - . gene_id "YMR282C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 833210 835145 . - . transcript_id "YMR282C_id003"; gene_id "YMR282C"; gene_name "AEP2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 833210 835145 . - . transcript_id "YMR282C_id003"; gene_id "YMR282C"; gene_name "AEP2"; +chrXIII SGD transcript 833356 835098 . - . transcript_id "YMR282C_id001"; gene_id "YMR282C"; gene_name "AEP2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 833356 835098 . - 0 transcript_id "YMR282C_id001"; gene_name "AEP2"; gene_id "YMR282C"; +chrXIII SGD gene 835326 836867 . - . gene_id "YMR283C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 835326 836867 . - . transcript_id "YMR283C_mRNA"; gene_id "YMR283C"; gene_name "RIT1"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 835326 836867 . - 0 transcript_id "YMR283C_mRNA"; gene_name "RIT1"; gene_id "YMR283C"; +chrXIII SGD gene 837928 838016 . + . gene_id "YNCM0037W"; gene_biotype "ncRNA"; +chrXIII SGD transcript 837928 838016 . + . transcript_id "YNCM0037W_tRNA"; gene_id "YNCM0037W"; gene_name "SUP8"; transcript_biotype "ncRNA"; +chrXIII SGD exon 837928 837966 . + . transcript_id "YNCM0037W_tRNA"; gene_name "SUP8"; gene_id "YNCM0037W"; +chrXIII SGD exon 837981 838016 . + . transcript_id "YNCM0037W_tRNA"; gene_name "SUP8"; gene_id "YNCM0037W"; +chrXIII SGD gene 838161 840171 . + . gene_id "YMR284W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 838161 840171 . + . transcript_id "YMR284W_id002"; gene_id "YMR284W"; gene_name "YKU70"; transcript_biotype "protein_coding"; +chrXIII SGD exon 838161 840171 . + . transcript_id "YMR284W_id002"; gene_id "YMR284W"; gene_name "YKU70"; +chrXIII SGD transcript 838187 839995 . + . transcript_id "YMR284W_id001"; gene_id "YMR284W"; gene_name "YKU70"; transcript_biotype "protein_coding"; +chrXIII SGD exon 838187 839995 . + 0 transcript_id "YMR284W_id001"; gene_name "YKU70"; gene_id "YMR284W"; +chrXIII SGD gene 839986 841758 . - . gene_id "YMR285C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 839986 841758 . - . transcript_id "YMR285C_id001"; gene_id "YMR285C"; gene_name "NGL2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 839986 841758 . - . transcript_id "YMR285C_id001"; gene_id "YMR285C"; gene_name "NGL2"; +chrXIII SGD transcript 840144 841691 . - . transcript_id "YMR285C_id005"; gene_id "YMR285C"; gene_name "NGL2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 840144 841691 . - 0 transcript_id "YMR285C_id005"; gene_name "NGL2"; gene_id "YMR285C"; +chrXIII SGD gene 841925 842491 . + . gene_id "YMR286W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 841925 842491 . + . transcript_id "YMR286W_id001"; gene_id "YMR286W"; gene_name "MRPL33"; transcript_biotype "protein_coding"; +chrXIII SGD exon 841925 842491 . + . transcript_id "YMR286W_id001"; gene_id "YMR286W"; gene_name "MRPL33"; +chrXIII SGD transcript 841942 842202 . + . transcript_id "YMR286W_id003"; gene_id "YMR286W"; gene_name "MRPL33"; transcript_biotype "protein_coding"; +chrXIII SGD exon 841942 842202 . + 0 transcript_id "YMR286W_id003"; gene_name "MRPL33"; gene_id "YMR286W"; +chrXIII SGD gene 842436 845345 . - . gene_id "YMR287C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 842436 845345 . - . transcript_id "YMR287C_id001"; gene_id "YMR287C"; gene_name "DSS1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 842436 845345 . - 0 transcript_id "YMR287C_id001"; gene_name "DSS1"; gene_id "YMR287C"; +chrXIII SGD gene 845550 848540 . + . gene_id "YMR288W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 845550 848540 . + . transcript_id "YMR288W_id002"; gene_id "YMR288W"; gene_name "HSH155"; transcript_biotype "protein_coding"; +chrXIII SGD exon 845550 848540 . + . transcript_id "YMR288W_id002"; gene_id "YMR288W"; gene_name "HSH155"; +chrXIII SGD transcript 845571 848486 . + . transcript_id "YMR288W_id001"; gene_id "YMR288W"; gene_name "HSH155"; transcript_biotype "protein_coding"; +chrXIII SGD exon 845571 848486 . + 0 transcript_id "YMR288W_id001"; gene_name "HSH155"; gene_id "YMR288W"; +chrXIII SGD gene 848673 850312 . + . gene_id "YMR289W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 848673 850312 . + . transcript_id "YMR289W_id003"; gene_id "YMR289W"; gene_name "ABZ2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 848673 850312 . + . transcript_id "YMR289W_id003"; gene_id "YMR289W"; gene_name "ABZ2"; +chrXIII SGD transcript 848685 849809 . + . transcript_id "YMR289W_id001"; gene_id "YMR289W"; gene_name "ABZ2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 848685 849809 . + 0 transcript_id "YMR289W_id001"; gene_name "ABZ2"; gene_id "YMR289W"; +chrXIII SGD gene 850074 851591 . - . gene_id "YMR290C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 850074 851591 . - . transcript_id "YMR290C_id001"; gene_id "YMR290C"; gene_name "HAS1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 850074 851591 . - 0 transcript_id "YMR290C_id001"; gene_name "HAS1"; gene_id "YMR290C"; +chrXIII SGD gene 851422 851769 . + . gene_id "YMR290W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 851422 851769 . + . transcript_id "YMR290W-A_mRNA"; gene_id "YMR290W-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 851422 851769 . + 0 transcript_id "YMR290W-A_mRNA"; gene_id "YMR290W-A"; +chrXIII SGD gene 852547 854572 . + . gene_id "YMR291W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 852547 854572 . + . transcript_id "YMR291W_id006"; gene_id "YMR291W"; gene_name "TDA1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 852547 854572 . + . transcript_id "YMR291W_id006"; gene_id "YMR291W"; gene_name "TDA1"; +chrXIII SGD transcript 852630 854390 . + . transcript_id "YMR291W_id001"; gene_id "YMR291W"; gene_name "TDA1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 852630 854390 . + 0 transcript_id "YMR291W_id001"; gene_name "TDA1"; gene_id "YMR291W"; +chrXIII SGD gene 854750 855394 . + . gene_id "YMR292W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 854750 855394 . + . transcript_id "YMR292W_id009"; gene_id "YMR292W"; gene_name "GOT1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 854750 855394 . + . transcript_id "YMR292W_id009"; gene_id "YMR292W"; gene_name "GOT1"; +chrXIII SGD transcript 854795 855293 . + . transcript_id "YMR292W_id001"; gene_id "YMR292W"; gene_name "GOT1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 854795 854816 . + 0 transcript_id "YMR292W_id001"; gene_name "GOT1"; gene_id "YMR292W"; +chrXIII SGD exon 854899 855293 . + 2 transcript_id "YMR292W_id001"; gene_name "GOT1"; gene_id "YMR292W"; +chrXIII SGD gene 855306 856925 . - . gene_id "YMR293C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 855306 856925 . - . transcript_id "YMR293C_id001"; gene_id "YMR293C"; gene_name "HER2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 855306 856925 . - . transcript_id "YMR293C_id001"; gene_id "YMR293C"; gene_name "HER2"; +chrXIII SGD transcript 855399 856793 . - . transcript_id "YMR293C_id002"; gene_id "YMR293C"; gene_name "HER2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 855399 856793 . - 0 transcript_id "YMR293C_id002"; gene_name "HER2"; gene_id "YMR293C"; +chrXIII SGD gene 856939 858226 . + . gene_id "YMR294W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 856939 858226 . + . transcript_id "YMR294W_id006"; gene_id "YMR294W"; gene_name "JNM1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 856939 858226 . + . transcript_id "YMR294W_id006"; gene_id "YMR294W"; gene_name "JNM1"; +chrXIII SGD transcript 856966 858087 . + . transcript_id "YMR294W_id001"; gene_id "YMR294W"; gene_name "JNM1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 856966 858087 . + 0 transcript_id "YMR294W_id001"; gene_name "JNM1"; gene_id "YMR294W"; +chrXIII SGD gene 857576 858901 . - . gene_id "YMR295C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 857576 858901 . - . transcript_id "YMR295C_id001"; gene_id "YMR295C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 857576 858901 . - . transcript_id "YMR295C_id001"; gene_id "YMR295C"; +chrXIII SGD gene 858209 858568 . + . gene_id "YMR294W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 858209 858568 . + . transcript_id "YMR294W-A_mRNA"; gene_id "YMR294W-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 858209 858568 . + 0 transcript_id "YMR294W-A_mRNA"; gene_id "YMR294W-A"; +chrXIII SGD transcript 858297 858890 . - . transcript_id "YMR295C_id002"; gene_id "YMR295C"; transcript_biotype "protein_coding"; +chrXIII SGD exon 858297 858890 . - 0 transcript_id "YMR295C_id002"; gene_id "YMR295C"; +chrXIII SGD gene 859131 861107 . - . gene_id "YMR296C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 859131 861107 . - . transcript_id "YMR296C_id003"; gene_id "YMR296C"; gene_name "LCB1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 859131 861107 . - . transcript_id "YMR296C_id003"; gene_id "YMR296C"; gene_name "LCB1"; +chrXIII SGD transcript 859215 860891 . - . transcript_id "YMR296C_id001"; gene_id "YMR296C"; gene_name "LCB1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 859215 860891 . - 0 transcript_id "YMR296C_id001"; gene_name "LCB1"; gene_id "YMR296C"; +chrXIII SGD gene 861879 863773 . + . gene_id "YMR297W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 861879 863773 . + . transcript_id "YMR297W_id001"; gene_id "YMR297W"; gene_name "PRC1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 861879 863773 . + . transcript_id "YMR297W_id001"; gene_id "YMR297W"; gene_name "PRC1"; +chrXIII SGD transcript 861922 863520 . + . transcript_id "YMR297W_id003"; gene_id "YMR297W"; gene_name "PRC1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 861922 863520 . + 0 transcript_id "YMR297W_id003"; gene_name "PRC1"; gene_id "YMR297W"; +chrXIII SGD gene 863530 865374 . - . gene_id "YMR299C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 863530 865374 . - . transcript_id "YMR299C_id001"; gene_id "YMR299C"; gene_name "DYN3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 863530 865374 . - . transcript_id "YMR299C_id001"; gene_id "YMR299C"; gene_name "DYN3"; +chrXIII SGD gene 863797 865507 . + . gene_id "YMR298W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 863797 865507 . + . transcript_id "YMR298W_id001"; gene_id "YMR298W"; gene_name "LIP1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 863797 865507 . + . transcript_id "YMR298W_id001"; gene_id "YMR298W"; gene_name "LIP1"; +chrXIII SGD transcript 863819 864271 . + . transcript_id "YMR298W_id005"; gene_id "YMR298W"; gene_name "LIP1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 863819 864271 . + 0 transcript_id "YMR298W_id005"; gene_name "LIP1"; gene_id "YMR298W"; +chrXIII SGD transcript 864412 865350 . - . transcript_id "YMR299C_id002"; gene_id "YMR299C"; gene_name "DYN3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 864412 865350 . - 0 transcript_id "YMR299C_id002"; gene_name "DYN3"; gene_id "YMR299C"; +chrXIII SGD gene 865442 867332 . - . gene_id "YMR300C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 865442 867332 . - . transcript_id "YMR300C_id003"; gene_id "YMR300C"; gene_name "ADE4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 865442 867332 . - . transcript_id "YMR300C_id003"; gene_id "YMR300C"; gene_name "ADE4"; +chrXIII SGD transcript 865559 867091 . - . transcript_id "YMR300C_id001"; gene_id "YMR300C"; gene_name "ADE4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 865559 867091 . - 0 transcript_id "YMR300C_id001"; gene_name "ADE4"; gene_id "YMR300C"; +chrXIII SGD gene 867477 869708 . - . gene_id "YMR301C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 867477 869708 . - . transcript_id "YMR301C_id001"; gene_id "YMR301C"; gene_name "ATM1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 867477 869708 . - . transcript_id "YMR301C_id001"; gene_id "YMR301C"; gene_name "ATM1"; +chrXIII SGD transcript 867555 869627 . - . transcript_id "YMR301C_id003"; gene_id "YMR301C"; gene_name "ATM1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 867555 869627 . - 0 transcript_id "YMR301C_id003"; gene_name "ATM1"; gene_id "YMR301C"; +chrXIII SGD gene 869926 872652 . - . gene_id "YMR302C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 869926 872652 . - . transcript_id "YMR302C_id002"; gene_id "YMR302C"; gene_name "YME2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 869926 872652 . - . transcript_id "YMR302C_id002"; gene_id "YMR302C"; gene_name "YME2"; +chrXIII SGD transcript 870073 872625 . - . transcript_id "YMR302C_id001"; gene_id "YMR302C"; gene_name "YME2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 870073 872625 . - 0 transcript_id "YMR302C_id001"; gene_name "YME2"; gene_id "YMR302C"; +chrXIII SGD gene 873168 874387 . - . gene_id "YMR303C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 873168 874387 . - . transcript_id "YMR303C_id005"; gene_id "YMR303C"; gene_name "ADH2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 873168 874387 . - . transcript_id "YMR303C_id005"; gene_id "YMR303C"; gene_name "ADH2"; +chrXIII SGD transcript 873291 874337 . - . transcript_id "YMR303C_id001"; gene_id "YMR303C"; gene_name "ADH2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 873291 874337 . - 0 transcript_id "YMR303C_id001"; gene_name "ADH2"; gene_id "YMR303C"; +chrXIII SGD gene 874987 878679 . + . gene_id "YMR304W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 874987 878679 . + . transcript_id "YMR304W_mRNA"; gene_id "YMR304W"; gene_name "UBP15"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 874987 878679 . + 0 transcript_id "YMR304W_mRNA"; gene_name "UBP15"; gene_id "YMR304W"; +chrXIII SGD gene 878780 879130 . - . gene_id "YMR304C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 878780 879130 . - . transcript_id "YMR304C-A_id001"; gene_id "YMR304C-A"; transcript_biotype "protein_coding"; +chrXIII SGD exon 878780 879130 . - 0 transcript_id "YMR304C-A_id001"; gene_id "YMR304C-A"; +chrXIII SGD gene 878875 880477 . - . gene_id "YMR305C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 878875 880477 . - . transcript_id "YMR305C_id001"; gene_id "YMR305C"; gene_name "SCW10"; transcript_biotype "protein_coding"; +chrXIII SGD exon 878875 880477 . - . transcript_id "YMR305C_id001"; gene_id "YMR305C"; gene_name "SCW10"; +chrXIII SGD transcript 879063 880232 . - . transcript_id "YMR305C_id002"; gene_id "YMR305C"; gene_name "SCW10"; transcript_biotype "protein_coding"; +chrXIII SGD exon 879063 880232 . - 0 transcript_id "YMR305C_id002"; gene_name "SCW10"; gene_id "YMR305C"; +chrXIII SGD gene 881159 886516 . + . gene_id "YMR306W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 881159 886516 . + . transcript_id "YMR306W_mRNA"; gene_id "YMR306W"; gene_name "FKS3"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 881159 886516 . + 0 transcript_id "YMR306W_mRNA"; gene_name "FKS3"; gene_id "YMR306W"; +chrXIII SGD gene 886183 886572 . - . gene_id "YMR306C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 886183 886572 . - . transcript_id "YMR306C-A_mRNA"; gene_id "YMR306C-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 886183 886572 . - 0 transcript_id "YMR306C-A_mRNA"; gene_id "YMR306C-A"; +chrXIII SGD gene 886906 888889 . + . gene_id "YMR307W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 886906 888889 . + . transcript_id "YMR307W_id002"; gene_id "YMR307W"; gene_name "GAS1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 886906 888889 . + . transcript_id "YMR307W_id002"; gene_id "YMR307W"; gene_name "GAS1"; +chrXIII SGD transcript 887003 888682 . + . transcript_id "YMR307W_id001"; gene_id "YMR307W"; gene_name "GAS1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 887003 888682 . + 0 transcript_id "YMR307W_id001"; gene_name "GAS1"; gene_id "YMR307W"; +chrXIII SGD gene 887731 887925 . - . gene_id "YMR307C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 887731 887925 . - . transcript_id "YMR307C-A_mRNA"; gene_id "YMR307C-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 887731 887925 . - 0 transcript_id "YMR307C-A_mRNA"; gene_id "YMR307C-A"; +chrXIII SGD gene 888880 892368 . - . gene_id "YMR308C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 888880 892368 . - . transcript_id "YMR308C_id005"; gene_id "YMR308C"; gene_name "PSE1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 888880 892368 . - . transcript_id "YMR308C_id005"; gene_id "YMR308C"; gene_name "PSE1"; +chrXIII SGD transcript 888952 892221 . - . transcript_id "YMR308C_id001"; gene_id "YMR308C"; gene_name "PSE1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 888952 892221 . - 0 transcript_id "YMR308C_id001"; gene_name "PSE1"; gene_id "YMR308C"; +chrXIII SGD gene 892677 895502 . - . gene_id "YMR309C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 892677 895502 . - . transcript_id "YMR309C_id003"; gene_id "YMR309C"; gene_name "NIP1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 892677 895502 . - . transcript_id "YMR309C_id003"; gene_id "YMR309C"; gene_name "NIP1"; +chrXIII SGD transcript 892988 895426 . - . transcript_id "YMR309C_id001"; gene_id "YMR309C"; gene_name "NIP1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 892988 895426 . - 0 transcript_id "YMR309C_id001"; gene_name "NIP1"; gene_id "YMR309C"; +chrXIII SGD gene 895318 896706 . - . gene_id "YMR310C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 895318 896706 . - . transcript_id "YMR310C_id001"; gene_id "YMR310C"; gene_name "UPA2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 895318 896706 . - . transcript_id "YMR310C_id001"; gene_id "YMR310C"; gene_name "UPA2"; +chrXIII SGD transcript 895716 896669 . - . transcript_id "YMR310C_id002"; gene_id "YMR310C"; gene_name "UPA2"; transcript_biotype "protein_coding"; +chrXIII SGD exon 895716 896669 . - 0 transcript_id "YMR310C_id002"; gene_name "UPA2"; gene_id "YMR310C"; +chrXIII SGD gene 896626 897657 . - . gene_id "YMR311C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 896626 897657 . - . transcript_id "YMR311C_id001"; gene_id "YMR311C"; gene_name "GLC8"; transcript_biotype "protein_coding"; +chrXIII SGD exon 896626 897657 . - . transcript_id "YMR311C_id001"; gene_id "YMR311C"; gene_name "GLC8"; +chrXIII SGD transcript 896914 897603 . - . transcript_id "YMR311C_id003"; gene_id "YMR311C"; gene_name "GLC8"; transcript_biotype "protein_coding"; +chrXIII SGD exon 896914 897603 . - 0 transcript_id "YMR311C_id003"; gene_name "GLC8"; gene_id "YMR311C"; +chrXIII SGD gene 898381 900180 . + . gene_id "YMR312W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 898381 900180 . + . transcript_id "YMR312W_id001"; gene_id "YMR312W"; gene_name "ELP6"; transcript_biotype "protein_coding"; +chrXIII SGD exon 898381 900180 . + . transcript_id "YMR312W_id001"; gene_id "YMR312W"; gene_name "ELP6"; +chrXIII SGD transcript 898405 899226 . + . transcript_id "YMR312W_id003"; gene_id "YMR312W"; gene_name "ELP6"; transcript_biotype "protein_coding"; +chrXIII SGD exon 898405 899226 . + 0 transcript_id "YMR312W_id003"; gene_name "ELP6"; gene_id "YMR312W"; +chrXIII SGD gene 899194 901354 . - . gene_id "YMR313C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 899194 901354 . - . transcript_id "YMR313C_id001"; gene_id "YMR313C"; gene_name "TGL3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 899194 901354 . - . transcript_id "YMR313C_id001"; gene_id "YMR313C"; gene_name "TGL3"; +chrXIII SGD transcript 899379 901307 . - . transcript_id "YMR313C_id005"; gene_id "YMR313C"; gene_name "TGL3"; transcript_biotype "protein_coding"; +chrXIII SGD exon 899379 901307 . - 0 transcript_id "YMR313C_id005"; gene_name "TGL3"; gene_id "YMR313C"; +chrXIII SGD gene 901620 902706 . + . gene_id "YMR314W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 901620 902706 . + . transcript_id "YMR314W_id003"; gene_id "YMR314W"; gene_name "PRE5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 901620 902706 . + . transcript_id "YMR314W_id003"; gene_id "YMR314W"; gene_name "PRE5"; +chrXIII SGD transcript 901709 902413 . + . transcript_id "YMR314W_id001"; gene_id "YMR314W"; gene_name "PRE5"; transcript_biotype "protein_coding"; +chrXIII SGD exon 901709 902413 . + 0 transcript_id "YMR314W_id001"; gene_name "PRE5"; gene_id "YMR314W"; +chrXIII SGD gene 902678 903982 . + . gene_id "YMR315W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 902678 903982 . + . transcript_id "YMR315W_id001"; gene_id "YMR315W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 902678 903982 . + . transcript_id "YMR315W_id001"; gene_id "YMR315W"; +chrXIII SGD transcript 902800 903849 . + . transcript_id "YMR315W_id003"; gene_id "YMR315W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 902800 903849 . + 0 transcript_id "YMR315W_id003"; gene_id "YMR315W"; +chrXIII SGD gene 904286 904393 . + . gene_id "YMR315W-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 904286 904393 . + . transcript_id "YMR315W-A_mRNA"; gene_id "YMR315W-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 904286 904393 . + 0 transcript_id "YMR315W-A_mRNA"; gene_id "YMR315W-A"; +chrXIII SGD gene 904483 905892 . + . gene_id "YMR316W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 904483 905892 . + . transcript_id "YMR316W_id001"; gene_id "YMR316W"; gene_name "DIA1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 904483 905892 . + . transcript_id "YMR316W_id001"; gene_id "YMR316W"; gene_name "DIA1"; +chrXIII SGD transcript 904825 905835 . + . transcript_id "YMR316W_id003"; gene_id "YMR316W"; gene_name "DIA1"; transcript_biotype "protein_coding"; +chrXIII SGD exon 904825 905835 . + 0 transcript_id "YMR316W_id003"; gene_name "DIA1"; gene_id "YMR316W"; +chrXIII SGD gene 905662 905973 . - . gene_id "YMR316C-A"; gene_biotype "protein_coding"; +chrXIII SGD transcript 905662 905973 . - . transcript_id "YMR316C-A_mRNA"; gene_id "YMR316C-A"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 905662 905973 . - 0 transcript_id "YMR316C-A_mRNA"; gene_id "YMR316C-A"; +chrXIII SGD gene 907180 908552 . - . gene_id "YMR316C-B"; gene_biotype "protein_coding"; +chrXIII SGD transcript 907180 908552 . - . transcript_id "YMR316C-B_id001"; gene_id "YMR316C-B"; transcript_biotype "protein_coding"; +chrXIII SGD exon 907180 908552 . - . transcript_id "YMR316C-B_id001"; gene_id "YMR316C-B"; +chrXIII SGD transcript 907321 907629 . - . transcript_id "YMR316C-B_id002"; gene_id "YMR316C-B"; transcript_biotype "protein_coding"; +chrXIII SGD exon 907321 907629 . - 0 transcript_id "YMR316C-B_id002"; gene_id "YMR316C-B"; +chrXIII SGD gene 907364 910786 . + . gene_id "YMR317W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 907364 910786 . + . transcript_id "YMR317W_mRNA"; gene_id "YMR317W"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 907364 910786 . + 0 transcript_id "YMR317W_mRNA"; gene_id "YMR317W"; +chrXIII SGD gene 910763 912296 . - . gene_id "YMR318C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 910763 912296 . - . transcript_id "YMR318C_id001"; gene_id "YMR318C"; gene_name "ADH6"; transcript_biotype "protein_coding"; +chrXIII SGD exon 910763 912296 . - . transcript_id "YMR318C_id001"; gene_id "YMR318C"; gene_name "ADH6"; +chrXIII SGD transcript 911061 912143 . - . transcript_id "YMR318C_id002"; gene_id "YMR318C"; gene_name "ADH6"; transcript_biotype "protein_coding"; +chrXIII SGD exon 911061 912143 . - 0 transcript_id "YMR318C_id002"; gene_name "ADH6"; gene_id "YMR318C"; +chrXIII SGD gene 912530 914657 . - . gene_id "YMR319C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 912530 914657 . - . transcript_id "YMR319C_id001"; gene_id "YMR319C"; gene_name "FET4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 912530 914657 . - . transcript_id "YMR319C_id001"; gene_id "YMR319C"; gene_name "FET4"; +chrXIII SGD transcript 912880 914538 . - . transcript_id "YMR319C_id004"; gene_id "YMR319C"; gene_name "FET4"; transcript_biotype "protein_coding"; +chrXIII SGD exon 912880 914538 . - 0 transcript_id "YMR319C_id004"; gene_name "FET4"; gene_id "YMR319C"; +chrXIII SGD gene 915706 917565 . + . gene_id "YMR320W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 915706 917565 . + . transcript_id "YMR320W_id003"; gene_id "YMR320W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 915706 917565 . + . transcript_id "YMR320W_id003"; gene_id "YMR320W"; +chrXIII SGD transcript 916746 917051 . + . transcript_id "YMR320W_id001"; gene_id "YMR320W"; transcript_biotype "protein_coding"; +chrXIII SGD exon 916746 917051 . + 0 transcript_id "YMR320W_id001"; gene_id "YMR320W"; +chrXIII SGD gene 917579 917896 . - . gene_id "YMR321C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 917579 917896 . - . transcript_id "YMR321C_mRNA"; gene_id "YMR321C"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 917579 917896 . - 0 transcript_id "YMR321C_mRNA"; gene_id "YMR321C"; +chrXIII SGD gene 918366 919079 . - . gene_id "YMR322C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 918366 919079 . - . transcript_id "YMR322C_mRNA"; gene_id "YMR322C"; gene_name "SNO4"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 918366 919079 . - 0 transcript_id "YMR322C_mRNA"; gene_name "SNO4"; gene_id "YMR322C"; +chrXIII SGD gene 920088 921401 . + . gene_id "YMR323W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 920088 921401 . + . transcript_id "YMR323W_mRNA"; gene_id "YMR323W"; gene_name "ERR3"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 920088 921401 . + 0 transcript_id "YMR323W_mRNA"; gene_name "ERR3"; gene_id "YMR323W"; +chrXIII SGD gene 922202 922444 . - . gene_id "YMR324C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 922202 922444 . - . transcript_id "YMR324C_mRNA"; gene_id "YMR324C"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 922202 922444 . - 0 transcript_id "YMR324C_mRNA"; gene_id "YMR324C"; +chrXIII SGD gene 922641 923015 . + . gene_id "YMR325W"; gene_biotype "protein_coding"; +chrXIII SGD transcript 922641 923015 . + . transcript_id "YMR325W_mRNA"; gene_id "YMR325W"; gene_name "PAU19"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 922641 923015 . + 0 transcript_id "YMR325W_mRNA"; gene_name "PAU19"; gene_id "YMR325W"; +chrXIII SGD gene 923494 923802 . - . gene_id "YMR326C"; gene_biotype "protein_coding"; +chrXIII SGD transcript 923494 923802 . - . transcript_id "YMR326C_mRNA"; gene_id "YMR326C"; transcript_biotype "protein_coding"; +chrXIII SGD CDS 923494 923802 . - 0 transcript_id "YMR326C_mRNA"; gene_id "YMR326C"; +chrXIV SGD gene 371 6098 . - . gene_id "YNL339C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 371 6098 . - . transcript_id "YNL339C_mRNA"; gene_id "YNL339C"; gene_name "YRF1-6"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 371 5931 . - 2 transcript_id "YNL339C_mRNA"; gene_name "YRF1-6"; gene_id "YNL339C"; +chrXIV SGD CDS 6080 6098 . - 0 transcript_id "YNL339C_mRNA"; gene_name "YRF1-6"; gene_id "YNL339C"; +chrXIV SGD gene 734 1216 . + . gene_id "YNL339W-B"; gene_biotype "protein_coding"; +chrXIV SGD transcript 734 1216 . + . transcript_id "YNL339W-B_mRNA"; gene_id "YNL339W-B"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 734 1216 . + 0 transcript_id "YNL339W-B_mRNA"; gene_id "YNL339W-B"; +chrXIV SGD gene 1517 2092 . + . gene_id "YNL339W-A"; gene_biotype "protein_coding"; +chrXIV SGD transcript 1517 2092 . + . transcript_id "YNL339W-A_mRNA"; gene_id "YNL339W-A"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 1517 2092 . + 0 transcript_id "YNL339W-A_mRNA"; gene_id "YNL339W-A"; +chrXIV SGD gene 6561 6719 . + . gene_id "YNL338W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 6561 6719 . + . transcript_id "YNL338W_mRNA"; gene_id "YNL338W"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 6561 6719 . + 0 transcript_id "YNL338W_mRNA"; gene_id "YNL338W"; +chrXIV SGD gene 7165 7419 . + . gene_id "YNL337W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 7165 7419 . + . transcript_id "YNL337W_mRNA"; gene_id "YNL337W"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 7165 7419 . + 0 transcript_id "YNL337W_mRNA"; gene_id "YNL337W"; +chrXIV SGD gene 8330 9475 . + . gene_id "YNL336W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 8330 9475 . + . transcript_id "YNL336W_mRNA"; gene_id "YNL336W"; gene_name "COS1"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 8330 9475 . + 0 transcript_id "YNL336W_mRNA"; gene_name "COS1"; gene_id "YNL336W"; +chrXIV SGD gene 11452 12129 . + . gene_id "YNL335W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 11452 12129 . + . transcript_id "YNL335W_mRNA"; gene_id "YNL335W"; gene_name "DDI2"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 11452 12129 . + 0 transcript_id "YNL335W_mRNA"; gene_name "DDI2"; gene_id "YNL335W"; +chrXIV SGD gene 12208 12876 . - . gene_id "YNL334C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 12208 12876 . - . transcript_id "YNL334C_mRNA"; gene_id "YNL334C"; gene_name "SNO2"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 12208 12876 . - 0 transcript_id "YNL334C_mRNA"; gene_name "SNO2"; gene_id "YNL334C"; +chrXIV SGD gene 13267 14163 . + . gene_id "YNL333W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 13267 14163 . + . transcript_id "YNL333W_mRNA"; gene_id "YNL333W"; gene_name "SNZ2"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 13267 14163 . + 0 transcript_id "YNL333W_mRNA"; gene_name "SNZ2"; gene_id "YNL333W"; +chrXIV SGD gene 14832 15854 . + . gene_id "YNL332W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 14832 15854 . + . transcript_id "YNL332W_mRNA"; gene_id "YNL332W"; gene_name "THI12"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 14832 15854 . + 0 transcript_id "YNL332W_mRNA"; gene_name "THI12"; gene_id "YNL332W"; +chrXIV SGD gene 15898 17752 . - . gene_id "YNL331C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 15898 17752 . - . transcript_id "YNL331C_id001"; gene_id "YNL331C"; gene_name "AAD14"; transcript_biotype "protein_coding"; +chrXIV SGD exon 15898 17752 . - . transcript_id "YNL331C_id001"; gene_id "YNL331C"; gene_name "AAD14"; +chrXIV SGD transcript 16118 17248 . - . transcript_id "YNL331C_id002"; gene_id "YNL331C"; gene_name "AAD14"; transcript_biotype "protein_coding"; +chrXIV SGD exon 16118 17248 . - 0 transcript_id "YNL331C_id002"; gene_name "AAD14"; gene_id "YNL331C"; +chrXIV SGD gene 17668 19341 . - . gene_id "YNL330C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 17668 19341 . - . transcript_id "YNL330C_id001"; gene_id "YNL330C"; gene_name "RPD3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 17668 19341 . - . transcript_id "YNL330C_id001"; gene_id "YNL330C"; gene_name "RPD3"; +chrXIV SGD transcript 18001 19302 . - . transcript_id "YNL330C_id002"; gene_id "YNL330C"; gene_name "RPD3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 18001 19302 . - 0 transcript_id "YNL330C_id002"; gene_name "RPD3"; gene_id "YNL330C"; +chrXIV SGD gene 19541 22633 . - . gene_id "YNL329C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 19541 22633 . - . transcript_id "YNL329C_id001"; gene_id "YNL329C"; gene_name "PEX6"; transcript_biotype "protein_coding"; +chrXIV SGD exon 19541 22633 . - 0 transcript_id "YNL329C_id001"; gene_name "PEX6"; gene_id "YNL329C"; +chrXIV SGD gene 20797 23282 . - . gene_id "YNL328C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 20797 23282 . - . transcript_id "YNL328C_id001"; gene_id "YNL328C"; gene_name "MDJ2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 20797 23282 . - . transcript_id "YNL328C_id001"; gene_id "YNL328C"; gene_name "MDJ2"; +chrXIV SGD transcript 22834 23274 . - . transcript_id "YNL328C_id003"; gene_id "YNL328C"; gene_name "MDJ2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 22834 23274 . - 0 transcript_id "YNL328C_id003"; gene_name "MDJ2"; gene_id "YNL328C"; +chrXIV SGD gene 24011 27291 . + . gene_id "YNL327W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 24011 27291 . + . transcript_id "YNL327W_id001"; gene_id "YNL327W"; gene_name "EGT2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 24011 27291 . + . transcript_id "YNL327W_id001"; gene_id "YNL327W"; gene_name "EGT2"; +chrXIV SGD transcript 24048 27173 . + . transcript_id "YNL327W_id003"; gene_id "YNL327W"; gene_name "EGT2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 24048 27173 . + 0 transcript_id "YNL327W_id003"; gene_name "EGT2"; gene_id "YNL327W"; +chrXIV SGD gene 27165 28400 . - . gene_id "YNL326C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 27165 28400 . - . transcript_id "YNL326C_id003"; gene_id "YNL326C"; gene_name "PFA3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 27165 28400 . - . transcript_id "YNL326C_id003"; gene_id "YNL326C"; gene_name "PFA3"; +chrXIV SGD transcript 27337 28347 . - . transcript_id "YNL326C_id001"; gene_id "YNL326C"; gene_name "PFA3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 27337 28347 . - 0 transcript_id "YNL326C_id001"; gene_name "PFA3"; gene_id "YNL326C"; +chrXIV SGD gene 28681 31405 . - . gene_id "YNL325C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 28681 31405 . - . transcript_id "YNL325C_id002"; gene_id "YNL325C"; gene_name "FIG4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 28681 31405 . - . transcript_id "YNL325C_id002"; gene_id "YNL325C"; gene_name "FIG4"; +chrXIV SGD transcript 28739 31378 . - . transcript_id "YNL325C_id001"; gene_id "YNL325C"; gene_name "FIG4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 28739 31378 . - 0 transcript_id "YNL325C_id001"; gene_name "FIG4"; gene_id "YNL325C"; +chrXIV SGD gene 31050 31445 . + . gene_id "YNL324W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 31050 31445 . + . transcript_id "YNL324W_mRNA"; gene_id "YNL324W"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 31050 31445 . + 0 transcript_id "YNL324W_mRNA"; gene_id "YNL324W"; +chrXIV SGD gene 31877 33379 . + . gene_id "YNL323W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 31877 33379 . + . transcript_id "YNL323W_id002"; gene_id "YNL323W"; gene_name "LEM3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 31877 33379 . + . transcript_id "YNL323W_id002"; gene_id "YNL323W"; gene_name "LEM3"; +chrXIV SGD transcript 31944 33188 . + . transcript_id "YNL323W_id001"; gene_id "YNL323W"; gene_name "LEM3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 31944 33188 . + 0 transcript_id "YNL323W_id001"; gene_name "LEM3"; gene_id "YNL323W"; +chrXIV SGD gene 32716 34253 . - . gene_id "YNL322C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 32716 34253 . - . transcript_id "YNL322C_id004"; gene_id "YNL322C"; gene_name "KRE1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 32716 34253 . - . transcript_id "YNL322C_id004"; gene_id "YNL322C"; gene_name "KRE1"; +chrXIV SGD transcript 33294 34235 . - . transcript_id "YNL322C_id001"; gene_id "YNL322C"; gene_name "KRE1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 33294 34235 . - 0 transcript_id "YNL322C_id001"; gene_name "KRE1"; gene_id "YNL322C"; +chrXIV SGD gene 34696 37422 . + . gene_id "YNL321W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 34696 37422 . + . transcript_id "YNL321W_id001"; gene_id "YNL321W"; gene_name "VNX1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 34696 37422 . + 0 transcript_id "YNL321W_id001"; gene_name "VNX1"; gene_id "YNL321W"; +chrXIV SGD gene 37546 38691 . + . gene_id "YNL320W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 37546 38691 . + . transcript_id "YNL320W_id001"; gene_id "YNL320W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 37546 38691 . + . transcript_id "YNL320W_id001"; gene_id "YNL320W"; +chrXIV SGD transcript 37700 38554 . + . transcript_id "YNL320W_id005"; gene_id "YNL320W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 37700 38554 . + 0 transcript_id "YNL320W_id005"; gene_id "YNL320W"; +chrXIV SGD gene 38642 39082 . + . gene_id "YNL319W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 38642 39082 . + . transcript_id "YNL319W_mRNA"; gene_id "YNL319W"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 38642 39082 . + 0 transcript_id "YNL319W_mRNA"; gene_id "YNL319W"; +chrXIV SGD gene 38707 40329 . - . gene_id "YNL318C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 38707 40329 . - . transcript_id "YNL318C_mRNA"; gene_id "YNL318C"; gene_name "HXT14"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 38707 40329 . - 0 transcript_id "YNL318C_mRNA"; gene_name "HXT14"; gene_id "YNL318C"; +chrXIV SGD gene 40589 42226 . + . gene_id "YNL317W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 40589 42226 . + . transcript_id "YNL317W_id002"; gene_id "YNL317W"; gene_name "PFS2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 40589 42226 . + . transcript_id "YNL317W_id002"; gene_id "YNL317W"; gene_name "PFS2"; +chrXIV SGD transcript 40619 42016 . + . transcript_id "YNL317W_id001"; gene_id "YNL317W"; gene_name "PFS2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 40619 42016 . + 0 transcript_id "YNL317W_id001"; gene_name "PFS2"; gene_id "YNL317W"; +chrXIV SGD gene 41983 43131 . - . gene_id "YNL316C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 41983 43131 . - . transcript_id "YNL316C_id001"; gene_id "YNL316C"; gene_name "PHA2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 41983 43131 . - . transcript_id "YNL316C_id001"; gene_id "YNL316C"; gene_name "PHA2"; +chrXIV SGD transcript 42071 43075 . - . transcript_id "YNL316C_id002"; gene_id "YNL316C"; gene_name "PHA2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 42071 43075 . - 0 transcript_id "YNL316C_id002"; gene_name "PHA2"; gene_id "YNL316C"; +chrXIV SGD gene 43217 44310 . - . gene_id "YNL315C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 43217 44310 . - . transcript_id "YNL315C_id004"; gene_id "YNL315C"; gene_name "ATP11"; transcript_biotype "protein_coding"; +chrXIV SGD exon 43217 44310 . - . transcript_id "YNL315C_id004"; gene_id "YNL315C"; gene_name "ATP11"; +chrXIV SGD transcript 43324 44280 . - . transcript_id "YNL315C_id001"; gene_id "YNL315C"; gene_name "ATP11"; transcript_biotype "protein_coding"; +chrXIV SGD exon 43324 44280 . - 0 transcript_id "YNL315C_id001"; gene_name "ATP11"; gene_id "YNL315C"; +chrXIV SGD gene 44391 45317 . + . gene_id "YNL314W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 44391 45317 . + . transcript_id "YNL314W_id003"; gene_id "YNL314W"; gene_name "DAL82"; transcript_biotype "protein_coding"; +chrXIV SGD exon 44391 45317 . + . transcript_id "YNL314W_id003"; gene_id "YNL314W"; gene_name "DAL82"; +chrXIV SGD transcript 44447 45214 . + . transcript_id "YNL314W_id001"; gene_id "YNL314W"; gene_name "DAL82"; transcript_biotype "protein_coding"; +chrXIV SGD exon 44447 45214 . + 0 transcript_id "YNL314W_id001"; gene_name "DAL82"; gene_id "YNL314W"; +chrXIV SGD gene 45221 48058 . - . gene_id "YNL313C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 45221 48058 . - . transcript_id "YNL313C_id001"; gene_id "YNL313C"; gene_name "EMW1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 45221 48058 . - . transcript_id "YNL313C_id001"; gene_id "YNL313C"; gene_name "EMW1"; +chrXIV SGD transcript 45308 48022 . - . transcript_id "YNL313C_id002"; gene_id "YNL313C"; gene_name "EMW1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 45308 48022 . - 0 transcript_id "YNL313C_id002"; gene_name "EMW1"; gene_id "YNL313C"; +chrXIV SGD gene 48287 49216 . + . gene_id "YNL312W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 48287 49216 . + . transcript_id "YNL312W_id001"; gene_id "YNL312W"; gene_name "RFA2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 48287 48293 . + 0 transcript_id "YNL312W_id001"; gene_name "RFA2"; gene_id "YNL312W"; +chrXIV SGD exon 48402 49216 . + 2 transcript_id "YNL312W_id001"; gene_name "RFA2"; gene_id "YNL312W"; +chrXIV SGD gene 49338 51711 . - . gene_id "YNL311C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 49338 51711 . - . transcript_id "YNL311C_id002"; gene_id "YNL311C"; gene_name "SKP2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 49338 51711 . - . transcript_id "YNL311C_id002"; gene_id "YNL311C"; gene_name "SKP2"; +chrXIV SGD transcript 49397 51688 . - . transcript_id "YNL311C_id001"; gene_id "YNL311C"; gene_name "SKP2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 49397 51688 . - 0 transcript_id "YNL311C_id001"; gene_name "SKP2"; gene_id "YNL311C"; +chrXIV SGD gene 51711 52484 . - . gene_id "YNL310C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 51711 52484 . - . transcript_id "YNL310C_id001"; gene_id "YNL310C"; gene_name "ZIM17"; transcript_biotype "protein_coding"; +chrXIV SGD exon 51711 52484 . - . transcript_id "YNL310C_id001"; gene_id "YNL310C"; gene_name "ZIM17"; +chrXIV SGD transcript 51907 52431 . - . transcript_id "YNL310C_id002"; gene_id "YNL310C"; gene_name "ZIM17"; transcript_biotype "protein_coding"; +chrXIV SGD exon 51907 52431 . - 0 transcript_id "YNL310C_id002"; gene_name "ZIM17"; gene_id "YNL310C"; +chrXIV SGD gene 52597 54158 . + . gene_id "YNL309W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 52597 54158 . + . transcript_id "YNL309W_id002"; gene_id "YNL309W"; gene_name "STB1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 52597 54158 . + . transcript_id "YNL309W_id002"; gene_id "YNL309W"; gene_name "STB1"; +chrXIV SGD transcript 52662 53924 . + . transcript_id "YNL309W_id001"; gene_id "YNL309W"; gene_name "STB1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 52662 53924 . + 0 transcript_id "YNL309W_id001"; gene_name "STB1"; gene_id "YNL309W"; +chrXIV SGD gene 53962 55932 . - . gene_id "YNL308C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 53962 55932 . - . transcript_id "YNL308C_id001"; gene_id "YNL308C"; gene_name "KRI1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 53962 55932 . - . transcript_id "YNL308C_id001"; gene_id "YNL308C"; gene_name "KRI1"; +chrXIV SGD transcript 54122 55897 . - . transcript_id "YNL308C_id002"; gene_id "YNL308C"; gene_name "KRI1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 54122 55897 . - 0 transcript_id "YNL308C_id002"; gene_name "KRI1"; gene_id "YNL308C"; +chrXIV SGD gene 56057 57736 . - . gene_id "YNL307C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 56057 57736 . - . transcript_id "YNL307C_id001"; gene_id "YNL307C"; gene_name "MCK1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 56057 57736 . - . transcript_id "YNL307C_id001"; gene_id "YNL307C"; gene_name "MCK1"; +chrXIV SGD transcript 56446 57573 . - . transcript_id "YNL307C_id002"; gene_id "YNL307C"; gene_name "MCK1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 56446 57573 . - 0 transcript_id "YNL307C_id002"; gene_name "MCK1"; gene_id "YNL307C"; +chrXIV SGD gene 58085 58919 . + . gene_id "YNL306W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 58085 58919 . + . transcript_id "YNL306W_id006"; gene_id "YNL306W"; gene_name "MRPS18"; transcript_biotype "protein_coding"; +chrXIV SGD exon 58085 58919 . + . transcript_id "YNL306W_id006"; gene_id "YNL306W"; gene_name "MRPS18"; +chrXIV SGD transcript 58155 58808 . + . transcript_id "YNL306W_id001"; gene_id "YNL306W"; gene_name "MRPS18"; transcript_biotype "protein_coding"; +chrXIV SGD exon 58155 58808 . + 0 transcript_id "YNL306W_id001"; gene_name "MRPS18"; gene_id "YNL306W"; +chrXIV SGD gene 58815 60003 . - . gene_id "YNL305C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 58815 60003 . - . transcript_id "YNL305C_id001"; gene_id "YNL305C"; gene_name "BXI1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 58815 60003 . - . transcript_id "YNL305C_id001"; gene_id "YNL305C"; gene_name "BXI1"; +chrXIV SGD transcript 58898 59791 . - . transcript_id "YNL305C_id002"; gene_id "YNL305C"; gene_name "BXI1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 58898 59791 . - 0 transcript_id "YNL305C_id002"; gene_name "BXI1"; gene_id "YNL305C"; +chrXIV SGD gene 60262 61749 . + . gene_id "YNL304W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 60262 61749 . + . transcript_id "YNL304W_id001"; gene_id "YNL304W"; gene_name "YPT11"; transcript_biotype "protein_coding"; +chrXIV SGD exon 60262 61749 . + . transcript_id "YNL304W_id001"; gene_id "YNL304W"; gene_name "YPT11"; +chrXIV SGD transcript 60297 61550 . + . transcript_id "YNL304W_id003"; gene_id "YNL304W"; gene_name "YPT11"; transcript_biotype "protein_coding"; +chrXIV SGD exon 60297 61550 . + 0 transcript_id "YNL304W_id003"; gene_name "YPT11"; gene_id "YNL304W"; +chrXIV SGD gene 61510 61857 . + . gene_id "YNL303W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 61510 61857 . + . transcript_id "YNL303W_mRNA"; gene_id "YNL303W"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 61510 61857 . + 0 transcript_id "YNL303W_mRNA"; gene_id "YNL303W"; +chrXIV SGD gene 61747 63147 . - . gene_id "YNL302C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 61747 63147 . - . transcript_id "YNL302C_id001"; gene_id "YNL302C"; gene_name "RPS19B"; transcript_biotype "protein_coding"; +chrXIV SGD exon 61747 63147 . - . transcript_id "YNL302C_id001"; gene_id "YNL302C"; gene_name "RPS19B"; +chrXIV SGD transcript 61958 62943 . - . transcript_id "YNL302C_id003"; gene_id "YNL302C"; gene_name "RPS19B"; transcript_biotype "protein_coding"; +chrXIV SGD exon 61958 62372 . - 1 transcript_id "YNL302C_id003"; gene_name "RPS19B"; gene_id "YNL302C"; +chrXIV SGD exon 62924 62943 . - 0 transcript_id "YNL302C_id003"; gene_name "RPS19B"; gene_id "YNL302C"; +chrXIV SGD gene 63405 64836 . - . gene_id "YNL301C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 63405 64836 . - . transcript_id "YNL301C_id002"; gene_id "YNL301C"; gene_name "RPL18B"; transcript_biotype "protein_coding"; +chrXIV SGD exon 63405 64836 . - . transcript_id "YNL301C_id002"; gene_id "YNL301C"; gene_name "RPL18B"; +chrXIV SGD transcript 63570 64562 . - . transcript_id "YNL301C_id001"; gene_id "YNL301C"; gene_name "RPL18B"; transcript_biotype "protein_coding"; +chrXIV SGD exon 63570 64018 . - 2 transcript_id "YNL301C_id001"; gene_name "RPL18B"; gene_id "YNL301C"; +chrXIV SGD exon 64451 64562 . - 0 transcript_id "YNL301C_id001"; gene_name "RPL18B"; gene_id "YNL301C"; +chrXIV SGD gene 65031 66291 . + . gene_id "YNL300W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 65031 66291 . + . transcript_id "YNL300W_id001"; gene_id "YNL300W"; gene_name "TOS6"; transcript_biotype "protein_coding"; +chrXIV SGD exon 65031 66291 . + . transcript_id "YNL300W_id001"; gene_id "YNL300W"; gene_name "TOS6"; +chrXIV SGD transcript 65744 66052 . + . transcript_id "YNL300W_id003"; gene_id "YNL300W"; gene_name "TOS6"; transcript_biotype "protein_coding"; +chrXIV SGD exon 65744 66052 . + 0 transcript_id "YNL300W_id003"; gene_name "TOS6"; gene_id "YNL300W"; +chrXIV SGD gene 66416 68513 . + . gene_id "YNL299W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 66416 68513 . + . transcript_id "YNL299W_id001"; gene_id "YNL299W"; gene_name "TRF5"; transcript_biotype "protein_coding"; +chrXIV SGD exon 66416 68513 . + . transcript_id "YNL299W_id001"; gene_id "YNL299W"; gene_name "TRF5"; +chrXIV SGD transcript 66517 68445 . + . transcript_id "YNL299W_id002"; gene_id "YNL299W"; gene_name "TRF5"; transcript_biotype "protein_coding"; +chrXIV SGD exon 66517 68445 . + 0 transcript_id "YNL299W_id002"; gene_name "TRF5"; gene_id "YNL299W"; +chrXIV SGD gene 68915 71443 . + . gene_id "YNL298W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 68915 71443 . + . transcript_id "YNL298W_id001"; gene_id "YNL298W"; gene_name "CLA4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 68915 71443 . + 0 transcript_id "YNL298W_id001"; gene_name "CLA4"; gene_id "YNL298W"; +chrXIV SGD gene 71673 76583 . - . gene_id "YNL297C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 71673 76583 . - . transcript_id "YNL297C_mRNA"; gene_id "YNL297C"; gene_name "MON2"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 71673 76583 . - 0 transcript_id "YNL297C_mRNA"; gene_name "MON2"; gene_id "YNL297C"; +chrXIV SGD gene 76273 76587 . + . gene_id "YNL296W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 76273 76587 . + . transcript_id "YNL296W_mRNA"; gene_id "YNL296W"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 76273 76587 . + 0 transcript_id "YNL296W_mRNA"; gene_id "YNL296W"; +chrXIV SGD gene 76797 78657 . + . gene_id "YNL295W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 76797 78657 . + . transcript_id "YNL295W_id006"; gene_id "YNL295W"; gene_name "MRX6"; transcript_biotype "protein_coding"; +chrXIV SGD exon 76797 78657 . + . transcript_id "YNL295W_id006"; gene_id "YNL295W"; gene_name "MRX6"; +chrXIV SGD transcript 76946 78520 . + . transcript_id "YNL295W_id001"; gene_id "YNL295W"; gene_name "MRX6"; transcript_biotype "protein_coding"; +chrXIV SGD exon 76946 78520 . + 0 transcript_id "YNL295W_id001"; gene_name "MRX6"; gene_id "YNL295W"; +chrXIV SGD gene 77941 80449 . - . gene_id "YNL294C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 77941 80449 . - . transcript_id "YNL294C_id001"; gene_id "YNL294C"; gene_name "RIM21"; transcript_biotype "protein_coding"; +chrXIV SGD exon 77941 80449 . - . transcript_id "YNL294C_id001"; gene_id "YNL294C"; gene_name "RIM21"; +chrXIV SGD transcript 78659 80260 . - . transcript_id "YNL294C_id006"; gene_id "YNL294C"; gene_name "RIM21"; transcript_biotype "protein_coding"; +chrXIV SGD exon 78659 80260 . - 0 transcript_id "YNL294C_id006"; gene_name "RIM21"; gene_id "YNL294C"; +chrXIV SGD gene 80576 82637 . + . gene_id "YNL293W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 80576 82637 . + . transcript_id "YNL293W_id001"; gene_id "YNL293W"; gene_name "MSB3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 80576 82637 . + . transcript_id "YNL293W_id001"; gene_id "YNL293W"; gene_name "MSB3"; +chrXIV SGD transcript 80640 82541 . + . transcript_id "YNL293W_id002"; gene_id "YNL293W"; gene_name "MSB3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 80640 82541 . + 0 transcript_id "YNL293W_id002"; gene_name "MSB3"; gene_id "YNL293W"; +chrXIV SGD gene 82746 84302 . + . gene_id "YNL292W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 82746 84302 . + . transcript_id "YNL292W_id001"; gene_id "YNL292W"; gene_name "PUS4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 82746 84302 . + . transcript_id "YNL292W_id001"; gene_id "YNL292W"; gene_name "PUS4"; +chrXIV SGD transcript 82806 84017 . + . transcript_id "YNL292W_id002"; gene_id "YNL292W"; gene_name "PUS4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 82806 84017 . + 0 transcript_id "YNL292W_id002"; gene_name "PUS4"; gene_id "YNL292W"; +chrXIV SGD gene 84011 86049 . - . gene_id "YNL291C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 84011 86049 . - . transcript_id "YNL291C_id001"; gene_id "YNL291C"; gene_name "MID1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 84011 86049 . - . transcript_id "YNL291C_id001"; gene_id "YNL291C"; gene_name "MID1"; +chrXIV SGD transcript 84169 85815 . - . transcript_id "YNL291C_id003"; gene_id "YNL291C"; gene_name "MID1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 84169 85815 . - 0 transcript_id "YNL291C_id003"; gene_name "MID1"; gene_id "YNL291C"; +chrXIV SGD gene 86214 87485 . + . gene_id "YNL290W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 86214 87485 . + . transcript_id "YNL290W_id001"; gene_id "YNL290W"; gene_name "RFC3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 86214 87485 . + . transcript_id "YNL290W_id001"; gene_id "YNL290W"; gene_name "RFC3"; +chrXIV SGD transcript 86218 87240 . + . transcript_id "YNL290W_id002"; gene_id "YNL290W"; gene_name "RFC3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 86218 87240 . + 0 transcript_id "YNL290W_id002"; gene_name "RFC3"; gene_id "YNL290W"; +chrXIV SGD gene 87814 88872 . + . gene_id "YNL289W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 87814 88872 . + . transcript_id "YNL289W_id005"; gene_id "YNL289W"; gene_name "PCL1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 87814 88872 . + . transcript_id "YNL289W_id005"; gene_id "YNL289W"; gene_name "PCL1"; +chrXIV SGD transcript 87897 88736 . + . transcript_id "YNL289W_id001"; gene_id "YNL289W"; gene_name "PCL1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 87897 88736 . + 0 transcript_id "YNL289W_id001"; gene_name "PCL1"; gene_id "YNL289W"; +chrXIV SGD gene 89210 89306 . + . gene_id "YNCN0001W"; gene_biotype "ncRNA"; +chrXIV SGD transcript 89210 89306 . + . transcript_id "YNCN0001W_snoRNA"; gene_id "YNCN0001W"; gene_name "SNR40"; transcript_biotype "ncRNA"; +chrXIV SGD exon 89210 89306 . + . transcript_id "YNCN0001W_snoRNA"; gene_name "SNR40"; gene_id "YNCN0001W"; +chrXIV SGD gene 90158 91597 . + . gene_id "YNL288W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 90158 91597 . + . transcript_id "YNL288W_id001"; gene_id "YNL288W"; gene_name "CAF40"; transcript_biotype "protein_coding"; +chrXIV SGD exon 90158 91597 . + . transcript_id "YNL288W_id001"; gene_id "YNL288W"; gene_name "CAF40"; +chrXIV SGD transcript 90303 91424 . + . transcript_id "YNL288W_id003"; gene_id "YNL288W"; gene_name "CAF40"; transcript_biotype "protein_coding"; +chrXIV SGD exon 90303 91424 . + 0 transcript_id "YNL288W_id003"; gene_name "CAF40"; gene_id "YNL288W"; +chrXIV SGD gene 91793 95033 . + . gene_id "YNL287W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 91793 95033 . + . transcript_id "YNL287W_id004"; gene_id "YNL287W"; gene_name "SEC21"; transcript_biotype "protein_coding"; +chrXIV SGD exon 91793 95033 . + . transcript_id "YNL287W_id004"; gene_id "YNL287W"; gene_name "SEC21"; +chrXIV SGD transcript 91994 94801 . + . transcript_id "YNL287W_id001"; gene_id "YNL287W"; gene_name "SEC21"; transcript_biotype "protein_coding"; +chrXIV SGD exon 91994 94801 . + 0 transcript_id "YNL287W_id001"; gene_name "SEC21"; gene_id "YNL287W"; +chrXIV SGD gene 95066 96168 . + . gene_id "YNL286W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 95066 96168 . + . transcript_id "YNL286W_id004"; gene_id "YNL286W"; gene_name "CUS2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 95066 96168 . + . transcript_id "YNL286W_id004"; gene_id "YNL286W"; gene_name "CUS2"; +chrXIV SGD transcript 95223 96080 . + . transcript_id "YNL286W_id001"; gene_id "YNL286W"; gene_name "CUS2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 95223 96080 . + 0 transcript_id "YNL286W_id001"; gene_name "CUS2"; gene_id "YNL286W"; +chrXIV SGD gene 96173 96544 . + . gene_id "YNL285W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 96173 96544 . + . transcript_id "YNL285W_mRNA"; gene_id "YNL285W"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 96173 96544 . + 0 transcript_id "YNL285W_mRNA"; gene_id "YNL285W"; +chrXIV SGD gene 96241 96312 . - . gene_id "YNCN0002C"; gene_biotype "ncRNA"; +chrXIV SGD transcript 96241 96312 . - . transcript_id "YNCN0002C_tRNA"; gene_id "YNCN0002C"; gene_name "SUF6"; transcript_biotype "ncRNA"; +chrXIV SGD exon 96241 96312 . - . transcript_id "YNCN0002C_tRNA"; gene_name "SUF6"; gene_id "YNCN0002C"; +chrXIV SGD gene 96964 102232 . - . gene_id "YNL284C-B"; gene_biotype "protein_coding"; +chrXIV SGD transcript 96964 102232 . - . transcript_id "YNL284C-B_dummy"; gene_id "YNL284C-B"; transcript_biotype "protein_coding"; +chrXIV SGD exon 96964 100926 . - 0 transcript_id "YNL284C-B_dummy"; gene_id "YNL284C-B"; +chrXIV SGD exon 100928 102232 . - 0 transcript_id "YNL284C-B_dummy"; gene_id "YNL284C-B"; +chrXIV SGD gene 100910 102232 . - . gene_id "YNL284C-A"; gene_biotype "protein_coding"; +chrXIV SGD transcript 100910 102232 . - . transcript_id "YNL284C-A_dummy"; gene_id "YNL284C-A"; transcript_biotype "protein_coding"; +chrXIV SGD exon 100910 102232 . - 0 transcript_id "YNL284C-A_dummy"; gene_id "YNL284C-A"; +chrXIV SGD gene 102716 102789 . + . gene_id "YNCN0003W"; gene_biotype "ncRNA"; +chrXIV SGD transcript 102716 102789 . + . transcript_id "YNCN0003W_tRNA"; gene_id "YNCN0003W"; transcript_biotype "ncRNA"; +chrXIV SGD exon 102716 102789 . + . transcript_id "YNCN0003W_tRNA"; gene_id "YNCN0003W"; +chrXIV SGD gene 103134 104102 . - . gene_id "YNL284C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 103134 104102 . - . transcript_id "YNL284C_mRNA"; gene_id "YNL284C"; gene_name "MRPL10"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 103134 104102 . - 0 transcript_id "YNL284C_mRNA"; gene_name "MRPL10"; gene_id "YNL284C"; +chrXIV SGD gene 104805 104877 . + . gene_id "YNCN0004W"; gene_biotype "ncRNA"; +chrXIV SGD transcript 104805 104877 . + . transcript_id "YNCN0004W_tRNA"; gene_id "YNCN0004W"; transcript_biotype "ncRNA"; +chrXIV SGD exon 104805 104877 . + . transcript_id "YNCN0004W_tRNA"; gene_id "YNCN0004W"; +chrXIV SGD gene 105066 108136 . - . gene_id "YNL283C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 105066 108136 . - . transcript_id "YNL283C_id001"; gene_id "YNL283C"; gene_name "WSC2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 105066 108136 . - . transcript_id "YNL283C_id001"; gene_id "YNL283C"; gene_name "WSC2"; +chrXIV SGD transcript 105184 106695 . - . transcript_id "YNL283C_id002"; gene_id "YNL283C"; gene_name "WSC2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 105184 106695 . - 0 transcript_id "YNL283C_id002"; gene_name "WSC2"; gene_id "YNL283C"; +chrXIV SGD gene 107687 108274 . + . gene_id "YNL282W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 107687 108274 . + . transcript_id "YNL282W_id001"; gene_id "YNL282W"; gene_name "POP3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 107687 108274 . + 0 transcript_id "YNL282W_id001"; gene_name "POP3"; gene_id "YNL282W"; +chrXIV SGD gene 107695 109088 . + . gene_id "YNL281W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 107695 109088 . + . transcript_id "YNL281W_id001"; gene_id "YNL281W"; gene_name "HCH1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 107695 109088 . + . transcript_id "YNL281W_id001"; gene_id "YNL281W"; gene_name "HCH1"; +chrXIV SGD transcript 108467 108928 . + . transcript_id "YNL281W_id002"; gene_id "YNL281W"; gene_name "HCH1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 108467 108928 . + 0 transcript_id "YNL281W_id002"; gene_name "HCH1"; gene_id "YNL281W"; +chrXIV SGD gene 108990 110629 . - . gene_id "YNL280C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 108990 110629 . - . transcript_id "YNL280C_id004"; gene_id "YNL280C"; gene_name "ERG24"; transcript_biotype "protein_coding"; +chrXIV SGD exon 108990 110629 . - . transcript_id "YNL280C_id004"; gene_id "YNL280C"; gene_name "ERG24"; +chrXIV SGD transcript 109095 110411 . - . transcript_id "YNL280C_id001"; gene_id "YNL280C"; gene_name "ERG24"; transcript_biotype "protein_coding"; +chrXIV SGD exon 109095 110411 . - 0 transcript_id "YNL280C_id001"; gene_name "ERG24"; gene_id "YNL280C"; +chrXIV SGD gene 110917 112902 . + . gene_id "YNL279W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 110917 112902 . + . transcript_id "YNL279W_mRNA"; gene_id "YNL279W"; gene_name "PRM1"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 110917 112902 . + 0 transcript_id "YNL279W_mRNA"; gene_name "PRM1"; gene_id "YNL279W"; +chrXIV SGD gene 113155 116652 . + . gene_id "YNL278W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 113155 116652 . + . transcript_id "YNL278W_id003"; gene_id "YNL278W"; gene_name "CAF120"; transcript_biotype "protein_coding"; +chrXIV SGD exon 113155 116652 . + . transcript_id "YNL278W_id003"; gene_id "YNL278W"; gene_name "CAF120"; +chrXIV SGD transcript 113271 116453 . + . transcript_id "YNL278W_id001"; gene_id "YNL278W"; gene_name "CAF120"; transcript_biotype "protein_coding"; +chrXIV SGD exon 113271 116453 . + 0 transcript_id "YNL278W_id001"; gene_name "CAF120"; gene_id "YNL278W"; +chrXIV SGD gene 116677 117185 . + . gene_id "YNL277W-A"; gene_biotype "protein_coding"; +chrXIV SGD transcript 116677 117185 . + . transcript_id "YNL277W-A_id002"; gene_id "YNL277W-A"; transcript_biotype "protein_coding"; +chrXIV SGD exon 116677 117185 . + . transcript_id "YNL277W-A_id002"; gene_id "YNL277W-A"; +chrXIV SGD transcript 116679 116867 . + . transcript_id "YNL277W-A_id001"; gene_id "YNL277W-A"; transcript_biotype "protein_coding"; +chrXIV SGD exon 116679 116867 . + 0 transcript_id "YNL277W-A_id001"; gene_id "YNL277W-A"; +chrXIV SGD gene 117063 118898 . - . gene_id "YNL276C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 117063 118898 . - . transcript_id "YNL276C_id002"; gene_id "YNL276C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 117063 118898 . - . transcript_id "YNL276C_id002"; gene_id "YNL276C"; +chrXIV SGD gene 117254 118929 . + . gene_id "YNL277W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 117254 118929 . + . transcript_id "YNL277W_id009"; gene_id "YNL277W"; gene_name "MET2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 117254 118929 . + . transcript_id "YNL277W_id009"; gene_id "YNL277W"; gene_name "MET2"; +chrXIV SGD transcript 117349 118809 . + . transcript_id "YNL277W_id001"; gene_id "YNL277W"; gene_name "MET2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 117349 118809 . + 0 transcript_id "YNL277W_id001"; gene_name "MET2"; gene_id "YNL277W"; +chrXIV SGD transcript 118431 118826 . - . transcript_id "YNL276C_id001"; gene_id "YNL276C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 118431 118826 . - 0 transcript_id "YNL276C_id001"; gene_id "YNL276C"; +chrXIV SGD gene 119268 120998 . + . gene_id "YNL275W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 119268 120998 . + . transcript_id "YNL275W_id001"; gene_id "YNL275W"; gene_name "BOR1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 119268 120998 . + 0 transcript_id "YNL275W_id001"; gene_name "BOR1"; gene_id "YNL275W"; +chrXIV SGD gene 120953 122237 . - . gene_id "YNL274C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 120953 122237 . - . transcript_id "YNL274C_id006"; gene_id "YNL274C"; gene_name "GOR1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 120953 122237 . - . transcript_id "YNL274C_id006"; gene_id "YNL274C"; gene_name "GOR1"; +chrXIV SGD transcript 121118 122170 . - . transcript_id "YNL274C_id001"; gene_id "YNL274C"; gene_name "GOR1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 121118 122170 . - 0 transcript_id "YNL274C_id001"; gene_name "GOR1"; gene_id "YNL274C"; +chrXIV SGD gene 122883 126599 . + . gene_id "YNL273W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 122883 126599 . + . transcript_id "YNL273W_mRNA"; gene_id "YNL273W"; gene_name "TOF1"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 122883 126599 . + 0 transcript_id "YNL273W_mRNA"; gene_name "TOF1"; gene_id "YNL273W"; +chrXIV SGD gene 126687 129180 . - . gene_id "YNL272C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 126687 129180 . - . transcript_id "YNL272C_id004"; gene_id "YNL272C"; gene_name "SEC2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 126687 129180 . - . transcript_id "YNL272C_id004"; gene_id "YNL272C"; gene_name "SEC2"; +chrXIV SGD transcript 126805 129084 . - . transcript_id "YNL272C_id001"; gene_id "YNL272C"; gene_name "SEC2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 126805 129084 . - 0 transcript_id "YNL272C_id001"; gene_name "SEC2"; gene_id "YNL272C"; +chrXIV SGD gene 129522 135383 . - . gene_id "YNL271C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 129522 135383 . - . transcript_id "YNL271C_mRNA"; gene_id "YNL271C"; gene_name "BNI1"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 129522 135383 . - 0 transcript_id "YNL271C_mRNA"; gene_name "BNI1"; gene_id "YNL271C"; +chrXIV SGD gene 135940 137661 . - . gene_id "YNL270C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 135940 137661 . - . transcript_id "YNL270C_id001"; gene_id "YNL270C"; gene_name "ALP1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 135940 137661 . - 0 transcript_id "YNL270C_id001"; gene_name "ALP1"; gene_id "YNL270C"; +chrXIV SGD gene 137699 138094 . + . gene_id "YNL269W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 137699 138094 . + . transcript_id "YNL269W_mRNA"; gene_id "YNL269W"; gene_name "BSC4"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 137699 138094 . + 0 transcript_id "YNL269W_mRNA"; gene_name "BSC4"; gene_id "YNL269W"; +chrXIV SGD gene 138495 140663 . + . gene_id "YNL268W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 138495 140663 . + . transcript_id "YNL268W_id002"; gene_id "YNL268W"; gene_name "LYP1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 138495 140663 . + . transcript_id "YNL268W_id002"; gene_id "YNL268W"; gene_name "LYP1"; +chrXIV SGD transcript 138550 140385 . + . transcript_id "YNL268W_id001"; gene_id "YNL268W"; gene_name "LYP1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 138550 140385 . + 0 transcript_id "YNL268W_id001"; gene_name "LYP1"; gene_id "YNL268W"; +chrXIV SGD gene 140799 144209 . + . gene_id "YNL267W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 140799 144209 . + . transcript_id "YNL267W_id002"; gene_id "YNL267W"; gene_name "PIK1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 140799 144209 . + . transcript_id "YNL267W_id002"; gene_id "YNL267W"; gene_name "PIK1"; +chrXIV SGD transcript 140878 144078 . + . transcript_id "YNL267W_id001"; gene_id "YNL267W"; gene_name "PIK1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 140878 144078 . + 0 transcript_id "YNL267W_id001"; gene_name "PIK1"; gene_id "YNL267W"; +chrXIV SGD gene 143997 145305 . - . gene_id "YNL265C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 143997 145305 . - . transcript_id "YNL265C_id003"; gene_id "YNL265C"; gene_name "IST1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 143997 145305 . - . transcript_id "YNL265C_id003"; gene_id "YNL265C"; gene_name "IST1"; +chrXIV SGD gene 144245 144664 . + . gene_id "YNL266W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 144245 144664 . + . transcript_id "YNL266W_mRNA"; gene_id "YNL266W"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 144245 144664 . + 0 transcript_id "YNL266W_mRNA"; gene_id "YNL266W"; +chrXIV SGD transcript 144280 145281 . - . transcript_id "YNL265C_id001"; gene_id "YNL265C"; gene_name "IST1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 144280 145149 . - 0 transcript_id "YNL265C_id001"; gene_name "IST1"; gene_id "YNL265C"; +chrXIV SGD exon 145255 145281 . - 0 transcript_id "YNL265C_id001"; gene_name "IST1"; gene_id "YNL265C"; +chrXIV SGD gene 145211 146644 . - . gene_id "YNL264C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 145211 146644 . - . transcript_id "YNL264C_id001"; gene_id "YNL264C"; gene_name "PDR17"; transcript_biotype "protein_coding"; +chrXIV SGD exon 145211 146644 . - . transcript_id "YNL264C_id001"; gene_id "YNL264C"; gene_name "PDR17"; +chrXIV SGD transcript 145563 146615 . - . transcript_id "YNL264C_id002"; gene_id "YNL264C"; gene_name "PDR17"; transcript_biotype "protein_coding"; +chrXIV SGD exon 145563 146615 . - 0 transcript_id "YNL264C_id002"; gene_name "PDR17"; gene_id "YNL264C"; +chrXIV SGD gene 146670 147983 . - . gene_id "YNL263C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 146670 147983 . - . transcript_id "YNL263C_id001"; gene_id "YNL263C"; gene_name "YIF1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 146670 147983 . - . transcript_id "YNL263C_id001"; gene_id "YNL263C"; gene_name "YIF1"; +chrXIV SGD transcript 146896 147840 . - . transcript_id "YNL263C_id006"; gene_id "YNL263C"; gene_name "YIF1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 146896 147840 . - 0 transcript_id "YNL263C_id006"; gene_name "YIF1"; gene_id "YNL263C"; +chrXIV SGD gene 148212 154880 . + . gene_id "YNL262W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 148212 154880 . + . transcript_id "YNL262W_mRNA"; gene_id "YNL262W"; gene_name "POL2"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 148212 154880 . + 0 transcript_id "YNL262W_mRNA"; gene_name "POL2"; gene_id "YNL262W"; +chrXIV SGD gene 155054 157203 . + . gene_id "YNL261W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 155054 157203 . + . transcript_id "YNL261W_id001"; gene_id "YNL261W"; gene_name "ORC5"; transcript_biotype "protein_coding"; +chrXIV SGD exon 155054 157203 . + . transcript_id "YNL261W_id001"; gene_id "YNL261W"; gene_name "ORC5"; +chrXIV SGD transcript 155100 156539 . + . transcript_id "YNL261W_id004"; gene_id "YNL261W"; gene_name "ORC5"; transcript_biotype "protein_coding"; +chrXIV SGD exon 155100 156539 . + 0 transcript_id "YNL261W_id004"; gene_name "ORC5"; gene_id "YNL261W"; +chrXIV SGD gene 156859 157347 . - . gene_id "YNL260C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 156859 157347 . - . transcript_id "YNL260C_mRNA"; gene_id "YNL260C"; gene_name "LTO1"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 156859 157347 . - 0 transcript_id "YNL260C_mRNA"; gene_name "LTO1"; gene_id "YNL260C"; +chrXIV SGD gene 157557 159089 . - . gene_id "YNL259C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 157557 159089 . - . transcript_id "YNL259C_id001"; gene_id "YNL259C"; gene_name "ATX1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 157557 159089 . - . transcript_id "YNL259C_id001"; gene_id "YNL259C"; gene_name "ATX1"; +chrXIV SGD transcript 157644 157865 . - . transcript_id "YNL259C_id002"; gene_id "YNL259C"; gene_name "ATX1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 157644 157865 . - 0 transcript_id "YNL259C_id002"; gene_name "ATX1"; gene_id "YNL259C"; +chrXIV SGD gene 158001 160400 . - . gene_id "YNL258C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 158001 160400 . - . transcript_id "YNL258C_id001"; gene_id "YNL258C"; gene_name "DSL1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 158001 160400 . - . transcript_id "YNL258C_id001"; gene_id "YNL258C"; gene_name "DSL1"; +chrXIV SGD transcript 158109 160373 . - . transcript_id "YNL258C_id002"; gene_id "YNL258C"; gene_name "DSL1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 158109 160373 . - 0 transcript_id "YNL258C_id002"; gene_name "DSL1"; gene_id "YNL258C"; +chrXIV SGD gene 160631 164320 . - . gene_id "YNL257C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 160631 164320 . - . transcript_id "YNL257C_mRNA"; gene_id "YNL257C"; gene_name "SIP3"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 160631 164320 . - 0 transcript_id "YNL257C_mRNA"; gene_name "SIP3"; gene_id "YNL257C"; +chrXIV SGD gene 164538 167163 . + . gene_id "YNL256W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 164538 167163 . + . transcript_id "YNL256W_id001"; gene_id "YNL256W"; gene_name "FOL1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 164538 167163 . + . transcript_id "YNL256W_id001"; gene_id "YNL256W"; gene_name "FOL1"; +chrXIV SGD transcript 164623 167097 . + . transcript_id "YNL256W_id002"; gene_id "YNL256W"; gene_name "FOL1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 164623 167097 . + 0 transcript_id "YNL256W_id002"; gene_name "FOL1"; gene_id "YNL256W"; +chrXIV SGD gene 167091 169242 . - . gene_id "YNL255C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 167091 169242 . - . transcript_id "YNL255C_id001"; gene_id "YNL255C"; gene_name "GIS2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 167091 169242 . - . transcript_id "YNL255C_id001"; gene_id "YNL255C"; gene_name "GIS2"; +chrXIV SGD transcript 167329 167790 . - . transcript_id "YNL255C_id005"; gene_id "YNL255C"; gene_name "GIS2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 167329 167790 . - 0 transcript_id "YNL255C_id005"; gene_name "GIS2"; gene_id "YNL255C"; +chrXIV SGD gene 167816 169296 . - . gene_id "YNL254C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 167816 169296 . - . transcript_id "YNL254C_id001"; gene_id "YNL254C"; gene_name "RTC4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 167816 169296 . - . transcript_id "YNL254C_id001"; gene_id "YNL254C"; gene_name "RTC4"; +chrXIV SGD transcript 168043 169248 . - . transcript_id "YNL254C_id002"; gene_id "YNL254C"; gene_name "RTC4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 168043 169248 . - 0 transcript_id "YNL254C_id002"; gene_name "RTC4"; gene_id "YNL254C"; +chrXIV SGD gene 169988 171458 . + . gene_id "YNL253W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 169988 171458 . + . transcript_id "YNL253W_id002"; gene_id "YNL253W"; gene_name "TEX1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 169988 171458 . + . transcript_id "YNL253W_id002"; gene_id "YNL253W"; gene_name "TEX1"; +chrXIV SGD transcript 170018 171286 . + . transcript_id "YNL253W_id001"; gene_id "YNL253W"; gene_name "TEX1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 170018 171286 . + 0 transcript_id "YNL253W_id001"; gene_name "TEX1"; gene_id "YNL253W"; +chrXIV SGD gene 171276 172306 . - . gene_id "YNL252C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 171276 172306 . - . transcript_id "YNL252C_id006"; gene_id "YNL252C"; gene_name "MRPL17"; transcript_biotype "protein_coding"; +chrXIV SGD exon 171276 172306 . - . transcript_id "YNL252C_id006"; gene_id "YNL252C"; gene_name "MRPL17"; +chrXIV SGD transcript 171441 172286 . - . transcript_id "YNL252C_id001"; gene_id "YNL252C"; gene_name "MRPL17"; transcript_biotype "protein_coding"; +chrXIV SGD exon 171441 172286 . - 0 transcript_id "YNL252C_id001"; gene_name "MRPL17"; gene_id "YNL252C"; +chrXIV SGD gene 172422 174587 . - . gene_id "YNL251C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 172422 174587 . - . transcript_id "YNL251C_id004"; gene_id "YNL251C"; gene_name "NRD1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 172422 174587 . - . transcript_id "YNL251C_id004"; gene_id "YNL251C"; gene_name "NRD1"; +chrXIV SGD transcript 172588 174315 . - . transcript_id "YNL251C_id001"; gene_id "YNL251C"; gene_name "NRD1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 172588 174315 . - 0 transcript_id "YNL251C_id001"; gene_name "NRD1"; gene_id "YNL251C"; +chrXIV SGD gene 175410 179348 . + . gene_id "YNL250W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 175410 179348 . + . transcript_id "YNL250W_mRNA"; gene_id "YNL250W"; gene_name "RAD50"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 175410 179348 . + 0 transcript_id "YNL250W_mRNA"; gene_name "RAD50"; gene_id "YNL250W"; +chrXIV SGD gene 178841 181044 . - . gene_id "YNL249C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 178841 181044 . - . transcript_id "YNL249C_id002"; gene_id "YNL249C"; gene_name "MPA43"; transcript_biotype "protein_coding"; +chrXIV SGD exon 178841 181044 . - . transcript_id "YNL249C_id002"; gene_id "YNL249C"; gene_name "MPA43"; +chrXIV SGD transcript 179394 181022 . - . transcript_id "YNL249C_id001"; gene_id "YNL249C"; gene_name "MPA43"; transcript_biotype "protein_coding"; +chrXIV SGD exon 179394 181022 . - 0 transcript_id "YNL249C_id001"; gene_name "MPA43"; gene_id "YNL249C"; +chrXIV SGD gene 181072 182665 . - . gene_id "YNL248C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 181072 182665 . - . transcript_id "YNL248C_id001"; gene_id "YNL248C"; gene_name "RPA49"; transcript_biotype "protein_coding"; +chrXIV SGD exon 181072 182665 . - . transcript_id "YNL248C_id001"; gene_id "YNL248C"; gene_name "RPA49"; +chrXIV SGD transcript 181361 182608 . - . transcript_id "YNL248C_id004"; gene_id "YNL248C"; gene_name "RPA49"; transcript_biotype "protein_coding"; +chrXIV SGD exon 181361 182608 . - 0 transcript_id "YNL248C_id004"; gene_name "RPA49"; gene_id "YNL248C"; +chrXIV SGD gene 182842 185349 . + . gene_id "YNL247W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 182842 185349 . + . transcript_id "YNL247W_id002"; gene_id "YNL247W"; gene_name "CRS1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 182842 185349 . + . transcript_id "YNL247W_id002"; gene_id "YNL247W"; gene_name "CRS1"; +chrXIV SGD transcript 182875 185178 . + . transcript_id "YNL247W_id001"; gene_id "YNL247W"; gene_name "CRS1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 182875 185178 . + 0 transcript_id "YNL247W_id001"; gene_name "CRS1"; gene_id "YNL247W"; +chrXIV SGD gene 185280 186905 . - . gene_id "YNL245C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 185280 186905 . - . transcript_id "YNL245C_id001"; gene_id "YNL245C"; gene_name "CWC25"; transcript_biotype "protein_coding"; +chrXIV SGD exon 185280 186905 . - . transcript_id "YNL245C_id001"; gene_id "YNL245C"; gene_name "CWC25"; +chrXIV SGD gene 185459 187128 . + . gene_id "YNL246W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 185459 187128 . + . transcript_id "YNL246W_id002"; gene_id "YNL246W"; gene_name "VPS75"; transcript_biotype "protein_coding"; +chrXIV SGD exon 185459 187128 . + . transcript_id "YNL246W_id002"; gene_id "YNL246W"; gene_name "VPS75"; +chrXIV SGD transcript 185460 186349 . + . transcript_id "YNL246W_id001"; gene_id "YNL246W"; gene_name "VPS75"; transcript_biotype "protein_coding"; +chrXIV SGD exon 185460 185491 . + 0 transcript_id "YNL246W_id001"; gene_name "VPS75"; gene_id "YNL246W"; +chrXIV SGD exon 185587 186349 . + 1 transcript_id "YNL246W_id001"; gene_name "VPS75"; gene_id "YNL246W"; +chrXIV SGD transcript 186346 186885 . - . transcript_id "YNL245C_id002"; gene_id "YNL245C"; gene_name "CWC25"; transcript_biotype "protein_coding"; +chrXIV SGD exon 186346 186885 . - 0 transcript_id "YNL245C_id002"; gene_name "CWC25"; gene_id "YNL245C"; +chrXIV SGD gene 187021 187594 . - . gene_id "YNL244C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 187021 187594 . - . transcript_id "YNL244C_id003"; gene_id "YNL244C"; gene_name "SUI1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 187021 187594 . - . transcript_id "YNL244C_id003"; gene_id "YNL244C"; gene_name "SUI1"; +chrXIV SGD transcript 187170 187496 . - . transcript_id "YNL244C_id001"; gene_id "YNL244C"; gene_name "SUI1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 187170 187496 . - 0 transcript_id "YNL244C_id001"; gene_name "SUI1"; gene_id "YNL244C"; +chrXIV SGD gene 187984 191035 . + . gene_id "YNL243W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 187984 191035 . + . transcript_id "YNL243W_id001"; gene_id "YNL243W"; gene_name "SLA2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 187984 191035 . + . transcript_id "YNL243W_id001"; gene_id "YNL243W"; gene_name "SLA2"; +chrXIV SGD transcript 188051 190957 . + . transcript_id "YNL243W_id002"; gene_id "YNL243W"; gene_name "SLA2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 188051 190957 . + 0 transcript_id "YNL243W_id002"; gene_name "SLA2"; gene_id "YNL243W"; +chrXIV SGD gene 191324 196102 . + . gene_id "YNL242W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 191324 196102 . + . transcript_id "YNL242W_mRNA"; gene_id "YNL242W"; gene_name "ATG2"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 191324 196102 . + 0 transcript_id "YNL242W_mRNA"; gene_name "ATG2"; gene_id "YNL242W"; +chrXIV SGD gene 196181 198131 . - . gene_id "YNL241C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 196181 198131 . - . transcript_id "YNL241C_id002"; gene_id "YNL241C"; gene_name "ZWF1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 196181 198131 . - . transcript_id "YNL241C_id002"; gene_id "YNL241C"; gene_name "ZWF1"; +chrXIV SGD transcript 196426 197943 . - . transcript_id "YNL241C_id001"; gene_id "YNL241C"; gene_name "ZWF1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 196426 197943 . - 0 transcript_id "YNL241C_id001"; gene_name "ZWF1"; gene_id "YNL241C"; +chrXIV SGD gene 198396 200025 . - . gene_id "YNL240C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 198396 200025 . - . transcript_id "YNL240C_id003"; gene_id "YNL240C"; gene_name "NAR1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 198396 200025 . - . transcript_id "YNL240C_id003"; gene_id "YNL240C"; gene_name "NAR1"; +chrXIV SGD transcript 198502 199977 . - . transcript_id "YNL240C_id001"; gene_id "YNL240C"; gene_name "NAR1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 198502 199977 . - 0 transcript_id "YNL240C_id001"; gene_name "NAR1"; gene_id "YNL240C"; +chrXIV SGD gene 200190 202037 . + . gene_id "YNL239W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 200190 202037 . + . transcript_id "YNL239W_id001"; gene_id "YNL239W"; gene_name "LAP3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 200190 202037 . + . transcript_id "YNL239W_id001"; gene_id "YNL239W"; gene_name "LAP3"; +chrXIV SGD transcript 200569 201933 . + . transcript_id "YNL239W_id004"; gene_id "YNL239W"; gene_name "LAP3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 200569 201933 . + 0 transcript_id "YNL239W_id004"; gene_name "LAP3"; gene_id "YNL239W"; +chrXIV SGD gene 202114 204993 . + . gene_id "YNL238W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 202114 204993 . + . transcript_id "YNL238W_id001"; gene_id "YNL238W"; gene_name "KEX2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 202114 204993 . + . transcript_id "YNL238W_id001"; gene_id "YNL238W"; gene_name "KEX2"; +chrXIV SGD transcript 202428 204872 . + . transcript_id "YNL238W_id002"; gene_id "YNL238W"; gene_name "KEX2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 202428 204872 . + 0 transcript_id "YNL238W_id002"; gene_name "KEX2"; gene_id "YNL238W"; +chrXIV SGD gene 205133 206758 . + . gene_id "YNL237W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 205133 206758 . + . transcript_id "YNL237W_id001"; gene_id "YNL237W"; gene_name "YTP1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 205133 206758 . + . transcript_id "YNL237W_id001"; gene_id "YNL237W"; gene_name "YTP1"; +chrXIV SGD transcript 205188 206567 . + . transcript_id "YNL237W_id002"; gene_id "YNL237W"; gene_name "YTP1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 205188 206567 . + 0 transcript_id "YNL237W_id002"; gene_name "YTP1"; gene_id "YNL237W"; +chrXIV SGD gene 206883 209945 . + . gene_id "YNL236W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 206883 209945 . + . transcript_id "YNL236W_id002"; gene_id "YNL236W"; gene_name "SIN4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 206883 209945 . + . transcript_id "YNL236W_id002"; gene_id "YNL236W"; gene_name "SIN4"; +chrXIV SGD transcript 206930 209854 . + . transcript_id "YNL236W_id001"; gene_id "YNL236W"; gene_name "SIN4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 206930 209854 . + 0 transcript_id "YNL236W_id001"; gene_name "SIN4"; gene_id "YNL236W"; +chrXIV SGD gene 209548 209979 . - . gene_id "YNL235C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 209548 209979 . - . transcript_id "YNL235C_mRNA"; gene_id "YNL235C"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 209548 209979 . - 0 transcript_id "YNL235C_mRNA"; gene_id "YNL235C"; +chrXIV SGD gene 210233 211513 . + . gene_id "YNL234W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 210233 211513 . + . transcript_id "YNL234W_id001"; gene_id "YNL234W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 210233 211513 . + 0 transcript_id "YNL234W_id001"; gene_id "YNL234W"; +chrXIV SGD gene 211737 214682 . + . gene_id "YNL233W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 211737 214682 . + . transcript_id "YNL233W_id003"; gene_id "YNL233W"; gene_name "BNI4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 211737 214682 . + . transcript_id "YNL233W_id003"; gene_id "YNL233W"; gene_name "BNI4"; +chrXIV SGD transcript 211922 214600 . + . transcript_id "YNL233W_id001"; gene_id "YNL233W"; gene_name "BNI4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 211922 214600 . + 0 transcript_id "YNL233W_id001"; gene_name "BNI4"; gene_id "YNL233W"; +chrXIV SGD gene 214836 215976 . + . gene_id "YNL232W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 214836 215976 . + . transcript_id "YNL232W_id004"; gene_id "YNL232W"; gene_name "CSL4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 214836 215976 . + . transcript_id "YNL232W_id004"; gene_id "YNL232W"; gene_name "CSL4"; +chrXIV SGD transcript 214923 215801 . + . transcript_id "YNL232W_id001"; gene_id "YNL232W"; gene_name "CSL4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 214923 215801 . + 0 transcript_id "YNL232W_id001"; gene_name "CSL4"; gene_id "YNL232W"; +chrXIV SGD gene 215910 217239 . - . gene_id "YNL231C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 215910 217239 . - . transcript_id "YNL231C_id002"; gene_id "YNL231C"; gene_name "PDR16"; transcript_biotype "protein_coding"; +chrXIV SGD exon 215910 217239 . - . transcript_id "YNL231C_id002"; gene_id "YNL231C"; gene_name "PDR16"; +chrXIV SGD transcript 215987 217042 . - . transcript_id "YNL231C_id001"; gene_id "YNL231C"; gene_name "PDR16"; transcript_biotype "protein_coding"; +chrXIV SGD exon 215987 217042 . - 0 transcript_id "YNL231C_id001"; gene_name "PDR16"; gene_id "YNL231C"; +chrXIV SGD gene 217523 218662 . - . gene_id "YNL230C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 217523 218662 . - . transcript_id "YNL230C_id001"; gene_id "YNL230C"; gene_name "ELA1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 217523 218662 . - 0 transcript_id "YNL230C_id001"; gene_name "ELA1"; gene_id "YNL230C"; +chrXIV SGD gene 219137 220201 . - . gene_id "YNL229C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 219137 220201 . - . transcript_id "YNL229C_id001"; gene_id "YNL229C"; gene_name "URE2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 219137 220201 . - 0 transcript_id "YNL229C_id001"; gene_name "URE2"; gene_id "YNL229C"; +chrXIV SGD gene 220589 222519 . - . gene_id "YNL227C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 220589 222519 . - . transcript_id "YNL227C_id001"; gene_id "YNL227C"; gene_name "JJJ1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 220589 222519 . - . transcript_id "YNL227C_id001"; gene_id "YNL227C"; gene_name "JJJ1"; +chrXIV SGD gene 220645 221421 . + . gene_id "YNL228W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 220645 221421 . + . transcript_id "YNL228W_id001"; gene_id "YNL228W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 220645 221421 . + 0 transcript_id "YNL228W_id001"; gene_id "YNL228W"; +chrXIV SGD transcript 220659 222431 . - . transcript_id "YNL227C_id002"; gene_id "YNL227C"; gene_name "JJJ1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 220659 222431 . - 0 transcript_id "YNL227C_id002"; gene_name "JJJ1"; gene_id "YNL227C"; +chrXIV SGD gene 222239 222649 . + . gene_id "YNL226W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 222239 222649 . + . transcript_id "YNL226W_id001"; gene_id "YNL226W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 222239 222649 . + 0 transcript_id "YNL226W_id001"; gene_id "YNL226W"; +chrXIV SGD gene 222615 224519 . - . gene_id "YNL225C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 222615 224519 . - . transcript_id "YNL225C_id001"; gene_id "YNL225C"; gene_name "CNM67"; transcript_biotype "protein_coding"; +chrXIV SGD exon 222615 224519 . - . transcript_id "YNL225C_id001"; gene_id "YNL225C"; gene_name "CNM67"; +chrXIV SGD transcript 222724 224469 . - . transcript_id "YNL225C_id002"; gene_id "YNL225C"; gene_name "CNM67"; transcript_biotype "protein_coding"; +chrXIV SGD exon 222724 224469 . - 0 transcript_id "YNL225C_id002"; gene_name "CNM67"; gene_id "YNL225C"; +chrXIV SGD gene 224621 227335 . - . gene_id "YNL224C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 224621 227335 . - . transcript_id "YNL224C_id001"; gene_id "YNL224C"; gene_name "SQS1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 224621 227335 . - . transcript_id "YNL224C_id001"; gene_id "YNL224C"; gene_name "SQS1"; +chrXIV SGD transcript 224796 227099 . - . transcript_id "YNL224C_id002"; gene_id "YNL224C"; gene_name "SQS1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 224796 227099 . - 0 transcript_id "YNL224C_id002"; gene_name "SQS1"; gene_id "YNL224C"; +chrXIV SGD gene 227363 228946 . + . gene_id "YNL223W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 227363 228946 . + . transcript_id "YNL223W_id006"; gene_id "YNL223W"; gene_name "ATG4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 227363 228946 . + . transcript_id "YNL223W_id006"; gene_id "YNL223W"; gene_name "ATG4"; +chrXIV SGD transcript 227370 228854 . + . transcript_id "YNL223W_id001"; gene_id "YNL223W"; gene_name "ATG4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 227370 228854 . + 0 transcript_id "YNL223W_id001"; gene_name "ATG4"; gene_id "YNL223W"; +chrXIV SGD gene 229057 229944 . + . gene_id "YNL222W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 229057 229944 . + . transcript_id "YNL222W_id005"; gene_id "YNL222W"; gene_name "SSU72"; transcript_biotype "protein_coding"; +chrXIV SGD exon 229057 229944 . + . transcript_id "YNL222W_id005"; gene_id "YNL222W"; gene_name "SSU72"; +chrXIV SGD transcript 229094 229714 . + . transcript_id "YNL222W_id001"; gene_id "YNL222W"; gene_name "SSU72"; transcript_biotype "protein_coding"; +chrXIV SGD exon 229094 229714 . + 0 transcript_id "YNL222W_id001"; gene_name "SSU72"; gene_id "YNL222W"; +chrXIV SGD gene 230105 230672 . - . gene_id "YNCN0005C"; gene_biotype "ncRNA"; +chrXIV SGD transcript 230105 230672 . - . transcript_id "YNCN0005C_snRNA"; gene_id "YNCN0005C"; gene_name "SNR19"; transcript_biotype "ncRNA"; +chrXIV SGD exon 230105 230672 . - . transcript_id "YNCN0005C_snRNA"; gene_name "SNR19"; gene_id "YNCN0005C"; +chrXIV SGD gene 230929 233753 . - . gene_id "YNL221C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 230929 233753 . - . transcript_id "YNL221C_id001"; gene_id "YNL221C"; gene_name "POP1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 230929 233753 . - . transcript_id "YNL221C_id001"; gene_id "YNL221C"; gene_name "POP1"; +chrXIV SGD transcript 231068 233695 . - . transcript_id "YNL221C_id002"; gene_id "YNL221C"; gene_name "POP1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 231068 233695 . - 0 transcript_id "YNL221C_id002"; gene_name "POP1"; gene_id "YNL221C"; +chrXIV SGD gene 234307 235925 . + . gene_id "YNL220W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 234307 235925 . + . transcript_id "YNL220W_id002"; gene_id "YNL220W"; gene_name "ADE12"; transcript_biotype "protein_coding"; +chrXIV SGD exon 234307 235925 . + . transcript_id "YNL220W_id002"; gene_id "YNL220W"; gene_name "ADE12"; +chrXIV SGD transcript 234413 235714 . + . transcript_id "YNL220W_id001"; gene_id "YNL220W"; gene_name "ADE12"; transcript_biotype "protein_coding"; +chrXIV SGD exon 234413 235714 . + 0 transcript_id "YNL220W_id001"; gene_name "ADE12"; gene_id "YNL220W"; +chrXIV SGD gene 235829 237831 . - . gene_id "YNL219C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 235829 237831 . - . transcript_id "YNL219C_id003"; gene_id "YNL219C"; gene_name "ALG9"; transcript_biotype "protein_coding"; +chrXIV SGD exon 235829 237831 . - . transcript_id "YNL219C_id003"; gene_id "YNL219C"; gene_name "ALG9"; +chrXIV SGD transcript 235996 237663 . - . transcript_id "YNL219C_id001"; gene_id "YNL219C"; gene_name "ALG9"; transcript_biotype "protein_coding"; +chrXIV SGD exon 235996 237663 . - 0 transcript_id "YNL219C_id001"; gene_name "ALG9"; gene_id "YNL219C"; +chrXIV SGD gene 238229 240446 . + . gene_id "YNL218W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 238229 240446 . + . transcript_id "YNL218W_id003"; gene_id "YNL218W"; gene_name "MGS1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 238229 240446 . + . transcript_id "YNL218W_id003"; gene_id "YNL218W"; gene_name "MGS1"; +chrXIV SGD transcript 238238 240001 . + . transcript_id "YNL218W_id001"; gene_id "YNL218W"; gene_name "MGS1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 238238 240001 . + 0 transcript_id "YNL218W_id001"; gene_name "MGS1"; gene_id "YNL218W"; +chrXIV SGD gene 240195 241450 . + . gene_id "YNL217W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 240195 241450 . + . transcript_id "YNL217W_id003"; gene_id "YNL217W"; gene_name "PPN2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 240195 241450 . + . transcript_id "YNL217W_id003"; gene_id "YNL217W"; gene_name "PPN2"; +chrXIV SGD transcript 240331 241311 . + . transcript_id "YNL217W_id001"; gene_id "YNL217W"; gene_name "PPN2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 240331 241311 . + 0 transcript_id "YNL217W_id001"; gene_name "PPN2"; gene_id "YNL217W"; +chrXIV SGD gene 241569 244308 . + . gene_id "YNL216W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 241569 244308 . + . transcript_id "YNL216W_id001"; gene_id "YNL216W"; gene_name "RAP1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 241569 244308 . + . transcript_id "YNL216W_id001"; gene_id "YNL216W"; gene_name "RAP1"; +chrXIV SGD transcript 241689 244172 . + . transcript_id "YNL216W_id002"; gene_id "YNL216W"; gene_name "RAP1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 241689 244172 . + 0 transcript_id "YNL216W_id002"; gene_name "RAP1"; gene_id "YNL216W"; +chrXIV SGD gene 244376 245810 . + . gene_id "YNL215W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 244376 245810 . + . transcript_id "YNL215W_id002"; gene_id "YNL215W"; gene_name "IES2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 244376 245810 . + . transcript_id "YNL215W_id002"; gene_id "YNL215W"; gene_name "IES2"; +chrXIV SGD transcript 244468 245430 . + . transcript_id "YNL215W_id001"; gene_id "YNL215W"; gene_name "IES2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 244468 245430 . + 0 transcript_id "YNL215W_id001"; gene_name "IES2"; gene_id "YNL215W"; +chrXIV SGD gene 245384 246475 . + . gene_id "YNL214W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 245384 246475 . + . transcript_id "YNL214W_id001"; gene_id "YNL214W"; gene_name "PEX17"; transcript_biotype "protein_coding"; +chrXIV SGD exon 245384 246475 . + . transcript_id "YNL214W_id001"; gene_id "YNL214W"; gene_name "PEX17"; +chrXIV SGD transcript 245617 246216 . + . transcript_id "YNL214W_id004"; gene_id "YNL214W"; gene_name "PEX17"; transcript_biotype "protein_coding"; +chrXIV SGD exon 245617 246216 . + 0 transcript_id "YNL214W_id004"; gene_name "PEX17"; gene_id "YNL214W"; +chrXIV SGD gene 246275 247192 . - . gene_id "YNL213C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 246275 247192 . - . transcript_id "YNL213C_id001"; gene_id "YNL213C"; gene_name "RRG9"; transcript_biotype "protein_coding"; +chrXIV SGD exon 246275 247192 . - . transcript_id "YNL213C_id001"; gene_id "YNL213C"; gene_name "RRG9"; +chrXIV SGD transcript 246460 247104 . - . transcript_id "YNL213C_id002"; gene_id "YNL213C"; gene_name "RRG9"; transcript_biotype "protein_coding"; +chrXIV SGD exon 246460 247104 . - 0 transcript_id "YNL213C_id002"; gene_name "RRG9"; gene_id "YNL213C"; +chrXIV SGD gene 247378 249969 . + . gene_id "YNL212W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 247378 249969 . + . transcript_id "YNL212W_id001"; gene_id "YNL212W"; gene_name "VID27"; transcript_biotype "protein_coding"; +chrXIV SGD exon 247378 249969 . + . transcript_id "YNL212W_id001"; gene_id "YNL212W"; gene_name "VID27"; +chrXIV SGD transcript 247461 249809 . + . transcript_id "YNL212W_id002"; gene_id "YNL212W"; gene_name "VID27"; transcript_biotype "protein_coding"; +chrXIV SGD exon 247461 249809 . + 0 transcript_id "YNL212W_id002"; gene_name "VID27"; gene_id "YNL212W"; +chrXIV SGD gene 249898 251733 . - . gene_id "YNL211C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 249898 251733 . - . transcript_id "YNL211C_id002"; gene_id "YNL211C"; gene_name "MRX7"; transcript_biotype "protein_coding"; +chrXIV SGD exon 249898 251733 . - . transcript_id "YNL211C_id002"; gene_id "YNL211C"; gene_name "MRX7"; +chrXIV SGD transcript 250055 250315 . - . transcript_id "YNL211C_id001"; gene_id "YNL211C"; gene_name "MRX7"; transcript_biotype "protein_coding"; +chrXIV SGD exon 250055 250315 . - 0 transcript_id "YNL211C_id001"; gene_name "MRX7"; gene_id "YNL211C"; +chrXIV SGD gene 250931 251743 . + . gene_id "YNL210W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 250931 251743 . + . transcript_id "YNL210W_mRNA"; gene_id "YNL210W"; gene_name "MER1"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 250931 251743 . + 0 transcript_id "YNL210W_mRNA"; gene_name "MER1"; gene_id "YNL210W"; +chrXIV SGD gene 251995 254043 . + . gene_id "YNL209W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 251995 254043 . + . transcript_id "YNL209W_id008"; gene_id "YNL209W"; gene_name "SSB2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 251995 254043 . + . transcript_id "YNL209W_id008"; gene_id "YNL209W"; gene_name "SSB2"; +chrXIV SGD transcript 252059 253900 . + . transcript_id "YNL209W_id001"; gene_id "YNL209W"; gene_name "SSB2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 252059 253900 . + 0 transcript_id "YNL209W_id001"; gene_name "SSB2"; gene_id "YNL209W"; +chrXIV SGD gene 254273 255128 . + . gene_id "YNL208W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 254273 255128 . + . transcript_id "YNL208W_id002"; gene_id "YNL208W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 254273 255128 . + . transcript_id "YNL208W_id002"; gene_id "YNL208W"; +chrXIV SGD transcript 254418 255017 . + . transcript_id "YNL208W_id001"; gene_id "YNL208W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 254418 255017 . + 0 transcript_id "YNL208W_id001"; gene_id "YNL208W"; +chrXIV SGD gene 255235 257302 . + . gene_id "YNL207W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 255235 257302 . + . transcript_id "YNL207W_id001"; gene_id "YNL207W"; gene_name "RIO2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 255235 257302 . + . transcript_id "YNL207W_id001"; gene_id "YNL207W"; gene_name "RIO2"; +chrXIV SGD transcript 255353 256630 . + . transcript_id "YNL207W_id002"; gene_id "YNL207W"; gene_name "RIO2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 255353 256630 . + 0 transcript_id "YNL207W_id002"; gene_name "RIO2"; gene_id "YNL207W"; +chrXIV SGD gene 256546 258192 . - . gene_id "YNL206C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 256546 258192 . - . transcript_id "YNL206C_id001"; gene_id "YNL206C"; gene_name "RTT106"; transcript_biotype "protein_coding"; +chrXIV SGD exon 256546 258192 . - . transcript_id "YNL206C_id001"; gene_id "YNL206C"; gene_name "RTT106"; +chrXIV SGD transcript 256788 258155 . - . transcript_id "YNL206C_id003"; gene_id "YNL206C"; gene_name "RTT106"; transcript_biotype "protein_coding"; +chrXIV SGD exon 256788 258155 . - 0 transcript_id "YNL206C_id003"; gene_name "RTT106"; gene_id "YNL206C"; +chrXIV SGD gene 258155 258577 . - . gene_id "YNL205C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 258155 258577 . - . transcript_id "YNL205C_mRNA"; gene_id "YNL205C"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 258155 258577 . - 0 transcript_id "YNL205C_mRNA"; gene_id "YNL205C"; +chrXIV SGD gene 258375 259277 . - . gene_id "YNL204C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 258375 259277 . - . transcript_id "YNL204C_mRNA"; gene_id "YNL204C"; gene_name "SPS18"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 258375 259277 . - 0 transcript_id "YNL204C_mRNA"; gene_name "SPS18"; gene_id "YNL204C"; +chrXIV SGD gene 259439 260050 . - . gene_id "YNL203C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 259439 260050 . - . transcript_id "YNL203C_mRNA"; gene_id "YNL203C"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 259439 260050 . - 0 transcript_id "YNL203C_mRNA"; gene_id "YNL203C"; +chrXIV SGD gene 259535 260701 . + . gene_id "YNL202W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 259535 260701 . + . transcript_id "YNL202W_id002"; gene_id "YNL202W"; gene_name "SPS19"; transcript_biotype "protein_coding"; +chrXIV SGD exon 259535 260701 . + . transcript_id "YNL202W_id002"; gene_id "YNL202W"; gene_name "SPS19"; +chrXIV SGD transcript 259578 260456 . + . transcript_id "YNL202W_id001"; gene_id "YNL202W"; gene_name "SPS19"; transcript_biotype "protein_coding"; +chrXIV SGD exon 259578 260456 . + 0 transcript_id "YNL202W_id001"; gene_name "SPS19"; gene_id "YNL202W"; +chrXIV SGD gene 260627 263203 . - . gene_id "YNL201C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 260627 263203 . - . transcript_id "YNL201C_id001"; gene_id "YNL201C"; gene_name "PSY2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 260627 263203 . - 0 transcript_id "YNL201C_id001"; gene_name "PSY2"; gene_id "YNL201C"; +chrXIV SGD gene 263576 264590 . - . gene_id "YNL200C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 263576 264590 . - . transcript_id "YNL200C_id001"; gene_id "YNL200C"; gene_name "NNR1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 263576 264590 . - . transcript_id "YNL200C_id001"; gene_id "YNL200C"; gene_name "NNR1"; +chrXIV SGD transcript 263713 264453 . - . transcript_id "YNL200C_id002"; gene_id "YNL200C"; gene_name "NNR1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 263713 264453 . - 0 transcript_id "YNL200C_id002"; gene_name "NNR1"; gene_id "YNL200C"; +chrXIV SGD gene 264749 266658 . - . gene_id "YNL199C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 264749 266658 . - . transcript_id "YNL199C_id002"; gene_id "YNL199C"; gene_name "GCR2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 264749 266658 . - . transcript_id "YNL199C_id002"; gene_id "YNL199C"; gene_name "GCR2"; +chrXIV SGD transcript 264926 266530 . - . transcript_id "YNL199C_id001"; gene_id "YNL199C"; gene_name "GCR2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 264926 266530 . - 0 transcript_id "YNL199C_id001"; gene_name "GCR2"; gene_id "YNL199C"; +chrXIV SGD gene 266514 266816 . - . gene_id "YNL198C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 266514 266816 . - . transcript_id "YNL198C_mRNA"; gene_id "YNL198C"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 266514 266816 . - 0 transcript_id "YNL198C_mRNA"; gene_id "YNL198C"; +chrXIV SGD gene 266916 269957 . - . gene_id "YNL197C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 266916 269957 . - . transcript_id "YNL197C_id002"; gene_id "YNL197C"; gene_name "WHI3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 266916 269957 . - . transcript_id "YNL197C_id002"; gene_id "YNL197C"; gene_name "WHI3"; +chrXIV SGD transcript 267608 269593 . - . transcript_id "YNL197C_id001"; gene_id "YNL197C"; gene_name "WHI3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 267608 269593 . - 0 transcript_id "YNL197C_id001"; gene_name "WHI3"; gene_id "YNL197C"; +chrXIV SGD gene 270275 271171 . - . gene_id "YNL196C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 270275 271171 . - . transcript_id "YNL196C_mRNA"; gene_id "YNL196C"; gene_name "SLZ1"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 270275 271171 . - 0 transcript_id "YNL196C_mRNA"; gene_name "SLZ1"; gene_id "YNL196C"; +chrXIV SGD gene 271523 272308 . - . gene_id "YNL195C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 271523 272308 . - . transcript_id "YNL195C_mRNA"; gene_id "YNL195C"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 271523 272308 . - 0 transcript_id "YNL195C_mRNA"; gene_id "YNL195C"; +chrXIV SGD gene 272710 273615 . - . gene_id "YNL194C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 272710 273615 . - . transcript_id "YNL194C_mRNA"; gene_id "YNL194C"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 272710 273615 . - 0 transcript_id "YNL194C_mRNA"; gene_id "YNL194C"; +chrXIV SGD gene 274315 276162 . + . gene_id "YNL193W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 274315 276162 . + . transcript_id "YNL193W_id001"; gene_id "YNL193W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 274315 276162 . + . transcript_id "YNL193W_id001"; gene_id "YNL193W"; +chrXIV SGD transcript 274368 276044 . + . transcript_id "YNL193W_id002"; gene_id "YNL193W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 274368 276044 . + 0 transcript_id "YNL193W_id002"; gene_id "YNL193W"; +chrXIV SGD gene 276502 279897 . + . gene_id "YNL192W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 276502 279897 . + . transcript_id "YNL192W_id001"; gene_id "YNL192W"; gene_name "CHS1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 276502 279897 . + 0 transcript_id "YNL192W_id001"; gene_name "CHS1"; gene_id "YNL192W"; +chrXIV SGD gene 280339 281626 . + . gene_id "YNL191W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 280339 281626 . + . transcript_id "YNL191W_id002"; gene_id "YNL191W"; gene_name "DUG3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 280339 281626 . + . transcript_id "YNL191W_id002"; gene_id "YNL191W"; gene_name "DUG3"; +chrXIV SGD transcript 280432 281505 . + . transcript_id "YNL191W_id001"; gene_id "YNL191W"; gene_name "DUG3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 280432 281505 . + 0 transcript_id "YNL191W_id001"; gene_name "DUG3"; gene_id "YNL191W"; +chrXIV SGD gene 282153 283786 . + . gene_id "YNL190W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 282153 283786 . + . transcript_id "YNL190W_id002"; gene_id "YNL190W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 282153 283786 . + . transcript_id "YNL190W_id002"; gene_id "YNL190W"; +chrXIV SGD transcript 282395 283009 . + . transcript_id "YNL190W_id001"; gene_id "YNL190W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 282395 283009 . + 0 transcript_id "YNL190W_id001"; gene_id "YNL190W"; +chrXIV SGD gene 284066 286157 . + . gene_id "YNL189W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 284066 286157 . + . transcript_id "YNL189W_id001"; gene_id "YNL189W"; gene_name "SRP1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 284066 286157 . + . transcript_id "YNL189W_id001"; gene_id "YNL189W"; gene_name "SRP1"; +chrXIV SGD transcript 284260 285888 . + . transcript_id "YNL189W_id004"; gene_id "YNL189W"; gene_name "SRP1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 284260 285888 . + 0 transcript_id "YNL189W_id004"; gene_name "SRP1"; gene_id "YNL189W"; +chrXIV SGD gene 286171 287626 . + . gene_id "YNL188W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 286171 287626 . + . transcript_id "YNL188W_id001"; gene_id "YNL188W"; gene_name "KAR1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 286171 287626 . + . transcript_id "YNL188W_id001"; gene_id "YNL188W"; gene_name "KAR1"; +chrXIV SGD transcript 286308 287609 . + . transcript_id "YNL188W_id002"; gene_id "YNL188W"; gene_name "KAR1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 286308 287609 . + 0 transcript_id "YNL188W_id002"; gene_name "KAR1"; gene_id "YNL188W"; +chrXIV SGD gene 287785 289446 . + . gene_id "YNL187W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 287785 289446 . + . transcript_id "YNL187W_id003"; gene_id "YNL187W"; gene_name "SWT21"; transcript_biotype "protein_coding"; +chrXIV SGD exon 287785 289446 . + . transcript_id "YNL187W_id003"; gene_id "YNL187W"; gene_name "SWT21"; +chrXIV SGD transcript 287994 289067 . + . transcript_id "YNL187W_id001"; gene_id "YNL187W"; gene_name "SWT21"; transcript_biotype "protein_coding"; +chrXIV SGD exon 287994 289067 . + 0 transcript_id "YNL187W_id001"; gene_name "SWT21"; gene_id "YNL187W"; +chrXIV SGD gene 289282 292153 . + . gene_id "YNL186W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 289282 292153 . + . transcript_id "YNL186W_id001"; gene_id "YNL186W"; gene_name "UBP10"; transcript_biotype "protein_coding"; +chrXIV SGD exon 289282 292153 . + . transcript_id "YNL186W_id001"; gene_id "YNL186W"; gene_name "UBP10"; +chrXIV SGD transcript 289498 291876 . + . transcript_id "YNL186W_id002"; gene_id "YNL186W"; gene_name "UBP10"; transcript_biotype "protein_coding"; +chrXIV SGD exon 289498 291876 . + 0 transcript_id "YNL186W_id002"; gene_name "UBP10"; gene_id "YNL186W"; +chrXIV SGD gene 291909 292772 . - . gene_id "YNL185C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 291909 292772 . - . transcript_id "YNL185C_id001"; gene_id "YNL185C"; gene_name "MRPL19"; transcript_biotype "protein_coding"; +chrXIV SGD exon 291909 292772 . - . transcript_id "YNL185C_id001"; gene_id "YNL185C"; gene_name "MRPL19"; +chrXIV SGD transcript 292193 292669 . - . transcript_id "YNL185C_id002"; gene_id "YNL185C"; gene_name "MRPL19"; transcript_biotype "protein_coding"; +chrXIV SGD exon 292193 292669 . - 0 transcript_id "YNL185C_id002"; gene_name "MRPL19"; gene_id "YNL185C"; +chrXIV SGD gene 292557 292883 . - . gene_id "YNL184C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 292557 292883 . - . transcript_id "YNL184C_mRNA"; gene_id "YNL184C"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 292557 292883 . - 0 transcript_id "YNL184C_mRNA"; gene_id "YNL184C"; +chrXIV SGD gene 293137 295509 . - . gene_id "YNL183C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 293137 295509 . - . transcript_id "YNL183C_id001"; gene_id "YNL183C"; gene_name "NPR1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 293137 295509 . - 0 transcript_id "YNL183C_id001"; gene_name "NPR1"; gene_id "YNL183C"; +chrXIV SGD gene 295875 298136 . - . gene_id "YNL182C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 295875 298136 . - . transcript_id "YNL182C_id001"; gene_id "YNL182C"; gene_name "IPI3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 295875 298136 . - . transcript_id "YNL182C_id001"; gene_id "YNL182C"; gene_name "IPI3"; +chrXIV SGD transcript 295960 297627 . - . transcript_id "YNL182C_id003"; gene_id "YNL182C"; gene_name "IPI3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 295960 297627 . - 0 transcript_id "YNL182C_id003"; gene_name "IPI3"; gene_id "YNL182C"; +chrXIV SGD gene 298239 299681 . + . gene_id "YNL181W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 298239 299681 . + . transcript_id "YNL181W_id003"; gene_id "YNL181W"; gene_name "PBR1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 298239 299681 . + . transcript_id "YNL181W_id003"; gene_id "YNL181W"; gene_name "PBR1"; +chrXIV SGD transcript 298335 299558 . + . transcript_id "YNL181W_id001"; gene_id "YNL181W"; gene_name "PBR1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 298335 299558 . + 0 transcript_id "YNL181W_id001"; gene_name "PBR1"; gene_id "YNL181W"; +chrXIV SGD gene 299563 300914 . - . gene_id "YNL180C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 299563 300914 . - . transcript_id "YNL180C_id001"; gene_id "YNL180C"; gene_name "RHO5"; transcript_biotype "protein_coding"; +chrXIV SGD exon 299563 300914 . - . transcript_id "YNL180C_id001"; gene_id "YNL180C"; gene_name "RHO5"; +chrXIV SGD transcript 299654 300649 . - . transcript_id "YNL180C_id002"; gene_id "YNL180C"; gene_name "RHO5"; transcript_biotype "protein_coding"; +chrXIV SGD exon 299654 300649 . - 0 transcript_id "YNL180C_id002"; gene_name "RHO5"; gene_id "YNL180C"; +chrXIV SGD gene 300666 301103 . - . gene_id "YNL179C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 300666 301103 . - . transcript_id "YNL179C_mRNA"; gene_id "YNL179C"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 300666 301103 . - 0 transcript_id "YNL179C_mRNA"; gene_id "YNL179C"; +chrXIV SGD gene 302662 304664 . + . gene_id "YNL178W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 302662 304664 . + . transcript_id "YNL178W_id001"; gene_id "YNL178W"; gene_name "RPS3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 302662 304664 . + . transcript_id "YNL178W_id001"; gene_id "YNL178W"; gene_name "RPS3"; +chrXIV SGD transcript 302680 303402 . + . transcript_id "YNL178W_id003"; gene_id "YNL178W"; gene_name "RPS3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 302680 303402 . + 0 transcript_id "YNL178W_id003"; gene_name "RPS3"; gene_id "YNL178W"; +chrXIV SGD gene 303364 304668 . - . gene_id "YNL177C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 303364 304668 . - . transcript_id "YNL177C_id001"; gene_id "YNL177C"; gene_name "MRPL22"; transcript_biotype "protein_coding"; +chrXIV SGD exon 303364 304668 . - . transcript_id "YNL177C_id001"; gene_id "YNL177C"; gene_name "MRPL22"; +chrXIV SGD transcript 303686 304615 . - . transcript_id "YNL177C_id003"; gene_id "YNL177C"; gene_name "MRPL22"; transcript_biotype "protein_coding"; +chrXIV SGD exon 303686 304615 . - 0 transcript_id "YNL177C_id003"; gene_name "MRPL22"; gene_id "YNL177C"; +chrXIV SGD gene 304810 307159 . - . gene_id "YNL176C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 304810 307159 . - . transcript_id "YNL176C_id005"; gene_id "YNL176C"; gene_name "TDA7"; transcript_biotype "protein_coding"; +chrXIV SGD exon 304810 307159 . - . transcript_id "YNL176C_id005"; gene_id "YNL176C"; gene_name "TDA7"; +chrXIV SGD transcript 305070 306980 . - . transcript_id "YNL176C_id001"; gene_id "YNL176C"; gene_name "TDA7"; transcript_biotype "protein_coding"; +chrXIV SGD exon 305070 306980 . - 0 transcript_id "YNL176C_id001"; gene_name "TDA7"; gene_id "YNL176C"; +chrXIV SGD gene 307196 308648 . - . gene_id "YNL175C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 307196 308648 . - . transcript_id "YNL175C_id001"; gene_id "YNL175C"; gene_name "NOP13"; transcript_biotype "protein_coding"; +chrXIV SGD exon 307196 308648 . - . transcript_id "YNL175C_id001"; gene_id "YNL175C"; gene_name "NOP13"; +chrXIV SGD transcript 307401 308612 . - . transcript_id "YNL175C_id002"; gene_id "YNL175C"; gene_name "NOP13"; transcript_biotype "protein_coding"; +chrXIV SGD exon 307401 308612 . - 0 transcript_id "YNL175C_id002"; gene_name "NOP13"; gene_id "YNL175C"; +chrXIV SGD gene 308074 308646 . + . gene_id "YNL174W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 308074 308646 . + . transcript_id "YNL174W_mRNA"; gene_id "YNL174W"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 308074 308646 . + 0 transcript_id "YNL174W_mRNA"; gene_id "YNL174W"; +chrXIV SGD gene 308734 310105 . - . gene_id "YNL173C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 308734 310105 . - . transcript_id "YNL173C_id002"; gene_id "YNL173C"; gene_name "MDG1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 308734 310105 . - . transcript_id "YNL173C_id002"; gene_id "YNL173C"; gene_name "MDG1"; +chrXIV SGD transcript 308957 310057 . - . transcript_id "YNL173C_id001"; gene_id "YNL173C"; gene_name "MDG1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 308957 310057 . - 0 transcript_id "YNL173C_id001"; gene_name "MDG1"; gene_id "YNL173C"; +chrXIV SGD gene 310636 315882 . + . gene_id "YNL172W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 310636 315882 . + . transcript_id "YNL172W_mRNA"; gene_id "YNL172W"; gene_name "APC1"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 310636 315882 . + 0 transcript_id "YNL172W_mRNA"; gene_name "APC1"; gene_id "YNL172W"; +chrXIV SGD gene 315629 315997 . - . gene_id "YNL171C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 315629 315997 . - . transcript_id "YNL171C_mRNA"; gene_id "YNL171C"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 315629 315997 . - 0 transcript_id "YNL171C_mRNA"; gene_id "YNL171C"; +chrXIV SGD gene 315978 316373 . + . gene_id "YNL170W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 315978 316373 . + . transcript_id "YNL170W_mRNA"; gene_id "YNL170W"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 315978 316373 . + 0 transcript_id "YNL170W_mRNA"; gene_id "YNL170W"; +chrXIV SGD gene 316056 317980 . - . gene_id "YNL169C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 316056 317980 . - . transcript_id "YNL169C_id003"; gene_id "YNL169C"; gene_name "PSD1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 316056 317980 . - . transcript_id "YNL169C_id003"; gene_id "YNL169C"; gene_name "PSD1"; +chrXIV SGD transcript 316169 317671 . - . transcript_id "YNL169C_id001"; gene_id "YNL169C"; gene_name "PSD1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 316169 317671 . - 0 transcript_id "YNL169C_id001"; gene_name "PSD1"; gene_id "YNL169C"; +chrXIV SGD gene 317874 319201 . - . gene_id "YNL168C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 317874 319201 . - . transcript_id "YNL168C_id002"; gene_id "YNL168C"; gene_name "FMP41"; transcript_biotype "protein_coding"; +chrXIV SGD exon 317874 319201 . - . transcript_id "YNL168C_id002"; gene_id "YNL168C"; gene_name "FMP41"; +chrXIV SGD transcript 318030 318809 . - . transcript_id "YNL168C_id001"; gene_id "YNL168C"; gene_name "FMP41"; transcript_biotype "protein_coding"; +chrXIV SGD exon 318030 318809 . - 0 transcript_id "YNL168C_id001"; gene_name "FMP41"; gene_id "YNL168C"; +chrXIV SGD gene 319191 321742 . - . gene_id "YNL167C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 319191 321742 . - . transcript_id "YNL167C_id001"; gene_id "YNL167C"; gene_name "SKO1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 319191 321742 . - . transcript_id "YNL167C_id001"; gene_id "YNL167C"; gene_name "SKO1"; +chrXIV SGD transcript 319416 321359 . - . transcript_id "YNL167C_id002"; gene_id "YNL167C"; gene_name "SKO1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 319416 321359 . - 0 transcript_id "YNL167C_id002"; gene_name "SKO1"; gene_id "YNL167C"; +chrXIV SGD gene 322122 323639 . - . gene_id "YNL166C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 322122 323639 . - . transcript_id "YNL166C_id003"; gene_id "YNL166C"; gene_name "BNI5"; transcript_biotype "protein_coding"; +chrXIV SGD exon 322122 323639 . - . transcript_id "YNL166C_id003"; gene_id "YNL166C"; gene_name "BNI5"; +chrXIV SGD transcript 322219 323565 . - . transcript_id "YNL166C_id001"; gene_id "YNL166C"; gene_name "BNI5"; transcript_biotype "protein_coding"; +chrXIV SGD exon 322219 323565 . - 0 transcript_id "YNL166C_id001"; gene_name "BNI5"; gene_id "YNL166C"; +chrXIV SGD gene 323706 325274 . + . gene_id "YNL165W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 323706 325274 . + . transcript_id "YNL165W_id001"; gene_id "YNL165W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 323706 325274 . + . transcript_id "YNL165W_id001"; gene_id "YNL165W"; +chrXIV SGD transcript 323832 325052 . + . transcript_id "YNL165W_id002"; gene_id "YNL165W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 323832 325052 . + 0 transcript_id "YNL165W_id002"; gene_id "YNL165W"; +chrXIV SGD gene 324922 326490 . - . gene_id "YNL164C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 324922 326490 . - . transcript_id "YNL164C_id001"; gene_id "YNL164C"; gene_name "IBD2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 324922 326490 . - . transcript_id "YNL164C_id001"; gene_id "YNL164C"; gene_name "IBD2"; +chrXIV SGD transcript 325265 326320 . - . transcript_id "YNL164C_id004"; gene_id "YNL164C"; gene_name "IBD2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 325265 326320 . - 0 transcript_id "YNL164C_id004"; gene_name "IBD2"; gene_id "YNL164C"; +chrXIV SGD gene 326611 330179 . - . gene_id "YNL163C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 326611 330179 . - . transcript_id "YNL163C_id001"; gene_id "YNL163C"; gene_name "RIA1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 326611 330179 . - . transcript_id "YNL163C_id001"; gene_id "YNL163C"; gene_name "RIA1"; +chrXIV SGD transcript 326741 330073 . - . transcript_id "YNL163C_id003"; gene_id "YNL163C"; gene_name "RIA1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 326741 330073 . - 0 transcript_id "YNL163C_id003"; gene_name "RIA1"; gene_id "YNL163C"; +chrXIV SGD gene 330312 331022 . + . gene_id "YNL162W-A"; gene_biotype "protein_coding"; +chrXIV SGD transcript 330312 331022 . + . transcript_id "YNL162W-A_id001"; gene_id "YNL162W-A"; transcript_biotype "protein_coding"; +chrXIV SGD exon 330312 331022 . + . transcript_id "YNL162W-A_id001"; gene_id "YNL162W-A"; +chrXIV SGD transcript 330329 330547 . + . transcript_id "YNL162W-A_id004"; gene_id "YNL162W-A"; transcript_biotype "protein_coding"; +chrXIV SGD exon 330329 330547 . + 0 transcript_id "YNL162W-A_id004"; gene_id "YNL162W-A"; +chrXIV SGD gene 331295 332295 . + . gene_id "YNL162W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 331295 332295 . + . transcript_id "YNL162W_id005"; gene_id "YNL162W"; gene_name "RPL42A"; transcript_biotype "protein_coding"; +chrXIV SGD exon 331295 332295 . + . transcript_id "YNL162W_id005"; gene_id "YNL162W"; gene_name "RPL42A"; +chrXIV SGD transcript 331322 332154 . + . transcript_id "YNL162W_id001"; gene_id "YNL162W"; gene_name "RPL42A"; transcript_biotype "protein_coding"; +chrXIV SGD exon 331322 331325 . + 0 transcript_id "YNL162W_id001"; gene_name "RPL42A"; gene_id "YNL162W"; +chrXIV SGD exon 331838 332154 . + 2 transcript_id "YNL162W_id001"; gene_name "RPL42A"; gene_id "YNL162W"; +chrXIV SGD gene 332457 335333 . + . gene_id "YNL161W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 332457 335333 . + . transcript_id "YNL161W_id001"; gene_id "YNL161W"; gene_name "CBK1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 332457 335333 . + . transcript_id "YNL161W_id001"; gene_id "YNL161W"; gene_name "CBK1"; +chrXIV SGD transcript 332597 334867 . + . transcript_id "YNL161W_id005"; gene_id "YNL161W"; gene_name "CBK1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 332597 334867 . + 0 transcript_id "YNL161W_id005"; gene_name "CBK1"; gene_id "YNL161W"; +chrXIV SGD gene 336490 338149 . + . gene_id "YNL160W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 336490 338149 . + . transcript_id "YNL160W_id001"; gene_id "YNL160W"; gene_name "YGP1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 336490 338149 . + . transcript_id "YNL160W_id001"; gene_id "YNL160W"; gene_name "YGP1"; +chrXIV SGD transcript 336545 337609 . + . transcript_id "YNL160W_id003"; gene_id "YNL160W"; gene_name "YGP1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 336545 337609 . + 0 transcript_id "YNL160W_id003"; gene_name "YGP1"; gene_id "YNL160W"; +chrXIV SGD gene 337687 339366 . - . gene_id "YNL159C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 337687 339366 . - . transcript_id "YNL159C_id001"; gene_id "YNL159C"; gene_name "ASI2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 337687 339366 . - . transcript_id "YNL159C_id001"; gene_id "YNL159C"; gene_name "ASI2"; +chrXIV SGD transcript 338478 339347 . - . transcript_id "YNL159C_id003"; gene_id "YNL159C"; gene_name "ASI2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 338478 339347 . - 0 transcript_id "YNL159C_id003"; gene_name "ASI2"; gene_id "YNL159C"; +chrXIV SGD gene 339612 340208 . + . gene_id "YNL158W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 339612 340208 . + . transcript_id "YNL158W_mRNA"; gene_id "YNL158W"; gene_name "PGA1"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 339612 340208 . + 0 transcript_id "YNL158W_mRNA"; gene_name "PGA1"; gene_id "YNL158W"; +chrXIV SGD gene 339619 340938 . + . gene_id "YNL157W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 339619 340938 . + . transcript_id "YNL157W_id002"; gene_id "YNL157W"; gene_name "IGO1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 339619 340938 . + . transcript_id "YNL157W_id002"; gene_id "YNL157W"; gene_name "IGO1"; +chrXIV SGD transcript 340352 340858 . + . transcript_id "YNL157W_id001"; gene_id "YNL157W"; gene_name "IGO1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 340352 340858 . + 0 transcript_id "YNL157W_id001"; gene_name "IGO1"; gene_id "YNL157W"; +chrXIV SGD gene 340891 342186 . - . gene_id "YNL156C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 340891 342186 . - . transcript_id "YNL156C_id004"; gene_id "YNL156C"; gene_name "NSG2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 340891 342186 . - . transcript_id "YNL156C_id004"; gene_id "YNL156C"; gene_name "NSG2"; +chrXIV SGD transcript 341069 341968 . - . transcript_id "YNL156C_id001"; gene_id "YNL156C"; gene_name "NSG2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 341069 341968 . - 0 transcript_id "YNL156C_id001"; gene_name "NSG2"; gene_id "YNL156C"; +chrXIV SGD gene 342412 343550 . + . gene_id "YNL155W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 342412 343550 . + . transcript_id "YNL155W_id001"; gene_id "YNL155W"; gene_name "CUZ1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 342412 343550 . + . transcript_id "YNL155W_id001"; gene_id "YNL155W"; gene_name "CUZ1"; +chrXIV SGD transcript 342516 343340 . + . transcript_id "YNL155W_id002"; gene_id "YNL155W"; gene_name "CUZ1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 342516 343340 . + 0 transcript_id "YNL155W_id002"; gene_name "CUZ1"; gene_id "YNL155W"; +chrXIV SGD gene 343372 345498 . - . gene_id "YNL154C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 343372 345498 . - . transcript_id "YNL154C_id001"; gene_id "YNL154C"; gene_name "YCK2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 343372 345498 . - . transcript_id "YNL154C_id001"; gene_id "YNL154C"; gene_name "YCK2"; +chrXIV SGD transcript 343636 345276 . - . transcript_id "YNL154C_id002"; gene_id "YNL154C"; gene_name "YCK2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 343636 345276 . - 0 transcript_id "YNL154C_id002"; gene_name "YCK2"; gene_id "YNL154C"; +chrXIV SGD gene 345438 346645 . - . gene_id "YNL153C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 345438 346645 . - . transcript_id "YNL153C_id001"; gene_id "YNL153C"; gene_name "GIM3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 345438 346645 . - . transcript_id "YNL153C_id001"; gene_id "YNL153C"; gene_name "GIM3"; +chrXIV SGD transcript 345669 346058 . - . transcript_id "YNL153C_id002"; gene_id "YNL153C"; gene_name "GIM3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 345669 346058 . - 0 transcript_id "YNL153C_id002"; gene_name "GIM3"; gene_id "YNL153C"; +chrXIV SGD gene 345772 347610 . + . gene_id "YNL152W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 345772 347610 . + . transcript_id "YNL152W_id001"; gene_id "YNL152W"; gene_name "INN1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 345772 347610 . + . transcript_id "YNL152W_id001"; gene_id "YNL152W"; gene_name "INN1"; +chrXIV SGD transcript 346313 347542 . + . transcript_id "YNL152W_id003"; gene_id "YNL152W"; gene_name "INN1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 346313 347542 . + 0 transcript_id "YNL152W_id003"; gene_name "INN1"; gene_id "YNL152W"; +chrXIV SGD gene 347544 348588 . - . gene_id "YNL151C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 347544 348588 . - . transcript_id "YNL151C_id002"; gene_id "YNL151C"; gene_name "RPC31"; transcript_biotype "protein_coding"; +chrXIV SGD exon 347544 348588 . - . transcript_id "YNL151C_id002"; gene_id "YNL151C"; gene_name "RPC31"; +chrXIV SGD transcript 347766 348521 . - . transcript_id "YNL151C_id001"; gene_id "YNL151C"; gene_name "RPC31"; transcript_biotype "protein_coding"; +chrXIV SGD exon 347766 348521 . - 0 transcript_id "YNL151C_id001"; gene_name "RPC31"; gene_id "YNL151C"; +chrXIV SGD gene 349251 349658 . + . gene_id "YNL150W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 349251 349658 . + . transcript_id "YNL150W_mRNA"; gene_id "YNL150W"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 349251 349658 . + 0 transcript_id "YNL150W_mRNA"; gene_id "YNL150W"; +chrXIV SGD gene 349262 350402 . - . gene_id "YNL149C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 349262 350402 . - . transcript_id "YNL149C_id001"; gene_id "YNL149C"; gene_name "PGA2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 349262 350402 . - . transcript_id "YNL149C_id001"; gene_id "YNL149C"; gene_name "PGA2"; +chrXIV SGD transcript 349367 349756 . - . transcript_id "YNL149C_id003"; gene_id "YNL149C"; gene_name "PGA2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 349367 349756 . - 0 transcript_id "YNL149C_id003"; gene_name "PGA2"; gene_id "YNL149C"; +chrXIV SGD gene 349751 351473 . - . gene_id "YNL148C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 349751 351473 . - . transcript_id "YNL148C_id001"; gene_id "YNL148C"; gene_name "ALF1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 349751 351473 . - . transcript_id "YNL148C_id001"; gene_id "YNL148C"; gene_name "ALF1"; +chrXIV SGD transcript 349907 350671 . - . transcript_id "YNL148C_id003"; gene_id "YNL148C"; gene_name "ALF1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 349907 350671 . - 0 transcript_id "YNL148C_id003"; gene_name "ALF1"; gene_id "YNL148C"; +chrXIV SGD gene 350573 351401 . + . gene_id "YNL147W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 350573 351401 . + . transcript_id "YNL147W_id002"; gene_id "YNL147W"; gene_name "LSM7"; transcript_biotype "protein_coding"; +chrXIV SGD exon 350573 351401 . + . transcript_id "YNL147W_id002"; gene_id "YNL147W"; gene_name "LSM7"; +chrXIV SGD transcript 350940 351383 . + . transcript_id "YNL147W_id001"; gene_id "YNL147W"; gene_name "LSM7"; transcript_biotype "protein_coding"; +chrXIV SGD exon 350940 350957 . + 0 transcript_id "YNL147W_id001"; gene_name "LSM7"; gene_id "YNL147W"; +chrXIV SGD exon 351054 351383 . + 0 transcript_id "YNL147W_id001"; gene_name "LSM7"; gene_id "YNL147W"; +chrXIV SGD gene 351386 351580 . - . gene_id "YNL146C-A"; gene_biotype "protein_coding"; +chrXIV SGD transcript 351386 351580 . - . transcript_id "YNL146C-A_id001"; gene_id "YNL146C-A"; transcript_biotype "protein_coding"; +chrXIV SGD exon 351386 351580 . - 0 transcript_id "YNL146C-A_id001"; gene_id "YNL146C-A"; +chrXIV SGD gene 351563 352327 . + . gene_id "YNL146W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 351563 352327 . + . transcript_id "YNL146W_id003"; gene_id "YNL146W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 351563 352327 . + . transcript_id "YNL146W_id003"; gene_id "YNL146W"; +chrXIV SGD transcript 351715 352017 . + . transcript_id "YNL146W_id001"; gene_id "YNL146W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 351715 352017 . + 0 transcript_id "YNL146W_id001"; gene_id "YNL146W"; +chrXIV SGD gene 352361 352702 . + . gene_id "YNL145W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 352361 352702 . + . transcript_id "YNL145W_id003"; gene_id "YNL145W"; gene_name "MFA2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 352361 352702 . + . transcript_id "YNL145W_id003"; gene_id "YNL145W"; gene_name "MFA2"; +chrXIV SGD transcript 352414 352530 . + . transcript_id "YNL145W_id001"; gene_id "YNL145W"; gene_name "MFA2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 352414 352530 . + 0 transcript_id "YNL145W_id001"; gene_name "MFA2"; gene_id "YNL145W"; +chrXIV SGD gene 352820 355042 . - . gene_id "YNL144C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 352820 355042 . - . transcript_id "YNL144C_id001"; gene_id "YNL144C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 352820 355042 . - 0 transcript_id "YNL144C_id001"; gene_id "YNL144C"; +chrXIV SGD gene 353061 353144 . + . gene_id "YNL144W-A"; gene_biotype "protein_coding"; +chrXIV SGD transcript 353061 353144 . + . transcript_id "YNL144W-A_mRNA"; gene_id "YNL144W-A"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 353061 353144 . + 0 transcript_id "YNL144W-A_mRNA"; gene_id "YNL144W-A"; +chrXIV SGD gene 356794 357186 . - . gene_id "YNL143C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 356794 357186 . - . transcript_id "YNL143C_mRNA"; gene_id "YNL143C"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 356794 357186 . - 0 transcript_id "YNL143C_mRNA"; gene_id "YNL143C"; +chrXIV SGD gene 357118 359041 . + . gene_id "YNL142W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 357118 359041 . + . transcript_id "YNL142W_id001"; gene_id "YNL142W"; gene_name "MEP2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 357118 359041 . + . transcript_id "YNL142W_id001"; gene_id "YNL142W"; gene_name "MEP2"; +chrXIV SGD transcript 357453 358952 . + . transcript_id "YNL142W_id003"; gene_id "YNL142W"; gene_name "MEP2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 357453 358952 . + 0 transcript_id "YNL142W_id003"; gene_name "MEP2"; gene_id "YNL142W"; +chrXIV SGD gene 359511 360757 . + . gene_id "YNL141W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 359511 360757 . + . transcript_id "YNL141W_id001"; gene_id "YNL141W"; gene_name "AAH1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 359511 360757 . + . transcript_id "YNL141W_id001"; gene_id "YNL141W"; gene_name "AAH1"; +chrXIV SGD transcript 359596 360639 . + . transcript_id "YNL141W_id002"; gene_id "YNL141W"; gene_name "AAH1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 359596 360639 . + 0 transcript_id "YNL141W_id002"; gene_name "AAH1"; gene_id "YNL141W"; +chrXIV SGD gene 360418 362620 . - . gene_id "YNL140C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 360418 362620 . - . transcript_id "YNL140C_id002"; gene_id "YNL140C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 360418 362620 . - . transcript_id "YNL140C_id002"; gene_id "YNL140C"; +chrXIV SGD transcript 360917 361486 . - . transcript_id "YNL140C_id001"; gene_id "YNL140C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 360917 361486 . - 0 transcript_id "YNL140C_id001"; gene_id "YNL140C"; +chrXIV SGD gene 360924 365717 . - . gene_id "YNL139C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 360924 365717 . - . transcript_id "YNL139C_mRNA"; gene_id "YNL139C"; gene_name "THO2"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 360924 365717 . - 0 transcript_id "YNL139C_mRNA"; gene_name "THO2"; gene_id "YNL139C"; +chrXIV SGD gene 365950 366655 . + . gene_id "YNL138W-A"; gene_biotype "protein_coding"; +chrXIV SGD transcript 365950 366655 . + . transcript_id "YNL138W-A_id001"; gene_id "YNL138W-A"; gene_name "YSF3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 365950 366655 . + . transcript_id "YNL138W-A_id001"; gene_id "YNL138W-A"; gene_name "YSF3"; +chrXIV SGD transcript 366033 366412 . + . transcript_id "YNL138W-A_id003"; gene_id "YNL138W-A"; gene_name "YSF3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 366033 366035 . + 0 transcript_id "YNL138W-A_id003"; gene_name "YSF3"; gene_id "YNL138W-A"; +chrXIV SGD exon 366158 366412 . + 0 transcript_id "YNL138W-A_id003"; gene_name "YSF3"; gene_id "YNL138W-A"; +chrXIV SGD gene 366710 368519 . + . gene_id "YNL138W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 366710 368519 . + . transcript_id "YNL138W_id004"; gene_id "YNL138W"; gene_name "SRV2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 366710 368519 . + . transcript_id "YNL138W_id004"; gene_id "YNL138W"; gene_name "SRV2"; +chrXIV SGD transcript 366741 368321 . + . transcript_id "YNL138W_id001"; gene_id "YNL138W"; gene_name "SRV2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 366741 368321 . + 0 transcript_id "YNL138W_id001"; gene_name "SRV2"; gene_id "YNL138W"; +chrXIV SGD gene 368320 370161 . - . gene_id "YNL137C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 368320 370161 . - . transcript_id "YNL137C_id001"; gene_id "YNL137C"; gene_name "NAM9"; transcript_biotype "protein_coding"; +chrXIV SGD exon 368320 370161 . - . transcript_id "YNL137C_id001"; gene_id "YNL137C"; gene_name "NAM9"; +chrXIV SGD transcript 368595 370055 . - . transcript_id "YNL137C_id003"; gene_id "YNL137C"; gene_name "NAM9"; transcript_biotype "protein_coding"; +chrXIV SGD exon 368595 370055 . - 0 transcript_id "YNL137C_id003"; gene_name "NAM9"; gene_id "YNL137C"; +chrXIV SGD gene 370311 371829 . + . gene_id "YNL136W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 370311 371829 . + . transcript_id "YNL136W_id001"; gene_id "YNL136W"; gene_name "EAF7"; transcript_biotype "protein_coding"; +chrXIV SGD exon 370311 371829 . + . transcript_id "YNL136W_id001"; gene_id "YNL136W"; gene_name "EAF7"; +chrXIV SGD transcript 370368 371645 . + . transcript_id "YNL136W_id002"; gene_id "YNL136W"; gene_name "EAF7"; transcript_biotype "protein_coding"; +chrXIV SGD exon 370368 371645 . + 0 transcript_id "YNL136W_id002"; gene_name "EAF7"; gene_id "YNL136W"; +chrXIV SGD gene 370835 372230 . - . gene_id "YNL135C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 370835 372230 . - . transcript_id "YNL135C_id001"; gene_id "YNL135C"; gene_name "FPR1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 370835 372230 . - . transcript_id "YNL135C_id001"; gene_id "YNL135C"; gene_name "FPR1"; +chrXIV SGD transcript 371882 372226 . - . transcript_id "YNL135C_id002"; gene_id "YNL135C"; gene_name "FPR1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 371882 372226 . - 0 transcript_id "YNL135C_id002"; gene_name "FPR1"; gene_id "YNL135C"; +chrXIV SGD gene 372398 373932 . - . gene_id "YNL134C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 372398 373932 . - . transcript_id "YNL134C_id002"; gene_id "YNL134C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 372398 373932 . - . transcript_id "YNL134C_id002"; gene_id "YNL134C"; +chrXIV SGD transcript 372451 373581 . - . transcript_id "YNL134C_id001"; gene_id "YNL134C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 372451 373581 . - 0 transcript_id "YNL134C_id001"; gene_id "YNL134C"; +chrXIV SGD gene 374051 374734 . - . gene_id "YNL133C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 374051 374734 . - . transcript_id "YNL133C_id004"; gene_id "YNL133C"; gene_name "FYV6"; transcript_biotype "protein_coding"; +chrXIV SGD exon 374051 374734 . - . transcript_id "YNL133C_id004"; gene_id "YNL133C"; gene_name "FYV6"; +chrXIV SGD transcript 374171 374692 . - . transcript_id "YNL133C_id001"; gene_id "YNL133C"; gene_name "FYV6"; transcript_biotype "protein_coding"; +chrXIV SGD exon 374171 374692 . - 0 transcript_id "YNL133C_id001"; gene_name "FYV6"; gene_id "YNL133C"; +chrXIV SGD gene 374869 374959 . + . gene_id "YNCN0006W"; gene_biotype "ncRNA"; +chrXIV SGD transcript 374869 374959 . + . transcript_id "YNCN0006W_tRNA"; gene_id "YNCN0006W"; transcript_biotype "ncRNA"; +chrXIV SGD exon 374869 374905 . + . transcript_id "YNCN0006W_tRNA"; gene_id "YNCN0006W"; +chrXIV SGD exon 374924 374959 . + . transcript_id "YNCN0006W_tRNA"; gene_id "YNCN0006W"; +chrXIV SGD gene 375230 378626 . + . gene_id "YNL132W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 375230 378626 . + . transcript_id "YNL132W_id003"; gene_id "YNL132W"; gene_name "KRE33"; transcript_biotype "protein_coding"; +chrXIV SGD exon 375230 378626 . + . transcript_id "YNL132W_id003"; gene_id "YNL132W"; gene_name "KRE33"; +chrXIV SGD transcript 375321 378491 . + . transcript_id "YNL132W_id001"; gene_id "YNL132W"; gene_name "KRE33"; transcript_biotype "protein_coding"; +chrXIV SGD exon 375321 378491 . + 0 transcript_id "YNL132W_id001"; gene_name "KRE33"; gene_id "YNL132W"; +chrXIV SGD gene 378687 379553 . + . gene_id "YNL131W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 378687 379553 . + . transcript_id "YNL131W_id002"; gene_id "YNL131W"; gene_name "TOM22"; transcript_biotype "protein_coding"; +chrXIV SGD exon 378687 379553 . + . transcript_id "YNL131W_id002"; gene_id "YNL131W"; gene_name "TOM22"; +chrXIV SGD transcript 378767 379225 . + . transcript_id "YNL131W_id001"; gene_id "YNL131W"; gene_name "TOM22"; transcript_biotype "protein_coding"; +chrXIV SGD exon 378767 379225 . + 0 transcript_id "YNL131W_id001"; gene_name "TOM22"; gene_id "YNL131W"; +chrXIV SGD gene 379463 381212 . - . gene_id "YNL130C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 379463 381212 . - . transcript_id "YNL130C_id001"; gene_id "YNL130C"; gene_name "CPT1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 379463 381212 . - . transcript_id "YNL130C_id001"; gene_id "YNL130C"; gene_name "CPT1"; +chrXIV SGD transcript 379558 380831 . - . transcript_id "YNL130C_id007"; gene_id "YNL130C"; gene_name "CPT1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 379558 380689 . - 1 transcript_id "YNL130C_id007"; gene_name "CPT1"; gene_id "YNL130C"; +chrXIV SGD exon 380782 380831 . - 0 transcript_id "YNL130C_id007"; gene_name "CPT1"; gene_id "YNL130C"; +chrXIV SGD gene 381245 381391 . - . gene_id "YNL130C-A"; gene_biotype "protein_coding"; +chrXIV SGD transcript 381245 381391 . - . transcript_id "YNL130C-A_id001"; gene_id "YNL130C-A"; gene_name "DGR1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 381245 381391 . - 0 transcript_id "YNL130C-A_id001"; gene_name "DGR1"; gene_id "YNL130C-A"; +chrXIV SGD gene 381343 382522 . + . gene_id "YNL129W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 381343 382522 . + . transcript_id "YNL129W_id002"; gene_id "YNL129W"; gene_name "NRK1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 381343 382522 . + . transcript_id "YNL129W_id002"; gene_id "YNL129W"; gene_name "NRK1"; +chrXIV SGD transcript 381480 382202 . + . transcript_id "YNL129W_id001"; gene_id "YNL129W"; gene_name "NRK1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 381480 382202 . + 0 transcript_id "YNL129W_id001"; gene_name "NRK1"; gene_id "YNL129W"; +chrXIV SGD gene 382359 383663 . + . gene_id "YNL128W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 382359 383663 . + . transcript_id "YNL128W_mRNA"; gene_id "YNL128W"; gene_name "TEP1"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 382359 383663 . + 0 transcript_id "YNL128W_mRNA"; gene_name "TEP1"; gene_id "YNL128W"; +chrXIV SGD gene 383987 386848 . + . gene_id "YNL127W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 383987 386848 . + . transcript_id "YNL127W_id001"; gene_id "YNL127W"; gene_name "FAR11"; transcript_biotype "protein_coding"; +chrXIV SGD exon 383987 386848 . + 0 transcript_id "YNL127W_id001"; gene_name "FAR11"; gene_id "YNL127W"; +chrXIV SGD gene 387227 389767 . + . gene_id "YNL126W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 387227 389767 . + . transcript_id "YNL126W_id001"; gene_id "YNL126W"; gene_name "SPC98"; transcript_biotype "protein_coding"; +chrXIV SGD exon 387227 389767 . + 0 transcript_id "YNL126W_id001"; gene_name "SPC98"; gene_id "YNL126W"; +chrXIV SGD gene 390029 392365 . - . gene_id "YNL125C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 390029 392365 . - . transcript_id "YNL125C_id004"; gene_id "YNL125C"; gene_name "ESBP6"; transcript_biotype "protein_coding"; +chrXIV SGD exon 390029 392365 . - . transcript_id "YNL125C_id004"; gene_id "YNL125C"; gene_name "ESBP6"; +chrXIV SGD transcript 390146 392167 . - . transcript_id "YNL125C_id001"; gene_id "YNL125C"; gene_name "ESBP6"; transcript_biotype "protein_coding"; +chrXIV SGD exon 390146 392167 . - 0 transcript_id "YNL125C_id001"; gene_name "ESBP6"; gene_id "YNL125C"; +chrXIV SGD gene 392888 394680 . + . gene_id "YNL124W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 392888 394680 . + . transcript_id "YNL124W_id004"; gene_id "YNL124W"; gene_name "NAF1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 392888 394680 . + . transcript_id "YNL124W_id004"; gene_id "YNL124W"; gene_name "NAF1"; +chrXIV SGD transcript 392892 394370 . + . transcript_id "YNL124W_id001"; gene_id "YNL124W"; gene_name "NAF1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 392892 394370 . + 0 transcript_id "YNL124W_id001"; gene_name "NAF1"; gene_id "YNL124W"; +chrXIV SGD gene 394662 397793 . + . gene_id "YNL123W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 394662 397793 . + . transcript_id "YNL123W_id001"; gene_id "YNL123W"; gene_name "NMA111"; transcript_biotype "protein_coding"; +chrXIV SGD exon 394662 397793 . + . transcript_id "YNL123W_id001"; gene_id "YNL123W"; gene_name "NMA111"; +chrXIV SGD transcript 394685 397678 . + . transcript_id "YNL123W_id002"; gene_id "YNL123W"; gene_name "NMA111"; transcript_biotype "protein_coding"; +chrXIV SGD exon 394685 397678 . + 0 transcript_id "YNL123W_id002"; gene_name "NMA111"; gene_id "YNL123W"; +chrXIV SGD gene 398023 398370 . - . gene_id "YNL122C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 398023 398370 . - . transcript_id "YNL122C_id001"; gene_id "YNL122C"; gene_name "MRP35"; transcript_biotype "protein_coding"; +chrXIV SGD exon 398023 398370 . - 0 transcript_id "YNL122C_id001"; gene_name "MRP35"; gene_id "YNL122C"; +chrXIV SGD gene 398441 400585 . - . gene_id "YNL121C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 398441 400585 . - . transcript_id "YNL121C_id002"; gene_id "YNL121C"; gene_name "TOM70"; transcript_biotype "protein_coding"; +chrXIV SGD exon 398441 400585 . - . transcript_id "YNL121C_id002"; gene_id "YNL121C"; gene_name "TOM70"; +chrXIV SGD transcript 398684 400537 . - . transcript_id "YNL121C_id001"; gene_id "YNL121C"; gene_name "TOM70"; transcript_biotype "protein_coding"; +chrXIV SGD exon 398684 400537 . - 0 transcript_id "YNL121C_id001"; gene_name "TOM70"; gene_id "YNL121C"; +chrXIV SGD gene 400960 402653 . + . gene_id "YNL119W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 400960 402653 . + . transcript_id "YNL119W_id003"; gene_id "YNL119W"; gene_name "NCS2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 400960 402653 . + . transcript_id "YNL119W_id003"; gene_id "YNL119W"; gene_name "NCS2"; +chrXIV SGD gene 401033 401518 . - . gene_id "YNL120C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 401033 401518 . - . transcript_id "YNL120C_mRNA"; gene_id "YNL120C"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 401033 401518 . - 0 transcript_id "YNL120C_mRNA"; gene_id "YNL120C"; +chrXIV SGD transcript 401040 402521 . + . transcript_id "YNL119W_id001"; gene_id "YNL119W"; gene_name "NCS2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 401040 402521 . + 0 transcript_id "YNL119W_id001"; gene_name "NCS2"; gene_id "YNL119W"; +chrXIV SGD gene 402485 405617 . - . gene_id "YNL118C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 402485 405617 . - . transcript_id "YNL118C_id005"; gene_id "YNL118C"; gene_name "DCP2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 402485 405617 . - . transcript_id "YNL118C_id005"; gene_id "YNL118C"; gene_name "DCP2"; +chrXIV SGD transcript 402652 405564 . - . transcript_id "YNL118C_id001"; gene_id "YNL118C"; gene_name "DCP2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 402652 405564 . - 0 transcript_id "YNL118C_id001"; gene_name "DCP2"; gene_id "YNL118C"; +chrXIV SGD gene 406358 408022 . + . gene_id "YNL117W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 406358 408022 . + . transcript_id "YNL117W_mRNA"; gene_id "YNL117W"; gene_name "MLS1"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 406358 408022 . + 0 transcript_id "YNL117W_mRNA"; gene_name "MLS1"; gene_id "YNL117W"; +chrXIV SGD gene 408341 409909 . + . gene_id "YNL116W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 408341 409909 . + . transcript_id "YNL116W_id001"; gene_id "YNL116W"; gene_name "DMA2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 408341 409909 . + 0 transcript_id "YNL116W_id001"; gene_name "DMA2"; gene_id "YNL116W"; +chrXIV SGD gene 409515 412097 . - . gene_id "YNL115C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 409515 412097 . - . transcript_id "YNL115C_id001"; gene_id "YNL115C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 409515 412097 . - . transcript_id "YNL115C_id001"; gene_id "YNL115C"; +chrXIV SGD gene 409608 413378 . + . gene_id "YNL113W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 409608 413378 . + . transcript_id "YNL113W_id001"; gene_id "YNL113W"; gene_name "RPC19"; transcript_biotype "protein_coding"; +chrXIV SGD exon 409608 413378 . + . transcript_id "YNL113W_id001"; gene_id "YNL113W"; gene_name "RPC19"; +chrXIV SGD transcript 410119 412053 . - . transcript_id "YNL115C_id003"; gene_id "YNL115C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 410119 412053 . - 0 transcript_id "YNL115C_id003"; gene_id "YNL115C"; +chrXIV SGD gene 412276 413262 . - . gene_id "YNL114C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 412276 413262 . - . transcript_id "YNL114C_id004"; gene_id "YNL114C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 412276 413262 . - . transcript_id "YNL114C_id004"; gene_id "YNL114C"; +chrXIV SGD transcript 412684 413055 . - . transcript_id "YNL114C_id001"; gene_id "YNL114C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 412684 413055 . - 0 transcript_id "YNL114C_id001"; gene_id "YNL114C"; +chrXIV SGD transcript 412771 413199 . + . transcript_id "YNL113W_id002"; gene_id "YNL113W"; gene_name "RPC19"; transcript_biotype "protein_coding"; +chrXIV SGD exon 412771 413199 . + 0 transcript_id "YNL113W_id002"; gene_name "RPC19"; gene_id "YNL113W"; +chrXIV SGD gene 413598 416793 . + . gene_id "YNL112W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 413598 416793 . + . transcript_id "YNL112W_id001"; gene_id "YNL112W"; gene_name "DBP2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 413598 416793 . + . transcript_id "YNL112W_id001"; gene_id "YNL112W"; gene_name "DBP2"; +chrXIV SGD transcript 413639 416281 . + . transcript_id "YNL112W_id005"; gene_id "YNL112W"; gene_name "DBP2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 413639 414911 . + 0 transcript_id "YNL112W_id005"; gene_name "DBP2"; gene_id "YNL112W"; +chrXIV SGD exon 415914 416281 . + 2 transcript_id "YNL112W_id005"; gene_name "DBP2"; gene_id "YNL112W"; +chrXIV SGD gene 416634 417548 . - . gene_id "YNL111C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 416634 417548 . - . transcript_id "YNL111C_id002"; gene_id "YNL111C"; gene_name "CYB5"; transcript_biotype "protein_coding"; +chrXIV SGD exon 416634 417548 . - . transcript_id "YNL111C_id002"; gene_id "YNL111C"; gene_name "CYB5"; +chrXIV SGD transcript 416940 417302 . - . transcript_id "YNL111C_id001"; gene_id "YNL111C"; gene_name "CYB5"; transcript_biotype "protein_coding"; +chrXIV SGD exon 416940 417302 . - 0 transcript_id "YNL111C_id001"; gene_name "CYB5"; gene_id "YNL111C"; +chrXIV SGD gene 417352 418537 . - . gene_id "YNL110C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 417352 418537 . - . transcript_id "YNL110C_id001"; gene_id "YNL110C"; gene_name "NOP15"; transcript_biotype "protein_coding"; +chrXIV SGD exon 417352 418537 . - . transcript_id "YNL110C_id001"; gene_id "YNL110C"; gene_name "NOP15"; +chrXIV SGD transcript 417826 418488 . - . transcript_id "YNL110C_id002"; gene_id "YNL110C"; gene_name "NOP15"; transcript_biotype "protein_coding"; +chrXIV SGD exon 417826 418488 . - 0 transcript_id "YNL110C_id002"; gene_name "NOP15"; gene_id "YNL110C"; +chrXIV SGD gene 418853 419895 . - . gene_id "YNL108C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 418853 419895 . - . transcript_id "YNL108C_id005"; gene_id "YNL108C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 418853 419895 . - . transcript_id "YNL108C_id005"; gene_id "YNL108C"; +chrXIV SGD gene 418964 419509 . + . gene_id "YNL109W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 418964 419509 . + . transcript_id "YNL109W_id001"; gene_id "YNL109W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 418964 419509 . + 0 transcript_id "YNL109W_id001"; gene_id "YNL109W"; +chrXIV SGD transcript 419014 419826 . - . transcript_id "YNL108C_id001"; gene_id "YNL108C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 419014 419826 . - 0 transcript_id "YNL108C_id001"; gene_id "YNL108C"; +chrXIV SGD gene 419865 420952 . + . gene_id "YNL107W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 419865 420952 . + . transcript_id "YNL107W_id001"; gene_id "YNL107W"; gene_name "YAF9"; transcript_biotype "protein_coding"; +chrXIV SGD exon 419865 420952 . + . transcript_id "YNL107W_id001"; gene_id "YNL107W"; gene_name "YAF9"; +chrXIV SGD transcript 420098 420778 . + . transcript_id "YNL107W_id003"; gene_id "YNL107W"; gene_name "YAF9"; transcript_biotype "protein_coding"; +chrXIV SGD exon 420098 420778 . + 0 transcript_id "YNL107W_id003"; gene_name "YAF9"; gene_id "YNL107W"; +chrXIV SGD gene 420944 424495 . - . gene_id "YNL106C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 420944 424495 . - . transcript_id "YNL106C_id001"; gene_id "YNL106C"; gene_name "INP52"; transcript_biotype "protein_coding"; +chrXIV SGD exon 420944 424495 . - 0 transcript_id "YNL106C_id001"; gene_name "INP52"; gene_id "YNL106C"; +chrXIV SGD gene 424155 424583 . + . gene_id "YNL105W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 424155 424583 . + . transcript_id "YNL105W_mRNA"; gene_id "YNL105W"; gene_name "RRT16"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 424155 424583 . + 0 transcript_id "YNL105W_mRNA"; gene_name "RRT16"; gene_id "YNL105W"; +chrXIV SGD gene 424747 426941 . - . gene_id "YNL104C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 424747 426941 . - . transcript_id "YNL104C_id002"; gene_id "YNL104C"; gene_name "LEU4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 424747 426941 . - . transcript_id "YNL104C_id002"; gene_id "YNL104C"; gene_name "LEU4"; +chrXIV SGD transcript 424895 426754 . - . transcript_id "YNL104C_id001"; gene_id "YNL104C"; gene_name "LEU4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 424895 426754 . - 0 transcript_id "YNL104C_id001"; gene_name "LEU4"; gene_id "YNL104C"; +chrXIV SGD gene 426070 427110 . + . gene_id "YNL103W-A"; gene_biotype "protein_coding"; +chrXIV SGD transcript 426070 427110 . + . transcript_id "YNL103W-A_id001"; gene_id "YNL103W-A"; transcript_biotype "protein_coding"; +chrXIV SGD exon 426070 427110 . + . transcript_id "YNL103W-A_id001"; gene_id "YNL103W-A"; +chrXIV SGD transcript 426719 426808 . + . transcript_id "YNL103W-A_id002"; gene_id "YNL103W-A"; transcript_biotype "protein_coding"; +chrXIV SGD exon 426719 426808 . + 0 transcript_id "YNL103W-A_id002"; gene_id "YNL103W-A"; +chrXIV SGD gene 427540 429830 . + . gene_id "YNL103W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 427540 429830 . + . transcript_id "YNL103W_id006"; gene_id "YNL103W"; gene_name "MET4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 427540 429830 . + . transcript_id "YNL103W_id006"; gene_id "YNL103W"; gene_name "MET4"; +chrXIV SGD transcript 427735 429753 . + . transcript_id "YNL103W_id001"; gene_id "YNL103W"; gene_name "MET4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 427735 429753 . + 0 transcript_id "YNL103W_id001"; gene_name "MET4"; gene_id "YNL103W"; +chrXIV SGD gene 430087 434493 . + . gene_id "YNL102W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 430087 434493 . + . transcript_id "YNL102W_mRNA"; gene_id "YNL102W"; gene_name "POL1"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 430087 434493 . + 0 transcript_id "YNL102W_mRNA"; gene_name "POL1"; gene_id "YNL102W"; +chrXIV SGD gene 434786 437423 . + . gene_id "YNL101W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 434786 437423 . + . transcript_id "YNL101W_id001"; gene_id "YNL101W"; gene_name "AVT4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 434786 437423 . + . transcript_id "YNL101W_id001"; gene_id "YNL101W"; gene_name "AVT4"; +chrXIV SGD transcript 434999 437140 . + . transcript_id "YNL101W_id004"; gene_id "YNL101W"; gene_name "AVT4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 434999 437140 . + 0 transcript_id "YNL101W_id004"; gene_name "AVT4"; gene_id "YNL101W"; +chrXIV SGD gene 437509 438433 . + . gene_id "YNL100W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 437509 438433 . + . transcript_id "YNL100W_id003"; gene_id "YNL100W"; gene_name "MIC27"; transcript_biotype "protein_coding"; +chrXIV SGD exon 437509 438433 . + . transcript_id "YNL100W_id003"; gene_id "YNL100W"; gene_name "MIC27"; +chrXIV SGD transcript 437613 438317 . + . transcript_id "YNL100W_id001"; gene_id "YNL100W"; gene_name "MIC27"; transcript_biotype "protein_coding"; +chrXIV SGD exon 437613 438317 . + 0 transcript_id "YNL100W_id001"; gene_name "MIC27"; gene_id "YNL100W"; +chrXIV SGD gene 438219 439307 . - . gene_id "YNL099C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 438219 439307 . - . transcript_id "YNL099C_id006"; gene_id "YNL099C"; gene_name "OCA1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 438219 439307 . - . transcript_id "YNL099C_id006"; gene_id "YNL099C"; gene_name "OCA1"; +chrXIV SGD transcript 438567 439283 . - . transcript_id "YNL099C_id001"; gene_id "YNL099C"; gene_name "OCA1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 438567 439283 . - 0 transcript_id "YNL099C_id001"; gene_name "OCA1"; gene_id "YNL099C"; +chrXIV SGD gene 439485 440883 . - . gene_id "YNL098C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 439485 440883 . - . transcript_id "YNL098C_id003"; gene_id "YNL098C"; gene_name "RAS2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 439485 440883 . - . transcript_id "YNL098C_id003"; gene_id "YNL098C"; gene_name "RAS2"; +chrXIV SGD transcript 439602 440570 . - . transcript_id "YNL098C_id001"; gene_id "YNL098C"; gene_name "RAS2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 439602 440570 . - 0 transcript_id "YNL098C_id001"; gene_name "RAS2"; gene_id "YNL098C"; +chrXIV SGD gene 440797 440919 . - . gene_id "YNL097C-B"; gene_biotype "protein_coding"; +chrXIV SGD transcript 440797 440919 . - . transcript_id "YNL097C-B_mRNA"; gene_id "YNL097C-B"; gene_name "PLS1"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 440797 440919 . - 0 transcript_id "YNL097C-B_mRNA"; gene_name "PLS1"; gene_id "YNL097C-B"; +chrXIV SGD gene 441235 442497 . - . gene_id "YNL097C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 441235 442497 . - . transcript_id "YNL097C_id005"; gene_id "YNL097C"; gene_name "PHO23"; transcript_biotype "protein_coding"; +chrXIV SGD exon 441235 442497 . - . transcript_id "YNL097C_id005"; gene_id "YNL097C"; gene_name "PHO23"; +chrXIV SGD transcript 441366 442358 . - . transcript_id "YNL097C_id001"; gene_id "YNL097C"; gene_name "PHO23"; transcript_biotype "protein_coding"; +chrXIV SGD exon 441366 442358 . - 0 transcript_id "YNL097C_id001"; gene_name "PHO23"; gene_id "YNL097C"; +chrXIV SGD gene 441431 441586 . + . gene_id "YNL097W-A"; gene_biotype "protein_coding"; +chrXIV SGD transcript 441431 441586 . + . transcript_id "YNL097W-A_id001"; gene_id "YNL097W-A"; transcript_biotype "protein_coding"; +chrXIV SGD exon 441431 441586 . + 0 transcript_id "YNL097W-A_id001"; gene_id "YNL097W-A"; +chrXIV SGD gene 443006 443119 . + . gene_id "YNCN0007W"; gene_biotype "ncRNA"; +chrXIV SGD transcript 443006 443119 . + . transcript_id "YNCN0007W_tRNA"; gene_id "YNCN0007W"; transcript_biotype "ncRNA"; +chrXIV SGD exon 443006 443043 . + . transcript_id "YNCN0007W_tRNA"; gene_id "YNCN0007W"; +chrXIV SGD exon 443076 443119 . + . transcript_id "YNCN0007W_tRNA"; gene_id "YNCN0007W"; +chrXIV SGD gene 443183 444414 . - . gene_id "YNL096C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 443183 444414 . - . transcript_id "YNL096C_id002"; gene_id "YNL096C"; gene_name "RPS7B"; transcript_biotype "protein_coding"; +chrXIV SGD exon 443183 444414 . - . transcript_id "YNL096C_id002"; gene_id "YNL096C"; gene_name "RPS7B"; +chrXIV SGD transcript 443398 444315 . - . transcript_id "YNL096C_id001"; gene_id "YNL096C"; gene_name "RPS7B"; transcript_biotype "protein_coding"; +chrXIV SGD exon 443398 443826 . - 0 transcript_id "YNL096C_id001"; gene_name "RPS7B"; gene_id "YNL096C"; +chrXIV SGD exon 444172 444315 . - 0 transcript_id "YNL096C_id001"; gene_name "RPS7B"; gene_id "YNL096C"; +chrXIV SGD gene 444618 447033 . - . gene_id "YNL095C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 444618 447033 . - . transcript_id "YNL095C_id002"; gene_id "YNL095C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 444618 447033 . - . transcript_id "YNL095C_id002"; gene_id "YNL095C"; +chrXIV SGD transcript 444912 446840 . - . transcript_id "YNL095C_id001"; gene_id "YNL095C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 444912 446840 . - 0 transcript_id "YNL095C_id001"; gene_id "YNL095C"; +chrXIV SGD gene 447345 449577 . + . gene_id "YNL094W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 447345 449577 . + . transcript_id "YNL094W_id001"; gene_id "YNL094W"; gene_name "APP1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 447345 449577 . + . transcript_id "YNL094W_id001"; gene_id "YNL094W"; gene_name "APP1"; +chrXIV SGD transcript 447611 449374 . + . transcript_id "YNL094W_id002"; gene_id "YNL094W"; gene_name "APP1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 447611 449374 . + 0 transcript_id "YNL094W_id002"; gene_name "APP1"; gene_id "YNL094W"; +chrXIV SGD gene 449868 450530 . + . gene_id "YNL093W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 449868 450530 . + . transcript_id "YNL093W_id001"; gene_id "YNL093W"; gene_name "YPT53"; transcript_biotype "protein_coding"; +chrXIV SGD exon 449868 450530 . + 0 transcript_id "YNL093W_id001"; gene_name "YPT53"; gene_id "YNL093W"; +chrXIV SGD gene 450787 452170 . + . gene_id "YNL092W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 450787 452170 . + . transcript_id "YNL092W_id002"; gene_id "YNL092W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 450787 452170 . + . transcript_id "YNL092W_id002"; gene_id "YNL092W"; +chrXIV SGD transcript 450871 452073 . + . transcript_id "YNL092W_id001"; gene_id "YNL092W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 450871 452073 . + 0 transcript_id "YNL092W_id001"; gene_id "YNL092W"; +chrXIV SGD gene 452267 456202 . + . gene_id "YNL091W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 452267 456202 . + . transcript_id "YNL091W_id004"; gene_id "YNL091W"; gene_name "NST1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 452267 456202 . + . transcript_id "YNL091W_id004"; gene_id "YNL091W"; gene_name "NST1"; +chrXIV SGD transcript 452408 456130 . + . transcript_id "YNL091W_id001"; gene_id "YNL091W"; gene_name "NST1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 452408 456130 . + 0 transcript_id "YNL091W_id001"; gene_name "NST1"; gene_id "YNL091W"; +chrXIV SGD gene 456392 457572 . + . gene_id "YNL090W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 456392 457572 . + . transcript_id "YNL090W_id003"; gene_id "YNL090W"; gene_name "RHO2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 456392 457572 . + . transcript_id "YNL090W_id003"; gene_id "YNL090W"; gene_name "RHO2"; +chrXIV SGD transcript 456565 457143 . + . transcript_id "YNL090W_id001"; gene_id "YNL090W"; gene_name "RHO2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 456565 457143 . + 0 transcript_id "YNL090W_id001"; gene_name "RHO2"; gene_id "YNL090W"; +chrXIV SGD gene 456693 457169 . - . gene_id "YNL089C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 456693 457169 . - . transcript_id "YNL089C_mRNA"; gene_id "YNL089C"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 456693 457169 . - 0 transcript_id "YNL089C_mRNA"; gene_id "YNL089C"; +chrXIV SGD gene 457704 461990 . + . gene_id "YNL088W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 457704 461990 . + . transcript_id "YNL088W_mRNA"; gene_id "YNL088W"; gene_name "TOP2"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 457704 461990 . + 0 transcript_id "YNL088W_mRNA"; gene_name "TOP2"; gene_id "YNL088W"; +chrXIV SGD gene 461175 466152 . + . gene_id "YNL087W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 461175 466152 . + . transcript_id "YNL087W_id001"; gene_id "YNL087W"; gene_name "TCB2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 461175 466152 . + . transcript_id "YNL087W_id001"; gene_id "YNL087W"; gene_name "TCB2"; +chrXIV SGD transcript 462411 465947 . + . transcript_id "YNL087W_id003"; gene_id "YNL087W"; gene_name "TCB2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 462411 465947 . + 0 transcript_id "YNL087W_id003"; gene_name "TCB2"; gene_id "YNL087W"; +chrXIV SGD gene 466237 467120 . + . gene_id "YNL086W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 466237 467120 . + . transcript_id "YNL086W_id001"; gene_id "YNL086W"; gene_name "SNN1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 466237 467120 . + . transcript_id "YNL086W_id001"; gene_id "YNL086W"; gene_name "SNN1"; +chrXIV SGD transcript 466334 466642 . + . transcript_id "YNL086W_id003"; gene_id "YNL086W"; gene_name "SNN1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 466334 466642 . + 0 transcript_id "YNL086W_id003"; gene_name "SNN1"; gene_id "YNL086W"; +chrXIV SGD gene 466850 469918 . + . gene_id "YNL085W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 466850 469918 . + . transcript_id "YNL085W_id002"; gene_id "YNL085W"; gene_name "MKT1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 466850 469918 . + . transcript_id "YNL085W_id002"; gene_id "YNL085W"; gene_name "MKT1"; +chrXIV SGD transcript 467131 469623 . + . transcript_id "YNL085W_id001"; gene_id "YNL085W"; gene_name "MKT1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 467131 469623 . + 0 transcript_id "YNL085W_id001"; gene_name "MKT1"; gene_id "YNL085W"; +chrXIV SGD gene 469804 471156 . - . gene_id "YNL084C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 469804 471156 . - . transcript_id "YNL084C_id003"; gene_id "YNL084C"; gene_name "END3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 469804 471156 . - . transcript_id "YNL084C_id003"; gene_id "YNL084C"; gene_name "END3"; +chrXIV SGD transcript 470053 471102 . - . transcript_id "YNL084C_id001"; gene_id "YNL084C"; gene_name "END3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 470053 471102 . - 0 transcript_id "YNL084C_id001"; gene_name "END3"; gene_id "YNL084C"; +chrXIV SGD gene 471347 473200 . + . gene_id "YNL083W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 471347 473200 . + . transcript_id "YNL083W_id002"; gene_id "YNL083W"; gene_name "SAL1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 471347 473200 . + . transcript_id "YNL083W_id002"; gene_id "YNL083W"; gene_name "SAL1"; +chrXIV SGD transcript 471377 472861 . + . transcript_id "YNL083W_id001"; gene_id "YNL083W"; gene_name "SAL1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 471377 472861 . + 0 transcript_id "YNL083W_id001"; gene_name "SAL1"; gene_id "YNL083W"; +chrXIV SGD gene 473336 476103 . + . gene_id "YNL082W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 473336 476103 . + . transcript_id "YNL082W_id001"; gene_id "YNL082W"; gene_name "PMS1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 473336 476103 . + . transcript_id "YNL082W_id001"; gene_id "YNL082W"; gene_name "PMS1"; +chrXIV SGD transcript 473391 476012 . + . transcript_id "YNL082W_id003"; gene_id "YNL082W"; gene_name "PMS1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 473391 476012 . + 0 transcript_id "YNL082W_id003"; gene_name "PMS1"; gene_id "YNL082W"; +chrXIV SGD gene 476016 476874 . - . gene_id "YNL081C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 476016 476874 . - . transcript_id "YNL081C_id002"; gene_id "YNL081C"; gene_name "SWS2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 476016 476874 . - . transcript_id "YNL081C_id002"; gene_id "YNL081C"; gene_name "SWS2"; +chrXIV SGD transcript 476188 476619 . - . transcript_id "YNL081C_id001"; gene_id "YNL081C"; gene_name "SWS2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 476188 476619 . - 0 transcript_id "YNL081C_id001"; gene_name "SWS2"; gene_id "YNL081C"; +chrXIV SGD gene 476806 478232 . - . gene_id "YNL080C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 476806 478232 . - . transcript_id "YNL080C_id004"; gene_id "YNL080C"; gene_name "EOS1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 476806 478232 . - . transcript_id "YNL080C_id004"; gene_id "YNL080C"; gene_name "EOS1"; +chrXIV SGD transcript 476932 478032 . - . transcript_id "YNL080C_id001"; gene_id "YNL080C"; gene_name "EOS1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 476932 478032 . - 0 transcript_id "YNL080C_id001"; gene_name "EOS1"; gene_id "YNL080C"; +chrXIV SGD gene 478090 479218 . - . gene_id "YNL079C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 478090 479218 . - . transcript_id "YNL079C_id001"; gene_id "YNL079C"; gene_name "TPM1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 478090 479218 . - . transcript_id "YNL079C_id001"; gene_id "YNL079C"; gene_name "TPM1"; +chrXIV SGD transcript 478566 479165 . - . transcript_id "YNL079C_id002"; gene_id "YNL079C"; gene_name "TPM1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 478566 479165 . - 0 transcript_id "YNL079C_id002"; gene_name "TPM1"; gene_id "YNL079C"; +chrXIV SGD gene 479500 481253 . + . gene_id "YNL078W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 479500 481253 . + . transcript_id "YNL078W_id001"; gene_id "YNL078W"; gene_name "NIS1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 479500 481253 . + . transcript_id "YNL078W_id001"; gene_id "YNL078W"; gene_name "NIS1"; +chrXIV SGD transcript 479768 480991 . + . transcript_id "YNL078W_id003"; gene_id "YNL078W"; gene_name "NIS1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 479768 480991 . + 0 transcript_id "YNL078W_id003"; gene_name "NIS1"; gene_id "YNL078W"; +chrXIV SGD gene 481391 482977 . + . gene_id "YNL077W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 481391 482977 . + . transcript_id "YNL077W_id001"; gene_id "YNL077W"; gene_name "APJ1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 481391 482977 . + 0 transcript_id "YNL077W_id001"; gene_name "APJ1"; gene_id "YNL077W"; +chrXIV SGD gene 483556 485310 . + . gene_id "YNL076W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 483556 485310 . + . transcript_id "YNL076W_id001"; gene_id "YNL076W"; gene_name "MKS1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 483556 485310 . + 0 transcript_id "YNL076W_id001"; gene_name "MKS1"; gene_id "YNL076W"; +chrXIV SGD gene 485516 486761 . + . gene_id "YNL075W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 485516 486761 . + . transcript_id "YNL075W_id001"; gene_id "YNL075W"; gene_name "IMP4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 485516 486761 . + . transcript_id "YNL075W_id001"; gene_id "YNL075W"; gene_name "IMP4"; +chrXIV SGD transcript 485607 486479 . + . transcript_id "YNL075W_id005"; gene_id "YNL075W"; gene_name "IMP4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 485607 486479 . + 0 transcript_id "YNL075W_id005"; gene_name "IMP4"; gene_id "YNL075W"; +chrXIV SGD gene 486456 488170 . - . gene_id "YNL074C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 486456 488170 . - . transcript_id "YNL074C_id006"; gene_id "YNL074C"; gene_name "MLF3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 486456 488170 . - . transcript_id "YNL074C_id006"; gene_id "YNL074C"; gene_name "MLF3"; +chrXIV SGD transcript 486766 488124 . - . transcript_id "YNL074C_id001"; gene_id "YNL074C"; gene_name "MLF3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 486766 488124 . - 0 transcript_id "YNL074C_id001"; gene_name "MLF3"; gene_id "YNL074C"; +chrXIV SGD gene 488344 490227 . + . gene_id "YNL073W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 488344 490227 . + . transcript_id "YNL073W_id001"; gene_id "YNL073W"; gene_name "MSK1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 488344 490227 . + . transcript_id "YNL073W_id001"; gene_id "YNL073W"; gene_name "MSK1"; +chrXIV SGD transcript 488386 490116 . + . transcript_id "YNL073W_id002"; gene_id "YNL073W"; gene_name "MSK1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 488386 490116 . + 0 transcript_id "YNL073W_id002"; gene_name "MSK1"; gene_id "YNL073W"; +chrXIV SGD gene 490236 491330 . + . gene_id "YNL072W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 490236 491330 . + . transcript_id "YNL072W_id002"; gene_id "YNL072W"; gene_name "RNH201"; transcript_biotype "protein_coding"; +chrXIV SGD exon 490236 491330 . + . transcript_id "YNL072W_id002"; gene_id "YNL072W"; gene_name "RNH201"; +chrXIV SGD transcript 490317 491240 . + . transcript_id "YNL072W_id001"; gene_id "YNL072W"; gene_name "RNH201"; transcript_biotype "protein_coding"; +chrXIV SGD exon 490317 491240 . + 0 transcript_id "YNL072W_id001"; gene_name "RNH201"; gene_id "YNL072W"; +chrXIV SGD gene 491389 493126 . + . gene_id "YNL071W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 491389 493126 . + . transcript_id "YNL071W_id004"; gene_id "YNL071W"; gene_name "LAT1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 491389 493126 . + . transcript_id "YNL071W_id004"; gene_id "YNL071W"; gene_name "LAT1"; +chrXIV SGD transcript 491523 492971 . + . transcript_id "YNL071W_id001"; gene_id "YNL071W"; gene_name "LAT1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 491523 492971 . + 0 transcript_id "YNL071W_id001"; gene_name "LAT1"; gene_id "YNL071W"; +chrXIV SGD gene 493313 493911 . + . gene_id "YNL070W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 493313 493911 . + . transcript_id "YNL070W_id007"; gene_id "YNL070W"; gene_name "TOM7"; transcript_biotype "protein_coding"; +chrXIV SGD exon 493313 493911 . + . transcript_id "YNL070W_id007"; gene_id "YNL070W"; gene_name "TOM7"; +chrXIV SGD transcript 493366 493548 . + . transcript_id "YNL070W_id001"; gene_id "YNL070W"; gene_name "TOM7"; transcript_biotype "protein_coding"; +chrXIV SGD exon 493366 493548 . + 0 transcript_id "YNL070W_id001"; gene_name "TOM7"; gene_id "YNL070W"; +chrXIV SGD gene 493575 495012 . - . gene_id "YNL069C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 493575 495012 . - . transcript_id "YNL069C_id005"; gene_id "YNL069C"; gene_name "RPL16B"; transcript_biotype "protein_coding"; +chrXIV SGD exon 493575 495012 . - . transcript_id "YNL069C_id005"; gene_id "YNL069C"; gene_name "RPL16B"; +chrXIV SGD transcript 493956 495001 . - . transcript_id "YNL069C_id001"; gene_id "YNL069C"; gene_name "RPL16B"; transcript_biotype "protein_coding"; +chrXIV SGD exon 493956 494524 . - 2 transcript_id "YNL069C_id001"; gene_name "RPL16B"; gene_id "YNL069C"; +chrXIV SGD exon 494974 495001 . - 0 transcript_id "YNL069C_id001"; gene_name "RPL16B"; gene_id "YNL069C"; +chrXIV SGD gene 495532 498542 . - . gene_id "YNL068C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 495532 498542 . - . transcript_id "YNL068C_id002"; gene_id "YNL068C"; gene_name "FKH2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 495532 498542 . - . transcript_id "YNL068C_id002"; gene_id "YNL068C"; gene_name "FKH2"; +chrXIV SGD transcript 495701 498289 . - . transcript_id "YNL068C_id001"; gene_id "YNL068C"; gene_name "FKH2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 495701 498289 . - 0 transcript_id "YNL068C_id001"; gene_name "FKH2"; gene_id "YNL068C"; +chrXIV SGD gene 498538 498684 . + . gene_id "YNL067W-A"; gene_biotype "protein_coding"; +chrXIV SGD transcript 498538 498684 . + . transcript_id "YNL067W-A_id001"; gene_id "YNL067W-A"; transcript_biotype "protein_coding"; +chrXIV SGD exon 498538 498684 . + 0 transcript_id "YNL067W-A_id001"; gene_id "YNL067W-A"; +chrXIV SGD gene 499417 499557 . + . gene_id "YNL067W-B"; gene_biotype "protein_coding"; +chrXIV SGD transcript 499417 499557 . + . transcript_id "YNL067W-B_mRNA"; gene_id "YNL067W-B"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 499417 499557 . + 0 transcript_id "YNL067W-B_mRNA"; gene_id "YNL067W-B"; +chrXIV SGD gene 499624 500666 . + . gene_id "YNL067W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 499624 500666 . + . transcript_id "YNL067W_id001"; gene_id "YNL067W"; gene_name "RPL9B"; transcript_biotype "protein_coding"; +chrXIV SGD exon 499624 500666 . + . transcript_id "YNL067W_id001"; gene_id "YNL067W"; gene_name "RPL9B"; +chrXIV SGD transcript 499681 500256 . + . transcript_id "YNL067W_id009"; gene_id "YNL067W"; gene_name "RPL9B"; transcript_biotype "protein_coding"; +chrXIV SGD exon 499681 500256 . + 0 transcript_id "YNL067W_id009"; gene_name "RPL9B"; gene_id "YNL067W"; +chrXIV SGD gene 500962 503200 . + . gene_id "YNL066W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 500962 503200 . + . transcript_id "YNL066W_id001"; gene_id "YNL066W"; gene_name "SUN4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 500962 503200 . + . transcript_id "YNL066W_id001"; gene_id "YNL066W"; gene_name "SUN4"; +chrXIV SGD transcript 501157 502777 . + . transcript_id "YNL066W_id002"; gene_id "YNL066W"; gene_name "SUN4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 501157 501502 . + . transcript_id "YNL066W_id002"; gene_name "SUN4"; gene_id "YNL066W"; +chrXIV SGD exon 501515 502777 . + . transcript_id "YNL066W_id002"; gene_name "SUN4"; gene_id "YNL066W"; +chrXIV SGD exon 501515 502777 . + 0 transcript_id "YNL066W_id002"; gene_name "SUN4"; gene_id "YNL066W"; +chrXIV SGD gene 503631 505811 . + . gene_id "YNL065W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 503631 505811 . + . transcript_id "YNL065W_id001"; gene_id "YNL065W"; gene_name "AQR1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 503631 505811 . + . transcript_id "YNL065W_id001"; gene_id "YNL065W"; gene_name "AQR1"; +chrXIV SGD transcript 503724 505484 . + . transcript_id "YNL065W_id007"; gene_id "YNL065W"; gene_name "AQR1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 503724 505484 . + 0 transcript_id "YNL065W_id007"; gene_name "AQR1"; gene_id "YNL065W"; +chrXIV SGD gene 505603 507348 . - . gene_id "YNL064C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 505603 507348 . - . transcript_id "YNL064C_id002"; gene_id "YNL064C"; gene_name "YDJ1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 505603 507348 . - . transcript_id "YNL064C_id002"; gene_id "YNL064C"; gene_name "YDJ1"; +chrXIV SGD transcript 505868 507097 . - . transcript_id "YNL064C_id001"; gene_id "YNL064C"; gene_name "YDJ1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 505868 507097 . - 0 transcript_id "YNL064C_id001"; gene_name "YDJ1"; gene_id "YNL064C"; +chrXIV SGD gene 507634 509022 . + . gene_id "YNL063W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 507634 509022 . + . transcript_id "YNL063W_id001"; gene_id "YNL063W"; gene_name "MTQ1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 507634 509022 . + . transcript_id "YNL063W_id001"; gene_id "YNL063W"; gene_name "MTQ1"; +chrXIV SGD transcript 507758 508702 . + . transcript_id "YNL063W_id002"; gene_id "YNL063W"; gene_name "MTQ1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 507758 508702 . + 0 transcript_id "YNL063W_id002"; gene_name "MTQ1"; gene_id "YNL063W"; +chrXIV SGD gene 508393 510241 . - . gene_id "YNL062C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 508393 510241 . - . transcript_id "YNL062C_id001"; gene_id "YNL062C"; gene_name "GCD10"; transcript_biotype "protein_coding"; +chrXIV SGD exon 508393 510241 . - . transcript_id "YNL062C_id001"; gene_id "YNL062C"; gene_name "GCD10"; +chrXIV SGD transcript 508776 510212 . - . transcript_id "YNL062C_id002"; gene_id "YNL062C"; gene_name "GCD10"; transcript_biotype "protein_coding"; +chrXIV SGD exon 508776 510212 . - 0 transcript_id "YNL062C_id002"; gene_name "GCD10"; gene_id "YNL062C"; +chrXIV SGD gene 510500 512545 . + . gene_id "YNL061W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 510500 512545 . + . transcript_id "YNL061W_id001"; gene_id "YNL061W"; gene_name "NOP2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 510500 512545 . + . transcript_id "YNL061W_id001"; gene_id "YNL061W"; gene_name "NOP2"; +chrXIV SGD transcript 510540 512396 . + . transcript_id "YNL061W_id003"; gene_id "YNL061W"; gene_name "NOP2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 510540 512396 . + 0 transcript_id "YNL061W_id003"; gene_name "NOP2"; gene_id "YNL061W"; +chrXIV SGD gene 512518 514961 . - . gene_id "YNL059C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 512518 514961 . - . transcript_id "YNL059C_id001"; gene_id "YNL059C"; gene_name "ARP5"; transcript_biotype "protein_coding"; +chrXIV SGD exon 512518 514961 . - . transcript_id "YNL059C_id001"; gene_id "YNL059C"; gene_name "ARP5"; +chrXIV SGD transcript 512668 514935 . - . transcript_id "YNL059C_id002"; gene_id "YNL059C"; gene_name "ARP5"; transcript_biotype "protein_coding"; +chrXIV SGD exon 512668 514935 . - 0 transcript_id "YNL059C_id002"; gene_name "ARP5"; gene_id "YNL059C"; +chrXIV SGD gene 515184 516742 . - . gene_id "YNL058C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 515184 516742 . - . transcript_id "YNL058C_id002"; gene_id "YNL058C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 515184 516742 . - . transcript_id "YNL058C_id002"; gene_id "YNL058C"; +chrXIV SGD transcript 515763 516713 . - . transcript_id "YNL058C_id001"; gene_id "YNL058C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 515763 516713 . - 0 transcript_id "YNL058C_id001"; gene_id "YNL058C"; +chrXIV SGD gene 516403 516735 . + . gene_id "YNL057W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 516403 516735 . + . transcript_id "YNL057W_mRNA"; gene_id "YNL057W"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 516403 516735 . + 0 transcript_id "YNL057W_mRNA"; gene_id "YNL057W"; +chrXIV SGD gene 517033 518016 . + . gene_id "YNL056W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 517033 518016 . + . transcript_id "YNL056W_id002"; gene_id "YNL056W"; gene_name "OCA2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 517033 518016 . + . transcript_id "YNL056W_id002"; gene_id "YNL056W"; gene_name "OCA2"; +chrXIV SGD transcript 517249 517842 . + . transcript_id "YNL056W_id001"; gene_id "YNL056W"; gene_name "OCA2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 517249 517842 . + 0 transcript_id "YNL056W_id001"; gene_name "OCA2"; gene_id "YNL056W"; +chrXIV SGD gene 517861 519049 . - . gene_id "YNL055C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 517861 519049 . - . transcript_id "YNL055C_id005"; gene_id "YNL055C"; gene_name "POR1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 517861 519049 . - . transcript_id "YNL055C_id005"; gene_id "YNL055C"; gene_name "POR1"; +chrXIV SGD transcript 517994 518845 . - . transcript_id "YNL055C_id001"; gene_id "YNL055C"; gene_name "POR1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 517994 518845 . - 0 transcript_id "YNL055C_id001"; gene_name "POR1"; gene_id "YNL055C"; +chrXIV SGD gene 519099 519169 . - . gene_id "YNCN0008C"; gene_biotype "ncRNA"; +chrXIV SGD transcript 519099 519169 . - . transcript_id "YNCN0008C_tRNA"; gene_id "YNCN0008C"; transcript_biotype "ncRNA"; +chrXIV SGD exon 519099 519169 . - . transcript_id "YNCN0008C_tRNA"; gene_id "YNCN0008C"; +chrXIV SGD gene 519456 520778 . + . gene_id "YNL054W-A"; gene_biotype "protein_coding"; +chrXIV SGD transcript 519456 520778 . + . transcript_id "YNL054W-A_dummy"; gene_id "YNL054W-A"; transcript_biotype "protein_coding"; +chrXIV SGD exon 519456 520778 . + 0 transcript_id "YNL054W-A_dummy"; gene_id "YNL054W-A"; +chrXIV SGD gene 519456 524706 . + . gene_id "YNL054W-B"; gene_biotype "protein_coding"; +chrXIV SGD transcript 519456 524706 . + . transcript_id "YNL054W-B_dummy"; gene_id "YNL054W-B"; transcript_biotype "protein_coding"; +chrXIV SGD exon 519456 520760 . + 0 transcript_id "YNL054W-B_dummy"; gene_id "YNL054W-B"; +chrXIV SGD exon 520762 524706 . + 0 transcript_id "YNL054W-B_dummy"; gene_id "YNL054W-B"; +chrXIV SGD gene 526086 529583 . + . gene_id "YNL054W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 526086 529583 . + . transcript_id "YNL054W_mRNA"; gene_id "YNL054W"; gene_name "VAC7"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 526086 529583 . + 0 transcript_id "YNL054W_mRNA"; gene_name "VAC7"; gene_id "YNL054W"; +chrXIV SGD gene 529783 531538 . + . gene_id "YNL053W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 529783 531538 . + . transcript_id "YNL053W_id002"; gene_id "YNL053W"; gene_name "MSG5"; transcript_biotype "protein_coding"; +chrXIV SGD exon 529783 531538 . + . transcript_id "YNL053W_id002"; gene_id "YNL053W"; gene_name "MSG5"; +chrXIV SGD transcript 529942 531411 . + . transcript_id "YNL053W_id001"; gene_id "YNL053W"; gene_name "MSG5"; transcript_biotype "protein_coding"; +chrXIV SGD exon 529942 531411 . + 0 transcript_id "YNL053W_id001"; gene_name "MSG5"; gene_id "YNL053W"; +chrXIV SGD gene 531691 532543 . + . gene_id "YNL052W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 531691 532543 . + . transcript_id "YNL052W_id005"; gene_id "YNL052W"; gene_name "COX5A"; transcript_biotype "protein_coding"; +chrXIV SGD exon 531691 532543 . + . transcript_id "YNL052W_id005"; gene_id "YNL052W"; gene_name "COX5A"; +chrXIV SGD transcript 531725 532186 . + . transcript_id "YNL052W_id001"; gene_id "YNL052W"; gene_name "COX5A"; transcript_biotype "protein_coding"; +chrXIV SGD exon 531725 532186 . + 0 transcript_id "YNL052W_id001"; gene_name "COX5A"; gene_id "YNL052W"; +chrXIV SGD gene 532659 534039 . + . gene_id "YNL051W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 532659 533870 . + . transcript_id "YNL051W_id001"; gene_id "YNL051W"; gene_name "COG5"; transcript_biotype "protein_coding"; +chrXIV SGD exon 532659 533870 . + 0 transcript_id "YNL051W_id001"; gene_name "COG5"; gene_id "YNL051W"; +chrXIV SGD transcript 532659 534039 . + . transcript_id "YNL051W_id002"; gene_id "YNL051W"; gene_name "COG5"; transcript_biotype "protein_coding"; +chrXIV SGD exon 532659 534039 . + . transcript_id "YNL051W_id002"; gene_id "YNL051W"; gene_name "COG5"; +chrXIV SGD gene 533928 535006 . - . gene_id "YNL050C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 533928 535006 . - . transcript_id "YNL050C_id001"; gene_id "YNL050C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 533928 535006 . - . transcript_id "YNL050C_id001"; gene_id "YNL050C"; +chrXIV SGD transcript 534079 534982 . - . transcript_id "YNL050C_id002"; gene_id "YNL050C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 534079 534874 . - 1 transcript_id "YNL050C_id002"; gene_id "YNL050C"; +chrXIV SGD exon 534966 534982 . - 0 transcript_id "YNL050C_id002"; gene_id "YNL050C"; +chrXIV SGD gene 535092 537916 . - . gene_id "YNL049C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 535092 537916 . - . transcript_id "YNL049C_id005"; gene_id "YNL049C"; gene_name "SFB2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 535092 537916 . - . transcript_id "YNL049C_id005"; gene_id "YNL049C"; gene_name "SFB2"; +chrXIV SGD transcript 535281 537911 . - . transcript_id "YNL049C_id001"; gene_id "YNL049C"; gene_name "SFB2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 535281 537911 . - 0 transcript_id "YNL049C_id001"; gene_name "SFB2"; gene_id "YNL049C"; +chrXIV SGD gene 538142 539936 . + . gene_id "YNL048W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 538142 539936 . + . transcript_id "YNL048W_id002"; gene_id "YNL048W"; gene_name "ALG11"; transcript_biotype "protein_coding"; +chrXIV SGD exon 538142 539936 . + . transcript_id "YNL048W_id002"; gene_id "YNL048W"; gene_name "ALG11"; +chrXIV SGD transcript 538173 539819 . + . transcript_id "YNL048W_id001"; gene_id "YNL048W"; gene_name "ALG11"; transcript_biotype "protein_coding"; +chrXIV SGD exon 538173 539819 . + 0 transcript_id "YNL048W_id001"; gene_name "ALG11"; gene_id "YNL048W"; +chrXIV SGD gene 539821 541919 . - . gene_id "YNL047C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 539821 541919 . - . transcript_id "YNL047C_id003"; gene_id "YNL047C"; gene_name "SLM2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 539821 541919 . - . transcript_id "YNL047C_id003"; gene_id "YNL047C"; gene_name "SLM2"; +chrXIV SGD transcript 539911 541881 . - . transcript_id "YNL047C_id001"; gene_id "YNL047C"; gene_name "SLM2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 539911 541881 . - 0 transcript_id "YNL047C_id001"; gene_name "SLM2"; gene_id "YNL047C"; +chrXIV SGD gene 542062 542987 . + . gene_id "YNL046W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 542062 542987 . + . transcript_id "YNL046W_id001"; gene_id "YNL046W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 542062 542987 . + . transcript_id "YNL046W_id001"; gene_id "YNL046W"; +chrXIV SGD transcript 542304 542822 . + . transcript_id "YNL046W_id002"; gene_id "YNL046W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 542304 542822 . + 0 transcript_id "YNL046W_id002"; gene_id "YNL046W"; +chrXIV SGD gene 542921 545168 . + . gene_id "YNL045W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 542921 545168 . + . transcript_id "YNL045W_id001"; gene_id "YNL045W"; gene_name "LAP2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 542921 545168 . + . transcript_id "YNL045W_id001"; gene_id "YNL045W"; gene_name "LAP2"; +chrXIV SGD transcript 542963 544978 . + . transcript_id "YNL045W_id002"; gene_id "YNL045W"; gene_name "LAP2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 542963 544978 . + 0 transcript_id "YNL045W_id002"; gene_name "LAP2"; gene_id "YNL045W"; +chrXIV SGD gene 544977 546045 . - . gene_id "YNL043C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 544977 546045 . - . transcript_id "YNL043C_id004"; gene_id "YNL043C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 544977 546045 . - . transcript_id "YNL043C_id004"; gene_id "YNL043C"; +chrXIV SGD gene 545197 546110 . + . gene_id "YNL044W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 545197 546110 . + . transcript_id "YNL044W_id002"; gene_id "YNL044W"; gene_name "YIP3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 545197 546110 . + . transcript_id "YNL044W_id002"; gene_id "YNL044W"; gene_name "YIP3"; +chrXIV SGD transcript 545268 545877 . + . transcript_id "YNL044W_id001"; gene_id "YNL044W"; gene_name "YIP3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 545268 545291 . + 0 transcript_id "YNL044W_id001"; gene_name "YIP3"; gene_id "YNL044W"; +chrXIV SGD exon 545371 545877 . + 0 transcript_id "YNL044W_id001"; gene_name "YIP3"; gene_id "YNL044W"; +chrXIV SGD transcript 545589 545909 . - . transcript_id "YNL043C_id001"; gene_id "YNL043C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 545589 545909 . - 0 transcript_id "YNL043C_id001"; gene_id "YNL043C"; +chrXIV SGD gene 547094 547196 . + . gene_id "YNCN0009W"; gene_biotype "ncRNA"; +chrXIV SGD transcript 547094 547196 . + . transcript_id "YNCN0009W_tRNA"; gene_id "YNCN0009W"; transcript_biotype "ncRNA"; +chrXIV SGD exon 547094 547129 . + . transcript_id "YNCN0009W_tRNA"; gene_id "YNCN0009W"; +chrXIV SGD exon 547161 547196 . + . transcript_id "YNCN0009W_tRNA"; gene_id "YNCN0009W"; +chrXIV SGD gene 547113 547370 . + . gene_id "YNL042W-B"; gene_biotype "protein_coding"; +chrXIV SGD transcript 547113 547370 . + . transcript_id "YNL042W-B_mRNA"; gene_id "YNL042W-B"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 547113 547370 . + 0 transcript_id "YNL042W-B_mRNA"; gene_id "YNL042W-B"; +chrXIV SGD gene 547335 549401 . + . gene_id "YNL042W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 547335 549401 . + . transcript_id "YNL042W_id001"; gene_id "YNL042W"; gene_name "BOP3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 547335 549401 . + . transcript_id "YNL042W_id001"; gene_id "YNL042W"; gene_name "BOP3"; +chrXIV SGD transcript 548100 549290 . + . transcript_id "YNL042W_id002"; gene_id "YNL042W"; gene_name "BOP3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 548100 549290 . + 0 transcript_id "YNL042W_id002"; gene_name "BOP3"; gene_id "YNL042W"; +chrXIV SGD gene 549468 551987 . - . gene_id "YNL041C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 549468 551987 . - . transcript_id "YNL041C_id001"; gene_id "YNL041C"; gene_name "COG6"; transcript_biotype "protein_coding"; +chrXIV SGD exon 549468 551987 . - 0 transcript_id "YNL041C_id001"; gene_name "COG6"; gene_id "YNL041C"; +chrXIV SGD gene 553356 555139 . + . gene_id "YNL040W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 553356 555139 . + . transcript_id "YNL040W_id001"; gene_id "YNL040W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 553356 555139 . + . transcript_id "YNL040W_id001"; gene_id "YNL040W"; +chrXIV SGD transcript 553380 554750 . + . transcript_id "YNL040W_id003"; gene_id "YNL040W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 553380 554750 . + 0 transcript_id "YNL040W_id003"; gene_id "YNL040W"; +chrXIV SGD gene 555048 557017 . + . gene_id "YNL039W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 555048 556832 . + . transcript_id "YNL039W_id001"; gene_id "YNL039W"; gene_name "BDP1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 555048 556832 . + 0 transcript_id "YNL039W_id001"; gene_name "BDP1"; gene_id "YNL039W"; +chrXIV SGD transcript 555048 557017 . + . transcript_id "YNL039W_id004"; gene_id "YNL039W"; gene_name "BDP1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 555048 557017 . + . transcript_id "YNL039W_id004"; gene_id "YNL039W"; gene_name "BDP1"; +chrXIV SGD gene 556994 557908 . + . gene_id "YNL038W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 556994 557908 . + . transcript_id "YNL038W_id005"; gene_id "YNL038W"; gene_name "GPI15"; transcript_biotype "protein_coding"; +chrXIV SGD exon 556994 557908 . + . transcript_id "YNL038W_id005"; gene_id "YNL038W"; gene_name "GPI15"; +chrXIV SGD transcript 557020 557783 . + . transcript_id "YNL038W_id001"; gene_id "YNL038W"; gene_name "GPI15"; transcript_biotype "protein_coding"; +chrXIV SGD exon 557020 557610 . + 0 transcript_id "YNL038W_id001"; gene_name "GPI15"; gene_id "YNL038W"; +chrXIV SGD exon 557685 557783 . + 0 transcript_id "YNL038W_id001"; gene_name "GPI15"; gene_id "YNL038W"; +chrXIV SGD gene 557670 559115 . - . gene_id "YNL037C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 557670 559115 . - . transcript_id "YNL037C_id001"; gene_id "YNL037C"; gene_name "IDH1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 557670 559115 . - . transcript_id "YNL037C_id001"; gene_id "YNL037C"; gene_name "IDH1"; +chrXIV SGD transcript 557920 559002 . - . transcript_id "YNL037C_id002"; gene_id "YNL037C"; gene_name "IDH1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 557920 559002 . - 0 transcript_id "YNL037C_id002"; gene_name "IDH1"; gene_id "YNL037C"; +chrXIV SGD gene 559666 560637 . + . gene_id "YNL036W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 559666 560637 . + . transcript_id "YNL036W_id003"; gene_id "YNL036W"; gene_name "NCE103"; transcript_biotype "protein_coding"; +chrXIV SGD exon 559666 560637 . + . transcript_id "YNL036W_id003"; gene_id "YNL036W"; gene_name "NCE103"; +chrXIV SGD transcript 559814 560479 . + . transcript_id "YNL036W_id001"; gene_id "YNL036W"; gene_name "NCE103"; transcript_biotype "protein_coding"; +chrXIV SGD exon 559814 560479 . + 0 transcript_id "YNL036W_id001"; gene_name "NCE103"; gene_id "YNL036W"; +chrXIV SGD gene 560693 560765 . - . gene_id "YNCN0010C"; gene_biotype "ncRNA"; +chrXIV SGD transcript 560693 560765 . - . transcript_id "YNCN0010C_tRNA"; gene_id "YNCN0010C"; transcript_biotype "ncRNA"; +chrXIV SGD exon 560693 560765 . - . transcript_id "YNCN0010C_tRNA"; gene_id "YNCN0010C"; +chrXIV SGD gene 568115 568217 . + . gene_id "YNCN0011W"; gene_biotype "ncRNA"; +chrXIV SGD transcript 568115 568217 . + . transcript_id "YNCN0011W_tRNA"; gene_id "YNCN0011W"; transcript_biotype "ncRNA"; +chrXIV SGD exon 568115 568150 . + . transcript_id "YNCN0011W_tRNA"; gene_id "YNCN0011W"; +chrXIV SGD exon 568182 568217 . + . transcript_id "YNCN0011W_tRNA"; gene_id "YNCN0011W"; +chrXIV SGD gene 568522 569691 . - . gene_id "YNL035C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 568522 569691 . - . transcript_id "YNL035C_id001"; gene_id "YNL035C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 568522 569691 . - 0 transcript_id "YNL035C_id001"; gene_id "YNL035C"; +chrXIV SGD gene 569867 569940 . - . gene_id "YNCN0012C"; gene_biotype "ncRNA"; +chrXIV SGD transcript 569867 569940 . - . transcript_id "YNCN0012C_tRNA"; gene_id "YNCN0012C"; transcript_biotype "ncRNA"; +chrXIV SGD exon 569867 569940 . - . transcript_id "YNCN0012C_tRNA"; gene_id "YNCN0012C"; +chrXIV SGD gene 570477 572315 . + . gene_id "YNL034W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 570477 572315 . + . transcript_id "YNL034W_mRNA"; gene_id "YNL034W"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 570477 572315 . + 0 transcript_id "YNL034W_mRNA"; gene_id "YNL034W"; +chrXIV SGD gene 572999 573853 . + . gene_id "YNL033W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 572999 573853 . + . transcript_id "YNL033W_id001"; gene_id "YNL033W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 572999 573853 . + 0 transcript_id "YNL033W_id001"; gene_id "YNL033W"; +chrXIV SGD gene 574366 576675 . + . gene_id "YNL032W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 574366 576675 . + . transcript_id "YNL032W_id001"; gene_id "YNL032W"; gene_name "SIW14"; transcript_biotype "protein_coding"; +chrXIV SGD exon 574366 576675 . + . transcript_id "YNL032W_id001"; gene_id "YNL032W"; gene_name "SIW14"; +chrXIV SGD transcript 574506 575351 . + . transcript_id "YNL032W_id002"; gene_id "YNL032W"; gene_name "SIW14"; transcript_biotype "protein_coding"; +chrXIV SGD exon 574506 575351 . + 0 transcript_id "YNL032W_id002"; gene_name "SIW14"; gene_id "YNL032W"; +chrXIV SGD gene 575206 576066 . - . gene_id "YNL031C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 575206 576066 . - . transcript_id "YNL031C_id002"; gene_id "YNL031C"; gene_name "HHT2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 575206 576066 . - . transcript_id "YNL031C_id002"; gene_id "YNL031C"; gene_name "HHT2"; +chrXIV SGD transcript 575640 576050 . - . transcript_id "YNL031C_id001"; gene_id "YNL031C"; gene_name "HHT2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 575640 576050 . - 0 transcript_id "YNL031C_id001"; gene_name "HHT2"; gene_id "YNL031C"; +chrXIV SGD gene 575843 577196 . + . gene_id "YNL030W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 575843 577196 . + . transcript_id "YNL030W_id002"; gene_id "YNL030W"; gene_name "HHF2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 575843 577196 . + . transcript_id "YNL030W_id002"; gene_id "YNL030W"; gene_name "HHF2"; +chrXIV SGD transcript 576727 577038 . + . transcript_id "YNL030W_id001"; gene_id "YNL030W"; gene_name "HHF2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 576727 577038 . + 0 transcript_id "YNL030W_id001"; gene_name "HHF2"; gene_id "YNL030W"; +chrXIV SGD gene 577136 578850 . - . gene_id "YNL029C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 577136 578850 . - . transcript_id "YNL029C_id002"; gene_id "YNL029C"; gene_name "KTR5"; transcript_biotype "protein_coding"; +chrXIV SGD exon 577136 578850 . - . transcript_id "YNL029C_id002"; gene_id "YNL029C"; gene_name "KTR5"; +chrXIV SGD transcript 577205 578773 . - . transcript_id "YNL029C_id001"; gene_id "YNL029C"; gene_name "KTR5"; transcript_biotype "protein_coding"; +chrXIV SGD exon 577205 578773 . - 0 transcript_id "YNL029C_id001"; gene_name "KTR5"; gene_id "YNL029C"; +chrXIV SGD gene 578679 578996 . + . gene_id "YNL028W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 578679 578996 . + . transcript_id "YNL028W_mRNA"; gene_id "YNL028W"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 578679 578996 . + 0 transcript_id "YNL028W_mRNA"; gene_id "YNL028W"; +chrXIV SGD gene 579580 581616 . + . gene_id "YNL027W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 579580 581616 . + . transcript_id "YNL027W_id001"; gene_id "YNL027W"; gene_name "CRZ1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 579580 581616 . + 0 transcript_id "YNL027W_id001"; gene_name "CRZ1"; gene_id "YNL027W"; +chrXIV SGD gene 581864 583486 . + . gene_id "YNL026W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 581864 583486 . + . transcript_id "YNL026W_id010"; gene_id "YNL026W"; gene_name "SAM50"; transcript_biotype "protein_coding"; +chrXIV SGD exon 581864 583486 . + . transcript_id "YNL026W_id010"; gene_id "YNL026W"; gene_name "SAM50"; +chrXIV SGD transcript 581920 583374 . + . transcript_id "YNL026W_id001"; gene_id "YNL026W"; gene_name "SAM50"; transcript_biotype "protein_coding"; +chrXIV SGD exon 581920 583374 . + 0 transcript_id "YNL026W_id001"; gene_name "SAM50"; gene_id "YNL026W"; +chrXIV SGD gene 582887 585318 . - . gene_id "YNL025C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 582887 585318 . - . transcript_id "YNL025C_id001"; gene_id "YNL025C"; gene_name "SSN8"; transcript_biotype "protein_coding"; +chrXIV SGD exon 582887 585318 . - . transcript_id "YNL025C_id001"; gene_id "YNL025C"; gene_name "SSN8"; +chrXIV SGD transcript 584320 585291 . - . transcript_id "YNL025C_id002"; gene_id "YNL025C"; gene_name "SSN8"; transcript_biotype "protein_coding"; +chrXIV SGD exon 584320 585291 . - 0 transcript_id "YNL025C_id002"; gene_name "SSN8"; gene_id "YNL025C"; +chrXIV SGD gene 585587 585926 . + . gene_id "YNCN0013W"; gene_biotype "ncRNA"; +chrXIV SGD transcript 585587 585926 . + . transcript_id "YNCN0013W_snoRNA"; gene_id "YNCN0013W"; gene_name "NME1"; transcript_biotype "ncRNA"; +chrXIV SGD exon 585587 585926 . + . transcript_id "YNCN0013W_snoRNA"; gene_name "NME1"; gene_id "YNCN0013W"; +chrXIV SGD gene 586090 586175 . + . gene_id "YNCN0014W"; gene_biotype "ncRNA"; +chrXIV SGD transcript 586090 586175 . + . transcript_id "YNCN0014W_snoRNA"; gene_id "YNCN0014W"; gene_name "SNR66"; transcript_biotype "ncRNA"; +chrXIV SGD exon 586090 586175 . + . transcript_id "YNCN0014W_snoRNA"; gene_name "SNR66"; gene_id "YNCN0014W"; +chrXIV SGD gene 586148 586902 . - . gene_id "YNL024C-A"; gene_biotype "protein_coding"; +chrXIV SGD transcript 586148 586902 . - . transcript_id "YNL024C-A_id002"; gene_id "YNL024C-A"; gene_name "KSH1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 586148 586902 . - . transcript_id "YNL024C-A_id002"; gene_id "YNL024C-A"; gene_name "KSH1"; +chrXIV SGD transcript 586602 586820 . - . transcript_id "YNL024C-A_id001"; gene_id "YNL024C-A"; gene_name "KSH1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 586602 586820 . - 0 transcript_id "YNL024C-A_id001"; gene_name "KSH1"; gene_id "YNL024C-A"; +chrXIV SGD gene 586925 587900 . - . gene_id "YNL024C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 586925 587900 . - . transcript_id "YNL024C_id001"; gene_id "YNL024C"; gene_name "EFM6"; transcript_biotype "protein_coding"; +chrXIV SGD exon 586925 587900 . - . transcript_id "YNL024C_id001"; gene_id "YNL024C"; gene_name "EFM6"; +chrXIV SGD transcript 587107 587847 . - . transcript_id "YNL024C_id002"; gene_id "YNL024C"; gene_name "EFM6"; transcript_biotype "protein_coding"; +chrXIV SGD exon 587107 587847 . - 0 transcript_id "YNL024C_id002"; gene_name "EFM6"; gene_id "YNL024C"; +chrXIV SGD gene 588057 591204 . - . gene_id "YNL023C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 588057 591204 . - . transcript_id "YNL023C_id003"; gene_id "YNL023C"; gene_name "FAP1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 588057 591204 . - . transcript_id "YNL023C_id003"; gene_id "YNL023C"; gene_name "FAP1"; +chrXIV SGD transcript 588263 591160 . - . transcript_id "YNL023C_id001"; gene_id "YNL023C"; gene_name "FAP1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 588263 591160 . - 0 transcript_id "YNL023C_id001"; gene_name "FAP1"; gene_id "YNL023C"; +chrXIV SGD gene 591271 592936 . - . gene_id "YNL022C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 591271 592936 . - . transcript_id "YNL022C_id001"; gene_id "YNL022C"; gene_name "RCM1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 591271 592936 . - . transcript_id "YNL022C_id001"; gene_id "YNL022C"; gene_name "RCM1"; +chrXIV SGD transcript 591427 592899 . - . transcript_id "YNL022C_id003"; gene_id "YNL022C"; gene_name "RCM1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 591427 592899 . - 0 transcript_id "YNL022C_id003"; gene_name "RCM1"; gene_id "YNL022C"; +chrXIV SGD gene 593157 595581 . + . gene_id "YNL021W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 593157 595581 . + . transcript_id "YNL021W_id001"; gene_id "YNL021W"; gene_name "HDA1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 593157 595581 . + . transcript_id "YNL021W_id001"; gene_id "YNL021W"; gene_name "HDA1"; +chrXIV SGD transcript 593227 595347 . + . transcript_id "YNL021W_id003"; gene_id "YNL021W"; gene_name "HDA1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 593227 595347 . + 0 transcript_id "YNL021W_id003"; gene_name "HDA1"; gene_id "YNL021W"; +chrXIV SGD gene 595342 597667 . - . gene_id "YNL020C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 595342 597667 . - . transcript_id "YNL020C_id001"; gene_id "YNL020C"; gene_name "ARK1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 595342 597667 . - . transcript_id "YNL020C_id001"; gene_id "YNL020C"; gene_name "ARK1"; +chrXIV SGD transcript 595623 597539 . - . transcript_id "YNL020C_id004"; gene_id "YNL020C"; gene_name "ARK1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 595623 597539 . - 0 transcript_id "YNL020C_id004"; gene_name "ARK1"; gene_id "YNL020C"; +chrXIV SGD gene 598376 599230 . - . gene_id "YNL019C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 598376 599230 . - . transcript_id "YNL019C_mRNA"; gene_id "YNL019C"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 598376 599230 . - 0 transcript_id "YNL019C_mRNA"; gene_id "YNL019C"; +chrXIV SGD gene 599936 601774 . - . gene_id "YNL018C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 599936 601774 . - . transcript_id "YNL018C_mRNA"; gene_id "YNL018C"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 599936 601774 . - 0 transcript_id "YNL018C_mRNA"; gene_id "YNL018C"; +chrXIV SGD gene 602138 602476 . - . gene_id "YNL017C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 602138 602476 . - . transcript_id "YNL017C_mRNA"; gene_id "YNL017C"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 602138 602476 . - 0 transcript_id "YNL017C_mRNA"; gene_id "YNL017C"; +chrXIV SGD gene 602312 602385 . + . gene_id "YNCN0015W"; gene_biotype "ncRNA"; +chrXIV SGD transcript 602312 602385 . + . transcript_id "YNCN0015W_tRNA"; gene_id "YNCN0015W"; transcript_biotype "ncRNA"; +chrXIV SGD exon 602312 602385 . + . transcript_id "YNCN0015W_tRNA"; gene_id "YNCN0015W"; +chrXIV SGD gene 602849 605046 . + . gene_id "YNL016W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 602849 605046 . + . transcript_id "YNL016W_id001"; gene_id "YNL016W"; gene_name "PUB1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 602849 605046 . + . transcript_id "YNL016W_id001"; gene_id "YNL016W"; gene_name "PUB1"; +chrXIV SGD transcript 602907 604268 . + . transcript_id "YNL016W_id005"; gene_id "YNL016W"; gene_name "PUB1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 602907 604268 . + 0 transcript_id "YNL016W_id005"; gene_name "PUB1"; gene_id "YNL016W"; +chrXIV SGD gene 605384 605611 . + . gene_id "YNL015W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 605384 605611 . + . transcript_id "YNL015W_id001"; gene_id "YNL015W"; gene_name "PBI2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 605384 605611 . + 0 transcript_id "YNL015W_id001"; gene_name "PBI2"; gene_id "YNL015W"; +chrXIV SGD gene 606319 609453 . + . gene_id "YNL014W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 606319 609453 . + . transcript_id "YNL014W_mRNA"; gene_id "YNL014W"; gene_name "HEF3"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 606319 609453 . + 0 transcript_id "YNL014W_mRNA"; gene_name "HEF3"; gene_id "YNL014W"; +chrXIV SGD gene 609133 609510 . - . gene_id "YNL013C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 609133 609510 . - . transcript_id "YNL013C_mRNA"; gene_id "YNL013C"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 609133 609510 . - 0 transcript_id "YNL013C_mRNA"; gene_id "YNL013C"; +chrXIV SGD gene 609686 611665 . + . gene_id "YNL012W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 609686 611665 . + . transcript_id "YNL012W_mRNA"; gene_id "YNL012W"; gene_name "SPO1"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 609686 609790 . + 0 transcript_id "YNL012W_mRNA"; gene_name "SPO1"; gene_id "YNL012W"; +chrXIV SGD CDS 609875 611665 . + 0 transcript_id "YNL012W_mRNA"; gene_name "SPO1"; gene_id "YNL012W"; +chrXIV SGD gene 611755 613204 . - . gene_id "YNL011C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 611755 613204 . - . transcript_id "YNL011C_id007"; gene_id "YNL011C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 611755 613204 . - . transcript_id "YNL011C_id007"; gene_id "YNL011C"; +chrXIV SGD transcript 611836 613170 . - . transcript_id "YNL011C_id001"; gene_id "YNL011C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 611836 613170 . - 0 transcript_id "YNL011C_id001"; gene_id "YNL011C"; +chrXIV SGD gene 613587 614593 . + . gene_id "YNL010W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 613587 614593 . + . transcript_id "YNL010W_id003"; gene_id "YNL010W"; gene_name "PYP1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 613587 614593 . + . transcript_id "YNL010W_id003"; gene_id "YNL010W"; gene_name "PYP1"; +chrXIV SGD transcript 613635 614360 . + . transcript_id "YNL010W_id001"; gene_id "YNL010W"; gene_name "PYP1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 613635 614360 . + 0 transcript_id "YNL010W_id001"; gene_name "PYP1"; gene_id "YNL010W"; +chrXIV SGD gene 614791 616217 . + . gene_id "YNL009W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 614791 616217 . + . transcript_id "YNL009W_id013"; gene_id "YNL009W"; gene_name "IDP3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 614791 616217 . + . transcript_id "YNL009W_id013"; gene_id "YNL009W"; gene_name "IDP3"; +chrXIV SGD transcript 614821 616083 . + . transcript_id "YNL009W_id001"; gene_id "YNL009W"; gene_name "IDP3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 614821 616083 . + 0 transcript_id "YNL009W_id001"; gene_name "IDP3"; gene_id "YNL009W"; +chrXIV SGD gene 616172 618261 . - . gene_id "YNL008C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 616172 618261 . - . transcript_id "YNL008C_id005"; gene_id "YNL008C"; gene_name "ASI3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 616172 618261 . - . transcript_id "YNL008C_id005"; gene_id "YNL008C"; gene_name "ASI3"; +chrXIV SGD transcript 616211 618241 . - . transcript_id "YNL008C_id001"; gene_id "YNL008C"; gene_name "ASI3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 616211 618241 . - 0 transcript_id "YNL008C_id001"; gene_name "ASI3"; gene_id "YNL008C"; +chrXIV SGD gene 618084 619692 . - . gene_id "YNL007C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 618084 619692 . - . transcript_id "YNL007C_id001"; gene_id "YNL007C"; gene_name "SIS1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 618084 619692 . - . transcript_id "YNL007C_id001"; gene_id "YNL007C"; gene_name "SIS1"; +chrXIV SGD transcript 618507 619565 . - . transcript_id "YNL007C_id002"; gene_id "YNL007C"; gene_name "SIS1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 618507 619565 . - 0 transcript_id "YNL007C_id002"; gene_name "SIS1"; gene_id "YNL007C"; +chrXIV SGD gene 619997 621547 . + . gene_id "YNL006W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 619997 621547 . + . transcript_id "YNL006W_id001"; gene_id "YNL006W"; gene_name "LST8"; transcript_biotype "protein_coding"; +chrXIV SGD exon 619997 621547 . + . transcript_id "YNL006W_id001"; gene_id "YNL006W"; gene_name "LST8"; +chrXIV SGD transcript 620067 620978 . + . transcript_id "YNL006W_id003"; gene_id "YNL006W"; gene_name "LST8"; transcript_biotype "protein_coding"; +chrXIV SGD exon 620067 620978 . + 0 transcript_id "YNL006W_id003"; gene_name "LST8"; gene_id "YNL006W"; +chrXIV SGD gene 621018 622499 . - . gene_id "YNL005C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 621018 622499 . - . transcript_id "YNL005C_id002"; gene_id "YNL005C"; gene_name "MRP7"; transcript_biotype "protein_coding"; +chrXIV SGD exon 621018 622499 . - . transcript_id "YNL005C_id002"; gene_id "YNL005C"; gene_name "MRP7"; +chrXIV SGD transcript 621313 622428 . - . transcript_id "YNL005C_id001"; gene_id "YNL005C"; gene_name "MRP7"; transcript_biotype "protein_coding"; +chrXIV SGD exon 621313 622428 . - 0 transcript_id "YNL005C_id001"; gene_name "MRP7"; gene_id "YNL005C"; +chrXIV SGD gene 622888 624891 . + . gene_id "YNL004W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 622888 624891 . + . transcript_id "YNL004W_id002"; gene_id "YNL004W"; gene_name "HRB1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 622888 624891 . + . transcript_id "YNL004W_id002"; gene_id "YNL004W"; gene_name "HRB1"; +chrXIV SGD transcript 622915 624621 . + . transcript_id "YNL004W_id001"; gene_id "YNL004W"; gene_name "HRB1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 622915 622944 . + 0 transcript_id "YNL004W_id001"; gene_name "HRB1"; gene_id "YNL004W"; +chrXIV SGD exon 623287 624621 . + 0 transcript_id "YNL004W_id001"; gene_name "HRB1"; gene_id "YNL004W"; +chrXIV SGD gene 624213 625861 . - . gene_id "YNL003C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 624213 625861 . - . transcript_id "YNL003C_id005"; gene_id "YNL003C"; gene_name "PET8"; transcript_biotype "protein_coding"; +chrXIV SGD exon 624213 625861 . - . transcript_id "YNL003C_id005"; gene_id "YNL003C"; gene_name "PET8"; +chrXIV SGD transcript 624975 625829 . - . transcript_id "YNL003C_id001"; gene_id "YNL003C"; gene_name "PET8"; transcript_biotype "protein_coding"; +chrXIV SGD exon 624975 625829 . - 0 transcript_id "YNL003C_id001"; gene_name "PET8"; gene_id "YNL003C"; +chrXIV SGD gene 625922 627168 . - . gene_id "YNL002C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 625922 627168 . - . transcript_id "YNL002C_id001"; gene_id "YNL002C"; gene_name "RLP7"; transcript_biotype "protein_coding"; +chrXIV SGD exon 625922 627168 . - . transcript_id "YNL002C_id001"; gene_id "YNL002C"; gene_name "RLP7"; +chrXIV SGD transcript 626174 627142 . - . transcript_id "YNL002C_id003"; gene_id "YNL002C"; gene_name "RLP7"; transcript_biotype "protein_coding"; +chrXIV SGD exon 626174 627142 . - 0 transcript_id "YNL002C_id003"; gene_name "RLP7"; gene_id "YNL002C"; +chrXIV SGD gene 627393 628742 . + . gene_id "YNL001W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 627393 628742 . + . transcript_id "YNL001W_id001"; gene_id "YNL001W"; gene_name "DOM34"; transcript_biotype "protein_coding"; +chrXIV SGD exon 627393 628742 . + . transcript_id "YNL001W_id001"; gene_id "YNL001W"; gene_name "DOM34"; +chrXIV SGD transcript 627456 628616 . + . transcript_id "YNL001W_id002"; gene_id "YNL001W"; gene_name "DOM34"; transcript_biotype "protein_coding"; +chrXIV SGD exon 627456 628616 . + 0 transcript_id "YNL001W_id002"; gene_name "DOM34"; gene_id "YNL001W"; +chrXIV SGD gene 629416 631268 . - . gene_id "YNR001C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 629416 631268 . - . transcript_id "YNR001C_id002"; gene_id "YNR001C"; gene_name "CIT1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 629416 631268 . - . transcript_id "YNR001C_id002"; gene_id "YNR001C"; gene_name "CIT1"; +chrXIV SGD transcript 629622 631061 . - . transcript_id "YNR001C_id001"; gene_id "YNR001C"; gene_name "CIT1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 629622 631061 . - 0 transcript_id "YNR001C_id001"; gene_name "CIT1"; gene_id "YNR001C"; +chrXIV SGD gene 631263 631481 . + . gene_id "YNR001W-A"; gene_biotype "protein_coding"; +chrXIV SGD transcript 631263 631481 . + . transcript_id "YNR001W-A_id001"; gene_id "YNR001W-A"; transcript_biotype "protein_coding"; +chrXIV SGD exon 631263 631481 . + 0 transcript_id "YNR001W-A_id001"; gene_id "YNR001W-A"; +chrXIV SGD gene 631846 631917 . - . gene_id "YNCN0016C"; gene_biotype "ncRNA"; +chrXIV SGD transcript 631846 631917 . - . transcript_id "YNCN0016C_tRNA"; gene_id "YNCN0016C"; gene_name "SUF10"; transcript_biotype "ncRNA"; +chrXIV SGD exon 631846 631917 . - . transcript_id "YNCN0016C_tRNA"; gene_name "SUF10"; gene_id "YNCN0016C"; +chrXIV SGD gene 632599 632672 . + . gene_id "YNCN0017W"; gene_biotype "ncRNA"; +chrXIV SGD transcript 632599 632672 . + . transcript_id "YNCN0017W_tRNA"; gene_id "YNCN0017W"; transcript_biotype "ncRNA"; +chrXIV SGD exon 632599 632672 . + . transcript_id "YNCN0017W_tRNA"; gene_id "YNCN0017W"; +chrXIV SGD gene 632860 634004 . - . gene_id "YNR002C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 632860 634004 . - . transcript_id "YNR002C_id027"; gene_id "YNR002C"; gene_name "ATO2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 632860 634004 . - . transcript_id "YNR002C_id027"; gene_id "YNR002C"; gene_name "ATO2"; +chrXIV SGD transcript 633008 633856 . - . transcript_id "YNR002C_id001"; gene_id "YNR002C"; gene_name "ATO2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 633008 633856 . - 0 transcript_id "YNR002C_id001"; gene_name "ATO2"; gene_id "YNR002C"; +chrXIV SGD gene 633872 635349 . - . gene_id "YNR003C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 633872 635349 . - . transcript_id "YNR003C_id001"; gene_id "YNR003C"; gene_name "RPC34"; transcript_biotype "protein_coding"; +chrXIV SGD exon 633872 635349 . - . transcript_id "YNR003C_id001"; gene_id "YNR003C"; gene_name "RPC34"; +chrXIV SGD transcript 634344 635297 . - . transcript_id "YNR003C_id002"; gene_id "YNR003C"; gene_name "RPC34"; transcript_biotype "protein_coding"; +chrXIV SGD exon 634344 635297 . - 0 transcript_id "YNR003C_id002"; gene_name "RPC34"; gene_id "YNR003C"; +chrXIV SGD gene 634420 634518 . + . gene_id "YNR003W-A"; gene_biotype "protein_coding"; +chrXIV SGD transcript 634420 634518 . + . transcript_id "YNR003W-A_mRNA"; gene_id "YNR003W-A"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 634420 634518 . + 0 transcript_id "YNR003W-A_mRNA"; gene_id "YNR003W-A"; +chrXIV SGD gene 635466 636797 . + . gene_id "YNR004W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 635466 636797 . + . transcript_id "YNR004W_id001"; gene_id "YNR004W"; gene_name "SWM2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 635466 636797 . + . transcript_id "YNR004W_id001"; gene_id "YNR004W"; gene_name "SWM2"; +chrXIV SGD transcript 635943 636383 . + . transcript_id "YNR004W_id003"; gene_id "YNR004W"; gene_name "SWM2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 635943 636383 . + 0 transcript_id "YNR004W_id003"; gene_name "SWM2"; gene_id "YNR004W"; +chrXIV SGD gene 636924 639001 . + . gene_id "YNR006W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 636924 639001 . + . transcript_id "YNR006W_id001"; gene_id "YNR006W"; gene_name "VPS27"; transcript_biotype "protein_coding"; +chrXIV SGD exon 636924 639001 . + . transcript_id "YNR006W_id001"; gene_id "YNR006W"; gene_name "VPS27"; +chrXIV SGD gene 636931 637335 . - . gene_id "YNR005C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 636931 637335 . - . transcript_id "YNR005C_mRNA"; gene_id "YNR005C"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 636931 637335 . - 0 transcript_id "YNR005C_mRNA"; gene_id "YNR005C"; +chrXIV SGD transcript 636986 638854 . + . transcript_id "YNR006W_id003"; gene_id "YNR006W"; gene_name "VPS27"; transcript_biotype "protein_coding"; +chrXIV SGD exon 636986 638854 . + 0 transcript_id "YNR006W_id003"; gene_name "VPS27"; gene_id "YNR006W"; +chrXIV SGD gene 638879 640200 . - . gene_id "YNR007C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 638879 640200 . - . transcript_id "YNR007C_id003"; gene_id "YNR007C"; gene_name "ATG3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 638879 640200 . - . transcript_id "YNR007C_id003"; gene_id "YNR007C"; gene_name "ATG3"; +chrXIV SGD transcript 639182 640114 . - . transcript_id "YNR007C_id001"; gene_id "YNR007C"; gene_name "ATG3"; transcript_biotype "protein_coding"; +chrXIV SGD exon 639182 640114 . - 0 transcript_id "YNR007C_id001"; gene_name "ATG3"; gene_id "YNR007C"; +chrXIV SGD gene 640341 642675 . + . gene_id "YNR008W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 640341 642675 . + . transcript_id "YNR008W_id001"; gene_id "YNR008W"; gene_name "LRO1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 640341 642675 . + . transcript_id "YNR008W_id001"; gene_id "YNR008W"; gene_name "LRO1"; +chrXIV SGD transcript 640396 642381 . + . transcript_id "YNR008W_id002"; gene_id "YNR008W"; gene_name "LRO1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 640396 642381 . + 0 transcript_id "YNR008W_id002"; gene_name "LRO1"; gene_id "YNR008W"; +chrXIV SGD gene 642146 643520 . + . gene_id "YNR009W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 642146 643520 . + . transcript_id "YNR009W_id001"; gene_id "YNR009W"; gene_name "NRM1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 642146 643520 . + . transcript_id "YNR009W_id001"; gene_id "YNR009W"; gene_name "NRM1"; +chrXIV SGD transcript 642690 643439 . + . transcript_id "YNR009W_id003"; gene_id "YNR009W"; gene_name "NRM1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 642690 643439 . + 0 transcript_id "YNR009W_id003"; gene_name "NRM1"; gene_id "YNR009W"; +chrXIV SGD gene 643658 644310 . + . gene_id "YNR010W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 643658 644310 . + . transcript_id "YNR010W_id004"; gene_id "YNR010W"; gene_name "CSE2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 643658 644310 . + . transcript_id "YNR010W_id004"; gene_id "YNR010W"; gene_name "CSE2"; +chrXIV SGD transcript 643744 644193 . + . transcript_id "YNR010W_id001"; gene_id "YNR010W"; gene_name "CSE2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 643744 644193 . + 0 transcript_id "YNR010W_id001"; gene_name "CSE2"; gene_id "YNR010W"; +chrXIV SGD gene 644131 646968 . - . gene_id "YNR011C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 644131 646968 . - . transcript_id "YNR011C_id001"; gene_id "YNR011C"; gene_name "PRP2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 644131 646968 . - . transcript_id "YNR011C_id001"; gene_id "YNR011C"; gene_name "PRP2"; +chrXIV SGD transcript 644320 646950 . - . transcript_id "YNR011C_id006"; gene_id "YNR011C"; gene_name "PRP2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 644320 646950 . - 0 transcript_id "YNR011C_id006"; gene_name "PRP2"; gene_id "YNR011C"; +chrXIV SGD gene 647304 649016 . + . gene_id "YNR012W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 647304 649016 . + . transcript_id "YNR012W_id002"; gene_id "YNR012W"; gene_name "URK1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 647304 649016 . + . transcript_id "YNR012W_id002"; gene_id "YNR012W"; gene_name "URK1"; +chrXIV SGD transcript 647432 648937 . + . transcript_id "YNR012W_id001"; gene_id "YNR012W"; gene_name "URK1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 647432 648937 . + 0 transcript_id "YNR012W_id001"; gene_name "URK1"; gene_id "YNR012W"; +chrXIV SGD gene 648930 651809 . - . gene_id "YNR013C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 648930 651809 . - . transcript_id "YNR013C_id001"; gene_id "YNR013C"; gene_name "PHO91"; transcript_biotype "protein_coding"; +chrXIV SGD exon 648930 651809 . - . transcript_id "YNR013C_id001"; gene_id "YNR013C"; gene_name "PHO91"; +chrXIV SGD transcript 649028 651712 . - . transcript_id "YNR013C_id003"; gene_id "YNR013C"; gene_name "PHO91"; transcript_biotype "protein_coding"; +chrXIV SGD exon 649028 651712 . - 0 transcript_id "YNR013C_id003"; gene_name "PHO91"; gene_id "YNR013C"; +chrXIV SGD gene 652383 653272 . + . gene_id "YNR014W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 652383 653272 . + . transcript_id "YNR014W_id003"; gene_id "YNR014W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 652383 653272 . + . transcript_id "YNR014W_id003"; gene_id "YNR014W"; +chrXIV SGD transcript 652465 653103 . + . transcript_id "YNR014W_id001"; gene_id "YNR014W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 652465 653103 . + 0 transcript_id "YNR014W_id001"; gene_id "YNR014W"; +chrXIV SGD gene 653353 654653 . + . gene_id "YNR015W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 653353 654653 . + . transcript_id "YNR015W_id001"; gene_id "YNR015W"; gene_name "SMM1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 653353 654653 . + . transcript_id "YNR015W_id001"; gene_id "YNR015W"; gene_name "SMM1"; +chrXIV SGD transcript 653387 654541 . + . transcript_id "YNR015W_id003"; gene_id "YNR015W"; gene_name "SMM1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 653387 654541 . + 0 transcript_id "YNR015W_id003"; gene_name "SMM1"; gene_id "YNR015W"; +chrXIV SGD gene 654673 661374 . - . gene_id "YNR016C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 654673 661374 . - . transcript_id "YNR016C_mRNA"; gene_id "YNR016C"; gene_name "ACC1"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 654673 661374 . - 0 transcript_id "YNR016C_mRNA"; gene_name "ACC1"; gene_id "YNR016C"; +chrXIV SGD gene 662313 663828 . + . gene_id "YNR017W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 662313 663828 . + . transcript_id "YNR017W_id001"; gene_id "YNR017W"; gene_name "TIM23"; transcript_biotype "protein_coding"; +chrXIV SGD exon 662313 663828 . + . transcript_id "YNR017W_id001"; gene_id "YNR017W"; gene_name "TIM23"; +chrXIV SGD transcript 662913 663581 . + . transcript_id "YNR017W_id002"; gene_id "YNR017W"; gene_name "TIM23"; transcript_biotype "protein_coding"; +chrXIV SGD exon 662913 663581 . + 0 transcript_id "YNR017W_id002"; gene_name "TIM23"; gene_id "YNR017W"; +chrXIV SGD gene 663877 665070 . + . gene_id "YNR018W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 663877 665070 . + . transcript_id "YNR018W_id001"; gene_id "YNR018W"; gene_name "RCF2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 663877 665070 . + . transcript_id "YNR018W_id001"; gene_id "YNR018W"; gene_name "RCF2"; +chrXIV SGD transcript 664270 664944 . + . transcript_id "YNR018W_id003"; gene_id "YNR018W"; gene_name "RCF2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 664270 664944 . + 0 transcript_id "YNR018W_id003"; gene_name "RCF2"; gene_id "YNR018W"; +chrXIV SGD gene 665339 667267 . + . gene_id "YNR019W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 665339 667267 . + . transcript_id "YNR019W_mRNA"; gene_id "YNR019W"; gene_name "ARE2"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 665339 667267 . + 0 transcript_id "YNR019W_mRNA"; gene_name "ARE2"; gene_id "YNR019W"; +chrXIV SGD gene 667410 668222 . - . gene_id "YNR020C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 667410 668222 . - . transcript_id "YNR020C_mRNA"; gene_id "YNR020C"; gene_name "ATP23"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 667410 668222 . - 0 transcript_id "YNR020C_mRNA"; gene_name "ATP23"; gene_id "YNR020C"; +chrXIV SGD gene 668350 670076 . + . gene_id "YNR021W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 668350 670076 . + . transcript_id "YNR021W_id001"; gene_id "YNR021W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 668350 670076 . + . transcript_id "YNR021W_id001"; gene_id "YNR021W"; +chrXIV SGD transcript 668377 669591 . + . transcript_id "YNR021W_id003"; gene_id "YNR021W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 668377 669591 . + 0 transcript_id "YNR021W_id003"; gene_id "YNR021W"; +chrXIV SGD gene 669669 670373 . - . gene_id "YNR022C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 669669 670373 . - . transcript_id "YNR022C_id003"; gene_id "YNR022C"; gene_name "MRPL50"; transcript_biotype "protein_coding"; +chrXIV SGD exon 669669 670373 . - . transcript_id "YNR022C_id003"; gene_id "YNR022C"; gene_name "MRPL50"; +chrXIV SGD transcript 669774 670193 . - . transcript_id "YNR022C_id001"; gene_id "YNR022C"; gene_name "MRPL50"; transcript_biotype "protein_coding"; +chrXIV SGD exon 669774 670193 . - 0 transcript_id "YNR022C_id001"; gene_name "MRPL50"; gene_id "YNR022C"; +chrXIV SGD gene 670393 672241 . + . gene_id "YNR023W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 670393 672241 . + . transcript_id "YNR023W_id002"; gene_id "YNR023W"; gene_name "SNF12"; transcript_biotype "protein_coding"; +chrXIV SGD exon 670393 672241 . + . transcript_id "YNR023W_id002"; gene_id "YNR023W"; gene_name "SNF12"; +chrXIV SGD transcript 670418 672118 . + . transcript_id "YNR023W_id001"; gene_id "YNR023W"; gene_name "SNF12"; transcript_biotype "protein_coding"; +chrXIV SGD exon 670418 672118 . + 0 transcript_id "YNR023W_id001"; gene_name "SNF12"; gene_id "YNR023W"; +chrXIV SGD gene 672364 673164 . + . gene_id "YNR024W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 672364 673164 . + . transcript_id "YNR024W_id001"; gene_id "YNR024W"; gene_name "MPP6"; transcript_biotype "protein_coding"; +chrXIV SGD exon 672364 673164 . + . transcript_id "YNR024W_id001"; gene_id "YNR024W"; gene_name "MPP6"; +chrXIV SGD transcript 672409 672969 . + . transcript_id "YNR024W_id002"; gene_id "YNR024W"; gene_name "MPP6"; transcript_biotype "protein_coding"; +chrXIV SGD exon 672409 672969 . + 0 transcript_id "YNR024W_id002"; gene_name "MPP6"; gene_id "YNR024W"; +chrXIV SGD gene 672702 673061 . - . gene_id "YNR025C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 672702 673061 . - . transcript_id "YNR025C_mRNA"; gene_id "YNR025C"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 672702 673061 . - 0 transcript_id "YNR025C_mRNA"; gene_id "YNR025C"; +chrXIV SGD gene 672931 674733 . - . gene_id "YNR026C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 672931 674733 . - . transcript_id "YNR026C_id002"; gene_id "YNR026C"; gene_name "SEC12"; transcript_biotype "protein_coding"; +chrXIV SGD exon 672931 674733 . - . transcript_id "YNR026C_id002"; gene_id "YNR026C"; gene_name "SEC12"; +chrXIV SGD transcript 673274 674689 . - . transcript_id "YNR026C_id001"; gene_id "YNR026C"; gene_name "SEC12"; transcript_biotype "protein_coding"; +chrXIV SGD exon 673274 674689 . - 0 transcript_id "YNR026C_id001"; gene_name "SEC12"; gene_id "YNR026C"; +chrXIV SGD gene 674729 676137 . + . gene_id "YNR027W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 674729 676137 . + . transcript_id "YNR027W_id002"; gene_id "YNR027W"; gene_name "BUD17"; transcript_biotype "protein_coding"; +chrXIV SGD exon 674729 676137 . + . transcript_id "YNR027W_id002"; gene_id "YNR027W"; gene_name "BUD17"; +chrXIV SGD transcript 674923 675876 . + . transcript_id "YNR027W_id001"; gene_id "YNR027W"; gene_name "BUD17"; transcript_biotype "protein_coding"; +chrXIV SGD exon 674923 675876 . + 0 transcript_id "YNR027W_id001"; gene_name "BUD17"; gene_id "YNR027W"; +chrXIV SGD gene 676106 677255 . + . gene_id "YNR028W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 676106 677255 . + . transcript_id "YNR028W_id002"; gene_id "YNR028W"; gene_name "CPR8"; transcript_biotype "protein_coding"; +chrXIV SGD exon 676106 677255 . + . transcript_id "YNR028W_id002"; gene_id "YNR028W"; gene_name "CPR8"; +chrXIV SGD transcript 676177 677103 . + . transcript_id "YNR028W_id001"; gene_id "YNR028W"; gene_name "CPR8"; transcript_biotype "protein_coding"; +chrXIV SGD exon 676177 677103 . + 0 transcript_id "YNR028W_id001"; gene_name "CPR8"; gene_id "YNR028W"; +chrXIV SGD gene 677015 678520 . - . gene_id "YNR029C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 677015 678520 . - . transcript_id "YNR029C_id004"; gene_id "YNR029C"; gene_name "ZNG1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 677015 678520 . - . transcript_id "YNR029C_id004"; gene_id "YNR029C"; gene_name "ZNG1"; +chrXIV SGD transcript 677199 678488 . - . transcript_id "YNR029C_id001"; gene_id "YNR029C"; gene_name "ZNG1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 677199 678488 . - 0 transcript_id "YNR029C_id001"; gene_name "ZNG1"; gene_id "YNR029C"; +chrXIV SGD gene 678732 680691 . + . gene_id "YNR030W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 678732 680691 . + . transcript_id "YNR030W_id002"; gene_id "YNR030W"; gene_name "ALG12"; transcript_biotype "protein_coding"; +chrXIV SGD exon 678732 680691 . + . transcript_id "YNR030W_id002"; gene_id "YNR030W"; gene_name "ALG12"; +chrXIV SGD transcript 678799 680454 . + . transcript_id "YNR030W_id001"; gene_id "YNR030W"; gene_name "ALG12"; transcript_biotype "protein_coding"; +chrXIV SGD exon 678799 680454 . + 0 transcript_id "YNR030W_id001"; gene_name "ALG12"; gene_id "YNR030W"; +chrXIV SGD gene 680694 685433 . - . gene_id "YNR031C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 680694 685433 . - . transcript_id "YNR031C_mRNA"; gene_id "YNR031C"; gene_name "SSK2"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 680694 685433 . - 0 transcript_id "YNR031C_mRNA"; gene_name "SSK2"; gene_id "YNR031C"; +chrXIV SGD gene 685866 687253 . + . gene_id "YNR032W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 685866 687253 . + . transcript_id "YNR032W_id002"; gene_id "YNR032W"; gene_name "PPG1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 685866 687253 . + . transcript_id "YNR032W_id002"; gene_id "YNR032W"; gene_name "PPG1"; +chrXIV SGD transcript 686010 687116 . + . transcript_id "YNR032W_id001"; gene_id "YNR032W"; gene_name "PPG1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 686010 687116 . + 0 transcript_id "YNR032W_id001"; gene_name "PPG1"; gene_id "YNR032W"; +chrXIV SGD gene 686550 687496 . - . gene_id "YNR032C-A"; gene_biotype "protein_coding"; +chrXIV SGD transcript 686550 687496 . - . transcript_id "YNR032C-A_id001"; gene_id "YNR032C-A"; gene_name "HUB1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 686550 687496 . - . transcript_id "YNR032C-A_id001"; gene_id "YNR032C-A"; gene_name "HUB1"; +chrXIV SGD transcript 687243 687464 . - . transcript_id "YNR032C-A_id002"; gene_id "YNR032C-A"; gene_name "HUB1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 687243 687464 . - 0 transcript_id "YNR032C-A_id002"; gene_name "HUB1"; gene_id "YNR032C-A"; +chrXIV SGD gene 687367 690067 . + . gene_id "YNR033W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 687367 690067 . + . transcript_id "YNR033W_id002"; gene_id "YNR033W"; gene_name "ABZ1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 687367 690067 . + . transcript_id "YNR033W_id002"; gene_id "YNR033W"; gene_name "ABZ1"; +chrXIV SGD transcript 687635 689998 . + . transcript_id "YNR033W_id001"; gene_id "YNR033W"; gene_name "ABZ1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 687635 689998 . + 0 transcript_id "YNR033W_id001"; gene_name "ABZ1"; gene_id "YNR033W"; +chrXIV SGD gene 690194 691554 . + . gene_id "YNR034W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 690194 691554 . + . transcript_id "YNR034W_id002"; gene_id "YNR034W"; gene_name "SOL1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 690194 691554 . + . transcript_id "YNR034W_id002"; gene_id "YNR034W"; gene_name "SOL1"; +chrXIV SGD transcript 690321 691286 . + . transcript_id "YNR034W_id001"; gene_id "YNR034W"; gene_name "SOL1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 690321 691286 . + 0 transcript_id "YNR034W_id001"; gene_name "SOL1"; gene_id "YNR034W"; +chrXIV SGD gene 692376 692967 . + . gene_id "YNR034W-A"; gene_biotype "protein_coding"; +chrXIV SGD transcript 692376 692967 . + . transcript_id "YNR034W-A_id016"; gene_id "YNR034W-A"; gene_name "EGO4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 692376 692967 . + . transcript_id "YNR034W-A_id016"; gene_id "YNR034W-A"; gene_name "EGO4"; +chrXIV SGD transcript 692561 692857 . + . transcript_id "YNR034W-A_id001"; gene_id "YNR034W-A"; gene_name "EGO4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 692561 692857 . + 0 transcript_id "YNR034W-A_id001"; gene_name "EGO4"; gene_id "YNR034W-A"; +chrXIV SGD gene 692857 694088 . - . gene_id "YNR035C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 692857 694088 . - . transcript_id "YNR035C_id002"; gene_id "YNR035C"; gene_name "ARC35"; transcript_biotype "protein_coding"; +chrXIV SGD exon 692857 694088 . - . transcript_id "YNR035C_id002"; gene_id "YNR035C"; gene_name "ARC35"; +chrXIV SGD transcript 693019 694047 . - . transcript_id "YNR035C_id001"; gene_id "YNR035C"; gene_name "ARC35"; transcript_biotype "protein_coding"; +chrXIV SGD exon 693019 694047 . - 0 transcript_id "YNR035C_id001"; gene_name "ARC35"; gene_id "YNR035C"; +chrXIV SGD gene 694041 694832 . - . gene_id "YNR036C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 694041 694832 . - . transcript_id "YNR036C_id001"; gene_id "YNR036C"; gene_name "MRPS12"; transcript_biotype "protein_coding"; +chrXIV SGD exon 694041 694832 . - . transcript_id "YNR036C_id001"; gene_id "YNR036C"; gene_name "MRPS12"; +chrXIV SGD transcript 694361 694822 . - . transcript_id "YNR036C_id002"; gene_id "YNR036C"; gene_name "MRPS12"; transcript_biotype "protein_coding"; +chrXIV SGD exon 694361 694822 . - 0 transcript_id "YNR036C_id002"; gene_name "MRPS12"; gene_id "YNR036C"; +chrXIV SGD gene 694861 695384 . - . gene_id "YNR037C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 694861 695384 . - . transcript_id "YNR037C_id001"; gene_id "YNR037C"; gene_name "RSM19"; transcript_biotype "protein_coding"; +chrXIV SGD exon 694861 695384 . - . transcript_id "YNR037C_id001"; gene_id "YNR037C"; gene_name "RSM19"; +chrXIV SGD transcript 695052 695327 . - . transcript_id "YNR037C_id003"; gene_id "YNR037C"; gene_name "RSM19"; transcript_biotype "protein_coding"; +chrXIV SGD exon 695052 695327 . - 0 transcript_id "YNR037C_id003"; gene_name "RSM19"; gene_id "YNR037C"; +chrXIV SGD gene 695595 697484 . + . gene_id "YNR038W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 695595 697484 . + . transcript_id "YNR038W_id001"; gene_id "YNR038W"; gene_name "DBP6"; transcript_biotype "protein_coding"; +chrXIV SGD exon 695595 697484 . + 0 transcript_id "YNR038W_id001"; gene_name "DBP6"; gene_id "YNR038W"; +chrXIV SGD gene 697614 699431 . - . gene_id "YNR039C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 697614 699431 . - . transcript_id "YNR039C_id001"; gene_id "YNR039C"; gene_name "ZRG17"; transcript_biotype "protein_coding"; +chrXIV SGD exon 697614 699431 . - 0 transcript_id "YNR039C_id001"; gene_name "ZRG17"; gene_id "YNR039C"; +chrXIV SGD gene 699690 700618 . + . gene_id "YNR040W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 699690 700460 . + . transcript_id "YNR040W_id001"; gene_id "YNR040W"; gene_name "MRX15"; transcript_biotype "protein_coding"; +chrXIV SGD exon 699690 700460 . + 0 transcript_id "YNR040W_id001"; gene_name "MRX15"; gene_id "YNR040W"; +chrXIV SGD transcript 699690 700618 . + . transcript_id "YNR040W_id005"; gene_id "YNR040W"; gene_name "MRX15"; transcript_biotype "protein_coding"; +chrXIV SGD exon 699690 700618 . + . transcript_id "YNR040W_id005"; gene_id "YNR040W"; gene_name "MRX15"; +chrXIV SGD gene 700483 701749 . - . gene_id "YNR041C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 700483 701749 . - . transcript_id "YNR041C_id003"; gene_id "YNR041C"; gene_name "COQ2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 700483 701749 . - . transcript_id "YNR041C_id003"; gene_id "YNR041C"; gene_name "COQ2"; +chrXIV SGD transcript 700541 701659 . - . transcript_id "YNR041C_id001"; gene_id "YNR041C"; gene_name "COQ2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 700541 701659 . - 0 transcript_id "YNR041C_id001"; gene_name "COQ2"; gene_id "YNR041C"; +chrXIV SGD gene 701238 701666 . + . gene_id "YNR042W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 701238 701666 . + . transcript_id "YNR042W_id001"; gene_id "YNR042W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 701238 701666 . + 0 transcript_id "YNR042W_id001"; gene_id "YNR042W"; +chrXIV SGD gene 701859 703609 . + . gene_id "YNR043W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 701859 703609 . + . transcript_id "YNR043W_id003"; gene_id "YNR043W"; gene_name "MVD1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 701859 703609 . + . transcript_id "YNR043W_id003"; gene_id "YNR043W"; gene_name "MVD1"; +chrXIV SGD transcript 701895 703085 . + . transcript_id "YNR043W_id001"; gene_id "YNR043W"; gene_name "MVD1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 701895 703085 . + 0 transcript_id "YNR043W_id001"; gene_name "MVD1"; gene_id "YNR043W"; +chrXIV SGD gene 703582 705951 . + . gene_id "YNR044W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 703582 705951 . + . transcript_id "YNR044W_id002"; gene_id "YNR044W"; gene_name "AGA1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 703582 705951 . + . transcript_id "YNR044W_id002"; gene_id "YNR044W"; gene_name "AGA1"; +chrXIV SGD transcript 703699 705876 . + . transcript_id "YNR044W_id001"; gene_id "YNR044W"; gene_name "AGA1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 703699 705876 . + 0 transcript_id "YNR044W_id001"; gene_name "AGA1"; gene_id "YNR044W"; +chrXIV SGD gene 706085 707715 . + . gene_id "YNR045W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 706085 707715 . + . transcript_id "YNR045W_id003"; gene_id "YNR045W"; gene_name "PET494"; transcript_biotype "protein_coding"; +chrXIV SGD exon 706085 707715 . + . transcript_id "YNR045W_id003"; gene_id "YNR045W"; gene_name "PET494"; +chrXIV SGD transcript 706139 707608 . + . transcript_id "YNR045W_id001"; gene_id "YNR045W"; gene_name "PET494"; transcript_biotype "protein_coding"; +chrXIV SGD exon 706139 707608 . + 0 transcript_id "YNR045W_id001"; gene_name "PET494"; gene_id "YNR045W"; +chrXIV SGD gene 706897 708337 . + . gene_id "YNR046W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 706897 708337 . + . transcript_id "YNR046W_id001"; gene_id "YNR046W"; gene_name "TRM112"; transcript_biotype "protein_coding"; +chrXIV SGD exon 706897 708337 . + . transcript_id "YNR046W_id001"; gene_id "YNR046W"; gene_name "TRM112"; +chrXIV SGD transcript 707788 708195 . + . transcript_id "YNR046W_id002"; gene_id "YNR046W"; gene_name "TRM112"; transcript_biotype "protein_coding"; +chrXIV SGD exon 707788 708195 . + 0 transcript_id "YNR046W_id002"; gene_name "TRM112"; gene_id "YNR046W"; +chrXIV SGD gene 708523 711204 . + . gene_id "YNR047W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 708523 711204 . + . transcript_id "YNR047W_id001"; gene_id "YNR047W"; gene_name "FPK1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 708523 711204 . + 0 transcript_id "YNR047W_id001"; gene_name "FPK1"; gene_id "YNR047W"; +chrXIV SGD gene 711575 713048 . + . gene_id "YNR048W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 711575 713048 . + . transcript_id "YNR048W_id002"; gene_id "YNR048W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 711575 713048 . + . transcript_id "YNR048W_id002"; gene_id "YNR048W"; +chrXIV SGD transcript 711630 712811 . + . transcript_id "YNR048W_id001"; gene_id "YNR048W"; transcript_biotype "protein_coding"; +chrXIV SGD exon 711630 712811 . + 0 transcript_id "YNR048W_id001"; gene_id "YNR048W"; +chrXIV SGD gene 712924 714641 . - . gene_id "YNR049C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 712924 714641 . - . transcript_id "YNR049C_id001"; gene_id "YNR049C"; gene_name "MSO1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 712924 714641 . - . transcript_id "YNR049C_id001"; gene_id "YNR049C"; gene_name "MSO1"; +chrXIV SGD transcript 713023 713655 . - . transcript_id "YNR049C_id003"; gene_id "YNR049C"; gene_name "MSO1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 713023 713655 . - 0 transcript_id "YNR049C_id003"; gene_name "MSO1"; gene_id "YNR049C"; +chrXIV SGD gene 713936 715935 . - . gene_id "YNR050C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 713936 715935 . - . transcript_id "YNR050C_id001"; gene_id "YNR050C"; gene_name "LYS9"; transcript_biotype "protein_coding"; +chrXIV SGD exon 713936 715935 . - . transcript_id "YNR050C_id001"; gene_id "YNR050C"; gene_name "LYS9"; +chrXIV SGD transcript 714048 715388 . - . transcript_id "YNR050C_id002"; gene_id "YNR050C"; gene_name "LYS9"; transcript_biotype "protein_coding"; +chrXIV SGD exon 714048 715388 . - 0 transcript_id "YNR050C_id002"; gene_name "LYS9"; gene_id "YNR050C"; +chrXIV SGD gene 716120 716284 . + . gene_id "YNCN0018W"; gene_biotype "ncRNA"; +chrXIV SGD transcript 716120 716284 . + . transcript_id "YNCN0018W_snoRNA"; gene_id "YNCN0018W"; gene_name "SNR49"; transcript_biotype "ncRNA"; +chrXIV SGD exon 716120 716284 . + . transcript_id "YNCN0018W_snoRNA"; gene_name "SNR49"; gene_id "YNCN0018W"; +chrXIV SGD gene 716325 719068 . - . gene_id "YNR051C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 716325 719068 . - . transcript_id "YNR051C_id002"; gene_id "YNR051C"; gene_name "BRE5"; transcript_biotype "protein_coding"; +chrXIV SGD exon 716325 719068 . - . transcript_id "YNR051C_id002"; gene_id "YNR051C"; gene_name "BRE5"; +chrXIV SGD transcript 716780 718327 . - . transcript_id "YNR051C_id001"; gene_id "YNR051C"; gene_name "BRE5"; transcript_biotype "protein_coding"; +chrXIV SGD exon 716780 718327 . - 0 transcript_id "YNR051C_id001"; gene_name "BRE5"; gene_id "YNR051C"; +chrXIV SGD gene 719267 720779 . - . gene_id "YNR052C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 719267 720779 . - . transcript_id "YNR052C_id002"; gene_id "YNR052C"; gene_name "POP2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 719267 720779 . - . transcript_id "YNR052C_id002"; gene_id "YNR052C"; gene_name "POP2"; +chrXIV SGD transcript 719346 720647 . - . transcript_id "YNR052C_id001"; gene_id "YNR052C"; gene_name "POP2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 719346 720647 . - 0 transcript_id "YNR052C_id001"; gene_name "POP2"; gene_id "YNR052C"; +chrXIV SGD gene 720890 723166 . - . gene_id "YNR053C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 720890 723166 . - . transcript_id "YNR053C_id002"; gene_id "YNR053C"; gene_name "NOG2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 720890 723166 . - . transcript_id "YNR053C_id002"; gene_id "YNR053C"; gene_name "NOG2"; +chrXIV SGD transcript 721120 723112 . - . transcript_id "YNR053C_id001"; gene_id "YNR053C"; gene_name "NOG2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 721120 721770 . - 0 transcript_id "YNR053C_id001"; gene_name "NOG2"; gene_id "YNR053C"; +chrXIV SGD exon 722303 723112 . - 0 transcript_id "YNR053C_id001"; gene_name "NOG2"; gene_id "YNR053C"; +chrXIV SGD gene 721938 722211 . - . gene_id "YNCN0019C"; gene_biotype "ncRNA"; +chrXIV SGD transcript 721938 722211 . - . transcript_id "YNCN0019C_snoRNA"; gene_id "YNCN0019C"; gene_name "SNR191"; transcript_biotype "ncRNA"; +chrXIV SGD exon 721938 722211 . - . transcript_id "YNCN0019C_snoRNA"; gene_name "SNR191"; gene_id "YNCN0019C"; +chrXIV SGD gene 723092 724333 . - . gene_id "YNR054C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 723092 724333 . - . transcript_id "YNR054C_id001"; gene_id "YNR054C"; gene_name "ESF2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 723092 724333 . - . transcript_id "YNR054C_id001"; gene_id "YNR054C"; gene_name "ESF2"; +chrXIV SGD transcript 723356 724306 . - . transcript_id "YNR054C_id003"; gene_id "YNR054C"; gene_name "ESF2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 723356 724306 . - 0 transcript_id "YNR054C_id003"; gene_name "ESF2"; gene_id "YNR054C"; +chrXIV SGD gene 726134 726217 . - . gene_id "YNCN0020C"; gene_biotype "ncRNA"; +chrXIV SGD transcript 726134 726217 . - . transcript_id "YNCN0020C_tRNA"; gene_id "YNCN0020C"; transcript_biotype "ncRNA"; +chrXIV SGD exon 726134 726217 . - . transcript_id "YNCN0020C_tRNA"; gene_id "YNCN0020C"; +chrXIV SGD gene 728210 730644 . - . gene_id "YNR055C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 728210 730644 . - . transcript_id "YNR055C_id003"; gene_id "YNR055C"; gene_name "HOL1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 728210 730644 . - . transcript_id "YNR055C_id003"; gene_id "YNR055C"; gene_name "HOL1"; +chrXIV SGD transcript 728426 730186 . - . transcript_id "YNR055C_id001"; gene_id "YNR055C"; gene_name "HOL1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 728426 730186 . - 0 transcript_id "YNR055C_id001"; gene_name "HOL1"; gene_id "YNR055C"; +chrXIV SGD gene 731618 733303 . - . gene_id "YNR056C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 731618 733303 . - . transcript_id "YNR056C_id001"; gene_id "YNR056C"; gene_name "BIO5"; transcript_biotype "protein_coding"; +chrXIV SGD exon 731618 733303 . - 0 transcript_id "YNR056C_id001"; gene_name "BIO5"; gene_id "YNR056C"; +chrXIV SGD gene 733267 734186 . - . gene_id "YNR057C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 733267 734186 . - . transcript_id "YNR057C_id003"; gene_id "YNR057C"; gene_name "BIO4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 733267 734186 . - . transcript_id "YNR057C_id003"; gene_id "YNR057C"; gene_name "BIO4"; +chrXIV SGD transcript 733356 734069 . - . transcript_id "YNR057C_id001"; gene_id "YNR057C"; gene_name "BIO4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 733356 734069 . - 0 transcript_id "YNR057C_id001"; gene_name "BIO4"; gene_id "YNR057C"; +chrXIV SGD gene 734291 735733 . + . gene_id "YNR058W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 734291 735733 . + . transcript_id "YNR058W_mRNA"; gene_id "YNR058W"; gene_name "BIO3"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 734291 735733 . + 0 transcript_id "YNR058W_mRNA"; gene_name "BIO3"; gene_id "YNR058W"; +chrXIV SGD gene 736696 738641 . + . gene_id "YNR059W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 736696 738641 . + . transcript_id "YNR059W_id005"; gene_id "YNR059W"; gene_name "MNT4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 736696 738641 . + . transcript_id "YNR059W_id005"; gene_id "YNR059W"; gene_name "MNT4"; +chrXIV SGD transcript 736803 738545 . + . transcript_id "YNR059W_id001"; gene_id "YNR059W"; gene_name "MNT4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 736803 738545 . + 0 transcript_id "YNR059W_id001"; gene_name "MNT4"; gene_id "YNR059W"; +chrXIV SGD gene 739951 742110 . + . gene_id "YNR060W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 739951 742110 . + . transcript_id "YNR060W_mRNA"; gene_id "YNR060W"; gene_name "FRE4"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 739951 742110 . + 0 transcript_id "YNR060W_mRNA"; gene_name "FRE4"; gene_id "YNR060W"; +chrXIV SGD gene 742488 743632 . - . gene_id "YNR061C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 742488 743632 . - . transcript_id "YNR061C_id002"; gene_id "YNR061C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 742488 743632 . - . transcript_id "YNR061C_id002"; gene_id "YNR061C"; +chrXIV SGD transcript 742881 743540 . - . transcript_id "YNR061C_id001"; gene_id "YNR061C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 742881 743540 . - 0 transcript_id "YNR061C_id001"; gene_id "YNR061C"; +chrXIV SGD gene 744360 745343 . - . gene_id "YNR062C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 744360 745343 . - . transcript_id "YNR062C_mRNA"; gene_id "YNR062C"; gene_name "PUL3"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 744360 745343 . - 0 transcript_id "YNR062C_mRNA"; gene_name "PUL3"; gene_id "YNR062C"; +chrXIV SGD gene 746943 748766 . + . gene_id "YNR063W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 746943 748766 . + . transcript_id "YNR063W_mRNA"; gene_id "YNR063W"; gene_name "PUL4"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 746943 748766 . + 0 transcript_id "YNR063W_mRNA"; gene_name "PUL4"; gene_id "YNR063W"; +chrXIV SGD gene 748907 750019 . - . gene_id "YNR064C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 748907 750019 . - . transcript_id "YNR064C_id008"; gene_id "YNR064C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 748907 750019 . - . transcript_id "YNR064C_id008"; gene_id "YNR064C"; +chrXIV SGD transcript 749136 750008 . - . transcript_id "YNR064C_id001"; gene_id "YNR064C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 749136 750008 . - 0 transcript_id "YNR064C_id001"; gene_id "YNR064C"; +chrXIV SGD gene 750350 753700 . - . gene_id "YNR065C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 750350 753700 . - . transcript_id "YNR065C_mRNA"; gene_id "YNR065C"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 750350 753700 . - 0 transcript_id "YNR065C_mRNA"; gene_id "YNR065C"; +chrXIV SGD gene 753725 755035 . - . gene_id "YNR066C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 753725 755035 . - . transcript_id "YNR066C_mRNA"; gene_id "YNR066C"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 753725 755035 . - 0 transcript_id "YNR066C_mRNA"; gene_id "YNR066C"; +chrXIV SGD gene 755648 759145 . - . gene_id "YNR067C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 755648 759145 . - . transcript_id "YNR067C_id002"; gene_id "YNR067C"; gene_name "DSE4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 755648 759145 . - . transcript_id "YNR067C_id002"; gene_id "YNR067C"; gene_name "DSE4"; +chrXIV SGD transcript 755746 759099 . - . transcript_id "YNR067C_id001"; gene_id "YNR067C"; gene_name "DSE4"; transcript_biotype "protein_coding"; +chrXIV SGD exon 755746 759099 . - 0 transcript_id "YNR067C_id001"; gene_name "DSE4"; gene_id "YNR067C"; +chrXIV SGD gene 759807 761046 . - . gene_id "YNR068C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 759807 761046 . - . transcript_id "YNR068C_id002"; gene_id "YNR068C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 759807 761046 . - . transcript_id "YNR068C_id002"; gene_id "YNR068C"; +chrXIV SGD transcript 760067 760885 . - . transcript_id "YNR068C_id001"; gene_id "YNR068C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 760067 760885 . - 0 transcript_id "YNR068C_id001"; gene_id "YNR068C"; +chrXIV SGD gene 761123 762592 . - . gene_id "YNR069C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 761123 762592 . - . transcript_id "YNR069C_mRNA"; gene_id "YNR069C"; gene_name "BSC5"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 761123 762592 . - 0 transcript_id "YNR069C_mRNA"; gene_name "BSC5"; gene_id "YNR069C"; +chrXIV SGD gene 765375 769376 . + . gene_id "YNR070W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 765375 769376 . + . transcript_id "YNR070W_mRNA"; gene_id "YNR070W"; gene_name "PDR18"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 765375 769376 . + 0 transcript_id "YNR070W_mRNA"; gene_name "PDR18"; gene_id "YNR070W"; +chrXIV SGD gene 770440 771468 . - . gene_id "YNR071C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 770440 771468 . - . transcript_id "YNR071C_id001"; gene_id "YNR071C"; transcript_biotype "protein_coding"; +chrXIV SGD exon 770440 771468 . - 0 transcript_id "YNR071C_id001"; gene_id "YNR071C"; +chrXIV SGD gene 772657 774351 . + . gene_id "YNR072W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 772657 774351 . + . transcript_id "YNR072W_mRNA"; gene_id "YNR072W"; gene_name "HXT17"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 772657 774351 . + 0 transcript_id "YNR072W_mRNA"; gene_name "HXT17"; gene_id "YNR072W"; +chrXIV SGD gene 774792 776300 . - . gene_id "YNR073C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 774792 776300 . - . transcript_id "YNR073C_id001"; gene_id "YNR073C"; gene_name "MAN2"; transcript_biotype "protein_coding"; +chrXIV SGD exon 774792 776300 . - 0 transcript_id "YNR073C_id001"; gene_name "MAN2"; gene_id "YNR073C"; +chrXIV SGD gene 777519 778889 . - . gene_id "YNR074C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 777519 778889 . - . transcript_id "YNR074C_id001"; gene_id "YNR074C"; gene_name "AIF1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 777519 778889 . - . transcript_id "YNR074C_id001"; gene_id "YNR074C"; gene_name "AIF1"; +chrXIV SGD transcript 777602 778738 . - . transcript_id "YNR074C_id002"; gene_id "YNR074C"; gene_name "AIF1"; transcript_biotype "protein_coding"; +chrXIV SGD exon 777602 778738 . - 0 transcript_id "YNR074C_id002"; gene_name "AIF1"; gene_id "YNR074C"; +chrXIV SGD gene 779916 781040 . + . gene_id "YNR075W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 779916 781040 . + . transcript_id "YNR075W_mRNA"; gene_id "YNR075W"; gene_name "COS10"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 779916 781040 . + 0 transcript_id "YNR075W_mRNA"; gene_name "COS10"; gene_id "YNR075W"; +chrXIV SGD gene 780577 782416 . + . gene_id "YNR076W"; gene_biotype "protein_coding"; +chrXIV SGD transcript 780577 782416 . + . transcript_id "YNR076W_id002"; gene_id "YNR076W"; gene_name "PAU6"; transcript_biotype "protein_coding"; +chrXIV SGD exon 780577 782416 . + . transcript_id "YNR076W_id002"; gene_id "YNR076W"; gene_name "PAU6"; +chrXIV SGD gene 781511 781603 . - . gene_id "YNR075C-A"; gene_biotype "protein_coding"; +chrXIV SGD transcript 781511 781603 . - . transcript_id "YNR075C-A_mRNA"; gene_id "YNR075C-A"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 781511 781603 . - 0 transcript_id "YNR075C-A_mRNA"; gene_id "YNR075C-A"; +chrXIV SGD transcript 781918 782280 . + . transcript_id "YNR076W_id001"; gene_id "YNR076W"; gene_name "PAU6"; transcript_biotype "protein_coding"; +chrXIV SGD exon 781918 782280 . + 0 transcript_id "YNR076W_id001"; gene_name "PAU6"; gene_id "YNR076W"; +chrXIV SGD gene 783287 783541 . - . gene_id "YNR077C"; gene_biotype "protein_coding"; +chrXIV SGD transcript 783287 783541 . - . transcript_id "YNR077C_mRNA"; gene_id "YNR077C"; transcript_biotype "protein_coding"; +chrXIV SGD CDS 783287 783541 . - 0 transcript_id "YNR077C_mRNA"; gene_id "YNR077C"; +chrXV SGD gene 585 740 . + . gene_id "YOL166W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 585 740 . + . transcript_id "YOL166W-A_mRNA"; gene_id "YOL166W-A"; transcript_biotype "protein_coding"; +chrXV SGD CDS 585 740 . + 0 transcript_id "YOL166W-A_mRNA"; gene_id "YOL166W-A"; +chrXV SGD gene 1000 1338 . - . gene_id "YOL166C"; gene_biotype "protein_coding"; +chrXV SGD transcript 1000 1338 . - . transcript_id "YOL166C_mRNA"; gene_id "YOL166C"; transcript_biotype "protein_coding"; +chrXV SGD CDS 1000 1338 . - 0 transcript_id "YOL166C_mRNA"; gene_id "YOL166C"; +chrXV SGD gene 1647 2078 . - . gene_id "YOL165C"; gene_biotype "protein_coding"; +chrXV SGD transcript 1647 2078 . - . transcript_id "YOL165C_mRNA"; gene_id "YOL165C"; gene_name "AAD15"; transcript_biotype "protein_coding"; +chrXV SGD CDS 1647 2078 . - 0 transcript_id "YOL165C_mRNA"; gene_name "AAD15"; gene_id "YOL165C"; +chrXV SGD gene 4130 4312 . + . gene_id "YOL164W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 4130 4312 . + . transcript_id "YOL164W-A_mRNA"; gene_id "YOL164W-A"; transcript_biotype "protein_coding"; +chrXV SGD CDS 4130 4312 . + 0 transcript_id "YOL164W-A_mRNA"; gene_id "YOL164W-A"; +chrXV SGD gene 6175 8115 . + . gene_id "YOL164W"; gene_biotype "protein_coding"; +chrXV SGD transcript 6175 8115 . + . transcript_id "YOL164W_id001"; gene_id "YOL164W"; gene_name "BDS1"; transcript_biotype "protein_coding"; +chrXV SGD exon 6175 8115 . + 0 transcript_id "YOL164W_id001"; gene_name "BDS1"; gene_id "YOL164W"; +chrXV SGD gene 9597 10106 . + . gene_id "YOL163W"; gene_biotype "protein_coding"; +chrXV SGD transcript 9597 10106 . + . transcript_id "YOL163W_id001"; gene_id "YOL163W"; transcript_biotype "protein_coding"; +chrXV SGD exon 9597 10106 . + 0 transcript_id "YOL163W_id001"; gene_id "YOL163W"; +chrXV SGD gene 10119 10766 . + . gene_id "YOL162W"; gene_biotype "protein_coding"; +chrXV SGD transcript 10119 10766 . + . transcript_id "YOL162W_id001"; gene_id "YOL162W"; transcript_biotype "protein_coding"; +chrXV SGD exon 10119 10766 . + 0 transcript_id "YOL162W_id001"; gene_id "YOL162W"; +chrXV SGD gene 11549 11911 . - . gene_id "YOL161C"; gene_biotype "protein_coding"; +chrXV SGD transcript 11549 11911 . - . transcript_id "YOL161C_mRNA"; gene_id "YOL161C"; gene_name "PAU20"; transcript_biotype "protein_coding"; +chrXV SGD CDS 11549 11911 . - 0 transcript_id "YOL161C_mRNA"; gene_name "PAU20"; gene_id "YOL161C"; +chrXV SGD gene 14313 14654 . + . gene_id "YOL160W"; gene_biotype "protein_coding"; +chrXV SGD transcript 14313 14654 . + . transcript_id "YOL160W_id001"; gene_id "YOL160W"; transcript_biotype "protein_coding"; +chrXV SGD exon 14313 14654 . + 0 transcript_id "YOL160W_id001"; gene_id "YOL160W"; +chrXV SGD gene 14618 15624 . - . gene_id "YOL159C-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 14618 15624 . - . transcript_id "YOL159C-A_id003"; gene_id "YOL159C-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 14618 15624 . - . transcript_id "YOL159C-A_id003"; gene_id "YOL159C-A"; +chrXV SGD transcript 15233 15505 . - . transcript_id "YOL159C-A_id001"; gene_id "YOL159C-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 15233 15505 . - 0 transcript_id "YOL159C-A_id001"; gene_id "YOL159C-A"; +chrXV SGD gene 16719 17814 . - . gene_id "YOL159C"; gene_biotype "protein_coding"; +chrXV SGD transcript 16719 17814 . - . transcript_id "YOL159C_id001"; gene_id "YOL159C"; gene_name "CSS3"; transcript_biotype "protein_coding"; +chrXV SGD exon 16719 17814 . - . transcript_id "YOL159C_id001"; gene_id "YOL159C"; gene_name "CSS3"; +chrXV SGD transcript 17281 17796 . - . transcript_id "YOL159C_id002"; gene_id "YOL159C"; gene_name "CSS3"; transcript_biotype "protein_coding"; +chrXV SGD exon 17281 17796 . - 0 transcript_id "YOL159C_id002"; gene_name "CSS3"; gene_id "YOL159C"; +chrXV SGD gene 19090 21654 . - . gene_id "YOL158C"; gene_biotype "protein_coding"; +chrXV SGD transcript 19090 21654 . - . transcript_id "YOL158C_id001"; gene_id "YOL158C"; gene_name "ENB1"; transcript_biotype "protein_coding"; +chrXV SGD exon 19090 21654 . - . transcript_id "YOL158C_id001"; gene_id "YOL158C"; gene_name "ENB1"; +chrXV SGD transcript 19491 21311 . - . transcript_id "YOL158C_id007"; gene_id "YOL158C"; gene_name "ENB1"; transcript_biotype "protein_coding"; +chrXV SGD exon 19491 21311 . - 0 transcript_id "YOL158C_id007"; gene_name "ENB1"; gene_id "YOL158C"; +chrXV SGD gene 22525 24294 . - . gene_id "YOL157C"; gene_biotype "protein_coding"; +chrXV SGD transcript 22525 24294 . - . transcript_id "YOL157C_id001"; gene_id "YOL157C"; gene_name "IMA2"; transcript_biotype "protein_coding"; +chrXV SGD exon 22525 24294 . - 0 transcript_id "YOL157C_id001"; gene_name "IMA2"; gene_id "YOL157C"; +chrXV SGD gene 25273 26976 . + . gene_id "YOL156W"; gene_biotype "protein_coding"; +chrXV SGD transcript 25273 26976 . + . transcript_id "YOL156W_mRNA"; gene_id "YOL156W"; gene_name "HXT11"; transcript_biotype "protein_coding"; +chrXV SGD CDS 25273 26976 . + 0 transcript_id "YOL156W_mRNA"; gene_name "HXT11"; gene_id "YOL156W"; +chrXV SGD gene 27084 27218 . + . gene_id "YOL155W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 27084 27218 . + . transcript_id "YOL155W-A_mRNA"; gene_id "YOL155W-A"; transcript_biotype "protein_coding"; +chrXV SGD CDS 27084 27218 . + 0 transcript_id "YOL155W-A_mRNA"; gene_id "YOL155W-A"; +chrXV SGD gene 28580 31660 . - . gene_id "YOL155C"; gene_biotype "protein_coding"; +chrXV SGD transcript 28580 31660 . - . transcript_id "YOL155C_id002"; gene_id "YOL155C"; gene_name "HPF1"; transcript_biotype "protein_coding"; +chrXV SGD exon 28580 31660 . - . transcript_id "YOL155C_id002"; gene_id "YOL155C"; gene_name "HPF1"; +chrXV SGD transcript 28703 31606 . - . transcript_id "YOL155C_id001"; gene_id "YOL155C"; gene_name "HPF1"; transcript_biotype "protein_coding"; +chrXV SGD exon 28703 31606 . - 0 transcript_id "YOL155C_id001"; gene_name "HPF1"; gene_id "YOL155C"; +chrXV SGD gene 34383 35499 . + . gene_id "YOL154W"; gene_biotype "protein_coding"; +chrXV SGD transcript 34383 35499 . + . transcript_id "YOL154W_id007"; gene_id "YOL154W"; gene_name "ZPS1"; transcript_biotype "protein_coding"; +chrXV SGD exon 34383 35499 . + . transcript_id "YOL154W_id007"; gene_id "YOL154W"; gene_name "ZPS1"; +chrXV SGD transcript 34658 35407 . + . transcript_id "YOL154W_id001"; gene_id "YOL154W"; gene_name "ZPS1"; transcript_biotype "protein_coding"; +chrXV SGD exon 34658 35407 . + 0 transcript_id "YOL154W_id001"; gene_name "ZPS1"; gene_id "YOL154W"; +chrXV SGD gene 40748 42610 . + . gene_id "YOL152W"; gene_biotype "protein_coding"; +chrXV SGD transcript 40748 42610 . + . transcript_id "YOL152W_id001"; gene_id "YOL152W"; gene_name "FRE7"; transcript_biotype "protein_coding"; +chrXV SGD exon 40748 42610 . + 0 transcript_id "YOL152W_id001"; gene_name "FRE7"; gene_id "YOL152W"; +chrXV SGD gene 43671 44868 . + . gene_id "YOL151W"; gene_biotype "protein_coding"; +chrXV SGD transcript 43671 44868 . + . transcript_id "YOL151W_id001"; gene_id "YOL151W"; gene_name "GRE2"; transcript_biotype "protein_coding"; +chrXV SGD exon 43671 44868 . + . transcript_id "YOL151W_id001"; gene_id "YOL151W"; gene_name "GRE2"; +chrXV SGD transcript 43694 44722 . + . transcript_id "YOL151W_id003"; gene_id "YOL151W"; gene_name "GRE2"; transcript_biotype "protein_coding"; +chrXV SGD exon 43694 44722 . + 0 transcript_id "YOL151W_id003"; gene_name "GRE2"; gene_id "YOL151W"; +chrXV SGD gene 44473 44784 . - . gene_id "YOL150C"; gene_biotype "protein_coding"; +chrXV SGD transcript 44473 44784 . - . transcript_id "YOL150C_mRNA"; gene_id "YOL150C"; transcript_biotype "protein_coding"; +chrXV SGD CDS 44473 44784 . - 0 transcript_id "YOL150C_mRNA"; gene_id "YOL150C"; +chrXV SGD gene 44938 45633 . + . gene_id "YOL149W"; gene_biotype "protein_coding"; +chrXV SGD transcript 44938 45633 . + . transcript_id "YOL149W_mRNA"; gene_id "YOL149W"; gene_name "DCP1"; transcript_biotype "protein_coding"; +chrXV SGD CDS 44938 45633 . + 0 transcript_id "YOL149W_mRNA"; gene_name "DCP1"; gene_id "YOL149W"; +chrXV SGD gene 45760 47574 . - . gene_id "YOL148C"; gene_biotype "protein_coding"; +chrXV SGD transcript 45760 47574 . - . transcript_id "YOL148C_mRNA"; gene_id "YOL148C"; gene_name "SPT20"; transcript_biotype "protein_coding"; +chrXV SGD CDS 45760 47574 . - 0 transcript_id "YOL148C_mRNA"; gene_name "SPT20"; gene_id "YOL148C"; +chrXV SGD gene 47735 48675 . - . gene_id "YOL147C"; gene_biotype "protein_coding"; +chrXV SGD transcript 47735 48675 . - . transcript_id "YOL147C_id004"; gene_id "YOL147C"; gene_name "PEX11"; transcript_biotype "protein_coding"; +chrXV SGD exon 47735 48675 . - . transcript_id "YOL147C_id004"; gene_id "YOL147C"; gene_name "PEX11"; +chrXV SGD transcript 47933 48643 . - . transcript_id "YOL147C_id001"; gene_id "YOL147C"; gene_name "PEX11"; transcript_biotype "protein_coding"; +chrXV SGD exon 47933 48643 . - 0 transcript_id "YOL147C_id001"; gene_name "PEX11"; gene_id "YOL147C"; +chrXV SGD gene 48850 49556 . + . gene_id "YOL146W"; gene_biotype "protein_coding"; +chrXV SGD transcript 48850 49556 . + . transcript_id "YOL146W_id001"; gene_id "YOL146W"; gene_name "PSF3"; transcript_biotype "protein_coding"; +chrXV SGD exon 48850 49556 . + . transcript_id "YOL146W_id001"; gene_id "YOL146W"; gene_name "PSF3"; +chrXV SGD transcript 48864 49448 . + . transcript_id "YOL146W_id002"; gene_id "YOL146W"; gene_name "PSF3"; transcript_biotype "protein_coding"; +chrXV SGD exon 48864 49448 . + 0 transcript_id "YOL146W_id002"; gene_name "PSF3"; gene_id "YOL146W"; +chrXV SGD gene 49555 52788 . - . gene_id "YOL145C"; gene_biotype "protein_coding"; +chrXV SGD transcript 49555 52788 . - . transcript_id "YOL145C_mRNA"; gene_id "YOL145C"; gene_name "CTR9"; transcript_biotype "protein_coding"; +chrXV SGD CDS 49555 52788 . - 0 transcript_id "YOL145C_mRNA"; gene_name "CTR9"; gene_id "YOL145C"; +chrXV SGD gene 53037 54613 . + . gene_id "YOL144W"; gene_biotype "protein_coding"; +chrXV SGD transcript 53037 54613 . + . transcript_id "YOL144W_id004"; gene_id "YOL144W"; gene_name "NOP8"; transcript_biotype "protein_coding"; +chrXV SGD exon 53037 54613 . + . transcript_id "YOL144W_id004"; gene_id "YOL144W"; gene_name "NOP8"; +chrXV SGD transcript 53098 54552 . + . transcript_id "YOL144W_id001"; gene_id "YOL144W"; gene_name "NOP8"; transcript_biotype "protein_coding"; +chrXV SGD exon 53098 54552 . + 0 transcript_id "YOL144W_id001"; gene_name "NOP8"; gene_id "YOL144W"; +chrXV SGD gene 54522 55351 . - . gene_id "YOL143C"; gene_biotype "protein_coding"; +chrXV SGD transcript 54522 55351 . - . transcript_id "YOL143C_id003"; gene_id "YOL143C"; gene_name "RIB4"; transcript_biotype "protein_coding"; +chrXV SGD exon 54522 55351 . - . transcript_id "YOL143C_id003"; gene_id "YOL143C"; gene_name "RIB4"; +chrXV SGD transcript 54595 55104 . - . transcript_id "YOL143C_id001"; gene_id "YOL143C"; gene_name "RIB4"; transcript_biotype "protein_coding"; +chrXV SGD exon 54595 55104 . - 0 transcript_id "YOL143C_id001"; gene_name "RIB4"; gene_id "YOL143C"; +chrXV SGD gene 55413 56349 . + . gene_id "YOL142W"; gene_biotype "protein_coding"; +chrXV SGD transcript 55413 56349 . + . transcript_id "YOL142W_id001"; gene_id "YOL142W"; gene_name "RRP40"; transcript_biotype "protein_coding"; +chrXV SGD exon 55413 56349 . + . transcript_id "YOL142W_id001"; gene_id "YOL142W"; gene_name "RRP40"; +chrXV SGD transcript 55558 56280 . + . transcript_id "YOL142W_id002"; gene_id "YOL142W"; gene_name "RRP40"; transcript_biotype "protein_coding"; +chrXV SGD exon 55558 56280 . + 0 transcript_id "YOL142W_id002"; gene_name "RRP40"; gene_id "YOL142W"; +chrXV SGD gene 56452 58539 . + . gene_id "YOL141W"; gene_biotype "protein_coding"; +chrXV SGD transcript 56452 58539 . + . transcript_id "YOL141W_id001"; gene_id "YOL141W"; gene_name "PPM2"; transcript_biotype "protein_coding"; +chrXV SGD exon 56452 58539 . + 0 transcript_id "YOL141W_id001"; gene_name "PPM2"; gene_id "YOL141W"; +chrXV SGD gene 57648 60124 . + . gene_id "YOL140W"; gene_biotype "protein_coding"; +chrXV SGD transcript 57648 60124 . + . transcript_id "YOL140W_id002"; gene_id "YOL140W"; gene_name "ARG8"; transcript_biotype "protein_coding"; +chrXV SGD exon 57648 60124 . + . transcript_id "YOL140W_id002"; gene_id "YOL140W"; gene_name "ARG8"; +chrXV SGD transcript 58759 60030 . + . transcript_id "YOL140W_id001"; gene_id "YOL140W"; gene_name "ARG8"; transcript_biotype "protein_coding"; +chrXV SGD exon 58759 60030 . + 0 transcript_id "YOL140W_id001"; gene_name "ARG8"; gene_id "YOL140W"; +chrXV SGD gene 60238 61147 . - . gene_id "YOL139C"; gene_biotype "protein_coding"; +chrXV SGD transcript 60238 61147 . - . transcript_id "YOL139C_id001"; gene_id "YOL139C"; gene_name "CDC33"; transcript_biotype "protein_coding"; +chrXV SGD exon 60238 61147 . - . transcript_id "YOL139C_id001"; gene_id "YOL139C"; gene_name "CDC33"; +chrXV SGD transcript 60383 61024 . - . transcript_id "YOL139C_id004"; gene_id "YOL139C"; gene_name "CDC33"; transcript_biotype "protein_coding"; +chrXV SGD exon 60383 61024 . - 0 transcript_id "YOL139C_id004"; gene_name "CDC33"; gene_id "YOL139C"; +chrXV SGD gene 61325 65350 . - . gene_id "YOL138C"; gene_biotype "protein_coding"; +chrXV SGD transcript 61325 65350 . - . transcript_id "YOL138C_id001"; gene_id "YOL138C"; gene_name "RTC1"; transcript_biotype "protein_coding"; +chrXV SGD exon 61325 65350 . - 0 transcript_id "YOL138C_id001"; gene_name "RTC1"; gene_id "YOL138C"; +chrXV SGD gene 65557 67416 . + . gene_id "YOL137W"; gene_biotype "protein_coding"; +chrXV SGD transcript 65557 67416 . + . transcript_id "YOL137W_id001"; gene_id "YOL137W"; gene_name "BSC6"; transcript_biotype "protein_coding"; +chrXV SGD exon 65557 67416 . + . transcript_id "YOL137W_id001"; gene_id "YOL137W"; gene_name "BSC6"; +chrXV SGD transcript 65621 67114 . + . transcript_id "YOL137W_id002"; gene_id "YOL137W"; gene_name "BSC6"; transcript_biotype "protein_coding"; +chrXV SGD exon 65621 67114 . + 0 transcript_id "YOL137W_id002"; gene_name "BSC6"; gene_id "YOL137W"; +chrXV SGD gene 67209 69024 . - . gene_id "YOL136C"; gene_biotype "protein_coding"; +chrXV SGD transcript 67209 69024 . - . transcript_id "YOL136C_id002"; gene_id "YOL136C"; gene_name "PFK27"; transcript_biotype "protein_coding"; +chrXV SGD exon 67209 69024 . - . transcript_id "YOL136C_id002"; gene_id "YOL136C"; gene_name "PFK27"; +chrXV SGD transcript 67561 68754 . - . transcript_id "YOL136C_id001"; gene_id "YOL136C"; gene_name "PFK27"; transcript_biotype "protein_coding"; +chrXV SGD exon 67561 68754 . - 0 transcript_id "YOL136C_id001"; gene_name "PFK27"; gene_id "YOL136C"; +chrXV SGD gene 69218 70104 . - . gene_id "YOL135C"; gene_biotype "protein_coding"; +chrXV SGD transcript 69218 70104 . - . transcript_id "YOL135C_id002"; gene_id "YOL135C"; gene_name "MED7"; transcript_biotype "protein_coding"; +chrXV SGD exon 69218 70104 . - . transcript_id "YOL135C_id002"; gene_id "YOL135C"; gene_name "MED7"; +chrXV SGD transcript 69376 70044 . - . transcript_id "YOL135C_id001"; gene_id "YOL135C"; gene_name "MED7"; transcript_biotype "protein_coding"; +chrXV SGD exon 69376 70044 . - 0 transcript_id "YOL135C_id001"; gene_name "MED7"; gene_id "YOL135C"; +chrXV SGD gene 70156 70545 . - . gene_id "YOL134C"; gene_biotype "protein_coding"; +chrXV SGD transcript 70156 70545 . - . transcript_id "YOL134C_mRNA"; gene_id "YOL134C"; transcript_biotype "protein_coding"; +chrXV SGD CDS 70156 70545 . - 0 transcript_id "YOL134C_mRNA"; gene_id "YOL134C"; +chrXV SGD gene 70241 71059 . + . gene_id "YOL133W"; gene_biotype "protein_coding"; +chrXV SGD transcript 70241 71059 . + . transcript_id "YOL133W_id005"; gene_id "YOL133W"; gene_name "HRT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 70241 71059 . + . transcript_id "YOL133W_id005"; gene_id "YOL133W"; gene_name "HRT1"; +chrXV SGD transcript 70325 70690 . + . transcript_id "YOL133W_id001"; gene_id "YOL133W"; gene_name "HRT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 70325 70690 . + 0 transcript_id "YOL133W_id001"; gene_name "HRT1"; gene_id "YOL133W"; +chrXV SGD gene 71300 72715 . + . gene_id "YOL132W"; gene_biotype "protein_coding"; +chrXV SGD transcript 71300 72715 . + . transcript_id "YOL132W_mRNA"; gene_id "YOL132W"; gene_name "GAS4"; transcript_biotype "protein_coding"; +chrXV SGD CDS 71300 72715 . + 0 transcript_id "YOL132W_mRNA"; gene_name "GAS4"; gene_id "YOL132W"; +chrXV SGD gene 73031 73357 . + . gene_id "YOL131W"; gene_biotype "protein_coding"; +chrXV SGD transcript 73031 73357 . + . transcript_id "YOL131W_mRNA"; gene_id "YOL131W"; transcript_biotype "protein_coding"; +chrXV SGD CDS 73031 73357 . + 0 transcript_id "YOL131W_mRNA"; gene_id "YOL131W"; +chrXV SGD gene 74153 77351 . + . gene_id "YOL130W"; gene_biotype "protein_coding"; +chrXV SGD transcript 74153 77351 . + . transcript_id "YOL130W_id006"; gene_id "YOL130W"; gene_name "ALR1"; transcript_biotype "protein_coding"; +chrXV SGD exon 74153 77351 . + . transcript_id "YOL130W_id006"; gene_id "YOL130W"; gene_name "ALR1"; +chrXV SGD transcript 74400 76979 . + . transcript_id "YOL130W_id001"; gene_id "YOL130W"; gene_name "ALR1"; transcript_biotype "protein_coding"; +chrXV SGD exon 74400 76979 . + 0 transcript_id "YOL130W_id001"; gene_name "ALR1"; gene_id "YOL130W"; +chrXV SGD gene 77505 78298 . + . gene_id "YOL129W"; gene_biotype "protein_coding"; +chrXV SGD transcript 77505 78298 . + . transcript_id "YOL129W_id001"; gene_id "YOL129W"; gene_name "VPS68"; transcript_biotype "protein_coding"; +chrXV SGD exon 77505 78298 . + . transcript_id "YOL129W_id001"; gene_id "YOL129W"; gene_name "VPS68"; +chrXV SGD transcript 77560 78114 . + . transcript_id "YOL129W_id004"; gene_id "YOL129W"; gene_name "VPS68"; transcript_biotype "protein_coding"; +chrXV SGD exon 77560 78114 . + 0 transcript_id "YOL129W_id004"; gene_name "VPS68"; gene_id "YOL129W"; +chrXV SGD gene 78199 79843 . - . gene_id "YOL128C"; gene_biotype "protein_coding"; +chrXV SGD transcript 78199 79843 . - . transcript_id "YOL128C_id001"; gene_id "YOL128C"; gene_name "YGK3"; transcript_biotype "protein_coding"; +chrXV SGD exon 78199 79843 . - . transcript_id "YOL128C_id001"; gene_id "YOL128C"; gene_name "YGK3"; +chrXV SGD transcript 78352 79479 . - . transcript_id "YOL128C_id004"; gene_id "YOL128C"; gene_name "YGK3"; transcript_biotype "protein_coding"; +chrXV SGD exon 78352 79479 . - 0 transcript_id "YOL128C_id004"; gene_name "YGK3"; gene_id "YOL128C"; +chrXV SGD gene 80311 81405 . + . gene_id "YOL127W"; gene_biotype "protein_coding"; +chrXV SGD transcript 80311 81405 . + . transcript_id "YOL127W_id002"; gene_id "YOL127W"; gene_name "RPL25"; transcript_biotype "protein_coding"; +chrXV SGD exon 80311 81405 . + . transcript_id "YOL127W_id002"; gene_id "YOL127W"; gene_name "RPL25"; +chrXV SGD transcript 80348 81190 . + . transcript_id "YOL127W_id001"; gene_id "YOL127W"; gene_name "RPL25"; transcript_biotype "protein_coding"; +chrXV SGD exon 80348 80360 . + 0 transcript_id "YOL127W_id001"; gene_name "RPL25"; gene_id "YOL127W"; +chrXV SGD exon 80775 81190 . + 2 transcript_id "YOL127W_id001"; gene_name "RPL25"; gene_id "YOL127W"; +chrXV SGD gene 81548 83097 . - . gene_id "YOL126C"; gene_biotype "protein_coding"; +chrXV SGD transcript 81548 83097 . - . transcript_id "YOL126C_id004"; gene_id "YOL126C"; gene_name "MDH2"; transcript_biotype "protein_coding"; +chrXV SGD exon 81548 83097 . - . transcript_id "YOL126C_id004"; gene_id "YOL126C"; gene_name "MDH2"; +chrXV SGD transcript 81787 82920 . - . transcript_id "YOL126C_id001"; gene_id "YOL126C"; gene_name "MDH2"; transcript_biotype "protein_coding"; +chrXV SGD exon 81787 82920 . - 0 transcript_id "YOL126C_id001"; gene_name "MDH2"; gene_id "YOL126C"; +chrXV SGD gene 83520 85296 . + . gene_id "YOL125W"; gene_biotype "protein_coding"; +chrXV SGD transcript 83520 85296 . + . transcript_id "YOL125W_id001"; gene_id "YOL125W"; gene_name "TRM13"; transcript_biotype "protein_coding"; +chrXV SGD exon 83520 85296 . + . transcript_id "YOL125W_id001"; gene_id "YOL125W"; gene_name "TRM13"; +chrXV SGD transcript 83834 85264 . + . transcript_id "YOL125W_id002"; gene_id "YOL125W"; gene_name "TRM13"; transcript_biotype "protein_coding"; +chrXV SGD exon 83834 85264 . + 0 transcript_id "YOL125W_id002"; gene_name "TRM13"; gene_id "YOL125W"; +chrXV SGD gene 85303 86804 . - . gene_id "YOL124C"; gene_biotype "protein_coding"; +chrXV SGD transcript 85303 86804 . - . transcript_id "YOL124C_id008"; gene_id "YOL124C"; gene_name "TRM11"; transcript_biotype "protein_coding"; +chrXV SGD exon 85303 86804 . - . transcript_id "YOL124C_id008"; gene_id "YOL124C"; gene_name "TRM11"; +chrXV SGD transcript 85456 86757 . - . transcript_id "YOL124C_id001"; gene_id "YOL124C"; gene_name "TRM11"; transcript_biotype "protein_coding"; +chrXV SGD exon 85456 86757 . - 0 transcript_id "YOL124C_id001"; gene_name "TRM11"; gene_id "YOL124C"; +chrXV SGD gene 87464 89589 . + . gene_id "YOL123W"; gene_biotype "protein_coding"; +chrXV SGD transcript 87464 89589 . + . transcript_id "YOL123W_id003"; gene_id "YOL123W"; gene_name "HRP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 87464 89589 . + . transcript_id "YOL123W_id003"; gene_id "YOL123W"; gene_name "HRP1"; +chrXV SGD transcript 87844 89448 . + . transcript_id "YOL123W_id001"; gene_id "YOL123W"; gene_name "HRP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 87844 89448 . + 0 transcript_id "YOL123W_id001"; gene_name "HRP1"; gene_id "YOL123W"; +chrXV SGD gene 89489 91557 . - . gene_id "YOL122C"; gene_biotype "protein_coding"; +chrXV SGD transcript 89489 91557 . - . transcript_id "YOL122C_id001"; gene_id "YOL122C"; gene_name "SMF1"; transcript_biotype "protein_coding"; +chrXV SGD exon 89489 91557 . - . transcript_id "YOL122C_id001"; gene_id "YOL122C"; gene_name "SMF1"; +chrXV SGD transcript 89692 91419 . - . transcript_id "YOL122C_id002"; gene_id "YOL122C"; gene_name "SMF1"; transcript_biotype "protein_coding"; +chrXV SGD exon 89692 91419 . - 0 transcript_id "YOL122C_id002"; gene_name "SMF1"; gene_id "YOL122C"; +chrXV SGD gene 91836 92934 . - . gene_id "YOL121C"; gene_biotype "protein_coding"; +chrXV SGD transcript 91836 92934 . - . transcript_id "YOL121C_id002"; gene_id "YOL121C"; gene_name "RPS19A"; transcript_biotype "protein_coding"; +chrXV SGD exon 91836 92934 . - . transcript_id "YOL121C_id002"; gene_id "YOL121C"; gene_name "RPS19A"; +chrXV SGD transcript 92026 92850 . - . transcript_id "YOL121C_id001"; gene_id "YOL121C"; gene_name "RPS19A"; transcript_biotype "protein_coding"; +chrXV SGD exon 92026 92440 . - 1 transcript_id "YOL121C_id001"; gene_name "RPS19A"; gene_id "YOL121C"; +chrXV SGD exon 92831 92850 . - 0 transcript_id "YOL121C_id001"; gene_name "RPS19A"; gene_id "YOL121C"; +chrXV SGD gene 93042 94422 . - . gene_id "YOL120C"; gene_biotype "protein_coding"; +chrXV SGD transcript 93042 94422 . - . transcript_id "YOL120C_id001"; gene_id "YOL120C"; gene_name "RPL18A"; transcript_biotype "protein_coding"; +chrXV SGD exon 93042 94422 . - . transcript_id "YOL120C_id001"; gene_id "YOL120C"; gene_name "RPL18A"; +chrXV SGD transcript 93395 94402 . - . transcript_id "YOL120C_id005"; gene_id "YOL120C"; gene_name "RPL18A"; transcript_biotype "protein_coding"; +chrXV SGD exon 93395 93843 . - 2 transcript_id "YOL120C_id005"; gene_name "RPL18A"; gene_id "YOL120C"; +chrXV SGD exon 94291 94402 . - 0 transcript_id "YOL120C_id005"; gene_name "RPL18A"; gene_id "YOL120C"; +chrXV SGD gene 94710 96503 . - . gene_id "YOL119C"; gene_biotype "protein_coding"; +chrXV SGD transcript 94710 96503 . - . transcript_id "YOL119C_id004"; gene_id "YOL119C"; gene_name "MCH4"; transcript_biotype "protein_coding"; +chrXV SGD exon 94710 96503 . - . transcript_id "YOL119C_id004"; gene_id "YOL119C"; gene_name "MCH4"; +chrXV SGD transcript 94856 96361 . - . transcript_id "YOL119C_id001"; gene_id "YOL119C"; gene_name "MCH4"; transcript_biotype "protein_coding"; +chrXV SGD exon 94856 96361 . - 0 transcript_id "YOL119C_id001"; gene_name "MCH4"; gene_id "YOL119C"; +chrXV SGD gene 96608 96916 . - . gene_id "YOL118C"; gene_biotype "protein_coding"; +chrXV SGD transcript 96608 96916 . - . transcript_id "YOL118C_id001"; gene_id "YOL118C"; transcript_biotype "protein_coding"; +chrXV SGD exon 96608 96916 . - 0 transcript_id "YOL118C_id001"; gene_id "YOL118C"; +chrXV SGD gene 97551 99488 . + . gene_id "YOL117W"; gene_biotype "protein_coding"; +chrXV SGD transcript 97551 99488 . + . transcript_id "YOL117W_mRNA"; gene_id "YOL117W"; gene_name "RRI2"; transcript_biotype "protein_coding"; +chrXV SGD CDS 97551 99488 . + 0 transcript_id "YOL117W_mRNA"; gene_name "RRI2"; gene_id "YOL117W"; +chrXV SGD gene 99678 101254 . + . gene_id "YOL116W"; gene_biotype "protein_coding"; +chrXV SGD transcript 99678 101254 . + . transcript_id "YOL116W_id005"; gene_id "YOL116W"; gene_name "MSN1"; transcript_biotype "protein_coding"; +chrXV SGD exon 99678 101254 . + . transcript_id "YOL116W_id005"; gene_id "YOL116W"; gene_name "MSN1"; +chrXV SGD transcript 99809 100957 . + . transcript_id "YOL116W_id001"; gene_id "YOL116W"; gene_name "MSN1"; transcript_biotype "protein_coding"; +chrXV SGD exon 99809 100957 . + 0 transcript_id "YOL116W_id001"; gene_name "MSN1"; gene_id "YOL116W"; +chrXV SGD gene 101405 103355 . + . gene_id "YOL115W"; gene_biotype "protein_coding"; +chrXV SGD transcript 101405 103355 . + . transcript_id "YOL115W_id001"; gene_id "YOL115W"; gene_name "PAP2"; transcript_biotype "protein_coding"; +chrXV SGD exon 101405 103355 . + . transcript_id "YOL115W_id001"; gene_id "YOL115W"; gene_name "PAP2"; +chrXV SGD transcript 101475 103229 . + . transcript_id "YOL115W_id002"; gene_id "YOL115W"; gene_name "PAP2"; transcript_biotype "protein_coding"; +chrXV SGD exon 101475 103229 . + 0 transcript_id "YOL115W_id002"; gene_name "PAP2"; gene_id "YOL115W"; +chrXV SGD gene 103278 104276 . - . gene_id "YOL114C"; gene_biotype "protein_coding"; +chrXV SGD transcript 103278 104276 . - . transcript_id "YOL114C_id002"; gene_id "YOL114C"; gene_name "PTH4"; transcript_biotype "protein_coding"; +chrXV SGD exon 103278 104276 . - . transcript_id "YOL114C_id002"; gene_id "YOL114C"; gene_name "PTH4"; +chrXV SGD transcript 103317 103925 . - . transcript_id "YOL114C_id001"; gene_id "YOL114C"; gene_name "PTH4"; transcript_biotype "protein_coding"; +chrXV SGD exon 103317 103925 . - 0 transcript_id "YOL114C_id001"; gene_name "PTH4"; gene_id "YOL114C"; +chrXV SGD gene 104040 106389 . + . gene_id "YOL113W"; gene_biotype "protein_coding"; +chrXV SGD transcript 104040 106389 . + . transcript_id "YOL113W_id001"; gene_id "YOL113W"; gene_name "SKM1"; transcript_biotype "protein_coding"; +chrXV SGD exon 104040 106389 . + . transcript_id "YOL113W_id001"; gene_id "YOL113W"; gene_name "SKM1"; +chrXV SGD transcript 104326 106293 . + . transcript_id "YOL113W_id003"; gene_id "YOL113W"; gene_name "SKM1"; transcript_biotype "protein_coding"; +chrXV SGD exon 104326 106293 . + 0 transcript_id "YOL113W_id003"; gene_name "SKM1"; gene_id "YOL113W"; +chrXV SGD gene 106521 108267 . + . gene_id "YOL112W"; gene_biotype "protein_coding"; +chrXV SGD transcript 106521 108267 . + . transcript_id "YOL112W_id008"; gene_id "YOL112W"; gene_name "MSB4"; transcript_biotype "protein_coding"; +chrXV SGD exon 106521 108267 . + . transcript_id "YOL112W_id008"; gene_id "YOL112W"; gene_name "MSB4"; +chrXV SGD transcript 106710 108188 . + . transcript_id "YOL112W_id001"; gene_id "YOL112W"; gene_name "MSB4"; transcript_biotype "protein_coding"; +chrXV SGD exon 106710 108188 . + 0 transcript_id "YOL112W_id001"; gene_name "MSB4"; gene_id "YOL112W"; +chrXV SGD gene 108176 109085 . - . gene_id "YOL111C"; gene_biotype "protein_coding"; +chrXV SGD transcript 108176 109085 . - . transcript_id "YOL111C_id005"; gene_id "YOL111C"; gene_name "MDY2"; transcript_biotype "protein_coding"; +chrXV SGD exon 108176 109085 . - . transcript_id "YOL111C_id005"; gene_id "YOL111C"; gene_name "MDY2"; +chrXV SGD transcript 108258 108896 . - . transcript_id "YOL111C_id001"; gene_id "YOL111C"; gene_name "MDY2"; transcript_biotype "protein_coding"; +chrXV SGD exon 108258 108896 . - 0 transcript_id "YOL111C_id001"; gene_name "MDY2"; gene_id "YOL111C"; +chrXV SGD gene 109128 110211 . + . gene_id "YOL110W"; gene_biotype "protein_coding"; +chrXV SGD transcript 109128 110211 . + . transcript_id "YOL110W_id005"; gene_id "YOL110W"; gene_name "SHR5"; transcript_biotype "protein_coding"; +chrXV SGD exon 109128 110211 . + . transcript_id "YOL110W_id005"; gene_id "YOL110W"; gene_name "SHR5"; +chrXV SGD transcript 109176 109889 . + . transcript_id "YOL110W_id001"; gene_id "YOL110W"; gene_name "SHR5"; transcript_biotype "protein_coding"; +chrXV SGD exon 109176 109889 . + 0 transcript_id "YOL110W_id001"; gene_name "SHR5"; gene_id "YOL110W"; +chrXV SGD gene 110176 110792 . + . gene_id "YOL109W"; gene_biotype "protein_coding"; +chrXV SGD transcript 110176 110792 . + . transcript_id "YOL109W_id001"; gene_id "YOL109W"; gene_name "ZEO1"; transcript_biotype "protein_coding"; +chrXV SGD exon 110176 110792 . + . transcript_id "YOL109W_id001"; gene_id "YOL109W"; gene_name "ZEO1"; +chrXV SGD transcript 110297 110638 . + . transcript_id "YOL109W_id005"; gene_id "YOL109W"; gene_name "ZEO1"; transcript_biotype "protein_coding"; +chrXV SGD exon 110297 110638 . + 0 transcript_id "YOL109W_id005"; gene_name "ZEO1"; gene_id "YOL109W"; +chrXV SGD gene 110962 111033 . - . gene_id "YNCO0001C"; gene_biotype "ncRNA"; +chrXV SGD transcript 110962 111033 . - . transcript_id "YNCO0001C_tRNA"; gene_id "YNCO0001C"; gene_name "SUF1"; transcript_biotype "ncRNA"; +chrXV SGD exon 110962 111033 . - . transcript_id "YNCO0001C_tRNA"; gene_name "SUF1"; gene_id "YNCO0001C"; +chrXV SGD gene 111199 111940 . - . gene_id "YOL108C"; gene_biotype "protein_coding"; +chrXV SGD transcript 111199 111940 . - . transcript_id "YOL108C_id002"; gene_id "YOL108C"; gene_name "INO4"; transcript_biotype "protein_coding"; +chrXV SGD exon 111199 111940 . - . transcript_id "YOL108C_id002"; gene_id "YOL108C"; gene_name "INO4"; +chrXV SGD transcript 111431 111886 . - . transcript_id "YOL108C_id001"; gene_id "YOL108C"; gene_name "INO4"; transcript_biotype "protein_coding"; +chrXV SGD exon 111431 111886 . - 0 transcript_id "YOL108C_id001"; gene_name "INO4"; gene_id "YOL108C"; +chrXV SGD gene 112045 113554 . + . gene_id "YOL107W"; gene_biotype "protein_coding"; +chrXV SGD transcript 112045 113554 . + . transcript_id "YOL107W_id001"; gene_id "YOL107W"; transcript_biotype "protein_coding"; +chrXV SGD exon 112045 113554 . + . transcript_id "YOL107W_id001"; gene_id "YOL107W"; +chrXV SGD transcript 112102 113130 . + . transcript_id "YOL107W_id003"; gene_id "YOL107W"; transcript_biotype "protein_coding"; +chrXV SGD exon 112102 113130 . + 0 transcript_id "YOL107W_id003"; gene_id "YOL107W"; +chrXV SGD gene 113226 113579 . + . gene_id "YOL106W"; gene_biotype "protein_coding"; +chrXV SGD transcript 113226 113579 . + . transcript_id "YOL106W_id001"; gene_id "YOL106W"; transcript_biotype "protein_coding"; +chrXV SGD exon 113226 113579 . + 0 transcript_id "YOL106W_id001"; gene_id "YOL106W"; +chrXV SGD gene 113802 113874 . + . gene_id "YNCO0002W"; gene_biotype "ncRNA"; +chrXV SGD transcript 113802 113874 . + . transcript_id "YNCO0002W_tRNA"; gene_id "YNCO0002W"; transcript_biotype "ncRNA"; +chrXV SGD exon 113802 113874 . + . transcript_id "YNCO0002W_tRNA"; gene_id "YNCO0002W"; +chrXV SGD gene 114011 116126 . - . gene_id "YOL105C"; gene_biotype "protein_coding"; +chrXV SGD transcript 114011 116126 . - . transcript_id "YOL105C_id001"; gene_id "YOL105C"; gene_name "WSC3"; transcript_biotype "protein_coding"; +chrXV SGD exon 114011 116126 . - . transcript_id "YOL105C_id001"; gene_id "YOL105C"; gene_name "WSC3"; +chrXV SGD transcript 114138 115808 . - . transcript_id "YOL105C_id002"; gene_id "YOL105C"; gene_name "WSC3"; transcript_biotype "protein_coding"; +chrXV SGD exon 114138 115808 . - 0 transcript_id "YOL105C_id002"; gene_name "WSC3"; gene_id "YOL105C"; +chrXV SGD gene 116396 117454 . - . gene_id "YOL104C"; gene_biotype "protein_coding"; +chrXV SGD transcript 116396 117454 . - . transcript_id "YOL104C_id001"; gene_id "YOL104C"; gene_name "NDJ1"; transcript_biotype "protein_coding"; +chrXV SGD exon 116396 117454 . - 0 transcript_id "YOL104C_id001"; gene_name "NDJ1"; gene_id "YOL104C"; +chrXV SGD gene 118000 119322 . + . gene_id "YOL103W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 118000 119322 . + . transcript_id "YOL103W-A_dummy"; gene_id "YOL103W-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 118000 119322 . + 0 transcript_id "YOL103W-A_dummy"; gene_id "YOL103W-A"; +chrXV SGD gene 118000 123268 . + . gene_id "YOL103W-B"; gene_biotype "protein_coding"; +chrXV SGD transcript 118000 123268 . + . transcript_id "YOL103W-B_dummy"; gene_id "YOL103W-B"; transcript_biotype "protein_coding"; +chrXV SGD exon 118000 119304 . + 0 transcript_id "YOL103W-B_dummy"; gene_id "YOL103W-B"; +chrXV SGD exon 119306 123268 . + 0 transcript_id "YOL103W-B_dummy"; gene_id "YOL103W-B"; +chrXV SGD gene 123794 126022 . + . gene_id "YOL103W"; gene_biotype "protein_coding"; +chrXV SGD transcript 123794 126022 . + . transcript_id "YOL103W_id003"; gene_id "YOL103W"; gene_name "ITR2"; transcript_biotype "protein_coding"; +chrXV SGD exon 123794 126022 . + . transcript_id "YOL103W_id003"; gene_id "YOL103W"; gene_name "ITR2"; +chrXV SGD transcript 124001 125830 . + . transcript_id "YOL103W_id001"; gene_id "YOL103W"; gene_name "ITR2"; transcript_biotype "protein_coding"; +chrXV SGD exon 124001 125830 . + 0 transcript_id "YOL103W_id001"; gene_name "ITR2"; gene_id "YOL103W"; +chrXV SGD gene 125879 126708 . - . gene_id "YOL102C"; gene_biotype "protein_coding"; +chrXV SGD transcript 125879 126708 . - . transcript_id "YOL102C_id007"; gene_id "YOL102C"; gene_name "TPT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 125879 126708 . - . transcript_id "YOL102C_id007"; gene_id "YOL102C"; gene_name "TPT1"; +chrXV SGD transcript 125997 126689 . - . transcript_id "YOL102C_id001"; gene_id "YOL102C"; gene_name "TPT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 125997 126689 . - 0 transcript_id "YOL102C_id001"; gene_name "TPT1"; gene_id "YOL102C"; +chrXV SGD gene 126874 127983 . - . gene_id "YOL101C"; gene_biotype "protein_coding"; +chrXV SGD transcript 126874 127983 . - . transcript_id "YOL101C_id002"; gene_id "YOL101C"; gene_name "IZH4"; transcript_biotype "protein_coding"; +chrXV SGD exon 126874 127983 . - . transcript_id "YOL101C_id002"; gene_id "YOL101C"; gene_name "IZH4"; +chrXV SGD transcript 126982 127920 . - . transcript_id "YOL101C_id001"; gene_id "YOL101C"; gene_name "IZH4"; transcript_biotype "protein_coding"; +chrXV SGD exon 126982 127920 . - 0 transcript_id "YOL101C_id001"; gene_name "IZH4"; gene_id "YOL101C"; +chrXV SGD gene 129237 132482 . + . gene_id "YOL100W"; gene_biotype "protein_coding"; +chrXV SGD transcript 129237 132482 . + . transcript_id "YOL100W_mRNA"; gene_id "YOL100W"; gene_name "PKH2"; transcript_biotype "protein_coding"; +chrXV SGD CDS 129237 132482 . + 0 transcript_id "YOL100W_mRNA"; gene_name "PKH2"; gene_id "YOL100W"; +chrXV SGD gene 132017 132508 . - . gene_id "YOL099C"; gene_biotype "protein_coding"; +chrXV SGD transcript 132017 132508 . - . transcript_id "YOL099C_mRNA"; gene_id "YOL099C"; transcript_biotype "protein_coding"; +chrXV SGD CDS 132017 132508 . - 0 transcript_id "YOL099C_mRNA"; gene_id "YOL099C"; +chrXV SGD gene 132462 135931 . - . gene_id "YOL098C"; gene_biotype "protein_coding"; +chrXV SGD transcript 132462 135931 . - . transcript_id "YOL098C_id001"; gene_id "YOL098C"; gene_name "SDD3"; transcript_biotype "protein_coding"; +chrXV SGD exon 132462 135931 . - . transcript_id "YOL098C_id001"; gene_id "YOL098C"; gene_name "SDD3"; +chrXV SGD transcript 132725 135838 . - . transcript_id "YOL098C_id004"; gene_id "YOL098C"; gene_name "SDD3"; transcript_biotype "protein_coding"; +chrXV SGD exon 132725 135838 . - 0 transcript_id "YOL098C_id004"; gene_name "SDD3"; gene_id "YOL098C"; +chrXV SGD gene 135837 136500 . + . gene_id "YOL097W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 135837 136500 . + . transcript_id "YOL097W-A_id001"; gene_id "YOL097W-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 135837 136500 . + . transcript_id "YOL097W-A_id001"; gene_id "YOL097W-A"; +chrXV SGD gene 136088 136183 . - . gene_id "YNCO0003C"; gene_biotype "ncRNA"; +chrXV SGD transcript 136088 136183 . - . transcript_id "YNCO0003C_snoRNA"; gene_id "YNCO0003C"; gene_name "SNR58"; transcript_biotype "ncRNA"; +chrXV SGD exon 136088 136183 . - . transcript_id "YNCO0003C_snoRNA"; gene_name "SNR58"; gene_id "YNCO0003C"; +chrXV SGD transcript 136220 136405 . + . transcript_id "YOL097W-A_id002"; gene_id "YOL097W-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 136220 136405 . + 0 transcript_id "YOL097W-A_id002"; gene_id "YOL097W-A"; +chrXV SGD gene 136311 137860 . - . gene_id "YOL097C"; gene_biotype "protein_coding"; +chrXV SGD transcript 136311 137860 . - . transcript_id "YOL097C_id002"; gene_id "YOL097C"; gene_name "WRS1"; transcript_biotype "protein_coding"; +chrXV SGD exon 136311 137860 . - . transcript_id "YOL097C_id002"; gene_id "YOL097C"; gene_name "WRS1"; +chrXV SGD transcript 136527 137825 . - . transcript_id "YOL097C_id001"; gene_id "YOL097C"; gene_name "WRS1"; transcript_biotype "protein_coding"; +chrXV SGD exon 136527 137825 . - 0 transcript_id "YOL097C_id001"; gene_name "WRS1"; gene_id "YOL097C"; +chrXV SGD gene 137953 139104 . - . gene_id "YOL096C"; gene_biotype "protein_coding"; +chrXV SGD transcript 137953 139104 . - . transcript_id "YOL096C_id002"; gene_id "YOL096C"; gene_name "COQ3"; transcript_biotype "protein_coding"; +chrXV SGD exon 137953 139104 . - . transcript_id "YOL096C_id002"; gene_id "YOL096C"; gene_name "COQ3"; +chrXV SGD transcript 138107 139045 . - . transcript_id "YOL096C_id001"; gene_id "YOL096C"; gene_name "COQ3"; transcript_biotype "protein_coding"; +chrXV SGD exon 138107 139045 . - 0 transcript_id "YOL096C_id001"; gene_name "COQ3"; gene_id "YOL096C"; +chrXV SGD gene 139143 141380 . - . gene_id "YOL095C"; gene_biotype "protein_coding"; +chrXV SGD transcript 139143 141380 . - . transcript_id "YOL095C_id001"; gene_id "YOL095C"; gene_name "HMI1"; transcript_biotype "protein_coding"; +chrXV SGD exon 139143 141380 . - . transcript_id "YOL095C_id001"; gene_id "YOL095C"; gene_name "HMI1"; +chrXV SGD transcript 139227 141347 . - . transcript_id "YOL095C_id003"; gene_id "YOL095C"; gene_name "HMI1"; transcript_biotype "protein_coding"; +chrXV SGD exon 139227 141347 . - 0 transcript_id "YOL095C_id003"; gene_name "HMI1"; gene_id "YOL095C"; +chrXV SGD gene 141357 142591 . - . gene_id "YOL094C"; gene_biotype "protein_coding"; +chrXV SGD transcript 141357 142591 . - . transcript_id "YOL094C_id004"; gene_id "YOL094C"; gene_name "RFC4"; transcript_biotype "protein_coding"; +chrXV SGD exon 141357 142591 . - . transcript_id "YOL094C_id004"; gene_id "YOL094C"; gene_name "RFC4"; +chrXV SGD transcript 141584 142555 . - . transcript_id "YOL094C_id001"; gene_id "YOL094C"; gene_name "RFC4"; transcript_biotype "protein_coding"; +chrXV SGD exon 141584 142555 . - 0 transcript_id "YOL094C_id001"; gene_name "RFC4"; gene_id "YOL094C"; +chrXV SGD gene 142355 143759 . + . gene_id "YOL093W"; gene_biotype "protein_coding"; +chrXV SGD transcript 142355 143759 . + . transcript_id "YOL093W_id002"; gene_id "YOL093W"; gene_name "TRM10"; transcript_biotype "protein_coding"; +chrXV SGD exon 142355 143759 . + . transcript_id "YOL093W_id002"; gene_id "YOL093W"; gene_name "TRM10"; +chrXV SGD transcript 142815 143696 . + . transcript_id "YOL093W_id001"; gene_id "YOL093W"; gene_name "TRM10"; transcript_biotype "protein_coding"; +chrXV SGD exon 142815 143696 . + 0 transcript_id "YOL093W_id001"; gene_name "TRM10"; gene_id "YOL093W"; +chrXV SGD gene 144184 145319 . + . gene_id "YOL092W"; gene_biotype "protein_coding"; +chrXV SGD transcript 144184 145319 . + . transcript_id "YOL092W_id004"; gene_id "YOL092W"; gene_name "YPQ1"; transcript_biotype "protein_coding"; +chrXV SGD exon 144184 145319 . + . transcript_id "YOL092W_id004"; gene_id "YOL092W"; gene_name "YPQ1"; +chrXV SGD transcript 144204 145130 . + . transcript_id "YOL092W_id001"; gene_id "YOL092W"; gene_name "YPQ1"; transcript_biotype "protein_coding"; +chrXV SGD exon 144204 145130 . + 0 transcript_id "YOL092W_id001"; gene_name "YPQ1"; gene_id "YOL092W"; +chrXV SGD gene 145334 147163 . + . gene_id "YOL091W"; gene_biotype "protein_coding"; +chrXV SGD transcript 145334 147163 . + . transcript_id "YOL091W_mRNA"; gene_id "YOL091W"; gene_name "SPO21"; transcript_biotype "protein_coding"; +chrXV SGD CDS 145334 147163 . + 0 transcript_id "YOL091W_mRNA"; gene_name "SPO21"; gene_id "YOL091W"; +chrXV SGD gene 147344 150358 . + . gene_id "YOL090W"; gene_biotype "protein_coding"; +chrXV SGD transcript 147344 150358 . + . transcript_id "YOL090W_id003"; gene_id "YOL090W"; gene_name "MSH2"; transcript_biotype "protein_coding"; +chrXV SGD exon 147344 150358 . + . transcript_id "YOL090W_id003"; gene_id "YOL090W"; gene_name "MSH2"; +chrXV SGD transcript 147382 150276 . + . transcript_id "YOL090W_id001"; gene_id "YOL090W"; gene_name "MSH2"; transcript_biotype "protein_coding"; +chrXV SGD exon 147382 150276 . + 0 transcript_id "YOL090W_id001"; gene_name "MSH2"; gene_id "YOL090W"; +chrXV SGD gene 150398 153490 . - . gene_id "YOL089C"; gene_biotype "protein_coding"; +chrXV SGD transcript 150398 153490 . - . transcript_id "YOL089C_id001"; gene_id "YOL089C"; gene_name "HAL9"; transcript_biotype "protein_coding"; +chrXV SGD exon 150398 153490 . - 0 transcript_id "YOL089C_id001"; gene_name "HAL9"; gene_id "YOL089C"; +chrXV SGD gene 153714 154817 . - . gene_id "YOL088C"; gene_biotype "protein_coding"; +chrXV SGD transcript 153714 154817 . - . transcript_id "YOL088C_id004"; gene_id "YOL088C"; gene_name "MPD2"; transcript_biotype "protein_coding"; +chrXV SGD exon 153714 154817 . - . transcript_id "YOL088C_id004"; gene_id "YOL088C"; gene_name "MPD2"; +chrXV SGD transcript 153912 154745 . - . transcript_id "YOL088C_id001"; gene_id "YOL088C"; gene_name "MPD2"; transcript_biotype "protein_coding"; +chrXV SGD exon 153912 154745 . - 0 transcript_id "YOL088C_id001"; gene_name "MPD2"; gene_id "YOL088C"; +chrXV SGD gene 155287 158637 . - . gene_id "YOL087C"; gene_biotype "protein_coding"; +chrXV SGD transcript 155287 158637 . - . transcript_id "YOL087C_id001"; gene_id "YOL087C"; gene_name "DUF1"; transcript_biotype "protein_coding"; +chrXV SGD exon 155287 158637 . - 0 transcript_id "YOL087C_id001"; gene_name "DUF1"; gene_id "YOL087C"; +chrXV SGD gene 159116 159596 . + . gene_id "YOL086W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 159116 159596 . + . transcript_id "YOL086W-A_id003"; gene_id "YOL086W-A"; gene_name "MHF1"; transcript_biotype "protein_coding"; +chrXV SGD exon 159116 159596 . + . transcript_id "YOL086W-A_id003"; gene_id "YOL086W-A"; gene_name "MHF1"; +chrXV SGD transcript 159173 159445 . + . transcript_id "YOL086W-A_id001"; gene_id "YOL086W-A"; gene_name "MHF1"; transcript_biotype "protein_coding"; +chrXV SGD exon 159173 159445 . + 0 transcript_id "YOL086W-A_id001"; gene_name "MHF1"; gene_id "YOL086W-A"; +chrXV SGD gene 159459 161018 . - . gene_id "YOL086C"; gene_biotype "protein_coding"; +chrXV SGD transcript 159459 161018 . - . transcript_id "YOL086C_id003"; gene_id "YOL086C"; gene_name "ADH1"; transcript_biotype "protein_coding"; +chrXV SGD exon 159459 161018 . - . transcript_id "YOL086C_id003"; gene_id "YOL086C"; gene_name "ADH1"; +chrXV SGD transcript 159548 160594 . - . transcript_id "YOL086C_id001"; gene_id "YOL086C"; gene_name "ADH1"; transcript_biotype "protein_coding"; +chrXV SGD exon 159548 160594 . - 0 transcript_id "YOL086C_id001"; gene_name "ADH1"; gene_id "YOL086C"; +chrXV SGD gene 160785 162238 . + . gene_id "YOL085W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 160785 162238 . + . transcript_id "YOL085W-A_id001"; gene_id "YOL085W-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 160785 162238 . + . transcript_id "YOL085W-A_id001"; gene_id "YOL085W-A"; +chrXV SGD transcript 161579 161791 . + . transcript_id "YOL085W-A_id003"; gene_id "YOL085W-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 161579 161791 . + 0 transcript_id "YOL085W-A_id003"; gene_id "YOL085W-A"; +chrXV SGD gene 161673 162014 . - . gene_id "YOL085C"; gene_biotype "protein_coding"; +chrXV SGD transcript 161673 162014 . - . transcript_id "YOL085C_mRNA"; gene_id "YOL085C"; transcript_biotype "protein_coding"; +chrXV SGD CDS 161673 162014 . - 0 transcript_id "YOL085C_mRNA"; gene_id "YOL085C"; +chrXV SGD gene 162356 165331 . + . gene_id "YOL084W"; gene_biotype "protein_coding"; +chrXV SGD transcript 162356 165331 . + . transcript_id "YOL084W_mRNA"; gene_id "YOL084W"; gene_name "PHM7"; transcript_biotype "protein_coding"; +chrXV SGD CDS 162356 165331 . + 0 transcript_id "YOL084W_mRNA"; gene_name "PHM7"; gene_id "YOL084W"; +chrXV SGD gene 165575 167037 . + . gene_id "YOL083W"; gene_biotype "protein_coding"; +chrXV SGD transcript 165575 167037 . + . transcript_id "YOL083W_id006"; gene_id "YOL083W"; gene_name "ATG34"; transcript_biotype "protein_coding"; +chrXV SGD exon 165575 167037 . + . transcript_id "YOL083W_id006"; gene_id "YOL083W"; gene_name "ATG34"; +chrXV SGD transcript 165714 166952 . + . transcript_id "YOL083W_id001"; gene_id "YOL083W"; gene_name "ATG34"; transcript_biotype "protein_coding"; +chrXV SGD exon 165714 166952 . + 0 transcript_id "YOL083W_id001"; gene_name "ATG34"; gene_id "YOL083W"; +chrXV SGD gene 166266 167006 . - . gene_id "YOL083C-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 166266 167006 . - . transcript_id "YOL083C-A_id001"; gene_id "YOL083C-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 166266 167006 . - . transcript_id "YOL083C-A_id001"; gene_id "YOL083C-A"; +chrXV SGD transcript 166461 166601 . - . transcript_id "YOL083C-A_id002"; gene_id "YOL083C-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 166461 166601 . - 0 transcript_id "YOL083C-A_id002"; gene_id "YOL083C-A"; +chrXV SGD gene 168421 170080 . + . gene_id "YOL082W"; gene_biotype "protein_coding"; +chrXV SGD transcript 168421 170080 . + . transcript_id "YOL082W_id004"; gene_id "YOL082W"; gene_name "ATG19"; transcript_biotype "protein_coding"; +chrXV SGD exon 168421 170080 . + . transcript_id "YOL082W_id004"; gene_id "YOL082W"; gene_name "ATG19"; +chrXV SGD transcript 168727 169974 . + . transcript_id "YOL082W_id001"; gene_id "YOL082W"; gene_name "ATG19"; transcript_biotype "protein_coding"; +chrXV SGD exon 168727 169974 . + 0 transcript_id "YOL082W_id001"; gene_name "ATG19"; gene_id "YOL082W"; +chrXV SGD gene 171070 180309 . + . gene_id "YOL081W"; gene_biotype "protein_coding"; +chrXV SGD transcript 171070 180309 . + . transcript_id "YOL081W_mRNA"; gene_id "YOL081W"; gene_name "IRA2"; transcript_biotype "protein_coding"; +chrXV SGD CDS 171070 180309 . + 0 transcript_id "YOL081W_mRNA"; gene_name "IRA2"; gene_id "YOL081W"; +chrXV SGD gene 180285 181471 . - . gene_id "YOL080C"; gene_biotype "protein_coding"; +chrXV SGD transcript 180285 181471 . - . transcript_id "YOL080C_id001"; gene_id "YOL080C"; gene_name "REX4"; transcript_biotype "protein_coding"; +chrXV SGD exon 180285 181471 . - . transcript_id "YOL080C_id001"; gene_id "YOL080C"; gene_name "REX4"; +chrXV SGD transcript 180558 181427 . - . transcript_id "YOL080C_id002"; gene_id "YOL080C"; gene_name "REX4"; transcript_biotype "protein_coding"; +chrXV SGD exon 180558 181427 . - 0 transcript_id "YOL080C_id002"; gene_name "REX4"; gene_id "YOL080C"; +chrXV SGD gene 181057 181455 . + . gene_id "YOL079W"; gene_biotype "protein_coding"; +chrXV SGD transcript 181057 181455 . + . transcript_id "YOL079W_mRNA"; gene_id "YOL079W"; transcript_biotype "protein_coding"; +chrXV SGD CDS 181057 181455 . + 0 transcript_id "YOL079W_mRNA"; gene_id "YOL079W"; +chrXV SGD gene 181682 185212 . + . gene_id "YOL078W"; gene_biotype "protein_coding"; +chrXV SGD transcript 181682 185212 . + . transcript_id "YOL078W_id001"; gene_id "YOL078W"; gene_name "AVO1"; transcript_biotype "protein_coding"; +chrXV SGD exon 181682 185212 . + 0 transcript_id "YOL078W_id001"; gene_name "AVO1"; gene_id "YOL078W"; +chrXV SGD gene 185388 185887 . + . gene_id "YOL077W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 185388 185887 . + . transcript_id "YOL077W-A_id004"; gene_id "YOL077W-A"; gene_name "ATP19"; transcript_biotype "protein_coding"; +chrXV SGD exon 185388 185887 . + . transcript_id "YOL077W-A_id004"; gene_id "YOL077W-A"; gene_name "ATP19"; +chrXV SGD transcript 185438 185644 . + . transcript_id "YOL077W-A_id001"; gene_id "YOL077W-A"; gene_name "ATP19"; transcript_biotype "protein_coding"; +chrXV SGD exon 185438 185644 . + 0 transcript_id "YOL077W-A_id001"; gene_name "ATP19"; gene_id "YOL077W-A"; +chrXV SGD gene 185578 186761 . - . gene_id "YOL077C"; gene_biotype "protein_coding"; +chrXV SGD transcript 185578 186761 . - . transcript_id "YOL077C_id001"; gene_id "YOL077C"; gene_name "BRX1"; transcript_biotype "protein_coding"; +chrXV SGD exon 185578 186761 . - . transcript_id "YOL077C_id001"; gene_id "YOL077C"; gene_name "BRX1"; +chrXV SGD transcript 185848 186723 . - . transcript_id "YOL077C_id004"; gene_id "YOL077C"; gene_name "BRX1"; transcript_biotype "protein_coding"; +chrXV SGD exon 185848 186723 . - 0 transcript_id "YOL077C_id004"; gene_name "BRX1"; gene_id "YOL077C"; +chrXV SGD gene 186993 190223 . + . gene_id "YOL076W"; gene_biotype "protein_coding"; +chrXV SGD transcript 186993 190223 . + . transcript_id "YOL076W_id001"; gene_id "YOL076W"; gene_name "MDM20"; transcript_biotype "protein_coding"; +chrXV SGD exon 186993 190223 . + . transcript_id "YOL076W_id001"; gene_id "YOL076W"; gene_name "MDM20"; +chrXV SGD transcript 187024 189414 . + . transcript_id "YOL076W_id003"; gene_id "YOL076W"; gene_name "MDM20"; transcript_biotype "protein_coding"; +chrXV SGD exon 187024 189414 . + 0 transcript_id "YOL076W_id003"; gene_name "MDM20"; gene_id "YOL076W"; +chrXV SGD gene 189658 193542 . - . gene_id "YOL075C"; gene_biotype "protein_coding"; +chrXV SGD transcript 189658 193542 . - . transcript_id "YOL075C_mRNA"; gene_id "YOL075C"; transcript_biotype "protein_coding"; +chrXV SGD CDS 189658 193542 . - 0 transcript_id "YOL075C_mRNA"; gene_id "YOL075C"; +chrXV SGD gene 193742 194836 . - . gene_id "YOL073C"; gene_biotype "protein_coding"; +chrXV SGD transcript 193742 194836 . - . transcript_id "YOL073C_id002"; gene_id "YOL073C"; gene_name "DSC2"; transcript_biotype "protein_coding"; +chrXV SGD exon 193742 194836 . - . transcript_id "YOL073C_id002"; gene_id "YOL073C"; gene_name "DSC2"; +chrXV SGD transcript 193832 194800 . - . transcript_id "YOL073C_id001"; gene_id "YOL073C"; gene_name "DSC2"; transcript_biotype "protein_coding"; +chrXV SGD exon 193832 194800 . - 0 transcript_id "YOL073C_id001"; gene_name "DSC2"; gene_id "YOL073C"; +chrXV SGD gene 194970 196337 . + . gene_id "YOL072W"; gene_biotype "protein_coding"; +chrXV SGD transcript 194970 196337 . + . transcript_id "YOL072W_id001"; gene_id "YOL072W"; gene_name "THP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 194970 196337 . + 0 transcript_id "YOL072W_id001"; gene_name "THP1"; gene_id "YOL072W"; +chrXV SGD gene 196380 197157 . + . gene_id "YOL071W"; gene_biotype "protein_coding"; +chrXV SGD transcript 196380 197157 . + . transcript_id "YOL071W_id001"; gene_id "YOL071W"; gene_name "SDH5"; transcript_biotype "protein_coding"; +chrXV SGD exon 196380 197157 . + . transcript_id "YOL071W_id001"; gene_id "YOL071W"; gene_name "SDH5"; +chrXV SGD transcript 196507 196995 . + . transcript_id "YOL071W_id002"; gene_id "YOL071W"; gene_name "SDH5"; transcript_biotype "protein_coding"; +chrXV SGD exon 196507 196995 . + 0 transcript_id "YOL071W_id002"; gene_name "SDH5"; gene_id "YOL071W"; +chrXV SGD gene 197008 198741 . - . gene_id "YOL070C"; gene_biotype "protein_coding"; +chrXV SGD transcript 197008 198741 . - . transcript_id "YOL070C_id003"; gene_id "YOL070C"; gene_name "NBA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 197008 198741 . - . transcript_id "YOL070C_id003"; gene_id "YOL070C"; gene_name "NBA1"; +chrXV SGD transcript 197220 198725 . - . transcript_id "YOL070C_id001"; gene_id "YOL070C"; gene_name "NBA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 197220 198725 . - 0 transcript_id "YOL070C_id001"; gene_name "NBA1"; gene_id "YOL070C"; +chrXV SGD gene 198942 200297 . + . gene_id "YOL069W"; gene_biotype "protein_coding"; +chrXV SGD transcript 198942 200297 . + . transcript_id "YOL069W_id001"; gene_id "YOL069W"; gene_name "NUF2"; transcript_biotype "protein_coding"; +chrXV SGD exon 198942 200297 . + 0 transcript_id "YOL069W_id001"; gene_name "NUF2"; gene_id "YOL069W"; +chrXV SGD gene 200363 202509 . - . gene_id "YOL068C"; gene_biotype "protein_coding"; +chrXV SGD transcript 200363 202509 . - . transcript_id "YOL068C_id001"; gene_id "YOL068C"; gene_name "HST1"; transcript_biotype "protein_coding"; +chrXV SGD exon 200363 202509 . - . transcript_id "YOL068C_id001"; gene_id "YOL068C"; gene_name "HST1"; +chrXV SGD transcript 200368 201879 . - . transcript_id "YOL068C_id003"; gene_id "YOL068C"; gene_name "HST1"; transcript_biotype "protein_coding"; +chrXV SGD exon 200368 201879 . - 0 transcript_id "YOL068C_id003"; gene_name "HST1"; gene_id "YOL068C"; +chrXV SGD gene 200933 202570 . - . gene_id "YOL067C"; gene_biotype "protein_coding"; +chrXV SGD transcript 200933 202570 . - . transcript_id "YOL067C_id001"; gene_id "YOL067C"; gene_name "RTG1"; transcript_biotype "protein_coding"; +chrXV SGD exon 200933 202570 . - . transcript_id "YOL067C_id001"; gene_id "YOL067C"; gene_name "RTG1"; +chrXV SGD transcript 201985 202518 . - . transcript_id "YOL067C_id002"; gene_id "YOL067C"; gene_name "RTG1"; transcript_biotype "protein_coding"; +chrXV SGD exon 201985 202518 . - 0 transcript_id "YOL067C_id002"; gene_name "RTG1"; gene_id "YOL067C"; +chrXV SGD gene 202632 204807 . - . gene_id "YOL066C"; gene_biotype "protein_coding"; +chrXV SGD transcript 202632 204807 . - . transcript_id "YOL066C_id001"; gene_id "YOL066C"; gene_name "RIB2"; transcript_biotype "protein_coding"; +chrXV SGD exon 202632 204807 . - . transcript_id "YOL066C_id001"; gene_id "YOL066C"; gene_name "RIB2"; +chrXV SGD transcript 202696 204471 . - . transcript_id "YOL066C_id002"; gene_id "YOL066C"; gene_name "RIB2"; transcript_biotype "protein_coding"; +chrXV SGD exon 202696 204471 . - 0 transcript_id "YOL066C_id002"; gene_name "RIB2"; gene_id "YOL066C"; +chrXV SGD gene 204421 205938 . - . gene_id "YOL065C"; gene_biotype "protein_coding"; +chrXV SGD transcript 204421 205938 . - . transcript_id "YOL065C_id001"; gene_id "YOL065C"; gene_name "INP54"; transcript_biotype "protein_coding"; +chrXV SGD exon 204421 205938 . - . transcript_id "YOL065C_id001"; gene_id "YOL065C"; gene_name "INP54"; +chrXV SGD transcript 204731 205885 . - . transcript_id "YOL065C_id003"; gene_id "YOL065C"; gene_name "INP54"; transcript_biotype "protein_coding"; +chrXV SGD exon 204731 205885 . - 0 transcript_id "YOL065C_id003"; gene_name "INP54"; gene_id "YOL065C"; +chrXV SGD gene 205996 207268 . - . gene_id "YOL064C"; gene_biotype "protein_coding"; +chrXV SGD transcript 205996 207268 . - . transcript_id "YOL064C_id001"; gene_id "YOL064C"; gene_name "MET22"; transcript_biotype "protein_coding"; +chrXV SGD exon 205996 207268 . - . transcript_id "YOL064C_id001"; gene_id "YOL064C"; gene_name "MET22"; +chrXV SGD transcript 206103 207176 . - . transcript_id "YOL064C_id003"; gene_id "YOL064C"; gene_name "MET22"; transcript_biotype "protein_coding"; +chrXV SGD exon 206103 207176 . - 0 transcript_id "YOL064C_id003"; gene_name "MET22"; gene_id "YOL064C"; +chrXV SGD gene 207334 210336 . - . gene_id "YOL063C"; gene_biotype "protein_coding"; +chrXV SGD transcript 207334 210336 . - . transcript_id "YOL063C_id001"; gene_id "YOL063C"; gene_name "CRT10"; transcript_biotype "protein_coding"; +chrXV SGD exon 207334 210336 . - . transcript_id "YOL063C_id001"; gene_id "YOL063C"; gene_name "CRT10"; +chrXV SGD transcript 207392 210265 . - . transcript_id "YOL063C_id003"; gene_id "YOL063C"; gene_name "CRT10"; transcript_biotype "protein_coding"; +chrXV SGD exon 207392 210265 . - 0 transcript_id "YOL063C_id003"; gene_name "CRT10"; gene_id "YOL063C"; +chrXV SGD gene 210435 212015 . - . gene_id "YOL062C"; gene_biotype "protein_coding"; +chrXV SGD transcript 210435 212015 . - . transcript_id "YOL062C_id007"; gene_id "YOL062C"; gene_name "APM4"; transcript_biotype "protein_coding"; +chrXV SGD exon 210435 212015 . - . transcript_id "YOL062C_id007"; gene_id "YOL062C"; gene_name "APM4"; +chrXV SGD transcript 210520 211995 . - . transcript_id "YOL062C_id001"; gene_id "YOL062C"; gene_name "APM4"; transcript_biotype "protein_coding"; +chrXV SGD exon 210520 211995 . - 0 transcript_id "YOL062C_id001"; gene_name "APM4"; gene_id "YOL062C"; +chrXV SGD gene 212208 213946 . + . gene_id "YOL061W"; gene_biotype "protein_coding"; +chrXV SGD transcript 212208 213946 . + . transcript_id "YOL061W_id002"; gene_id "YOL061W"; gene_name "PRS5"; transcript_biotype "protein_coding"; +chrXV SGD exon 212208 213946 . + . transcript_id "YOL061W_id002"; gene_id "YOL061W"; gene_name "PRS5"; +chrXV SGD transcript 212244 213734 . + . transcript_id "YOL061W_id001"; gene_id "YOL061W"; gene_name "PRS5"; transcript_biotype "protein_coding"; +chrXV SGD exon 212244 213734 . + 0 transcript_id "YOL061W_id001"; gene_name "PRS5"; gene_id "YOL061W"; +chrXV SGD gene 213730 216194 . - . gene_id "YOL060C"; gene_biotype "protein_coding"; +chrXV SGD transcript 213730 216194 . - . transcript_id "YOL060C_id004"; gene_id "YOL060C"; gene_name "MAM3"; transcript_biotype "protein_coding"; +chrXV SGD exon 213730 216194 . - . transcript_id "YOL060C_id004"; gene_id "YOL060C"; gene_name "MAM3"; +chrXV SGD transcript 214017 216137 . - . transcript_id "YOL060C_id001"; gene_id "YOL060C"; gene_name "MAM3"; transcript_biotype "protein_coding"; +chrXV SGD exon 214017 216137 . - 0 transcript_id "YOL060C_id001"; gene_name "MAM3"; gene_id "YOL060C"; +chrXV SGD gene 217082 218729 . + . gene_id "YOL059W"; gene_biotype "protein_coding"; +chrXV SGD transcript 217082 218729 . + . transcript_id "YOL059W_id002"; gene_id "YOL059W"; gene_name "GPD2"; transcript_biotype "protein_coding"; +chrXV SGD exon 217082 218729 . + . transcript_id "YOL059W_id002"; gene_id "YOL059W"; gene_name "GPD2"; +chrXV SGD transcript 217126 218448 . + . transcript_id "YOL059W_id001"; gene_id "YOL059W"; gene_name "GPD2"; transcript_biotype "protein_coding"; +chrXV SGD exon 217126 218448 . + 0 transcript_id "YOL059W_id001"; gene_name "GPD2"; gene_id "YOL059W"; +chrXV SGD gene 219139 220684 . + . gene_id "YOL058W"; gene_biotype "protein_coding"; +chrXV SGD transcript 219139 220684 . + . transcript_id "YOL058W_id001"; gene_id "YOL058W"; gene_name "ARG1"; transcript_biotype "protein_coding"; +chrXV SGD exon 219139 220684 . + . transcript_id "YOL058W_id001"; gene_id "YOL058W"; gene_name "ARG1"; +chrXV SGD transcript 219211 220473 . + . transcript_id "YOL058W_id020"; gene_id "YOL058W"; gene_name "ARG1"; transcript_biotype "protein_coding"; +chrXV SGD exon 219211 220473 . + 0 transcript_id "YOL058W_id020"; gene_name "ARG1"; gene_id "YOL058W"; +chrXV SGD gene 220703 223098 . + . gene_id "YOL057W"; gene_biotype "protein_coding"; +chrXV SGD transcript 220703 223098 . + . transcript_id "YOL057W_id001"; gene_id "YOL057W"; transcript_biotype "protein_coding"; +chrXV SGD exon 220703 223098 . + . transcript_id "YOL057W_id001"; gene_id "YOL057W"; +chrXV SGD transcript 220767 222902 . + . transcript_id "YOL057W_id002"; gene_id "YOL057W"; transcript_biotype "protein_coding"; +chrXV SGD exon 220767 222902 . + 0 transcript_id "YOL057W_id002"; gene_id "YOL057W"; +chrXV SGD gene 223143 224349 . + . gene_id "YOL056W"; gene_biotype "protein_coding"; +chrXV SGD transcript 223143 224349 . + . transcript_id "YOL056W_id001"; gene_id "YOL056W"; gene_name "GPM3"; transcript_biotype "protein_coding"; +chrXV SGD exon 223143 224349 . + . transcript_id "YOL056W_id001"; gene_id "YOL056W"; gene_name "GPM3"; +chrXV SGD transcript 223268 224179 . + . transcript_id "YOL056W_id002"; gene_id "YOL056W"; gene_name "GPM3"; transcript_biotype "protein_coding"; +chrXV SGD exon 223268 224179 . + 0 transcript_id "YOL056W_id002"; gene_name "GPM3"; gene_id "YOL056W"; +chrXV SGD gene 224420 226075 . - . gene_id "YOL055C"; gene_biotype "protein_coding"; +chrXV SGD transcript 224420 226075 . - . transcript_id "YOL055C_id001"; gene_id "YOL055C"; gene_name "THI20"; transcript_biotype "protein_coding"; +chrXV SGD exon 224420 226075 . - 0 transcript_id "YOL055C_id001"; gene_name "THI20"; gene_id "YOL055C"; +chrXV SGD gene 226611 226681 . - . gene_id "YNCO0004C"; gene_biotype "ncRNA"; +chrXV SGD transcript 226611 226681 . - . transcript_id "YNCO0004C_tRNA"; gene_id "YNCO0004C"; transcript_biotype "ncRNA"; +chrXV SGD exon 226611 226681 . - . transcript_id "YNCO0004C_tRNA"; gene_id "YNCO0004C"; +chrXV SGD gene 228331 228404 . + . gene_id "YNCO0005W"; gene_biotype "ncRNA"; +chrXV SGD transcript 228331 228404 . + . transcript_id "YNCO0005W_tRNA"; gene_id "YNCO0005W"; transcript_biotype "ncRNA"; +chrXV SGD exon 228331 228404 . + . transcript_id "YNCO0005W_tRNA"; gene_id "YNCO0005W"; +chrXV SGD gene 228512 230004 . + . gene_id "YOL054W"; gene_biotype "protein_coding"; +chrXV SGD transcript 228512 230004 . + . transcript_id "YOL054W_id003"; gene_id "YOL054W"; gene_name "PSH1"; transcript_biotype "protein_coding"; +chrXV SGD exon 228512 230004 . + . transcript_id "YOL054W_id003"; gene_id "YOL054W"; gene_name "PSH1"; +chrXV SGD transcript 228614 229834 . + . transcript_id "YOL054W_id001"; gene_id "YOL054W"; gene_name "PSH1"; transcript_biotype "protein_coding"; +chrXV SGD exon 228614 229834 . + 0 transcript_id "YOL054W_id001"; gene_name "PSH1"; gene_id "YOL054W"; +chrXV SGD gene 230069 231391 . + . gene_id "YOL053W"; gene_biotype "protein_coding"; +chrXV SGD transcript 230069 231391 . + . transcript_id "YOL053W_id001"; gene_id "YOL053W"; gene_name "AIM39"; transcript_biotype "protein_coding"; +chrXV SGD exon 230069 231391 . + . transcript_id "YOL053W_id001"; gene_id "YOL053W"; gene_name "AIM39"; +chrXV SGD transcript 230085 231272 . + . transcript_id "YOL053W_id002"; gene_id "YOL053W"; gene_name "AIM39"; transcript_biotype "protein_coding"; +chrXV SGD exon 230085 231272 . + 0 transcript_id "YOL053W_id002"; gene_name "AIM39"; gene_id "YOL053W"; +chrXV SGD gene 231294 231800 . - . gene_id "YOL052C-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 231294 231800 . - . transcript_id "YOL052C-A_id011"; gene_id "YOL052C-A"; gene_name "DDR2"; transcript_biotype "protein_coding"; +chrXV SGD exon 231294 231800 . - . transcript_id "YOL052C-A_id011"; gene_id "YOL052C-A"; gene_name "DDR2"; +chrXV SGD transcript 231570 231755 . - . transcript_id "YOL052C-A_id001"; gene_id "YOL052C-A"; gene_name "DDR2"; transcript_biotype "protein_coding"; +chrXV SGD exon 231570 231755 . - 0 transcript_id "YOL052C-A_id001"; gene_name "DDR2"; gene_id "YOL052C-A"; +chrXV SGD gene 232316 233791 . - . gene_id "YOL052C"; gene_biotype "protein_coding"; +chrXV SGD transcript 232316 233791 . - . transcript_id "YOL052C_id001"; gene_id "YOL052C"; gene_name "SPE2"; transcript_biotype "protein_coding"; +chrXV SGD exon 232316 233791 . - . transcript_id "YOL052C_id001"; gene_id "YOL052C"; gene_name "SPE2"; +chrXV SGD transcript 232446 233636 . - . transcript_id "YOL052C_id002"; gene_id "YOL052C"; gene_name "SPE2"; transcript_biotype "protein_coding"; +chrXV SGD exon 232446 233636 . - 0 transcript_id "YOL052C_id002"; gene_name "SPE2"; gene_id "YOL052C"; +chrXV SGD gene 234346 234546 . + . gene_id "YNCO0006W"; gene_biotype "ncRNA"; +chrXV SGD transcript 234346 234546 . + . transcript_id "YNCO0006W_snoRNA"; gene_id "YNCO0006W"; gene_name "SNR81"; transcript_biotype "ncRNA"; +chrXV SGD exon 234346 234546 . + . transcript_id "YNCO0006W_snoRNA"; gene_name "SNR81"; gene_id "YNCO0006W"; +chrXV SGD gene 234940 238185 . + . gene_id "YOL051W"; gene_biotype "protein_coding"; +chrXV SGD transcript 234940 238185 . + . transcript_id "YOL051W_mRNA"; gene_id "YOL051W"; gene_name "GAL11"; transcript_biotype "protein_coding"; +chrXV SGD CDS 234940 238185 . + 0 transcript_id "YOL051W_mRNA"; gene_name "GAL11"; gene_id "YOL051W"; +chrXV SGD gene 237882 238202 . - . gene_id "YOL050C"; gene_biotype "protein_coding"; +chrXV SGD transcript 237882 238202 . - . transcript_id "YOL050C_id001"; gene_id "YOL050C"; transcript_biotype "protein_coding"; +chrXV SGD exon 237882 238202 . - 0 transcript_id "YOL050C_id001"; gene_id "YOL050C"; +chrXV SGD gene 238540 240225 . + . gene_id "YOL049W"; gene_biotype "protein_coding"; +chrXV SGD transcript 238540 240225 . + . transcript_id "YOL049W_id001"; gene_id "YOL049W"; gene_name "GSH2"; transcript_biotype "protein_coding"; +chrXV SGD exon 238540 240225 . + . transcript_id "YOL049W_id001"; gene_id "YOL049W"; gene_name "GSH2"; +chrXV SGD transcript 238619 240094 . + . transcript_id "YOL049W_id002"; gene_id "YOL049W"; gene_name "GSH2"; transcript_biotype "protein_coding"; +chrXV SGD exon 238619 240094 . + 0 transcript_id "YOL049W_id002"; gene_name "GSH2"; gene_id "YOL049W"; +chrXV SGD gene 240073 241389 . - . gene_id "YOL048C"; gene_biotype "protein_coding"; +chrXV SGD transcript 240073 241389 . - . transcript_id "YOL048C_id007"; gene_id "YOL048C"; gene_name "RRT8"; transcript_biotype "protein_coding"; +chrXV SGD exon 240073 241389 . - . transcript_id "YOL048C_id007"; gene_id "YOL048C"; gene_name "RRT8"; +chrXV SGD transcript 240204 241310 . - . transcript_id "YOL048C_id001"; gene_id "YOL048C"; gene_name "RRT8"; transcript_biotype "protein_coding"; +chrXV SGD exon 240204 240947 . - 0 transcript_id "YOL048C_id001"; gene_name "RRT8"; gene_id "YOL048C"; +chrXV SGD exon 241026 241310 . - 0 transcript_id "YOL048C_id001"; gene_name "RRT8"; gene_id "YOL048C"; +chrXV SGD gene 241614 242747 . - . gene_id "YOL047C"; gene_biotype "protein_coding"; +chrXV SGD transcript 241614 242747 . - . transcript_id "YOL047C_mRNA"; gene_id "YOL047C"; gene_name "LDS2"; transcript_biotype "protein_coding"; +chrXV SGD CDS 241614 242441 . - 0 transcript_id "YOL047C_mRNA"; gene_name "LDS2"; gene_id "YOL047C"; +chrXV SGD CDS 242505 242747 . - 0 transcript_id "YOL047C_mRNA"; gene_name "LDS2"; gene_id "YOL047C"; +chrXV SGD gene 243466 244140 . - . gene_id "YOL046C"; gene_biotype "protein_coding"; +chrXV SGD transcript 243466 244140 . - . transcript_id "YOL046C_mRNA"; gene_id "YOL046C"; transcript_biotype "protein_coding"; +chrXV SGD CDS 243466 244140 . - 0 transcript_id "YOL046C_mRNA"; gene_id "YOL046C"; +chrXV SGD gene 243497 246802 . + . gene_id "YOL045W"; gene_biotype "protein_coding"; +chrXV SGD transcript 243497 246802 . + . transcript_id "YOL045W_mRNA"; gene_id "YOL045W"; gene_name "PSK2"; transcript_biotype "protein_coding"; +chrXV SGD CDS 243497 246802 . + 0 transcript_id "YOL045W_mRNA"; gene_name "PSK2"; gene_id "YOL045W"; +chrXV SGD gene 247078 248478 . + . gene_id "YOL044W"; gene_biotype "protein_coding"; +chrXV SGD transcript 247078 248478 . + . transcript_id "YOL044W_id001"; gene_id "YOL044W"; gene_name "PEX15"; transcript_biotype "protein_coding"; +chrXV SGD exon 247078 248478 . + . transcript_id "YOL044W_id001"; gene_id "YOL044W"; gene_name "PEX15"; +chrXV SGD transcript 247150 248301 . + . transcript_id "YOL044W_id002"; gene_id "YOL044W"; gene_name "PEX15"; transcript_biotype "protein_coding"; +chrXV SGD exon 247150 248301 . + 0 transcript_id "YOL044W_id002"; gene_name "PEX15"; gene_id "YOL044W"; +chrXV SGD gene 248291 249638 . - . gene_id "YOL043C"; gene_biotype "protein_coding"; +chrXV SGD transcript 248291 249638 . - . transcript_id "YOL043C_id003"; gene_id "YOL043C"; gene_name "NTG2"; transcript_biotype "protein_coding"; +chrXV SGD exon 248291 249638 . - . transcript_id "YOL043C_id003"; gene_id "YOL043C"; gene_name "NTG2"; +chrXV SGD transcript 248392 249534 . - . transcript_id "YOL043C_id001"; gene_id "YOL043C"; gene_name "NTG2"; transcript_biotype "protein_coding"; +chrXV SGD exon 248392 249534 . - 0 transcript_id "YOL043C_id001"; gene_name "NTG2"; gene_id "YOL043C"; +chrXV SGD gene 249598 251136 . + . gene_id "YOL042W"; gene_biotype "protein_coding"; +chrXV SGD transcript 249598 251136 . + . transcript_id "YOL042W_id002"; gene_id "YOL042W"; gene_name "NGL1"; transcript_biotype "protein_coding"; +chrXV SGD exon 249598 251136 . + . transcript_id "YOL042W_id002"; gene_id "YOL042W"; gene_name "NGL1"; +chrXV SGD transcript 249825 250916 . + . transcript_id "YOL042W_id001"; gene_id "YOL042W"; gene_name "NGL1"; transcript_biotype "protein_coding"; +chrXV SGD exon 249825 250916 . + 0 transcript_id "YOL042W_id001"; gene_name "NGL1"; gene_id "YOL042W"; +chrXV SGD gene 251061 252705 . - . gene_id "YOL041C"; gene_biotype "protein_coding"; +chrXV SGD transcript 251061 252705 . - . transcript_id "YOL041C_id002"; gene_id "YOL041C"; gene_name "NOP12"; transcript_biotype "protein_coding"; +chrXV SGD exon 251061 252705 . - . transcript_id "YOL041C_id002"; gene_id "YOL041C"; gene_name "NOP12"; +chrXV SGD transcript 251267 252646 . - . transcript_id "YOL041C_id001"; gene_id "YOL041C"; gene_name "NOP12"; transcript_biotype "protein_coding"; +chrXV SGD exon 251267 252646 . - 0 transcript_id "YOL041C_id001"; gene_name "NOP12"; gene_id "YOL041C"; +chrXV SGD gene 252811 253629 . - . gene_id "YOL040C"; gene_biotype "protein_coding"; +chrXV SGD transcript 252811 253629 . - . transcript_id "YOL040C_id002"; gene_id "YOL040C"; gene_name "RPS15"; transcript_biotype "protein_coding"; +chrXV SGD exon 252811 253629 . - . transcript_id "YOL040C_id002"; gene_id "YOL040C"; gene_name "RPS15"; +chrXV SGD gene 253063 254811 . + . gene_id "YOL039W"; gene_biotype "protein_coding"; +chrXV SGD transcript 253063 254811 . + . transcript_id "YOL039W_id001"; gene_id "YOL039W"; gene_name "RPP2A"; transcript_biotype "protein_coding"; +chrXV SGD exon 253063 254811 . + . transcript_id "YOL039W_id001"; gene_id "YOL039W"; gene_name "RPP2A"; +chrXV SGD transcript 253149 253577 . - . transcript_id "YOL040C_id001"; gene_id "YOL040C"; gene_name "RPS15"; transcript_biotype "protein_coding"; +chrXV SGD exon 253149 253577 . - 0 transcript_id "YOL040C_id001"; gene_name "RPS15"; gene_id "YOL040C"; +chrXV SGD transcript 254297 254617 . + . transcript_id "YOL039W_id007"; gene_id "YOL039W"; gene_name "RPP2A"; transcript_biotype "protein_coding"; +chrXV SGD exon 254297 254617 . + 0 transcript_id "YOL039W_id007"; gene_name "RPP2A"; gene_id "YOL039W"; +chrXV SGD gene 254713 255108 . - . gene_id "YOL038C-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 254713 255108 . - . transcript_id "YOL038C-A_id003"; gene_id "YOL038C-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 254713 255108 . - . transcript_id "YOL038C-A_id003"; gene_id "YOL038C-A"; +chrXV SGD transcript 254926 255021 . - . transcript_id "YOL038C-A_id001"; gene_id "YOL038C-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 254926 255021 . - 0 transcript_id "YOL038C-A_id001"; gene_id "YOL038C-A"; +chrXV SGD gene 255303 256673 . + . gene_id "YOL038W"; gene_biotype "protein_coding"; +chrXV SGD transcript 255303 256673 . + . transcript_id "YOL038W_id003"; gene_id "YOL038W"; gene_name "PRE6"; transcript_biotype "protein_coding"; +chrXV SGD exon 255303 256673 . + . transcript_id "YOL038W_id003"; gene_id "YOL038W"; gene_name "PRE6"; +chrXV SGD transcript 255337 256101 . + . transcript_id "YOL038W_id001"; gene_id "YOL038W"; gene_name "PRE6"; transcript_biotype "protein_coding"; +chrXV SGD exon 255337 256101 . + 0 transcript_id "YOL038W_id001"; gene_name "PRE6"; gene_id "YOL038W"; +chrXV SGD gene 256666 257019 . - . gene_id "YOL037C"; gene_biotype "protein_coding"; +chrXV SGD transcript 256666 257019 . - . transcript_id "YOL037C_id001"; gene_id "YOL037C"; transcript_biotype "protein_coding"; +chrXV SGD exon 256666 257019 . - 0 transcript_id "YOL037C_id001"; gene_id "YOL037C"; +chrXV SGD gene 256745 259030 . + . gene_id "YOL036W"; gene_biotype "protein_coding"; +chrXV SGD transcript 256745 259030 . + . transcript_id "YOL036W_id001"; gene_id "YOL036W"; transcript_biotype "protein_coding"; +chrXV SGD exon 256745 259030 . + 0 transcript_id "YOL036W_id001"; gene_id "YOL036W"; +chrXV SGD gene 258803 259105 . - . gene_id "YOL035C"; gene_biotype "protein_coding"; +chrXV SGD transcript 258803 259105 . - . transcript_id "YOL035C_mRNA"; gene_id "YOL035C"; transcript_biotype "protein_coding"; +chrXV SGD CDS 258803 259105 . - 0 transcript_id "YOL035C_mRNA"; gene_id "YOL035C"; +chrXV SGD gene 259489 259578 . + . gene_id "YNCO0007W"; gene_biotype "ncRNA"; +chrXV SGD transcript 259489 259578 . + . transcript_id "YNCO0007W_snoRNA"; gene_id "YNCO0007W"; gene_name "SNR50"; transcript_biotype "ncRNA"; +chrXV SGD exon 259489 259578 . + . transcript_id "YNCO0007W_snoRNA"; gene_name "SNR50"; gene_id "YNCO0007W"; +chrXV SGD gene 259896 263283 . + . gene_id "YOL034W"; gene_biotype "protein_coding"; +chrXV SGD transcript 259896 263283 . + . transcript_id "YOL034W_id001"; gene_id "YOL034W"; gene_name "SMC5"; transcript_biotype "protein_coding"; +chrXV SGD exon 259896 263283 . + . transcript_id "YOL034W_id001"; gene_id "YOL034W"; gene_name "SMC5"; +chrXV SGD transcript 259923 263204 . + . transcript_id "YOL034W_id002"; gene_id "YOL034W"; gene_name "SMC5"; transcript_biotype "protein_coding"; +chrXV SGD exon 259923 263204 . + 0 transcript_id "YOL034W_id002"; gene_name "SMC5"; gene_id "YOL034W"; +chrXV SGD gene 263421 265239 . + . gene_id "YOL033W"; gene_biotype "protein_coding"; +chrXV SGD transcript 263421 265239 . + . transcript_id "YOL033W_id001"; gene_id "YOL033W"; gene_name "MSE1"; transcript_biotype "protein_coding"; +chrXV SGD exon 263421 265239 . + . transcript_id "YOL033W_id001"; gene_id "YOL033W"; gene_name "MSE1"; +chrXV SGD transcript 263475 265085 . + . transcript_id "YOL033W_id003"; gene_id "YOL033W"; gene_name "MSE1"; transcript_biotype "protein_coding"; +chrXV SGD exon 263475 265085 . + 0 transcript_id "YOL033W_id003"; gene_name "MSE1"; gene_id "YOL033W"; +chrXV SGD gene 265307 266254 . + . gene_id "YOL032W"; gene_biotype "protein_coding"; +chrXV SGD transcript 265307 266254 . + . transcript_id "YOL032W_id002"; gene_id "YOL032W"; gene_name "OPI10"; transcript_biotype "protein_coding"; +chrXV SGD exon 265307 266254 . + . transcript_id "YOL032W_id002"; gene_id "YOL032W"; gene_name "OPI10"; +chrXV SGD transcript 265429 266169 . + . transcript_id "YOL032W_id001"; gene_id "YOL032W"; gene_name "OPI10"; transcript_biotype "protein_coding"; +chrXV SGD exon 265429 266169 . + 0 transcript_id "YOL032W_id001"; gene_name "OPI10"; gene_id "YOL032W"; +chrXV SGD gene 266122 267581 . - . gene_id "YOL031C"; gene_biotype "protein_coding"; +chrXV SGD transcript 266122 267581 . - . transcript_id "YOL031C_id002"; gene_id "YOL031C"; gene_name "SIL1"; transcript_biotype "protein_coding"; +chrXV SGD exon 266122 267581 . - . transcript_id "YOL031C_id002"; gene_id "YOL031C"; gene_name "SIL1"; +chrXV SGD transcript 266264 267529 . - . transcript_id "YOL031C_id001"; gene_id "YOL031C"; gene_name "SIL1"; transcript_biotype "protein_coding"; +chrXV SGD exon 266264 267529 . - 0 transcript_id "YOL031C_id001"; gene_name "SIL1"; gene_id "YOL031C"; +chrXV SGD gene 267913 269797 . + . gene_id "YOL030W"; gene_biotype "protein_coding"; +chrXV SGD transcript 267913 269797 . + . transcript_id "YOL030W_id001"; gene_id "YOL030W"; gene_name "GAS5"; transcript_biotype "protein_coding"; +chrXV SGD exon 267913 269797 . + . transcript_id "YOL030W_id001"; gene_id "YOL030W"; gene_name "GAS5"; +chrXV SGD transcript 268187 269641 . + . transcript_id "YOL030W_id002"; gene_id "YOL030W"; gene_name "GAS5"; transcript_biotype "protein_coding"; +chrXV SGD exon 268187 269641 . + 0 transcript_id "YOL030W_id002"; gene_name "GAS5"; gene_id "YOL030W"; +chrXV SGD gene 269706 271022 . - . gene_id "YOL029C"; gene_biotype "protein_coding"; +chrXV SGD transcript 269706 271022 . - . transcript_id "YOL029C_id001"; gene_id "YOL029C"; transcript_biotype "protein_coding"; +chrXV SGD exon 269706 271022 . - . transcript_id "YOL029C_id001"; gene_id "YOL029C"; +chrXV SGD transcript 269815 270420 . - . transcript_id "YOL029C_id002"; gene_id "YOL029C"; transcript_biotype "protein_coding"; +chrXV SGD exon 269815 270420 . - 0 transcript_id "YOL029C_id002"; gene_id "YOL029C"; +chrXV SGD gene 270633 271370 . - . gene_id "YOL028C"; gene_biotype "protein_coding"; +chrXV SGD transcript 270633 271370 . - . transcript_id "YOL028C_id001"; gene_id "YOL028C"; gene_name "YAP7"; transcript_biotype "protein_coding"; +chrXV SGD exon 270633 271370 . - 0 transcript_id "YOL028C_id001"; gene_name "YAP7"; gene_id "YOL028C"; +chrXV SGD gene 271773 273747 . - . gene_id "YOL027C"; gene_biotype "protein_coding"; +chrXV SGD transcript 271773 273747 . - . transcript_id "YOL027C_id002"; gene_id "YOL027C"; gene_name "MDM38"; transcript_biotype "protein_coding"; +chrXV SGD exon 271773 273747 . - . transcript_id "YOL027C_id002"; gene_id "YOL027C"; gene_name "MDM38"; +chrXV SGD transcript 272003 273724 . - . transcript_id "YOL027C_id001"; gene_id "YOL027C"; gene_name "MDM38"; transcript_biotype "protein_coding"; +chrXV SGD exon 272003 273724 . - 0 transcript_id "YOL027C_id001"; gene_name "MDM38"; gene_id "YOL027C"; +chrXV SGD gene 273711 274377 . - . gene_id "YOL026C"; gene_biotype "protein_coding"; +chrXV SGD transcript 273711 274377 . - . transcript_id "YOL026C_id001"; gene_id "YOL026C"; gene_name "MIM1"; transcript_biotype "protein_coding"; +chrXV SGD exon 273711 274377 . - . transcript_id "YOL026C_id001"; gene_id "YOL026C"; gene_name "MIM1"; +chrXV SGD transcript 274012 274353 . - . transcript_id "YOL026C_id002"; gene_id "YOL026C"; gene_name "MIM1"; transcript_biotype "protein_coding"; +chrXV SGD exon 274012 274353 . - 0 transcript_id "YOL026C_id002"; gene_name "MIM1"; gene_id "YOL026C"; +chrXV SGD gene 274673 274773 . + . gene_id "YNCO0008W"; gene_biotype "ncRNA"; +chrXV SGD transcript 274673 274773 . + . transcript_id "YNCO0008W_tRNA"; gene_id "YNCO0008W"; transcript_biotype "ncRNA"; +chrXV SGD exon 274673 274709 . + . transcript_id "YNCO0008W_tRNA"; gene_id "YNCO0008W"; +chrXV SGD exon 274729 274773 . + . transcript_id "YNCO0008W_tRNA"; gene_id "YNCO0008W"; +chrXV SGD gene 274884 277072 . + . gene_id "YOL025W"; gene_biotype "protein_coding"; +chrXV SGD transcript 274884 277072 . + . transcript_id "YOL025W_id001"; gene_id "YOL025W"; gene_name "LAG2"; transcript_biotype "protein_coding"; +chrXV SGD exon 274884 277072 . + . transcript_id "YOL025W_id001"; gene_id "YOL025W"; gene_name "LAG2"; +chrXV SGD transcript 274957 276939 . + . transcript_id "YOL025W_id002"; gene_id "YOL025W"; gene_name "LAG2"; transcript_biotype "protein_coding"; +chrXV SGD exon 274957 276939 . + 0 transcript_id "YOL025W_id002"; gene_name "LAG2"; gene_id "YOL025W"; +chrXV SGD gene 277086 277604 . + . gene_id "YOL024W"; gene_biotype "protein_coding"; +chrXV SGD transcript 277086 277604 . + . transcript_id "YOL024W_id001"; gene_id "YOL024W"; transcript_biotype "protein_coding"; +chrXV SGD exon 277086 277604 . + 0 transcript_id "YOL024W_id001"; gene_id "YOL024W"; +chrXV SGD gene 277874 280266 . + . gene_id "YOL023W"; gene_biotype "protein_coding"; +chrXV SGD transcript 277874 280266 . + . transcript_id "YOL023W_id001"; gene_id "YOL023W"; gene_name "IFM1"; transcript_biotype "protein_coding"; +chrXV SGD exon 277874 280266 . + . transcript_id "YOL023W_id001"; gene_id "YOL023W"; gene_name "IFM1"; +chrXV SGD transcript 278056 280086 . + . transcript_id "YOL023W_id002"; gene_id "YOL023W"; gene_name "IFM1"; transcript_biotype "protein_coding"; +chrXV SGD exon 278056 280086 . + 0 transcript_id "YOL023W_id002"; gene_name "IFM1"; gene_id "YOL023W"; +chrXV SGD gene 280102 281528 . - . gene_id "YOL022C"; gene_biotype "protein_coding"; +chrXV SGD transcript 280102 281528 . - . transcript_id "YOL022C_id002"; gene_id "YOL022C"; gene_name "TSR4"; transcript_biotype "protein_coding"; +chrXV SGD exon 280102 281528 . - . transcript_id "YOL022C_id002"; gene_id "YOL022C"; gene_name "TSR4"; +chrXV SGD transcript 280272 281498 . - . transcript_id "YOL022C_id001"; gene_id "YOL022C"; gene_name "TSR4"; transcript_biotype "protein_coding"; +chrXV SGD exon 280272 281498 . - 0 transcript_id "YOL022C_id001"; gene_name "TSR4"; gene_id "YOL022C"; +chrXV SGD gene 282164 282234 . + . gene_id "YNCO0009W"; gene_biotype "ncRNA"; +chrXV SGD transcript 282164 282234 . + . transcript_id "YNCO0009W_tRNA"; gene_id "YNCO0009W"; gene_name "SUF17"; transcript_biotype "ncRNA"; +chrXV SGD exon 282164 282234 . + . transcript_id "YNCO0009W_tRNA"; gene_name "SUF17"; gene_id "YNCO0009W"; +chrXV SGD gene 282302 285473 . - . gene_id "YOL021C"; gene_biotype "protein_coding"; +chrXV SGD transcript 282302 285473 . - . transcript_id "YOL021C_id001"; gene_id "YOL021C"; gene_name "DIS3"; transcript_biotype "protein_coding"; +chrXV SGD exon 282302 285473 . - . transcript_id "YOL021C_id001"; gene_id "YOL021C"; gene_name "DIS3"; +chrXV SGD transcript 282421 285426 . - . transcript_id "YOL021C_id002"; gene_id "YOL021C"; gene_name "DIS3"; transcript_biotype "protein_coding"; +chrXV SGD exon 282421 285426 . - 0 transcript_id "YOL021C_id002"; gene_name "DIS3"; gene_id "YOL021C"; +chrXV SGD gene 286025 288085 . + . gene_id "YOL020W"; gene_biotype "protein_coding"; +chrXV SGD transcript 286025 288085 . + . transcript_id "YOL020W_id002"; gene_id "YOL020W"; gene_name "TAT2"; transcript_biotype "protein_coding"; +chrXV SGD exon 286025 288085 . + . transcript_id "YOL020W_id002"; gene_id "YOL020W"; gene_name "TAT2"; +chrXV SGD transcript 286172 287950 . + . transcript_id "YOL020W_id001"; gene_id "YOL020W"; gene_name "TAT2"; transcript_biotype "protein_coding"; +chrXV SGD exon 286172 287950 . + 0 transcript_id "YOL020W_id001"; gene_name "TAT2"; gene_id "YOL020W"; +chrXV SGD gene 288192 288280 . + . gene_id "YNCO0010W"; gene_biotype "ncRNA"; +chrXV SGD transcript 288192 288280 . + . transcript_id "YNCO0010W_tRNA"; gene_id "YNCO0010W"; gene_name "SUP3"; transcript_biotype "ncRNA"; +chrXV SGD exon 288192 288230 . + . transcript_id "YNCO0010W_tRNA"; gene_name "SUP3"; gene_id "YNCO0010W"; +chrXV SGD exon 288245 288280 . + . transcript_id "YNCO0010W_tRNA"; gene_name "SUP3"; gene_id "YNCO0010W"; +chrXV SGD gene 288420 288572 . + . gene_id "YOL019W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 288420 288572 . + . transcript_id "YOL019W-A_mRNA"; gene_id "YOL019W-A"; transcript_biotype "protein_coding"; +chrXV SGD CDS 288420 288572 . + 0 transcript_id "YOL019W-A_mRNA"; gene_id "YOL019W-A"; +chrXV SGD gene 288743 290774 . + . gene_id "YOL019W"; gene_biotype "protein_coding"; +chrXV SGD transcript 288743 290774 . + . transcript_id "YOL019W_id003"; gene_id "YOL019W"; gene_name "TOS7"; transcript_biotype "protein_coding"; +chrXV SGD exon 288743 290774 . + . transcript_id "YOL019W_id003"; gene_id "YOL019W"; gene_name "TOS7"; +chrXV SGD transcript 288898 290553 . + . transcript_id "YOL019W_id001"; gene_id "YOL019W"; gene_name "TOS7"; transcript_biotype "protein_coding"; +chrXV SGD exon 288898 290553 . + 0 transcript_id "YOL019W_id001"; gene_name "TOS7"; gene_id "YOL019W"; +chrXV SGD gene 290618 292144 . - . gene_id "YOL018C"; gene_biotype "protein_coding"; +chrXV SGD transcript 290618 292144 . - . transcript_id "YOL018C_id003"; gene_id "YOL018C"; gene_name "TLG2"; transcript_biotype "protein_coding"; +chrXV SGD exon 290618 292144 . - . transcript_id "YOL018C_id003"; gene_id "YOL018C"; gene_name "TLG2"; +chrXV SGD transcript 290881 292074 . - . transcript_id "YOL018C_id001"; gene_id "YOL018C"; gene_name "TLG2"; transcript_biotype "protein_coding"; +chrXV SGD exon 290881 292074 . - 0 transcript_id "YOL018C_id001"; gene_name "TLG2"; gene_id "YOL018C"; +chrXV SGD gene 292442 294787 . + . gene_id "YOL017W"; gene_biotype "protein_coding"; +chrXV SGD transcript 292442 294787 . + . transcript_id "YOL017W_id002"; gene_id "YOL017W"; gene_name "ESC8"; transcript_biotype "protein_coding"; +chrXV SGD exon 292442 294787 . + . transcript_id "YOL017W_id002"; gene_id "YOL017W"; gene_name "ESC8"; +chrXV SGD transcript 292529 294673 . + . transcript_id "YOL017W_id001"; gene_id "YOL017W"; gene_name "ESC8"; transcript_biotype "protein_coding"; +chrXV SGD exon 292529 294673 . + 0 transcript_id "YOL017W_id001"; gene_name "ESC8"; gene_id "YOL017W"; +chrXV SGD gene 294513 296221 . - . gene_id "YOL016C"; gene_biotype "protein_coding"; +chrXV SGD transcript 294513 296221 . - . transcript_id "YOL016C_id001"; gene_id "YOL016C"; gene_name "CMK2"; transcript_biotype "protein_coding"; +chrXV SGD exon 294513 296221 . - . transcript_id "YOL016C_id001"; gene_id "YOL016C"; gene_name "CMK2"; +chrXV SGD transcript 294777 296120 . - . transcript_id "YOL016C_id002"; gene_id "YOL016C"; gene_name "CMK2"; transcript_biotype "protein_coding"; +chrXV SGD exon 294777 296120 . - 0 transcript_id "YOL016C_id002"; gene_name "CMK2"; gene_id "YOL016C"; +chrXV SGD gene 297078 298838 . + . gene_id "YOL015W"; gene_biotype "protein_coding"; +chrXV SGD transcript 297078 298838 . + . transcript_id "YOL015W_id001"; gene_id "YOL015W"; gene_name "IRC10"; transcript_biotype "protein_coding"; +chrXV SGD exon 297078 298838 . + 0 transcript_id "YOL015W_id001"; gene_name "IRC10"; gene_id "YOL015W"; +chrXV SGD gene 299472 300652 . + . gene_id "YOL014W"; gene_biotype "protein_coding"; +chrXV SGD transcript 299472 300652 . + . transcript_id "YOL014W_id003"; gene_id "YOL014W"; transcript_biotype "protein_coding"; +chrXV SGD exon 299472 300652 . + . transcript_id "YOL014W_id003"; gene_id "YOL014W"; +chrXV SGD transcript 299693 300067 . + . transcript_id "YOL014W_id001"; gene_id "YOL014W"; transcript_biotype "protein_coding"; +chrXV SGD exon 299693 300067 . + 0 transcript_id "YOL014W_id001"; gene_id "YOL014W"; +chrXV SGD gene 300690 300980 . + . gene_id "YOL013W-B"; gene_biotype "protein_coding"; +chrXV SGD transcript 300690 300980 . + . transcript_id "YOL013W-B_mRNA"; gene_id "YOL013W-B"; transcript_biotype "protein_coding"; +chrXV SGD CDS 300690 300980 . + 0 transcript_id "YOL013W-B_mRNA"; gene_id "YOL013W-B"; +chrXV SGD gene 301047 301238 . + . gene_id "YOL013W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 301047 301238 . + . transcript_id "YOL013W-A_mRNA"; gene_id "YOL013W-A"; transcript_biotype "protein_coding"; +chrXV SGD CDS 301047 301238 . + 0 transcript_id "YOL013W-A_mRNA"; gene_id "YOL013W-A"; +chrXV SGD gene 301097 301198 . + . gene_id "YNCO0011W"; gene_biotype "ncRNA"; +chrXV SGD transcript 301097 301198 . + . transcript_id "YNCO0011W_tRNA"; gene_id "YNCO0011W"; transcript_biotype "ncRNA"; +chrXV SGD exon 301097 301132 . + . transcript_id "YNCO0011W_tRNA"; gene_id "YNCO0011W"; +chrXV SGD exon 301163 301198 . + . transcript_id "YNCO0011W_tRNA"; gene_id "YNCO0011W"; +chrXV SGD gene 301265 303186 . - . gene_id "YOL013C"; gene_biotype "protein_coding"; +chrXV SGD transcript 301265 303186 . - . transcript_id "YOL013C_id003"; gene_id "YOL013C"; gene_name "HRD1"; transcript_biotype "protein_coding"; +chrXV SGD exon 301265 303186 . - . transcript_id "YOL013C_id003"; gene_id "YOL013C"; gene_name "HRD1"; +chrXV SGD transcript 301380 303035 . - . transcript_id "YOL013C_id001"; gene_id "YOL013C"; gene_name "HRD1"; transcript_biotype "protein_coding"; +chrXV SGD exon 301380 303035 . - 0 transcript_id "YOL013C_id001"; gene_name "HRD1"; gene_id "YOL013C"; +chrXV SGD gene 303419 304806 . - . gene_id "YOL012C"; gene_biotype "protein_coding"; +chrXV SGD transcript 303419 304806 . - . transcript_id "YOL012C_id001"; gene_id "YOL012C"; gene_name "HTZ1"; transcript_biotype "protein_coding"; +chrXV SGD exon 303419 304806 . - . transcript_id "YOL012C_id001"; gene_id "YOL012C"; gene_name "HTZ1"; +chrXV SGD transcript 303579 303983 . - . transcript_id "YOL012C_id002"; gene_id "YOL012C"; gene_name "HTZ1"; transcript_biotype "protein_coding"; +chrXV SGD exon 303579 303983 . - 0 transcript_id "YOL012C_id002"; gene_name "HTZ1"; gene_id "YOL012C"; +chrXV SGD gene 305349 307409 . + . gene_id "YOL011W"; gene_biotype "protein_coding"; +chrXV SGD transcript 305349 307409 . + . transcript_id "YOL011W_id001"; gene_id "YOL011W"; gene_name "PLB3"; transcript_biotype "protein_coding"; +chrXV SGD exon 305349 307409 . + 0 transcript_id "YOL011W_id001"; gene_name "PLB3"; gene_id "YOL011W"; +chrXV SGD gene 307883 309251 . + . gene_id "YOL010W"; gene_biotype "protein_coding"; +chrXV SGD transcript 307883 309251 . + . transcript_id "YOL010W_id002"; gene_id "YOL010W"; gene_name "RCL1"; transcript_biotype "protein_coding"; +chrXV SGD exon 307883 309251 . + . transcript_id "YOL010W_id002"; gene_id "YOL010W"; gene_name "RCL1"; +chrXV SGD transcript 307938 309041 . + . transcript_id "YOL010W_id001"; gene_id "YOL010W"; gene_name "RCL1"; transcript_biotype "protein_coding"; +chrXV SGD exon 307938 309041 . + 0 transcript_id "YOL010W_id001"; gene_name "RCL1"; gene_id "YOL010W"; +chrXV SGD gene 309014 310206 . - . gene_id "YOL009C"; gene_biotype "protein_coding"; +chrXV SGD transcript 309014 310206 . - . transcript_id "YOL009C_id004"; gene_id "YOL009C"; gene_name "MDM12"; transcript_biotype "protein_coding"; +chrXV SGD exon 309014 310206 . - . transcript_id "YOL009C_id004"; gene_id "YOL009C"; gene_name "MDM12"; +chrXV SGD transcript 309324 310139 . - . transcript_id "YOL009C_id001"; gene_id "YOL009C"; gene_name "MDM12"; transcript_biotype "protein_coding"; +chrXV SGD exon 309324 310139 . - 0 transcript_id "YOL009C_id001"; gene_name "MDM12"; gene_id "YOL009C"; +chrXV SGD gene 310273 311138 . + . gene_id "YOL008W"; gene_biotype "protein_coding"; +chrXV SGD transcript 310273 311138 . + . transcript_id "YOL008W_id003"; gene_id "YOL008W"; gene_name "COQ10"; transcript_biotype "protein_coding"; +chrXV SGD exon 310273 311138 . + . transcript_id "YOL008W_id003"; gene_id "YOL008W"; gene_name "COQ10"; +chrXV SGD transcript 310312 310935 . + . transcript_id "YOL008W_id001"; gene_id "YOL008W"; gene_name "COQ10"; transcript_biotype "protein_coding"; +chrXV SGD exon 310312 310935 . + 0 transcript_id "YOL008W_id001"; gene_name "COQ10"; gene_id "YOL008W"; +chrXV SGD gene 310856 312455 . - . gene_id "YOL007C"; gene_biotype "protein_coding"; +chrXV SGD transcript 310856 312455 . - . transcript_id "YOL007C_id006"; gene_id "YOL007C"; gene_name "CSI2"; transcript_biotype "protein_coding"; +chrXV SGD exon 310856 312455 . - . transcript_id "YOL007C_id006"; gene_id "YOL007C"; gene_name "CSI2"; +chrXV SGD transcript 311342 312367 . - . transcript_id "YOL007C_id001"; gene_id "YOL007C"; gene_name "CSI2"; transcript_biotype "protein_coding"; +chrXV SGD exon 311342 312367 . - 0 transcript_id "YOL007C_id001"; gene_name "CSI2"; gene_id "YOL007C"; +chrXV SGD gene 312919 315550 . - . gene_id "YOL006C"; gene_biotype "protein_coding"; +chrXV SGD transcript 312919 315550 . - . transcript_id "YOL006C_id002"; gene_id "YOL006C"; gene_name "TOP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 312919 315550 . - . transcript_id "YOL006C_id002"; gene_id "YOL006C"; gene_name "TOP1"; +chrXV SGD transcript 313078 315387 . - . transcript_id "YOL006C_id001"; gene_id "YOL006C"; gene_name "TOP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 313078 315387 . - 0 transcript_id "YOL006C_id001"; gene_name "TOP1"; gene_id "YOL006C"; +chrXV SGD gene 315703 316461 . - . gene_id "YOL005C"; gene_biotype "protein_coding"; +chrXV SGD transcript 315703 316461 . - . transcript_id "YOL005C_id002"; gene_id "YOL005C"; gene_name "RPB11"; transcript_biotype "protein_coding"; +chrXV SGD exon 315703 316461 . - . transcript_id "YOL005C_id002"; gene_id "YOL005C"; gene_name "RPB11"; +chrXV SGD transcript 315813 316175 . - . transcript_id "YOL005C_id001"; gene_id "YOL005C"; gene_name "RPB11"; transcript_biotype "protein_coding"; +chrXV SGD exon 315813 316175 . - 0 transcript_id "YOL005C_id001"; gene_name "RPB11"; gene_id "YOL005C"; +chrXV SGD gene 316938 321548 . + . gene_id "YOL004W"; gene_biotype "protein_coding"; +chrXV SGD transcript 316938 321548 . + . transcript_id "YOL004W_mRNA"; gene_id "YOL004W"; gene_name "SIN3"; transcript_biotype "protein_coding"; +chrXV SGD CDS 316938 321548 . + 0 transcript_id "YOL004W_mRNA"; gene_name "SIN3"; gene_id "YOL004W"; +chrXV SGD gene 321678 323015 . - . gene_id "YOL003C"; gene_biotype "protein_coding"; +chrXV SGD transcript 321678 323015 . - . transcript_id "YOL003C_id002"; gene_id "YOL003C"; gene_name "PFA4"; transcript_biotype "protein_coding"; +chrXV SGD exon 321678 323015 . - . transcript_id "YOL003C_id002"; gene_id "YOL003C"; gene_name "PFA4"; +chrXV SGD transcript 321858 322994 . - . transcript_id "YOL003C_id001"; gene_id "YOL003C"; gene_name "PFA4"; transcript_biotype "protein_coding"; +chrXV SGD exon 321858 322994 . - 0 transcript_id "YOL003C_id001"; gene_name "PFA4"; gene_id "YOL003C"; +chrXV SGD gene 323346 324650 . - . gene_id "YOL002C"; gene_biotype "protein_coding"; +chrXV SGD transcript 323346 324650 . - . transcript_id "YOL002C_id001"; gene_id "YOL002C"; gene_name "IZH2"; transcript_biotype "protein_coding"; +chrXV SGD exon 323346 324650 . - . transcript_id "YOL002C_id001"; gene_id "YOL002C"; gene_name "IZH2"; +chrXV SGD transcript 323411 324364 . - . transcript_id "YOL002C_id002"; gene_id "YOL002C"; gene_name "IZH2"; transcript_biotype "protein_coding"; +chrXV SGD exon 323411 324364 . - 0 transcript_id "YOL002C_id002"; gene_name "IZH2"; gene_id "YOL002C"; +chrXV SGD gene 324853 326268 . + . gene_id "YOL001W"; gene_biotype "protein_coding"; +chrXV SGD transcript 324853 326268 . + . transcript_id "YOL001W_id002"; gene_id "YOL001W"; gene_name "PHO80"; transcript_biotype "protein_coding"; +chrXV SGD exon 324853 326268 . + . transcript_id "YOL001W_id002"; gene_id "YOL001W"; gene_name "PHO80"; +chrXV SGD transcript 325249 326130 . + . transcript_id "YOL001W_id001"; gene_id "YOL001W"; gene_name "PHO80"; transcript_biotype "protein_coding"; +chrXV SGD exon 325249 326130 . + 0 transcript_id "YOL001W_id001"; gene_name "PHO80"; gene_id "YOL001W"; +chrXV SGD gene 326787 329169 . + . gene_id "YOR001W"; gene_biotype "protein_coding"; +chrXV SGD transcript 326787 329169 . + . transcript_id "YOR001W_id003"; gene_id "YOR001W"; gene_name "RRP6"; transcript_biotype "protein_coding"; +chrXV SGD exon 326787 329169 . + . transcript_id "YOR001W_id003"; gene_id "YOR001W"; gene_name "RRP6"; +chrXV SGD transcript 326832 329033 . + . transcript_id "YOR001W_id001"; gene_id "YOR001W"; gene_name "RRP6"; transcript_biotype "protein_coding"; +chrXV SGD exon 326832 329033 . + 0 transcript_id "YOR001W_id001"; gene_name "RRP6"; gene_id "YOR001W"; +chrXV SGD gene 329377 331474 . + . gene_id "YOR002W"; gene_biotype "protein_coding"; +chrXV SGD transcript 329377 331474 . + . transcript_id "YOR002W_id002"; gene_id "YOR002W"; gene_name "ALG6"; transcript_biotype "protein_coding"; +chrXV SGD exon 329377 331474 . + . transcript_id "YOR002W_id002"; gene_id "YOR002W"; gene_name "ALG6"; +chrXV SGD transcript 329417 331051 . + . transcript_id "YOR002W_id001"; gene_id "YOR002W"; gene_name "ALG6"; transcript_biotype "protein_coding"; +chrXV SGD exon 329417 331051 . + 0 transcript_id "YOR002W_id001"; gene_name "ALG6"; gene_id "YOR002W"; +chrXV SGD gene 331396 333104 . + . gene_id "YOR003W"; gene_biotype "protein_coding"; +chrXV SGD transcript 331396 333104 . + . transcript_id "YOR003W_id001"; gene_id "YOR003W"; gene_name "YSP3"; transcript_biotype "protein_coding"; +chrXV SGD exon 331396 333104 . + . transcript_id "YOR003W_id001"; gene_id "YOR003W"; gene_name "YSP3"; +chrXV SGD transcript 331455 332891 . + . transcript_id "YOR003W_id002"; gene_id "YOR003W"; gene_name "YSP3"; transcript_biotype "protein_coding"; +chrXV SGD exon 331455 332891 . + 0 transcript_id "YOR003W_id002"; gene_name "YSP3"; gene_id "YOR003W"; +chrXV SGD gene 333561 334576 . + . gene_id "YOR004W"; gene_biotype "protein_coding"; +chrXV SGD transcript 333561 334576 . + . transcript_id "YOR004W_id001"; gene_id "YOR004W"; gene_name "UTP23"; transcript_biotype "protein_coding"; +chrXV SGD exon 333561 334576 . + . transcript_id "YOR004W_id001"; gene_id "YOR004W"; gene_name "UTP23"; +chrXV SGD transcript 333592 334356 . + . transcript_id "YOR004W_id002"; gene_id "YOR004W"; gene_name "UTP23"; transcript_biotype "protein_coding"; +chrXV SGD exon 333592 334356 . + 0 transcript_id "YOR004W_id002"; gene_name "UTP23"; gene_id "YOR004W"; +chrXV SGD gene 334509 337343 . - . gene_id "YOR005C"; gene_biotype "protein_coding"; +chrXV SGD transcript 334509 337343 . - . transcript_id "YOR005C_id001"; gene_id "YOR005C"; gene_name "DNL4"; transcript_biotype "protein_coding"; +chrXV SGD exon 334509 337343 . - 0 transcript_id "YOR005C_id001"; gene_name "DNL4"; gene_id "YOR005C"; +chrXV SGD gene 337503 338688 . - . gene_id "YOR006C"; gene_biotype "protein_coding"; +chrXV SGD transcript 337503 338688 . - . transcript_id "YOR006C_id003"; gene_id "YOR006C"; gene_name "TSR3"; transcript_biotype "protein_coding"; +chrXV SGD exon 337503 338688 . - . transcript_id "YOR006C_id003"; gene_id "YOR006C"; gene_name "TSR3"; +chrXV SGD transcript 337680 338621 . - . transcript_id "YOR006C_id001"; gene_id "YOR006C"; gene_name "TSR3"; transcript_biotype "protein_coding"; +chrXV SGD exon 337680 338621 . - 0 transcript_id "YOR006C_id001"; gene_name "TSR3"; gene_id "YOR006C"; +chrXV SGD gene 338685 340057 . - . gene_id "YOR007C"; gene_biotype "protein_coding"; +chrXV SGD transcript 338685 340057 . - . transcript_id "YOR007C_id005"; gene_id "YOR007C"; gene_name "SGT2"; transcript_biotype "protein_coding"; +chrXV SGD exon 338685 340057 . - . transcript_id "YOR007C_id005"; gene_id "YOR007C"; gene_name "SGT2"; +chrXV SGD transcript 338938 339978 . - . transcript_id "YOR007C_id001"; gene_id "YOR007C"; gene_name "SGT2"; transcript_biotype "protein_coding"; +chrXV SGD exon 338938 339978 . - 0 transcript_id "YOR007C_id001"; gene_name "SGT2"; gene_id "YOR007C"; +chrXV SGD gene 340299 340371 . - . gene_id "YNCO0012C"; gene_biotype "ncRNA"; +chrXV SGD transcript 340299 340371 . - . transcript_id "YNCO0012C_tRNA"; gene_id "YNCO0012C"; transcript_biotype "ncRNA"; +chrXV SGD exon 340299 340371 . - . transcript_id "YNCO0012C_tRNA"; gene_id "YNCO0012C"; +chrXV SGD gene 340960 342711 . - . gene_id "YOR008C"; gene_biotype "protein_coding"; +chrXV SGD transcript 340960 342711 . - . transcript_id "YOR008C_id001"; gene_id "YOR008C"; gene_name "SLG1"; transcript_biotype "protein_coding"; +chrXV SGD exon 340960 342711 . - . transcript_id "YOR008C_id001"; gene_id "YOR008C"; gene_name "SLG1"; +chrXV SGD transcript 341278 342414 . - . transcript_id "YOR008C_id002"; gene_id "YOR008C"; gene_name "SLG1"; transcript_biotype "protein_coding"; +chrXV SGD exon 341278 342414 . - 0 transcript_id "YOR008C_id002"; gene_name "SLG1"; gene_id "YOR008C"; +chrXV SGD gene 342857 343081 . - . gene_id "YOR008C-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 342857 343081 . - . transcript_id "YOR008C-A_mRNA"; gene_id "YOR008C-A"; transcript_biotype "protein_coding"; +chrXV SGD CDS 342857 343081 . - 0 transcript_id "YOR008C-A_mRNA"; gene_id "YOR008C-A"; +chrXV SGD gene 343929 344030 . + . gene_id "YOR008W-B"; gene_biotype "protein_coding"; +chrXV SGD transcript 343929 344030 . + . transcript_id "YOR008W-B_mRNA"; gene_id "YOR008W-B"; transcript_biotype "protein_coding"; +chrXV SGD CDS 343929 344030 . + 0 transcript_id "YOR008W-B_mRNA"; gene_id "YOR008W-B"; +chrXV SGD gene 344335 345798 . + . gene_id "YOR009W"; gene_biotype "protein_coding"; +chrXV SGD transcript 344335 345798 . + . transcript_id "YOR009W_mRNA"; gene_id "YOR009W"; gene_name "TIR4"; transcript_biotype "protein_coding"; +chrXV SGD CDS 344335 345798 . + 0 transcript_id "YOR009W_mRNA"; gene_name "TIR4"; gene_id "YOR009W"; +chrXV SGD gene 346103 347361 . - . gene_id "YOR010C"; gene_biotype "protein_coding"; +chrXV SGD transcript 346103 347361 . - . transcript_id "YOR010C_id002"; gene_id "YOR010C"; gene_name "TIR2"; transcript_biotype "protein_coding"; +chrXV SGD exon 346103 347361 . - . transcript_id "YOR010C_id002"; gene_id "YOR010C"; gene_name "TIR2"; +chrXV SGD transcript 346195 346950 . - . transcript_id "YOR010C_id001"; gene_id "YOR010C"; gene_name "TIR2"; transcript_biotype "protein_coding"; +chrXV SGD exon 346195 346950 . - 0 transcript_id "YOR010C_id001"; gene_name "TIR2"; gene_id "YOR010C"; +chrXV SGD gene 349679 353863 . + . gene_id "YOR011W"; gene_biotype "protein_coding"; +chrXV SGD transcript 349679 353863 . + . transcript_id "YOR011W_mRNA"; gene_id "YOR011W"; gene_name "AUS1"; transcript_biotype "protein_coding"; +chrXV SGD CDS 349679 353863 . + 0 transcript_id "YOR011W_mRNA"; gene_name "AUS1"; gene_id "YOR011W"; +chrXV SGD gene 354041 354113 . - . gene_id "YNCO0013C"; gene_biotype "ncRNA"; +chrXV SGD transcript 354041 354113 . - . transcript_id "YNCO0013C_tRNA"; gene_id "YNCO0013C"; transcript_biotype "ncRNA"; +chrXV SGD exon 354041 354113 . - . transcript_id "YNCO0013C_tRNA"; gene_id "YNCO0013C"; +chrXV SGD gene 355652 355858 . + . gene_id "YOR011W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 355652 355858 . + . transcript_id "YOR011W-A_mRNA"; gene_id "YOR011W-A"; transcript_biotype "protein_coding"; +chrXV SGD CDS 355652 355858 . + 0 transcript_id "YOR011W-A_mRNA"; gene_id "YOR011W-A"; +chrXV SGD gene 356543 356956 . + . gene_id "YOR012W"; gene_biotype "protein_coding"; +chrXV SGD transcript 356543 356956 . + . transcript_id "YOR012W_mRNA"; gene_id "YOR012W"; transcript_biotype "protein_coding"; +chrXV SGD CDS 356543 356956 . + 0 transcript_id "YOR012W_mRNA"; gene_id "YOR012W"; +chrXV SGD gene 356548 357293 . + . gene_id "YOR013W"; gene_biotype "protein_coding"; +chrXV SGD transcript 356548 357293 . + . transcript_id "YOR013W_id001"; gene_id "YOR013W"; gene_name "IRC11"; transcript_biotype "protein_coding"; +chrXV SGD exon 356548 357293 . + . transcript_id "YOR013W_id001"; gene_id "YOR013W"; gene_name "IRC11"; +chrXV SGD transcript 356751 357221 . + . transcript_id "YOR013W_id004"; gene_id "YOR013W"; gene_name "IRC11"; transcript_biotype "protein_coding"; +chrXV SGD exon 356751 357221 . + 0 transcript_id "YOR013W_id004"; gene_name "IRC11"; gene_id "YOR013W"; +chrXV SGD gene 357415 360254 . + . gene_id "YOR014W"; gene_biotype "protein_coding"; +chrXV SGD transcript 357415 360254 . + . transcript_id "YOR014W_id002"; gene_id "YOR014W"; gene_name "RTS1"; transcript_biotype "protein_coding"; +chrXV SGD exon 357415 360254 . + . transcript_id "YOR014W_id002"; gene_id "YOR014W"; gene_name "RTS1"; +chrXV SGD transcript 357674 359947 . + . transcript_id "YOR014W_id001"; gene_id "YOR014W"; gene_name "RTS1"; transcript_biotype "protein_coding"; +chrXV SGD exon 357674 359947 . + 0 transcript_id "YOR014W_id001"; gene_name "RTS1"; gene_id "YOR014W"; +chrXV SGD gene 357962 360400 . + . gene_id "YOR015W"; gene_biotype "protein_coding"; +chrXV SGD transcript 357962 360400 . + . transcript_id "YOR015W_id002"; gene_id "YOR015W"; transcript_biotype "protein_coding"; +chrXV SGD exon 357962 360400 . + . transcript_id "YOR015W_id002"; gene_id "YOR015W"; +chrXV SGD gene 359726 361172 . - . gene_id "YOR016C"; gene_biotype "protein_coding"; +chrXV SGD transcript 359726 361172 . - . transcript_id "YOR016C_id001"; gene_id "YOR016C"; gene_name "ERP4"; transcript_biotype "protein_coding"; +chrXV SGD exon 359726 361172 . - . transcript_id "YOR016C_id001"; gene_id "YOR016C"; gene_name "ERP4"; +chrXV SGD transcript 359993 360352 . + . transcript_id "YOR015W_id001"; gene_id "YOR015W"; transcript_biotype "protein_coding"; +chrXV SGD exon 359993 360352 . + 0 transcript_id "YOR015W_id001"; gene_id "YOR015W"; +chrXV SGD transcript 360461 361084 . - . transcript_id "YOR016C_id005"; gene_id "YOR016C"; gene_name "ERP4"; transcript_biotype "protein_coding"; +chrXV SGD exon 360461 361084 . - 0 transcript_id "YOR016C_id005"; gene_name "ERP4"; gene_id "YOR016C"; +chrXV SGD gene 361412 363814 . + . gene_id "YOR017W"; gene_biotype "protein_coding"; +chrXV SGD transcript 361412 363814 . + . transcript_id "YOR017W_id001"; gene_id "YOR017W"; gene_name "PET127"; transcript_biotype "protein_coding"; +chrXV SGD exon 361412 363814 . + 0 transcript_id "YOR017W_id001"; gene_name "PET127"; gene_id "YOR017W"; +chrXV SGD gene 364369 366882 . + . gene_id "YOR018W"; gene_biotype "protein_coding"; +chrXV SGD transcript 364369 366882 . + . transcript_id "YOR018W_id001"; gene_id "YOR018W"; gene_name "ROD1"; transcript_biotype "protein_coding"; +chrXV SGD exon 364369 366882 . + 0 transcript_id "YOR018W_id001"; gene_name "ROD1"; gene_id "YOR018W"; +chrXV SGD gene 368127 370319 . + . gene_id "YOR019W"; gene_biotype "protein_coding"; +chrXV SGD transcript 368127 370319 . + . transcript_id "YOR019W_mRNA"; gene_id "YOR019W"; transcript_biotype "protein_coding"; +chrXV SGD CDS 368127 370319 . + 0 transcript_id "YOR019W_mRNA"; gene_id "YOR019W"; +chrXV SGD gene 369619 370882 . - . gene_id "YOR020C"; gene_biotype "protein_coding"; +chrXV SGD transcript 369619 370882 . - . transcript_id "YOR020C_id005"; gene_id "YOR020C"; gene_name "HSP10"; transcript_biotype "protein_coding"; +chrXV SGD exon 369619 370882 . - . transcript_id "YOR020C_id005"; gene_id "YOR020C"; gene_name "HSP10"; +chrXV SGD transcript 370524 370844 . - . transcript_id "YOR020C_id001"; gene_id "YOR020C"; gene_name "HSP10"; transcript_biotype "protein_coding"; +chrXV SGD exon 370524 370844 . - 0 transcript_id "YOR020C_id001"; gene_name "HSP10"; gene_id "YOR020C"; +chrXV SGD gene 371364 372136 . + . gene_id "YOR020W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 371364 372136 . + . transcript_id "YOR020W-A_id004"; gene_id "YOR020W-A"; gene_name "MCO10"; transcript_biotype "protein_coding"; +chrXV SGD exon 371364 372136 . + . transcript_id "YOR020W-A_id004"; gene_id "YOR020W-A"; gene_name "MCO10"; +chrXV SGD transcript 371685 371957 . + . transcript_id "YOR020W-A_id001"; gene_id "YOR020W-A"; gene_name "MCO10"; transcript_biotype "protein_coding"; +chrXV SGD exon 371685 371957 . + 0 transcript_id "YOR020W-A_id001"; gene_name "MCO10"; gene_id "YOR020W-A"; +chrXV SGD gene 372666 374798 . - . gene_id "YOR021C"; gene_biotype "protein_coding"; +chrXV SGD transcript 372666 374798 . - . transcript_id "YOR021C_id001"; gene_id "YOR021C"; gene_name "SFM1"; transcript_biotype "protein_coding"; +chrXV SGD exon 372666 374798 . - . transcript_id "YOR021C_id001"; gene_id "YOR021C"; gene_name "SFM1"; +chrXV SGD transcript 372798 373439 . - . transcript_id "YOR021C_id002"; gene_id "YOR021C"; gene_name "SFM1"; transcript_biotype "protein_coding"; +chrXV SGD exon 372798 373439 . - 0 transcript_id "YOR021C_id002"; gene_name "SFM1"; gene_id "YOR021C"; +chrXV SGD gene 373710 375857 . - . gene_id "YOR022C"; gene_biotype "protein_coding"; +chrXV SGD transcript 373710 375857 . - . transcript_id "YOR022C_id001"; gene_id "YOR022C"; gene_name "DDL1"; transcript_biotype "protein_coding"; +chrXV SGD exon 373710 375857 . - 0 transcript_id "YOR022C_id001"; gene_name "DDL1"; gene_id "YOR022C"; +chrXV SGD gene 375960 377882 . - . gene_id "YOR023C"; gene_biotype "protein_coding"; +chrXV SGD transcript 375960 377882 . - . transcript_id "YOR023C_id001"; gene_id "YOR023C"; gene_name "AHC1"; transcript_biotype "protein_coding"; +chrXV SGD exon 375960 377882 . - . transcript_id "YOR023C_id001"; gene_id "YOR023C"; gene_name "AHC1"; +chrXV SGD transcript 376012 377712 . - . transcript_id "YOR023C_id003"; gene_id "YOR023C"; gene_name "AHC1"; transcript_biotype "protein_coding"; +chrXV SGD exon 376012 377712 . - 0 transcript_id "YOR023C_id003"; gene_name "AHC1"; gene_id "YOR023C"; +chrXV SGD gene 377847 378170 . + . gene_id "YOR024W"; gene_biotype "protein_coding"; +chrXV SGD transcript 377847 378170 . + . transcript_id "YOR024W_mRNA"; gene_id "YOR024W"; transcript_biotype "protein_coding"; +chrXV SGD CDS 377847 378170 . + 0 transcript_id "YOR024W_mRNA"; gene_id "YOR024W"; +chrXV SGD gene 378143 379712 . + . gene_id "YOR025W"; gene_biotype "protein_coding"; +chrXV SGD transcript 378143 379712 . + . transcript_id "YOR025W_id002"; gene_id "YOR025W"; gene_name "HST3"; transcript_biotype "protein_coding"; +chrXV SGD exon 378143 379712 . + . transcript_id "YOR025W_id002"; gene_id "YOR025W"; gene_name "HST3"; +chrXV SGD transcript 378219 379562 . + . transcript_id "YOR025W_id001"; gene_id "YOR025W"; gene_name "HST3"; transcript_biotype "protein_coding"; +chrXV SGD exon 378219 379562 . + 0 transcript_id "YOR025W_id001"; gene_name "HST3"; gene_id "YOR025W"; +chrXV SGD gene 379756 381008 . + . gene_id "YOR026W"; gene_biotype "protein_coding"; +chrXV SGD transcript 379756 381008 . + . transcript_id "YOR026W_id005"; gene_id "YOR026W"; gene_name "BUB3"; transcript_biotype "protein_coding"; +chrXV SGD exon 379756 381008 . + . transcript_id "YOR026W_id005"; gene_id "YOR026W"; gene_name "BUB3"; +chrXV SGD transcript 379781 380806 . + . transcript_id "YOR026W_id001"; gene_id "YOR026W"; gene_name "BUB3"; transcript_biotype "protein_coding"; +chrXV SGD exon 379781 380806 . + 0 transcript_id "YOR026W_id001"; gene_name "BUB3"; gene_id "YOR026W"; +chrXV SGD gene 381018 383213 . + . gene_id "YOR027W"; gene_biotype "protein_coding"; +chrXV SGD transcript 381018 383213 . + . transcript_id "YOR027W_id001"; gene_id "YOR027W"; gene_name "STI1"; transcript_biotype "protein_coding"; +chrXV SGD exon 381018 383213 . + . transcript_id "YOR027W_id001"; gene_id "YOR027W"; gene_name "STI1"; +chrXV SGD transcript 381053 382822 . + . transcript_id "YOR027W_id002"; gene_id "YOR027W"; gene_name "STI1"; transcript_biotype "protein_coding"; +chrXV SGD exon 381053 382822 . + 0 transcript_id "YOR027W_id002"; gene_name "STI1"; gene_id "YOR027W"; +chrXV SGD gene 383208 384695 . - . gene_id "YOR028C"; gene_biotype "protein_coding"; +chrXV SGD transcript 383208 384695 . - . transcript_id "YOR028C_id001"; gene_id "YOR028C"; gene_name "CIN5"; transcript_biotype "protein_coding"; +chrXV SGD exon 383208 384695 . - . transcript_id "YOR028C_id001"; gene_id "YOR028C"; gene_name "CIN5"; +chrXV SGD transcript 383533 384420 . - . transcript_id "YOR028C_id002"; gene_id "YOR028C"; gene_name "CIN5"; transcript_biotype "protein_coding"; +chrXV SGD exon 383533 384420 . - 0 transcript_id "YOR028C_id002"; gene_name "CIN5"; gene_id "YOR028C"; +chrXV SGD gene 384600 384935 . + . gene_id "YOR029W"; gene_biotype "protein_coding"; +chrXV SGD transcript 384600 384935 . + . transcript_id "YOR029W_mRNA"; gene_id "YOR029W"; transcript_biotype "protein_coding"; +chrXV SGD CDS 384600 384935 . + 0 transcript_id "YOR029W_mRNA"; gene_id "YOR029W"; +chrXV SGD gene 386825 388684 . + . gene_id "YOR030W"; gene_biotype "protein_coding"; +chrXV SGD transcript 386825 388684 . + . transcript_id "YOR030W_id001"; gene_id "YOR030W"; gene_name "DFG16"; transcript_biotype "protein_coding"; +chrXV SGD exon 386825 388684 . + 0 transcript_id "YOR030W_id001"; gene_name "DFG16"; gene_id "YOR030W"; +chrXV SGD gene 389771 391075 . - . gene_id "YOR032C"; gene_biotype "protein_coding"; +chrXV SGD transcript 389771 391075 . - . transcript_id "YOR032C_id001"; gene_id "YOR032C"; gene_name "HMS1"; transcript_biotype "protein_coding"; +chrXV SGD exon 389771 391075 . - 0 transcript_id "YOR032C_id001"; gene_name "HMS1"; gene_id "YOR032C"; +chrXV SGD gene 390838 392534 . + . gene_id "YOR032W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 390838 392534 . + . transcript_id "YOR032W-A_id002"; gene_id "YOR032W-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 390838 392534 . + . transcript_id "YOR032W-A_id002"; gene_id "YOR032W-A"; +chrXV SGD transcript 392176 392376 . + . transcript_id "YOR032W-A_id001"; gene_id "YOR032W-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 392176 392376 . + 0 transcript_id "YOR032W-A_id001"; gene_id "YOR032W-A"; +chrXV SGD gene 392319 394652 . - . gene_id "YOR033C"; gene_biotype "protein_coding"; +chrXV SGD transcript 392319 394652 . - . transcript_id "YOR033C_id003"; gene_id "YOR033C"; gene_name "EXO1"; transcript_biotype "protein_coding"; +chrXV SGD exon 392319 394652 . - . transcript_id "YOR033C_id003"; gene_id "YOR033C"; gene_name "EXO1"; +chrXV SGD transcript 392416 394524 . - . transcript_id "YOR033C_id001"; gene_id "YOR033C"; gene_name "EXO1"; transcript_biotype "protein_coding"; +chrXV SGD exon 392416 394524 . - 0 transcript_id "YOR033C_id001"; gene_name "EXO1"; gene_id "YOR033C"; +chrXV SGD gene 394732 397324 . - . gene_id "YOR034C"; gene_biotype "protein_coding"; +chrXV SGD transcript 394732 397324 . - . transcript_id "YOR034C_id001"; gene_id "YOR034C"; gene_name "AKR2"; transcript_biotype "protein_coding"; +chrXV SGD exon 394732 397324 . - . transcript_id "YOR034C_id001"; gene_id "YOR034C"; gene_name "AKR2"; +chrXV SGD transcript 394837 397086 . - . transcript_id "YOR034C_id002"; gene_id "YOR034C"; gene_name "AKR2"; transcript_biotype "protein_coding"; +chrXV SGD exon 394837 397086 . - 0 transcript_id "YOR034C_id002"; gene_name "AKR2"; gene_id "YOR034C"; +chrXV SGD gene 397106 398174 . - . gene_id "YOR034C-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 397106 398174 . - . transcript_id "YOR034C-A_id003"; gene_id "YOR034C-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 397106 398174 . - . transcript_id "YOR034C-A_id003"; gene_id "YOR034C-A"; +chrXV SGD transcript 397426 397668 . - . transcript_id "YOR034C-A_id001"; gene_id "YOR034C-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 397426 397668 . - 0 transcript_id "YOR034C-A_id001"; gene_id "YOR034C-A"; +chrXV SGD gene 397735 400104 . - . gene_id "YOR035C"; gene_biotype "protein_coding"; +chrXV SGD transcript 397735 400104 . - . transcript_id "YOR035C_id001"; gene_id "YOR035C"; gene_name "SHE4"; transcript_biotype "protein_coding"; +chrXV SGD exon 397735 400104 . - 0 transcript_id "YOR035C_id001"; gene_name "SHE4"; gene_id "YOR035C"; +chrXV SGD gene 400291 401283 . + . gene_id "YOR036W"; gene_biotype "protein_coding"; +chrXV SGD transcript 400291 401283 . + . transcript_id "YOR036W_id001"; gene_id "YOR036W"; gene_name "PEP12"; transcript_biotype "protein_coding"; +chrXV SGD exon 400291 401283 . + . transcript_id "YOR036W_id001"; gene_id "YOR036W"; gene_name "PEP12"; +chrXV SGD transcript 400348 401214 . + . transcript_id "YOR036W_id002"; gene_id "YOR036W"; gene_name "PEP12"; transcript_biotype "protein_coding"; +chrXV SGD exon 400348 401214 . + 0 transcript_id "YOR036W_id002"; gene_name "PEP12"; gene_id "YOR036W"; +chrXV SGD gene 401555 402655 . + . gene_id "YOR037W"; gene_biotype "protein_coding"; +chrXV SGD transcript 401555 402655 . + . transcript_id "YOR037W_id001"; gene_id "YOR037W"; gene_name "CYC2"; transcript_biotype "protein_coding"; +chrXV SGD exon 401555 402655 . + 0 transcript_id "YOR037W_id001"; gene_name "CYC2"; gene_id "YOR037W"; +chrXV SGD gene 402654 405439 . - . gene_id "YOR038C"; gene_biotype "protein_coding"; +chrXV SGD transcript 402654 405439 . - . transcript_id "YOR038C_id002"; gene_id "YOR038C"; gene_name "HIR2"; transcript_biotype "protein_coding"; +chrXV SGD exon 402654 405439 . - . transcript_id "YOR038C_id002"; gene_id "YOR038C"; gene_name "HIR2"; +chrXV SGD transcript 402761 405388 . - . transcript_id "YOR038C_id001"; gene_id "YOR038C"; gene_name "HIR2"; transcript_biotype "protein_coding"; +chrXV SGD exon 402761 405388 . - 0 transcript_id "YOR038C_id001"; gene_name "HIR2"; gene_id "YOR038C"; +chrXV SGD gene 405609 406875 . + . gene_id "YOR039W"; gene_biotype "protein_coding"; +chrXV SGD transcript 405609 406875 . + . transcript_id "YOR039W_id004"; gene_id "YOR039W"; gene_name "CKB2"; transcript_biotype "protein_coding"; +chrXV SGD exon 405609 406875 . + . transcript_id "YOR039W_id004"; gene_id "YOR039W"; gene_name "CKB2"; +chrXV SGD transcript 405768 406544 . + . transcript_id "YOR039W_id001"; gene_id "YOR039W"; gene_name "CKB2"; transcript_biotype "protein_coding"; +chrXV SGD exon 405768 406544 . + 0 transcript_id "YOR039W_id001"; gene_name "CKB2"; gene_id "YOR039W"; +chrXV SGD gene 407064 407964 . + . gene_id "YOR040W"; gene_biotype "protein_coding"; +chrXV SGD transcript 407064 407921 . + . transcript_id "YOR040W_id001"; gene_id "YOR040W"; gene_name "GLO4"; transcript_biotype "protein_coding"; +chrXV SGD exon 407064 407921 . + 0 transcript_id "YOR040W_id001"; gene_name "GLO4"; gene_id "YOR040W"; +chrXV SGD transcript 407064 407964 . + . transcript_id "YOR040W_id010"; gene_id "YOR040W"; gene_name "GLO4"; transcript_biotype "protein_coding"; +chrXV SGD exon 407064 407964 . + . transcript_id "YOR040W_id010"; gene_id "YOR040W"; gene_name "GLO4"; +chrXV SGD gene 407948 408134 . - . gene_id "YNCO0014C"; gene_biotype "ncRNA"; +chrXV SGD transcript 407948 408134 . - . transcript_id "YNCO0014C_snoRNA"; gene_id "YNCO0014C"; gene_name "SNR9"; transcript_biotype "ncRNA"; +chrXV SGD exon 407948 408134 . - . transcript_id "YNCO0014C_snoRNA"; gene_name "SNR9"; gene_id "YNCO0014C"; +chrXV SGD gene 408314 409860 . + . gene_id "YOR042W"; gene_biotype "protein_coding"; +chrXV SGD transcript 408314 409860 . + . transcript_id "YOR042W_id001"; gene_id "YOR042W"; gene_name "CUE5"; transcript_biotype "protein_coding"; +chrXV SGD exon 408314 409860 . + . transcript_id "YOR042W_id001"; gene_id "YOR042W"; gene_name "CUE5"; +chrXV SGD gene 408358 408789 . - . gene_id "YOR041C"; gene_biotype "protein_coding"; +chrXV SGD transcript 408358 408789 . - . transcript_id "YOR041C_id001"; gene_id "YOR041C"; transcript_biotype "protein_coding"; +chrXV SGD exon 408358 408789 . - 0 transcript_id "YOR041C_id001"; gene_id "YOR041C"; +chrXV SGD transcript 408425 409660 . + . transcript_id "YOR042W_id002"; gene_id "YOR042W"; gene_name "CUE5"; transcript_biotype "protein_coding"; +chrXV SGD exon 408425 409660 . + 0 transcript_id "YOR042W_id002"; gene_name "CUE5"; gene_id "YOR042W"; +chrXV SGD gene 409765 409864 . - . gene_id "YNCO0015C"; gene_biotype "ncRNA"; +chrXV SGD transcript 409765 409864 . - . transcript_id "YNCO0015C_snoRNA"; gene_id "YNCO0015C"; gene_name "SNR62"; transcript_biotype "ncRNA"; +chrXV SGD exon 409765 409864 . - . transcript_id "YNCO0015C_snoRNA"; gene_name "SNR62"; gene_id "YNCO0015C"; +chrXV SGD gene 410158 412486 . + . gene_id "YOR043W"; gene_biotype "protein_coding"; +chrXV SGD transcript 410158 412486 . + . transcript_id "YOR043W_id001"; gene_id "YOR043W"; gene_name "WHI2"; transcript_biotype "protein_coding"; +chrXV SGD exon 410158 412486 . + . transcript_id "YOR043W_id001"; gene_id "YOR043W"; gene_name "WHI2"; +chrXV SGD transcript 410870 412330 . + . transcript_id "YOR043W_id002"; gene_id "YOR043W"; gene_name "WHI2"; transcript_biotype "protein_coding"; +chrXV SGD exon 410870 412330 . + 0 transcript_id "YOR043W_id002"; gene_name "WHI2"; gene_id "YOR043W"; +chrXV SGD gene 412708 413700 . + . gene_id "YOR044W"; gene_biotype "protein_coding"; +chrXV SGD transcript 412708 413700 . + . transcript_id "YOR044W_id002"; gene_id "YOR044W"; gene_name "IRC23"; transcript_biotype "protein_coding"; +chrXV SGD exon 412708 413700 . + . transcript_id "YOR044W_id002"; gene_id "YOR044W"; gene_name "IRC23"; +chrXV SGD transcript 413007 413480 . + . transcript_id "YOR044W_id001"; gene_id "YOR044W"; gene_name "IRC23"; transcript_biotype "protein_coding"; +chrXV SGD exon 413007 413480 . + 0 transcript_id "YOR044W_id001"; gene_name "IRC23"; gene_id "YOR044W"; +chrXV SGD gene 413804 414497 . + . gene_id "YOR045W"; gene_biotype "protein_coding"; +chrXV SGD transcript 413804 414497 . + . transcript_id "YOR045W_id001"; gene_id "YOR045W"; gene_name "TOM6"; transcript_biotype "protein_coding"; +chrXV SGD exon 413804 414497 . + . transcript_id "YOR045W_id001"; gene_id "YOR045W"; gene_name "TOM6"; +chrXV SGD transcript 413852 414037 . + . transcript_id "YOR045W_id002"; gene_id "YOR045W"; gene_name "TOM6"; transcript_biotype "protein_coding"; +chrXV SGD exon 413852 414037 . + 0 transcript_id "YOR045W_id002"; gene_name "TOM6"; gene_id "YOR045W"; +chrXV SGD gene 414114 415927 . - . gene_id "YOR046C"; gene_biotype "protein_coding"; +chrXV SGD transcript 414114 415927 . - . transcript_id "YOR046C_id001"; gene_id "YOR046C"; gene_name "DBP5"; transcript_biotype "protein_coding"; +chrXV SGD exon 414114 415927 . - . transcript_id "YOR046C_id001"; gene_id "YOR046C"; gene_name "DBP5"; +chrXV SGD transcript 414459 415907 . - . transcript_id "YOR046C_id002"; gene_id "YOR046C"; gene_name "DBP5"; transcript_biotype "protein_coding"; +chrXV SGD exon 414459 415907 . - 0 transcript_id "YOR046C_id002"; gene_name "DBP5"; gene_id "YOR046C"; +chrXV SGD gene 416183 418270 . - . gene_id "YOR047C"; gene_biotype "protein_coding"; +chrXV SGD transcript 416183 418270 . - . transcript_id "YOR047C_id001"; gene_id "YOR047C"; gene_name "STD1"; transcript_biotype "protein_coding"; +chrXV SGD exon 416183 418270 . - . transcript_id "YOR047C_id001"; gene_id "YOR047C"; gene_name "STD1"; +chrXV SGD transcript 416347 417681 . - . transcript_id "YOR047C_id003"; gene_id "YOR047C"; gene_name "STD1"; transcript_biotype "protein_coding"; +chrXV SGD exon 416347 417681 . - 0 transcript_id "YOR047C_id003"; gene_name "STD1"; gene_id "YOR047C"; +chrXV SGD gene 418399 421674 . - . gene_id "YOR048C"; gene_biotype "protein_coding"; +chrXV SGD transcript 418399 421674 . - . transcript_id "YOR048C_id003"; gene_id "YOR048C"; gene_name "RAT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 418399 421674 . - . transcript_id "YOR048C_id003"; gene_id "YOR048C"; gene_name "RAT1"; +chrXV SGD transcript 418630 421650 . - . transcript_id "YOR048C_id001"; gene_id "YOR048C"; gene_name "RAT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 418630 421650 . - 0 transcript_id "YOR048C_id001"; gene_name "RAT1"; gene_id "YOR048C"; +chrXV SGD gene 422450 423917 . - . gene_id "YOR049C"; gene_biotype "protein_coding"; +chrXV SGD transcript 422450 423917 . - . transcript_id "YOR049C_id005"; gene_id "YOR049C"; gene_name "RSB1"; transcript_biotype "protein_coding"; +chrXV SGD exon 422450 423917 . - . transcript_id "YOR049C_id005"; gene_id "YOR049C"; gene_name "RSB1"; +chrXV SGD transcript 422668 423732 . - . transcript_id "YOR049C_id001"; gene_id "YOR049C"; gene_name "RSB1"; transcript_biotype "protein_coding"; +chrXV SGD exon 422668 423732 . - 0 transcript_id "YOR049C_id001"; gene_name "RSB1"; gene_id "YOR049C"; +chrXV SGD gene 424001 425997 . - . gene_id "YOR050C"; gene_biotype "protein_coding"; +chrXV SGD transcript 424001 425997 . - . transcript_id "YOR050C_id001"; gene_id "YOR050C"; transcript_biotype "protein_coding"; +chrXV SGD exon 424001 425997 . - . transcript_id "YOR050C_id001"; gene_id "YOR050C"; +chrXV SGD transcript 424270 424617 . - . transcript_id "YOR050C_id002"; gene_id "YOR050C"; transcript_biotype "protein_coding"; +chrXV SGD exon 424270 424617 . - 0 transcript_id "YOR050C_id002"; gene_id "YOR050C"; +chrXV SGD gene 424667 426291 . - . gene_id "YOR051C"; gene_biotype "protein_coding"; +chrXV SGD transcript 424667 426291 . - . transcript_id "YOR051C_id001"; gene_id "YOR051C"; gene_name "ETT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 424667 426291 . - . transcript_id "YOR051C_id001"; gene_id "YOR051C"; gene_name "ETT1"; +chrXV SGD transcript 424846 426084 . - . transcript_id "YOR051C_id003"; gene_id "YOR051C"; gene_name "ETT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 424846 426084 . - 0 transcript_id "YOR051C_id003"; gene_name "ETT1"; gene_id "YOR051C"; +chrXV SGD gene 426497 427437 . - . gene_id "YOR052C"; gene_biotype "protein_coding"; +chrXV SGD transcript 426497 427437 . - . transcript_id "YOR052C_id002"; gene_id "YOR052C"; gene_name "TMC1"; transcript_biotype "protein_coding"; +chrXV SGD exon 426497 427437 . - . transcript_id "YOR052C_id002"; gene_id "YOR052C"; gene_name "TMC1"; +chrXV SGD transcript 426772 427224 . - . transcript_id "YOR052C_id001"; gene_id "YOR052C"; gene_name "TMC1"; transcript_biotype "protein_coding"; +chrXV SGD exon 426772 427224 . - 0 transcript_id "YOR052C_id001"; gene_name "TMC1"; gene_id "YOR052C"; +chrXV SGD gene 427749 430008 . - . gene_id "YOR054C"; gene_biotype "protein_coding"; +chrXV SGD transcript 427749 430008 . - . transcript_id "YOR054C_id002"; gene_id "YOR054C"; gene_name "VHS3"; transcript_biotype "protein_coding"; +chrXV SGD exon 427749 430008 . - . transcript_id "YOR054C_id002"; gene_id "YOR054C"; gene_name "VHS3"; +chrXV SGD gene 427817 428158 . + . gene_id "YOR053W"; gene_biotype "protein_coding"; +chrXV SGD transcript 427817 428158 . + . transcript_id "YOR053W_mRNA"; gene_id "YOR053W"; transcript_biotype "protein_coding"; +chrXV SGD CDS 427817 428158 . + 0 transcript_id "YOR053W_mRNA"; gene_id "YOR053W"; +chrXV SGD transcript 427833 429857 . - . transcript_id "YOR054C_id001"; gene_id "YOR054C"; gene_name "VHS3"; transcript_biotype "protein_coding"; +chrXV SGD exon 427833 429857 . - 0 transcript_id "YOR054C_id001"; gene_name "VHS3"; gene_id "YOR054C"; +chrXV SGD gene 429478 429912 . + . gene_id "YOR055W"; gene_biotype "protein_coding"; +chrXV SGD transcript 429478 429912 . + . transcript_id "YOR055W_mRNA"; gene_id "YOR055W"; transcript_biotype "protein_coding"; +chrXV SGD CDS 429478 429912 . + 0 transcript_id "YOR055W_mRNA"; gene_id "YOR055W"; +chrXV SGD gene 430196 431751 . - . gene_id "YOR056C"; gene_biotype "protein_coding"; +chrXV SGD transcript 430196 431751 . - . transcript_id "YOR056C_id001"; gene_id "YOR056C"; gene_name "NOB1"; transcript_biotype "protein_coding"; +chrXV SGD exon 430196 431751 . - . transcript_id "YOR056C_id001"; gene_id "YOR056C"; gene_name "NOB1"; +chrXV SGD transcript 430247 431626 . - . transcript_id "YOR056C_id002"; gene_id "YOR056C"; gene_name "NOB1"; transcript_biotype "protein_coding"; +chrXV SGD exon 430247 431626 . - 0 transcript_id "YOR056C_id002"; gene_name "NOB1"; gene_id "YOR056C"; +chrXV SGD gene 432106 433454 . + . gene_id "YOR057W"; gene_biotype "protein_coding"; +chrXV SGD transcript 432106 433454 . + . transcript_id "YOR057W_id006"; gene_id "YOR057W"; gene_name "SGT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 432106 433454 . + . transcript_id "YOR057W_id006"; gene_id "YOR057W"; gene_name "SGT1"; +chrXV SGD transcript 432186 433373 . + . transcript_id "YOR057W_id001"; gene_id "YOR057W"; gene_name "SGT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 432186 433373 . + 0 transcript_id "YOR057W_id001"; gene_name "SGT1"; gene_id "YOR057W"; +chrXV SGD gene 433427 436480 . - . gene_id "YOR058C"; gene_biotype "protein_coding"; +chrXV SGD transcript 433427 436480 . - . transcript_id "YOR058C_id002"; gene_id "YOR058C"; gene_name "ASE1"; transcript_biotype "protein_coding"; +chrXV SGD exon 433427 436480 . - . transcript_id "YOR058C_id002"; gene_id "YOR058C"; gene_name "ASE1"; +chrXV SGD transcript 433688 436345 . - . transcript_id "YOR058C_id001"; gene_id "YOR058C"; gene_name "ASE1"; transcript_biotype "protein_coding"; +chrXV SGD exon 433688 436345 . - 0 transcript_id "YOR058C_id001"; gene_name "ASE1"; gene_id "YOR058C"; +chrXV SGD gene 438643 438738 . + . gene_id "YNCO0016W"; gene_biotype "ncRNA"; +chrXV SGD transcript 438643 438738 . + . transcript_id "YNCO0016W_tRNA"; gene_id "YNCO0016W"; transcript_biotype "ncRNA"; +chrXV SGD exon 438643 438679 . + . transcript_id "YNCO0016W_tRNA"; gene_id "YNCO0016W"; +chrXV SGD exon 438703 438738 . + . transcript_id "YNCO0016W_tRNA"; gene_id "YNCO0016W"; +chrXV SGD gene 438851 440291 . - . gene_id "YOR059C"; gene_biotype "protein_coding"; +chrXV SGD transcript 438851 440291 . - . transcript_id "YOR059C_id007"; gene_id "YOR059C"; gene_name "LPL1"; transcript_biotype "protein_coding"; +chrXV SGD exon 438851 440291 . - . transcript_id "YOR059C_id007"; gene_id "YOR059C"; gene_name "LPL1"; +chrXV SGD transcript 438906 440258 . - . transcript_id "YOR059C_id001"; gene_id "YOR059C"; gene_name "LPL1"; transcript_biotype "protein_coding"; +chrXV SGD exon 438906 440258 . - 0 transcript_id "YOR059C_id001"; gene_name "LPL1"; gene_id "YOR059C"; +chrXV SGD gene 439341 441190 . - . gene_id "YOR060C"; gene_biotype "protein_coding"; +chrXV SGD transcript 439341 441190 . - . transcript_id "YOR060C_id002"; gene_id "YOR060C"; gene_name "SLD7"; transcript_biotype "protein_coding"; +chrXV SGD exon 439341 441190 . - . transcript_id "YOR060C_id002"; gene_id "YOR060C"; gene_name "SLD7"; +chrXV SGD transcript 440390 441163 . - . transcript_id "YOR060C_id001"; gene_id "YOR060C"; gene_name "SLD7"; transcript_biotype "protein_coding"; +chrXV SGD exon 440390 441163 . - 0 transcript_id "YOR060C_id001"; gene_name "SLD7"; gene_id "YOR060C"; +chrXV SGD gene 441371 442803 . + . gene_id "YOR061W"; gene_biotype "protein_coding"; +chrXV SGD transcript 441371 442803 . + . transcript_id "YOR061W_id001"; gene_id "YOR061W"; gene_name "CKA2"; transcript_biotype "protein_coding"; +chrXV SGD exon 441371 442803 . + . transcript_id "YOR061W_id001"; gene_id "YOR061W"; gene_name "CKA2"; +chrXV SGD transcript 441534 442553 . + . transcript_id "YOR061W_id005"; gene_id "YOR061W"; gene_name "CKA2"; transcript_biotype "protein_coding"; +chrXV SGD exon 441534 442553 . + 0 transcript_id "YOR061W_id005"; gene_name "CKA2"; gene_id "YOR061W"; +chrXV SGD gene 442648 444209 . - . gene_id "YOR062C"; gene_biotype "protein_coding"; +chrXV SGD transcript 442648 444209 . - . transcript_id "YOR062C_id001"; gene_id "YOR062C"; transcript_biotype "protein_coding"; +chrXV SGD exon 442648 444209 . - . transcript_id "YOR062C_id001"; gene_id "YOR062C"; +chrXV SGD transcript 442725 443531 . - . transcript_id "YOR062C_id003"; gene_id "YOR062C"; transcript_biotype "protein_coding"; +chrXV SGD exon 442725 443531 . - 0 transcript_id "YOR062C_id003"; gene_id "YOR062C"; +chrXV SGD gene 444105 445967 . + . gene_id "YOR063W"; gene_biotype "protein_coding"; +chrXV SGD transcript 444105 445967 . + . transcript_id "YOR063W_id001"; gene_id "YOR063W"; gene_name "RPL3"; transcript_biotype "protein_coding"; +chrXV SGD exon 444105 445967 . + . transcript_id "YOR063W_id001"; gene_id "YOR063W"; gene_name "RPL3"; +chrXV SGD transcript 444686 445849 . + . transcript_id "YOR063W_id002"; gene_id "YOR063W"; gene_name "RPL3"; transcript_biotype "protein_coding"; +chrXV SGD exon 444686 445849 . + 0 transcript_id "YOR063W_id002"; gene_name "RPL3"; gene_id "YOR063W"; +chrXV SGD gene 445965 446796 . - . gene_id "YOR064C"; gene_biotype "protein_coding"; +chrXV SGD transcript 445965 446796 . - . transcript_id "YOR064C_id006"; gene_id "YOR064C"; gene_name "YNG1"; transcript_biotype "protein_coding"; +chrXV SGD exon 445965 446796 . - . transcript_id "YOR064C_id006"; gene_id "YOR064C"; gene_name "YNG1"; +chrXV SGD transcript 446079 446738 . - . transcript_id "YOR064C_id001"; gene_id "YOR064C"; gene_name "YNG1"; transcript_biotype "protein_coding"; +chrXV SGD exon 446079 446738 . - 0 transcript_id "YOR064C_id001"; gene_name "YNG1"; gene_id "YOR064C"; +chrXV SGD gene 447084 448898 . + . gene_id "YOR065W"; gene_biotype "protein_coding"; +chrXV SGD transcript 447084 448898 . + . transcript_id "YOR065W_id002"; gene_id "YOR065W"; gene_name "CYT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 447084 448898 . + . transcript_id "YOR065W_id002"; gene_id "YOR065W"; gene_name "CYT1"; +chrXV SGD transcript 447439 448368 . + . transcript_id "YOR065W_id001"; gene_id "YOR065W"; gene_name "CYT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 447439 448368 . + 0 transcript_id "YOR065W_id001"; gene_name "CYT1"; gene_id "YOR065W"; +chrXV SGD gene 449420 451599 . + . gene_id "YOR066W"; gene_biotype "protein_coding"; +chrXV SGD transcript 449420 451599 . + . transcript_id "YOR066W_id002"; gene_id "YOR066W"; gene_name "MSA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 449420 451599 . + . transcript_id "YOR066W_id002"; gene_id "YOR066W"; gene_name "MSA1"; +chrXV SGD transcript 449436 451325 . + . transcript_id "YOR066W_id001"; gene_id "YOR066W"; gene_name "MSA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 449436 451325 . + 0 transcript_id "YOR066W_id001"; gene_name "MSA1"; gene_id "YOR066W"; +chrXV SGD gene 451644 453567 . - . gene_id "YOR067C"; gene_biotype "protein_coding"; +chrXV SGD transcript 451644 453567 . - . transcript_id "YOR067C_id001"; gene_id "YOR067C"; gene_name "ALG8"; transcript_biotype "protein_coding"; +chrXV SGD exon 451644 453567 . - . transcript_id "YOR067C_id001"; gene_id "YOR067C"; gene_name "ALG8"; +chrXV SGD transcript 451729 453462 . - . transcript_id "YOR067C_id003"; gene_id "YOR067C"; gene_name "ALG8"; transcript_biotype "protein_coding"; +chrXV SGD exon 451729 453462 . - 0 transcript_id "YOR067C_id003"; gene_name "ALG8"; gene_id "YOR067C"; +chrXV SGD gene 453693 455987 . + . gene_id "YOR069W"; gene_biotype "protein_coding"; +chrXV SGD transcript 453693 455987 . + . transcript_id "YOR069W_id001"; gene_id "YOR069W"; gene_name "VPS5"; transcript_biotype "protein_coding"; +chrXV SGD exon 453693 455987 . + . transcript_id "YOR069W_id001"; gene_id "YOR069W"; gene_name "VPS5"; +chrXV SGD transcript 453768 455795 . + . transcript_id "YOR069W_id002"; gene_id "YOR069W"; gene_name "VPS5"; transcript_biotype "protein_coding"; +chrXV SGD exon 453768 455795 . + 0 transcript_id "YOR069W_id002"; gene_name "VPS5"; gene_id "YOR069W"; +chrXV SGD gene 453869 454213 . - . gene_id "YOR068C"; gene_biotype "protein_coding"; +chrXV SGD transcript 453869 454213 . - . transcript_id "YOR068C_mRNA"; gene_id "YOR068C"; gene_name "VAM10"; transcript_biotype "protein_coding"; +chrXV SGD CDS 453869 454213 . - 0 transcript_id "YOR068C_mRNA"; gene_name "VAM10"; gene_id "YOR068C"; +chrXV SGD gene 455779 457965 . - . gene_id "YOR070C"; gene_biotype "protein_coding"; +chrXV SGD transcript 455779 457965 . - . transcript_id "YOR070C_id004"; gene_id "YOR070C"; gene_name "GYP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 455779 457965 . - . transcript_id "YOR070C_id004"; gene_id "YOR070C"; gene_name "GYP1"; +chrXV SGD transcript 455907 457820 . - . transcript_id "YOR070C_id001"; gene_id "YOR070C"; gene_name "GYP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 455907 457820 . - 0 transcript_id "YOR070C_id001"; gene_name "GYP1"; gene_id "YOR070C"; +chrXV SGD gene 459253 461401 . - . gene_id "YOR071C"; gene_biotype "protein_coding"; +chrXV SGD transcript 459253 461401 . - . transcript_id "YOR071C_id004"; gene_id "YOR071C"; gene_name "NRT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 459253 461401 . - . transcript_id "YOR071C_id004"; gene_id "YOR071C"; gene_name "NRT1"; +chrXV SGD transcript 459480 461276 . - . transcript_id "YOR071C_id001"; gene_id "YOR071C"; gene_name "NRT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 459480 461276 . - 0 transcript_id "YOR071C_id001"; gene_name "NRT1"; gene_id "YOR071C"; +chrXV SGD gene 461502 461816 . + . gene_id "YOR072W"; gene_biotype "protein_coding"; +chrXV SGD transcript 461502 461816 . + . transcript_id "YOR072W_mRNA"; gene_id "YOR072W"; transcript_biotype "protein_coding"; +chrXV SGD CDS 461502 461816 . + 0 transcript_id "YOR072W_mRNA"; gene_id "YOR072W"; +chrXV SGD gene 461791 462039 . + . gene_id "YOR072W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 461791 462039 . + . transcript_id "YOR072W-A_mRNA"; gene_id "YOR072W-A"; transcript_biotype "protein_coding"; +chrXV SGD CDS 461791 462039 . + 0 transcript_id "YOR072W-A_mRNA"; gene_id "YOR072W-A"; +chrXV SGD gene 464450 464551 . + . gene_id "YNCO0017W"; gene_biotype "ncRNA"; +chrXV SGD transcript 464450 464551 . + . transcript_id "YNCO0017W_tRNA"; gene_id "YNCO0017W"; gene_name "SUF11"; transcript_biotype "ncRNA"; +chrXV SGD exon 464450 464485 . + . transcript_id "YNCO0017W_tRNA"; gene_name "SUF11"; gene_id "YNCO0017W"; +chrXV SGD exon 464516 464551 . + . transcript_id "YNCO0017W_tRNA"; gene_name "SUF11"; gene_id "YNCO0017W"; +chrXV SGD gene 464469 464630 . + . gene_id "YOR072W-B"; gene_biotype "protein_coding"; +chrXV SGD transcript 464469 464630 . + . transcript_id "YOR072W-B_mRNA"; gene_id "YOR072W-B"; transcript_biotype "protein_coding"; +chrXV SGD CDS 464469 464630 . + 0 transcript_id "YOR072W-B_mRNA"; gene_id "YOR072W-B"; +chrXV SGD gene 464694 466662 . + . gene_id "YOR073W"; gene_biotype "protein_coding"; +chrXV SGD transcript 464694 466662 . + . transcript_id "YOR073W_id001"; gene_id "YOR073W"; gene_name "SGO1"; transcript_biotype "protein_coding"; +chrXV SGD exon 464694 466662 . + . transcript_id "YOR073W_id001"; gene_id "YOR073W"; gene_name "SGO1"; +chrXV SGD transcript 464771 466543 . + . transcript_id "YOR073W_id002"; gene_id "YOR073W"; gene_name "SGO1"; transcript_biotype "protein_coding"; +chrXV SGD exon 464771 466543 . + 0 transcript_id "YOR073W_id002"; gene_name "SGO1"; gene_id "YOR073W"; +chrXV SGD gene 466569 467988 . - . gene_id "YOR074C"; gene_biotype "protein_coding"; +chrXV SGD transcript 466569 467988 . - . transcript_id "YOR074C_id001"; gene_id "YOR074C"; gene_name "CDC21"; transcript_biotype "protein_coding"; +chrXV SGD exon 466569 467988 . - . transcript_id "YOR074C_id001"; gene_id "YOR074C"; gene_name "CDC21"; +chrXV SGD transcript 466675 467589 . - . transcript_id "YOR074C_id002"; gene_id "YOR074C"; gene_name "CDC21"; transcript_biotype "protein_coding"; +chrXV SGD exon 466675 467589 . - 0 transcript_id "YOR074C_id002"; gene_name "CDC21"; gene_id "YOR074C"; +chrXV SGD gene 467390 467623 . + . gene_id "YOR073W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 467390 467623 . + . transcript_id "YOR073W-A_mRNA"; gene_id "YOR073W-A"; transcript_biotype "protein_coding"; +chrXV SGD CDS 467390 467623 . + 0 transcript_id "YOR073W-A_mRNA"; gene_id "YOR073W-A"; +chrXV SGD gene 468166 469310 . + . gene_id "YOR075W"; gene_biotype "protein_coding"; +chrXV SGD transcript 468166 469310 . + . transcript_id "YOR075W_id003"; gene_id "YOR075W"; gene_name "UFE1"; transcript_biotype "protein_coding"; +chrXV SGD exon 468166 469310 . + . transcript_id "YOR075W_id003"; gene_id "YOR075W"; gene_name "UFE1"; +chrXV SGD transcript 468212 469252 . + . transcript_id "YOR075W_id001"; gene_id "YOR075W"; gene_name "UFE1"; transcript_biotype "protein_coding"; +chrXV SGD exon 468212 469252 . + 0 transcript_id "YOR075W_id001"; gene_name "UFE1"; gene_id "YOR075W"; +chrXV SGD gene 469294 471633 . - . gene_id "YOR076C"; gene_biotype "protein_coding"; +chrXV SGD transcript 469294 471633 . - . transcript_id "YOR076C_id002"; gene_id "YOR076C"; gene_name "SKI7"; transcript_biotype "protein_coding"; +chrXV SGD exon 469294 471633 . - . transcript_id "YOR076C_id002"; gene_id "YOR076C"; gene_name "SKI7"; +chrXV SGD transcript 469377 471620 . - . transcript_id "YOR076C_id001"; gene_id "YOR076C"; gene_name "SKI7"; transcript_biotype "protein_coding"; +chrXV SGD exon 469377 471620 . - 0 transcript_id "YOR076C_id001"; gene_name "SKI7"; gene_id "YOR076C"; +chrXV SGD gene 471861 473160 . + . gene_id "YOR077W"; gene_biotype "protein_coding"; +chrXV SGD transcript 471861 473160 . + . transcript_id "YOR077W_id001"; gene_id "YOR077W"; gene_name "RTS2"; transcript_biotype "protein_coding"; +chrXV SGD exon 471861 473160 . + . transcript_id "YOR077W_id001"; gene_id "YOR077W"; gene_name "RTS2"; +chrXV SGD transcript 471899 472597 . + . transcript_id "YOR077W_id004"; gene_id "YOR077W"; gene_name "RTS2"; transcript_biotype "protein_coding"; +chrXV SGD exon 471899 472597 . + 0 transcript_id "YOR077W_id004"; gene_name "RTS2"; gene_id "YOR077W"; +chrXV SGD gene 471904 473408 . + . gene_id "YOR078W"; gene_biotype "protein_coding"; +chrXV SGD transcript 471904 473408 . + . transcript_id "YOR078W_id001"; gene_id "YOR078W"; gene_name "BUD21"; transcript_biotype "protein_coding"; +chrXV SGD exon 471904 473408 . + . transcript_id "YOR078W_id001"; gene_id "YOR078W"; gene_name "BUD21"; +chrXV SGD transcript 472725 473369 . + . transcript_id "YOR078W_id003"; gene_id "YOR078W"; gene_name "BUD21"; transcript_biotype "protein_coding"; +chrXV SGD exon 472725 473369 . + 0 transcript_id "YOR078W_id003"; gene_name "BUD21"; gene_id "YOR078W"; +chrXV SGD gene 473399 474661 . - . gene_id "YOR079C"; gene_biotype "protein_coding"; +chrXV SGD transcript 473399 474661 . - . transcript_id "YOR079C_id002"; gene_id "YOR079C"; gene_name "ATX2"; transcript_biotype "protein_coding"; +chrXV SGD exon 473399 474661 . - . transcript_id "YOR079C_id002"; gene_id "YOR079C"; gene_name "ATX2"; +chrXV SGD transcript 473475 474416 . - . transcript_id "YOR079C_id001"; gene_id "YOR079C"; gene_name "ATX2"; transcript_biotype "protein_coding"; +chrXV SGD exon 473475 474416 . - 0 transcript_id "YOR079C_id001"; gene_name "ATX2"; gene_id "YOR079C"; +chrXV SGD gene 474594 476792 . + . gene_id "YOR080W"; gene_biotype "protein_coding"; +chrXV SGD transcript 474594 476792 . + . transcript_id "YOR080W_id001"; gene_id "YOR080W"; gene_name "DIA2"; transcript_biotype "protein_coding"; +chrXV SGD exon 474594 476792 . + 0 transcript_id "YOR080W_id001"; gene_name "DIA2"; gene_id "YOR080W"; +chrXV SGD gene 476812 479236 . - . gene_id "YOR081C"; gene_biotype "protein_coding"; +chrXV SGD transcript 476812 479236 . - . transcript_id "YOR081C_id003"; gene_id "YOR081C"; gene_name "TGL5"; transcript_biotype "protein_coding"; +chrXV SGD exon 476812 479236 . - . transcript_id "YOR081C_id003"; gene_id "YOR081C"; gene_name "TGL5"; +chrXV SGD transcript 476939 479188 . - . transcript_id "YOR081C_id001"; gene_id "YOR081C"; gene_name "TGL5"; transcript_biotype "protein_coding"; +chrXV SGD exon 476939 479188 . - 0 transcript_id "YOR081C_id001"; gene_name "TGL5"; gene_id "YOR081C"; +chrXV SGD gene 479296 479637 . - . gene_id "YOR082C"; gene_biotype "protein_coding"; +chrXV SGD transcript 479296 479637 . - . transcript_id "YOR082C_mRNA"; gene_id "YOR082C"; transcript_biotype "protein_coding"; +chrXV SGD CDS 479296 479637 . - 0 transcript_id "YOR082C_mRNA"; gene_id "YOR082C"; +chrXV SGD gene 479498 481261 . + . gene_id "YOR083W"; gene_biotype "protein_coding"; +chrXV SGD transcript 479498 481261 . + . transcript_id "YOR083W_id005"; gene_id "YOR083W"; gene_name "WHI5"; transcript_biotype "protein_coding"; +chrXV SGD exon 479498 481261 . + . transcript_id "YOR083W_id005"; gene_id "YOR083W"; gene_name "WHI5"; +chrXV SGD transcript 479533 480420 . + . transcript_id "YOR083W_id001"; gene_id "YOR083W"; gene_name "WHI5"; transcript_biotype "protein_coding"; +chrXV SGD exon 479533 480420 . + 0 transcript_id "YOR083W_id001"; gene_name "WHI5"; gene_id "YOR083W"; +chrXV SGD gene 479665 481819 . + . gene_id "YOR084W"; gene_biotype "protein_coding"; +chrXV SGD transcript 479665 481819 . + . transcript_id "YOR084W_id001"; gene_id "YOR084W"; gene_name "LPX1"; transcript_biotype "protein_coding"; +chrXV SGD exon 479665 481819 . + . transcript_id "YOR084W_id001"; gene_id "YOR084W"; gene_name "LPX1"; +chrXV SGD transcript 480587 481750 . + . transcript_id "YOR084W_id002"; gene_id "YOR084W"; gene_name "LPX1"; transcript_biotype "protein_coding"; +chrXV SGD exon 480587 481750 . + 0 transcript_id "YOR084W_id002"; gene_name "LPX1"; gene_id "YOR084W"; +chrXV SGD gene 481918 483192 . + . gene_id "YOR085W"; gene_biotype "protein_coding"; +chrXV SGD transcript 481918 483192 . + . transcript_id "YOR085W_id004"; gene_id "YOR085W"; gene_name "OST3"; transcript_biotype "protein_coding"; +chrXV SGD exon 481918 483192 . + . transcript_id "YOR085W_id004"; gene_id "YOR085W"; gene_name "OST3"; +chrXV SGD transcript 482033 483085 . + . transcript_id "YOR085W_id001"; gene_id "YOR085W"; gene_name "OST3"; transcript_biotype "protein_coding"; +chrXV SGD exon 482033 483085 . + 0 transcript_id "YOR085W_id001"; gene_name "OST3"; gene_id "YOR085W"; +chrXV SGD gene 483107 486956 . - . gene_id "YOR086C"; gene_biotype "protein_coding"; +chrXV SGD transcript 483107 486956 . - . transcript_id "YOR086C_id002"; gene_id "YOR086C"; gene_name "TCB1"; transcript_biotype "protein_coding"; +chrXV SGD exon 483107 486956 . - . transcript_id "YOR086C_id002"; gene_id "YOR086C"; gene_name "TCB1"; +chrXV SGD transcript 483219 486779 . - . transcript_id "YOR086C_id001"; gene_id "YOR086C"; gene_name "TCB1"; transcript_biotype "protein_coding"; +chrXV SGD exon 483219 486779 . - 0 transcript_id "YOR086C_id001"; gene_name "TCB1"; gene_id "YOR086C"; +chrXV SGD gene 487439 487512 . + . gene_id "YNCO0018W"; gene_biotype "ncRNA"; +chrXV SGD transcript 487439 487512 . + . transcript_id "YNCO0018W_tRNA"; gene_id "YNCO0018W"; transcript_biotype "ncRNA"; +chrXV SGD exon 487439 487512 . + . transcript_id "YNCO0018W_tRNA"; gene_id "YNCO0018W"; +chrXV SGD gene 487626 489857 . + . gene_id "YOR087W"; gene_biotype "protein_coding"; +chrXV SGD transcript 487626 489857 . + . transcript_id "YOR087W_id003"; gene_id "YOR087W"; gene_name "YVC1"; transcript_biotype "protein_coding"; +chrXV SGD exon 487626 489857 . + . transcript_id "YOR087W_id003"; gene_id "YOR087W"; gene_name "YVC1"; +chrXV SGD transcript 487707 489734 . + . transcript_id "YOR087W_id001"; gene_id "YOR087W"; gene_name "YVC1"; transcript_biotype "protein_coding"; +chrXV SGD exon 487707 489734 . + 0 transcript_id "YOR087W_id001"; gene_name "YVC1"; gene_id "YOR087W"; +chrXV SGD gene 489995 491539 . - . gene_id "YOR089C"; gene_biotype "protein_coding"; +chrXV SGD transcript 489995 491539 . - . transcript_id "YOR089C_id002"; gene_id "YOR089C"; gene_name "VPS21"; transcript_biotype "protein_coding"; +chrXV SGD exon 489995 491539 . - . transcript_id "YOR089C_id002"; gene_id "YOR089C"; gene_name "VPS21"; +chrXV SGD transcript 490196 490828 . - . transcript_id "YOR089C_id001"; gene_id "YOR089C"; gene_name "VPS21"; transcript_biotype "protein_coding"; +chrXV SGD exon 490196 490828 . - 0 transcript_id "YOR089C_id001"; gene_name "VPS21"; gene_id "YOR089C"; +chrXV SGD gene 491123 492841 . - . gene_id "YOR090C"; gene_biotype "protein_coding"; +chrXV SGD transcript 491123 492841 . - . transcript_id "YOR090C_id001"; gene_id "YOR090C"; gene_name "PTC5"; transcript_biotype "protein_coding"; +chrXV SGD exon 491123 492841 . - 0 transcript_id "YOR090C_id001"; gene_name "PTC5"; gene_id "YOR090C"; +chrXV SGD gene 493366 494928 . + . gene_id "YOR091W"; gene_biotype "protein_coding"; +chrXV SGD transcript 493366 494928 . + . transcript_id "YOR091W_id002"; gene_id "YOR091W"; gene_name "TMA46"; transcript_biotype "protein_coding"; +chrXV SGD exon 493366 494928 . + . transcript_id "YOR091W_id002"; gene_id "YOR091W"; gene_name "TMA46"; +chrXV SGD transcript 493433 494470 . + . transcript_id "YOR091W_id001"; gene_id "YOR091W"; gene_name "TMA46"; transcript_biotype "protein_coding"; +chrXV SGD exon 493433 494470 . + 0 transcript_id "YOR091W_id001"; gene_name "TMA46"; gene_id "YOR091W"; +chrXV SGD gene 494889 497170 . + . gene_id "YOR092W"; gene_biotype "protein_coding"; +chrXV SGD transcript 494889 497170 . + . transcript_id "YOR092W_id002"; gene_id "YOR092W"; gene_name "ECM3"; transcript_biotype "protein_coding"; +chrXV SGD exon 494889 497170 . + . transcript_id "YOR092W_id002"; gene_id "YOR092W"; gene_name "ECM3"; +chrXV SGD transcript 495127 496968 . + . transcript_id "YOR092W_id001"; gene_id "YOR092W"; gene_name "ECM3"; transcript_biotype "protein_coding"; +chrXV SGD exon 495127 496968 . + 0 transcript_id "YOR092W_id001"; gene_name "ECM3"; gene_id "YOR092W"; +chrXV SGD gene 497506 502452 . - . gene_id "YOR093C"; gene_biotype "protein_coding"; +chrXV SGD transcript 497506 502452 . - . transcript_id "YOR093C_mRNA"; gene_id "YOR093C"; gene_name "CMR2"; transcript_biotype "protein_coding"; +chrXV SGD CDS 497506 502452 . - 0 transcript_id "YOR093C_mRNA"; gene_name "CMR2"; gene_id "YOR093C"; +chrXV SGD gene 502697 503714 . + . gene_id "YOR094W"; gene_biotype "protein_coding"; +chrXV SGD transcript 502697 503714 . + . transcript_id "YOR094W_id002"; gene_id "YOR094W"; gene_name "ARF3"; transcript_biotype "protein_coding"; +chrXV SGD exon 502697 503714 . + . transcript_id "YOR094W_id002"; gene_id "YOR094W"; gene_name "ARF3"; +chrXV SGD transcript 502795 503346 . + . transcript_id "YOR094W_id001"; gene_id "YOR094W"; gene_name "ARF3"; transcript_biotype "protein_coding"; +chrXV SGD exon 502795 503346 . + 0 transcript_id "YOR094W_id001"; gene_name "ARF3"; gene_id "YOR094W"; +chrXV SGD gene 502896 504398 . - . gene_id "YOR095C"; gene_biotype "protein_coding"; +chrXV SGD transcript 502896 504398 . - . transcript_id "YOR095C_id006"; gene_id "YOR095C"; gene_name "RKI1"; transcript_biotype "protein_coding"; +chrXV SGD exon 502896 504398 . - . transcript_id "YOR095C_id006"; gene_id "YOR095C"; gene_name "RKI1"; +chrXV SGD transcript 503552 504328 . - . transcript_id "YOR095C_id001"; gene_id "YOR095C"; gene_name "RKI1"; transcript_biotype "protein_coding"; +chrXV SGD exon 503552 504328 . - 0 transcript_id "YOR095C_id001"; gene_name "RKI1"; gene_id "YOR095C"; +chrXV SGD gene 505026 506857 . + . gene_id "YOR096W"; gene_biotype "protein_coding"; +chrXV SGD transcript 505026 506857 . + . transcript_id "YOR096W_id002"; gene_id "YOR096W"; gene_name "RPS7A"; transcript_biotype "protein_coding"; +chrXV SGD exon 505026 506857 . + . transcript_id "YOR096W_id002"; gene_id "YOR096W"; gene_name "RPS7A"; +chrXV SGD transcript 505794 506767 . + . transcript_id "YOR096W_id001"; gene_id "YOR096W"; gene_name "RPS7A"; transcript_biotype "protein_coding"; +chrXV SGD exon 505794 505937 . + 0 transcript_id "YOR096W_id001"; gene_name "RPS7A"; gene_id "YOR096W"; +chrXV SGD exon 506339 506767 . + 0 transcript_id "YOR096W_id001"; gene_name "RPS7A"; gene_id "YOR096W"; +chrXV SGD gene 506726 507621 . - . gene_id "YOR097C"; gene_biotype "protein_coding"; +chrXV SGD transcript 506726 507621 . - . transcript_id "YOR097C_id002"; gene_id "YOR097C"; transcript_biotype "protein_coding"; +chrXV SGD exon 506726 507621 . - . transcript_id "YOR097C_id002"; gene_id "YOR097C"; +chrXV SGD transcript 506978 507505 . - . transcript_id "YOR097C_id001"; gene_id "YOR097C"; transcript_biotype "protein_coding"; +chrXV SGD exon 506978 507505 . - 0 transcript_id "YOR097C_id001"; gene_id "YOR097C"; +chrXV SGD gene 507826 511230 . - . gene_id "YOR098C"; gene_biotype "protein_coding"; +chrXV SGD transcript 507826 511230 . - . transcript_id "YOR098C_id002"; gene_id "YOR098C"; gene_name "NUP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 507826 511230 . - . transcript_id "YOR098C_id002"; gene_id "YOR098C"; gene_name "NUP1"; +chrXV SGD transcript 507948 511178 . - . transcript_id "YOR098C_id001"; gene_id "YOR098C"; gene_name "NUP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 507948 511178 . - 0 transcript_id "YOR098C_id001"; gene_name "NUP1"; gene_id "YOR098C"; +chrXV SGD gene 511620 513101 . + . gene_id "YOR099W"; gene_biotype "protein_coding"; +chrXV SGD transcript 511620 513101 . + . transcript_id "YOR099W_id004"; gene_id "YOR099W"; gene_name "KTR1"; transcript_biotype "protein_coding"; +chrXV SGD exon 511620 513101 . + . transcript_id "YOR099W_id004"; gene_id "YOR099W"; gene_name "KTR1"; +chrXV SGD transcript 511825 513006 . + . transcript_id "YOR099W_id001"; gene_id "YOR099W"; gene_name "KTR1"; transcript_biotype "protein_coding"; +chrXV SGD exon 511825 513006 . + 0 transcript_id "YOR099W_id001"; gene_name "KTR1"; gene_id "YOR099W"; +chrXV SGD gene 513036 514427 . - . gene_id "YOR100C"; gene_biotype "protein_coding"; +chrXV SGD transcript 513036 514427 . - . transcript_id "YOR100C_id003"; gene_id "YOR100C"; gene_name "CRC1"; transcript_biotype "protein_coding"; +chrXV SGD exon 513036 514427 . - . transcript_id "YOR100C_id003"; gene_id "YOR100C"; gene_name "CRC1"; +chrXV SGD transcript 513295 514278 . - . transcript_id "YOR100C_id001"; gene_id "YOR100C"; gene_name "CRC1"; transcript_biotype "protein_coding"; +chrXV SGD exon 513295 514278 . - 0 transcript_id "YOR100C_id001"; gene_name "CRC1"; gene_id "YOR100C"; +chrXV SGD gene 515162 516490 . + . gene_id "YOR101W"; gene_biotype "protein_coding"; +chrXV SGD transcript 515162 516490 . + . transcript_id "YOR101W_id002"; gene_id "YOR101W"; gene_name "RAS1"; transcript_biotype "protein_coding"; +chrXV SGD exon 515162 516490 . + . transcript_id "YOR101W_id002"; gene_id "YOR101W"; gene_name "RAS1"; +chrXV SGD transcript 515244 516173 . + . transcript_id "YOR101W_id001"; gene_id "YOR101W"; gene_name "RAS1"; transcript_biotype "protein_coding"; +chrXV SGD exon 515244 516173 . + 0 transcript_id "YOR101W_id001"; gene_name "RAS1"; gene_id "YOR101W"; +chrXV SGD gene 516358 517444 . - . gene_id "YOR103C"; gene_biotype "protein_coding"; +chrXV SGD transcript 516358 517444 . - . transcript_id "YOR103C_id001"; gene_id "YOR103C"; gene_name "OST2"; transcript_biotype "protein_coding"; +chrXV SGD exon 516358 517444 . - . transcript_id "YOR103C_id001"; gene_id "YOR103C"; gene_name "OST2"; +chrXV SGD gene 516423 516773 . + . gene_id "YOR102W"; gene_biotype "protein_coding"; +chrXV SGD transcript 516423 516773 . + . transcript_id "YOR102W_mRNA"; gene_id "YOR102W"; transcript_biotype "protein_coding"; +chrXV SGD CDS 516423 516773 . + 0 transcript_id "YOR102W_mRNA"; gene_id "YOR102W"; +chrXV SGD transcript 516449 516841 . - . transcript_id "YOR103C_id004"; gene_id "YOR103C"; gene_name "OST2"; transcript_biotype "protein_coding"; +chrXV SGD exon 516449 516841 . - 0 transcript_id "YOR103C_id004"; gene_name "OST2"; gene_id "YOR103C"; +chrXV SGD gene 517642 518490 . + . gene_id "YOR104W"; gene_biotype "protein_coding"; +chrXV SGD transcript 517642 518490 . + . transcript_id "YOR104W_id001"; gene_id "YOR104W"; gene_name "PIN2"; transcript_biotype "protein_coding"; +chrXV SGD exon 517642 518490 . + 0 transcript_id "YOR104W_id001"; gene_name "PIN2"; gene_id "YOR104W"; +chrXV SGD gene 517692 518984 . + . gene_id "YOR105W"; gene_biotype "protein_coding"; +chrXV SGD transcript 517692 518984 . + . transcript_id "YOR105W_id001"; gene_id "YOR105W"; transcript_biotype "protein_coding"; +chrXV SGD exon 517692 518984 . + . transcript_id "YOR105W_id001"; gene_id "YOR105W"; +chrXV SGD transcript 518195 518521 . + . transcript_id "YOR105W_id004"; gene_id "YOR105W"; transcript_biotype "protein_coding"; +chrXV SGD exon 518195 518521 . + 0 transcript_id "YOR105W_id004"; gene_id "YOR105W"; +chrXV SGD gene 519027 520081 . + . gene_id "YOR106W"; gene_biotype "protein_coding"; +chrXV SGD transcript 519027 520081 . + . transcript_id "YOR106W_id002"; gene_id "YOR106W"; gene_name "VAM3"; transcript_biotype "protein_coding"; +chrXV SGD exon 519027 520081 . + . transcript_id "YOR106W_id002"; gene_id "YOR106W"; gene_name "VAM3"; +chrXV SGD transcript 519121 519972 . + . transcript_id "YOR106W_id001"; gene_id "YOR106W"; gene_name "VAM3"; transcript_biotype "protein_coding"; +chrXV SGD exon 519121 519972 . + 0 transcript_id "YOR106W_id001"; gene_name "VAM3"; gene_id "YOR106W"; +chrXV SGD gene 521062 522623 . + . gene_id "YOR107W"; gene_biotype "protein_coding"; +chrXV SGD transcript 521062 522623 . + . transcript_id "YOR107W_id002"; gene_id "YOR107W"; gene_name "RGS2"; transcript_biotype "protein_coding"; +chrXV SGD exon 521062 522623 . + . transcript_id "YOR107W_id002"; gene_id "YOR107W"; gene_name "RGS2"; +chrXV SGD transcript 521353 522282 . + . transcript_id "YOR107W_id001"; gene_id "YOR107W"; gene_name "RGS2"; transcript_biotype "protein_coding"; +chrXV SGD exon 521353 522282 . + 0 transcript_id "YOR107W_id001"; gene_name "RGS2"; gene_id "YOR107W"; +chrXV SGD gene 522926 525028 . + . gene_id "YOR108W"; gene_biotype "protein_coding"; +chrXV SGD transcript 522926 525028 . + . transcript_id "YOR108W_id001"; gene_id "YOR108W"; gene_name "LEU9"; transcript_biotype "protein_coding"; +chrXV SGD exon 522926 525028 . + . transcript_id "YOR108W_id001"; gene_id "YOR108W"; gene_name "LEU9"; +chrXV SGD transcript 523027 524841 . + . transcript_id "YOR108W_id004"; gene_id "YOR108W"; gene_name "LEU9"; transcript_biotype "protein_coding"; +chrXV SGD exon 523027 524841 . + 0 transcript_id "YOR108W_id004"; gene_name "LEU9"; gene_id "YOR108W"; +chrXV SGD gene 524605 524814 . - . gene_id "YOR108C-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 524605 524814 . - . transcript_id "YOR108C-A_mRNA"; gene_id "YOR108C-A"; transcript_biotype "protein_coding"; +chrXV SGD CDS 524605 524814 . - 0 transcript_id "YOR108C-A_mRNA"; gene_id "YOR108C-A"; +chrXV SGD gene 525278 528601 . + . gene_id "YOR109W"; gene_biotype "protein_coding"; +chrXV SGD transcript 525278 528601 . + . transcript_id "YOR109W_id001"; gene_id "YOR109W"; gene_name "INP53"; transcript_biotype "protein_coding"; +chrXV SGD exon 525278 528601 . + 0 transcript_id "YOR109W_id001"; gene_name "INP53"; gene_id "YOR109W"; +chrXV SGD gene 528864 530380 . + . gene_id "YOR110W"; gene_biotype "protein_coding"; +chrXV SGD transcript 528864 530380 . + . transcript_id "YOR110W_id001"; gene_id "YOR110W"; gene_name "TFC7"; transcript_biotype "protein_coding"; +chrXV SGD exon 528864 530380 . + . transcript_id "YOR110W_id001"; gene_id "YOR110W"; gene_name "TFC7"; +chrXV SGD transcript 528941 530248 . + . transcript_id "YOR110W_id002"; gene_id "YOR110W"; gene_name "TFC7"; transcript_biotype "protein_coding"; +chrXV SGD exon 528941 530248 . + 0 transcript_id "YOR110W_id002"; gene_name "TFC7"; gene_id "YOR110W"; +chrXV SGD gene 530389 531451 . + . gene_id "YOR111W"; gene_biotype "protein_coding"; +chrXV SGD transcript 530389 531451 . + . transcript_id "YOR111W_id004"; gene_id "YOR111W"; transcript_biotype "protein_coding"; +chrXV SGD exon 530389 531451 . + . transcript_id "YOR111W_id004"; gene_id "YOR111W"; +chrXV SGD transcript 530429 531127 . + . transcript_id "YOR111W_id001"; gene_id "YOR111W"; transcript_biotype "protein_coding"; +chrXV SGD exon 530429 531127 . + 0 transcript_id "YOR111W_id001"; gene_id "YOR111W"; +chrXV SGD gene 531432 533860 . + . gene_id "YOR112W"; gene_biotype "protein_coding"; +chrXV SGD transcript 531432 533860 . + . transcript_id "YOR112W_id001"; gene_id "YOR112W"; gene_name "CEX1"; transcript_biotype "protein_coding"; +chrXV SGD exon 531432 533860 . + . transcript_id "YOR112W_id001"; gene_id "YOR112W"; gene_name "CEX1"; +chrXV SGD transcript 531508 533793 . + . transcript_id "YOR112W_id002"; gene_id "YOR112W"; gene_name "CEX1"; transcript_biotype "protein_coding"; +chrXV SGD exon 531508 533793 . + 0 transcript_id "YOR112W_id002"; gene_name "CEX1"; gene_id "YOR112W"; +chrXV SGD gene 534075 536819 . + . gene_id "YOR113W"; gene_biotype "protein_coding"; +chrXV SGD transcript 534075 536819 . + . transcript_id "YOR113W_mRNA"; gene_id "YOR113W"; gene_name "AZF1"; transcript_biotype "protein_coding"; +chrXV SGD CDS 534075 536819 . + 0 transcript_id "YOR113W_mRNA"; gene_name "AZF1"; gene_id "YOR113W"; +chrXV SGD gene 537342 538674 . + . gene_id "YOR114W"; gene_biotype "protein_coding"; +chrXV SGD transcript 537342 538674 . + . transcript_id "YOR114W_id005"; gene_id "YOR114W"; gene_name "DPI34"; transcript_biotype "protein_coding"; +chrXV SGD exon 537342 538674 . + . transcript_id "YOR114W_id005"; gene_id "YOR114W"; gene_name "DPI34"; +chrXV SGD transcript 537570 538454 . + . transcript_id "YOR114W_id001"; gene_id "YOR114W"; gene_name "DPI34"; transcript_biotype "protein_coding"; +chrXV SGD exon 537570 538454 . + 0 transcript_id "YOR114W_id001"; gene_name "DPI34"; gene_id "YOR114W"; +chrXV SGD gene 538392 539531 . - . gene_id "YOR115C"; gene_biotype "protein_coding"; +chrXV SGD transcript 538392 539531 . - . transcript_id "YOR115C_id002"; gene_id "YOR115C"; gene_name "TRS33"; transcript_biotype "protein_coding"; +chrXV SGD exon 538392 539531 . - . transcript_id "YOR115C_id002"; gene_id "YOR115C"; gene_name "TRS33"; +chrXV SGD transcript 538659 539465 . - . transcript_id "YOR115C_id001"; gene_id "YOR115C"; gene_name "TRS33"; transcript_biotype "protein_coding"; +chrXV SGD exon 538659 539465 . - 0 transcript_id "YOR115C_id001"; gene_name "TRS33"; gene_id "YOR115C"; +chrXV SGD gene 539665 544379 . - . gene_id "YOR116C"; gene_biotype "protein_coding"; +chrXV SGD transcript 539665 544379 . - . transcript_id "YOR116C_id001"; gene_id "YOR116C"; gene_name "RPO31"; transcript_biotype "protein_coding"; +chrXV SGD exon 539665 544379 . - . transcript_id "YOR116C_id001"; gene_id "YOR116C"; gene_name "RPO31"; +chrXV SGD transcript 539763 544145 . - . transcript_id "YOR116C_id003"; gene_id "YOR116C"; gene_name "RPO31"; transcript_biotype "protein_coding"; +chrXV SGD exon 539763 544145 . - 0 transcript_id "YOR116C_id003"; gene_name "RPO31"; gene_id "YOR116C"; +chrXV SGD gene 544953 546540 . + . gene_id "YOR117W"; gene_biotype "protein_coding"; +chrXV SGD transcript 544953 546540 . + . transcript_id "YOR117W_id002"; gene_id "YOR117W"; gene_name "RPT5"; transcript_biotype "protein_coding"; +chrXV SGD exon 544953 546540 . + . transcript_id "YOR117W_id002"; gene_id "YOR117W"; gene_name "RPT5"; +chrXV SGD transcript 545029 546333 . + . transcript_id "YOR117W_id001"; gene_id "YOR117W"; gene_name "RPT5"; transcript_biotype "protein_coding"; +chrXV SGD exon 545029 546333 . + 0 transcript_id "YOR117W_id001"; gene_name "RPT5"; gene_id "YOR117W"; +chrXV SGD gene 546651 548748 . + . gene_id "YOR118W"; gene_biotype "protein_coding"; +chrXV SGD transcript 546651 548748 . + . transcript_id "YOR118W_id001"; gene_id "YOR118W"; gene_name "RTC5"; transcript_biotype "protein_coding"; +chrXV SGD exon 546651 548748 . + . transcript_id "YOR118W_id001"; gene_id "YOR118W"; gene_name "RTC5"; +chrXV SGD transcript 546857 548560 . + . transcript_id "YOR118W_id002"; gene_id "YOR118W"; gene_name "RTC5"; transcript_biotype "protein_coding"; +chrXV SGD exon 546857 548560 . + 0 transcript_id "YOR118W_id002"; gene_name "RTC5"; gene_id "YOR118W"; +chrXV SGD gene 547765 550291 . - . gene_id "YOR119C"; gene_biotype "protein_coding"; +chrXV SGD transcript 547765 550291 . - . transcript_id "YOR119C_id008"; gene_id "YOR119C"; gene_name "RIO1"; transcript_biotype "protein_coding"; +chrXV SGD exon 547765 550291 . - . transcript_id "YOR119C_id008"; gene_id "YOR119C"; gene_name "RIO1"; +chrXV SGD transcript 548792 550246 . - . transcript_id "YOR119C_id001"; gene_id "YOR119C"; gene_name "RIO1"; transcript_biotype "protein_coding"; +chrXV SGD exon 548792 550246 . - 0 transcript_id "YOR119C_id001"; gene_name "RIO1"; gene_id "YOR119C"; +chrXV SGD gene 550487 552238 . + . gene_id "YOR120W"; gene_biotype "protein_coding"; +chrXV SGD transcript 550487 552238 . + . transcript_id "YOR120W_id001"; gene_id "YOR120W"; gene_name "GCY1"; transcript_biotype "protein_coding"; +chrXV SGD exon 550487 552238 . + . transcript_id "YOR120W_id001"; gene_id "YOR120W"; gene_name "GCY1"; +chrXV SGD transcript 551114 552052 . + . transcript_id "YOR120W_id003"; gene_id "YOR120W"; gene_name "GCY1"; transcript_biotype "protein_coding"; +chrXV SGD exon 551114 552052 . + 0 transcript_id "YOR120W_id003"; gene_name "GCY1"; gene_id "YOR120W"; +chrXV SGD gene 551798 552103 . - . gene_id "YOR121C"; gene_biotype "protein_coding"; +chrXV SGD transcript 551798 552103 . - . transcript_id "YOR121C_mRNA"; gene_id "YOR121C"; transcript_biotype "protein_coding"; +chrXV SGD CDS 551798 552103 . - 0 transcript_id "YOR121C_mRNA"; gene_id "YOR121C"; +chrXV SGD gene 551932 552904 . - . gene_id "YOR122C"; gene_biotype "protein_coding"; +chrXV SGD transcript 551932 552904 . - . transcript_id "YOR122C_id001"; gene_id "YOR122C"; gene_name "PFY1"; transcript_biotype "protein_coding"; +chrXV SGD exon 551932 552904 . - . transcript_id "YOR122C_id001"; gene_id "YOR122C"; gene_name "PFY1"; +chrXV SGD transcript 552298 552887 . - . transcript_id "YOR122C_id006"; gene_id "YOR122C"; gene_name "PFY1"; transcript_biotype "protein_coding"; +chrXV SGD exon 552298 552665 . - 2 transcript_id "YOR122C_id006"; gene_name "PFY1"; gene_id "YOR122C"; +chrXV SGD exon 552875 552887 . - 0 transcript_id "YOR122C_id006"; gene_name "PFY1"; gene_id "YOR122C"; +chrXV SGD gene 553114 554669 . - . gene_id "YOR123C"; gene_biotype "protein_coding"; +chrXV SGD transcript 553114 554669 . - . transcript_id "YOR123C_id003"; gene_id "YOR123C"; gene_name "LEO1"; transcript_biotype "protein_coding"; +chrXV SGD exon 553114 554669 . - . transcript_id "YOR123C_id003"; gene_id "YOR123C"; gene_name "LEO1"; +chrXV SGD transcript 553176 554570 . - . transcript_id "YOR123C_id001"; gene_id "YOR123C"; gene_name "LEO1"; transcript_biotype "protein_coding"; +chrXV SGD exon 553176 554570 . - 0 transcript_id "YOR123C_id001"; gene_name "LEO1"; gene_id "YOR123C"; +chrXV SGD gene 554747 558765 . - . gene_id "YOR124C"; gene_biotype "protein_coding"; +chrXV SGD transcript 554747 558765 . - . transcript_id "YOR124C_id001"; gene_id "YOR124C"; gene_name "UBP2"; transcript_biotype "protein_coding"; +chrXV SGD exon 554747 558765 . - . transcript_id "YOR124C_id001"; gene_id "YOR124C"; gene_name "UBP2"; +chrXV SGD transcript 554824 558642 . - . transcript_id "YOR124C_id002"; gene_id "YOR124C"; gene_name "UBP2"; transcript_biotype "protein_coding"; +chrXV SGD exon 554824 558642 . - 0 transcript_id "YOR124C_id002"; gene_name "UBP2"; gene_id "YOR124C"; +chrXV SGD gene 558781 559780 . - . gene_id "YOR125C"; gene_biotype "protein_coding"; +chrXV SGD transcript 558781 559780 . - . transcript_id "YOR125C_id003"; gene_id "YOR125C"; gene_name "CAT5"; transcript_biotype "protein_coding"; +chrXV SGD exon 558781 559780 . - . transcript_id "YOR125C_id003"; gene_id "YOR125C"; gene_name "CAT5"; +chrXV SGD transcript 559030 559731 . - . transcript_id "YOR125C_id001"; gene_id "YOR125C"; gene_name "CAT5"; transcript_biotype "protein_coding"; +chrXV SGD exon 559030 559731 . - 0 transcript_id "YOR125C_id001"; gene_name "CAT5"; gene_id "YOR125C"; +chrXV SGD gene 559876 560953 . - . gene_id "YOR126C"; gene_biotype "protein_coding"; +chrXV SGD transcript 559876 560953 . - . transcript_id "YOR126C_id001"; gene_id "YOR126C"; gene_name "IAH1"; transcript_biotype "protein_coding"; +chrXV SGD exon 559876 560953 . - . transcript_id "YOR126C_id001"; gene_id "YOR126C"; gene_name "IAH1"; +chrXV SGD transcript 559961 560677 . - . transcript_id "YOR126C_id004"; gene_id "YOR126C"; gene_name "IAH1"; transcript_biotype "protein_coding"; +chrXV SGD exon 559961 560677 . - 0 transcript_id "YOR126C_id004"; gene_name "IAH1"; gene_id "YOR126C"; +chrXV SGD gene 560907 564352 . + . gene_id "YOR127W"; gene_biotype "protein_coding"; +chrXV SGD transcript 560907 564352 . + . transcript_id "YOR127W_id001"; gene_id "YOR127W"; gene_name "RGA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 560907 564352 . + . transcript_id "YOR127W_id001"; gene_id "YOR127W"; gene_name "RGA1"; +chrXV SGD transcript 561170 564193 . + . transcript_id "YOR127W_id002"; gene_id "YOR127W"; gene_name "RGA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 561170 564193 . + 0 transcript_id "YOR127W_id002"; gene_name "RGA1"; gene_id "YOR127W"; +chrXV SGD gene 564399 566226 . - . gene_id "YOR128C"; gene_biotype "protein_coding"; +chrXV SGD transcript 564399 566226 . - . transcript_id "YOR128C_id006"; gene_id "YOR128C"; gene_name "ADE2"; transcript_biotype "protein_coding"; +chrXV SGD exon 564399 566226 . - . transcript_id "YOR128C_id006"; gene_id "YOR128C"; gene_name "ADE2"; +chrXV SGD transcript 564476 566191 . - . transcript_id "YOR128C_id001"; gene_id "YOR128C"; gene_name "ADE2"; transcript_biotype "protein_coding"; +chrXV SGD exon 564476 566191 . - 0 transcript_id "YOR128C_id001"; gene_name "ADE2"; gene_id "YOR128C"; +chrXV SGD gene 566655 569636 . - . gene_id "YOR129C"; gene_biotype "protein_coding"; +chrXV SGD transcript 566655 569636 . - . transcript_id "YOR129C_id001"; gene_id "YOR129C"; gene_name "AFI1"; transcript_biotype "protein_coding"; +chrXV SGD exon 566655 569636 . - . transcript_id "YOR129C_id001"; gene_id "YOR129C"; gene_name "AFI1"; +chrXV SGD transcript 566877 569558 . - . transcript_id "YOR129C_id002"; gene_id "YOR129C"; gene_name "AFI1"; transcript_biotype "protein_coding"; +chrXV SGD exon 566877 569558 . - 0 transcript_id "YOR129C_id002"; gene_name "AFI1"; gene_id "YOR129C"; +chrXV SGD gene 569601 570830 . - . gene_id "YOR130C"; gene_biotype "protein_coding"; +chrXV SGD transcript 569601 570830 . - . transcript_id "YOR130C_id002"; gene_id "YOR130C"; gene_name "ORT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 569601 570830 . - . transcript_id "YOR130C_id002"; gene_id "YOR130C"; gene_name "ORT1"; +chrXV SGD transcript 569929 570807 . - . transcript_id "YOR130C_id001"; gene_id "YOR130C"; gene_name "ORT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 569929 570807 . - 0 transcript_id "YOR130C_id001"; gene_name "ORT1"; gene_id "YOR130C"; +chrXV SGD gene 571958 572029 . + . gene_id "YNCO0019W"; gene_biotype "ncRNA"; +chrXV SGD transcript 571958 572029 . + . transcript_id "YNCO0019W_tRNA"; gene_id "YNCO0019W"; transcript_biotype "ncRNA"; +chrXV SGD exon 571958 572029 . + . transcript_id "YNCO0019W_tRNA"; gene_id "YNCO0019W"; +chrXV SGD gene 572090 572940 . - . gene_id "YOR131C"; gene_biotype "protein_coding"; +chrXV SGD transcript 572090 572940 . - . transcript_id "YOR131C_id010"; gene_id "YOR131C"; transcript_biotype "protein_coding"; +chrXV SGD exon 572090 572940 . - . transcript_id "YOR131C_id010"; gene_id "YOR131C"; +chrXV SGD transcript 572182 572838 . - . transcript_id "YOR131C_id001"; gene_id "YOR131C"; transcript_biotype "protein_coding"; +chrXV SGD exon 572182 572838 . - 0 transcript_id "YOR131C_id001"; gene_id "YOR131C"; +chrXV SGD gene 573095 574945 . + . gene_id "YOR132W"; gene_biotype "protein_coding"; +chrXV SGD transcript 573095 574945 . + . transcript_id "YOR132W_id006"; gene_id "YOR132W"; gene_name "VPS17"; transcript_biotype "protein_coding"; +chrXV SGD exon 573095 574945 . + . transcript_id "YOR132W_id006"; gene_id "YOR132W"; gene_name "VPS17"; +chrXV SGD transcript 573175 574830 . + . transcript_id "YOR132W_id001"; gene_id "YOR132W"; gene_name "VPS17"; transcript_biotype "protein_coding"; +chrXV SGD exon 573175 574830 . + 0 transcript_id "YOR132W_id001"; gene_name "VPS17"; gene_id "YOR132W"; +chrXV SGD gene 575023 577863 . + . gene_id "YOR133W"; gene_biotype "protein_coding"; +chrXV SGD transcript 575023 577863 . + . transcript_id "YOR133W_id002"; gene_id "YOR133W"; gene_name "EFT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 575023 577863 . + . transcript_id "YOR133W_id002"; gene_id "YOR133W"; gene_name "EFT1"; +chrXV SGD transcript 575098 577626 . + . transcript_id "YOR133W_id001"; gene_id "YOR133W"; gene_name "EFT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 575098 577626 . + 0 transcript_id "YOR133W_id001"; gene_name "EFT1"; gene_id "YOR133W"; +chrXV SGD gene 578564 579793 . + . gene_id "YOR134W"; gene_biotype "protein_coding"; +chrXV SGD transcript 578564 579793 . + . transcript_id "YOR134W_mRNA"; gene_id "YOR134W"; gene_name "BAG7"; transcript_biotype "protein_coding"; +chrXV SGD CDS 578564 579793 . + 0 transcript_id "YOR134W_mRNA"; gene_name "BAG7"; gene_id "YOR134W"; +chrXV SGD gene 580132 581669 . + . gene_id "YOR136W"; gene_biotype "protein_coding"; +chrXV SGD transcript 580132 581669 . + . transcript_id "YOR136W_id005"; gene_id "YOR136W"; gene_name "IDH2"; transcript_biotype "protein_coding"; +chrXV SGD exon 580132 581669 . + . transcript_id "YOR136W_id005"; gene_id "YOR136W"; gene_name "IDH2"; +chrXV SGD gene 580159 580500 . - . gene_id "YOR135C"; gene_biotype "protein_coding"; +chrXV SGD transcript 580159 580500 . - . transcript_id "YOR135C_mRNA"; gene_id "YOR135C"; gene_name "IRC14"; transcript_biotype "protein_coding"; +chrXV SGD CDS 580159 580500 . - 0 transcript_id "YOR135C_mRNA"; gene_name "IRC14"; gene_id "YOR135C"; +chrXV SGD transcript 580250 581359 . + . transcript_id "YOR136W_id001"; gene_id "YOR136W"; gene_name "IDH2"; transcript_biotype "protein_coding"; +chrXV SGD exon 580250 581359 . + 0 transcript_id "YOR136W_id001"; gene_name "IDH2"; gene_id "YOR136W"; +chrXV SGD gene 581813 583681 . - . gene_id "YOR137C"; gene_biotype "protein_coding"; +chrXV SGD transcript 581813 583681 . - . transcript_id "YOR137C_id001"; gene_id "YOR137C"; gene_name "SIA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 581813 583681 . - 0 transcript_id "YOR137C_id001"; gene_name "SIA1"; gene_id "YOR137C"; +chrXV SGD gene 584237 586403 . - . gene_id "YOR138C"; gene_biotype "protein_coding"; +chrXV SGD transcript 584237 586403 . - . transcript_id "YOR138C_id002"; gene_id "YOR138C"; gene_name "RUP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 584237 586403 . - . transcript_id "YOR138C_id002"; gene_id "YOR138C"; gene_name "RUP1"; +chrXV SGD transcript 584309 586324 . - . transcript_id "YOR138C_id001"; gene_id "YOR138C"; gene_name "RUP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 584309 586324 . - 0 transcript_id "YOR138C_id001"; gene_name "RUP1"; gene_id "YOR138C"; +chrXV SGD gene 586624 589750 . + . gene_id "YOR140W"; gene_biotype "protein_coding"; +chrXV SGD transcript 586624 589750 . + . transcript_id "YOR140W_id001"; gene_id "YOR140W"; gene_name "SFL1"; transcript_biotype "protein_coding"; +chrXV SGD exon 586624 589750 . + . transcript_id "YOR140W_id001"; gene_id "YOR140W"; gene_name "SFL1"; +chrXV SGD gene 586950 587342 . - . gene_id "YOR139C"; gene_biotype "protein_coding"; +chrXV SGD transcript 586950 587342 . - . transcript_id "YOR139C_mRNA"; gene_id "YOR139C"; transcript_biotype "protein_coding"; +chrXV SGD CDS 586950 587342 . - 0 transcript_id "YOR139C_mRNA"; gene_id "YOR139C"; +chrXV SGD transcript 586981 589281 . + . transcript_id "YOR140W_id003"; gene_id "YOR140W"; gene_name "SFL1"; transcript_biotype "protein_coding"; +chrXV SGD exon 586981 589281 . + 0 transcript_id "YOR140W_id003"; gene_name "SFL1"; gene_id "YOR140W"; +chrXV SGD gene 589641 592616 . - . gene_id "YOR141C"; gene_biotype "protein_coding"; +chrXV SGD transcript 589641 592616 . - . transcript_id "YOR141C_id002"; gene_id "YOR141C"; gene_name "ARP8"; transcript_biotype "protein_coding"; +chrXV SGD exon 589641 592616 . - . transcript_id "YOR141C_id002"; gene_id "YOR141C"; gene_name "ARP8"; +chrXV SGD transcript 589942 592587 . - . transcript_id "YOR141C_id001"; gene_id "YOR141C"; gene_name "ARP8"; transcript_biotype "protein_coding"; +chrXV SGD exon 589942 592587 . - 0 transcript_id "YOR141C_id001"; gene_name "ARP8"; gene_id "YOR141C"; +chrXV SGD gene 592838 594330 . + . gene_id "YOR142W"; gene_biotype "protein_coding"; +chrXV SGD transcript 592838 594330 . + . transcript_id "YOR142W_id001"; gene_id "YOR142W"; gene_name "LSC1"; transcript_biotype "protein_coding"; +chrXV SGD exon 592838 594330 . + . transcript_id "YOR142W_id001"; gene_id "YOR142W"; gene_name "LSC1"; +chrXV SGD transcript 593057 594046 . + . transcript_id "YOR142W_id002"; gene_id "YOR142W"; gene_name "LSC1"; transcript_biotype "protein_coding"; +chrXV SGD exon 593057 594046 . + 0 transcript_id "YOR142W_id002"; gene_name "LSC1"; gene_id "YOR142W"; +chrXV SGD gene 594354 594425 . - . gene_id "YNCO0020C"; gene_biotype "ncRNA"; +chrXV SGD transcript 594354 594425 . - . transcript_id "YNCO0020C_tRNA"; gene_id "YNCO0020C"; gene_name "SUF5"; transcript_biotype "ncRNA"; +chrXV SGD exon 594354 594425 . - . transcript_id "YNCO0020C_tRNA"; gene_name "SUF5"; gene_id "YNCO0020C"; +chrXV SGD gene 595112 596434 . + . gene_id "YOR142W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 595112 596434 . + . transcript_id "YOR142W-A_dummy"; gene_id "YOR142W-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 595112 596434 . + 0 transcript_id "YOR142W-A_dummy"; gene_id "YOR142W-A"; +chrXV SGD gene 595112 600380 . + . gene_id "YOR142W-B"; gene_biotype "protein_coding"; +chrXV SGD transcript 595112 600380 . + . transcript_id "YOR142W-B_dummy"; gene_id "YOR142W-B"; transcript_biotype "protein_coding"; +chrXV SGD exon 595112 596416 . + 0 transcript_id "YOR142W-B_dummy"; gene_id "YOR142W-B"; +chrXV SGD exon 596418 600380 . + 0 transcript_id "YOR142W-B_dummy"; gene_id "YOR142W-B"; +chrXV SGD gene 601015 602416 . - . gene_id "YOR143C"; gene_biotype "protein_coding"; +chrXV SGD transcript 601015 602416 . - . transcript_id "YOR143C_id004"; gene_id "YOR143C"; gene_name "THI80"; transcript_biotype "protein_coding"; +chrXV SGD exon 601015 602416 . - . transcript_id "YOR143C_id004"; gene_id "YOR143C"; gene_name "THI80"; +chrXV SGD transcript 601383 602342 . - . transcript_id "YOR143C_id001"; gene_id "YOR143C"; gene_name "THI80"; transcript_biotype "protein_coding"; +chrXV SGD exon 601383 602342 . - 0 transcript_id "YOR143C_id001"; gene_name "THI80"; gene_id "YOR143C"; +chrXV SGD gene 602717 605092 . - . gene_id "YOR144C"; gene_biotype "protein_coding"; +chrXV SGD transcript 602717 605092 . - . transcript_id "YOR144C_id001"; gene_id "YOR144C"; gene_name "ELG1"; transcript_biotype "protein_coding"; +chrXV SGD exon 602717 605092 . - 0 transcript_id "YOR144C_id001"; gene_name "ELG1"; gene_id "YOR144C"; +chrXV SGD gene 605159 606205 . - . gene_id "YOR145C"; gene_biotype "protein_coding"; +chrXV SGD transcript 605159 606205 . - . transcript_id "YOR145C_id003"; gene_id "YOR145C"; gene_name "PNO1"; transcript_biotype "protein_coding"; +chrXV SGD exon 605159 606205 . - . transcript_id "YOR145C_id003"; gene_id "YOR145C"; gene_name "PNO1"; +chrXV SGD transcript 605347 606171 . - . transcript_id "YOR145C_id001"; gene_id "YOR145C"; gene_name "PNO1"; transcript_biotype "protein_coding"; +chrXV SGD exon 605347 606171 . - 0 transcript_id "YOR145C_id001"; gene_name "PNO1"; gene_id "YOR145C"; +chrXV SGD gene 605793 606441 . + . gene_id "YOR146W"; gene_biotype "protein_coding"; +chrXV SGD transcript 605793 606441 . + . transcript_id "YOR146W_id001"; gene_id "YOR146W"; transcript_biotype "protein_coding"; +chrXV SGD exon 605793 606441 . + . transcript_id "YOR146W_id001"; gene_id "YOR146W"; +chrXV SGD transcript 605873 606178 . + . transcript_id "YOR146W_id002"; gene_id "YOR146W"; transcript_biotype "protein_coding"; +chrXV SGD exon 605873 606178 . + 0 transcript_id "YOR146W_id002"; gene_id "YOR146W"; +chrXV SGD gene 606570 608663 . + . gene_id "YOR147W"; gene_biotype "protein_coding"; +chrXV SGD transcript 606570 608663 . + . transcript_id "YOR147W_id003"; gene_id "YOR147W"; gene_name "MDM32"; transcript_biotype "protein_coding"; +chrXV SGD exon 606570 608663 . + . transcript_id "YOR147W_id003"; gene_id "YOR147W"; gene_name "MDM32"; +chrXV SGD transcript 606607 608475 . + . transcript_id "YOR147W_id001"; gene_id "YOR147W"; gene_name "MDM32"; transcript_biotype "protein_coding"; +chrXV SGD exon 606607 608475 . + 0 transcript_id "YOR147W_id001"; gene_name "MDM32"; gene_id "YOR147W"; +chrXV SGD gene 608461 609238 . - . gene_id "YOR148C"; gene_biotype "protein_coding"; +chrXV SGD transcript 608461 609238 . - . transcript_id "YOR148C_id002"; gene_id "YOR148C"; gene_name "SPP2"; transcript_biotype "protein_coding"; +chrXV SGD exon 608461 609238 . - . transcript_id "YOR148C_id002"; gene_id "YOR148C"; gene_name "SPP2"; +chrXV SGD transcript 608640 609197 . - . transcript_id "YOR148C_id001"; gene_id "YOR148C"; gene_name "SPP2"; transcript_biotype "protein_coding"; +chrXV SGD exon 608640 609197 . - 0 transcript_id "YOR148C_id001"; gene_name "SPP2"; gene_id "YOR148C"; +chrXV SGD gene 609406 611449 . - . gene_id "YOR149C"; gene_biotype "protein_coding"; +chrXV SGD transcript 609406 611449 . - . transcript_id "YOR149C_id001"; gene_id "YOR149C"; gene_name "SMP3"; transcript_biotype "protein_coding"; +chrXV SGD exon 609406 611449 . - . transcript_id "YOR149C_id001"; gene_id "YOR149C"; gene_name "SMP3"; +chrXV SGD transcript 609838 611388 . - . transcript_id "YOR149C_id002"; gene_id "YOR149C"; gene_name "SMP3"; transcript_biotype "protein_coding"; +chrXV SGD exon 609838 611388 . - 0 transcript_id "YOR149C_id002"; gene_name "SMP3"; gene_id "YOR149C"; +chrXV SGD gene 611946 612602 . + . gene_id "YOR150W"; gene_biotype "protein_coding"; +chrXV SGD transcript 611946 612602 . + . transcript_id "YOR150W_id007"; gene_id "YOR150W"; gene_name "MRPL23"; transcript_biotype "protein_coding"; +chrXV SGD exon 611946 612602 . + . transcript_id "YOR150W_id007"; gene_id "YOR150W"; gene_name "MRPL23"; +chrXV SGD transcript 611999 612490 . + . transcript_id "YOR150W_id001"; gene_id "YOR150W"; gene_name "MRPL23"; transcript_biotype "protein_coding"; +chrXV SGD exon 611999 612490 . + 0 transcript_id "YOR150W_id001"; gene_name "MRPL23"; gene_id "YOR150W"; +chrXV SGD gene 612651 616960 . - . gene_id "YOR151C"; gene_biotype "protein_coding"; +chrXV SGD transcript 612651 616960 . - . transcript_id "YOR151C_id001"; gene_id "YOR151C"; gene_name "RPB2"; transcript_biotype "protein_coding"; +chrXV SGD exon 612651 616960 . - . transcript_id "YOR151C_id001"; gene_id "YOR151C"; gene_name "RPB2"; +chrXV SGD transcript 612997 616671 . - . transcript_id "YOR151C_id002"; gene_id "YOR151C"; gene_name "RPB2"; transcript_biotype "protein_coding"; +chrXV SGD exon 612997 616671 . - 0 transcript_id "YOR151C_id002"; gene_name "RPB2"; gene_id "YOR151C"; +chrXV SGD gene 617357 618886 . - . gene_id "YOR152C"; gene_biotype "protein_coding"; +chrXV SGD transcript 617357 618886 . - . transcript_id "YOR152C_id005"; gene_id "YOR152C"; gene_name "ATG40"; transcript_biotype "protein_coding"; +chrXV SGD exon 617357 618886 . - . transcript_id "YOR152C_id005"; gene_id "YOR152C"; gene_name "ATG40"; +chrXV SGD transcript 617518 618288 . - . transcript_id "YOR152C_id001"; gene_id "YOR152C"; gene_name "ATG40"; transcript_biotype "protein_coding"; +chrXV SGD exon 617518 618288 . - 0 transcript_id "YOR152C_id001"; gene_name "ATG40"; gene_id "YOR152C"; +chrXV SGD gene 619840 624375 . + . gene_id "YOR153W"; gene_biotype "protein_coding"; +chrXV SGD transcript 619840 624375 . + . transcript_id "YOR153W_mRNA"; gene_id "YOR153W"; gene_name "PDR5"; transcript_biotype "protein_coding"; +chrXV SGD CDS 619840 624375 . + 0 transcript_id "YOR153W_mRNA"; gene_name "PDR5"; gene_id "YOR153W"; +chrXV SGD gene 624682 626651 . + . gene_id "YOR154W"; gene_biotype "protein_coding"; +chrXV SGD transcript 624682 626651 . + . transcript_id "YOR154W_id002"; gene_id "YOR154W"; gene_name "SLP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 624682 626651 . + . transcript_id "YOR154W_id002"; gene_id "YOR154W"; gene_name "SLP1"; +chrXV SGD transcript 624729 626492 . + . transcript_id "YOR154W_id001"; gene_id "YOR154W"; gene_name "SLP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 624729 626492 . + 0 transcript_id "YOR154W_id001"; gene_name "SLP1"; gene_id "YOR154W"; +chrXV SGD gene 626542 628001 . - . gene_id "YOR155C"; gene_biotype "protein_coding"; +chrXV SGD transcript 626542 628001 . - . transcript_id "YOR155C_id015"; gene_id "YOR155C"; gene_name "ISN1"; transcript_biotype "protein_coding"; +chrXV SGD exon 626542 628001 . - . transcript_id "YOR155C_id015"; gene_id "YOR155C"; gene_name "ISN1"; +chrXV SGD transcript 626628 627980 . - . transcript_id "YOR155C_id001"; gene_id "YOR155C"; gene_name "ISN1"; transcript_biotype "protein_coding"; +chrXV SGD exon 626628 627980 . - 0 transcript_id "YOR155C_id001"; gene_name "ISN1"; gene_id "YOR155C"; +chrXV SGD gene 628105 630711 . - . gene_id "YOR156C"; gene_biotype "protein_coding"; +chrXV SGD transcript 628105 630711 . - . transcript_id "YOR156C_id001"; gene_id "YOR156C"; gene_name "NFI1"; transcript_biotype "protein_coding"; +chrXV SGD exon 628105 630711 . - . transcript_id "YOR156C_id001"; gene_id "YOR156C"; gene_name "NFI1"; +chrXV SGD transcript 628360 630540 . - . transcript_id "YOR156C_id003"; gene_id "YOR156C"; gene_name "NFI1"; transcript_biotype "protein_coding"; +chrXV SGD exon 628360 630540 . - 0 transcript_id "YOR156C_id003"; gene_name "NFI1"; gene_id "YOR156C"; +chrXV SGD gene 630747 631813 . - . gene_id "YOR157C"; gene_biotype "protein_coding"; +chrXV SGD transcript 630747 631813 . - . transcript_id "YOR157C_id002"; gene_id "YOR157C"; gene_name "PUP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 630747 631813 . - . transcript_id "YOR157C_id002"; gene_id "YOR157C"; gene_name "PUP1"; +chrXV SGD transcript 630966 631751 . - . transcript_id "YOR157C_id001"; gene_id "YOR157C"; gene_name "PUP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 630966 631751 . - 0 transcript_id "YOR157C_id001"; gene_name "PUP1"; gene_id "YOR157C"; +chrXV SGD gene 632093 633274 . + . gene_id "YOR158W"; gene_biotype "protein_coding"; +chrXV SGD transcript 632093 633274 . + . transcript_id "YOR158W_id002"; gene_id "YOR158W"; gene_name "PET123"; transcript_biotype "protein_coding"; +chrXV SGD exon 632093 633274 . + . transcript_id "YOR158W_id002"; gene_id "YOR158W"; gene_name "PET123"; +chrXV SGD transcript 632164 633120 . + . transcript_id "YOR158W_id001"; gene_id "YOR158W"; gene_name "PET123"; transcript_biotype "protein_coding"; +chrXV SGD exon 632164 633120 . + 0 transcript_id "YOR158W_id001"; gene_name "PET123"; gene_id "YOR158W"; +chrXV SGD gene 632538 633637 . - . gene_id "YOR159C"; gene_biotype "protein_coding"; +chrXV SGD transcript 632538 633637 . - . transcript_id "YOR159C_id002"; gene_id "YOR159C"; gene_name "SME1"; transcript_biotype "protein_coding"; +chrXV SGD exon 632538 633637 . - . transcript_id "YOR159C_id002"; gene_id "YOR159C"; gene_name "SME1"; +chrXV SGD transcript 633282 633566 . - . transcript_id "YOR159C_id001"; gene_id "YOR159C"; gene_name "SME1"; transcript_biotype "protein_coding"; +chrXV SGD exon 633282 633566 . - 0 transcript_id "YOR159C_id001"; gene_name "SME1"; gene_id "YOR159C"; +chrXV SGD gene 633740 636852 . + . gene_id "YOR160W"; gene_biotype "protein_coding"; +chrXV SGD transcript 633740 636852 . + . transcript_id "YOR160W_id001"; gene_id "YOR160W"; gene_name "MTR10"; transcript_biotype "protein_coding"; +chrXV SGD exon 633740 636852 . + . transcript_id "YOR160W_id001"; gene_id "YOR160W"; gene_name "MTR10"; +chrXV SGD transcript 633839 636757 . + . transcript_id "YOR160W_id002"; gene_id "YOR160W"; gene_name "MTR10"; transcript_biotype "protein_coding"; +chrXV SGD exon 633839 636757 . + 0 transcript_id "YOR160W_id002"; gene_name "MTR10"; gene_id "YOR160W"; +chrXV SGD gene 636820 638695 . - . gene_id "YOR161C"; gene_biotype "protein_coding"; +chrXV SGD transcript 636820 638695 . - . transcript_id "YOR161C_id001"; gene_id "YOR161C"; gene_name "PNS1"; transcript_biotype "protein_coding"; +chrXV SGD exon 636820 638695 . - . transcript_id "YOR161C_id001"; gene_id "YOR161C"; gene_name "PNS1"; +chrXV SGD transcript 636939 638558 . - . transcript_id "YOR161C_id005"; gene_id "YOR161C"; gene_name "PNS1"; transcript_biotype "protein_coding"; +chrXV SGD exon 636939 638558 . - 0 transcript_id "YOR161C_id005"; gene_name "PNS1"; gene_id "YOR161C"; +chrXV SGD gene 637574 637654 . + . gene_id "YOR161W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 637574 637654 . + . transcript_id "YOR161W-A_mRNA"; gene_id "YOR161W-A"; transcript_biotype "protein_coding"; +chrXV SGD CDS 637574 637654 . + 0 transcript_id "YOR161W-A_mRNA"; gene_id "YOR161W-A"; +chrXV SGD gene 637975 638235 . + . gene_id "YOR161W-B"; gene_biotype "protein_coding"; +chrXV SGD transcript 637975 638235 . + . transcript_id "YOR161W-B_mRNA"; gene_id "YOR161W-B"; transcript_biotype "protein_coding"; +chrXV SGD CDS 637975 638235 . + 0 transcript_id "YOR161W-B_mRNA"; gene_id "YOR161W-B"; +chrXV SGD gene 639121 639267 . - . gene_id "YOR161C-C"; gene_biotype "protein_coding"; +chrXV SGD transcript 639121 639267 . - . transcript_id "YOR161C-C_id001"; gene_id "YOR161C-C"; transcript_biotype "protein_coding"; +chrXV SGD exon 639121 639267 . - 0 transcript_id "YOR161C-C_id001"; gene_id "YOR161C-C"; +chrXV SGD gene 639560 641992 . - . gene_id "YOR162C"; gene_biotype "protein_coding"; +chrXV SGD transcript 639560 641992 . - . transcript_id "YOR162C_id001"; gene_id "YOR162C"; gene_name "YRR1"; transcript_biotype "protein_coding"; +chrXV SGD exon 639560 641992 . - 0 transcript_id "YOR162C_id001"; gene_name "YRR1"; gene_id "YOR162C"; +chrXV SGD gene 642402 643380 . + . gene_id "YOR163W"; gene_biotype "protein_coding"; +chrXV SGD transcript 642402 643380 . + . transcript_id "YOR163W_id002"; gene_id "YOR163W"; gene_name "DDP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 642402 643380 . + . transcript_id "YOR163W_id002"; gene_id "YOR163W"; gene_name "DDP1"; +chrXV SGD transcript 642741 643307 . + . transcript_id "YOR163W_id001"; gene_id "YOR163W"; gene_name "DDP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 642741 643307 . + 0 transcript_id "YOR163W_id001"; gene_name "DDP1"; gene_id "YOR163W"; +chrXV SGD gene 643123 644382 . - . gene_id "YOR164C"; gene_biotype "protein_coding"; +chrXV SGD transcript 643123 644382 . - . transcript_id "YOR164C_id002"; gene_id "YOR164C"; gene_name "GET4"; transcript_biotype "protein_coding"; +chrXV SGD exon 643123 644382 . - . transcript_id "YOR164C_id002"; gene_id "YOR164C"; gene_name "GET4"; +chrXV SGD transcript 643394 644332 . - . transcript_id "YOR164C_id001"; gene_id "YOR164C"; gene_name "GET4"; transcript_biotype "protein_coding"; +chrXV SGD exon 643394 644332 . - 0 transcript_id "YOR164C_id001"; gene_name "GET4"; gene_id "YOR164C"; +chrXV SGD gene 644533 647157 . + . gene_id "YOR165W"; gene_biotype "protein_coding"; +chrXV SGD transcript 644533 647157 . + . transcript_id "YOR165W_id002"; gene_id "YOR165W"; gene_name "SEY1"; transcript_biotype "protein_coding"; +chrXV SGD exon 644533 647157 . + . transcript_id "YOR165W_id002"; gene_id "YOR165W"; gene_name "SEY1"; +chrXV SGD transcript 644566 646896 . + . transcript_id "YOR165W_id001"; gene_id "YOR165W"; gene_name "SEY1"; transcript_biotype "protein_coding"; +chrXV SGD exon 644566 646896 . + 0 transcript_id "YOR165W_id001"; gene_name "SEY1"; gene_id "YOR165W"; +chrXV SGD gene 646953 648557 . - . gene_id "YOR166C"; gene_biotype "protein_coding"; +chrXV SGD transcript 646953 648557 . - . transcript_id "YOR166C_id006"; gene_id "YOR166C"; gene_name "SWT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 646953 648557 . - . transcript_id "YOR166C_id006"; gene_id "YOR166C"; gene_name "SWT1"; +chrXV SGD transcript 647126 648502 . - . transcript_id "YOR166C_id001"; gene_id "YOR166C"; gene_name "SWT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 647126 648502 . - 0 transcript_id "YOR166C_id001"; gene_name "SWT1"; gene_id "YOR166C"; +chrXV SGD gene 648577 649019 . - . gene_id "YOR167C"; gene_biotype "protein_coding"; +chrXV SGD transcript 648577 649019 . - . transcript_id "YOR167C_id002"; gene_id "YOR167C"; gene_name "RPS28A"; transcript_biotype "protein_coding"; +chrXV SGD exon 648577 649019 . - . transcript_id "YOR167C_id002"; gene_id "YOR167C"; gene_name "RPS28A"; +chrXV SGD transcript 648804 649007 . - . transcript_id "YOR167C_id001"; gene_id "YOR167C"; gene_name "RPS28A"; transcript_biotype "protein_coding"; +chrXV SGD exon 648804 649007 . - 0 transcript_id "YOR167C_id001"; gene_name "RPS28A"; gene_id "YOR167C"; +chrXV SGD gene 649261 651849 . + . gene_id "YOR168W"; gene_biotype "protein_coding"; +chrXV SGD transcript 649261 651849 . + . transcript_id "YOR168W_id003"; gene_id "YOR168W"; gene_name "GLN4"; transcript_biotype "protein_coding"; +chrXV SGD exon 649261 651849 . + . transcript_id "YOR168W_id003"; gene_id "YOR168W"; gene_name "GLN4"; +chrXV SGD transcript 649303 651732 . + . transcript_id "YOR168W_id001"; gene_id "YOR168W"; gene_name "GLN4"; transcript_biotype "protein_coding"; +chrXV SGD exon 649303 651732 . + 0 transcript_id "YOR168W_id001"; gene_name "GLN4"; gene_id "YOR168W"; +chrXV SGD gene 651376 651840 . - . gene_id "YOR169C"; gene_biotype "protein_coding"; +chrXV SGD transcript 651376 651840 . - . transcript_id "YOR169C_mRNA"; gene_id "YOR169C"; transcript_biotype "protein_coding"; +chrXV SGD CDS 651376 651840 . - 0 transcript_id "YOR169C_mRNA"; gene_id "YOR169C"; +chrXV SGD gene 651792 653955 . - . gene_id "YOR171C"; gene_biotype "protein_coding"; +chrXV SGD transcript 651792 653955 . - . transcript_id "YOR171C_id004"; gene_id "YOR171C"; gene_name "LCB4"; transcript_biotype "protein_coding"; +chrXV SGD exon 651792 653955 . - . transcript_id "YOR171C_id004"; gene_id "YOR171C"; gene_name "LCB4"; +chrXV SGD gene 651858 652163 . + . gene_id "YOR170W"; gene_biotype "protein_coding"; +chrXV SGD transcript 651858 652163 . + . transcript_id "YOR170W_mRNA"; gene_id "YOR170W"; transcript_biotype "protein_coding"; +chrXV SGD CDS 651858 652163 . + 0 transcript_id "YOR170W_mRNA"; gene_id "YOR170W"; +chrXV SGD transcript 652010 653884 . - . transcript_id "YOR171C_id001"; gene_id "YOR171C"; gene_name "LCB4"; transcript_biotype "protein_coding"; +chrXV SGD exon 652010 653884 . - 0 transcript_id "YOR171C_id001"; gene_name "LCB4"; gene_id "YOR171C"; +chrXV SGD gene 654150 656772 . + . gene_id "YOR172W"; gene_biotype "protein_coding"; +chrXV SGD transcript 654150 656772 . + . transcript_id "YOR172W_id001"; gene_id "YOR172W"; gene_name "YRM1"; transcript_biotype "protein_coding"; +chrXV SGD exon 654150 656772 . + . transcript_id "YOR172W_id001"; gene_id "YOR172W"; gene_name "YRM1"; +chrXV SGD transcript 654210 656570 . + . transcript_id "YOR172W_id002"; gene_id "YOR172W"; gene_name "YRM1"; transcript_biotype "protein_coding"; +chrXV SGD exon 654210 656570 . + 0 transcript_id "YOR172W_id002"; gene_name "YRM1"; gene_id "YOR172W"; +chrXV SGD gene 657208 658479 . + . gene_id "YOR173W"; gene_biotype "protein_coding"; +chrXV SGD transcript 657208 658479 . + . transcript_id "YOR173W_id005"; gene_id "YOR173W"; gene_name "DCS2"; transcript_biotype "protein_coding"; +chrXV SGD exon 657208 658479 . + . transcript_id "YOR173W_id005"; gene_id "YOR173W"; gene_name "DCS2"; +chrXV SGD transcript 657264 658325 . + . transcript_id "YOR173W_id001"; gene_id "YOR173W"; gene_name "DCS2"; transcript_biotype "protein_coding"; +chrXV SGD exon 657264 658325 . + 0 transcript_id "YOR173W_id001"; gene_name "DCS2"; gene_id "YOR173W"; +chrXV SGD gene 658459 659636 . + . gene_id "YOR174W"; gene_biotype "protein_coding"; +chrXV SGD transcript 658459 659636 . + . transcript_id "YOR174W_id002"; gene_id "YOR174W"; gene_name "MED4"; transcript_biotype "protein_coding"; +chrXV SGD exon 658459 659636 . + . transcript_id "YOR174W_id002"; gene_id "YOR174W"; gene_name "MED4"; +chrXV SGD transcript 658747 659601 . + . transcript_id "YOR174W_id001"; gene_id "YOR174W"; gene_name "MED4"; transcript_biotype "protein_coding"; +chrXV SGD exon 658747 659601 . + 0 transcript_id "YOR174W_id001"; gene_name "MED4"; gene_id "YOR174W"; +chrXV SGD gene 659653 662143 . - . gene_id "YOR175C"; gene_biotype "protein_coding"; +chrXV SGD transcript 659653 662143 . - . transcript_id "YOR175C_id001"; gene_id "YOR175C"; gene_name "ALE1"; transcript_biotype "protein_coding"; +chrXV SGD exon 659653 662143 . - . transcript_id "YOR175C_id001"; gene_id "YOR175C"; gene_name "ALE1"; +chrXV SGD transcript 659815 661674 . - . transcript_id "YOR175C_id002"; gene_id "YOR175C"; gene_name "ALE1"; transcript_biotype "protein_coding"; +chrXV SGD exon 659815 661674 . - 0 transcript_id "YOR175C_id002"; gene_name "ALE1"; gene_id "YOR175C"; +chrXV SGD gene 662290 663756 . + . gene_id "YOR176W"; gene_biotype "protein_coding"; +chrXV SGD transcript 662290 663756 . + . transcript_id "YOR176W_id002"; gene_id "YOR176W"; gene_name "HEM15"; transcript_biotype "protein_coding"; +chrXV SGD exon 662290 663756 . + . transcript_id "YOR176W_id002"; gene_id "YOR176W"; gene_name "HEM15"; +chrXV SGD transcript 662401 663582 . + . transcript_id "YOR176W_id001"; gene_id "YOR176W"; gene_name "HEM15"; transcript_biotype "protein_coding"; +chrXV SGD exon 662401 663582 . + 0 transcript_id "YOR176W_id001"; gene_name "HEM15"; gene_id "YOR176W"; +chrXV SGD gene 663812 663885 . - . gene_id "YNCO0021C"; gene_biotype "ncRNA"; +chrXV SGD transcript 663812 663885 . - . transcript_id "YNCO0021C_tRNA"; gene_id "YNCO0021C"; transcript_biotype "ncRNA"; +chrXV SGD exon 663812 663885 . - . transcript_id "YNCO0021C_tRNA"; gene_id "YNCO0021C"; +chrXV SGD gene 665785 667179 . - . gene_id "YOR177C"; gene_biotype "protein_coding"; +chrXV SGD transcript 665785 667179 . - . transcript_id "YOR177C_mRNA"; gene_id "YOR177C"; gene_name "MPC54"; transcript_biotype "protein_coding"; +chrXV SGD CDS 665785 667179 . - 0 transcript_id "YOR177C_mRNA"; gene_name "MPC54"; gene_id "YOR177C"; +chrXV SGD gene 667860 670241 . - . gene_id "YOR178C"; gene_biotype "protein_coding"; +chrXV SGD transcript 667860 670241 . - . transcript_id "YOR178C_id001"; gene_id "YOR178C"; gene_name "GAC1"; transcript_biotype "protein_coding"; +chrXV SGD exon 667860 670241 . - 0 transcript_id "YOR178C_id001"; gene_name "GAC1"; gene_id "YOR178C"; +chrXV SGD gene 671369 672459 . - . gene_id "YOR179C"; gene_biotype "protein_coding"; +chrXV SGD transcript 671369 672459 . - . transcript_id "YOR179C_id001"; gene_id "YOR179C"; gene_name "SYC1"; transcript_biotype "protein_coding"; +chrXV SGD exon 671369 672459 . - . transcript_id "YOR179C_id001"; gene_id "YOR179C"; gene_name "SYC1"; +chrXV SGD transcript 671845 672411 . - . transcript_id "YOR179C_id002"; gene_id "YOR179C"; gene_name "SYC1"; transcript_biotype "protein_coding"; +chrXV SGD exon 671845 672411 . - 0 transcript_id "YOR179C_id002"; gene_name "SYC1"; gene_id "YOR179C"; +chrXV SGD gene 674095 675668 . - . gene_id "YOR180C"; gene_biotype "protein_coding"; +chrXV SGD transcript 674095 675668 . - . transcript_id "YOR180C_id003"; gene_id "YOR180C"; gene_name "DCI1"; transcript_biotype "protein_coding"; +chrXV SGD exon 674095 675668 . - . transcript_id "YOR180C_id003"; gene_id "YOR180C"; gene_name "DCI1"; +chrXV SGD transcript 674352 675167 . - . transcript_id "YOR180C_id001"; gene_id "YOR180C"; gene_name "DCI1"; transcript_biotype "protein_coding"; +chrXV SGD exon 674352 675167 . - 0 transcript_id "YOR180C_id001"; gene_name "DCI1"; gene_id "YOR180C"; +chrXV SGD gene 675939 677840 . + . gene_id "YOR181W"; gene_biotype "protein_coding"; +chrXV SGD transcript 675939 677840 . + . transcript_id "YOR181W_id001"; gene_id "YOR181W"; gene_name "LAS17"; transcript_biotype "protein_coding"; +chrXV SGD exon 675939 677840 . + 0 transcript_id "YOR181W_id001"; gene_name "LAS17"; gene_id "YOR181W"; +chrXV SGD gene 678125 679173 . - . gene_id "YOR182C"; gene_biotype "protein_coding"; +chrXV SGD transcript 678125 679173 . - . transcript_id "YOR182C_id002"; gene_id "YOR182C"; gene_name "RPS30B"; transcript_biotype "protein_coding"; +chrXV SGD exon 678125 679173 . - . transcript_id "YOR182C_id002"; gene_id "YOR182C"; gene_name "RPS30B"; +chrXV SGD transcript 678191 678793 . - . transcript_id "YOR182C_id001"; gene_id "YOR182C"; gene_name "RPS30B"; transcript_biotype "protein_coding"; +chrXV SGD exon 678191 678379 . - 0 transcript_id "YOR182C_id001"; gene_name "RPS30B"; gene_id "YOR182C"; +chrXV SGD exon 678791 678793 . - 0 transcript_id "YOR182C_id001"; gene_name "RPS30B"; gene_id "YOR182C"; +chrXV SGD gene 678872 679261 . + . gene_id "YOR183W"; gene_biotype "protein_coding"; +chrXV SGD transcript 678872 679261 . + . transcript_id "YOR183W_id001"; gene_id "YOR183W"; gene_name "FYV12"; transcript_biotype "protein_coding"; +chrXV SGD exon 678872 679261 . + 0 transcript_id "YOR183W_id001"; gene_name "FYV12"; gene_id "YOR183W"; +chrXV SGD gene 679235 680681 . + . gene_id "YOR184W"; gene_biotype "protein_coding"; +chrXV SGD transcript 679235 680681 . + . transcript_id "YOR184W_id003"; gene_id "YOR184W"; gene_name "SER1"; transcript_biotype "protein_coding"; +chrXV SGD exon 679235 680681 . + . transcript_id "YOR184W_id003"; gene_id "YOR184W"; gene_name "SER1"; +chrXV SGD transcript 679357 680544 . + . transcript_id "YOR184W_id001"; gene_id "YOR184W"; gene_name "SER1"; transcript_biotype "protein_coding"; +chrXV SGD exon 679357 680544 . + 0 transcript_id "YOR184W_id001"; gene_name "SER1"; gene_id "YOR184W"; +chrXV SGD gene 680685 680866 . - . gene_id "YNCO0022C"; gene_biotype "ncRNA"; +chrXV SGD transcript 680685 680866 . - . transcript_id "YNCO0022C_snoRNA"; gene_id "YNCO0022C"; gene_name "SNR36"; transcript_biotype "ncRNA"; +chrXV SGD exon 680685 680866 . - . transcript_id "YNCO0022C_snoRNA"; gene_name "SNR36"; gene_id "YNCO0022C"; +chrXV SGD gene 681271 682170 . - . gene_id "YOR185C"; gene_biotype "protein_coding"; +chrXV SGD transcript 681271 682170 . - . transcript_id "YOR185C_id004"; gene_id "YOR185C"; gene_name "GSP2"; transcript_biotype "protein_coding"; +chrXV SGD exon 681271 682170 . - . transcript_id "YOR185C_id004"; gene_id "YOR185C"; gene_name "GSP2"; +chrXV SGD transcript 681444 682106 . - . transcript_id "YOR185C_id001"; gene_id "YOR185C"; gene_name "GSP2"; transcript_biotype "protein_coding"; +chrXV SGD exon 681444 682106 . - 0 transcript_id "YOR185C_id001"; gene_name "GSP2"; gene_id "YOR185C"; +chrXV SGD gene 682430 683654 . + . gene_id "YOR186W"; gene_biotype "protein_coding"; +chrXV SGD transcript 682430 683654 . + . transcript_id "YOR186W_id001"; gene_id "YOR186W"; transcript_biotype "protein_coding"; +chrXV SGD exon 682430 683654 . + . transcript_id "YOR186W_id001"; gene_id "YOR186W"; +chrXV SGD transcript 683111 683545 . + . transcript_id "YOR186W_id002"; gene_id "YOR186W"; transcript_biotype "protein_coding"; +chrXV SGD exon 683111 683545 . + 0 transcript_id "YOR186W_id002"; gene_id "YOR186W"; +chrXV SGD gene 683329 683538 . - . gene_id "YOR186C-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 683329 683538 . - . transcript_id "YOR186C-A_id001"; gene_id "YOR186C-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 683329 683538 . - 0 transcript_id "YOR186C-A_id001"; gene_id "YOR186C-A"; +chrXV SGD gene 683914 685563 . + . gene_id "YOR187W"; gene_biotype "protein_coding"; +chrXV SGD transcript 683914 685563 . + . transcript_id "YOR187W_id002"; gene_id "YOR187W"; gene_name "TUF1"; transcript_biotype "protein_coding"; +chrXV SGD exon 683914 685563 . + . transcript_id "YOR187W_id002"; gene_id "YOR187W"; gene_name "TUF1"; +chrXV SGD transcript 684030 685343 . + . transcript_id "YOR187W_id001"; gene_id "YOR187W"; gene_name "TUF1"; transcript_biotype "protein_coding"; +chrXV SGD exon 684030 685343 . + 0 transcript_id "YOR187W_id001"; gene_name "TUF1"; gene_id "YOR187W"; +chrXV SGD gene 685671 689310 . + . gene_id "YOR188W"; gene_biotype "protein_coding"; +chrXV SGD transcript 685671 689310 . + . transcript_id "YOR188W_id002"; gene_id "YOR188W"; gene_name "MSB1"; transcript_biotype "protein_coding"; +chrXV SGD exon 685671 689310 . + . transcript_id "YOR188W_id002"; gene_id "YOR188W"; gene_name "MSB1"; +chrXV SGD transcript 685767 689180 . + . transcript_id "YOR188W_id001"; gene_id "YOR188W"; gene_name "MSB1"; transcript_biotype "protein_coding"; +chrXV SGD exon 685767 689180 . + 0 transcript_id "YOR188W_id001"; gene_name "MSB1"; gene_id "YOR188W"; +chrXV SGD gene 689611 690848 . + . gene_id "YOR189W"; gene_biotype "protein_coding"; +chrXV SGD transcript 689611 690848 . + . transcript_id "YOR189W_id001"; gene_id "YOR189W"; gene_name "IES4"; transcript_biotype "protein_coding"; +chrXV SGD exon 689611 690848 . + . transcript_id "YOR189W_id001"; gene_id "YOR189W"; gene_name "IES4"; +chrXV SGD transcript 689624 689974 . + . transcript_id "YOR189W_id004"; gene_id "YOR189W"; gene_name "IES4"; transcript_biotype "protein_coding"; +chrXV SGD exon 689624 689974 . + 0 transcript_id "YOR189W_id004"; gene_name "IES4"; gene_id "YOR189W"; +chrXV SGD gene 690332 692299 . + . gene_id "YOR190W"; gene_biotype "protein_coding"; +chrXV SGD transcript 690332 692299 . + . transcript_id "YOR190W_id001"; gene_id "YOR190W"; gene_name "SPR1"; transcript_biotype "protein_coding"; +chrXV SGD exon 690332 692299 . + . transcript_id "YOR190W_id001"; gene_id "YOR190W"; gene_name "SPR1"; +chrXV SGD transcript 690695 692032 . + . transcript_id "YOR190W_id003"; gene_id "YOR190W"; gene_name "SPR1"; transcript_biotype "protein_coding"; +chrXV SGD exon 690695 692032 . + 0 transcript_id "YOR190W_id003"; gene_name "SPR1"; gene_id "YOR190W"; +chrXV SGD gene 692475 697334 . + . gene_id "YOR191W"; gene_biotype "protein_coding"; +chrXV SGD transcript 692475 697334 . + . transcript_id "YOR191W_mRNA"; gene_id "YOR191W"; gene_name "ULS1"; transcript_biotype "protein_coding"; +chrXV SGD CDS 692475 697334 . + 0 transcript_id "YOR191W_mRNA"; gene_name "ULS1"; gene_id "YOR191W"; +chrXV SGD gene 698768 700567 . - . gene_id "YOR192C"; gene_biotype "protein_coding"; +chrXV SGD transcript 698768 700567 . - . transcript_id "YOR192C_id001"; gene_id "YOR192C"; gene_name "THI72"; transcript_biotype "protein_coding"; +chrXV SGD exon 698768 700567 . - 0 transcript_id "YOR192C_id001"; gene_name "THI72"; gene_id "YOR192C"; +chrXV SGD gene 703988 704224 . - . gene_id "YOR192C-C"; gene_biotype "protein_coding"; +chrXV SGD transcript 703988 704224 . - . transcript_id "YOR192C-C_mRNA"; gene_id "YOR192C-C"; transcript_biotype "protein_coding"; +chrXV SGD CDS 703988 704224 . - 0 transcript_id "YOR192C-C_mRNA"; gene_id "YOR192C-C"; +chrXV SGD gene 704419 709732 . - . gene_id "YOR192C-B"; gene_biotype "protein_coding"; +chrXV SGD transcript 704419 709732 . - . transcript_id "YOR192C-B_dummy"; gene_id "YOR192C-B"; transcript_biotype "protein_coding"; +chrXV SGD exon 704419 708438 . - 0 transcript_id "YOR192C-B_dummy"; gene_id "YOR192C-B"; +chrXV SGD exon 708440 709732 . - 0 transcript_id "YOR192C-B_dummy"; gene_id "YOR192C-B"; +chrXV SGD gene 708416 709732 . - . gene_id "YOR192C-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 708416 709732 . - . transcript_id "YOR192C-A_dummy"; gene_id "YOR192C-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 708416 709732 . - 0 transcript_id "YOR192C-A_dummy"; gene_id "YOR192C-A"; +chrXV SGD gene 710201 710272 . + . gene_id "YNCO0023W"; gene_biotype "ncRNA"; +chrXV SGD transcript 710201 710272 . + . transcript_id "YNCO0023W_tRNA"; gene_id "YNCO0023W"; gene_name "IMT1"; transcript_biotype "ncRNA"; +chrXV SGD exon 710201 710272 . + . transcript_id "YNCO0023W_tRNA"; gene_name "IMT1"; gene_id "YNCO0023W"; +chrXV SGD gene 710377 711690 . + . gene_id "YOR193W"; gene_biotype "protein_coding"; +chrXV SGD transcript 710377 711690 . + . transcript_id "YOR193W_id002"; gene_id "YOR193W"; gene_name "PEX27"; transcript_biotype "protein_coding"; +chrXV SGD exon 710377 711690 . + . transcript_id "YOR193W_id002"; gene_id "YOR193W"; gene_name "PEX27"; +chrXV SGD transcript 710446 711576 . + . transcript_id "YOR193W_id001"; gene_id "YOR193W"; gene_name "PEX27"; transcript_biotype "protein_coding"; +chrXV SGD exon 710446 711576 . + 0 transcript_id "YOR193W_id001"; gene_name "PEX27"; gene_id "YOR193W"; +chrXV SGD gene 711310 712620 . - . gene_id "YOR194C"; gene_biotype "protein_coding"; +chrXV SGD transcript 711310 712620 . - . transcript_id "YOR194C_id001"; gene_id "YOR194C"; gene_name "TOA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 711310 712620 . - . transcript_id "YOR194C_id001"; gene_id "YOR194C"; gene_name "TOA1"; +chrXV SGD transcript 711683 712543 . - . transcript_id "YOR194C_id002"; gene_id "YOR194C"; gene_name "TOA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 711683 712543 . - 0 transcript_id "YOR194C_id002"; gene_name "TOA1"; gene_id "YOR194C"; +chrXV SGD gene 712796 715555 . + . gene_id "YOR195W"; gene_biotype "protein_coding"; +chrXV SGD transcript 712796 715555 . + . transcript_id "YOR195W_id004"; gene_id "YOR195W"; gene_name "SLK19"; transcript_biotype "protein_coding"; +chrXV SGD exon 712796 715555 . + . transcript_id "YOR195W_id004"; gene_id "YOR195W"; gene_name "SLK19"; +chrXV SGD transcript 712866 715331 . + . transcript_id "YOR195W_id001"; gene_id "YOR195W"; gene_name "SLK19"; transcript_biotype "protein_coding"; +chrXV SGD exon 712866 715331 . + 0 transcript_id "YOR195W_id001"; gene_name "SLK19"; gene_id "YOR195W"; +chrXV SGD gene 715193 716861 . - . gene_id "YOR196C"; gene_biotype "protein_coding"; +chrXV SGD transcript 715193 716861 . - . transcript_id "YOR196C_id001"; gene_id "YOR196C"; gene_name "LIP5"; transcript_biotype "protein_coding"; +chrXV SGD exon 715193 716861 . - . transcript_id "YOR196C_id001"; gene_id "YOR196C"; gene_name "LIP5"; +chrXV SGD transcript 715593 716837 . - . transcript_id "YOR196C_id004"; gene_id "YOR196C"; gene_name "LIP5"; transcript_biotype "protein_coding"; +chrXV SGD exon 715593 716837 . - 0 transcript_id "YOR196C_id004"; gene_name "LIP5"; gene_id "YOR196C"; +chrXV SGD gene 717070 718573 . + . gene_id "YOR197W"; gene_biotype "protein_coding"; +chrXV SGD transcript 717070 718573 . + . transcript_id "YOR197W_id004"; gene_id "YOR197W"; gene_name "MCA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 717070 718573 . + . transcript_id "YOR197W_id004"; gene_id "YOR197W"; gene_name "MCA1"; +chrXV SGD transcript 717086 718384 . + . transcript_id "YOR197W_id001"; gene_id "YOR197W"; gene_name "MCA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 717086 718384 . + 0 transcript_id "YOR197W_id001"; gene_name "MCA1"; gene_id "YOR197W"; +chrXV SGD gene 718427 720298 . - . gene_id "YOR198C"; gene_biotype "protein_coding"; +chrXV SGD transcript 718427 720298 . - . transcript_id "YOR198C_id005"; gene_id "YOR198C"; gene_name "BFR1"; transcript_biotype "protein_coding"; +chrXV SGD exon 718427 720298 . - . transcript_id "YOR198C_id005"; gene_id "YOR198C"; gene_name "BFR1"; +chrXV SGD transcript 718653 720065 . - . transcript_id "YOR198C_id001"; gene_id "YOR198C"; gene_name "BFR1"; transcript_biotype "protein_coding"; +chrXV SGD exon 718653 720065 . - 0 transcript_id "YOR198C_id001"; gene_name "BFR1"; gene_id "YOR198C"; +chrXV SGD gene 720181 720510 . + . gene_id "YOR199W"; gene_biotype "protein_coding"; +chrXV SGD transcript 720181 720510 . + . transcript_id "YOR199W_mRNA"; gene_id "YOR199W"; transcript_biotype "protein_coding"; +chrXV SGD CDS 720181 720510 . + 0 transcript_id "YOR199W_mRNA"; gene_id "YOR199W"; +chrXV SGD gene 720344 721771 . - . gene_id "YOR201C"; gene_biotype "protein_coding"; +chrXV SGD transcript 720344 721771 . - . transcript_id "YOR201C_id001"; gene_id "YOR201C"; gene_name "MRM1"; transcript_biotype "protein_coding"; +chrXV SGD exon 720344 721771 . - . transcript_id "YOR201C_id001"; gene_id "YOR201C"; gene_name "MRM1"; +chrXV SGD gene 720417 720815 . + . gene_id "YOR200W"; gene_biotype "protein_coding"; +chrXV SGD transcript 720417 720815 . + . transcript_id "YOR200W_mRNA"; gene_id "YOR200W"; transcript_biotype "protein_coding"; +chrXV SGD CDS 720417 720815 . + 0 transcript_id "YOR200W_mRNA"; gene_id "YOR200W"; +chrXV SGD transcript 720470 721708 . - . transcript_id "YOR201C_id002"; gene_id "YOR201C"; gene_name "MRM1"; transcript_biotype "protein_coding"; +chrXV SGD exon 720470 721708 . - 0 transcript_id "YOR201C_id002"; gene_name "MRM1"; gene_id "YOR201C"; +chrXV SGD gene 721923 722808 . + . gene_id "YOR202W"; gene_biotype "protein_coding"; +chrXV SGD transcript 721923 722808 . + . transcript_id "YOR202W_id002"; gene_id "YOR202W"; gene_name "HIS3"; transcript_biotype "protein_coding"; +chrXV SGD exon 721923 722808 . + . transcript_id "YOR202W_id002"; gene_id "YOR202W"; gene_name "HIS3"; +chrXV SGD transcript 721946 722608 . + . transcript_id "YOR202W_id001"; gene_id "YOR202W"; gene_name "HIS3"; transcript_biotype "protein_coding"; +chrXV SGD exon 721946 722608 . + 0 transcript_id "YOR202W_id001"; gene_name "HIS3"; gene_id "YOR202W"; +chrXV SGD gene 722565 722918 . + . gene_id "YOR203W"; gene_biotype "protein_coding"; +chrXV SGD transcript 722565 722918 . + . transcript_id "YOR203W_mRNA"; gene_id "YOR203W"; transcript_biotype "protein_coding"; +chrXV SGD CDS 722565 722918 . + 0 transcript_id "YOR203W_mRNA"; gene_id "YOR203W"; +chrXV SGD gene 722892 725507 . + . gene_id "YOR204W"; gene_biotype "protein_coding"; +chrXV SGD transcript 722892 725507 . + . transcript_id "YOR204W_id001"; gene_id "YOR204W"; gene_name "DED1"; transcript_biotype "protein_coding"; +chrXV SGD exon 722892 725507 . + . transcript_id "YOR204W_id001"; gene_id "YOR204W"; gene_name "DED1"; +chrXV SGD transcript 722911 724725 . + . transcript_id "YOR204W_id003"; gene_id "YOR204W"; gene_name "DED1"; transcript_biotype "protein_coding"; +chrXV SGD exon 722911 724725 . + 0 transcript_id "YOR204W_id003"; gene_name "DED1"; gene_id "YOR204W"; +chrXV SGD gene 725484 727724 . - . gene_id "YOR205C"; gene_biotype "protein_coding"; +chrXV SGD transcript 725484 727724 . - . transcript_id "YOR205C_id001"; gene_id "YOR205C"; gene_name "GEP3"; transcript_biotype "protein_coding"; +chrXV SGD exon 725484 727724 . - . transcript_id "YOR205C_id001"; gene_id "YOR205C"; gene_name "GEP3"; +chrXV SGD transcript 725564 727234 . - . transcript_id "YOR205C_id003"; gene_id "YOR205C"; gene_name "GEP3"; transcript_biotype "protein_coding"; +chrXV SGD exon 725564 727234 . - 0 transcript_id "YOR205C_id003"; gene_name "GEP3"; gene_id "YOR205C"; +chrXV SGD gene 727474 729731 . + . gene_id "YOR206W"; gene_biotype "protein_coding"; +chrXV SGD transcript 727474 729731 . + . transcript_id "YOR206W_id001"; gene_id "YOR206W"; gene_name "NOC2"; transcript_biotype "protein_coding"; +chrXV SGD exon 727474 729731 . + . transcript_id "YOR206W_id001"; gene_id "YOR206W"; gene_name "NOC2"; +chrXV SGD transcript 727512 729644 . + . transcript_id "YOR206W_id003"; gene_id "YOR206W"; gene_name "NOC2"; transcript_biotype "protein_coding"; +chrXV SGD exon 727512 729644 . + 0 transcript_id "YOR206W_id003"; gene_name "NOC2"; gene_id "YOR206W"; +chrXV SGD gene 729879 733522 . - . gene_id "YOR207C"; gene_biotype "protein_coding"; +chrXV SGD transcript 729879 733522 . - . transcript_id "YOR207C_id009"; gene_id "YOR207C"; gene_name "RET1"; transcript_biotype "protein_coding"; +chrXV SGD exon 729879 733522 . - . transcript_id "YOR207C_id009"; gene_id "YOR207C"; gene_name "RET1"; +chrXV SGD transcript 730008 733457 . - . transcript_id "YOR207C_id001"; gene_id "YOR207C"; gene_name "RET1"; transcript_biotype "protein_coding"; +chrXV SGD exon 730008 733457 . - 0 transcript_id "YOR207C_id001"; gene_name "RET1"; gene_id "YOR207C"; +chrXV SGD gene 733925 736177 . + . gene_id "YOR208W"; gene_biotype "protein_coding"; +chrXV SGD transcript 733925 736177 . + . transcript_id "YOR208W_id001"; gene_id "YOR208W"; gene_name "PTP2"; transcript_biotype "protein_coding"; +chrXV SGD exon 733925 736177 . + 0 transcript_id "YOR208W_id001"; gene_name "PTP2"; gene_id "YOR208W"; +chrXV SGD gene 736219 737877 . - . gene_id "YOR209C"; gene_biotype "protein_coding"; +chrXV SGD transcript 736219 737877 . - . transcript_id "YOR209C_id004"; gene_id "YOR209C"; gene_name "NPT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 736219 737877 . - . transcript_id "YOR209C_id004"; gene_id "YOR209C"; gene_name "NPT1"; +chrXV SGD transcript 736437 737726 . - . transcript_id "YOR209C_id001"; gene_id "YOR209C"; gene_name "NPT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 736437 737726 . - 0 transcript_id "YOR209C_id001"; gene_name "NPT1"; gene_id "YOR209C"; +chrXV SGD gene 738098 738847 . + . gene_id "YOR210W"; gene_biotype "protein_coding"; +chrXV SGD transcript 738098 738847 . + . transcript_id "YOR210W_id001"; gene_id "YOR210W"; gene_name "RPB10"; transcript_biotype "protein_coding"; +chrXV SGD exon 738098 738847 . + . transcript_id "YOR210W_id001"; gene_id "YOR210W"; gene_name "RPB10"; +chrXV SGD transcript 738320 738532 . + . transcript_id "YOR210W_id002"; gene_id "YOR210W"; gene_name "RPB10"; transcript_biotype "protein_coding"; +chrXV SGD exon 738320 738532 . + 0 transcript_id "YOR210W_id002"; gene_name "RPB10"; gene_id "YOR210W"; +chrXV SGD gene 738800 741776 . - . gene_id "YOR211C"; gene_biotype "protein_coding"; +chrXV SGD transcript 738800 741776 . - . transcript_id "YOR211C_id001"; gene_id "YOR211C"; gene_name "MGM1"; transcript_biotype "protein_coding"; +chrXV SGD exon 738800 741776 . - . transcript_id "YOR211C_id001"; gene_id "YOR211C"; gene_name "MGM1"; +chrXV SGD transcript 738924 741569 . - . transcript_id "YOR211C_id002"; gene_id "YOR211C"; gene_name "MGM1"; transcript_biotype "protein_coding"; +chrXV SGD exon 738924 741569 . - 0 transcript_id "YOR211C_id002"; gene_name "MGM1"; gene_id "YOR211C"; +chrXV SGD gene 742687 744329 . + . gene_id "YOR212W"; gene_biotype "protein_coding"; +chrXV SGD transcript 742687 744329 . + . transcript_id "YOR212W_id002"; gene_id "YOR212W"; gene_name "STE4"; transcript_biotype "protein_coding"; +chrXV SGD exon 742687 744329 . + . transcript_id "YOR212W_id002"; gene_id "YOR212W"; gene_name "STE4"; +chrXV SGD transcript 742910 744181 . + . transcript_id "YOR212W_id001"; gene_id "YOR212W"; gene_name "STE4"; transcript_biotype "protein_coding"; +chrXV SGD exon 742910 744181 . + 0 transcript_id "YOR212W_id001"; gene_name "STE4"; gene_id "YOR212W"; +chrXV SGD gene 744165 745399 . - . gene_id "YOR213C"; gene_biotype "protein_coding"; +chrXV SGD transcript 744165 745399 . - . transcript_id "YOR213C_id003"; gene_id "YOR213C"; gene_name "SAS5"; transcript_biotype "protein_coding"; +chrXV SGD exon 744165 745399 . - . transcript_id "YOR213C_id003"; gene_id "YOR213C"; gene_name "SAS5"; +chrXV SGD transcript 744535 745281 . - . transcript_id "YOR213C_id001"; gene_id "YOR213C"; gene_name "SAS5"; transcript_biotype "protein_coding"; +chrXV SGD exon 744535 745281 . - 0 transcript_id "YOR213C_id001"; gene_name "SAS5"; gene_id "YOR213C"; +chrXV SGD gene 745593 746303 . - . gene_id "YOR214C"; gene_biotype "protein_coding"; +chrXV SGD transcript 745593 746303 . - . transcript_id "YOR214C_mRNA"; gene_id "YOR214C"; gene_name "SPR2"; transcript_biotype "protein_coding"; +chrXV SGD CDS 745593 746303 . - 0 transcript_id "YOR214C_mRNA"; gene_name "SPR2"; gene_id "YOR214C"; +chrXV SGD gene 746329 747312 . - . gene_id "YOR215C"; gene_biotype "protein_coding"; +chrXV SGD transcript 746329 747312 . - . transcript_id "YOR215C_id004"; gene_id "YOR215C"; gene_name "AIM41"; transcript_biotype "protein_coding"; +chrXV SGD exon 746329 747312 . - . transcript_id "YOR215C_id004"; gene_id "YOR215C"; gene_name "AIM41"; +chrXV SGD transcript 746725 747282 . - . transcript_id "YOR215C_id001"; gene_id "YOR215C"; gene_name "AIM41"; transcript_biotype "protein_coding"; +chrXV SGD exon 746725 747282 . - 0 transcript_id "YOR215C_id001"; gene_name "AIM41"; gene_id "YOR215C"; +chrXV SGD gene 747366 749039 . - . gene_id "YOR216C"; gene_biotype "protein_coding"; +chrXV SGD transcript 747366 749039 . - . transcript_id "YOR216C_id002"; gene_id "YOR216C"; gene_name "RUD3"; transcript_biotype "protein_coding"; +chrXV SGD exon 747366 749039 . - . transcript_id "YOR216C_id002"; gene_id "YOR216C"; gene_name "RUD3"; +chrXV SGD transcript 747525 748979 . - . transcript_id "YOR216C_id001"; gene_id "YOR216C"; gene_name "RUD3"; transcript_biotype "protein_coding"; +chrXV SGD exon 747525 748979 . - 0 transcript_id "YOR216C_id001"; gene_name "RUD3"; gene_id "YOR216C"; +chrXV SGD gene 749209 752291 . + . gene_id "YOR217W"; gene_biotype "protein_coding"; +chrXV SGD transcript 749209 752291 . + . transcript_id "YOR217W_id001"; gene_id "YOR217W"; gene_name "RFC1"; transcript_biotype "protein_coding"; +chrXV SGD exon 749209 752291 . + . transcript_id "YOR217W_id001"; gene_id "YOR217W"; gene_name "RFC1"; +chrXV SGD transcript 749301 751886 . + . transcript_id "YOR217W_id003"; gene_id "YOR217W"; gene_name "RFC1"; transcript_biotype "protein_coding"; +chrXV SGD exon 749301 751886 . + 0 transcript_id "YOR217W_id003"; gene_name "RFC1"; gene_id "YOR217W"; +chrXV SGD gene 751476 751895 . - . gene_id "YOR218C"; gene_biotype "protein_coding"; +chrXV SGD transcript 751476 751895 . - . transcript_id "YOR218C_mRNA"; gene_id "YOR218C"; transcript_biotype "protein_coding"; +chrXV SGD CDS 751476 751895 . - 0 transcript_id "YOR218C_mRNA"; gene_id "YOR218C"; +chrXV SGD gene 752214 755009 . - . gene_id "YOR219C"; gene_biotype "protein_coding"; +chrXV SGD transcript 752214 755009 . - . transcript_id "YOR219C_id001"; gene_id "YOR219C"; gene_name "STE13"; transcript_biotype "protein_coding"; +chrXV SGD exon 752214 755009 . - 0 transcript_id "YOR219C_id001"; gene_name "STE13"; gene_id "YOR219C"; +chrXV SGD gene 754933 756290 . + . gene_id "YOR220W"; gene_biotype "protein_coding"; +chrXV SGD transcript 754933 756290 . + . transcript_id "YOR220W_id004"; gene_id "YOR220W"; gene_name "RCN2"; transcript_biotype "protein_coding"; +chrXV SGD exon 754933 756290 . + . transcript_id "YOR220W_id004"; gene_id "YOR220W"; gene_name "RCN2"; +chrXV SGD transcript 755328 756125 . + . transcript_id "YOR220W_id001"; gene_id "YOR220W"; gene_name "RCN2"; transcript_biotype "protein_coding"; +chrXV SGD exon 755328 756125 . + 0 transcript_id "YOR220W_id001"; gene_name "RCN2"; gene_id "YOR220W"; +chrXV SGD gene 756268 757677 . - . gene_id "YOR221C"; gene_biotype "protein_coding"; +chrXV SGD transcript 756268 757677 . - . transcript_id "YOR221C_id001"; gene_id "YOR221C"; gene_name "MCT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 756268 757677 . - . transcript_id "YOR221C_id001"; gene_id "YOR221C"; gene_name "MCT1"; +chrXV SGD transcript 756476 757558 . - . transcript_id "YOR221C_id003"; gene_id "YOR221C"; gene_name "MCT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 756476 757558 . - 0 transcript_id "YOR221C_id003"; gene_name "MCT1"; gene_id "YOR221C"; +chrXV SGD gene 757821 759287 . + . gene_id "YOR222W"; gene_biotype "protein_coding"; +chrXV SGD transcript 757821 759287 . + . transcript_id "YOR222W_id002"; gene_id "YOR222W"; gene_name "ODC2"; transcript_biotype "protein_coding"; +chrXV SGD exon 757821 759287 . + . transcript_id "YOR222W_id002"; gene_id "YOR222W"; gene_name "ODC2"; +chrXV SGD transcript 758330 759253 . + . transcript_id "YOR222W_id001"; gene_id "YOR222W"; gene_name "ODC2"; transcript_biotype "protein_coding"; +chrXV SGD exon 758330 759253 . + 0 transcript_id "YOR222W_id001"; gene_name "ODC2"; gene_id "YOR222W"; +chrXV SGD gene 759326 759529 . - . gene_id "YNCO0024C"; gene_biotype "ncRNA"; +chrXV SGD transcript 759326 759529 . - . transcript_id "YNCO0024C_snoRNA"; gene_id "YNCO0024C"; gene_name "SNR35"; transcript_biotype "ncRNA"; +chrXV SGD exon 759326 759529 . - . transcript_id "YNCO0024C_snoRNA"; gene_name "SNR35"; gene_id "YNCO0024C"; +chrXV SGD gene 759646 760861 . + . gene_id "YOR223W"; gene_biotype "protein_coding"; +chrXV SGD transcript 759646 760861 . + . transcript_id "YOR223W_id001"; gene_id "YOR223W"; gene_name "DSC3"; transcript_biotype "protein_coding"; +chrXV SGD exon 759646 760861 . + . transcript_id "YOR223W_id001"; gene_id "YOR223W"; gene_name "DSC3"; +chrXV SGD gene 759751 761301 . - . gene_id "YOR224C"; gene_biotype "protein_coding"; +chrXV SGD transcript 759751 761301 . - . transcript_id "YOR224C_id001"; gene_id "YOR224C"; gene_name "RPB8"; transcript_biotype "protein_coding"; +chrXV SGD exon 759751 761301 . - . transcript_id "YOR224C_id001"; gene_id "YOR224C"; gene_name "RPB8"; +chrXV SGD transcript 759782 760660 . + . transcript_id "YOR223W_id004"; gene_id "YOR223W"; gene_name "DSC3"; transcript_biotype "protein_coding"; +chrXV SGD exon 759782 760660 . + 0 transcript_id "YOR223W_id004"; gene_name "DSC3"; gene_id "YOR223W"; +chrXV SGD transcript 760825 761265 . - . transcript_id "YOR224C_id004"; gene_id "YOR224C"; gene_name "RPB8"; transcript_biotype "protein_coding"; +chrXV SGD exon 760825 761265 . - 0 transcript_id "YOR224C_id004"; gene_name "RPB8"; gene_id "YOR224C"; +chrXV SGD gene 761392 761721 . + . gene_id "YOR225W"; gene_biotype "protein_coding"; +chrXV SGD transcript 761392 761721 . + . transcript_id "YOR225W_mRNA"; gene_id "YOR225W"; transcript_biotype "protein_coding"; +chrXV SGD CDS 761392 761721 . + 0 transcript_id "YOR225W_mRNA"; gene_id "YOR225W"; +chrXV SGD gene 761457 762386 . - . gene_id "YOR226C"; gene_biotype "protein_coding"; +chrXV SGD transcript 761457 762386 . - . transcript_id "YOR226C_id002"; gene_id "YOR226C"; gene_name "ISU2"; transcript_biotype "protein_coding"; +chrXV SGD exon 761457 762386 . - . transcript_id "YOR226C_id002"; gene_id "YOR226C"; gene_name "ISU2"; +chrXV SGD transcript 761614 762084 . - . transcript_id "YOR226C_id001"; gene_id "YOR226C"; gene_name "ISU2"; transcript_biotype "protein_coding"; +chrXV SGD exon 761614 762084 . - 0 transcript_id "YOR226C_id001"; gene_name "ISU2"; gene_id "YOR226C"; +chrXV SGD gene 762825 766565 . + . gene_id "YOR227W"; gene_biotype "protein_coding"; +chrXV SGD transcript 762825 766565 . + . transcript_id "YOR227W_id001"; gene_id "YOR227W"; gene_name "HER1"; transcript_biotype "protein_coding"; +chrXV SGD exon 762825 766565 . + 0 transcript_id "YOR227W_id001"; gene_name "HER1"; gene_id "YOR227W"; +chrXV SGD gene 766633 768049 . - . gene_id "YOR228C"; gene_biotype "protein_coding"; +chrXV SGD transcript 766633 768049 . - . transcript_id "YOR228C_id002"; gene_id "YOR228C"; gene_name "MCP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 766633 768049 . - . transcript_id "YOR228C_id002"; gene_id "YOR228C"; gene_name "MCP1"; +chrXV SGD transcript 766869 767777 . - . transcript_id "YOR228C_id001"; gene_id "YOR228C"; gene_name "MCP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 766869 767777 . - 0 transcript_id "YOR228C_id001"; gene_name "MCP1"; gene_id "YOR228C"; +chrXV SGD gene 768321 770085 . + . gene_id "YOR229W"; gene_biotype "protein_coding"; +chrXV SGD transcript 768321 770085 . + . transcript_id "YOR229W_id001"; gene_id "YOR229W"; gene_name "WTM2"; transcript_biotype "protein_coding"; +chrXV SGD exon 768321 770085 . + . transcript_id "YOR229W_id001"; gene_id "YOR229W"; gene_name "WTM2"; +chrXV SGD transcript 768409 769812 . + . transcript_id "YOR229W_id003"; gene_id "YOR229W"; gene_name "WTM2"; transcript_biotype "protein_coding"; +chrXV SGD exon 768409 769812 . + 0 transcript_id "YOR229W_id003"; gene_name "WTM2"; gene_id "YOR229W"; +chrXV SGD gene 770652 772302 . + . gene_id "YOR230W"; gene_biotype "protein_coding"; +chrXV SGD transcript 770652 772302 . + . transcript_id "YOR230W_id005"; gene_id "YOR230W"; gene_name "WTM1"; transcript_biotype "protein_coding"; +chrXV SGD exon 770652 772302 . + . transcript_id "YOR230W_id005"; gene_id "YOR230W"; gene_name "WTM1"; +chrXV SGD transcript 770800 772113 . + . transcript_id "YOR230W_id001"; gene_id "YOR230W"; gene_name "WTM1"; transcript_biotype "protein_coding"; +chrXV SGD exon 770800 772113 . + 0 transcript_id "YOR230W_id001"; gene_name "WTM1"; gene_id "YOR230W"; +chrXV SGD gene 772426 774375 . + . gene_id "YOR231W"; gene_biotype "protein_coding"; +chrXV SGD transcript 772426 774375 . + . transcript_id "YOR231W_id001"; gene_id "YOR231W"; gene_name "MKK1"; transcript_biotype "protein_coding"; +chrXV SGD exon 772426 774375 . + . transcript_id "YOR231W_id001"; gene_id "YOR231W"; gene_name "MKK1"; +chrXV SGD transcript 772601 774127 . + . transcript_id "YOR231W_id002"; gene_id "YOR231W"; gene_name "MKK1"; transcript_biotype "protein_coding"; +chrXV SGD exon 772601 774127 . + 0 transcript_id "YOR231W_id002"; gene_name "MKK1"; gene_id "YOR231W"; +chrXV SGD gene 773163 773363 . - . gene_id "YOR231C-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 773163 773363 . - . transcript_id "YOR231C-A_mRNA"; gene_id "YOR231C-A"; transcript_biotype "protein_coding"; +chrXV SGD CDS 773163 773363 . - 0 transcript_id "YOR231C-A_mRNA"; gene_id "YOR231C-A"; +chrXV SGD gene 774510 775586 . + . gene_id "YOR232W"; gene_biotype "protein_coding"; +chrXV SGD transcript 774510 775586 . + . transcript_id "YOR232W_id001"; gene_id "YOR232W"; gene_name "MGE1"; transcript_biotype "protein_coding"; +chrXV SGD exon 774510 775586 . + . transcript_id "YOR232W_id001"; gene_id "YOR232W"; gene_name "MGE1"; +chrXV SGD transcript 774573 775259 . + . transcript_id "YOR232W_id002"; gene_id "YOR232W"; gene_name "MGE1"; transcript_biotype "protein_coding"; +chrXV SGD exon 774573 775259 . + 0 transcript_id "YOR232W_id002"; gene_name "MGE1"; gene_id "YOR232W"; +chrXV SGD gene 775668 778315 . + . gene_id "YOR233W"; gene_biotype "protein_coding"; +chrXV SGD transcript 775668 778315 . + . transcript_id "YOR233W_id002"; gene_id "YOR233W"; gene_name "KIN4"; transcript_biotype "protein_coding"; +chrXV SGD exon 775668 778315 . + . transcript_id "YOR233W_id002"; gene_id "YOR233W"; gene_name "KIN4"; +chrXV SGD transcript 775846 778248 . + . transcript_id "YOR233W_id001"; gene_id "YOR233W"; gene_name "KIN4"; transcript_biotype "protein_coding"; +chrXV SGD exon 775846 778248 . + 0 transcript_id "YOR233W_id001"; gene_name "KIN4"; gene_id "YOR233W"; +chrXV SGD gene 778229 779426 . - . gene_id "YOR234C"; gene_biotype "protein_coding"; +chrXV SGD transcript 778229 779426 . - . transcript_id "YOR234C_id001"; gene_id "YOR234C"; gene_name "RPL33B"; transcript_biotype "protein_coding"; +chrXV SGD exon 778229 779426 . - . transcript_id "YOR234C_id001"; gene_id "YOR234C"; gene_name "RPL33B"; +chrXV SGD transcript 778555 779405 . - . transcript_id "YOR234C_id004"; gene_id "YOR234C"; gene_name "RPL33B"; transcript_biotype "protein_coding"; +chrXV SGD exon 778555 778859 . - 2 transcript_id "YOR234C_id004"; gene_name "RPL33B"; gene_id "YOR234C"; +chrXV SGD exon 779387 779405 . - 0 transcript_id "YOR234C_id004"; gene_name "RPL33B"; gene_id "YOR234C"; +chrXV SGD gene 779870 780184 . + . gene_id "YOR235W"; gene_biotype "protein_coding"; +chrXV SGD transcript 779870 780184 . + . transcript_id "YOR235W_mRNA"; gene_id "YOR235W"; gene_name "IRC13"; transcript_biotype "protein_coding"; +chrXV SGD CDS 779870 780184 . + 0 transcript_id "YOR235W_mRNA"; gene_name "IRC13"; gene_id "YOR235W"; +chrXV SGD gene 780107 780596 . + . gene_id "YNCO0025W"; gene_biotype "ncRNA"; +chrXV SGD transcript 780107 780596 . + . transcript_id "YNCO0025W_snoRNA"; gene_id "YNCO0025W"; gene_name "SNR17A"; transcript_biotype "ncRNA"; +chrXV SGD exon 780107 780120 . + . transcript_id "YNCO0025W_snoRNA"; gene_name "SNR17A"; gene_id "YNCO0025W"; +chrXV SGD exon 780278 780596 . + . transcript_id "YNCO0025W_snoRNA"; gene_name "SNR17A"; gene_id "YNCO0025W"; +chrXV SGD gene 780900 782010 . + . gene_id "YOR236W"; gene_biotype "protein_coding"; +chrXV SGD transcript 780900 782010 . + . transcript_id "YOR236W_id002"; gene_id "YOR236W"; gene_name "DFR1"; transcript_biotype "protein_coding"; +chrXV SGD exon 780900 782010 . + . transcript_id "YOR236W_id002"; gene_id "YOR236W"; gene_name "DFR1"; +chrXV SGD transcript 780906 781541 . + . transcript_id "YOR236W_id001"; gene_id "YOR236W"; gene_name "DFR1"; transcript_biotype "protein_coding"; +chrXV SGD exon 780906 781541 . + 0 transcript_id "YOR236W_id001"; gene_name "DFR1"; gene_id "YOR236W"; +chrXV SGD gene 781994 783298 . + . gene_id "YOR237W"; gene_biotype "protein_coding"; +chrXV SGD transcript 781994 783298 . + . transcript_id "YOR237W_id001"; gene_id "YOR237W"; gene_name "HES1"; transcript_biotype "protein_coding"; +chrXV SGD exon 781994 783298 . + 0 transcript_id "YOR237W_id001"; gene_name "HES1"; gene_id "YOR237W"; +chrXV SGD gene 783648 784829 . + . gene_id "YOR238W"; gene_biotype "protein_coding"; +chrXV SGD transcript 783648 784829 . + . transcript_id "YOR238W_id001"; gene_id "YOR238W"; transcript_biotype "protein_coding"; +chrXV SGD exon 783648 784829 . + . transcript_id "YOR238W_id001"; gene_id "YOR238W"; +chrXV SGD transcript 783677 784588 . + . transcript_id "YOR238W_id002"; gene_id "YOR238W"; transcript_biotype "protein_coding"; +chrXV SGD exon 783677 784588 . + 0 transcript_id "YOR238W_id002"; gene_id "YOR238W"; +chrXV SGD gene 784794 786973 . + . gene_id "YOR239W"; gene_biotype "protein_coding"; +chrXV SGD transcript 784794 786973 . + . transcript_id "YOR239W_id003"; gene_id "YOR239W"; gene_name "ABP140"; transcript_biotype "protein_coding"; +chrXV SGD exon 784794 786973 . + . transcript_id "YOR239W_id003"; gene_id "YOR239W"; gene_name "ABP140"; +chrXV SGD transcript 784857 786744 . + . transcript_id "YOR239W_id001"; gene_id "YOR239W"; gene_name "ABP140"; transcript_biotype "protein_coding"; +chrXV SGD exon 784857 785687 . + 0 transcript_id "YOR239W_id001"; gene_name "ABP140"; gene_id "YOR239W"; +chrXV SGD exon 785689 786744 . + 0 transcript_id "YOR239W_id001"; gene_name "ABP140"; gene_id "YOR239W"; +chrXV SGD gene 786995 788641 . + . gene_id "YOR241W"; gene_biotype "protein_coding"; +chrXV SGD transcript 786995 788641 . + . transcript_id "YOR241W_mRNA"; gene_id "YOR241W"; gene_name "MET7"; transcript_biotype "protein_coding"; +chrXV SGD CDS 786995 788641 . + 0 transcript_id "YOR241W_mRNA"; gene_name "MET7"; gene_id "YOR241W"; +chrXV SGD gene 788742 789857 . - . gene_id "YOR242C"; gene_biotype "protein_coding"; +chrXV SGD transcript 788742 789857 . - . transcript_id "YOR242C_mRNA"; gene_id "YOR242C"; gene_name "SSP2"; transcript_biotype "protein_coding"; +chrXV SGD CDS 788742 789857 . - 0 transcript_id "YOR242C_mRNA"; gene_name "SSP2"; gene_id "YOR242C"; +chrXV SGD gene 789838 792258 . - . gene_id "YOR243C"; gene_biotype "protein_coding"; +chrXV SGD transcript 789838 792258 . - . transcript_id "YOR243C_id002"; gene_id "YOR243C"; gene_name "PUS7"; transcript_biotype "protein_coding"; +chrXV SGD exon 789838 792258 . - . transcript_id "YOR243C_id002"; gene_id "YOR243C"; gene_name "PUS7"; +chrXV SGD transcript 790211 792241 . - . transcript_id "YOR243C_id001"; gene_id "YOR243C"; gene_name "PUS7"; transcript_biotype "protein_coding"; +chrXV SGD exon 790211 792241 . - 0 transcript_id "YOR243C_id001"; gene_name "PUS7"; gene_id "YOR243C"; +chrXV SGD gene 792473 794043 . + . gene_id "YOR244W"; gene_biotype "protein_coding"; +chrXV SGD transcript 792473 794043 . + . transcript_id "YOR244W_id002"; gene_id "YOR244W"; gene_name "ESA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 792473 794043 . + . transcript_id "YOR244W_id002"; gene_id "YOR244W"; gene_name "ESA1"; +chrXV SGD transcript 792531 793868 . + . transcript_id "YOR244W_id001"; gene_id "YOR244W"; gene_name "ESA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 792531 793868 . + 0 transcript_id "YOR244W_id001"; gene_name "ESA1"; gene_id "YOR244W"; +chrXV SGD gene 793908 795560 . - . gene_id "YOR245C"; gene_biotype "protein_coding"; +chrXV SGD transcript 793908 795560 . - . transcript_id "YOR245C_id002"; gene_id "YOR245C"; gene_name "DGA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 793908 795560 . - . transcript_id "YOR245C_id002"; gene_id "YOR245C"; gene_name "DGA1"; +chrXV SGD transcript 794076 795332 . - . transcript_id "YOR245C_id001"; gene_id "YOR245C"; gene_name "DGA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 794076 795332 . - 0 transcript_id "YOR245C_id001"; gene_name "DGA1"; gene_id "YOR245C"; +chrXV SGD gene 795638 796859 . - . gene_id "YOR246C"; gene_biotype "protein_coding"; +chrXV SGD transcript 795638 796859 . - . transcript_id "YOR246C_id002"; gene_id "YOR246C"; gene_name "ENV9"; transcript_biotype "protein_coding"; +chrXV SGD exon 795638 796859 . - . transcript_id "YOR246C_id002"; gene_id "YOR246C"; gene_name "ENV9"; +chrXV SGD transcript 795801 796793 . - . transcript_id "YOR246C_id001"; gene_id "YOR246C"; gene_name "ENV9"; transcript_biotype "protein_coding"; +chrXV SGD exon 795801 796793 . - 0 transcript_id "YOR246C_id001"; gene_name "ENV9"; gene_id "YOR246C"; +chrXV SGD gene 797676 798308 . + . gene_id "YOR247W"; gene_biotype "protein_coding"; +chrXV SGD transcript 797676 798308 . + . transcript_id "YOR247W_mRNA"; gene_id "YOR247W"; gene_name "SRL1"; transcript_biotype "protein_coding"; +chrXV SGD CDS 797676 798308 . + 0 transcript_id "YOR247W_mRNA"; gene_name "SRL1"; gene_id "YOR247W"; +chrXV SGD gene 797690 798529 . + . gene_id "YOR248W"; gene_biotype "protein_coding"; +chrXV SGD transcript 797690 798529 . + . transcript_id "YOR248W_id001"; gene_id "YOR248W"; transcript_biotype "protein_coding"; +chrXV SGD exon 797690 798529 . + . transcript_id "YOR248W_id001"; gene_id "YOR248W"; +chrXV SGD transcript 798013 798315 . + . transcript_id "YOR248W_id002"; gene_id "YOR248W"; transcript_biotype "protein_coding"; +chrXV SGD exon 798013 798315 . + 0 transcript_id "YOR248W_id002"; gene_id "YOR248W"; +chrXV SGD gene 798611 800775 . - . gene_id "YOR249C"; gene_biotype "protein_coding"; +chrXV SGD transcript 798611 800775 . - . transcript_id "YOR249C_id002"; gene_id "YOR249C"; gene_name "APC5"; transcript_biotype "protein_coding"; +chrXV SGD exon 798611 800775 . - . transcript_id "YOR249C_id002"; gene_id "YOR249C"; gene_name "APC5"; +chrXV SGD transcript 798674 800731 . - . transcript_id "YOR249C_id001"; gene_id "YOR249C"; gene_name "APC5"; transcript_biotype "protein_coding"; +chrXV SGD exon 798674 800731 . - 0 transcript_id "YOR249C_id001"; gene_name "APC5"; gene_id "YOR249C"; +chrXV SGD gene 800846 802351 . - . gene_id "YOR250C"; gene_biotype "protein_coding"; +chrXV SGD transcript 800846 802351 . - . transcript_id "YOR250C_id001"; gene_id "YOR250C"; gene_name "CLP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 800846 802351 . - . transcript_id "YOR250C_id001"; gene_id "YOR250C"; gene_name "CLP1"; +chrXV SGD transcript 800970 802307 . - . transcript_id "YOR250C_id003"; gene_id "YOR250C"; gene_name "CLP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 800970 802307 . - 0 transcript_id "YOR250C_id003"; gene_name "CLP1"; gene_id "YOR250C"; +chrXV SGD gene 802456 803687 . - . gene_id "YOR251C"; gene_biotype "protein_coding"; +chrXV SGD transcript 802456 803687 . - . transcript_id "YOR251C_id001"; gene_id "YOR251C"; gene_name "TUM1"; transcript_biotype "protein_coding"; +chrXV SGD exon 802456 803687 . - . transcript_id "YOR251C_id001"; gene_id "YOR251C"; gene_name "TUM1"; +chrXV SGD transcript 802550 803464 . - . transcript_id "YOR251C_id002"; gene_id "YOR251C"; gene_name "TUM1"; transcript_biotype "protein_coding"; +chrXV SGD exon 802550 803464 . - 0 transcript_id "YOR251C_id002"; gene_name "TUM1"; gene_id "YOR251C"; +chrXV SGD gene 803635 804366 . + . gene_id "YOR252W"; gene_biotype "protein_coding"; +chrXV SGD transcript 803635 804366 . + . transcript_id "YOR252W_id001"; gene_id "YOR252W"; gene_name "TMA16"; transcript_biotype "protein_coding"; +chrXV SGD exon 803635 804366 . + . transcript_id "YOR252W_id001"; gene_id "YOR252W"; gene_name "TMA16"; +chrXV SGD transcript 803667 804203 . + . transcript_id "YOR252W_id002"; gene_id "YOR252W"; gene_name "TMA16"; transcript_biotype "protein_coding"; +chrXV SGD exon 803667 804203 . + 0 transcript_id "YOR252W_id002"; gene_name "TMA16"; gene_id "YOR252W"; +chrXV SGD gene 804377 804907 . + . gene_id "YOR253W"; gene_biotype "protein_coding"; +chrXV SGD transcript 804377 804907 . + . transcript_id "YOR253W_id001"; gene_id "YOR253W"; gene_name "NAT5"; transcript_biotype "protein_coding"; +chrXV SGD exon 804377 804907 . + 0 transcript_id "YOR253W_id001"; gene_name "NAT5"; gene_id "YOR253W"; +chrXV SGD gene 804906 807067 . - . gene_id "YOR254C"; gene_biotype "protein_coding"; +chrXV SGD transcript 804906 807067 . - . transcript_id "YOR254C_id001"; gene_id "YOR254C"; gene_name "SEC63"; transcript_biotype "protein_coding"; +chrXV SGD exon 804906 807067 . - . transcript_id "YOR254C_id001"; gene_id "YOR254C"; gene_name "SEC63"; +chrXV SGD transcript 805032 807023 . - . transcript_id "YOR254C_id002"; gene_id "YOR254C"; gene_name "SEC63"; transcript_biotype "protein_coding"; +chrXV SGD exon 805032 807023 . - 0 transcript_id "YOR254C_id002"; gene_name "SEC63"; gene_id "YOR254C"; +chrXV SGD gene 807271 808107 . + . gene_id "YOR255W"; gene_biotype "protein_coding"; +chrXV SGD transcript 807271 808107 . + . transcript_id "YOR255W_id001"; gene_id "YOR255W"; gene_name "OSW1"; transcript_biotype "protein_coding"; +chrXV SGD exon 807271 808107 . + 0 transcript_id "YOR255W_id001"; gene_name "OSW1"; gene_id "YOR255W"; +chrXV SGD gene 808185 810855 . - . gene_id "YOR256C"; gene_biotype "protein_coding"; +chrXV SGD transcript 808185 810855 . - . transcript_id "YOR256C_id001"; gene_id "YOR256C"; gene_name "TRE2"; transcript_biotype "protein_coding"; +chrXV SGD exon 808185 810855 . - . transcript_id "YOR256C_id001"; gene_id "YOR256C"; gene_name "TRE2"; +chrXV SGD transcript 808254 810683 . - . transcript_id "YOR256C_id003"; gene_id "YOR256C"; gene_name "TRE2"; transcript_biotype "protein_coding"; +chrXV SGD exon 808254 810683 . - 0 transcript_id "YOR256C_id003"; gene_name "TRE2"; gene_id "YOR256C"; +chrXV SGD gene 810793 811553 . + . gene_id "YOR257W"; gene_biotype "protein_coding"; +chrXV SGD transcript 810793 811553 . + . transcript_id "YOR257W_id001"; gene_id "YOR257W"; gene_name "CDC31"; transcript_biotype "protein_coding"; +chrXV SGD exon 810793 811553 . + . transcript_id "YOR257W_id001"; gene_id "YOR257W"; gene_name "CDC31"; +chrXV SGD transcript 811008 811493 . + . transcript_id "YOR257W_id003"; gene_id "YOR257W"; gene_name "CDC31"; transcript_biotype "protein_coding"; +chrXV SGD exon 811008 811493 . + 0 transcript_id "YOR257W_id003"; gene_name "CDC31"; gene_id "YOR257W"; +chrXV SGD gene 811653 813393 . + . gene_id "YOR258W"; gene_biotype "protein_coding"; +chrXV SGD transcript 811653 813393 . + . transcript_id "YOR258W_id001"; gene_id "YOR258W"; gene_name "HNT3"; transcript_biotype "protein_coding"; +chrXV SGD exon 811653 813393 . + . transcript_id "YOR258W_id001"; gene_id "YOR258W"; gene_name "HNT3"; +chrXV SGD transcript 811671 812324 . + . transcript_id "YOR258W_id003"; gene_id "YOR258W"; gene_name "HNT3"; transcript_biotype "protein_coding"; +chrXV SGD exon 811671 812324 . + 0 transcript_id "YOR258W_id003"; gene_name "HNT3"; gene_id "YOR258W"; +chrXV SGD gene 812165 813757 . - . gene_id "YOR259C"; gene_biotype "protein_coding"; +chrXV SGD transcript 812165 813757 . - . transcript_id "YOR259C_id002"; gene_id "YOR259C"; gene_name "RPT4"; transcript_biotype "protein_coding"; +chrXV SGD exon 812165 813757 . - . transcript_id "YOR259C_id002"; gene_id "YOR259C"; gene_name "RPT4"; +chrXV SGD transcript 812395 813708 . - . transcript_id "YOR259C_id001"; gene_id "YOR259C"; gene_name "RPT4"; transcript_biotype "protein_coding"; +chrXV SGD exon 812395 813708 . - 0 transcript_id "YOR259C_id001"; gene_name "RPT4"; gene_id "YOR259C"; +chrXV SGD gene 813924 815938 . + . gene_id "YOR260W"; gene_biotype "protein_coding"; +chrXV SGD transcript 813924 815938 . + . transcript_id "YOR260W_id001"; gene_id "YOR260W"; gene_name "GCD1"; transcript_biotype "protein_coding"; +chrXV SGD exon 813924 815938 . + . transcript_id "YOR260W_id001"; gene_id "YOR260W"; gene_name "GCD1"; +chrXV SGD transcript 813984 815720 . + . transcript_id "YOR260W_id002"; gene_id "YOR260W"; gene_name "GCD1"; transcript_biotype "protein_coding"; +chrXV SGD exon 813984 815720 . + 0 transcript_id "YOR260W_id002"; gene_name "GCD1"; gene_id "YOR260W"; +chrXV SGD gene 815693 817024 . - . gene_id "YOR261C"; gene_biotype "protein_coding"; +chrXV SGD transcript 815693 817024 . - . transcript_id "YOR261C_id001"; gene_id "YOR261C"; gene_name "RPN8"; transcript_biotype "protein_coding"; +chrXV SGD exon 815693 817024 . - . transcript_id "YOR261C_id001"; gene_id "YOR261C"; gene_name "RPN8"; +chrXV SGD transcript 815915 816931 . - . transcript_id "YOR261C_id002"; gene_id "YOR261C"; gene_name "RPN8"; transcript_biotype "protein_coding"; +chrXV SGD exon 815915 816931 . - 0 transcript_id "YOR261C_id002"; gene_name "RPN8"; gene_id "YOR261C"; +chrXV SGD gene 817224 818447 . + . gene_id "YOR262W"; gene_biotype "protein_coding"; +chrXV SGD transcript 817224 818447 . + . transcript_id "YOR262W_id003"; gene_id "YOR262W"; gene_name "GPN2"; transcript_biotype "protein_coding"; +chrXV SGD exon 817224 818447 . + . transcript_id "YOR262W_id003"; gene_id "YOR262W"; gene_name "GPN2"; +chrXV SGD transcript 817292 818335 . + . transcript_id "YOR262W_id001"; gene_id "YOR262W"; gene_name "GPN2"; transcript_biotype "protein_coding"; +chrXV SGD exon 817292 818335 . + 0 transcript_id "YOR262W_id001"; gene_name "GPN2"; gene_id "YOR262W"; +chrXV SGD gene 818661 820334 . + . gene_id "YOR264W"; gene_biotype "protein_coding"; +chrXV SGD transcript 818661 820334 . + . transcript_id "YOR264W_id002"; gene_id "YOR264W"; gene_name "DSE3"; transcript_biotype "protein_coding"; +chrXV SGD exon 818661 820334 . + . transcript_id "YOR264W_id002"; gene_id "YOR264W"; gene_name "DSE3"; +chrXV SGD gene 818757 819164 . - . gene_id "YOR263C"; gene_biotype "protein_coding"; +chrXV SGD transcript 818757 819164 . - . transcript_id "YOR263C_mRNA"; gene_id "YOR263C"; transcript_biotype "protein_coding"; +chrXV SGD CDS 818757 819164 . - 0 transcript_id "YOR263C_mRNA"; gene_id "YOR263C"; +chrXV SGD transcript 818866 820158 . + . transcript_id "YOR264W_id001"; gene_id "YOR264W"; gene_name "DSE3"; transcript_biotype "protein_coding"; +chrXV SGD exon 818866 820158 . + 0 transcript_id "YOR264W_id001"; gene_name "DSE3"; gene_id "YOR264W"; +chrXV SGD gene 820383 821026 . + . gene_id "YOR265W"; gene_biotype "protein_coding"; +chrXV SGD transcript 820383 821026 . + . transcript_id "YOR265W_id001"; gene_id "YOR265W"; gene_name "RBL2"; transcript_biotype "protein_coding"; +chrXV SGD exon 820383 821026 . + . transcript_id "YOR265W_id001"; gene_id "YOR265W"; gene_name "RBL2"; +chrXV SGD transcript 820454 820774 . + . transcript_id "YOR265W_id003"; gene_id "YOR265W"; gene_name "RBL2"; transcript_biotype "protein_coding"; +chrXV SGD exon 820454 820774 . + 0 transcript_id "YOR265W_id003"; gene_name "RBL2"; gene_id "YOR265W"; +chrXV SGD gene 820919 822369 . + . gene_id "YOR266W"; gene_biotype "protein_coding"; +chrXV SGD transcript 820919 822369 . + . transcript_id "YOR266W_id002"; gene_id "YOR266W"; gene_name "PNT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 820919 822369 . + . transcript_id "YOR266W_id002"; gene_id "YOR266W"; gene_name "PNT1"; +chrXV SGD transcript 821023 822294 . + . transcript_id "YOR266W_id001"; gene_id "YOR266W"; gene_name "PNT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 821023 822294 . + 0 transcript_id "YOR266W_id001"; gene_name "PNT1"; gene_id "YOR266W"; +chrXV SGD gene 822408 825046 . - . gene_id "YOR267C"; gene_biotype "protein_coding"; +chrXV SGD transcript 822408 825046 . - . transcript_id "YOR267C_id008"; gene_id "YOR267C"; gene_name "HRK1"; transcript_biotype "protein_coding"; +chrXV SGD exon 822408 825046 . - . transcript_id "YOR267C_id008"; gene_id "YOR267C"; gene_name "HRK1"; +chrXV SGD transcript 822588 824867 . - . transcript_id "YOR267C_id001"; gene_id "YOR267C"; gene_name "HRK1"; transcript_biotype "protein_coding"; +chrXV SGD exon 822588 824867 . - 0 transcript_id "YOR267C_id001"; gene_name "HRK1"; gene_id "YOR267C"; +chrXV SGD gene 825534 825932 . - . gene_id "YOR268C"; gene_biotype "protein_coding"; +chrXV SGD transcript 825534 825932 . - . transcript_id "YOR268C_mRNA"; gene_id "YOR268C"; transcript_biotype "protein_coding"; +chrXV SGD CDS 825534 825932 . - 0 transcript_id "YOR268C_mRNA"; gene_id "YOR268C"; +chrXV SGD gene 826274 828046 . + . gene_id "YOR269W"; gene_biotype "protein_coding"; +chrXV SGD transcript 826274 828046 . + . transcript_id "YOR269W_id001"; gene_id "YOR269W"; gene_name "PAC1"; transcript_biotype "protein_coding"; +chrXV SGD exon 826274 828046 . + . transcript_id "YOR269W_id001"; gene_id "YOR269W"; gene_name "PAC1"; +chrXV SGD transcript 826385 827869 . + . transcript_id "YOR269W_id003"; gene_id "YOR269W"; gene_name "PAC1"; transcript_biotype "protein_coding"; +chrXV SGD exon 826385 827869 . + 0 transcript_id "YOR269W_id003"; gene_name "PAC1"; gene_id "YOR269W"; +chrXV SGD gene 827893 830756 . - . gene_id "YOR270C"; gene_biotype "protein_coding"; +chrXV SGD transcript 827893 830756 . - . transcript_id "YOR270C_id001"; gene_id "YOR270C"; gene_name "VPH1"; transcript_biotype "protein_coding"; +chrXV SGD exon 827893 830756 . - . transcript_id "YOR270C_id001"; gene_id "YOR270C"; gene_name "VPH1"; +chrXV SGD transcript 828052 830574 . - . transcript_id "YOR270C_id003"; gene_id "YOR270C"; gene_name "VPH1"; transcript_biotype "protein_coding"; +chrXV SGD exon 828052 830574 . - 0 transcript_id "YOR270C_id003"; gene_name "VPH1"; gene_id "YOR270C"; +chrXV SGD gene 830916 832159 . - . gene_id "YOR271C"; gene_biotype "protein_coding"; +chrXV SGD transcript 830916 832159 . - . transcript_id "YOR271C_id004"; gene_id "YOR271C"; gene_name "FSF1"; transcript_biotype "protein_coding"; +chrXV SGD exon 830916 832159 . - . transcript_id "YOR271C_id004"; gene_id "YOR271C"; gene_name "FSF1"; +chrXV SGD transcript 831059 832042 . - . transcript_id "YOR271C_id001"; gene_id "YOR271C"; gene_name "FSF1"; transcript_biotype "protein_coding"; +chrXV SGD exon 831059 832042 . - 0 transcript_id "YOR271C_id001"; gene_name "FSF1"; gene_id "YOR271C"; +chrXV SGD gene 832332 832521 . + . gene_id "YNCO0026W"; gene_biotype "ncRNA"; +chrXV SGD transcript 832332 832521 . + . transcript_id "YNCO0026W_snoRNA"; gene_id "YNCO0026W"; gene_name "SNR8"; transcript_biotype "ncRNA"; +chrXV SGD exon 832332 832521 . + . transcript_id "YNCO0026W_snoRNA"; gene_name "SNR8"; gene_id "YNCO0026W"; +chrXV SGD gene 832758 834426 . + . gene_id "YOR272W"; gene_biotype "protein_coding"; +chrXV SGD transcript 832758 834426 . + . transcript_id "YOR272W_id001"; gene_id "YOR272W"; gene_name "YTM1"; transcript_biotype "protein_coding"; +chrXV SGD exon 832758 834426 . + . transcript_id "YOR272W_id001"; gene_id "YOR272W"; gene_name "YTM1"; +chrXV SGD transcript 832813 834195 . + . transcript_id "YOR272W_id003"; gene_id "YOR272W"; gene_name "YTM1"; transcript_biotype "protein_coding"; +chrXV SGD exon 832813 834195 . + 0 transcript_id "YOR272W_id003"; gene_name "YTM1"; gene_id "YOR272W"; +chrXV SGD gene 834317 836632 . - . gene_id "YOR273C"; gene_biotype "protein_coding"; +chrXV SGD transcript 834317 836632 . - . transcript_id "YOR273C_id001"; gene_id "YOR273C"; gene_name "TPO4"; transcript_biotype "protein_coding"; +chrXV SGD exon 834317 836632 . - . transcript_id "YOR273C_id001"; gene_id "YOR273C"; gene_name "TPO4"; +chrXV SGD transcript 834452 836431 . - . transcript_id "YOR273C_id002"; gene_id "YOR273C"; gene_name "TPO4"; transcript_biotype "protein_coding"; +chrXV SGD exon 834452 836431 . - 0 transcript_id "YOR273C_id002"; gene_name "TPO4"; gene_id "YOR273C"; +chrXV SGD gene 837665 839243 . + . gene_id "YOR274W"; gene_biotype "protein_coding"; +chrXV SGD transcript 837665 839243 . + . transcript_id "YOR274W_id004"; gene_id "YOR274W"; gene_name "MOD5"; transcript_biotype "protein_coding"; +chrXV SGD exon 837665 839243 . + . transcript_id "YOR274W_id004"; gene_id "YOR274W"; gene_name "MOD5"; +chrXV SGD transcript 837674 838960 . + . transcript_id "YOR274W_id001"; gene_id "YOR274W"; gene_name "MOD5"; transcript_biotype "protein_coding"; +chrXV SGD exon 837674 838960 . + 0 transcript_id "YOR274W_id001"; gene_name "MOD5"; gene_id "YOR274W"; +chrXV SGD gene 838844 841077 . - . gene_id "YOR275C"; gene_biotype "protein_coding"; +chrXV SGD transcript 838844 841077 . - . transcript_id "YOR275C_id003"; gene_id "YOR275C"; gene_name "RIM20"; transcript_biotype "protein_coding"; +chrXV SGD exon 838844 841077 . - . transcript_id "YOR275C_id003"; gene_id "YOR275C"; gene_name "RIM20"; +chrXV SGD transcript 839084 841069 . - . transcript_id "YOR275C_id001"; gene_id "YOR275C"; gene_name "RIM20"; transcript_biotype "protein_coding"; +chrXV SGD exon 839084 841069 . - 0 transcript_id "YOR275C_id001"; gene_name "RIM20"; gene_id "YOR275C"; +chrXV SGD gene 841240 841972 . + . gene_id "YOR276W"; gene_biotype "protein_coding"; +chrXV SGD transcript 841240 841972 . + . transcript_id "YOR276W_id001"; gene_id "YOR276W"; gene_name "CAF20"; transcript_biotype "protein_coding"; +chrXV SGD exon 841240 841972 . + . transcript_id "YOR276W_id001"; gene_id "YOR276W"; gene_name "CAF20"; +chrXV SGD transcript 841333 841818 . + . transcript_id "YOR276W_id003"; gene_id "YOR276W"; gene_name "CAF20"; transcript_biotype "protein_coding"; +chrXV SGD exon 841333 841818 . + 0 transcript_id "YOR276W_id003"; gene_name "CAF20"; gene_id "YOR276W"; +chrXV SGD gene 841515 841823 . - . gene_id "YOR277C"; gene_biotype "protein_coding"; +chrXV SGD transcript 841515 841823 . - . transcript_id "YOR277C_mRNA"; gene_id "YOR277C"; transcript_biotype "protein_coding"; +chrXV SGD CDS 841515 841823 . - 0 transcript_id "YOR277C_mRNA"; gene_id "YOR277C"; +chrXV SGD gene 841958 842182 . - . gene_id "YNCO0027C"; gene_biotype "ncRNA"; +chrXV SGD transcript 841958 842182 . - . transcript_id "YNCO0027C_snoRNA"; gene_id "YNCO0027C"; gene_name "SNR31"; transcript_biotype "ncRNA"; +chrXV SGD exon 841958 842182 . - . transcript_id "YNCO0027C_snoRNA"; gene_name "SNR31"; gene_id "YNCO0027C"; +chrXV SGD gene 842403 842606 . + . gene_id "YNCO0028W"; gene_biotype "ncRNA"; +chrXV SGD transcript 842403 842606 . + . transcript_id "YNCO0028W_snoRNA"; gene_id "YNCO0028W"; gene_name "SNR5"; transcript_biotype "ncRNA"; +chrXV SGD exon 842403 842606 . + . transcript_id "YNCO0028W_snoRNA"; gene_name "SNR5"; gene_id "YNCO0028W"; +chrXV SGD gene 842644 843812 . + . gene_id "YOR278W"; gene_biotype "protein_coding"; +chrXV SGD transcript 842644 843812 . + . transcript_id "YOR278W_id002"; gene_id "YOR278W"; gene_name "HEM4"; transcript_biotype "protein_coding"; +chrXV SGD exon 842644 843812 . + . transcript_id "YOR278W_id002"; gene_id "YOR278W"; gene_name "HEM4"; +chrXV SGD transcript 842817 843644 . + . transcript_id "YOR278W_id001"; gene_id "YOR278W"; gene_name "HEM4"; transcript_biotype "protein_coding"; +chrXV SGD exon 842817 843644 . + 0 transcript_id "YOR278W_id001"; gene_name "HEM4"; gene_id "YOR278W"; +chrXV SGD gene 843571 844753 . - . gene_id "YOR279C"; gene_biotype "protein_coding"; +chrXV SGD transcript 843571 844753 . - . transcript_id "YOR279C_id003"; gene_id "YOR279C"; gene_name "RFM1"; transcript_biotype "protein_coding"; +chrXV SGD exon 843571 844753 . - . transcript_id "YOR279C_id003"; gene_id "YOR279C"; gene_name "RFM1"; +chrXV SGD transcript 843698 844630 . - . transcript_id "YOR279C_id001"; gene_id "YOR279C"; gene_name "RFM1"; transcript_biotype "protein_coding"; +chrXV SGD exon 843698 844630 . - 0 transcript_id "YOR279C_id001"; gene_name "RFM1"; gene_id "YOR279C"; +chrXV SGD gene 844869 845849 . - . gene_id "YOR280C"; gene_biotype "protein_coding"; +chrXV SGD transcript 844869 845849 . - . transcript_id "YOR280C_id004"; gene_id "YOR280C"; gene_name "FSH3"; transcript_biotype "protein_coding"; +chrXV SGD exon 844869 845849 . - . transcript_id "YOR280C_id004"; gene_id "YOR280C"; gene_name "FSH3"; +chrXV SGD transcript 844992 845792 . - . transcript_id "YOR280C_id001"; gene_id "YOR280C"; gene_name "FSH3"; transcript_biotype "protein_coding"; +chrXV SGD exon 844992 845792 . - 0 transcript_id "YOR280C_id001"; gene_name "FSH3"; gene_id "YOR280C"; +chrXV SGD gene 846170 847215 . - . gene_id "YOR281C"; gene_biotype "protein_coding"; +chrXV SGD transcript 846170 847215 . - . transcript_id "YOR281C_id004"; gene_id "YOR281C"; gene_name "PLP2"; transcript_biotype "protein_coding"; +chrXV SGD exon 846170 847215 . - . transcript_id "YOR281C_id004"; gene_id "YOR281C"; gene_name "PLP2"; +chrXV SGD transcript 846269 847129 . - . transcript_id "YOR281C_id001"; gene_id "YOR281C"; gene_name "PLP2"; transcript_biotype "protein_coding"; +chrXV SGD exon 846269 847129 . - 0 transcript_id "YOR281C_id001"; gene_name "PLP2"; gene_id "YOR281C"; +chrXV SGD gene 847000 847320 . + . gene_id "YOR282W"; gene_biotype "protein_coding"; +chrXV SGD transcript 847000 847320 . + . transcript_id "YOR282W_mRNA"; gene_id "YOR282W"; transcript_biotype "protein_coding"; +chrXV SGD CDS 847000 847320 . + 0 transcript_id "YOR282W_mRNA"; gene_id "YOR282W"; +chrXV SGD gene 847287 848321 . + . gene_id "YOR283W"; gene_biotype "protein_coding"; +chrXV SGD transcript 847287 848321 . + . transcript_id "YOR283W_id002"; gene_id "YOR283W"; transcript_biotype "protein_coding"; +chrXV SGD exon 847287 848321 . + . transcript_id "YOR283W_id002"; gene_id "YOR283W"; +chrXV SGD transcript 847453 848145 . + . transcript_id "YOR283W_id001"; gene_id "YOR283W"; transcript_biotype "protein_coding"; +chrXV SGD exon 847453 848145 . + 0 transcript_id "YOR283W_id001"; gene_id "YOR283W"; +chrXV SGD gene 848431 849584 . + . gene_id "YOR284W"; gene_biotype "protein_coding"; +chrXV SGD transcript 848431 849584 . + . transcript_id "YOR284W_id001"; gene_id "YOR284W"; gene_name "HUA2"; transcript_biotype "protein_coding"; +chrXV SGD exon 848431 849584 . + . transcript_id "YOR284W_id001"; gene_id "YOR284W"; gene_name "HUA2"; +chrXV SGD transcript 848478 849209 . + . transcript_id "YOR284W_id002"; gene_id "YOR284W"; gene_name "HUA2"; transcript_biotype "protein_coding"; +chrXV SGD exon 848478 849209 . + 0 transcript_id "YOR284W_id002"; gene_name "HUA2"; gene_id "YOR284W"; +chrXV SGD gene 849615 850250 . + . gene_id "YOR285W"; gene_biotype "protein_coding"; +chrXV SGD transcript 849615 850250 . + . transcript_id "YOR285W_id002"; gene_id "YOR285W"; gene_name "RDL1"; transcript_biotype "protein_coding"; +chrXV SGD exon 849615 850250 . + . transcript_id "YOR285W_id002"; gene_id "YOR285W"; gene_name "RDL1"; +chrXV SGD transcript 849635 850054 . + . transcript_id "YOR285W_id001"; gene_id "YOR285W"; gene_name "RDL1"; transcript_biotype "protein_coding"; +chrXV SGD exon 849635 850054 . + 0 transcript_id "YOR285W_id001"; gene_name "RDL1"; gene_id "YOR285W"; +chrXV SGD gene 850280 850729 . + . gene_id "YOR286W"; gene_biotype "protein_coding"; +chrXV SGD transcript 850280 850729 . + . transcript_id "YOR286W_id001"; gene_id "YOR286W"; gene_name "RDL2"; transcript_biotype "protein_coding"; +chrXV SGD exon 850280 850729 . + 0 transcript_id "YOR286W_id001"; gene_name "RDL2"; gene_id "YOR286W"; +chrXV SGD gene 850864 851925 . - . gene_id "YOR287C"; gene_biotype "protein_coding"; +chrXV SGD transcript 850864 851925 . - . transcript_id "YOR287C_id001"; gene_id "YOR287C"; gene_name "RRP36"; transcript_biotype "protein_coding"; +chrXV SGD exon 850864 851925 . - . transcript_id "YOR287C_id001"; gene_id "YOR287C"; gene_name "RRP36"; +chrXV SGD transcript 850937 851839 . - . transcript_id "YOR287C_id003"; gene_id "YOR287C"; gene_name "RRP36"; transcript_biotype "protein_coding"; +chrXV SGD exon 850937 851839 . - 0 transcript_id "YOR287C_id003"; gene_name "RRP36"; gene_id "YOR287C"; +chrXV SGD gene 852030 854066 . - . gene_id "YOR288C"; gene_biotype "protein_coding"; +chrXV SGD transcript 852030 854066 . - . transcript_id "YOR288C_id001"; gene_id "YOR288C"; gene_name "MPD1"; transcript_biotype "protein_coding"; +chrXV SGD exon 852030 854066 . - . transcript_id "YOR288C_id001"; gene_id "YOR288C"; gene_name "MPD1"; +chrXV SGD transcript 852121 853077 . - . transcript_id "YOR288C_id002"; gene_id "YOR288C"; gene_name "MPD1"; transcript_biotype "protein_coding"; +chrXV SGD exon 852121 853077 . - 0 transcript_id "YOR288C_id002"; gene_name "MPD1"; gene_id "YOR288C"; +chrXV SGD gene 853326 854193 . + . gene_id "YOR289W"; gene_biotype "protein_coding"; +chrXV SGD transcript 853326 854193 . + . transcript_id "YOR289W_id004"; gene_id "YOR289W"; transcript_biotype "protein_coding"; +chrXV SGD exon 853326 854193 . + . transcript_id "YOR289W_id004"; gene_id "YOR289W"; +chrXV SGD transcript 853357 854112 . + . transcript_id "YOR289W_id001"; gene_id "YOR289W"; transcript_biotype "protein_coding"; +chrXV SGD exon 853357 854112 . + 0 transcript_id "YOR289W_id001"; gene_id "YOR289W"; +chrXV SGD gene 854187 854259 . - . gene_id "YNCO0029C"; gene_biotype "ncRNA"; +chrXV SGD transcript 854187 854259 . - . transcript_id "YNCO0029C_tRNA"; gene_id "YNCO0029C"; transcript_biotype "ncRNA"; +chrXV SGD exon 854187 854259 . - . transcript_id "YNCO0029C_tRNA"; gene_id "YNCO0029C"; +chrXV SGD gene 855147 860258 . - . gene_id "YOR290C"; gene_biotype "protein_coding"; +chrXV SGD transcript 855147 860258 . - . transcript_id "YOR290C_mRNA"; gene_id "YOR290C"; gene_name "SNF2"; transcript_biotype "protein_coding"; +chrXV SGD CDS 855147 860258 . - 0 transcript_id "YOR290C_mRNA"; gene_name "SNF2"; gene_id "YOR290C"; +chrXV SGD gene 861175 865593 . + . gene_id "YOR291W"; gene_biotype "protein_coding"; +chrXV SGD transcript 861175 865593 . + . transcript_id "YOR291W_id001"; gene_id "YOR291W"; gene_name "YPK9"; transcript_biotype "protein_coding"; +chrXV SGD exon 861175 865593 . + 0 transcript_id "YOR291W_id001"; gene_name "YPK9"; gene_id "YOR291W"; +chrXV SGD gene 865575 866638 . - . gene_id "YOR292C"; gene_biotype "protein_coding"; +chrXV SGD transcript 865575 866638 . - . transcript_id "YOR292C_id003"; gene_id "YOR292C"; transcript_biotype "protein_coding"; +chrXV SGD exon 865575 866638 . - . transcript_id "YOR292C_id003"; gene_id "YOR292C"; +chrXV SGD transcript 865653 866582 . - . transcript_id "YOR292C_id001"; gene_id "YOR292C"; transcript_biotype "protein_coding"; +chrXV SGD exon 865653 866582 . - 0 transcript_id "YOR292C_id001"; gene_id "YOR292C"; +chrXV SGD gene 867071 868196 . + . gene_id "YOR293W"; gene_biotype "protein_coding"; +chrXV SGD transcript 867071 868196 . + . transcript_id "YOR293W_id002"; gene_id "YOR293W"; gene_name "RPS10A"; transcript_biotype "protein_coding"; +chrXV SGD exon 867071 868196 . + . transcript_id "YOR293W_id002"; gene_id "YOR293W"; gene_name "RPS10A"; +chrXV SGD transcript 867098 867852 . + . transcript_id "YOR293W_id001"; gene_id "YOR293W"; gene_name "RPS10A"; transcript_biotype "protein_coding"; +chrXV SGD exon 867098 867149 . + 0 transcript_id "YOR293W_id001"; gene_name "RPS10A"; gene_id "YOR293W"; +chrXV SGD exon 867587 867852 . + 2 transcript_id "YOR293W_id001"; gene_name "RPS10A"; gene_id "YOR293W"; +chrXV SGD gene 867879 868218 . - . gene_id "YOR293C-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 867879 868218 . - . transcript_id "YOR293C-A_id001"; gene_id "YOR293C-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 867879 868218 . - . transcript_id "YOR293C-A_id001"; gene_id "YOR293C-A"; +chrXV SGD transcript 867998 868147 . - . transcript_id "YOR293C-A_id002"; gene_id "YOR293C-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 867998 868147 . - 0 transcript_id "YOR293C-A_id002"; gene_id "YOR293C-A"; +chrXV SGD gene 868247 869112 . + . gene_id "YOR294W"; gene_biotype "protein_coding"; +chrXV SGD transcript 868247 869112 . + . transcript_id "YOR294W_id003"; gene_id "YOR294W"; gene_name "RRS1"; transcript_biotype "protein_coding"; +chrXV SGD exon 868247 869112 . + . transcript_id "YOR294W_id003"; gene_id "YOR294W"; gene_name "RRS1"; +chrXV SGD transcript 868340 868951 . + . transcript_id "YOR294W_id001"; gene_id "YOR294W"; gene_name "RRS1"; transcript_biotype "protein_coding"; +chrXV SGD exon 868340 868951 . + 0 transcript_id "YOR294W_id001"; gene_name "RRS1"; gene_id "YOR294W"; +chrXV SGD gene 869131 870125 . + . gene_id "YOR295W"; gene_biotype "protein_coding"; +chrXV SGD transcript 869131 870125 . + . transcript_id "YOR295W_id002"; gene_id "YOR295W"; gene_name "UAF30"; transcript_biotype "protein_coding"; +chrXV SGD exon 869131 870125 . + . transcript_id "YOR295W_id002"; gene_id "YOR295W"; gene_name "UAF30"; +chrXV SGD transcript 869208 869894 . + . transcript_id "YOR295W_id001"; gene_id "YOR295W"; gene_name "UAF30"; transcript_biotype "protein_coding"; +chrXV SGD exon 869208 869894 . + 0 transcript_id "YOR295W_id001"; gene_name "UAF30"; gene_id "YOR295W"; +chrXV SGD gene 870202 874071 . + . gene_id "YOR296W"; gene_biotype "protein_coding"; +chrXV SGD transcript 870202 874071 . + . transcript_id "YOR296W_id001"; gene_id "YOR296W"; transcript_biotype "protein_coding"; +chrXV SGD exon 870202 874071 . + 0 transcript_id "YOR296W_id001"; gene_id "YOR296W"; +chrXV SGD gene 874265 875347 . - . gene_id "YOR297C"; gene_biotype "protein_coding"; +chrXV SGD transcript 874265 875347 . - . transcript_id "YOR297C_id001"; gene_id "YOR297C"; gene_name "TIM18"; transcript_biotype "protein_coding"; +chrXV SGD exon 874265 875347 . - . transcript_id "YOR297C_id001"; gene_id "YOR297C"; gene_name "TIM18"; +chrXV SGD transcript 874743 875321 . - . transcript_id "YOR297C_id003"; gene_id "YOR297C"; gene_name "TIM18"; transcript_biotype "protein_coding"; +chrXV SGD exon 874743 875321 . - 0 transcript_id "YOR297C_id003"; gene_name "TIM18"; gene_id "YOR297C"; +chrXV SGD gene 875599 877038 . + . gene_id "YOR298W"; gene_biotype "protein_coding"; +chrXV SGD transcript 875599 877038 . + . transcript_id "YOR298W_mRNA"; gene_id "YOR298W"; gene_name "MUM3"; transcript_biotype "protein_coding"; +chrXV SGD CDS 875599 877038 . + 0 transcript_id "YOR298W_mRNA"; gene_name "MUM3"; gene_id "YOR298W"; +chrXV SGD gene 876605 877729 . - . gene_id "YOR298C-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 876605 877729 . - . transcript_id "YOR298C-A_id004"; gene_id "YOR298C-A"; gene_name "MBF1"; transcript_biotype "protein_coding"; +chrXV SGD exon 876605 877729 . - . transcript_id "YOR298C-A_id004"; gene_id "YOR298C-A"; gene_name "MBF1"; +chrXV SGD transcript 877230 877685 . - . transcript_id "YOR298C-A_id001"; gene_id "YOR298C-A"; gene_name "MBF1"; transcript_biotype "protein_coding"; +chrXV SGD exon 877230 877685 . - 0 transcript_id "YOR298C-A_id001"; gene_name "MBF1"; gene_id "YOR298C-A"; +chrXV SGD gene 878295 880734 . + . gene_id "YOR299W"; gene_biotype "protein_coding"; +chrXV SGD transcript 878295 880734 . + . transcript_id "YOR299W_id003"; gene_id "YOR299W"; gene_name "BUD7"; transcript_biotype "protein_coding"; +chrXV SGD exon 878295 880734 . + . transcript_id "YOR299W_id003"; gene_id "YOR299W"; gene_name "BUD7"; +chrXV SGD transcript 878435 880675 . + . transcript_id "YOR299W_id001"; gene_id "YOR299W"; gene_name "BUD7"; transcript_biotype "protein_coding"; +chrXV SGD exon 878435 880675 . + 0 transcript_id "YOR299W_id001"; gene_name "BUD7"; gene_id "YOR299W"; +chrXV SGD gene 880575 880883 . + . gene_id "YOR300W"; gene_biotype "protein_coding"; +chrXV SGD transcript 880575 880883 . + . transcript_id "YOR300W_id001"; gene_id "YOR300W"; transcript_biotype "protein_coding"; +chrXV SGD exon 880575 880883 . + 0 transcript_id "YOR300W_id001"; gene_id "YOR300W"; +chrXV SGD gene 880955 882727 . + . gene_id "YOR301W"; gene_biotype "protein_coding"; +chrXV SGD transcript 880955 882727 . + . transcript_id "YOR301W_id003"; gene_id "YOR301W"; gene_name "RAX1"; transcript_biotype "protein_coding"; +chrXV SGD exon 880955 882727 . + . transcript_id "YOR301W_id003"; gene_id "YOR301W"; gene_name "RAX1"; +chrXV SGD transcript 880965 882272 . + . transcript_id "YOR301W_id001"; gene_id "YOR301W"; gene_name "RAX1"; transcript_biotype "protein_coding"; +chrXV SGD exon 880965 882272 . + 0 transcript_id "YOR301W_id001"; gene_name "RAX1"; gene_id "YOR301W"; +chrXV SGD gene 882765 882842 . + . gene_id "YOR302W"; gene_biotype "protein_coding"; +chrXV SGD transcript 882765 882842 . + . transcript_id "YOR302W_id001"; gene_id "YOR302W"; transcript_biotype "protein_coding"; +chrXV SGD exon 882765 882842 . + 0 transcript_id "YOR302W_id001"; gene_id "YOR302W"; +chrXV SGD gene 882767 884212 . + . gene_id "YOR303W"; gene_biotype "protein_coding"; +chrXV SGD transcript 882767 884212 . + . transcript_id "YOR303W_id002"; gene_id "YOR303W"; gene_name "CPA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 882767 884212 . + . transcript_id "YOR303W_id002"; gene_id "YOR303W"; gene_name "CPA1"; +chrXV SGD transcript 882899 884134 . + . transcript_id "YOR303W_id001"; gene_id "YOR303W"; gene_name "CPA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 882899 884134 . + 0 transcript_id "YOR303W_id001"; gene_name "CPA1"; gene_id "YOR303W"; +chrXV SGD gene 884514 887876 . + . gene_id "YOR304W"; gene_biotype "protein_coding"; +chrXV SGD transcript 884514 887876 . + . transcript_id "YOR304W_id001"; gene_id "YOR304W"; gene_name "ISW2"; transcript_biotype "protein_coding"; +chrXV SGD exon 884514 887876 . + 0 transcript_id "YOR304W_id001"; gene_name "ISW2"; gene_id "YOR304W"; +chrXV SGD gene 887865 888786 . - . gene_id "YOR304C-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 887865 888786 . - . transcript_id "YOR304C-A_id002"; gene_id "YOR304C-A"; gene_name "BIL1"; transcript_biotype "protein_coding"; +chrXV SGD exon 887865 888786 . - . transcript_id "YOR304C-A_id002"; gene_id "YOR304C-A"; gene_name "BIL1"; +chrXV SGD transcript 888520 888750 . - . transcript_id "YOR304C-A_id001"; gene_id "YOR304C-A"; gene_name "BIL1"; transcript_biotype "protein_coding"; +chrXV SGD exon 888520 888750 . - 0 transcript_id "YOR304C-A_id001"; gene_name "BIL1"; gene_id "YOR304C-A"; +chrXV SGD gene 888959 891492 . + . gene_id "YOR305W"; gene_biotype "protein_coding"; +chrXV SGD transcript 888959 891492 . + . transcript_id "YOR305W_id002"; gene_id "YOR305W"; gene_name "RRG7"; transcript_biotype "protein_coding"; +chrXV SGD exon 888959 891492 . + . transcript_id "YOR305W_id002"; gene_id "YOR305W"; gene_name "RRG7"; +chrXV SGD transcript 889022 889750 . + . transcript_id "YOR305W_id001"; gene_id "YOR305W"; gene_name "RRG7"; transcript_biotype "protein_coding"; +chrXV SGD exon 889022 889750 . + 0 transcript_id "YOR305W_id001"; gene_name "RRG7"; gene_id "YOR305W"; +chrXV SGD gene 889761 893050 . - . gene_id "YOR306C"; gene_biotype "protein_coding"; +chrXV SGD transcript 889761 893050 . - . transcript_id "YOR306C_id001"; gene_id "YOR306C"; gene_name "MCH5"; transcript_biotype "protein_coding"; +chrXV SGD exon 889761 893050 . - . transcript_id "YOR306C_id001"; gene_id "YOR306C"; gene_name "MCH5"; +chrXV SGD transcript 889867 891432 . - . transcript_id "YOR306C_id002"; gene_id "YOR306C"; gene_name "MCH5"; transcript_biotype "protein_coding"; +chrXV SGD exon 889867 891432 . - 0 transcript_id "YOR306C_id002"; gene_name "MCH5"; gene_id "YOR306C"; +chrXV SGD gene 892429 894289 . - . gene_id "YOR307C"; gene_biotype "protein_coding"; +chrXV SGD transcript 892429 894289 . - . transcript_id "YOR307C_id002"; gene_id "YOR307C"; gene_name "SLY41"; transcript_biotype "protein_coding"; +chrXV SGD exon 892429 894289 . - . transcript_id "YOR307C_id002"; gene_id "YOR307C"; gene_name "SLY41"; +chrXV SGD transcript 892731 894092 . - . transcript_id "YOR307C_id001"; gene_id "YOR307C"; gene_name "SLY41"; transcript_biotype "protein_coding"; +chrXV SGD exon 892731 894092 . - 0 transcript_id "YOR307C_id001"; gene_name "SLY41"; gene_id "YOR307C"; +chrXV SGD gene 894624 896387 . - . gene_id "YOR308C"; gene_biotype "protein_coding"; +chrXV SGD transcript 894624 896387 . - . transcript_id "YOR308C_id001"; gene_id "YOR308C"; gene_name "SNU66"; transcript_biotype "protein_coding"; +chrXV SGD exon 894624 896387 . - 0 transcript_id "YOR308C_id001"; gene_name "SNU66"; gene_id "YOR308C"; +chrXV SGD gene 896548 898334 . - . gene_id "YOR309C"; gene_biotype "protein_coding"; +chrXV SGD transcript 896548 898334 . - . transcript_id "YOR309C_id001"; gene_id "YOR309C"; transcript_biotype "protein_coding"; +chrXV SGD exon 896548 898334 . - . transcript_id "YOR309C_id001"; gene_id "YOR309C"; +chrXV SGD transcript 896698 897078 . - . transcript_id "YOR309C_id002"; gene_id "YOR309C"; transcript_biotype "protein_coding"; +chrXV SGD exon 896698 897078 . - 0 transcript_id "YOR309C_id002"; gene_id "YOR309C"; +chrXV SGD gene 896709 898393 . - . gene_id "YOR310C"; gene_biotype "protein_coding"; +chrXV SGD transcript 896709 898393 . - . transcript_id "YOR310C_id001"; gene_id "YOR310C"; gene_name "NOP58"; transcript_biotype "protein_coding"; +chrXV SGD exon 896709 898393 . - . transcript_id "YOR310C_id001"; gene_id "YOR310C"; gene_name "NOP58"; +chrXV SGD transcript 896825 898360 . - . transcript_id "YOR310C_id002"; gene_id "YOR310C"; gene_name "NOP58"; transcript_biotype "protein_coding"; +chrXV SGD exon 896825 898360 . - 0 transcript_id "YOR310C_id002"; gene_name "NOP58"; gene_id "YOR310C"; +chrXV SGD gene 897097 900163 . - . gene_id "YOR311C"; gene_biotype "protein_coding"; +chrXV SGD transcript 897097 900163 . - . transcript_id "YOR311C_id001"; gene_id "YOR311C"; gene_name "DGK1"; transcript_biotype "protein_coding"; +chrXV SGD exon 897097 900163 . - . transcript_id "YOR311C_id001"; gene_id "YOR311C"; gene_name "DGK1"; +chrXV SGD transcript 899056 899928 . - . transcript_id "YOR311C_id003"; gene_id "YOR311C"; gene_name "DGK1"; transcript_biotype "protein_coding"; +chrXV SGD exon 899056 899928 . - 0 transcript_id "YOR311C_id003"; gene_name "DGK1"; gene_id "YOR311C"; +chrXV SGD gene 900112 901359 . - . gene_id "YOR312C"; gene_biotype "protein_coding"; +chrXV SGD transcript 900112 901359 . - . transcript_id "YOR312C_id003"; gene_id "YOR312C"; gene_name "RPL20B"; transcript_biotype "protein_coding"; +chrXV SGD exon 900112 901359 . - . transcript_id "YOR312C_id003"; gene_id "YOR312C"; gene_name "RPL20B"; +chrXV SGD transcript 900250 901194 . - . transcript_id "YOR312C_id001"; gene_id "YOR312C"; gene_name "RPL20B"; transcript_biotype "protein_coding"; +chrXV SGD exon 900250 900767 . - 2 transcript_id "YOR312C_id001"; gene_name "RPL20B"; gene_id "YOR312C"; +chrXV SGD exon 901194 901194 . - 0 transcript_id "YOR312C_id001"; gene_name "RPL20B"; gene_id "YOR312C"; +chrXV SGD gene 901636 903405 . - . gene_id "YOR313C"; gene_biotype "protein_coding"; +chrXV SGD transcript 901636 903405 . - . transcript_id "YOR313C_id012"; gene_id "YOR313C"; gene_name "SPS4"; transcript_biotype "protein_coding"; +chrXV SGD exon 901636 903405 . - . transcript_id "YOR313C_id012"; gene_id "YOR313C"; gene_name "SPS4"; +chrXV SGD transcript 901858 902874 . - . transcript_id "YOR313C_id001"; gene_id "YOR313C"; gene_name "SPS4"; transcript_biotype "protein_coding"; +chrXV SGD exon 901858 902874 . - 0 transcript_id "YOR313C_id001"; gene_name "SPS4"; gene_id "YOR313C"; +chrXV SGD gene 903043 903372 . + . gene_id "YOR314W"; gene_biotype "protein_coding"; +chrXV SGD transcript 903043 903372 . + . transcript_id "YOR314W_mRNA"; gene_id "YOR314W"; transcript_biotype "protein_coding"; +chrXV SGD CDS 903043 903372 . + 0 transcript_id "YOR314W_mRNA"; gene_id "YOR314W"; +chrXV SGD gene 904458 904568 . + . gene_id "YOR314W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 904458 904568 . + . transcript_id "YOR314W-A_mRNA"; gene_id "YOR314W-A"; transcript_biotype "protein_coding"; +chrXV SGD CDS 904458 904568 . + 0 transcript_id "YOR314W-A_mRNA"; gene_id "YOR314W-A"; +chrXV SGD gene 904603 906226 . + . gene_id "YOR315W"; gene_biotype "protein_coding"; +chrXV SGD transcript 904603 906226 . + . transcript_id "YOR315W_id001"; gene_id "YOR315W"; gene_name "SFG1"; transcript_biotype "protein_coding"; +chrXV SGD exon 904603 906226 . + . transcript_id "YOR315W_id001"; gene_id "YOR315W"; gene_name "SFG1"; +chrXV SGD transcript 904760 905800 . + . transcript_id "YOR315W_id002"; gene_id "YOR315W"; gene_name "SFG1"; transcript_biotype "protein_coding"; +chrXV SGD exon 904760 905800 . + 0 transcript_id "YOR315W_id002"; gene_name "SFG1"; gene_id "YOR315W"; +chrXV SGD gene 906094 907766 . - . gene_id "YOR316C"; gene_biotype "protein_coding"; +chrXV SGD transcript 906094 907766 . - . transcript_id "YOR316C_id001"; gene_id "YOR316C"; gene_name "COT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 906094 907766 . - . transcript_id "YOR316C_id001"; gene_id "YOR316C"; gene_name "COT1"; +chrXV SGD transcript 906236 907555 . - . transcript_id "YOR316C_id003"; gene_id "YOR316C"; gene_name "COT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 906236 907555 . - 0 transcript_id "YOR316C_id003"; gene_name "COT1"; gene_id "YOR316C"; +chrXV SGD gene 906525 908194 . - . gene_id "YOR316C-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 906525 908194 . - . transcript_id "YOR316C-A_id002"; gene_id "YOR316C-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 906525 908194 . - . transcript_id "YOR316C-A_id002"; gene_id "YOR316C-A"; +chrXV SGD transcript 907726 907935 . - . transcript_id "YOR316C-A_id001"; gene_id "YOR316C-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 907726 907935 . - 0 transcript_id "YOR316C-A_id001"; gene_id "YOR316C-A"; +chrXV SGD gene 909239 911694 . + . gene_id "YOR317W"; gene_biotype "protein_coding"; +chrXV SGD transcript 909239 911694 . + . transcript_id "YOR317W_id005"; gene_id "YOR317W"; gene_name "FAA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 909239 911694 . + . transcript_id "YOR317W_id005"; gene_id "YOR317W"; gene_name "FAA1"; +chrXV SGD transcript 909343 911445 . + . transcript_id "YOR317W_id001"; gene_id "YOR317W"; gene_name "FAA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 909343 911445 . + 0 transcript_id "YOR317W_id001"; gene_name "FAA1"; gene_id "YOR317W"; +chrXV SGD gene 911615 912556 . - . gene_id "YOR318C"; gene_biotype "protein_coding"; +chrXV SGD transcript 911615 912556 . - . transcript_id "YOR318C_id001"; gene_id "YOR318C"; transcript_biotype "protein_coding"; +chrXV SGD exon 911615 912556 . - . transcript_id "YOR318C_id001"; gene_id "YOR318C"; +chrXV SGD transcript 911784 912436 . - . transcript_id "YOR318C_id002"; gene_id "YOR318C"; transcript_biotype "protein_coding"; +chrXV SGD exon 911784 912085 . - 2 transcript_id "YOR318C_id002"; gene_id "YOR318C"; +chrXV SGD exon 912433 912436 . - 0 transcript_id "YOR318C_id002"; gene_id "YOR318C"; +chrXV SGD gene 912348 913641 . + . gene_id "YOR319W"; gene_biotype "protein_coding"; +chrXV SGD transcript 912348 913641 . + . transcript_id "YOR319W_id003"; gene_id "YOR319W"; gene_name "HSH49"; transcript_biotype "protein_coding"; +chrXV SGD exon 912348 913641 . + . transcript_id "YOR319W_id003"; gene_id "YOR319W"; gene_name "HSH49"; +chrXV SGD transcript 912822 913463 . + . transcript_id "YOR319W_id001"; gene_id "YOR319W"; gene_name "HSH49"; transcript_biotype "protein_coding"; +chrXV SGD exon 912822 913463 . + 0 transcript_id "YOR319W_id001"; gene_name "HSH49"; gene_id "YOR319W"; +chrXV SGD gene 913506 915214 . - . gene_id "YOR320C"; gene_biotype "protein_coding"; +chrXV SGD transcript 913506 915214 . - . transcript_id "YOR320C_id006"; gene_id "YOR320C"; gene_name "GNT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 913506 915214 . - . transcript_id "YOR320C_id006"; gene_id "YOR320C"; gene_name "GNT1"; +chrXV SGD transcript 913619 915094 . - . transcript_id "YOR320C_id001"; gene_id "YOR320C"; gene_name "GNT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 913619 915094 . - 0 transcript_id "YOR320C_id001"; gene_name "GNT1"; gene_id "YOR320C"; +chrXV SGD gene 915952 918432 . + . gene_id "YOR321W"; gene_biotype "protein_coding"; +chrXV SGD transcript 915952 918432 . + . transcript_id "YOR321W_id002"; gene_id "YOR321W"; gene_name "PMT3"; transcript_biotype "protein_coding"; +chrXV SGD exon 915952 918432 . + . transcript_id "YOR321W_id002"; gene_id "YOR321W"; gene_name "PMT3"; +chrXV SGD transcript 916030 918291 . + . transcript_id "YOR321W_id001"; gene_id "YOR321W"; gene_name "PMT3"; transcript_biotype "protein_coding"; +chrXV SGD exon 916030 918291 . + 0 transcript_id "YOR321W_id001"; gene_name "PMT3"; gene_id "YOR321W"; +chrXV SGD gene 918606 921062 . - . gene_id "YOR322C"; gene_biotype "protein_coding"; +chrXV SGD transcript 918606 921062 . - . transcript_id "YOR322C_id001"; gene_id "YOR322C"; gene_name "LDB19"; transcript_biotype "protein_coding"; +chrXV SGD exon 918606 921062 . - 0 transcript_id "YOR322C_id001"; gene_name "LDB19"; gene_id "YOR322C"; +chrXV SGD gene 921058 922940 . - . gene_id "YOR323C"; gene_biotype "protein_coding"; +chrXV SGD transcript 921058 922940 . - . transcript_id "YOR323C_id001"; gene_id "YOR323C"; gene_name "PRO2"; transcript_biotype "protein_coding"; +chrXV SGD exon 921058 922940 . - . transcript_id "YOR323C_id001"; gene_id "YOR323C"; gene_name "PRO2"; +chrXV SGD transcript 921535 922905 . - . transcript_id "YOR323C_id003"; gene_id "YOR323C"; gene_name "PRO2"; transcript_biotype "protein_coding"; +chrXV SGD exon 921535 922905 . - 0 transcript_id "YOR323C_id003"; gene_name "PRO2"; gene_id "YOR323C"; +chrXV SGD gene 923232 925040 . - . gene_id "YOR324C"; gene_biotype "protein_coding"; +chrXV SGD transcript 923232 925040 . - . transcript_id "YOR324C_id001"; gene_id "YOR324C"; gene_name "FRT1"; transcript_biotype "protein_coding"; +chrXV SGD exon 923232 925040 . - 0 transcript_id "YOR324C_id001"; gene_name "FRT1"; gene_id "YOR324C"; +chrXV SGD gene 924577 925050 . + . gene_id "YOR325W"; gene_biotype "protein_coding"; +chrXV SGD transcript 924577 925050 . + . transcript_id "YOR325W_id001"; gene_id "YOR325W"; transcript_biotype "protein_coding"; +chrXV SGD exon 924577 925050 . + 0 transcript_id "YOR325W_id001"; gene_id "YOR325W"; +chrXV SGD gene 925721 930445 . + . gene_id "YOR326W"; gene_biotype "protein_coding"; +chrXV SGD transcript 925721 930445 . + . transcript_id "YOR326W_mRNA"; gene_id "YOR326W"; gene_name "MYO2"; transcript_biotype "protein_coding"; +chrXV SGD CDS 925721 930445 . + 0 transcript_id "YOR326W_mRNA"; gene_name "MYO2"; gene_id "YOR326W"; +chrXV SGD gene 930502 931215 . - . gene_id "YOR327C"; gene_biotype "protein_coding"; +chrXV SGD transcript 930502 931215 . - . transcript_id "YOR327C_id001"; gene_id "YOR327C"; gene_name "SNC2"; transcript_biotype "protein_coding"; +chrXV SGD exon 930502 931215 . - . transcript_id "YOR327C_id001"; gene_id "YOR327C"; gene_name "SNC2"; +chrXV SGD transcript 930734 931081 . - . transcript_id "YOR327C_id002"; gene_id "YOR327C"; gene_name "SNC2"; transcript_biotype "protein_coding"; +chrXV SGD exon 930734 931081 . - 0 transcript_id "YOR327C_id002"; gene_name "SNC2"; gene_id "YOR327C"; +chrXV SGD gene 931803 936497 . + . gene_id "YOR328W"; gene_biotype "protein_coding"; +chrXV SGD transcript 931803 936497 . + . transcript_id "YOR328W_mRNA"; gene_id "YOR328W"; gene_name "PDR10"; transcript_biotype "protein_coding"; +chrXV SGD CDS 931803 936497 . + 0 transcript_id "YOR328W_mRNA"; gene_name "PDR10"; gene_id "YOR328W"; +chrXV SGD gene 936731 939349 . - . gene_id "YOR329C"; gene_biotype "protein_coding"; +chrXV SGD transcript 936731 939349 . - . transcript_id "YOR329C_id001"; gene_id "YOR329C"; gene_name "SCD5"; transcript_biotype "protein_coding"; +chrXV SGD exon 936731 939349 . - 0 transcript_id "YOR329C_id001"; gene_name "SCD5"; gene_id "YOR329C"; +chrXV SGD gene 938970 939699 . + . gene_id "YOR329W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 938970 939699 . + . transcript_id "YOR329W-A_id001"; gene_id "YOR329W-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 938970 939699 . + . transcript_id "YOR329W-A_id001"; gene_id "YOR329W-A"; +chrXV SGD transcript 939348 939557 . + . transcript_id "YOR329W-A_id002"; gene_id "YOR329W-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 939348 939557 . + 0 transcript_id "YOR329W-A_id002"; gene_id "YOR329W-A"; +chrXV SGD gene 939621 943385 . - . gene_id "YOR330C"; gene_biotype "protein_coding"; +chrXV SGD transcript 939621 943385 . - . transcript_id "YOR330C_mRNA"; gene_id "YOR330C"; gene_name "MIP1"; transcript_biotype "protein_coding"; +chrXV SGD CDS 939621 943385 . - 0 transcript_id "YOR330C_mRNA"; gene_name "MIP1"; gene_id "YOR330C"; +chrXV SGD gene 943565 944122 . - . gene_id "YOR331C"; gene_biotype "protein_coding"; +chrXV SGD transcript 943565 944122 . - . transcript_id "YOR331C_mRNA"; gene_id "YOR331C"; transcript_biotype "protein_coding"; +chrXV SGD CDS 943565 944122 . - 0 transcript_id "YOR331C_mRNA"; gene_id "YOR331C"; +chrXV SGD gene 943625 944478 . + . gene_id "YOR332W"; gene_biotype "protein_coding"; +chrXV SGD transcript 943625 944478 . + . transcript_id "YOR332W_id001"; gene_id "YOR332W"; gene_name "VMA4"; transcript_biotype "protein_coding"; +chrXV SGD exon 943625 944478 . + . transcript_id "YOR332W_id001"; gene_id "YOR332W"; gene_name "VMA4"; +chrXV SGD transcript 943656 944357 . + . transcript_id "YOR332W_id002"; gene_id "YOR332W"; gene_name "VMA4"; transcript_biotype "protein_coding"; +chrXV SGD exon 943656 944357 . + 0 transcript_id "YOR332W_id002"; gene_name "VMA4"; gene_id "YOR332W"; +chrXV SGD gene 944498 945041 . - . gene_id "YOR333C"; gene_biotype "protein_coding"; +chrXV SGD transcript 944498 945041 . - . transcript_id "YOR333C_id001"; gene_id "YOR333C"; transcript_biotype "protein_coding"; +chrXV SGD exon 944498 945041 . - . transcript_id "YOR333C_id001"; gene_id "YOR333C"; +chrXV SGD gene 944537 946105 . + . gene_id "YOR334W"; gene_biotype "protein_coding"; +chrXV SGD transcript 944537 946105 . + . transcript_id "YOR334W_id007"; gene_id "YOR334W"; gene_name "MRS2"; transcript_biotype "protein_coding"; +chrXV SGD exon 944537 946105 . + . transcript_id "YOR334W_id007"; gene_id "YOR334W"; gene_name "MRS2"; +chrXV SGD transcript 944541 944957 . - . transcript_id "YOR333C_id002"; gene_id "YOR333C"; transcript_biotype "protein_coding"; +chrXV SGD exon 944541 944957 . - 0 transcript_id "YOR333C_id002"; gene_id "YOR333C"; +chrXV SGD transcript 944596 946008 . + . transcript_id "YOR334W_id001"; gene_id "YOR334W"; gene_name "MRS2"; transcript_biotype "protein_coding"; +chrXV SGD exon 944596 946008 . + 0 transcript_id "YOR334W_id001"; gene_name "MRS2"; gene_id "YOR334W"; +chrXV SGD gene 946023 949226 . - . gene_id "YOR335C"; gene_biotype "protein_coding"; +chrXV SGD transcript 946023 949226 . - . transcript_id "YOR335C_id002"; gene_id "YOR335C"; gene_name "ALA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 946023 949226 . - . transcript_id "YOR335C_id002"; gene_id "YOR335C"; gene_name "ALA1"; +chrXV SGD transcript 946233 949109 . - . transcript_id "YOR335C_id001"; gene_id "YOR335C"; gene_name "ALA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 946233 949109 . - 0 transcript_id "YOR335C_id001"; gene_name "ALA1"; gene_id "YOR335C"; +chrXV SGD gene 946568 946648 . + . gene_id "YOR335W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 946568 946648 . + . transcript_id "YOR335W-A_mRNA"; gene_id "YOR335W-A"; transcript_biotype "protein_coding"; +chrXV SGD CDS 946568 946648 . + 0 transcript_id "YOR335W-A_mRNA"; gene_id "YOR335W-A"; +chrXV SGD gene 949748 954046 . + . gene_id "YOR336W"; gene_biotype "protein_coding"; +chrXV SGD transcript 949748 954046 . + . transcript_id "YOR336W_id001"; gene_id "YOR336W"; gene_name "KRE5"; transcript_biotype "protein_coding"; +chrXV SGD exon 949748 954046 . + . transcript_id "YOR336W_id001"; gene_id "YOR336W"; gene_name "KRE5"; +chrXV SGD transcript 949773 953870 . + . transcript_id "YOR336W_id003"; gene_id "YOR336W"; gene_name "KRE5"; transcript_biotype "protein_coding"; +chrXV SGD exon 949773 953870 . + 0 transcript_id "YOR336W_id003"; gene_name "KRE5"; gene_id "YOR336W"; +chrXV SGD gene 954269 956881 . + . gene_id "YOR337W"; gene_biotype "protein_coding"; +chrXV SGD transcript 954269 956881 . + . transcript_id "YOR337W_id001"; gene_id "YOR337W"; gene_name "TEA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 954269 956881 . + . transcript_id "YOR337W_id001"; gene_id "YOR337W"; gene_name "TEA1"; +chrXV SGD transcript 954344 956623 . + . transcript_id "YOR337W_id002"; gene_id "YOR337W"; gene_name "TEA1"; transcript_biotype "protein_coding"; +chrXV SGD exon 954344 956623 . + 0 transcript_id "YOR337W_id002"; gene_name "TEA1"; gene_id "YOR337W"; +chrXV SGD gene 956835 958250 . + . gene_id "YOR338W"; gene_biotype "protein_coding"; +chrXV SGD transcript 956835 958250 . + . transcript_id "YOR338W_id001"; gene_id "YOR338W"; transcript_biotype "protein_coding"; +chrXV SGD exon 956835 958250 . + . transcript_id "YOR338W_id001"; gene_id "YOR338W"; +chrXV SGD transcript 956898 957989 . + . transcript_id "YOR338W_id002"; gene_id "YOR338W"; transcript_biotype "protein_coding"; +chrXV SGD exon 956898 957989 . + 0 transcript_id "YOR338W_id002"; gene_id "YOR338W"; +chrXV SGD gene 958138 959560 . - . gene_id "YOR339C"; gene_biotype "protein_coding"; +chrXV SGD transcript 958138 959560 . - . transcript_id "YOR339C_id001"; gene_id "YOR339C"; gene_name "UBC11"; transcript_biotype "protein_coding"; +chrXV SGD exon 958138 959560 . - . transcript_id "YOR339C_id001"; gene_id "YOR339C"; gene_name "UBC11"; +chrXV SGD transcript 958362 958832 . - . transcript_id "YOR339C_id002"; gene_id "YOR339C"; gene_name "UBC11"; transcript_biotype "protein_coding"; +chrXV SGD exon 958362 958832 . - 0 transcript_id "YOR339C_id002"; gene_name "UBC11"; gene_id "YOR339C"; +chrXV SGD gene 958941 960200 . - . gene_id "YOR340C"; gene_biotype "protein_coding"; +chrXV SGD transcript 958941 960200 . - . transcript_id "YOR340C_id003"; gene_id "YOR340C"; gene_name "RPA43"; transcript_biotype "protein_coding"; +chrXV SGD exon 958941 960200 . - . transcript_id "YOR340C_id003"; gene_id "YOR340C"; gene_name "RPA43"; +chrXV SGD transcript 959202 960182 . - . transcript_id "YOR340C_id001"; gene_id "YOR340C"; gene_name "RPA43"; transcript_biotype "protein_coding"; +chrXV SGD exon 959202 960182 . - 0 transcript_id "YOR340C_id001"; gene_name "RPA43"; gene_id "YOR340C"; +chrXV SGD gene 960987 965981 . + . gene_id "YOR341W"; gene_biotype "protein_coding"; +chrXV SGD transcript 960987 965981 . + . transcript_id "YOR341W_mRNA"; gene_id "YOR341W"; gene_name "RPA190"; transcript_biotype "protein_coding"; +chrXV SGD CDS 960987 965981 . + 0 transcript_id "YOR341W_mRNA"; gene_name "RPA190"; gene_id "YOR341W"; +chrXV SGD gene 966472 967921 . - . gene_id "YOR342C"; gene_biotype "protein_coding"; +chrXV SGD transcript 966472 967921 . - . transcript_id "YOR342C_id001"; gene_id "YOR342C"; transcript_biotype "protein_coding"; +chrXV SGD exon 966472 967921 . - . transcript_id "YOR342C_id001"; gene_id "YOR342C"; +chrXV SGD transcript 966666 967625 . - . transcript_id "YOR342C_id005"; gene_id "YOR342C"; transcript_biotype "protein_coding"; +chrXV SGD exon 966666 967625 . - 0 transcript_id "YOR342C_id005"; gene_id "YOR342C"; +chrXV SGD gene 967498 968558 . - . gene_id "YOR343C"; gene_biotype "protein_coding"; +chrXV SGD transcript 967498 968558 . - . transcript_id "YOR343C_id009"; gene_id "YOR343C"; transcript_biotype "protein_coding"; +chrXV SGD exon 967498 968558 . - . transcript_id "YOR343C_id009"; gene_id "YOR343C"; +chrXV SGD transcript 968148 968474 . - . transcript_id "YOR343C_id001"; gene_id "YOR343C"; transcript_biotype "protein_coding"; +chrXV SGD exon 968148 968474 . - 0 transcript_id "YOR343C_id001"; gene_id "YOR343C"; +chrXV SGD gene 970578 971894 . + . gene_id "YOR343W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 970578 971894 . + . transcript_id "YOR343W-A_dummy"; gene_id "YOR343W-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 970578 971894 . + 0 transcript_id "YOR343W-A_dummy"; gene_id "YOR343W-A"; +chrXV SGD gene 970578 975891 . + . gene_id "YOR343W-B"; gene_biotype "protein_coding"; +chrXV SGD transcript 970578 975891 . + . transcript_id "YOR343W-B_dummy"; gene_id "YOR343W-B"; transcript_biotype "protein_coding"; +chrXV SGD exon 970578 971871 . + 0 transcript_id "YOR343W-B_dummy"; gene_id "YOR343W-B"; +chrXV SGD exon 971873 975891 . + 2 transcript_id "YOR343W-B_dummy"; gene_id "YOR343W-B"; +chrXV SGD gene 976421 976493 . + . gene_id "YNCO0030W"; gene_biotype "ncRNA"; +chrXV SGD transcript 976421 976493 . + . transcript_id "YNCO0030W_tRNA"; gene_id "YNCO0030W"; gene_name "EMT2"; transcript_biotype "ncRNA"; +chrXV SGD exon 976421 976493 . + . transcript_id "YNCO0030W_tRNA"; gene_name "EMT2"; gene_id "YNCO0030W"; +chrXV SGD gene 976707 978203 . - . gene_id "YOR344C"; gene_biotype "protein_coding"; +chrXV SGD transcript 976707 978203 . - . transcript_id "YOR344C_id009"; gene_id "YOR344C"; gene_name "TYE7"; transcript_biotype "protein_coding"; +chrXV SGD exon 976707 978203 . - . transcript_id "YOR344C_id009"; gene_id "YOR344C"; gene_name "TYE7"; +chrXV SGD transcript 977194 978069 . - . transcript_id "YOR344C_id001"; gene_id "YOR344C"; gene_name "TYE7"; transcript_biotype "protein_coding"; +chrXV SGD exon 977194 978069 . - 0 transcript_id "YOR344C_id001"; gene_name "TYE7"; gene_id "YOR344C"; +chrXV SGD gene 980683 980787 . + . gene_id "YNCO0031W"; gene_biotype "ncRNA"; +chrXV SGD transcript 980683 980787 . + . transcript_id "YNCO0031W_tRNA"; gene_id "YNCO0031W"; transcript_biotype "ncRNA"; +chrXV SGD exon 980683 980718 . + . transcript_id "YNCO0031W_tRNA"; gene_id "YNCO0031W"; +chrXV SGD exon 980752 980787 . + . transcript_id "YNCO0031W_tRNA"; gene_id "YNCO0031W"; +chrXV SGD gene 981632 984955 . + . gene_id "YOR346W"; gene_biotype "protein_coding"; +chrXV SGD transcript 981632 984955 . + . transcript_id "YOR346W_id001"; gene_id "YOR346W"; gene_name "REV1"; transcript_biotype "protein_coding"; +chrXV SGD exon 981632 984955 . + . transcript_id "YOR346W_id001"; gene_id "YOR346W"; gene_name "REV1"; +chrXV SGD gene 981812 982162 . - . gene_id "YOR345C"; gene_biotype "protein_coding"; +chrXV SGD transcript 981812 982162 . - . transcript_id "YOR345C_mRNA"; gene_id "YOR345C"; transcript_biotype "protein_coding"; +chrXV SGD CDS 981812 982162 . - 0 transcript_id "YOR345C_mRNA"; gene_id "YOR345C"; +chrXV SGD transcript 981828 984785 . + . transcript_id "YOR346W_id002"; gene_id "YOR346W"; gene_name "REV1"; transcript_biotype "protein_coding"; +chrXV SGD exon 981828 984785 . + 0 transcript_id "YOR346W_id002"; gene_name "REV1"; gene_id "YOR346W"; +chrXV SGD gene 983551 986561 . - . gene_id "YOR347C"; gene_biotype "protein_coding"; +chrXV SGD transcript 983551 986561 . - . transcript_id "YOR347C_id001"; gene_id "YOR347C"; gene_name "PYK2"; transcript_biotype "protein_coding"; +chrXV SGD exon 983551 986561 . - . transcript_id "YOR347C_id001"; gene_id "YOR347C"; gene_name "PYK2"; +chrXV SGD transcript 984942 986462 . - . transcript_id "YOR347C_id002"; gene_id "YOR347C"; gene_name "PYK2"; transcript_biotype "protein_coding"; +chrXV SGD exon 984942 986462 . - 0 transcript_id "YOR347C_id002"; gene_name "PYK2"; gene_id "YOR347C"; +chrXV SGD gene 986899 988782 . - . gene_id "YOR348C"; gene_biotype "protein_coding"; +chrXV SGD transcript 986899 988782 . - . transcript_id "YOR348C_id001"; gene_id "YOR348C"; gene_name "PUT4"; transcript_biotype "protein_coding"; +chrXV SGD exon 986899 988782 . - 0 transcript_id "YOR348C_id001"; gene_name "PUT4"; gene_id "YOR348C"; +chrXV SGD gene 989789 992833 . + . gene_id "YOR349W"; gene_biotype "protein_coding"; +chrXV SGD transcript 989789 992833 . + . transcript_id "YOR349W_mRNA"; gene_id "YOR349W"; gene_name "CIN1"; transcript_biotype "protein_coding"; +chrXV SGD CDS 989789 992833 . + 0 transcript_id "YOR349W_mRNA"; gene_name "CIN1"; gene_id "YOR349W"; +chrXV SGD gene 992864 994855 . - . gene_id "YOR350C"; gene_biotype "protein_coding"; +chrXV SGD transcript 992864 994855 . - . transcript_id "YOR350C_id001"; gene_id "YOR350C"; gene_name "MNE1"; transcript_biotype "protein_coding"; +chrXV SGD exon 992864 994855 . - 0 transcript_id "YOR350C_id001"; gene_name "MNE1"; gene_id "YOR350C"; +chrXV SGD gene 995018 996511 . - . gene_id "YOR351C"; gene_biotype "protein_coding"; +chrXV SGD transcript 995018 996511 . - . transcript_id "YOR351C_mRNA"; gene_id "YOR351C"; gene_name "MEK1"; transcript_biotype "protein_coding"; +chrXV SGD CDS 995018 996511 . - 0 transcript_id "YOR351C_mRNA"; gene_name "MEK1"; gene_id "YOR351C"; +chrXV SGD gene 997102 998314 . + . gene_id "YOR352W"; gene_biotype "protein_coding"; +chrXV SGD transcript 997102 998314 . + . transcript_id "YOR352W_id002"; gene_id "YOR352W"; gene_name "TFB6"; transcript_biotype "protein_coding"; +chrXV SGD exon 997102 998314 . + . transcript_id "YOR352W_id002"; gene_id "YOR352W"; gene_name "TFB6"; +chrXV SGD transcript 997213 998244 . + . transcript_id "YOR352W_id001"; gene_id "YOR352W"; gene_name "TFB6"; transcript_biotype "protein_coding"; +chrXV SGD exon 997213 998244 . + 0 transcript_id "YOR352W_id001"; gene_name "TFB6"; gene_id "YOR352W"; +chrXV SGD gene 998453 1000828 . - . gene_id "YOR353C"; gene_biotype "protein_coding"; +chrXV SGD transcript 998453 1000828 . - . transcript_id "YOR353C_mRNA"; gene_id "YOR353C"; gene_name "SOG2"; transcript_biotype "protein_coding"; +chrXV SGD CDS 998453 1000828 . - 0 transcript_id "YOR353C_mRNA"; gene_name "SOG2"; gene_id "YOR353C"; +chrXV SGD gene 1001016 1003262 . - . gene_id "YOR354C"; gene_biotype "protein_coding"; +chrXV SGD transcript 1001016 1003262 . - . transcript_id "YOR354C_id002"; gene_id "YOR354C"; gene_name "MSC6"; transcript_biotype "protein_coding"; +chrXV SGD exon 1001016 1003262 . - . transcript_id "YOR354C_id002"; gene_id "YOR354C"; gene_name "MSC6"; +chrXV SGD transcript 1001147 1003225 . - . transcript_id "YOR354C_id001"; gene_id "YOR354C"; gene_name "MSC6"; transcript_biotype "protein_coding"; +chrXV SGD exon 1001147 1003225 . - 0 transcript_id "YOR354C_id001"; gene_name "MSC6"; gene_id "YOR354C"; +chrXV SGD gene 1004548 1006895 . + . gene_id "YOR355W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1004548 1006895 . + . transcript_id "YOR355W_id001"; gene_id "YOR355W"; gene_name "GDS1"; transcript_biotype "protein_coding"; +chrXV SGD exon 1004548 1006895 . + . transcript_id "YOR355W_id001"; gene_id "YOR355W"; gene_name "GDS1"; +chrXV SGD transcript 1005137 1006705 . + . transcript_id "YOR355W_id004"; gene_id "YOR355W"; gene_name "GDS1"; transcript_biotype "protein_coding"; +chrXV SGD exon 1005137 1006705 . + 0 transcript_id "YOR355W_id004"; gene_name "GDS1"; gene_id "YOR355W"; +chrXV SGD gene 1007126 1009229 . + . gene_id "YOR356W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1007126 1009229 . + . transcript_id "YOR356W_id004"; gene_id "YOR356W"; gene_name "CIR2"; transcript_biotype "protein_coding"; +chrXV SGD exon 1007126 1009229 . + . transcript_id "YOR356W_id004"; gene_id "YOR356W"; gene_name "CIR2"; +chrXV SGD transcript 1007221 1009116 . + . transcript_id "YOR356W_id001"; gene_id "YOR356W"; gene_name "CIR2"; transcript_biotype "protein_coding"; +chrXV SGD exon 1007221 1009116 . + 0 transcript_id "YOR356W_id001"; gene_name "CIR2"; gene_id "YOR356W"; +chrXV SGD gene 1008985 1009729 . - . gene_id "YOR357C"; gene_biotype "protein_coding"; +chrXV SGD transcript 1008985 1009729 . - . transcript_id "YOR357C_id001"; gene_id "YOR357C"; gene_name "SNX3"; transcript_biotype "protein_coding"; +chrXV SGD exon 1008985 1009729 . - . transcript_id "YOR357C_id001"; gene_id "YOR357C"; gene_name "SNX3"; +chrXV SGD transcript 1009224 1009712 . - . transcript_id "YOR357C_id004"; gene_id "YOR357C"; gene_name "SNX3"; transcript_biotype "protein_coding"; +chrXV SGD exon 1009224 1009712 . - 0 transcript_id "YOR357C_id004"; gene_name "SNX3"; gene_id "YOR357C"; +chrXV SGD gene 1009972 1011222 . + . gene_id "YOR358W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1009972 1011222 . + . transcript_id "YOR358W_id002"; gene_id "YOR358W"; gene_name "HAP5"; transcript_biotype "protein_coding"; +chrXV SGD exon 1009972 1011222 . + . transcript_id "YOR358W_id002"; gene_id "YOR358W"; gene_name "HAP5"; +chrXV SGD transcript 1010161 1010889 . + . transcript_id "YOR358W_id001"; gene_id "YOR358W"; gene_name "HAP5"; transcript_biotype "protein_coding"; +chrXV SGD exon 1010161 1010889 . + 0 transcript_id "YOR358W_id001"; gene_name "HAP5"; gene_id "YOR358W"; +chrXV SGD gene 1011047 1013069 . + . gene_id "YOR359W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1011047 1013069 . + . transcript_id "YOR359W_id001"; gene_id "YOR359W"; gene_name "VTS1"; transcript_biotype "protein_coding"; +chrXV SGD exon 1011047 1013069 . + . transcript_id "YOR359W_id001"; gene_id "YOR359W"; gene_name "VTS1"; +chrXV SGD transcript 1011189 1012760 . + . transcript_id "YOR359W_id003"; gene_id "YOR359W"; gene_name "VTS1"; transcript_biotype "protein_coding"; +chrXV SGD exon 1011189 1012760 . + 0 transcript_id "YOR359W_id003"; gene_name "VTS1"; gene_id "YOR359W"; +chrXV SGD gene 1013116 1015066 . - . gene_id "YOR360C"; gene_biotype "protein_coding"; +chrXV SGD transcript 1013116 1015066 . - . transcript_id "YOR360C_id001"; gene_id "YOR360C"; gene_name "PDE2"; transcript_biotype "protein_coding"; +chrXV SGD exon 1013116 1015066 . - . transcript_id "YOR360C_id001"; gene_id "YOR360C"; gene_name "PDE2"; +chrXV SGD transcript 1013241 1014821 . - . transcript_id "YOR360C_id002"; gene_id "YOR360C"; gene_name "PDE2"; transcript_biotype "protein_coding"; +chrXV SGD exon 1013241 1014821 . - 0 transcript_id "YOR360C_id002"; gene_name "PDE2"; gene_id "YOR360C"; +chrXV SGD gene 1015361 1017652 . - . gene_id "YOR361C"; gene_biotype "protein_coding"; +chrXV SGD transcript 1015361 1017652 . - . transcript_id "YOR361C_mRNA"; gene_id "YOR361C"; gene_name "PRT1"; transcript_biotype "protein_coding"; +chrXV SGD CDS 1015361 1017652 . - 0 transcript_id "YOR361C_mRNA"; gene_name "PRT1"; gene_id "YOR361C"; +chrXV SGD gene 1017744 1019598 . - . gene_id "YOR362C"; gene_biotype "protein_coding"; +chrXV SGD transcript 1017744 1019598 . - . transcript_id "YOR362C_id001"; gene_id "YOR362C"; gene_name "PRE10"; transcript_biotype "protein_coding"; +chrXV SGD exon 1017744 1019598 . - . transcript_id "YOR362C_id001"; gene_id "YOR362C"; gene_name "PRE10"; +chrXV SGD transcript 1017880 1018746 . - . transcript_id "YOR362C_id003"; gene_id "YOR362C"; gene_name "PRE10"; transcript_biotype "protein_coding"; +chrXV SGD exon 1017880 1018746 . - 0 transcript_id "YOR362C_id003"; gene_name "PRE10"; gene_id "YOR362C"; +chrXV SGD gene 1020222 1023212 . - . gene_id "YOR363C"; gene_biotype "protein_coding"; +chrXV SGD transcript 1020222 1023212 . - . transcript_id "YOR363C_mRNA"; gene_id "YOR363C"; gene_name "PIP2"; transcript_biotype "protein_coding"; +chrXV SGD CDS 1020222 1023212 . - 0 transcript_id "YOR363C_mRNA"; gene_name "PIP2"; gene_id "YOR363C"; +chrXV SGD gene 1023371 1023739 . + . gene_id "YOR364W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1023371 1023739 . + . transcript_id "YOR364W_mRNA"; gene_id "YOR364W"; transcript_biotype "protein_coding"; +chrXV SGD CDS 1023371 1023739 . + 0 transcript_id "YOR364W_mRNA"; gene_id "YOR364W"; +chrXV SGD gene 1023461 1025572 . - . gene_id "YOR365C"; gene_biotype "protein_coding"; +chrXV SGD transcript 1023461 1025572 . - . transcript_id "YOR365C_mRNA"; gene_id "YOR365C"; transcript_biotype "protein_coding"; +chrXV SGD CDS 1023461 1025572 . - 0 transcript_id "YOR365C_mRNA"; gene_id "YOR365C"; +chrXV SGD gene 1023479 1025642 . + . gene_id "YOR366W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1023479 1025642 . + . transcript_id "YOR366W_id001"; gene_id "YOR366W"; transcript_biotype "protein_coding"; +chrXV SGD exon 1023479 1025642 . + . transcript_id "YOR366W_id001"; gene_id "YOR366W"; +chrXV SGD transcript 1025256 1025609 . + . transcript_id "YOR366W_id002"; gene_id "YOR366W"; transcript_biotype "protein_coding"; +chrXV SGD exon 1025256 1025609 . + 0 transcript_id "YOR366W_id002"; gene_id "YOR366W"; +chrXV SGD gene 1025992 1026790 . + . gene_id "YOR367W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1025992 1026790 . + . transcript_id "YOR367W_id002"; gene_id "YOR367W"; gene_name "SCP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 1025992 1026790 . + . transcript_id "YOR367W_id002"; gene_id "YOR367W"; gene_name "SCP1"; +chrXV SGD transcript 1026007 1026609 . + . transcript_id "YOR367W_id001"; gene_id "YOR367W"; gene_name "SCP1"; transcript_biotype "protein_coding"; +chrXV SGD exon 1026007 1026609 . + 0 transcript_id "YOR367W_id001"; gene_name "SCP1"; gene_id "YOR367W"; +chrXV SGD gene 1026787 1028158 . + . gene_id "YOR368W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1026787 1028158 . + . transcript_id "YOR368W_id004"; gene_id "YOR368W"; gene_name "RAD17"; transcript_biotype "protein_coding"; +chrXV SGD exon 1026787 1028158 . + . transcript_id "YOR368W_id004"; gene_id "YOR368W"; gene_name "RAD17"; +chrXV SGD transcript 1026843 1028048 . + . transcript_id "YOR368W_id001"; gene_id "YOR368W"; gene_name "RAD17"; transcript_biotype "protein_coding"; +chrXV SGD exon 1026843 1028048 . + 0 transcript_id "YOR368W_id001"; gene_name "RAD17"; gene_id "YOR368W"; +chrXV SGD gene 1027596 1028693 . - . gene_id "YOR369C"; gene_biotype "protein_coding"; +chrXV SGD transcript 1027596 1028693 . - . transcript_id "YOR369C_id002"; gene_id "YOR369C"; gene_name "RPS12"; transcript_biotype "protein_coding"; +chrXV SGD exon 1027596 1028693 . - . transcript_id "YOR369C_id002"; gene_id "YOR369C"; gene_name "RPS12"; +chrXV SGD transcript 1028194 1028625 . - . transcript_id "YOR369C_id001"; gene_id "YOR369C"; gene_name "RPS12"; transcript_biotype "protein_coding"; +chrXV SGD exon 1028194 1028625 . - 0 transcript_id "YOR369C_id001"; gene_name "RPS12"; gene_id "YOR369C"; +chrXV SGD gene 1029004 1032015 . - . gene_id "YOR370C"; gene_biotype "protein_coding"; +chrXV SGD transcript 1029004 1032015 . - . transcript_id "YOR370C_id002"; gene_id "YOR370C"; gene_name "MRS6"; transcript_biotype "protein_coding"; +chrXV SGD exon 1029004 1032015 . - . transcript_id "YOR370C_id002"; gene_id "YOR370C"; gene_name "MRS6"; +chrXV SGD transcript 1029183 1030994 . - . transcript_id "YOR370C_id001"; gene_id "YOR370C"; gene_name "MRS6"; transcript_biotype "protein_coding"; +chrXV SGD exon 1029183 1030994 . - 0 transcript_id "YOR370C_id001"; gene_name "MRS6"; gene_id "YOR370C"; +chrXV SGD gene 1031489 1034182 . - . gene_id "YOR371C"; gene_biotype "protein_coding"; +chrXV SGD transcript 1031489 1034182 . - . transcript_id "YOR371C_id001"; gene_id "YOR371C"; gene_name "GPB1"; transcript_biotype "protein_coding"; +chrXV SGD exon 1031489 1034182 . - 0 transcript_id "YOR371C_id001"; gene_name "GPB1"; gene_id "YOR371C"; +chrXV SGD gene 1034466 1036563 . - . gene_id "YOR372C"; gene_biotype "protein_coding"; +chrXV SGD transcript 1034466 1036563 . - . transcript_id "YOR372C_id001"; gene_id "YOR372C"; gene_name "NDD1"; transcript_biotype "protein_coding"; +chrXV SGD exon 1034466 1036563 . - . transcript_id "YOR372C_id001"; gene_id "YOR372C"; gene_name "NDD1"; +chrXV SGD transcript 1034807 1036471 . - . transcript_id "YOR372C_id004"; gene_id "YOR372C"; gene_name "NDD1"; transcript_biotype "protein_coding"; +chrXV SGD exon 1034807 1036471 . - 0 transcript_id "YOR372C_id004"; gene_name "NDD1"; gene_id "YOR372C"; +chrXV SGD gene 1036834 1039389 . + . gene_id "YOR373W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1036834 1039389 . + . transcript_id "YOR373W_mRNA"; gene_id "YOR373W"; gene_name "NUD1"; transcript_biotype "protein_coding"; +chrXV SGD CDS 1036834 1039389 . + 0 transcript_id "YOR373W_mRNA"; gene_name "NUD1"; gene_id "YOR373W"; +chrXV SGD gene 1039773 1041543 . + . gene_id "YOR374W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1039773 1041543 . + . transcript_id "YOR374W_id004"; gene_id "YOR374W"; gene_name "ALD4"; transcript_biotype "protein_coding"; +chrXV SGD exon 1039773 1041543 . + . transcript_id "YOR374W_id004"; gene_id "YOR374W"; gene_name "ALD4"; +chrXV SGD transcript 1039840 1041399 . + . transcript_id "YOR374W_id001"; gene_id "YOR374W"; gene_name "ALD4"; transcript_biotype "protein_coding"; +chrXV SGD exon 1039840 1041399 . + 0 transcript_id "YOR374W_id001"; gene_name "ALD4"; gene_id "YOR374W"; +chrXV SGD gene 1041538 1043222 . - . gene_id "YOR375C"; gene_biotype "protein_coding"; +chrXV SGD transcript 1041538 1043222 . - . transcript_id "YOR375C_id002"; gene_id "YOR375C"; gene_name "GDH1"; transcript_biotype "protein_coding"; +chrXV SGD exon 1041538 1043222 . - . transcript_id "YOR375C_id002"; gene_id "YOR375C"; gene_name "GDH1"; +chrXV SGD transcript 1041678 1043042 . - . transcript_id "YOR375C_id001"; gene_id "YOR375C"; gene_name "GDH1"; transcript_biotype "protein_coding"; +chrXV SGD exon 1041678 1043042 . - 0 transcript_id "YOR375C_id001"; gene_name "GDH1"; gene_id "YOR375C"; +chrXV SGD gene 1043191 1043559 . + . gene_id "YOR376W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1043191 1043559 . + . transcript_id "YOR376W_mRNA"; gene_id "YOR376W"; transcript_biotype "protein_coding"; +chrXV SGD CDS 1043191 1043559 . + 0 transcript_id "YOR376W_mRNA"; gene_id "YOR376W"; +chrXV SGD gene 1044706 1046406 . + . gene_id "YOR376W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 1044706 1046406 . + . transcript_id "YOR376W-A_id001"; gene_id "YOR376W-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 1044706 1046406 . + . transcript_id "YOR376W-A_id001"; gene_id "YOR376W-A"; +chrXV SGD transcript 1045196 1045351 . + . transcript_id "YOR376W-A_id002"; gene_id "YOR376W-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 1045196 1045351 . + 0 transcript_id "YOR376W-A_id002"; gene_id "YOR376W-A"; +chrXV SGD gene 1046175 1048142 . + . gene_id "YOR377W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1046175 1048142 . + . transcript_id "YOR377W_id001"; gene_id "YOR377W"; gene_name "ATF1"; transcript_biotype "protein_coding"; +chrXV SGD exon 1046175 1048142 . + . transcript_id "YOR377W_id001"; gene_id "YOR377W"; gene_name "ATF1"; +chrXV SGD transcript 1046226 1047803 . + . transcript_id "YOR377W_id004"; gene_id "YOR377W"; gene_name "ATF1"; transcript_biotype "protein_coding"; +chrXV SGD exon 1046226 1047803 . + 0 transcript_id "YOR377W_id004"; gene_name "ATF1"; gene_id "YOR377W"; +chrXV SGD gene 1049389 1051127 . + . gene_id "YOR378W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1049389 1051127 . + . transcript_id "YOR378W_id001"; gene_id "YOR378W"; gene_name "AMF1"; transcript_biotype "protein_coding"; +chrXV SGD exon 1049389 1051127 . + . transcript_id "YOR378W_id001"; gene_id "YOR378W"; gene_name "AMF1"; +chrXV SGD transcript 1049511 1051058 . + . transcript_id "YOR378W_id003"; gene_id "YOR378W"; gene_name "AMF1"; transcript_biotype "protein_coding"; +chrXV SGD exon 1049511 1051058 . + 0 transcript_id "YOR378W_id003"; gene_name "AMF1"; gene_id "YOR378W"; +chrXV SGD gene 1050726 1051064 . - . gene_id "YOR379C"; gene_biotype "protein_coding"; +chrXV SGD transcript 1050726 1051064 . - . transcript_id "YOR379C_mRNA"; gene_id "YOR379C"; transcript_biotype "protein_coding"; +chrXV SGD CDS 1050726 1051064 . - 0 transcript_id "YOR379C_mRNA"; gene_id "YOR379C"; +chrXV SGD gene 1051077 1053014 . + . gene_id "YOR380W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1051077 1053014 . + . transcript_id "YOR380W_id002"; gene_id "YOR380W"; gene_name "RDR1"; transcript_biotype "protein_coding"; +chrXV SGD exon 1051077 1053014 . + . transcript_id "YOR380W_id002"; gene_id "YOR380W"; gene_name "RDR1"; +chrXV SGD transcript 1051290 1052930 . + . transcript_id "YOR380W_id001"; gene_id "YOR380W"; gene_name "RDR1"; transcript_biotype "protein_coding"; +chrXV SGD exon 1051290 1052930 . + 0 transcript_id "YOR380W_id001"; gene_name "RDR1"; gene_id "YOR380W"; +chrXV SGD gene 1055078 1057796 . + . gene_id "YOR381W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1055078 1057796 . + . transcript_id "YOR381W_id003"; gene_id "YOR381W"; gene_name "FRE3"; transcript_biotype "protein_coding"; +chrXV SGD exon 1055078 1057796 . + . transcript_id "YOR381W_id003"; gene_id "YOR381W"; gene_name "FRE3"; +chrXV SGD transcript 1055545 1057680 . + . transcript_id "YOR381W_id001"; gene_id "YOR381W"; gene_name "FRE3"; transcript_biotype "protein_coding"; +chrXV SGD exon 1055545 1057680 . + 0 transcript_id "YOR381W_id001"; gene_name "FRE3"; gene_id "YOR381W"; +chrXV SGD gene 1058030 1059390 . + . gene_id "YOR381W-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 1058030 1059390 . + . transcript_id "YOR381W-A_id001"; gene_id "YOR381W-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 1058030 1059390 . + . transcript_id "YOR381W-A_id001"; gene_id "YOR381W-A"; +chrXV SGD transcript 1058423 1058590 . + . transcript_id "YOR381W-A_id002"; gene_id "YOR381W-A"; transcript_biotype "protein_coding"; +chrXV SGD exon 1058423 1058590 . + 0 transcript_id "YOR381W-A_id002"; gene_id "YOR381W-A"; +chrXV SGD gene 1059214 1060090 . + . gene_id "YOR382W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1059214 1060090 . + . transcript_id "YOR382W_id002"; gene_id "YOR382W"; gene_name "FIT2"; transcript_biotype "protein_coding"; +chrXV SGD exon 1059214 1060090 . + . transcript_id "YOR382W_id002"; gene_id "YOR382W"; gene_name "FIT2"; +chrXV SGD transcript 1059531 1059992 . + . transcript_id "YOR382W_id001"; gene_id "YOR382W"; gene_name "FIT2"; transcript_biotype "protein_coding"; +chrXV SGD exon 1059531 1059992 . + 0 transcript_id "YOR382W_id001"; gene_name "FIT2"; gene_id "YOR382W"; +chrXV SGD gene 1060241 1062089 . - . gene_id "YOR383C"; gene_biotype "protein_coding"; +chrXV SGD transcript 1060241 1062089 . - . transcript_id "YOR383C_id001"; gene_id "YOR383C"; gene_name "FIT3"; transcript_biotype "protein_coding"; +chrXV SGD exon 1060241 1062089 . - . transcript_id "YOR383C_id001"; gene_id "YOR383C"; gene_name "FIT3"; +chrXV SGD transcript 1060441 1061055 . - . transcript_id "YOR383C_id003"; gene_id "YOR383C"; gene_name "FIT3"; transcript_biotype "protein_coding"; +chrXV SGD exon 1060441 1061055 . - 0 transcript_id "YOR383C_id003"; gene_name "FIT3"; gene_id "YOR383C"; +chrXV SGD gene 1061564 1063648 . + . gene_id "YOR384W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1061564 1063648 . + . transcript_id "YOR384W_id001"; gene_id "YOR384W"; gene_name "FRE5"; transcript_biotype "protein_coding"; +chrXV SGD exon 1061564 1063648 . + 0 transcript_id "YOR384W_id001"; gene_name "FRE5"; gene_id "YOR384W"; +chrXV SGD gene 1065035 1066459 . + . gene_id "YOR385W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1065035 1066459 . + . transcript_id "YOR385W_id006"; gene_id "YOR385W"; transcript_biotype "protein_coding"; +chrXV SGD exon 1065035 1066459 . + . transcript_id "YOR385W_id006"; gene_id "YOR385W"; +chrXV SGD transcript 1065043 1065915 . + . transcript_id "YOR385W_id001"; gene_id "YOR385W"; transcript_biotype "protein_coding"; +chrXV SGD exon 1065043 1065915 . + 0 transcript_id "YOR385W_id001"; gene_id "YOR385W"; +chrXV SGD gene 1066839 1068536 . + . gene_id "YOR386W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1066839 1068536 . + . transcript_id "YOR386W_id001"; gene_id "YOR386W"; gene_name "PHR1"; transcript_biotype "protein_coding"; +chrXV SGD exon 1066839 1068536 . + 0 transcript_id "YOR386W_id001"; gene_name "PHR1"; gene_id "YOR386W"; +chrXV SGD gene 1069621 1070241 . - . gene_id "YOR387C"; gene_biotype "protein_coding"; +chrXV SGD transcript 1069621 1070241 . - . transcript_id "YOR387C_id001"; gene_id "YOR387C"; transcript_biotype "protein_coding"; +chrXV SGD exon 1069621 1070241 . - 0 transcript_id "YOR387C_id001"; gene_id "YOR387C"; +chrXV SGD gene 1071793 1072923 . - . gene_id "YOR388C"; gene_biotype "protein_coding"; +chrXV SGD transcript 1071793 1072923 . - . transcript_id "YOR388C_mRNA"; gene_id "YOR388C"; gene_name "FDH1"; transcript_biotype "protein_coding"; +chrXV SGD CDS 1071793 1072923 . - 0 transcript_id "YOR388C_mRNA"; gene_name "FDH1"; gene_id "YOR388C"; +chrXV SGD gene 1074213 1076087 . + . gene_id "YOR389W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1074213 1076087 . + . transcript_id "YOR389W_mRNA"; gene_id "YOR389W"; transcript_biotype "protein_coding"; +chrXV SGD CDS 1074213 1076087 . + 0 transcript_id "YOR389W_mRNA"; gene_id "YOR389W"; +chrXV SGD gene 1076712 1078183 . + . gene_id "YOR390W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1076712 1078183 . + . transcript_id "YOR390W_id003"; gene_id "YOR390W"; gene_name "FEX1"; transcript_biotype "protein_coding"; +chrXV SGD exon 1076712 1078183 . + . transcript_id "YOR390W_id003"; gene_id "YOR390W"; gene_name "FEX1"; +chrXV SGD transcript 1076784 1077911 . + . transcript_id "YOR390W_id001"; gene_id "YOR390W"; gene_name "FEX1"; transcript_biotype "protein_coding"; +chrXV SGD exon 1076784 1077911 . + 0 transcript_id "YOR390W_id001"; gene_name "FEX1"; gene_id "YOR390W"; +chrXV SGD gene 1078545 1079258 . - . gene_id "YOR391C"; gene_biotype "protein_coding"; +chrXV SGD transcript 1078545 1079258 . - . transcript_id "YOR391C_mRNA"; gene_id "YOR391C"; gene_name "HSP33"; transcript_biotype "protein_coding"; +chrXV SGD CDS 1078545 1079258 . - 0 transcript_id "YOR391C_mRNA"; gene_name "HSP33"; gene_id "YOR391C"; +chrXV SGD gene 1079282 1079725 . + . gene_id "YOR392W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1079282 1079725 . + . transcript_id "YOR392W_mRNA"; gene_id "YOR392W"; transcript_biotype "protein_coding"; +chrXV SGD CDS 1079282 1079725 . + 0 transcript_id "YOR392W_mRNA"; gene_id "YOR392W"; +chrXV SGD gene 1080276 1081589 . + . gene_id "YOR393W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1080276 1081589 . + . transcript_id "YOR393W_mRNA"; gene_id "YOR393W"; gene_name "ERR1"; transcript_biotype "protein_coding"; +chrXV SGD CDS 1080276 1081589 . + 0 transcript_id "YOR393W_mRNA"; gene_name "ERR1"; gene_id "YOR393W"; +chrXV SGD gene 1082718 1083212 . + . gene_id "YOR394W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1082718 1083212 . + . transcript_id "YOR394W_mRNA"; gene_id "YOR394W"; gene_name "PAU21"; transcript_biotype "protein_coding"; +chrXV SGD CDS 1082718 1083212 . + 0 transcript_id "YOR394W_mRNA"; gene_name "PAU21"; gene_id "YOR394W"; +chrXV SGD gene 1084202 1084369 . - . gene_id "YOR394C-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 1084202 1084369 . - . transcript_id "YOR394C-A_mRNA"; gene_id "YOR394C-A"; transcript_biotype "protein_coding"; +chrXV SGD CDS 1084202 1084369 . - 0 transcript_id "YOR394C-A_mRNA"; gene_id "YOR394C-A"; +chrXV SGD gene 1085473 1090863 . + . gene_id "YOR396W"; gene_biotype "protein_coding"; +chrXV SGD transcript 1085473 1090863 . + . transcript_id "YOR396W_mRNA"; gene_id "YOR396W"; gene_name "YRF1-8"; transcript_biotype "protein_coding"; +chrXV SGD CDS 1085473 1090863 . + 0 transcript_id "YOR396W_mRNA"; gene_name "YRF1-8"; gene_id "YOR396W"; +chrXV SGD gene 1090015 1090497 . - . gene_id "YOR396C-A"; gene_biotype "protein_coding"; +chrXV SGD transcript 1090015 1090497 . - . transcript_id "YOR396C-A_mRNA"; gene_id "YOR396C-A"; transcript_biotype "protein_coding"; +chrXV SGD CDS 1090015 1090497 . - 0 transcript_id "YOR396C-A_mRNA"; gene_id "YOR396C-A"; +chrXVI SGD gene 280 6007 . - . gene_id "YPL283C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 280 6007 . - . transcript_id "YPL283C_mRNA"; gene_id "YPL283C"; gene_name "YRF1-7"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 280 5840 . - 2 transcript_id "YPL283C_mRNA"; gene_name "YRF1-7"; gene_id "YPL283C"; +chrXVI SGD CDS 5989 6007 . - 0 transcript_id "YPL283C_mRNA"; gene_name "YRF1-7"; gene_id "YPL283C"; +chrXVI SGD gene 643 1125 . + . gene_id "YPL283W-B"; gene_biotype "protein_coding"; +chrXVI SGD transcript 643 1125 . + . transcript_id "YPL283W-B_mRNA"; gene_id "YPL283W-B"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 643 1125 . + 0 transcript_id "YPL283W-B_mRNA"; gene_id "YPL283W-B"; +chrXVI SGD gene 1426 2001 . + . gene_id "YPL283W-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 1426 2001 . + . transcript_id "YPL283W-A_mRNA"; gene_id "YPL283W-A"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 1426 2001 . + 0 transcript_id "YPL283W-A_mRNA"; gene_id "YPL283W-A"; +chrXVI SGD gene 7933 8427 . - . gene_id "YPL282C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 7933 8427 . - . transcript_id "YPL282C_mRNA"; gene_id "YPL282C"; gene_name "PAU22"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 7933 8427 . - 0 transcript_id "YPL282C_mRNA"; gene_name "PAU22"; gene_id "YPL282C"; +chrXVI SGD gene 9557 10870 . - . gene_id "YPL281C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 9557 10870 . - . transcript_id "YPL281C_mRNA"; gene_id "YPL281C"; gene_name "ERR2"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 9557 10870 . - 0 transcript_id "YPL281C_mRNA"; gene_name "ERR2"; gene_id "YPL281C"; +chrXVI SGD gene 11887 12600 . + . gene_id "YPL280W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 11887 12600 . + . transcript_id "YPL280W_mRNA"; gene_id "YPL280W"; gene_name "HSP32"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 11887 12600 . + 0 transcript_id "YPL280W_mRNA"; gene_name "HSP32"; gene_id "YPL280W"; +chrXVI SGD gene 13228 14355 . - . gene_id "YPL279C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 13228 14355 . - . transcript_id "YPL279C_id001"; gene_id "YPL279C"; gene_name "FEX2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 13228 14355 . - 0 transcript_id "YPL279C_id001"; gene_name "FEX2"; gene_id "YPL279C"; +chrXVI SGD gene 15053 15355 . - . gene_id "YPL278C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 15053 15355 . - . transcript_id "YPL278C_mRNA"; gene_id "YPL278C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 15053 15355 . - 0 transcript_id "YPL278C_mRNA"; gene_id "YPL278C"; +chrXVI SGD gene 15405 16868 . - . gene_id "YPL277C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 15405 16868 . - . transcript_id "YPL277C_mRNA"; gene_id "YPL277C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 15405 16868 . - 0 transcript_id "YPL277C_mRNA"; gene_id "YPL277C"; +chrXVI SGD gene 22870 25062 . + . gene_id "YPL274W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 22870 25062 . + . transcript_id "YPL274W_id003"; gene_id "YPL274W"; gene_name "SAM3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 22870 25062 . + . transcript_id "YPL274W_id003"; gene_id "YPL274W"; gene_name "SAM3"; +chrXVI SGD transcript 22938 24701 . + . transcript_id "YPL274W_id001"; gene_id "YPL274W"; gene_name "SAM3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 22938 24701 . + 0 transcript_id "YPL274W_id001"; gene_name "SAM3"; gene_id "YPL274W"; +chrXVI SGD gene 24888 26177 . + . gene_id "YPL273W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 24888 26177 . + . transcript_id "YPL273W_id001"; gene_id "YPL273W"; gene_name "SAM4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 24888 26177 . + . transcript_id "YPL273W_id001"; gene_id "YPL273W"; gene_name "SAM4"; +chrXVI SGD transcript 25087 26064 . + . transcript_id "YPL273W_id002"; gene_id "YPL273W"; gene_name "SAM4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 25087 26064 . + 0 transcript_id "YPL273W_id002"; gene_name "SAM4"; gene_id "YPL273W"; +chrXVI SGD gene 26611 28164 . - . gene_id "YPL272C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 26611 28164 . - . transcript_id "YPL272C_mRNA"; gene_id "YPL272C"; gene_name "PBI1"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 26611 28164 . - 0 transcript_id "YPL272C_mRNA"; gene_name "PBI1"; gene_id "YPL272C"; +chrXVI SGD gene 29488 30384 . + . gene_id "YPL271W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 29488 30384 . + . transcript_id "YPL271W_id003"; gene_id "YPL271W"; gene_name "ATP15"; transcript_biotype "protein_coding"; +chrXVI SGD exon 29488 30384 . + . transcript_id "YPL271W_id003"; gene_id "YPL271W"; gene_name "ATP15"; +chrXVI SGD transcript 30079 30267 . + . transcript_id "YPL271W_id001"; gene_id "YPL271W"; gene_name "ATP15"; transcript_biotype "protein_coding"; +chrXVI SGD exon 30079 30267 . + 0 transcript_id "YPL271W_id001"; gene_name "ATP15"; gene_id "YPL271W"; +chrXVI SGD gene 30439 32907 . + . gene_id "YPL270W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 30439 32907 . + . transcript_id "YPL270W_id003"; gene_id "YPL270W"; gene_name "MDL2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 30439 32907 . + . transcript_id "YPL270W_id003"; gene_id "YPL270W"; gene_name "MDL2"; +chrXVI SGD transcript 30482 32803 . + . transcript_id "YPL270W_id001"; gene_id "YPL270W"; gene_name "MDL2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 30482 32803 . + 0 transcript_id "YPL270W_id001"; gene_name "MDL2"; gene_id "YPL270W"; +chrXVI SGD gene 33013 35095 . + . gene_id "YPL269W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 33013 34947 . + . transcript_id "YPL269W_id001"; gene_id "YPL269W"; gene_name "KAR9"; transcript_biotype "protein_coding"; +chrXVI SGD exon 33013 34947 . + 0 transcript_id "YPL269W_id001"; gene_name "KAR9"; gene_id "YPL269W"; +chrXVI SGD transcript 33013 35095 . + . transcript_id "YPL269W_id002"; gene_id "YPL269W"; gene_name "KAR9"; transcript_biotype "protein_coding"; +chrXVI SGD exon 33013 35095 . + . transcript_id "YPL269W_id002"; gene_id "YPL269W"; gene_name "KAR9"; +chrXVI SGD gene 35172 37991 . + . gene_id "YPL268W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 35172 37991 . + . transcript_id "YPL268W_id001"; gene_id "YPL268W"; gene_name "PLC1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 35172 37991 . + . transcript_id "YPL268W_id001"; gene_id "YPL268W"; gene_name "PLC1"; +chrXVI SGD transcript 35236 37845 . + . transcript_id "YPL268W_id004"; gene_id "YPL268W"; gene_name "PLC1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 35236 37845 . + 0 transcript_id "YPL268W_id004"; gene_name "PLC1"; gene_id "YPL268W"; +chrXVI SGD gene 38154 38939 . + . gene_id "YPL267W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 38154 38939 . + . transcript_id "YPL267W_id002"; gene_id "YPL267W"; gene_name "ACM1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 38154 38939 . + . transcript_id "YPL267W_id002"; gene_id "YPL267W"; gene_name "ACM1"; +chrXVI SGD transcript 38169 38798 . + . transcript_id "YPL267W_id001"; gene_id "YPL267W"; gene_name "ACM1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 38169 38798 . + 0 transcript_id "YPL267W_id001"; gene_name "ACM1"; gene_id "YPL267W"; +chrXVI SGD gene 39074 40340 . + . gene_id "YPL266W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 39074 40340 . + . transcript_id "YPL266W_id001"; gene_id "YPL266W"; gene_name "DIM1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 39074 40340 . + . transcript_id "YPL266W_id001"; gene_id "YPL266W"; gene_name "DIM1"; +chrXVI SGD transcript 39121 40077 . + . transcript_id "YPL266W_id002"; gene_id "YPL266W"; gene_name "DIM1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 39121 40077 . + 0 transcript_id "YPL266W_id002"; gene_name "DIM1"; gene_id "YPL266W"; +chrXVI SGD gene 40917 43190 . + . gene_id "YPL265W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 40917 43190 . + . transcript_id "YPL265W_id001"; gene_id "YPL265W"; gene_name "DIP5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 40917 43190 . + . transcript_id "YPL265W_id001"; gene_id "YPL265W"; gene_name "DIP5"; +chrXVI SGD transcript 41043 42869 . + . transcript_id "YPL265W_id002"; gene_id "YPL265W"; gene_name "DIP5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 41043 42869 . + 0 transcript_id "YPL265W_id002"; gene_name "DIP5"; gene_id "YPL265W"; +chrXVI SGD gene 43020 44366 . - . gene_id "YPL264C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 43020 44366 . - . transcript_id "YPL264C_id003"; gene_id "YPL264C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 43020 44366 . - . transcript_id "YPL264C_id003"; gene_id "YPL264C"; +chrXVI SGD transcript 43283 44344 . - . transcript_id "YPL264C_id001"; gene_id "YPL264C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 43283 44344 . - 0 transcript_id "YPL264C_id001"; gene_id "YPL264C"; +chrXVI SGD gene 44392 46525 . - . gene_id "YPL263C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 44392 46525 . - . transcript_id "YPL263C_id003"; gene_id "YPL263C"; gene_name "KEL3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 44392 46525 . - . transcript_id "YPL263C_id003"; gene_id "YPL263C"; gene_name "KEL3"; +chrXVI SGD transcript 44551 46506 . - . transcript_id "YPL263C_id001"; gene_id "YPL263C"; gene_name "KEL3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 44551 46506 . - 0 transcript_id "YPL263C_id001"; gene_name "KEL3"; gene_id "YPL263C"; +chrXVI SGD gene 47268 49042 . + . gene_id "YPL262W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 47268 49042 . + . transcript_id "YPL262W_id006"; gene_id "YPL262W"; gene_name "FUM1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 47268 49042 . + . transcript_id "YPL262W_id006"; gene_id "YPL262W"; gene_name "FUM1"; +chrXVI SGD transcript 47336 48802 . + . transcript_id "YPL262W_id001"; gene_id "YPL262W"; gene_name "FUM1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 47336 48802 . + 0 transcript_id "YPL262W_id001"; gene_name "FUM1"; gene_id "YPL262W"; +chrXVI SGD gene 48996 49304 . - . gene_id "YPL261C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 48996 49304 . - . transcript_id "YPL261C_id001"; gene_id "YPL261C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 48996 49304 . - 0 transcript_id "YPL261C_id001"; gene_id "YPL261C"; +chrXVI SGD gene 49197 51316 . + . gene_id "YPL260W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 49197 51316 . + . transcript_id "YPL260W_id001"; gene_id "YPL260W"; gene_name "CUB1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 49197 51316 . + . transcript_id "YPL260W_id001"; gene_id "YPL260W"; gene_name "CUB1"; +chrXVI SGD transcript 49303 50958 . + . transcript_id "YPL260W_id002"; gene_id "YPL260W"; gene_name "CUB1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 49303 50958 . + 0 transcript_id "YPL260W_id002"; gene_name "CUB1"; gene_id "YPL260W"; +chrXVI SGD gene 51042 52728 . - . gene_id "YPL259C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 51042 52728 . - . transcript_id "YPL259C_id001"; gene_id "YPL259C"; gene_name "APM1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 51042 52728 . - . transcript_id "YPL259C_id001"; gene_id "YPL259C"; gene_name "APM1"; +chrXVI SGD transcript 51244 52671 . - . transcript_id "YPL259C_id003"; gene_id "YPL259C"; gene_name "APM1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 51244 52671 . - 0 transcript_id "YPL259C_id003"; gene_name "APM1"; gene_id "YPL259C"; +chrXVI SGD gene 53421 55762 . - . gene_id "YPL258C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 53421 55762 . - . transcript_id "YPL258C_id002"; gene_id "YPL258C"; gene_name "THI21"; transcript_biotype "protein_coding"; +chrXVI SGD exon 53421 55762 . - . transcript_id "YPL258C_id002"; gene_id "YPL258C"; gene_name "THI21"; +chrXVI SGD transcript 53498 55153 . - . transcript_id "YPL258C_id001"; gene_id "YPL258C"; gene_name "THI21"; transcript_biotype "protein_coding"; +chrXVI SGD exon 53498 55153 . - 0 transcript_id "YPL258C_id001"; gene_name "THI21"; gene_id "YPL258C"; +chrXVI SGD gene 56169 56274 . - . gene_id "YNCP0001C"; gene_biotype "ncRNA"; +chrXVI SGD transcript 56169 56274 . - . transcript_id "YNCP0001C_tRNA"; gene_id "YNCP0001C"; transcript_biotype "ncRNA"; +chrXVI SGD exon 56169 56204 . - . transcript_id "YNCP0001C_tRNA"; gene_id "YNCP0001C"; +chrXVI SGD exon 56239 56274 . - . transcript_id "YNCP0001C_tRNA"; gene_id "YNCP0001C"; +chrXVI SGD gene 56748 58070 . + . gene_id "YPL257W-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 56748 58070 . + . transcript_id "YPL257W-A_dummy"; gene_id "YPL257W-A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 56748 58070 . + 0 transcript_id "YPL257W-A_dummy"; gene_id "YPL257W-A"; +chrXVI SGD gene 56748 62016 . + . gene_id "YPL257W-B"; gene_biotype "protein_coding"; +chrXVI SGD transcript 56748 62016 . + . transcript_id "YPL257W-B_dummy"; gene_id "YPL257W-B"; transcript_biotype "protein_coding"; +chrXVI SGD exon 56748 58052 . + 0 transcript_id "YPL257W-B_dummy"; gene_id "YPL257W-B"; +chrXVI SGD exon 58054 62016 . + 0 transcript_id "YPL257W-B_dummy"; gene_id "YPL257W-B"; +chrXVI SGD gene 63214 64783 . + . gene_id "YPL257W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 63214 64783 . + . transcript_id "YPL257W_id002"; gene_id "YPL257W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 63214 64783 . + . transcript_id "YPL257W_id002"; gene_id "YPL257W"; +chrXVI SGD transcript 63279 63860 . + . transcript_id "YPL257W_id001"; gene_id "YPL257W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 63279 63860 . + 0 transcript_id "YPL257W_id001"; gene_id "YPL257W"; +chrXVI SGD gene 64735 66792 . - . gene_id "YPL256C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 64735 66792 . - . transcript_id "YPL256C_id004"; gene_id "YPL256C"; gene_name "CLN2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 64735 66792 . - . transcript_id "YPL256C_id004"; gene_id "YPL256C"; gene_name "CLN2"; +chrXVI SGD transcript 64977 66614 . - . transcript_id "YPL256C_id001"; gene_id "YPL256C"; gene_name "CLN2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 64977 66614 . - 0 transcript_id "YPL256C_id001"; gene_name "CLN2"; gene_id "YPL256C"; +chrXVI SGD gene 67668 69118 . + . gene_id "YPL255W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 67668 69118 . + . transcript_id "YPL255W_id006"; gene_id "YPL255W"; gene_name "BBP1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 67668 69118 . + . transcript_id "YPL255W_id006"; gene_id "YPL255W"; gene_name "BBP1"; +chrXVI SGD transcript 67725 68882 . + . transcript_id "YPL255W_id001"; gene_id "YPL255W"; gene_name "BBP1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 67725 68882 . + 0 transcript_id "YPL255W_id001"; gene_name "BBP1"; gene_id "YPL255W"; +chrXVI SGD gene 69229 71018 . + . gene_id "YPL254W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 69229 71018 . + . transcript_id "YPL254W_id001"; gene_id "YPL254W"; gene_name "HFI1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 69229 71018 . + . transcript_id "YPL254W_id001"; gene_id "YPL254W"; gene_name "HFI1"; +chrXVI SGD transcript 69485 70951 . + . transcript_id "YPL254W_id004"; gene_id "YPL254W"; gene_name "HFI1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 69485 70951 . + 0 transcript_id "YPL254W_id004"; gene_name "HFI1"; gene_id "YPL254W"; +chrXVI SGD gene 70928 73061 . - . gene_id "YPL253C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 70928 73061 . - . transcript_id "YPL253C_id001"; gene_id "YPL253C"; gene_name "VIK1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 70928 73061 . - . transcript_id "YPL253C_id001"; gene_id "YPL253C"; gene_name "VIK1"; +chrXVI SGD transcript 71063 73006 . - . transcript_id "YPL253C_id002"; gene_id "YPL253C"; gene_name "VIK1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 71063 73006 . - 0 transcript_id "YPL253C_id002"; gene_name "VIK1"; gene_id "YPL253C"; +chrXVI SGD gene 73228 73974 . - . gene_id "YPL252C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 73228 73974 . - . transcript_id "YPL252C_id001"; gene_id "YPL252C"; gene_name "YAH1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 73228 73974 . - . transcript_id "YPL252C_id001"; gene_id "YPL252C"; gene_name "YAH1"; +chrXVI SGD transcript 73363 73881 . - . transcript_id "YPL252C_id002"; gene_id "YPL252C"; gene_name "YAH1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 73363 73881 . - 0 transcript_id "YPL252C_id002"; gene_name "YAH1"; gene_id "YPL252C"; +chrXVI SGD gene 73625 73927 . + . gene_id "YPL251W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 73625 73927 . + . transcript_id "YPL251W_mRNA"; gene_id "YPL251W"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 73625 73927 . + 0 transcript_id "YPL251W_mRNA"; gene_id "YPL251W"; +chrXVI SGD gene 73940 74786 . - . gene_id "YPL250C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 73940 74786 . - . transcript_id "YPL250C_id001"; gene_id "YPL250C"; gene_name "ATG41"; transcript_biotype "protein_coding"; +chrXVI SGD exon 73940 74786 . - . transcript_id "YPL250C_id001"; gene_id "YPL250C"; gene_name "ATG41"; +chrXVI SGD transcript 74309 74719 . - . transcript_id "YPL250C_id006"; gene_id "YPL250C"; gene_name "ATG41"; transcript_biotype "protein_coding"; +chrXVI SGD exon 74309 74719 . - 0 transcript_id "YPL250C_id006"; gene_name "ATG41"; gene_id "YPL250C"; +chrXVI SGD gene 75449 76300 . - . gene_id "YPL249C-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 75449 76300 . - . transcript_id "YPL249C-A_id002"; gene_id "YPL249C-A"; gene_name "RPL36B"; transcript_biotype "protein_coding"; +chrXVI SGD exon 75449 76300 . - . transcript_id "YPL249C-A_id002"; gene_id "YPL249C-A"; gene_name "RPL36B"; +chrXVI SGD transcript 75699 76239 . - . transcript_id "YPL249C-A_id001"; gene_id "YPL249C-A"; gene_name "RPL36B"; transcript_biotype "protein_coding"; +chrXVI SGD exon 75699 75985 . - 2 transcript_id "YPL249C-A_id001"; gene_name "RPL36B"; gene_id "YPL249C-A"; +chrXVI SGD exon 76224 76239 . - 0 transcript_id "YPL249C-A_id001"; gene_name "RPL36B"; gene_id "YPL249C-A"; +chrXVI SGD gene 75702 75989 . + . gene_id "YPL250W-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 75702 75989 . + . transcript_id "YPL250W-A_mRNA"; gene_id "YPL250W-A"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 75702 75989 . + 0 transcript_id "YPL250W-A_mRNA"; gene_id "YPL250W-A"; +chrXVI SGD gene 76669 79353 . - . gene_id "YPL249C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 76669 79353 . - . transcript_id "YPL249C_id001"; gene_id "YPL249C"; gene_name "GYP5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 76669 79353 . - 0 transcript_id "YPL249C_id001"; gene_name "GYP5"; gene_id "YPL249C"; +chrXVI SGD gene 79562 82648 . + . gene_id "YNCP0002W"; gene_biotype "ncRNA"; +chrXVI SGD transcript 79562 82648 . + . transcript_id "YNCP0002W_ncRNA"; gene_id "YNCP0002W"; transcript_biotype "ncRNA"; +chrXVI SGD exon 79562 82648 . + . transcript_id "YNCP0002W_ncRNA"; gene_id "YNCP0002W"; +chrXVI SGD gene 79711 82356 . - . gene_id "YPL248C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 79711 82356 . - . transcript_id "YPL248C_id001"; gene_id "YPL248C"; gene_name "GAL4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 79711 82356 . - 0 transcript_id "YPL248C_id001"; gene_name "GAL4"; gene_id "YPL248C"; +chrXVI SGD gene 82625 84196 . - . gene_id "YPL247C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 82625 84196 . - . transcript_id "YPL247C_id001"; gene_id "YPL247C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 82625 84196 . - 0 transcript_id "YPL247C_id001"; gene_id "YPL247C"; +chrXVI SGD gene 84245 85337 . - . gene_id "YPL246C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 84245 85337 . - . transcript_id "YPL246C_id003"; gene_id "YPL246C"; gene_name "RBD2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 84245 85337 . - . transcript_id "YPL246C_id003"; gene_id "YPL246C"; gene_name "RBD2"; +chrXVI SGD transcript 84509 85297 . - . transcript_id "YPL246C_id001"; gene_id "YPL246C"; gene_name "RBD2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 84509 85297 . - 0 transcript_id "YPL246C_id001"; gene_name "RBD2"; gene_id "YPL246C"; +chrXVI SGD gene 85528 87019 . + . gene_id "YPL245W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 85528 87019 . + . transcript_id "YPL245W_id001"; gene_id "YPL245W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 85528 87019 . + . transcript_id "YPL245W_id001"; gene_id "YPL245W"; +chrXVI SGD transcript 85586 86950 . + . transcript_id "YPL245W_id004"; gene_id "YPL245W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 85586 86950 . + 0 transcript_id "YPL245W_id004"; gene_id "YPL245W"; +chrXVI SGD gene 86933 88318 . - . gene_id "YPL244C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 86933 88318 . - . transcript_id "YPL244C_id001"; gene_id "YPL244C"; gene_name "HUT1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 86933 88318 . - . transcript_id "YPL244C_id001"; gene_id "YPL244C"; gene_name "HUT1"; +chrXVI SGD transcript 87014 88033 . - . transcript_id "YPL244C_id002"; gene_id "YPL244C"; gene_name "HUT1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 87014 88033 . - 0 transcript_id "YPL244C_id002"; gene_name "HUT1"; gene_id "YPL244C"; +chrXVI SGD gene 88427 90994 . + . gene_id "YPL243W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 88427 90994 . + . transcript_id "YPL243W_id001"; gene_id "YPL243W"; gene_name "SRP68"; transcript_biotype "protein_coding"; +chrXVI SGD exon 88427 90994 . + . transcript_id "YPL243W_id001"; gene_id "YPL243W"; gene_name "SRP68"; +chrXVI SGD transcript 88517 90316 . + . transcript_id "YPL243W_id002"; gene_id "YPL243W"; gene_name "SRP68"; transcript_biotype "protein_coding"; +chrXVI SGD exon 88517 90316 . + 0 transcript_id "YPL243W_id002"; gene_name "SRP68"; gene_id "YPL243W"; +chrXVI SGD gene 90622 95109 . - . gene_id "YPL242C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 90622 95109 . - . transcript_id "YPL242C_mRNA"; gene_id "YPL242C"; gene_name "IQG1"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 90622 95109 . - 0 transcript_id "YPL242C_mRNA"; gene_name "IQG1"; gene_id "YPL242C"; +chrXVI SGD gene 95223 96266 . - . gene_id "YPL241C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 95223 96266 . - . transcript_id "YPL241C_id002"; gene_id "YPL241C"; gene_name "CIN2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 95223 96266 . - . transcript_id "YPL241C_id002"; gene_id "YPL241C"; gene_name "CIN2"; +chrXVI SGD transcript 95372 96258 . - . transcript_id "YPL241C_id001"; gene_id "YPL241C"; gene_name "CIN2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 95372 96153 . - 2 transcript_id "YPL241C_id001"; gene_name "CIN2"; gene_id "YPL241C"; +chrXVI SGD exon 96234 96258 . - 0 transcript_id "YPL241C_id001"; gene_name "CIN2"; gene_id "YPL241C"; +chrXVI SGD gene 96377 98747 . - . gene_id "YPL240C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 96377 98747 . - . transcript_id "YPL240C_id001"; gene_id "YPL240C"; gene_name "HSP82"; transcript_biotype "protein_coding"; +chrXVI SGD exon 96377 98747 . - . transcript_id "YPL240C_id001"; gene_id "YPL240C"; gene_name "HSP82"; +chrXVI SGD transcript 96496 98625 . - . transcript_id "YPL240C_id003"; gene_id "YPL240C"; gene_name "HSP82"; transcript_biotype "protein_coding"; +chrXVI SGD exon 96496 98625 . - 0 transcript_id "YPL240C_id003"; gene_name "HSP82"; gene_id "YPL240C"; +chrXVI SGD gene 98904 100252 . + . gene_id "YPL239W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 98904 100252 . + . transcript_id "YPL239W_id002"; gene_id "YPL239W"; gene_name "YAR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 98904 100252 . + . transcript_id "YPL239W_id002"; gene_id "YPL239W"; gene_name "YAR1"; +chrXVI SGD transcript 99484 100086 . + . transcript_id "YPL239W_id001"; gene_id "YPL239W"; gene_name "YAR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 99484 100086 . + 0 transcript_id "YPL239W_id001"; gene_name "YAR1"; gene_id "YPL239W"; +chrXVI SGD gene 100354 101481 . + . gene_id "YPL237W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 100354 101481 . + . transcript_id "YPL237W_id004"; gene_id "YPL237W"; gene_name "SUI3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 100354 101481 . + . transcript_id "YPL237W_id004"; gene_id "YPL237W"; gene_name "SUI3"; +chrXVI SGD gene 100474 100863 . - . gene_id "YPL238C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 100474 100863 . - . transcript_id "YPL238C_mRNA"; gene_id "YPL238C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 100474 100863 . - 0 transcript_id "YPL238C_mRNA"; gene_id "YPL238C"; +chrXVI SGD transcript 100496 101353 . + . transcript_id "YPL237W_id001"; gene_id "YPL237W"; gene_name "SUI3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 100496 101353 . + 0 transcript_id "YPL237W_id001"; gene_name "SUI3"; gene_id "YPL237W"; +chrXVI SGD gene 100764 102773 . - . gene_id "YPL236C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 100764 102773 . - . transcript_id "YPL236C_id001"; gene_id "YPL236C"; gene_name "ENV7"; transcript_biotype "protein_coding"; +chrXVI SGD exon 100764 102773 . - . transcript_id "YPL236C_id001"; gene_id "YPL236C"; gene_name "ENV7"; +chrXVI SGD transcript 101608 102702 . - . transcript_id "YPL236C_id002"; gene_id "YPL236C"; gene_name "ENV7"; transcript_biotype "protein_coding"; +chrXVI SGD exon 101608 102702 . - 0 transcript_id "YPL236C_id002"; gene_name "ENV7"; gene_id "YPL236C"; +chrXVI SGD gene 103183 104899 . + . gene_id "YPL235W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 103183 104899 . + . transcript_id "YPL235W_id004"; gene_id "YPL235W"; gene_name "RVB2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 103183 104899 . + . transcript_id "YPL235W_id004"; gene_id "YPL235W"; gene_name "RVB2"; +chrXVI SGD transcript 103232 104647 . + . transcript_id "YPL235W_id001"; gene_id "YPL235W"; gene_name "RVB2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 103232 104647 . + 0 transcript_id "YPL235W_id001"; gene_name "RVB2"; gene_id "YPL235W"; +chrXVI SGD gene 104486 105491 . - . gene_id "YPL234C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 104486 105491 . - . transcript_id "YPL234C_id003"; gene_id "YPL234C"; gene_name "VMA11"; transcript_biotype "protein_coding"; +chrXVI SGD exon 104486 105491 . - . transcript_id "YPL234C_id003"; gene_id "YPL234C"; gene_name "VMA11"; +chrXVI SGD transcript 104946 105440 . - . transcript_id "YPL234C_id001"; gene_id "YPL234C"; gene_name "VMA11"; transcript_biotype "protein_coding"; +chrXVI SGD exon 104946 105440 . - 0 transcript_id "YPL234C_id001"; gene_name "VMA11"; gene_id "YPL234C"; +chrXVI SGD gene 106053 106943 . + . gene_id "YPL233W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 106053 106943 . + . transcript_id "YPL233W_id001"; gene_id "YPL233W"; gene_name "NSL1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 106053 106943 . + . transcript_id "YPL233W_id001"; gene_id "YPL233W"; gene_name "NSL1"; +chrXVI SGD transcript 106172 106822 . + . transcript_id "YPL233W_id002"; gene_id "YPL233W"; gene_name "NSL1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 106172 106822 . + 0 transcript_id "YPL233W_id002"; gene_name "NSL1"; gene_id "YPL233W"; +chrXVI SGD gene 106433 108226 . + . gene_id "YPL232W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 106433 108226 . + . transcript_id "YPL232W_id003"; gene_id "YPL232W"; gene_name "SSO1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 106433 108226 . + . transcript_id "YPL232W_id003"; gene_id "YPL232W"; gene_name "SSO1"; +chrXVI SGD transcript 107275 108147 . + . transcript_id "YPL232W_id001"; gene_id "YPL232W"; gene_name "SSO1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 107275 108147 . + 0 transcript_id "YPL232W_id001"; gene_name "SSO1"; gene_id "YPL232W"; +chrXVI SGD gene 108652 114315 . + . gene_id "YPL231W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 108652 114315 . + . transcript_id "YPL231W_mRNA"; gene_id "YPL231W"; gene_name "FAS2"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 108652 114315 . + 0 transcript_id "YPL231W_mRNA"; gene_name "FAS2"; gene_id "YPL231W"; +chrXVI SGD gene 115069 116569 . + . gene_id "YPL230W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 115069 116569 . + . transcript_id "YPL230W_id006"; gene_id "YPL230W"; gene_name "USV1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 115069 116569 . + . transcript_id "YPL230W_id006"; gene_id "YPL230W"; gene_name "USV1"; +chrXVI SGD transcript 115219 116487 . + . transcript_id "YPL230W_id001"; gene_id "YPL230W"; gene_name "USV1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 115219 115293 . + . transcript_id "YPL230W_id001"; gene_name "USV1"; gene_id "YPL230W"; +chrXVI SGD exon 115312 116487 . + . transcript_id "YPL230W_id001"; gene_name "USV1"; gene_id "YPL230W"; +chrXVI SGD exon 115312 116487 . + 0 transcript_id "YPL230W_id001"; gene_name "USV1"; gene_id "YPL230W"; +chrXVI SGD gene 116866 117975 . + . gene_id "YPL229W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 116866 117975 . + . transcript_id "YPL229W_id002"; gene_id "YPL229W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 116866 117975 . + . transcript_id "YPL229W_id002"; gene_id "YPL229W"; +chrXVI SGD transcript 117067 117687 . + . transcript_id "YPL229W_id001"; gene_id "YPL229W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 117067 117687 . + 0 transcript_id "YPL229W_id001"; gene_id "YPL229W"; +chrXVI SGD gene 118239 120238 . + . gene_id "YPL228W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 118239 120238 . + . transcript_id "YPL228W_id002"; gene_id "YPL228W"; gene_name "CET1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 118239 120238 . + . transcript_id "YPL228W_id002"; gene_id "YPL228W"; gene_name "CET1"; +chrXVI SGD transcript 118382 120031 . + . transcript_id "YPL228W_id001"; gene_id "YPL228W"; gene_name "CET1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 118382 120031 . + 0 transcript_id "YPL228W_id001"; gene_name "CET1"; gene_id "YPL228W"; +chrXVI SGD gene 120089 121464 . - . gene_id "YPL227C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 120089 121464 . - . transcript_id "YPL227C_id003"; gene_id "YPL227C"; gene_name "ALG5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 120089 121464 . - . transcript_id "YPL227C_id003"; gene_id "YPL227C"; gene_name "ALG5"; +chrXVI SGD transcript 120163 121167 . - . transcript_id "YPL227C_id001"; gene_id "YPL227C"; gene_name "ALG5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 120163 121167 . - 0 transcript_id "YPL227C_id001"; gene_name "ALG5"; gene_id "YPL227C"; +chrXVI SGD gene 121738 125626 . + . gene_id "YPL226W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 121738 125626 . + . transcript_id "YPL226W_id002"; gene_id "YPL226W"; gene_name "NEW1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 121738 125626 . + . transcript_id "YPL226W_id002"; gene_id "YPL226W"; gene_name "NEW1"; +chrXVI SGD transcript 121767 125357 . + . transcript_id "YPL226W_id001"; gene_id "YPL226W"; gene_name "NEW1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 121767 125357 . + 0 transcript_id "YPL226W_id001"; gene_name "NEW1"; gene_id "YPL226W"; +chrXVI SGD gene 125998 126660 . + . gene_id "YPL225W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 125998 126660 . + . transcript_id "YPL225W_id001"; gene_id "YPL225W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 125998 126660 . + . transcript_id "YPL225W_id001"; gene_id "YPL225W"; +chrXVI SGD transcript 126006 126446 . + . transcript_id "YPL225W_id004"; gene_id "YPL225W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 126006 126446 . + 0 transcript_id "YPL225W_id004"; gene_id "YPL225W"; +chrXVI SGD gene 126440 128333 . - . gene_id "YPL224C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 126440 128333 . - . transcript_id "YPL224C_id001"; gene_id "YPL224C"; gene_name "MMT2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 126440 128333 . - . transcript_id "YPL224C_id001"; gene_id "YPL224C"; gene_name "MMT2"; +chrXVI SGD transcript 126634 128088 . - . transcript_id "YPL224C_id002"; gene_id "YPL224C"; gene_name "MMT2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 126634 128088 . - 0 transcript_id "YPL224C_id002"; gene_name "MMT2"; gene_id "YPL224C"; +chrXVI SGD gene 128632 129138 . - . gene_id "YPL223C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 128632 129138 . - . transcript_id "YPL223C_id001"; gene_id "YPL223C"; gene_name "GRE1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 128632 129138 . - 0 transcript_id "YPL223C_id001"; gene_name "GRE1"; gene_id "YPL223C"; +chrXVI SGD gene 130162 132228 . + . gene_id "YPL222W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 130162 132228 . + . transcript_id "YPL222W_id001"; gene_id "YPL222W"; gene_name "FMP40"; transcript_biotype "protein_coding"; +chrXVI SGD exon 130162 132228 . + 0 transcript_id "YPL222W_id001"; gene_name "FMP40"; gene_id "YPL222W"; +chrXVI SGD gene 131870 132115 . - . gene_id "YPL222C-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 131870 132115 . - . transcript_id "YPL222C-A_id001"; gene_id "YPL222C-A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 131870 132115 . - 0 transcript_id "YPL222C-A_id001"; gene_id "YPL222C-A"; +chrXVI SGD gene 132797 135601 . + . gene_id "YPL221W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 132797 135601 . + . transcript_id "YPL221W_id002"; gene_id "YPL221W"; gene_name "FLC1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 132797 135601 . + . transcript_id "YPL221W_id002"; gene_id "YPL221W"; gene_name "FLC1"; +chrXVI SGD transcript 133043 135424 . + . transcript_id "YPL221W_id001"; gene_id "YPL221W"; gene_name "FLC1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 133043 135424 . + 0 transcript_id "YPL221W_id001"; gene_name "FLC1"; gene_id "YPL221W"; +chrXVI SGD gene 135770 136733 . + . gene_id "YPL220W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 135770 136733 . + . transcript_id "YPL220W_id001"; gene_id "YPL220W"; gene_name "RPL1A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 135770 136733 . + . transcript_id "YPL220W_id001"; gene_id "YPL220W"; gene_name "RPL1A"; +chrXVI SGD transcript 135790 136443 . + . transcript_id "YPL220W_id003"; gene_id "YPL220W"; gene_name "RPL1A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 135790 136443 . + 0 transcript_id "YPL220W_id003"; gene_name "RPL1A"; gene_id "YPL220W"; +chrXVI SGD gene 136642 138346 . + . gene_id "YPL219W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 136642 138346 . + . transcript_id "YPL219W_id003"; gene_id "YPL219W"; gene_name "PCL8"; transcript_biotype "protein_coding"; +chrXVI SGD exon 136642 138346 . + . transcript_id "YPL219W_id003"; gene_id "YPL219W"; gene_name "PCL8"; +chrXVI SGD transcript 136750 138228 . + . transcript_id "YPL219W_id001"; gene_id "YPL219W"; gene_name "PCL8"; transcript_biotype "protein_coding"; +chrXVI SGD exon 136750 138228 . + 0 transcript_id "YPL219W_id001"; gene_name "PCL8"; gene_id "YPL219W"; +chrXVI SGD gene 138636 139662 . + . gene_id "YPL218W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 138636 139662 . + . transcript_id "YPL218W_id002"; gene_id "YPL218W"; gene_name "SAR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 138636 139662 . + . transcript_id "YPL218W_id002"; gene_id "YPL218W"; gene_name "SAR1"; +chrXVI SGD transcript 138698 139409 . + . transcript_id "YPL218W_id001"; gene_id "YPL218W"; gene_name "SAR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 138698 138725 . + 0 transcript_id "YPL218W_id001"; gene_name "SAR1"; gene_id "YPL218W"; +chrXVI SGD exon 138865 139409 . + 2 transcript_id "YPL218W_id001"; gene_name "SAR1"; gene_id "YPL218W"; +chrXVI SGD gene 139522 143205 . - . gene_id "YPL217C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 139522 143205 . - . transcript_id "YPL217C_id001"; gene_id "YPL217C"; gene_name "BMS1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 139522 143205 . - . transcript_id "YPL217C_id001"; gene_id "YPL217C"; gene_name "BMS1"; +chrXVI SGD transcript 139620 143171 . - . transcript_id "YPL217C_id002"; gene_id "YPL217C"; gene_name "BMS1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 139620 143171 . - 0 transcript_id "YPL217C_id002"; gene_name "BMS1"; gene_id "YPL217C"; +chrXVI SGD gene 143821 147129 . + . gene_id "YPL216W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 143821 147129 . + . transcript_id "YPL216W_mRNA"; gene_id "YPL216W"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 143821 147129 . + 0 transcript_id "YPL216W_mRNA"; gene_id "YPL216W"; +chrXVI SGD gene 146825 148604 . + . gene_id "YPL215W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 146825 148604 . + . transcript_id "YPL215W_id002"; gene_id "YPL215W"; gene_name "CBP3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 146825 148604 . + . transcript_id "YPL215W_id002"; gene_id "YPL215W"; gene_name "CBP3"; +chrXVI SGD transcript 147416 148423 . + . transcript_id "YPL215W_id001"; gene_id "YPL215W"; gene_name "CBP3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 147416 148423 . + 0 transcript_id "YPL215W_id001"; gene_name "CBP3"; gene_id "YPL215W"; +chrXVI SGD gene 148403 150292 . - . gene_id "YPL214C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 148403 150292 . - . transcript_id "YPL214C_id001"; gene_id "YPL214C"; gene_name "THI6"; transcript_biotype "protein_coding"; +chrXVI SGD exon 148403 150292 . - . transcript_id "YPL214C_id001"; gene_id "YPL214C"; gene_name "THI6"; +chrXVI SGD transcript 148569 150191 . - . transcript_id "YPL214C_id002"; gene_id "YPL214C"; gene_name "THI6"; transcript_biotype "protein_coding"; +chrXVI SGD exon 148569 150191 . - 0 transcript_id "YPL214C_id002"; gene_name "THI6"; gene_id "YPL214C"; +chrXVI SGD gene 150578 151479 . + . gene_id "YPL213W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 150578 151479 . + . transcript_id "YPL213W_id010"; gene_id "YPL213W"; gene_name "LEA1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 150578 151479 . + . transcript_id "YPL213W_id010"; gene_id "YPL213W"; gene_name "LEA1"; +chrXVI SGD transcript 150614 151330 . + . transcript_id "YPL213W_id001"; gene_id "YPL213W"; gene_name "LEA1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 150614 151330 . + 0 transcript_id "YPL213W_id001"; gene_name "LEA1"; gene_id "YPL213W"; +chrXVI SGD gene 151337 153208 . - . gene_id "YPL212C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 151337 153208 . - . transcript_id "YPL212C_id001"; gene_id "YPL212C"; gene_name "PUS1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 151337 153208 . - . transcript_id "YPL212C_id001"; gene_id "YPL212C"; gene_name "PUS1"; +chrXVI SGD transcript 151515 153149 . - . transcript_id "YPL212C_id002"; gene_id "YPL212C"; gene_name "PUS1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 151515 153149 . - 0 transcript_id "YPL212C_id002"; gene_name "PUS1"; gene_id "YPL212C"; +chrXVI SGD gene 153466 154374 . + . gene_id "YPL211W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 153466 154374 . + . transcript_id "YPL211W_id002"; gene_id "YPL211W"; gene_name "NIP7"; transcript_biotype "protein_coding"; +chrXVI SGD exon 153466 154374 . + . transcript_id "YPL211W_id002"; gene_id "YPL211W"; gene_name "NIP7"; +chrXVI SGD transcript 153495 154040 . + . transcript_id "YPL211W_id001"; gene_id "YPL211W"; gene_name "NIP7"; transcript_biotype "protein_coding"; +chrXVI SGD exon 153495 154040 . + 0 transcript_id "YPL211W_id001"; gene_name "NIP7"; gene_id "YPL211W"; +chrXVI SGD gene 154090 156231 . - . gene_id "YPL210C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 154090 156231 . - . transcript_id "YPL210C_id001"; gene_id "YPL210C"; gene_name "SRP72"; transcript_biotype "protein_coding"; +chrXVI SGD exon 154090 156231 . - . transcript_id "YPL210C_id001"; gene_id "YPL210C"; gene_name "SRP72"; +chrXVI SGD transcript 154290 156212 . - . transcript_id "YPL210C_id002"; gene_id "YPL210C"; gene_name "SRP72"; transcript_biotype "protein_coding"; +chrXVI SGD exon 154290 156212 . - 0 transcript_id "YPL210C_id002"; gene_name "SRP72"; gene_id "YPL210C"; +chrXVI SGD gene 155911 157677 . - . gene_id "YPL209C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 155911 157677 . - . transcript_id "YPL209C_id001"; gene_id "YPL209C"; gene_name "IPL1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 155911 157677 . - . transcript_id "YPL209C_id001"; gene_id "YPL209C"; gene_name "IPL1"; +chrXVI SGD transcript 156490 157593 . - . transcript_id "YPL209C_id002"; gene_id "YPL209C"; gene_name "IPL1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 156490 157593 . - 0 transcript_id "YPL209C_id002"; gene_name "IPL1"; gene_id "YPL209C"; +chrXVI SGD gene 157842 159593 . + . gene_id "YPL208W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 157842 159593 . + . transcript_id "YPL208W_id001"; gene_id "YPL208W"; gene_name "RKM1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 157842 159593 . + 0 transcript_id "YPL208W_id001"; gene_name "RKM1"; gene_id "YPL208W"; +chrXVI SGD gene 159832 162430 . + . gene_id "YPL207W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 159832 162430 . + . transcript_id "YPL207W_id001"; gene_id "YPL207W"; gene_name "TYW1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 159832 162430 . + . transcript_id "YPL207W_id001"; gene_id "YPL207W"; gene_name "TYW1"; +chrXVI SGD transcript 159909 162341 . + . transcript_id "YPL207W_id002"; gene_id "YPL207W"; gene_name "TYW1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 159909 162341 . + 0 transcript_id "YPL207W_id002"; gene_name "TYW1"; gene_id "YPL207W"; +chrXVI SGD gene 162323 163671 . - . gene_id "YPL206C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 162323 163671 . - . transcript_id "YPL206C_id002"; gene_id "YPL206C"; gene_name "PGC1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 162323 163671 . - . transcript_id "YPL206C_id002"; gene_id "YPL206C"; gene_name "PGC1"; +chrXVI SGD transcript 162632 163597 . - . transcript_id "YPL206C_id001"; gene_id "YPL206C"; gene_name "PGC1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 162632 163597 . - 0 transcript_id "YPL206C_id001"; gene_name "PGC1"; gene_id "YPL206C"; +chrXVI SGD gene 163922 164266 . - . gene_id "YPL205C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 163922 164266 . - . transcript_id "YPL205C_mRNA"; gene_id "YPL205C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 163922 164266 . - 0 transcript_id "YPL205C_mRNA"; gene_id "YPL205C"; +chrXVI SGD gene 164088 165950 . + . gene_id "YPL204W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 164088 165950 . + . transcript_id "YPL204W_id001"; gene_id "YPL204W"; gene_name "HRR25"; transcript_biotype "protein_coding"; +chrXVI SGD exon 164088 165950 . + . transcript_id "YPL204W_id001"; gene_id "YPL204W"; gene_name "HRR25"; +chrXVI SGD transcript 164276 165760 . + . transcript_id "YPL204W_id003"; gene_id "YPL204W"; gene_name "HRR25"; transcript_biotype "protein_coding"; +chrXVI SGD exon 164276 165760 . + 0 transcript_id "YPL204W_id003"; gene_name "HRR25"; gene_id "YPL204W"; +chrXVI SGD gene 166094 167783 . + . gene_id "YPL203W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 166094 167783 . + . transcript_id "YPL203W_id002"; gene_id "YPL203W"; gene_name "TPK2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 166094 167783 . + . transcript_id "YPL203W_id002"; gene_id "YPL203W"; gene_name "TPK2"; +chrXVI SGD transcript 166256 167398 . + . transcript_id "YPL203W_id001"; gene_id "YPL203W"; gene_name "TPK2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 166256 167398 . + 0 transcript_id "YPL203W_id001"; gene_name "TPK2"; gene_id "YPL203W"; +chrXVI SGD gene 167705 169462 . - . gene_id "YPL202C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 167705 169462 . - . transcript_id "YPL202C_id001"; gene_id "YPL202C"; gene_name "AFT2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 167705 169462 . - . transcript_id "YPL202C_id001"; gene_id "YPL202C"; gene_name "AFT2"; +chrXVI SGD transcript 168088 169338 . - . transcript_id "YPL202C_id002"; gene_id "YPL202C"; gene_name "AFT2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 168088 169338 . - 0 transcript_id "YPL202C_id002"; gene_name "AFT2"; gene_id "YPL202C"; +chrXVI SGD gene 169770 171155 . - . gene_id "YPL201C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 169770 171155 . - . transcript_id "YPL201C_id001"; gene_id "YPL201C"; gene_name "YIG1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 169770 171155 . - 0 transcript_id "YPL201C_id001"; gene_name "YIG1"; gene_id "YPL201C"; +chrXVI SGD gene 171193 172767 . - . gene_id "YPL199C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 171193 172767 . - . transcript_id "YPL199C_id001"; gene_id "YPL199C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 171193 172767 . - . transcript_id "YPL199C_id001"; gene_id "YPL199C"; +chrXVI SGD gene 171484 171954 . + . gene_id "YPL200W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 171484 171954 . + . transcript_id "YPL200W_id001"; gene_id "YPL200W"; gene_name "CSM4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 171484 171954 . + 0 transcript_id "YPL200W_id001"; gene_name "CSM4"; gene_id "YPL200W"; +chrXVI SGD transcript 172033 172755 . - . transcript_id "YPL199C_id002"; gene_id "YPL199C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 172033 172755 . - 0 transcript_id "YPL199C_id002"; gene_id "YPL199C"; +chrXVI SGD gene 173115 174943 . + . gene_id "YPL198W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 173115 174943 . + . transcript_id "YPL198W_id001"; gene_id "YPL198W"; gene_name "RPL7B"; transcript_biotype "protein_coding"; +chrXVI SGD exon 173115 174943 . + . transcript_id "YPL198W_id001"; gene_id "YPL198W"; gene_name "RPL7B"; +chrXVI SGD transcript 173152 174702 . + . transcript_id "YPL198W_id003"; gene_id "YPL198W"; gene_name "RPL7B"; transcript_biotype "protein_coding"; +chrXVI SGD exon 173152 173162 . + 0 transcript_id "YPL198W_id003"; gene_name "RPL7B"; gene_id "YPL198W"; +chrXVI SGD exon 173572 173665 . + 1 transcript_id "YPL198W_id003"; gene_name "RPL7B"; gene_id "YPL198W"; +chrXVI SGD exon 174073 174702 . + 0 transcript_id "YPL198W_id003"; gene_name "RPL7B"; gene_id "YPL198W"; +chrXVI SGD gene 173827 173904 . + . gene_id "YNCP0003W"; gene_biotype "ncRNA"; +chrXVI SGD transcript 173827 173904 . + . transcript_id "YNCP0003W_snoRNA"; gene_id "YNCP0003W"; gene_name "SNR59"; transcript_biotype "ncRNA"; +chrXVI SGD exon 173827 173904 . + . transcript_id "YNCP0003W_snoRNA"; gene_name "SNR59"; gene_id "YNCP0003W"; +chrXVI SGD gene 174343 174756 . - . gene_id "YPL197C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 174343 174756 . - . transcript_id "YPL197C_mRNA"; gene_id "YPL197C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 174343 174756 . - 0 transcript_id "YPL197C_mRNA"; gene_id "YPL197C"; +chrXVI SGD gene 174966 176048 . + . gene_id "YPL196W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 174966 176048 . + . transcript_id "YPL196W_id001"; gene_id "YPL196W"; gene_name "OXR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 174966 176048 . + . transcript_id "YPL196W_id001"; gene_id "YPL196W"; gene_name "OXR1"; +chrXVI SGD transcript 175043 175864 . + . transcript_id "YPL196W_id003"; gene_id "YPL196W"; gene_name "OXR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 175043 175864 . + 0 transcript_id "YPL196W_id003"; gene_name "OXR1"; gene_id "YPL196W"; +chrXVI SGD gene 176196 179127 . + . gene_id "YPL195W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 176196 179127 . + . transcript_id "YPL195W_id003"; gene_id "YPL195W"; gene_name "APL5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 176196 179127 . + . transcript_id "YPL195W_id003"; gene_id "YPL195W"; gene_name "APL5"; +chrXVI SGD transcript 176223 179021 . + . transcript_id "YPL195W_id001"; gene_id "YPL195W"; gene_name "APL5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 176223 179021 . + 0 transcript_id "YPL195W_id001"; gene_name "APL5"; gene_id "YPL195W"; +chrXVI SGD gene 179227 181348 . + . gene_id "YPL194W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 179227 181348 . + . transcript_id "YPL194W_id001"; gene_id "YPL194W"; gene_name "DDC1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 179227 181348 . + . transcript_id "YPL194W_id001"; gene_id "YPL194W"; gene_name "DDC1"; +chrXVI SGD transcript 179277 181115 . + . transcript_id "YPL194W_id002"; gene_id "YPL194W"; gene_name "DDC1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 179277 181115 . + 0 transcript_id "YPL194W_id002"; gene_name "DDC1"; gene_id "YPL194W"; +chrXVI SGD gene 181364 183171 . + . gene_id "YPL193W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 181364 183171 . + . transcript_id "YPL193W_id004"; gene_id "YPL193W"; gene_name "RSA1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 181364 183171 . + . transcript_id "YPL193W_id004"; gene_id "YPL193W"; gene_name "RSA1"; +chrXVI SGD transcript 181403 182548 . + . transcript_id "YPL193W_id001"; gene_id "YPL193W"; gene_name "RSA1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 181403 182548 . + 0 transcript_id "YPL193W_id001"; gene_name "RSA1"; gene_id "YPL193W"; +chrXVI SGD gene 182655 183056 . - . gene_id "YPL192C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 182655 183056 . - . transcript_id "YPL192C_id001"; gene_id "YPL192C"; gene_name "PRM3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 182655 183056 . - 0 transcript_id "YPL192C_id001"; gene_name "PRM3"; gene_id "YPL192C"; +chrXVI SGD gene 183062 184727 . - . gene_id "YPL191C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 183062 184727 . - . transcript_id "YPL191C_id012"; gene_id "YPL191C"; gene_name "MIY2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 183062 184727 . - . transcript_id "YPL191C_id012"; gene_id "YPL191C"; gene_name "MIY2"; +chrXVI SGD transcript 183597 184679 . - . transcript_id "YPL191C_id001"; gene_id "YPL191C"; gene_name "MIY2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 183597 184679 . - 0 transcript_id "YPL191C_id001"; gene_name "MIY2"; gene_id "YPL191C"; +chrXVI SGD gene 184842 187811 . - . gene_id "YPL190C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 184842 187811 . - . transcript_id "YPL190C_id002"; gene_id "YPL190C"; gene_name "NAB3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 184842 187811 . - . transcript_id "YPL190C_id002"; gene_id "YPL190C"; gene_name "NAB3"; +chrXVI SGD transcript 185317 187725 . - . transcript_id "YPL190C_id001"; gene_id "YPL190C"; gene_name "NAB3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 185317 187725 . - 0 transcript_id "YPL190C_id001"; gene_name "NAB3"; gene_id "YPL190C"; +chrXVI SGD gene 188056 188639 . - . gene_id "YPL189C-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 188056 188639 . - . transcript_id "YPL189C-A_id017"; gene_id "YPL189C-A"; gene_name "COA2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 188056 188639 . - . transcript_id "YPL189C-A_id017"; gene_id "YPL189C-A"; gene_name "COA2"; +chrXVI SGD transcript 188307 188513 . - . transcript_id "YPL189C-A_id001"; gene_id "YPL189C-A"; gene_name "COA2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 188307 188513 . - 0 transcript_id "YPL189C-A_id001"; gene_name "COA2"; gene_id "YPL189C-A"; +chrXVI SGD gene 189031 191645 . + . gene_id "YPL189W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 189031 191645 . + . transcript_id "YPL189W_id002"; gene_id "YPL189W"; gene_name "GUP2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 189031 191645 . + . transcript_id "YPL189W_id002"; gene_id "YPL189W"; gene_name "GUP2"; +chrXVI SGD transcript 189154 190983 . + . transcript_id "YPL189W_id001"; gene_id "YPL189W"; gene_name "GUP2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 189154 190983 . + 0 transcript_id "YPL189W_id001"; gene_name "GUP2"; gene_id "YPL189W"; +chrXVI SGD gene 191381 192943 . + . gene_id "YPL188W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 191381 192943 . + . transcript_id "YPL188W_id001"; gene_id "YPL188W"; gene_name "POS5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 191381 192943 . + . transcript_id "YPL188W_id001"; gene_id "YPL188W"; gene_name "POS5"; +chrXVI SGD transcript 191406 192650 . + . transcript_id "YPL188W_id002"; gene_id "YPL188W"; gene_name "POS5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 191406 192650 . + 0 transcript_id "YPL188W_id002"; gene_name "POS5"; gene_id "YPL188W"; +chrXVI SGD gene 193598 194372 . + . gene_id "YPL187W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 193598 194372 . + . transcript_id "YPL187W_id002"; gene_id "YPL187W"; gene_name "MF%28ALPHA%291"; transcript_biotype "protein_coding"; +chrXVI SGD exon 193598 194372 . + . transcript_id "YPL187W_id002"; gene_id "YPL187W"; gene_name "MF%28ALPHA%291"; +chrXVI SGD transcript 193648 194145 . + . transcript_id "YPL187W_id001"; gene_id "YPL187W"; gene_name "MF%28ALPHA%291"; transcript_biotype "protein_coding"; +chrXVI SGD exon 193648 194145 . + 0 transcript_id "YPL187W_id001"; gene_name "MF%28ALPHA%291"; gene_id "YPL187W"; +chrXVI SGD gene 194512 195426 . - . gene_id "YPL186C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 194512 195426 . - . transcript_id "YPL186C_id001"; gene_id "YPL186C"; gene_name "UIP4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 194512 195426 . - 0 transcript_id "YPL186C_id001"; gene_name "UIP4"; gene_id "YPL186C"; +chrXVI SGD gene 195214 195986 . + . gene_id "YPL185W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 195214 195986 . + . transcript_id "YPL185W_id003"; gene_id "YPL185W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 195214 195986 . + . transcript_id "YPL185W_id003"; gene_id "YPL185W"; +chrXVI SGD transcript 195253 195648 . + . transcript_id "YPL185W_id001"; gene_id "YPL185W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 195253 195648 . + 0 transcript_id "YPL185W_id001"; gene_id "YPL185W"; +chrXVI SGD gene 195527 198460 . - . gene_id "YPL184C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 195527 198460 . - . transcript_id "YPL184C_id002"; gene_id "YPL184C"; gene_name "MRN1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 195527 198460 . - . transcript_id "YPL184C_id002"; gene_id "YPL184C"; gene_name "MRN1"; +chrXVI SGD transcript 195950 197788 . - . transcript_id "YPL184C_id001"; gene_id "YPL184C"; gene_name "MRN1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 195950 197788 . - 0 transcript_id "YPL184C_id001"; gene_name "MRN1"; gene_id "YPL184C"; +chrXVI SGD gene 198632 199528 . + . gene_id "YPL183W-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 198632 199528 . + . transcript_id "YPL183W-A_id003"; gene_id "YPL183W-A"; gene_name "RTC6"; transcript_biotype "protein_coding"; +chrXVI SGD exon 198632 199528 . + . transcript_id "YPL183W-A_id003"; gene_id "YPL183W-A"; gene_name "RTC6"; +chrXVI SGD transcript 199095 199376 . + . transcript_id "YPL183W-A_id001"; gene_id "YPL183W-A"; gene_name "RTC6"; transcript_biotype "protein_coding"; +chrXVI SGD exon 199095 199376 . + 0 transcript_id "YPL183W-A_id001"; gene_name "RTC6"; gene_id "YPL183W-A"; +chrXVI SGD gene 199407 202598 . - . gene_id "YPL183C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 199407 202598 . - . transcript_id "YPL183C_id001"; gene_id "YPL183C"; gene_name "RTT10"; transcript_biotype "protein_coding"; +chrXVI SGD exon 199407 202598 . - . transcript_id "YPL183C_id001"; gene_id "YPL183C"; gene_name "RTT10"; +chrXVI SGD transcript 199495 202536 . - . transcript_id "YPL183C_id002"; gene_id "YPL183C"; gene_name "RTT10"; transcript_biotype "protein_coding"; +chrXVI SGD exon 199495 202536 . - 0 transcript_id "YPL183C_id002"; gene_name "RTT10"; gene_id "YPL183C"; +chrXVI SGD gene 203306 203689 . - . gene_id "YPL182C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 203306 203689 . - . transcript_id "YPL182C_mRNA"; gene_id "YPL182C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 203306 203689 . - 0 transcript_id "YPL182C_mRNA"; gene_id "YPL182C"; +chrXVI SGD gene 203421 204941 . + . gene_id "YPL181W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 203421 204941 . + . transcript_id "YPL181W_id001"; gene_id "YPL181W"; gene_name "CTI6"; transcript_biotype "protein_coding"; +chrXVI SGD exon 203421 204941 . + 0 transcript_id "YPL181W_id001"; gene_name "CTI6"; gene_id "YPL181W"; +chrXVI SGD gene 205198 207849 . + . gene_id "YPL180W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 205198 207849 . + . transcript_id "YPL180W_id002"; gene_id "YPL180W"; gene_name "TCO89"; transcript_biotype "protein_coding"; +chrXVI SGD exon 205198 207849 . + . transcript_id "YPL180W_id002"; gene_id "YPL180W"; gene_name "TCO89"; +chrXVI SGD transcript 205248 207647 . + . transcript_id "YPL180W_id001"; gene_id "YPL180W"; gene_name "TCO89"; transcript_biotype "protein_coding"; +chrXVI SGD exon 205248 207647 . + 0 transcript_id "YPL180W_id001"; gene_name "TCO89"; gene_id "YPL180W"; +chrXVI SGD gene 207938 210064 . + . gene_id "YPL179W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 207938 210064 . + . transcript_id "YPL179W_id003"; gene_id "YPL179W"; gene_name "PPQ1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 207938 210064 . + . transcript_id "YPL179W_id003"; gene_id "YPL179W"; gene_name "PPQ1"; +chrXVI SGD transcript 208157 209806 . + . transcript_id "YPL179W_id001"; gene_id "YPL179W"; gene_name "PPQ1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 208157 209806 . + 0 transcript_id "YPL179W_id001"; gene_name "PPQ1"; gene_id "YPL179W"; +chrXVI SGD gene 210192 210263 . - . gene_id "YNCP0004C"; gene_biotype "ncRNA"; +chrXVI SGD transcript 210192 210263 . - . transcript_id "YNCP0004C_tRNA"; gene_id "YNCP0004C"; transcript_biotype "ncRNA"; +chrXVI SGD exon 210192 210263 . - . transcript_id "YNCP0004C_tRNA"; gene_id "YNCP0004C"; +chrXVI SGD gene 212110 212956 . + . gene_id "YPL178W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 212110 212956 . + . transcript_id "YPL178W_id001"; gene_id "YPL178W"; gene_name "CBC2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 212110 212956 . + . transcript_id "YPL178W_id001"; gene_id "YPL178W"; gene_name "CBC2"; +chrXVI SGD transcript 212158 212784 . + . transcript_id "YPL178W_id002"; gene_id "YPL178W"; gene_name "CBC2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 212158 212784 . + 0 transcript_id "YPL178W_id002"; gene_name "CBC2"; gene_id "YPL178W"; +chrXVI SGD gene 212915 214147 . - . gene_id "YPL177C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 212915 214147 . - . transcript_id "YPL177C_id001"; gene_id "YPL177C"; gene_name "CUP9"; transcript_biotype "protein_coding"; +chrXVI SGD exon 212915 214147 . - . transcript_id "YPL177C_id001"; gene_id "YPL177C"; gene_name "CUP9"; +chrXVI SGD transcript 213042 213962 . - . transcript_id "YPL177C_id003"; gene_id "YPL177C"; gene_name "CUP9"; transcript_biotype "protein_coding"; +chrXVI SGD exon 213042 213962 . - 0 transcript_id "YPL177C_id003"; gene_name "CUP9"; gene_id "YPL177C"; +chrXVI SGD gene 215714 218397 . - . gene_id "YPL176C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 215714 218397 . - . transcript_id "YPL176C_id001"; gene_id "YPL176C"; gene_name "TRE1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 215714 218397 . - . transcript_id "YPL176C_id001"; gene_id "YPL176C"; gene_name "TRE1"; +chrXVI SGD transcript 216012 218363 . - . transcript_id "YPL176C_id002"; gene_id "YPL176C"; gene_name "TRE1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 216012 218363 . - 0 transcript_id "YPL176C_id002"; gene_name "TRE1"; gene_id "YPL176C"; +chrXVI SGD gene 218609 220560 . + . gene_id "YPL175W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 218609 220560 . + . transcript_id "YPL175W_id003"; gene_id "YPL175W"; gene_name "SPT14"; transcript_biotype "protein_coding"; +chrXVI SGD exon 218609 220560 . + . transcript_id "YPL175W_id003"; gene_id "YPL175W"; gene_name "SPT14"; +chrXVI SGD transcript 218630 220088 . + . transcript_id "YPL175W_id001"; gene_id "YPL175W"; gene_name "SPT14"; transcript_biotype "protein_coding"; +chrXVI SGD exon 218630 218646 . + 0 transcript_id "YPL175W_id001"; gene_name "SPT14"; gene_id "YPL175W"; +chrXVI SGD exon 218747 220088 . + 1 transcript_id "YPL175W_id001"; gene_name "SPT14"; gene_id "YPL175W"; +chrXVI SGD gene 220167 222773 . - . gene_id "YPL174C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 220167 222773 . - . transcript_id "YPL174C_mRNA"; gene_id "YPL174C"; gene_name "NIP100"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 220167 222773 . - 0 transcript_id "YPL174C_mRNA"; gene_name "NIP100"; gene_id "YPL174C"; +chrXVI SGD gene 223077 224201 . + . gene_id "YPL173W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 223077 224201 . + . transcript_id "YPL173W_id002"; gene_id "YPL173W"; gene_name "MRPL40"; transcript_biotype "protein_coding"; +chrXVI SGD exon 223077 224201 . + . transcript_id "YPL173W_id002"; gene_id "YPL173W"; gene_name "MRPL40"; +chrXVI SGD transcript 223143 224036 . + . transcript_id "YPL173W_id001"; gene_id "YPL173W"; gene_name "MRPL40"; transcript_biotype "protein_coding"; +chrXVI SGD exon 223143 224036 . + 0 transcript_id "YPL173W_id001"; gene_name "MRPL40"; gene_id "YPL173W"; +chrXVI SGD gene 224353 225741 . - . gene_id "YPL172C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 224353 225741 . - . transcript_id "YPL172C_id001"; gene_id "YPL172C"; gene_name "COX10"; transcript_biotype "protein_coding"; +chrXVI SGD exon 224353 225741 . - 0 transcript_id "YPL172C_id001"; gene_name "COX10"; gene_id "YPL172C"; +chrXVI SGD gene 226004 227402 . - . gene_id "YPL171C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 226004 227402 . - . transcript_id "YPL171C_id002"; gene_id "YPL171C"; gene_name "OYE3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 226004 227402 . - . transcript_id "YPL171C_id002"; gene_id "YPL171C"; gene_name "OYE3"; +chrXVI SGD transcript 226169 227371 . - . transcript_id "YPL171C_id001"; gene_id "YPL171C"; gene_name "OYE3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 226169 227371 . - 0 transcript_id "YPL171C_id001"; gene_name "OYE3"; gene_id "YPL171C"; +chrXVI SGD gene 228158 228937 . + . gene_id "YPL170W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 228158 228937 . + . transcript_id "YPL170W_id003"; gene_id "YPL170W"; gene_name "DAP1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 228158 228937 . + . transcript_id "YPL170W_id003"; gene_id "YPL170W"; gene_name "DAP1"; +chrXVI SGD transcript 228314 228772 . + . transcript_id "YPL170W_id001"; gene_id "YPL170W"; gene_name "DAP1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 228314 228772 . + 0 transcript_id "YPL170W_id001"; gene_name "DAP1"; gene_id "YPL170W"; +chrXVI SGD gene 228833 230888 . - . gene_id "YPL169C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 228833 230888 . - . transcript_id "YPL169C_id001"; gene_id "YPL169C"; gene_name "MEX67"; transcript_biotype "protein_coding"; +chrXVI SGD exon 228833 230888 . - . transcript_id "YPL169C_id001"; gene_id "YPL169C"; gene_name "MEX67"; +chrXVI SGD transcript 229039 230838 . - . transcript_id "YPL169C_id003"; gene_id "YPL169C"; gene_name "MEX67"; transcript_biotype "protein_coding"; +chrXVI SGD exon 229039 230838 . - 0 transcript_id "YPL169C_id003"; gene_name "MEX67"; gene_id "YPL169C"; +chrXVI SGD gene 231072 232597 . + . gene_id "YPL168W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 231072 232597 . + . transcript_id "YPL168W_id002"; gene_id "YPL168W"; gene_name "MRX4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 231072 232597 . + . transcript_id "YPL168W_id002"; gene_id "YPL168W"; gene_name "MRX4"; +chrXVI SGD transcript 231217 232509 . + . transcript_id "YPL168W_id001"; gene_id "YPL168W"; gene_name "MRX4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 231217 232509 . + 0 transcript_id "YPL168W_id001"; gene_name "MRX4"; gene_id "YPL168W"; +chrXVI SGD gene 232593 237107 . - . gene_id "YPL167C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 232593 237107 . - . transcript_id "YPL167C_mRNA"; gene_id "YPL167C"; gene_name "REV3"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 232593 237107 . - 0 transcript_id "YPL167C_mRNA"; gene_name "REV3"; gene_id "YPL167C"; +chrXVI SGD gene 237297 239181 . + . gene_id "YPL166W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 237297 239181 . + . transcript_id "YPL166W_id002"; gene_id "YPL166W"; gene_name "ATG29"; transcript_biotype "protein_coding"; +chrXVI SGD exon 237297 239181 . + . transcript_id "YPL166W_id002"; gene_id "YPL166W"; gene_name "ATG29"; +chrXVI SGD transcript 237338 237979 . + . transcript_id "YPL166W_id001"; gene_id "YPL166W"; gene_name "ATG29"; transcript_biotype "protein_coding"; +chrXVI SGD exon 237338 237979 . + 0 transcript_id "YPL166W_id001"; gene_name "ATG29"; gene_id "YPL166W"; +chrXVI SGD gene 237635 239121 . - . gene_id "YPL165C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 237635 239121 . - . transcript_id "YPL165C_id001"; gene_id "YPL165C"; gene_name "SET6"; transcript_biotype "protein_coding"; +chrXVI SGD exon 237635 239121 . - . transcript_id "YPL165C_id001"; gene_id "YPL165C"; gene_name "SET6"; +chrXVI SGD transcript 237956 239077 . - . transcript_id "YPL165C_id002"; gene_id "YPL165C"; gene_name "SET6"; transcript_biotype "protein_coding"; +chrXVI SGD exon 237956 239077 . - 0 transcript_id "YPL165C_id002"; gene_name "SET6"; gene_id "YPL165C"; +chrXVI SGD gene 239350 241497 . - . gene_id "YPL164C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 239350 241497 . - . transcript_id "YPL164C_id001"; gene_id "YPL164C"; gene_name "MLH3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 239350 241497 . - 0 transcript_id "YPL164C_id001"; gene_name "MLH3"; gene_id "YPL164C"; +chrXVI SGD gene 241661 243846 . - . gene_id "YPL163C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 241661 243846 . - . transcript_id "YPL163C_id001"; gene_id "YPL163C"; gene_name "SVS1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 241661 243846 . - . transcript_id "YPL163C_id001"; gene_id "YPL163C"; gene_name "SVS1"; +chrXVI SGD transcript 241918 242700 . - . transcript_id "YPL163C_id002"; gene_id "YPL163C"; gene_name "SVS1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 241918 242700 . - 0 transcript_id "YPL163C_id002"; gene_name "SVS1"; gene_id "YPL163C"; +chrXVI SGD gene 242484 244085 . - . gene_id "YPL162C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 242484 244085 . - . transcript_id "YPL162C_id002"; gene_id "YPL162C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 242484 244085 . - . transcript_id "YPL162C_id002"; gene_id "YPL162C"; +chrXVI SGD transcript 243206 244027 . - . transcript_id "YPL162C_id001"; gene_id "YPL162C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 243206 244027 . - 0 transcript_id "YPL162C_id001"; gene_id "YPL162C"; +chrXVI SGD gene 244319 246220 . - . gene_id "YPL161C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 244319 246220 . - . transcript_id "YPL161C_mRNA"; gene_id "YPL161C"; gene_name "BEM4"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 244319 246220 . - 0 transcript_id "YPL161C_mRNA"; gene_name "BEM4"; gene_id "YPL161C"; +chrXVI SGD gene 246904 250522 . + . gene_id "YPL160W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 246904 250522 . + . transcript_id "YPL160W_id002"; gene_id "YPL160W"; gene_name "CDC60"; transcript_biotype "protein_coding"; +chrXVI SGD exon 246904 250522 . + . transcript_id "YPL160W_id002"; gene_id "YPL160W"; gene_name "CDC60"; +chrXVI SGD transcript 246990 250262 . + . transcript_id "YPL160W_id001"; gene_id "YPL160W"; gene_name "CDC60"; transcript_biotype "protein_coding"; +chrXVI SGD exon 246990 250262 . + 0 transcript_id "YPL160W_id001"; gene_name "CDC60"; gene_id "YPL160W"; +chrXVI SGD gene 250603 251916 . - . gene_id "YPL159C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 250603 251916 . - . transcript_id "YPL159C_id001"; gene_id "YPL159C"; gene_name "PET20"; transcript_biotype "protein_coding"; +chrXVI SGD exon 250603 251916 . - . transcript_id "YPL159C_id001"; gene_id "YPL159C"; gene_name "PET20"; +chrXVI SGD transcript 250907 251668 . - . transcript_id "YPL159C_id003"; gene_id "YPL159C"; gene_name "PET20"; transcript_biotype "protein_coding"; +chrXVI SGD exon 250907 251668 . - 0 transcript_id "YPL159C_id003"; gene_name "PET20"; gene_id "YPL159C"; +chrXVI SGD gene 251975 254427 . - . gene_id "YPL158C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 251975 254427 . - . transcript_id "YPL158C_id001"; gene_id "YPL158C"; gene_name "AIM44"; transcript_biotype "protein_coding"; +chrXVI SGD exon 251975 254427 . - . transcript_id "YPL158C_id001"; gene_id "YPL158C"; gene_name "AIM44"; +chrXVI SGD transcript 252034 254310 . - . transcript_id "YPL158C_id005"; gene_id "YPL158C"; gene_name "AIM44"; transcript_biotype "protein_coding"; +chrXVI SGD exon 252034 254310 . - 0 transcript_id "YPL158C_id005"; gene_name "AIM44"; gene_id "YPL158C"; +chrXVI SGD gene 254559 256162 . + . gene_id "YPL157W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 254559 256162 . + . transcript_id "YPL157W_id001"; gene_id "YPL157W"; gene_name "TGS1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 254559 256162 . + . transcript_id "YPL157W_id001"; gene_id "YPL157W"; gene_name "TGS1"; +chrXVI SGD transcript 254814 255761 . + . transcript_id "YPL157W_id003"; gene_id "YPL157W"; gene_name "TGS1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 254814 255761 . + 0 transcript_id "YPL157W_id003"; gene_name "TGS1"; gene_id "YPL157W"; +chrXVI SGD gene 255561 256827 . - . gene_id "YPL156C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 255561 256827 . - . transcript_id "YPL156C_id002"; gene_id "YPL156C"; gene_name "PRM4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 255561 256827 . - . transcript_id "YPL156C_id002"; gene_id "YPL156C"; gene_name "PRM4"; +chrXVI SGD transcript 255913 256767 . - . transcript_id "YPL156C_id001"; gene_id "YPL156C"; gene_name "PRM4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 255913 256767 . - 0 transcript_id "YPL156C_id001"; gene_name "PRM4"; gene_id "YPL156C"; +chrXVI SGD gene 256797 259377 . - . gene_id "YPL155C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 256797 259377 . - . transcript_id "YPL155C_id007"; gene_id "YPL155C"; gene_name "KIP2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 256797 259377 . - . transcript_id "YPL155C_id007"; gene_id "YPL155C"; gene_name "KIP2"; +chrXVI SGD transcript 257216 259336 . - . transcript_id "YPL155C_id001"; gene_id "YPL155C"; gene_name "KIP2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 257216 259336 . - 0 transcript_id "YPL155C_id001"; gene_name "KIP2"; gene_id "YPL155C"; +chrXVI SGD gene 259490 261207 . - . gene_id "YPL154C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 259490 261207 . - . transcript_id "YPL154C_id001"; gene_id "YPL154C"; gene_name "PEP4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 259490 261207 . - . transcript_id "YPL154C_id001"; gene_id "YPL154C"; gene_name "PEP4"; +chrXVI SGD transcript 259714 260931 . - . transcript_id "YPL154C_id002"; gene_id "YPL154C"; gene_name "PEP4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 259714 260931 . - 0 transcript_id "YPL154C_id002"; gene_name "PEP4"; gene_id "YPL154C"; +chrXVI SGD gene 261547 264380 . - . gene_id "YPL153C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 261547 264380 . - . transcript_id "YPL153C_id001"; gene_id "YPL153C"; gene_name "RAD53"; transcript_biotype "protein_coding"; +chrXVI SGD exon 261547 264380 . - . transcript_id "YPL153C_id001"; gene_id "YPL153C"; gene_name "RAD53"; +chrXVI SGD transcript 261727 264192 . - . transcript_id "YPL153C_id002"; gene_id "YPL153C"; gene_name "RAD53"; transcript_biotype "protein_coding"; +chrXVI SGD exon 261727 264192 . - 0 transcript_id "YPL153C_id002"; gene_name "RAD53"; gene_id "YPL153C"; +chrXVI SGD gene 264571 265556 . + . gene_id "YPL152W-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 264571 265556 . + . transcript_id "YPL152W-A_id001"; gene_id "YPL152W-A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 264571 265556 . + . transcript_id "YPL152W-A_id001"; gene_id "YPL152W-A"; +chrXVI SGD transcript 264602 264700 . + . transcript_id "YPL152W-A_id002"; gene_id "YPL152W-A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 264602 264700 . + 0 transcript_id "YPL152W-A_id002"; gene_id "YPL152W-A"; +chrXVI SGD gene 264965 266259 . + . gene_id "YPL152W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 264965 266259 . + . transcript_id "YPL152W_id003"; gene_id "YPL152W"; gene_name "RRD2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 264965 266259 . + . transcript_id "YPL152W_id003"; gene_id "YPL152W"; gene_name "RRD2"; +chrXVI SGD transcript 265028 266104 . + . transcript_id "YPL152W_id001"; gene_id "YPL152W"; gene_name "RRD2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 265028 266104 . + 0 transcript_id "YPL152W_id001"; gene_name "RRD2"; gene_id "YPL152W"; +chrXVI SGD gene 266112 268014 . - . gene_id "YPL151C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 266112 268014 . - . transcript_id "YPL151C_id001"; gene_id "YPL151C"; gene_name "PRP46"; transcript_biotype "protein_coding"; +chrXVI SGD exon 266112 268014 . - . transcript_id "YPL151C_id001"; gene_id "YPL151C"; gene_name "PRP46"; +chrXVI SGD transcript 266180 267535 . - . transcript_id "YPL151C_id005"; gene_id "YPL151C"; gene_name "PRP46"; transcript_biotype "protein_coding"; +chrXVI SGD exon 266180 267535 . - 0 transcript_id "YPL151C_id005"; gene_name "PRP46"; gene_id "YPL151C"; +chrXVI SGD gene 268188 270893 . + . gene_id "YPL150W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 268188 270893 . + . transcript_id "YPL150W_id001"; gene_id "YPL150W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 268188 270893 . + 0 transcript_id "YPL150W_id001"; gene_id "YPL150W"; +chrXVI SGD gene 271233 272306 . + . gene_id "YPL149W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 271233 272306 . + . transcript_id "YPL149W_id008"; gene_id "YPL149W"; gene_name "ATG5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 271233 272306 . + . transcript_id "YPL149W_id008"; gene_id "YPL149W"; gene_name "ATG5"; +chrXVI SGD transcript 271310 272194 . + . transcript_id "YPL149W_id001"; gene_id "YPL149W"; gene_name "ATG5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 271310 272194 . + 0 transcript_id "YPL149W_id001"; gene_name "ATG5"; gene_id "YPL149W"; +chrXVI SGD gene 271804 272952 . - . gene_id "YPL148C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 271804 272952 . - . transcript_id "YPL148C_id002"; gene_id "YPL148C"; gene_name "PPT2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 271804 272952 . - . transcript_id "YPL148C_id002"; gene_id "YPL148C"; gene_name "PPT2"; +chrXVI SGD transcript 272294 272815 . - . transcript_id "YPL148C_id001"; gene_id "YPL148C"; gene_name "PPT2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 272294 272815 . - 0 transcript_id "YPL148C_id001"; gene_name "PPT2"; gene_id "YPL148C"; +chrXVI SGD gene 273255 275867 . + . gene_id "YPL147W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 273255 275867 . + . transcript_id "YPL147W_mRNA"; gene_id "YPL147W"; gene_name "PXA1"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 273255 275867 . + 0 transcript_id "YPL147W_mRNA"; gene_name "PXA1"; gene_id "YPL147W"; +chrXVI SGD gene 276019 277594 . - . gene_id "YPL146C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 276019 277594 . - . transcript_id "YPL146C_id004"; gene_id "YPL146C"; gene_name "NOP53"; transcript_biotype "protein_coding"; +chrXVI SGD exon 276019 277594 . - . transcript_id "YPL146C_id004"; gene_id "YPL146C"; gene_name "NOP53"; +chrXVI SGD transcript 276162 277529 . - . transcript_id "YPL146C_id001"; gene_id "YPL146C"; gene_name "NOP53"; transcript_biotype "protein_coding"; +chrXVI SGD exon 276162 277529 . - 0 transcript_id "YPL146C_id001"; gene_name "NOP53"; gene_id "YPL146C"; +chrXVI SGD gene 277651 279955 . - . gene_id "YPL145C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 277651 279955 . - . transcript_id "YPL145C_id001"; gene_id "YPL145C"; gene_name "KES1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 277651 279955 . - . transcript_id "YPL145C_id001"; gene_id "YPL145C"; gene_name "KES1"; +chrXVI SGD transcript 278395 279699 . - . transcript_id "YPL145C_id004"; gene_id "YPL145C"; gene_name "KES1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 278395 279699 . - 0 transcript_id "YPL145C_id004"; gene_name "KES1"; gene_id "YPL145C"; +chrXVI SGD gene 280273 281000 . + . gene_id "YPL144W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 280273 281000 . + . transcript_id "YPL144W_id007"; gene_id "YPL144W"; gene_name "POC4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 280273 281000 . + . transcript_id "YPL144W_id007"; gene_id "YPL144W"; gene_name "POC4"; +chrXVI SGD transcript 280480 280926 . + . transcript_id "YPL144W_id001"; gene_id "YPL144W"; gene_name "POC4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 280480 280926 . + 0 transcript_id "YPL144W_id001"; gene_name "POC4"; gene_id "YPL144W"; +chrXVI SGD gene 281056 281517 . - . gene_id "YNCP0005C"; gene_biotype "ncRNA"; +chrXVI SGD transcript 281056 281517 . - . transcript_id "YNCP0005C_snoRNA"; gene_id "YNCP0005C"; gene_name "SNR17B"; transcript_biotype "ncRNA"; +chrXVI SGD exon 281056 281373 . - . transcript_id "YNCP0005C_snoRNA"; gene_name "SNR17B"; gene_id "YNCP0005C"; +chrXVI SGD exon 281504 281517 . - . transcript_id "YNCP0005C_snoRNA"; gene_name "SNR17B"; gene_id "YNCP0005C"; +chrXVI SGD gene 282091 283312 . + . gene_id "YPL143W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 282091 283312 . + . transcript_id "YPL143W_id003"; gene_id "YPL143W"; gene_name "RPL33A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 282091 283312 . + . transcript_id "YPL143W_id003"; gene_id "YPL143W"; gene_name "RPL33A"; +chrXVI SGD transcript 282122 282970 . + . transcript_id "YPL143W_id001"; gene_id "YPL143W"; gene_name "RPL33A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 282122 282140 . + 0 transcript_id "YPL143W_id001"; gene_name "RPL33A"; gene_id "YPL143W"; +chrXVI SGD exon 282666 282970 . + 2 transcript_id "YPL143W_id001"; gene_name "RPL33A"; gene_id "YPL143W"; +chrXVI SGD gene 282686 283003 . - . gene_id "YPL142C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 282686 283003 . - . transcript_id "YPL142C_mRNA"; gene_id "YPL142C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 282686 283003 . - 0 transcript_id "YPL142C_mRNA"; gene_id "YPL142C"; +chrXVI SGD gene 283464 286061 . - . gene_id "YPL141C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 283464 286061 . - . transcript_id "YPL141C_id001"; gene_id "YPL141C"; gene_name "FRK1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 283464 286061 . - 0 transcript_id "YPL141C_id001"; gene_name "FRK1"; gene_id "YPL141C"; +chrXVI SGD gene 287285 289263 . - . gene_id "YPL140C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 287285 289263 . - . transcript_id "YPL140C_id001"; gene_id "YPL140C"; gene_name "MKK2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 287285 289263 . - . transcript_id "YPL140C_id001"; gene_id "YPL140C"; gene_name "MKK2"; +chrXVI SGD transcript 287514 289034 . - . transcript_id "YPL140C_id002"; gene_id "YPL140C"; gene_name "MKK2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 287514 289034 . - 0 transcript_id "YPL140C_id002"; gene_name "MKK2"; gene_id "YPL140C"; +chrXVI SGD gene 289522 291086 . - . gene_id "YPL139C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 289522 291086 . - . transcript_id "YPL139C_id002"; gene_id "YPL139C"; gene_name "UME1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 289522 291086 . - . transcript_id "YPL139C_id002"; gene_id "YPL139C"; gene_name "UME1"; +chrXVI SGD transcript 289669 291051 . - . transcript_id "YPL139C_id001"; gene_id "YPL139C"; gene_name "UME1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 289669 291051 . - 0 transcript_id "YPL139C_id001"; gene_name "UME1"; gene_id "YPL139C"; +chrXVI SGD gene 291153 292631 . - . gene_id "YPL138C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 291153 292631 . - . transcript_id "YPL138C_id001"; gene_id "YPL138C"; gene_name "SPP1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 291153 292631 . - . transcript_id "YPL138C_id001"; gene_id "YPL138C"; gene_name "SPP1"; +chrXVI SGD transcript 291366 292427 . - . transcript_id "YPL138C_id003"; gene_id "YPL138C"; gene_name "SPP1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 291366 292427 . - 0 transcript_id "YPL138C_id003"; gene_name "SPP1"; gene_id "YPL138C"; +chrXVI SGD gene 292817 296647 . - . gene_id "YPL137C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 292817 296647 . - . transcript_id "YPL137C_id001"; gene_id "YPL137C"; gene_name "GIP3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 292817 296647 . - 0 transcript_id "YPL137C_id001"; gene_name "GIP3"; gene_id "YPL137C"; +chrXVI SGD gene 296286 296654 . + . gene_id "YPL136W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 296286 296654 . + . transcript_id "YPL136W_id001"; gene_id "YPL136W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 296286 296654 . + 0 transcript_id "YPL136W_id001"; gene_id "YPL136W"; +chrXVI SGD gene 296998 298442 . + . gene_id "YPL135W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 296998 298442 . + . transcript_id "YPL135W_id003"; gene_id "YPL135W"; gene_name "ISU1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 296998 298442 . + . transcript_id "YPL135W_id003"; gene_id "YPL135W"; gene_name "ISU1"; +chrXVI SGD transcript 297553 298050 . + . transcript_id "YPL135W_id001"; gene_id "YPL135W"; gene_name "ISU1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 297553 298050 . + 0 transcript_id "YPL135W_id001"; gene_name "ISU1"; gene_id "YPL135W"; +chrXVI SGD gene 297678 297851 . - . gene_id "YPL135C-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 297678 297851 . - . transcript_id "YPL135C-A_id001"; gene_id "YPL135C-A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 297678 297851 . - 0 transcript_id "YPL135C-A_id001"; gene_id "YPL135C-A"; +chrXVI SGD gene 298469 300263 . - . gene_id "YPL134C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 298469 300263 . - . transcript_id "YPL134C_id001"; gene_id "YPL134C"; gene_name "ODC1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 298469 300263 . - . transcript_id "YPL134C_id001"; gene_id "YPL134C"; gene_name "ODC1"; +chrXVI SGD transcript 298571 299503 . - . transcript_id "YPL134C_id002"; gene_id "YPL134C"; gene_name "ODC1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 298571 299503 . - 0 transcript_id "YPL134C_id002"; gene_name "ODC1"; gene_id "YPL134C"; +chrXVI SGD gene 299742 301398 . - . gene_id "YPL133C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 299742 301398 . - . transcript_id "YPL133C_id002"; gene_id "YPL133C"; gene_name "RDS2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 299742 301398 . - . transcript_id "YPL133C_id002"; gene_id "YPL133C"; gene_name "RDS2"; +chrXVI SGD transcript 299888 301228 . - . transcript_id "YPL133C_id001"; gene_id "YPL133C"; gene_name "RDS2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 299888 301228 . - 0 transcript_id "YPL133C_id001"; gene_name "RDS2"; gene_id "YPL133C"; +chrXVI SGD gene 301486 302666 . + . gene_id "YPL132W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 301486 302666 . + . transcript_id "YPL132W_id018"; gene_id "YPL132W"; gene_name "COX11"; transcript_biotype "protein_coding"; +chrXVI SGD exon 301486 302666 . + . transcript_id "YPL132W_id018"; gene_id "YPL132W"; gene_name "COX11"; +chrXVI SGD transcript 301716 302618 . + . transcript_id "YPL132W_id001"; gene_id "YPL132W"; gene_name "COX11"; transcript_biotype "protein_coding"; +chrXVI SGD exon 301716 302618 . + 0 transcript_id "YPL132W_id001"; gene_name "COX11"; gene_id "YPL132W"; +chrXVI SGD gene 303102 304312 . + . gene_id "YPL131W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 303102 304312 . + . transcript_id "YPL131W_id008"; gene_id "YPL131W"; gene_name "RPL5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 303102 304312 . + . transcript_id "YPL131W_id008"; gene_id "YPL131W"; gene_name "RPL5"; +chrXVI SGD transcript 303121 304014 . + . transcript_id "YPL131W_id001"; gene_id "YPL131W"; gene_name "RPL5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 303121 304014 . + 0 transcript_id "YPL131W_id001"; gene_name "RPL5"; gene_id "YPL131W"; +chrXVI SGD gene 304387 305058 . + . gene_id "YPL130W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 304387 305058 . + . transcript_id "YPL130W_mRNA"; gene_id "YPL130W"; gene_name "SPO19"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 304387 305058 . + 0 transcript_id "YPL130W_mRNA"; gene_name "SPO19"; gene_id "YPL130W"; +chrXVI SGD gene 305237 306362 . + . gene_id "YPL129W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 305237 306362 . + . transcript_id "YPL129W_id002"; gene_id "YPL129W"; gene_name "TAF14"; transcript_biotype "protein_coding"; +chrXVI SGD exon 305237 306362 . + . transcript_id "YPL129W_id002"; gene_id "YPL129W"; gene_name "TAF14"; +chrXVI SGD transcript 305298 306137 . + . transcript_id "YPL129W_id001"; gene_id "YPL129W"; gene_name "TAF14"; transcript_biotype "protein_coding"; +chrXVI SGD exon 305298 305306 . + 0 transcript_id "YPL129W_id001"; gene_name "TAF14"; gene_id "YPL129W"; +chrXVI SGD exon 305412 306137 . + 0 transcript_id "YPL129W_id001"; gene_name "TAF14"; gene_id "YPL129W"; +chrXVI SGD gene 306255 308308 . - . gene_id "YPL128C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 306255 308308 . - . transcript_id "YPL128C_id004"; gene_id "YPL128C"; gene_name "TBF1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 306255 308308 . - . transcript_id "YPL128C_id004"; gene_id "YPL128C"; gene_name "TBF1"; +chrXVI SGD transcript 306533 308221 . - . transcript_id "YPL128C_id001"; gene_id "YPL128C"; gene_name "TBF1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 306533 308221 . - 0 transcript_id "YPL128C_id001"; gene_name "TBF1"; gene_id "YPL128C"; +chrXVI SGD gene 308373 309631 . - . gene_id "YPL127C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 308373 309631 . - . transcript_id "YPL127C_id001"; gene_id "YPL127C"; gene_name "HHO1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 308373 309631 . - . transcript_id "YPL127C_id001"; gene_id "YPL127C"; gene_name "HHO1"; +chrXVI SGD transcript 308828 309604 . - . transcript_id "YPL127C_id002"; gene_id "YPL127C"; gene_name "HHO1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 308828 309604 . - 0 transcript_id "YPL127C_id002"; gene_name "HHO1"; gene_id "YPL127C"; +chrXVI SGD gene 310210 312900 . + . gene_id "YPL126W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 310210 312900 . + . transcript_id "YPL126W_id001"; gene_id "YPL126W"; gene_name "NAN1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 310210 312900 . + 0 transcript_id "YPL126W_id001"; gene_name "NAN1"; gene_id "YPL126W"; +chrXVI SGD gene 313388 316486 . + . gene_id "YPL125W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 313388 316486 . + . transcript_id "YPL125W_id001"; gene_id "YPL125W"; gene_name "KAP120"; transcript_biotype "protein_coding"; +chrXVI SGD exon 313388 316486 . + 0 transcript_id "YPL125W_id001"; gene_name "KAP120"; gene_id "YPL125W"; +chrXVI SGD gene 316678 317614 . + . gene_id "YPL124W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 316678 317614 . + . transcript_id "YPL124W_id003"; gene_id "YPL124W"; gene_name "SPC29"; transcript_biotype "protein_coding"; +chrXVI SGD exon 316678 317614 . + . transcript_id "YPL124W_id003"; gene_id "YPL124W"; gene_name "SPC29"; +chrXVI SGD transcript 316755 317516 . + . transcript_id "YPL124W_id001"; gene_id "YPL124W"; gene_name "SPC29"; transcript_biotype "protein_coding"; +chrXVI SGD exon 316755 317516 . + 0 transcript_id "YPL124W_id001"; gene_name "SPC29"; gene_id "YPL124W"; +chrXVI SGD gene 317484 319028 . - . gene_id "YPL123C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 317484 319028 . - . transcript_id "YPL123C_id002"; gene_id "YPL123C"; gene_name "RNY1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 317484 319028 . - . transcript_id "YPL123C_id002"; gene_id "YPL123C"; gene_name "RNY1"; +chrXVI SGD transcript 317641 318945 . - . transcript_id "YPL123C_id001"; gene_id "YPL123C"; gene_name "RNY1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 317641 318945 . - 0 transcript_id "YPL123C_id001"; gene_name "RNY1"; gene_id "YPL123C"; +chrXVI SGD gene 319127 320833 . - . gene_id "YPL122C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 319127 320833 . - . transcript_id "YPL122C_id001"; gene_id "YPL122C"; gene_name "TFB2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 319127 320833 . - . transcript_id "YPL122C_id001"; gene_id "YPL122C"; gene_name "TFB2"; +chrXVI SGD transcript 319226 320767 . - . transcript_id "YPL122C_id004"; gene_id "YPL122C"; gene_name "TFB2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 319226 320767 . - 0 transcript_id "YPL122C_id004"; gene_name "TFB2"; gene_id "YPL122C"; +chrXVI SGD gene 320962 321630 . - . gene_id "YPL121C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 320962 321630 . - . transcript_id "YPL121C_mRNA"; gene_id "YPL121C"; gene_name "MEI5"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 320962 321630 . - 0 transcript_id "YPL121C_mRNA"; gene_name "MEI5"; gene_id "YPL121C"; +chrXVI SGD gene 322055 324087 . + . gene_id "YPL120W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 322055 324087 . + . transcript_id "YPL120W_id001"; gene_id "YPL120W"; gene_name "VPS30"; transcript_biotype "protein_coding"; +chrXVI SGD exon 322055 324087 . + . transcript_id "YPL120W_id001"; gene_id "YPL120W"; gene_name "VPS30"; +chrXVI SGD transcript 322071 323744 . + . transcript_id "YPL120W_id002"; gene_id "YPL120W"; gene_name "VPS30"; transcript_biotype "protein_coding"; +chrXVI SGD exon 322071 323744 . + 0 transcript_id "YPL120W_id002"; gene_name "VPS30"; gene_id "YPL120W"; +chrXVI SGD gene 323778 325581 . - . gene_id "YPL119C-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 323778 325581 . - . transcript_id "YPL119C-A_id001"; gene_id "YPL119C-A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 323778 325581 . - . transcript_id "YPL119C-A_id001"; gene_id "YPL119C-A"; +chrXVI SGD transcript 324024 324287 . - . transcript_id "YPL119C-A_id002"; gene_id "YPL119C-A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 324024 324287 . - 0 transcript_id "YPL119C-A_id002"; gene_id "YPL119C-A"; +chrXVI SGD gene 324411 326264 . - . gene_id "YPL119C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 324411 326264 . - . transcript_id "YPL119C_mRNA"; gene_id "YPL119C"; gene_name "DBP1"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 324411 326264 . - 0 transcript_id "YPL119C_mRNA"; gene_name "DBP1"; gene_id "YPL119C"; +chrXVI SGD gene 326546 327803 . + . gene_id "YPL118W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 326546 327803 . + . transcript_id "YPL118W_id004"; gene_id "YPL118W"; gene_name "MRP51"; transcript_biotype "protein_coding"; +chrXVI SGD exon 326546 327803 . + . transcript_id "YPL118W_id004"; gene_id "YPL118W"; gene_name "MRP51"; +chrXVI SGD transcript 326628 327662 . + . transcript_id "YPL118W_id001"; gene_id "YPL118W"; gene_name "MRP51"; transcript_biotype "protein_coding"; +chrXVI SGD exon 326628 327662 . + 0 transcript_id "YPL118W_id001"; gene_name "MRP51"; gene_id "YPL118W"; +chrXVI SGD gene 327680 328935 . - . gene_id "YPL117C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 327680 328935 . - . transcript_id "YPL117C_id002"; gene_id "YPL117C"; gene_name "IDI1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 327680 328935 . - . transcript_id "YPL117C_id002"; gene_id "YPL117C"; gene_name "IDI1"; +chrXVI SGD transcript 327864 328730 . - . transcript_id "YPL117C_id001"; gene_id "YPL117C"; gene_name "IDI1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 327864 328730 . - 0 transcript_id "YPL117C_id001"; gene_name "IDI1"; gene_id "YPL117C"; +chrXVI SGD gene 329600 331828 . + . gene_id "YPL116W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 329600 331828 . + . transcript_id "YPL116W_id004"; gene_id "YPL116W"; gene_name "HOS3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 329600 331828 . + . transcript_id "YPL116W_id004"; gene_id "YPL116W"; gene_name "HOS3"; +chrXVI SGD transcript 329606 331699 . + . transcript_id "YPL116W_id001"; gene_id "YPL116W"; gene_name "HOS3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 329606 331699 . + 0 transcript_id "YPL116W_id001"; gene_name "HOS3"; gene_id "YPL116W"; +chrXVI SGD gene 332100 335486 . - . gene_id "YPL115C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 332100 335486 . - . transcript_id "YPL115C_mRNA"; gene_id "YPL115C"; gene_name "BEM3"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 332100 335486 . - 0 transcript_id "YPL115C_mRNA"; gene_name "BEM3"; gene_id "YPL115C"; +chrXVI SGD gene 335858 337179 . - . gene_id "YPL113C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 335858 337179 . - . transcript_id "YPL113C_id002"; gene_id "YPL113C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 335858 337179 . - . transcript_id "YPL113C_id002"; gene_id "YPL113C"; +chrXVI SGD gene 335932 337472 . + . gene_id "YPL114W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 335932 337472 . + . transcript_id "YPL114W_id002"; gene_id "YPL114W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 335932 337472 . + . transcript_id "YPL114W_id002"; gene_id "YPL114W"; +chrXVI SGD transcript 335948 336367 . + . transcript_id "YPL114W_id001"; gene_id "YPL114W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 335948 336367 . + 0 transcript_id "YPL114W_id001"; gene_id "YPL114W"; +chrXVI SGD transcript 335953 337143 . - . transcript_id "YPL113C_id001"; gene_id "YPL113C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 335953 337143 . - 0 transcript_id "YPL113C_id001"; gene_id "YPL113C"; +chrXVI SGD gene 337370 338713 . - . gene_id "YPL112C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 337370 338713 . - . transcript_id "YPL112C_id007"; gene_id "YPL112C"; gene_name "PEX25"; transcript_biotype "protein_coding"; +chrXVI SGD exon 337370 338713 . - . transcript_id "YPL112C_id007"; gene_id "YPL112C"; gene_name "PEX25"; +chrXVI SGD transcript 337436 338620 . - . transcript_id "YPL112C_id001"; gene_id "YPL112C"; gene_name "PEX25"; transcript_biotype "protein_coding"; +chrXVI SGD exon 337436 338620 . - 0 transcript_id "YPL112C_id001"; gene_name "PEX25"; gene_id "YPL112C"; +chrXVI SGD gene 338848 338919 . - . gene_id "YNCP0006C"; gene_biotype "ncRNA"; +chrXVI SGD transcript 338848 338919 . - . transcript_id "YNCP0006C_tRNA"; gene_id "YNCP0006C"; gene_name "IMT2"; transcript_biotype "ncRNA"; +chrXVI SGD exon 338848 338919 . - . transcript_id "YNCP0006C_tRNA"; gene_name "IMT2"; gene_id "YNCP0006C"; +chrXVI SGD gene 339604 341049 . + . gene_id "YPL111W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 339604 341049 . + . transcript_id "YPL111W_id001"; gene_id "YPL111W"; gene_name "CAR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 339604 341049 . + . transcript_id "YPL111W_id001"; gene_id "YPL111W"; gene_name "CAR1"; +chrXVI SGD transcript 339944 340945 . + . transcript_id "YPL111W_id003"; gene_id "YPL111W"; gene_name "CAR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 339944 340945 . + 0 transcript_id "YPL111W_id003"; gene_name "CAR1"; gene_id "YPL111W"; +chrXVI SGD gene 341068 344739 . - . gene_id "YPL110C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 341068 344739 . - . transcript_id "YPL110C_mRNA"; gene_id "YPL110C"; gene_name "GDE1"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 341068 344739 . - 0 transcript_id "YPL110C_mRNA"; gene_name "GDE1"; gene_id "YPL110C"; +chrXVI SGD gene 345246 347471 . - . gene_id "YPL109C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 345246 347471 . - . transcript_id "YPL109C_id003"; gene_id "YPL109C"; gene_name "CQD1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 345246 347471 . - . transcript_id "YPL109C_id003"; gene_id "YPL109C"; gene_name "CQD1"; +chrXVI SGD transcript 345264 347389 . - . transcript_id "YPL109C_id001"; gene_id "YPL109C"; gene_name "CQD1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 345264 345444 . - 1 transcript_id "YPL109C_id001"; gene_name "CQD1"; gene_id "YPL109C"; +chrXVI SGD exon 345597 347389 . - 0 transcript_id "YPL109C_id001"; gene_name "CQD1"; gene_id "YPL109C"; +chrXVI SGD gene 348446 348952 . + . gene_id "YPL108W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 348446 348952 . + . transcript_id "YPL108W_id001"; gene_id "YPL108W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 348446 348952 . + 0 transcript_id "YPL108W_id001"; gene_id "YPL108W"; +chrXVI SGD gene 349036 350111 . + . gene_id "YPL107W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 349036 350111 . + . transcript_id "YPL107W_id004"; gene_id "YPL107W"; gene_name "DPC25"; transcript_biotype "protein_coding"; +chrXVI SGD exon 349036 350111 . + . transcript_id "YPL107W_id004"; gene_id "YPL107W"; gene_name "DPC25"; +chrXVI SGD transcript 349119 349865 . + . transcript_id "YPL107W_id001"; gene_id "YPL107W"; gene_name "DPC25"; transcript_biotype "protein_coding"; +chrXVI SGD exon 349119 349865 . + 0 transcript_id "YPL107W_id001"; gene_name "DPC25"; gene_id "YPL107W"; +chrXVI SGD gene 349955 352348 . - . gene_id "YPL106C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 349955 352348 . - . transcript_id "YPL106C_id001"; gene_id "YPL106C"; gene_name "SSE1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 349955 352348 . - . transcript_id "YPL106C_id001"; gene_id "YPL106C"; gene_name "SSE1"; +chrXVI SGD transcript 350194 352275 . - . transcript_id "YPL106C_id003"; gene_id "YPL106C"; gene_name "SSE1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 350194 352275 . - 0 transcript_id "YPL106C_id003"; gene_name "SSE1"; gene_id "YPL106C"; +chrXVI SGD gene 352734 355455 . - . gene_id "YPL105C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 352734 355455 . - . transcript_id "YPL105C_id001"; gene_id "YPL105C"; gene_name "SYH1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 352734 355455 . - . transcript_id "YPL105C_id001"; gene_id "YPL105C"; gene_name "SYH1"; +chrXVI SGD transcript 352863 355412 . - . transcript_id "YPL105C_id003"; gene_id "YPL105C"; gene_name "SYH1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 352863 355412 . - 0 transcript_id "YPL105C_id003"; gene_name "SYH1"; gene_id "YPL105C"; +chrXVI SGD gene 355700 357676 . + . gene_id "YPL104W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 355700 357676 . + . transcript_id "YPL104W_id001"; gene_id "YPL104W"; gene_name "MSD1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 355700 357676 . + 0 transcript_id "YPL104W_id001"; gene_name "MSD1"; gene_id "YPL104W"; +chrXVI SGD gene 357381 359425 . - . gene_id "YPL103C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 357381 359425 . - . transcript_id "YPL103C_id001"; gene_id "YPL103C"; gene_name "FMP30"; transcript_biotype "protein_coding"; +chrXVI SGD exon 357381 359425 . - . transcript_id "YPL103C_id001"; gene_id "YPL103C"; gene_name "FMP30"; +chrXVI SGD transcript 358000 359406 . - . transcript_id "YPL103C_id003"; gene_id "YPL103C"; gene_name "FMP30"; transcript_biotype "protein_coding"; +chrXVI SGD exon 358000 359406 . - 0 transcript_id "YPL103C_id003"; gene_name "FMP30"; gene_id "YPL103C"; +chrXVI SGD gene 360003 360305 . - . gene_id "YPL102C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 360003 360305 . - . transcript_id "YPL102C_mRNA"; gene_id "YPL102C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 360003 360305 . - 0 transcript_id "YPL102C_mRNA"; gene_id "YPL102C"; +chrXVI SGD gene 360158 361821 . + . gene_id "YPL101W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 360158 361821 . + . transcript_id "YPL101W_id001"; gene_id "YPL101W"; gene_name "ELP4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 360158 361821 . + . transcript_id "YPL101W_id001"; gene_id "YPL101W"; gene_name "ELP4"; +chrXVI SGD transcript 360209 361579 . + . transcript_id "YPL101W_id002"; gene_id "YPL101W"; gene_name "ELP4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 360209 361579 . + 0 transcript_id "YPL101W_id002"; gene_name "ELP4"; gene_id "YPL101W"; +chrXVI SGD gene 361819 363523 . + . gene_id "YPL100W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 361819 363523 . + . transcript_id "YPL100W_id001"; gene_id "YPL100W"; gene_name "ATG21"; transcript_biotype "protein_coding"; +chrXVI SGD exon 361819 363523 . + . transcript_id "YPL100W_id001"; gene_id "YPL100W"; gene_name "ATG21"; +chrXVI SGD transcript 361872 363362 . + . transcript_id "YPL100W_id003"; gene_id "YPL100W"; gene_name "ATG21"; transcript_biotype "protein_coding"; +chrXVI SGD exon 361872 363362 . + 0 transcript_id "YPL100W_id003"; gene_name "ATG21"; gene_id "YPL100W"; +chrXVI SGD gene 363151 364094 . - . gene_id "YPL099C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 363151 364094 . - . transcript_id "YPL099C_id003"; gene_id "YPL099C"; gene_name "INA17"; transcript_biotype "protein_coding"; +chrXVI SGD exon 363151 364094 . - . transcript_id "YPL099C_id003"; gene_id "YPL099C"; gene_name "INA17"; +chrXVI SGD transcript 363520 364068 . - . transcript_id "YPL099C_id001"; gene_id "YPL099C"; gene_name "INA17"; transcript_biotype "protein_coding"; +chrXVI SGD exon 363520 364068 . - 0 transcript_id "YPL099C_id001"; gene_name "INA17"; gene_id "YPL099C"; +chrXVI SGD gene 364259 365013 . - . gene_id "YPL098C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 364259 365013 . - . transcript_id "YPL098C_id002"; gene_id "YPL098C"; gene_name "MGR2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 364259 365013 . - . transcript_id "YPL098C_id002"; gene_id "YPL098C"; gene_name "MGR2"; +chrXVI SGD transcript 364386 364727 . - . transcript_id "YPL098C_id001"; gene_id "YPL098C"; gene_name "MGR2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 364386 364727 . - 0 transcript_id "YPL098C_id001"; gene_name "MGR2"; gene_id "YPL098C"; +chrXVI SGD gene 364869 366540 . + . gene_id "YPL097W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 364869 366540 . + . transcript_id "YPL097W_id001"; gene_id "YPL097W"; gene_name "MSY1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 364869 366540 . + . transcript_id "YPL097W_id001"; gene_id "YPL097W"; gene_name "MSY1"; +chrXVI SGD transcript 364952 366430 . + . transcript_id "YPL097W_id002"; gene_id "YPL097W"; gene_name "MSY1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 364952 366430 . + 0 transcript_id "YPL097W_id002"; gene_name "MSY1"; gene_id "YPL097W"; +chrXVI SGD gene 366476 367546 . - . gene_id "YPL096C-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 366476 367546 . - . transcript_id "YPL096C-A_id001"; gene_id "YPL096C-A"; gene_name "ERI1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 366476 367546 . - . transcript_id "YPL096C-A_id001"; gene_id "YPL096C-A"; gene_name "ERI1"; +chrXVI SGD transcript 366529 366735 . - . transcript_id "YPL096C-A_id003"; gene_id "YPL096C-A"; gene_name "ERI1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 366529 366735 . - 0 transcript_id "YPL096C-A_id003"; gene_name "ERI1"; gene_id "YPL096C-A"; +chrXVI SGD gene 366911 369667 . + . gene_id "YPL096W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 366911 369667 . + . transcript_id "YPL096W_id001"; gene_id "YPL096W"; gene_name "PNG1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 366911 369667 . + . transcript_id "YPL096W_id001"; gene_id "YPL096W"; gene_name "PNG1"; +chrXVI SGD transcript 366927 368018 . + . transcript_id "YPL096W_id006"; gene_id "YPL096W"; gene_name "PNG1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 366927 368018 . + 0 transcript_id "YPL096W_id006"; gene_name "PNG1"; gene_id "YPL096W"; +chrXVI SGD gene 367962 369474 . - . gene_id "YPL095C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 367962 369474 . - . transcript_id "YPL095C_id003"; gene_id "YPL095C"; gene_name "EEB1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 367962 369474 . - . transcript_id "YPL095C_id003"; gene_id "YPL095C"; gene_name "EEB1"; +chrXVI SGD transcript 368071 369441 . - . transcript_id "YPL095C_id001"; gene_id "YPL095C"; gene_name "EEB1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 368071 369441 . - 0 transcript_id "YPL095C_id001"; gene_name "EEB1"; gene_id "YPL095C"; +chrXVI SGD gene 369448 370734 . - . gene_id "YPL094C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 369448 370734 . - . transcript_id "YPL094C_id001"; gene_id "YPL094C"; gene_name "SEC62"; transcript_biotype "protein_coding"; +chrXVI SGD exon 369448 370734 . - . transcript_id "YPL094C_id001"; gene_id "YPL094C"; gene_name "SEC62"; +chrXVI SGD transcript 369839 370663 . - . transcript_id "YPL094C_id002"; gene_id "YPL094C"; gene_name "SEC62"; transcript_biotype "protein_coding"; +chrXVI SGD exon 369839 370663 . - 0 transcript_id "YPL094C_id002"; gene_name "SEC62"; gene_id "YPL094C"; +chrXVI SGD gene 370882 373158 . + . gene_id "YPL093W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 370882 373158 . + . transcript_id "YPL093W_id002"; gene_id "YPL093W"; gene_name "NOG1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 370882 373158 . + . transcript_id "YPL093W_id002"; gene_id "YPL093W"; gene_name "NOG1"; +chrXVI SGD transcript 370978 372921 . + . transcript_id "YPL093W_id001"; gene_id "YPL093W"; gene_name "NOG1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 370978 372921 . + 0 transcript_id "YPL093W_id001"; gene_name "NOG1"; gene_id "YPL093W"; +chrXVI SGD gene 373661 375512 . + . gene_id "YPL092W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 373661 375512 . + . transcript_id "YPL092W_id002"; gene_id "YPL092W"; gene_name "SSU1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 373661 375512 . + . transcript_id "YPL092W_id002"; gene_id "YPL092W"; gene_name "SSU1"; +chrXVI SGD transcript 373793 375169 . + . transcript_id "YPL092W_id001"; gene_id "YPL092W"; gene_name "SSU1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 373793 375169 . + 0 transcript_id "YPL092W_id001"; gene_name "SSU1"; gene_id "YPL092W"; +chrXVI SGD gene 375468 377228 . + . gene_id "YPL091W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 375468 377228 . + . transcript_id "YPL091W_id001"; gene_id "YPL091W"; gene_name "GLR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 375468 377228 . + . transcript_id "YPL091W_id001"; gene_id "YPL091W"; gene_name "GLR1"; +chrXVI SGD transcript 375502 376953 . + . transcript_id "YPL091W_id003"; gene_id "YPL091W"; gene_name "GLR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 375502 376953 . + 0 transcript_id "YPL091W_id003"; gene_name "GLR1"; gene_id "YPL091W"; +chrXVI SGD gene 376993 378451 . - . gene_id "YPL090C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 376993 378451 . - . transcript_id "YPL090C_id001"; gene_id "YPL090C"; gene_name "RPS6A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 376993 378451 . - . transcript_id "YPL090C_id001"; gene_id "YPL090C"; gene_name "RPS6A"; +chrXVI SGD transcript 377291 378395 . - . transcript_id "YPL090C_id004"; gene_id "YPL090C"; gene_name "RPS6A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 377291 377995 . - 0 transcript_id "YPL090C_id004"; gene_name "RPS6A"; gene_id "YPL090C"; +chrXVI SGD exon 378390 378395 . - 0 transcript_id "YPL090C_id004"; gene_name "RPS6A"; gene_id "YPL090C"; +chrXVI SGD gene 378999 381414 . - . gene_id "YPL089C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 378999 381414 . - . transcript_id "YPL089C_id004"; gene_id "YPL089C"; gene_name "RLM1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 378999 381414 . - . transcript_id "YPL089C_id004"; gene_id "YPL089C"; gene_name "RLM1"; +chrXVI SGD transcript 379120 381150 . - . transcript_id "YPL089C_id001"; gene_id "YPL089C"; gene_name "RLM1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 379120 381150 . - 0 transcript_id "YPL089C_id001"; gene_name "RLM1"; gene_id "YPL089C"; +chrXVI SGD gene 381905 383081 . + . gene_id "YPL088W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 381905 383081 . + . transcript_id "YPL088W_id002"; gene_id "YPL088W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 381905 383081 . + . transcript_id "YPL088W_id002"; gene_id "YPL088W"; +chrXVI SGD transcript 381965 382993 . + . transcript_id "YPL088W_id001"; gene_id "YPL088W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 381965 382993 . + 0 transcript_id "YPL088W_id001"; gene_id "YPL088W"; +chrXVI SGD gene 383193 384545 . + . gene_id "YPL087W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 383193 384545 . + . transcript_id "YPL087W_id001"; gene_id "YPL087W"; gene_name "YDC1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 383193 384545 . + . transcript_id "YPL087W_id001"; gene_id "YPL087W"; gene_name "YDC1"; +chrXVI SGD transcript 383455 384408 . + . transcript_id "YPL087W_id002"; gene_id "YPL087W"; gene_name "YDC1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 383455 384408 . + 0 transcript_id "YPL087W_id002"; gene_name "YDC1"; gene_id "YPL087W"; +chrXVI SGD gene 384654 386520 . - . gene_id "YPL086C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 384654 386520 . - . transcript_id "YPL086C_id007"; gene_id "YPL086C"; gene_name "ELP3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 384654 386520 . - . transcript_id "YPL086C_id007"; gene_id "YPL086C"; gene_name "ELP3"; +chrXVI SGD transcript 384773 386446 . - . transcript_id "YPL086C_id001"; gene_id "YPL086C"; gene_name "ELP3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 384773 386446 . - 0 transcript_id "YPL086C_id001"; gene_name "ELP3"; gene_id "YPL086C"; +chrXVI SGD gene 387067 393654 . + . gene_id "YPL085W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 387067 393654 . + . transcript_id "YPL085W_mRNA"; gene_id "YPL085W"; gene_name "SEC16"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 387067 393654 . + 0 transcript_id "YPL085W_mRNA"; gene_name "SEC16"; gene_id "YPL085W"; +chrXVI SGD gene 393997 396722 . + . gene_id "YPL084W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 393997 396722 . + . transcript_id "YPL084W_id002"; gene_id "YPL084W"; gene_name "BRO1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 393997 396722 . + . transcript_id "YPL084W_id002"; gene_id "YPL084W"; gene_name "BRO1"; +chrXVI SGD transcript 394038 396572 . + . transcript_id "YPL084W_id001"; gene_id "YPL084W"; gene_name "BRO1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 394038 396572 . + 0 transcript_id "YPL084W_id001"; gene_name "BRO1"; gene_id "YPL084W"; +chrXVI SGD gene 396073 398183 . - . gene_id "YPL083C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 396073 398183 . - . transcript_id "YPL083C_id003"; gene_id "YPL083C"; gene_name "SEN54"; transcript_biotype "protein_coding"; +chrXVI SGD exon 396073 398183 . - . transcript_id "YPL083C_id003"; gene_id "YPL083C"; gene_name "SEN54"; +chrXVI SGD transcript 396702 398105 . - . transcript_id "YPL083C_id001"; gene_id "YPL083C"; gene_name "SEN54"; transcript_biotype "protein_coding"; +chrXVI SGD exon 396702 398105 . - 0 transcript_id "YPL083C_id001"; gene_name "SEN54"; gene_id "YPL083C"; +chrXVI SGD gene 398480 404083 . - . gene_id "YPL082C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 398480 404083 . - . transcript_id "YPL082C_mRNA"; gene_id "YPL082C"; gene_name "MOT1"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 398480 404083 . - 0 transcript_id "YPL082C_mRNA"; gene_name "MOT1"; gene_id "YPL082C"; +chrXVI SGD gene 404909 406716 . + . gene_id "YPL081W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 404909 406716 . + . transcript_id "YPL081W_id001"; gene_id "YPL081W"; gene_name "RPS9A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 404909 406716 . + . transcript_id "YPL081W_id001"; gene_id "YPL081W"; gene_name "RPS9A"; +chrXVI SGD transcript 404950 406044 . + . transcript_id "YPL081W_id002"; gene_id "YPL081W"; gene_name "RPS9A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 404950 404956 . + 0 transcript_id "YPL081W_id002"; gene_name "RPS9A"; gene_id "YPL081W"; +chrXVI SGD exon 405458 406044 . + 2 transcript_id "YPL081W_id002"; gene_name "RPS9A"; gene_id "YPL081W"; +chrXVI SGD gene 406036 406669 . - . gene_id "YPL080C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 406036 406669 . - . transcript_id "YPL080C_id001"; gene_id "YPL080C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 406036 406669 . - . transcript_id "YPL080C_id001"; gene_id "YPL080C"; +chrXVI SGD transcript 406172 406498 . - . transcript_id "YPL080C_id003"; gene_id "YPL080C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 406172 406498 . - 0 transcript_id "YPL080C_id003"; gene_id "YPL080C"; +chrXVI SGD gene 406610 407851 . + . gene_id "YPL079W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 406610 407851 . + . transcript_id "YPL079W_id001"; gene_id "YPL079W"; gene_name "RPL21B"; transcript_biotype "protein_coding"; +chrXVI SGD exon 406610 407851 . + . transcript_id "YPL079W_id001"; gene_id "YPL079W"; gene_name "RPL21B"; +chrXVI SGD transcript 406636 407539 . + . transcript_id "YPL079W_id003"; gene_id "YPL079W"; gene_name "RPL21B"; transcript_biotype "protein_coding"; +chrXVI SGD exon 406636 406646 . + 0 transcript_id "YPL079W_id003"; gene_name "RPL21B"; gene_id "YPL079W"; +chrXVI SGD exon 407068 407539 . + 1 transcript_id "YPL079W_id003"; gene_name "RPL21B"; gene_id "YPL079W"; +chrXVI SGD gene 407750 408847 . - . gene_id "YPL078C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 407750 408847 . - . transcript_id "YPL078C_id006"; gene_id "YPL078C"; gene_name "ATP4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 407750 408847 . - . transcript_id "YPL078C_id006"; gene_id "YPL078C"; gene_name "ATP4"; +chrXVI SGD transcript 408010 408744 . - . transcript_id "YPL078C_id001"; gene_id "YPL078C"; gene_name "ATP4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 408010 408744 . - 0 transcript_id "YPL078C_id001"; gene_name "ATP4"; gene_id "YPL078C"; +chrXVI SGD gene 409368 410090 . - . gene_id "YPL077C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 409368 410090 . - . transcript_id "YPL077C_id001"; gene_id "YPL077C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 409368 410090 . - 0 transcript_id "YPL077C_id001"; gene_id "YPL077C"; +chrXVI SGD gene 410284 412068 . + . gene_id "YPL076W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 410284 412068 . + . transcript_id "YPL076W_id001"; gene_id "YPL076W"; gene_name "GPI2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 410284 412068 . + . transcript_id "YPL076W_id001"; gene_id "YPL076W"; gene_name "GPI2"; +chrXVI SGD transcript 410443 411285 . + . transcript_id "YPL076W_id002"; gene_id "YPL076W"; gene_name "GPI2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 410443 411285 . + 0 transcript_id "YPL076W_id002"; gene_name "GPI2"; gene_id "YPL076W"; +chrXVI SGD gene 412254 415362 . + . gene_id "YPL075W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 412254 415362 . + . transcript_id "YPL075W_id001"; gene_id "YPL075W"; gene_name "GCR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 412254 412261 . + 0 transcript_id "YPL075W_id001"; gene_name "GCR1"; gene_id "YPL075W"; +chrXVI SGD exon 413013 415362 . + 1 transcript_id "YPL075W_id001"; gene_name "GCR1"; gene_id "YPL075W"; +chrXVI SGD gene 415710 418165 . + . gene_id "YPL074W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 415710 418165 . + . transcript_id "YPL074W_id001"; gene_id "YPL074W"; gene_name "YTA6"; transcript_biotype "protein_coding"; +chrXVI SGD exon 415710 418165 . + . transcript_id "YPL074W_id001"; gene_id "YPL074W"; gene_name "YTA6"; +chrXVI SGD transcript 415763 418027 . + . transcript_id "YPL074W_id002"; gene_id "YPL074W"; gene_name "YTA6"; transcript_biotype "protein_coding"; +chrXVI SGD exon 415763 418027 . + 0 transcript_id "YPL074W_id002"; gene_name "YTA6"; gene_id "YPL074W"; +chrXVI SGD gene 418319 420063 . + . gene_id "YPL072W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 418319 420063 . + . transcript_id "YPL072W_id003"; gene_id "YPL072W"; gene_name "UBP16"; transcript_biotype "protein_coding"; +chrXVI SGD exon 418319 420063 . + . transcript_id "YPL072W_id003"; gene_id "YPL072W"; gene_name "UBP16"; +chrXVI SGD gene 418499 418984 . - . gene_id "YPL073C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 418499 418984 . - . transcript_id "YPL073C_mRNA"; gene_id "YPL073C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 418499 418984 . - 0 transcript_id "YPL073C_mRNA"; gene_id "YPL073C"; +chrXVI SGD transcript 418512 420011 . + . transcript_id "YPL072W_id001"; gene_id "YPL072W"; gene_name "UBP16"; transcript_biotype "protein_coding"; +chrXVI SGD exon 418512 420011 . + 0 transcript_id "YPL072W_id001"; gene_name "UBP16"; gene_id "YPL072W"; +chrXVI SGD gene 419832 420624 . - . gene_id "YPL071C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 419832 420624 . - . transcript_id "YPL071C_id001"; gene_id "YPL071C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 419832 420624 . - . transcript_id "YPL071C_id001"; gene_id "YPL071C"; +chrXVI SGD transcript 420048 420518 . - . transcript_id "YPL071C_id002"; gene_id "YPL071C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 420048 420518 . - 0 transcript_id "YPL071C_id002"; gene_id "YPL071C"; +chrXVI SGD gene 420741 423008 . + . gene_id "YPL070W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 420741 423008 . + . transcript_id "YPL070W_id002"; gene_id "YPL070W"; gene_name "MUK1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 420741 423008 . + . transcript_id "YPL070W_id002"; gene_id "YPL070W"; gene_name "MUK1"; +chrXVI SGD transcript 420948 422786 . + . transcript_id "YPL070W_id001"; gene_id "YPL070W"; gene_name "MUK1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 420948 422786 . + 0 transcript_id "YPL070W_id001"; gene_name "MUK1"; gene_id "YPL070W"; +chrXVI SGD gene 422885 423892 . - . gene_id "YPL069C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 422885 423892 . - . transcript_id "YPL069C_id001"; gene_id "YPL069C"; gene_name "BTS1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 422885 423892 . - 0 transcript_id "YPL069C_id001"; gene_name "BTS1"; gene_id "YPL069C"; +chrXVI SGD gene 424130 425173 . - . gene_id "YPL068C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 424130 425173 . - . transcript_id "YPL068C_id003"; gene_id "YPL068C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 424130 425173 . - . transcript_id "YPL068C_id003"; gene_id "YPL068C"; +chrXVI SGD transcript 424215 425096 . - . transcript_id "YPL068C_id001"; gene_id "YPL068C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 424215 425096 . - 0 transcript_id "YPL068C_id001"; gene_id "YPL068C"; +chrXVI SGD gene 424714 425904 . - . gene_id "YPL067C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 424714 425904 . - . transcript_id "YPL067C_id002"; gene_id "YPL067C"; gene_name "HTC1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 424714 425904 . - . transcript_id "YPL067C_id002"; gene_id "YPL067C"; gene_name "HTC1"; +chrXVI SGD transcript 425251 425847 . - . transcript_id "YPL067C_id001"; gene_id "YPL067C"; gene_name "HTC1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 425251 425847 . - 0 transcript_id "YPL067C_id001"; gene_name "HTC1"; gene_id "YPL067C"; +chrXVI SGD gene 426062 427858 . + . gene_id "YPL066W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 426062 427858 . + . transcript_id "YPL066W_id001"; gene_id "YPL066W"; gene_name "RGL1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 426062 427858 . + . transcript_id "YPL066W_id001"; gene_id "YPL066W"; gene_name "RGL1"; +chrXVI SGD transcript 426233 427672 . + . transcript_id "YPL066W_id002"; gene_id "YPL066W"; gene_name "RGL1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 426233 427672 . + 0 transcript_id "YPL066W_id002"; gene_name "RGL1"; gene_id "YPL066W"; +chrXVI SGD gene 427898 428789 . + . gene_id "YPL065W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 427898 428789 . + . transcript_id "YPL065W_id002"; gene_id "YPL065W"; gene_name "VPS28"; transcript_biotype "protein_coding"; +chrXVI SGD exon 427898 428789 . + . transcript_id "YPL065W_id002"; gene_id "YPL065W"; gene_name "VPS28"; +chrXVI SGD transcript 427927 428655 . + . transcript_id "YPL065W_id001"; gene_id "YPL065W"; gene_name "VPS28"; transcript_biotype "protein_coding"; +chrXVI SGD exon 427927 428655 . + 0 transcript_id "YPL065W_id001"; gene_name "VPS28"; gene_id "YPL065W"; +chrXVI SGD gene 428584 429658 . - . gene_id "YPL064C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 428584 429658 . - . transcript_id "YPL064C_id001"; gene_id "YPL064C"; gene_name "CWC27"; transcript_biotype "protein_coding"; +chrXVI SGD exon 428584 429658 . - . transcript_id "YPL064C_id001"; gene_id "YPL064C"; gene_name "CWC27"; +chrXVI SGD transcript 428711 429616 . - . transcript_id "YPL064C_id002"; gene_id "YPL064C"; gene_name "CWC27"; transcript_biotype "protein_coding"; +chrXVI SGD exon 428711 429616 . - 0 transcript_id "YPL064C_id002"; gene_name "CWC27"; gene_id "YPL064C"; +chrXVI SGD gene 429809 431584 . + . gene_id "YPL063W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 429809 431584 . + . transcript_id "YPL063W_id001"; gene_id "YPL063W"; gene_name "TIM50"; transcript_biotype "protein_coding"; +chrXVI SGD exon 429809 431584 . + . transcript_id "YPL063W_id001"; gene_id "YPL063W"; gene_name "TIM50"; +chrXVI SGD transcript 429939 431369 . + . transcript_id "YPL063W_id002"; gene_id "YPL063W"; gene_name "TIM50"; transcript_biotype "protein_coding"; +chrXVI SGD exon 429939 431369 . + 0 transcript_id "YPL063W_id002"; gene_name "TIM50"; gene_id "YPL063W"; +chrXVI SGD gene 431895 432299 . + . gene_id "YPL062W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 431895 432299 . + . transcript_id "YPL062W_id001"; gene_id "YPL062W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 431895 432299 . + 0 transcript_id "YPL062W_id001"; gene_id "YPL062W"; +chrXVI SGD gene 432467 434236 . + . gene_id "YPL061W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 432467 434236 . + . transcript_id "YPL061W_id001"; gene_id "YPL061W"; gene_name "ALD6"; transcript_biotype "protein_coding"; +chrXVI SGD exon 432467 434236 . + . transcript_id "YPL061W_id001"; gene_id "YPL061W"; gene_name "ALD6"; +chrXVI SGD transcript 432588 434090 . + . transcript_id "YPL061W_id002"; gene_id "YPL061W"; gene_name "ALD6"; transcript_biotype "protein_coding"; +chrXVI SGD exon 432588 434090 . + 0 transcript_id "YPL061W_id002"; gene_name "ALD6"; gene_id "YPL061W"; +chrXVI SGD gene 434284 435817 . + . gene_id "YPL060W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 434284 435817 . + . transcript_id "YPL060W_id006"; gene_id "YPL060W"; gene_name "MFM1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 434284 435817 . + . transcript_id "YPL060W_id006"; gene_id "YPL060W"; gene_name "MFM1"; +chrXVI SGD transcript 434523 435764 . + . transcript_id "YPL060W_id001"; gene_id "YPL060W"; gene_name "MFM1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 434523 435764 . + 0 transcript_id "YPL060W_id001"; gene_name "MFM1"; gene_id "YPL060W"; +chrXVI SGD gene 435893 435964 . - . gene_id "YNCP0007C"; gene_biotype "ncRNA"; +chrXVI SGD transcript 435893 435964 . - . transcript_id "YNCP0007C_tRNA"; gene_id "YNCP0007C"; transcript_biotype "ncRNA"; +chrXVI SGD exon 435893 435964 . - . transcript_id "YNCP0007C_tRNA"; gene_id "YNCP0007C"; +chrXVI SGD gene 437333 442742 . - . gene_id "YPL060C-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 437333 442742 . - . transcript_id "YPL060C-A_dummy"; gene_id "YPL060C-A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 437333 439427 . - 1 transcript_id "YPL060C-A_dummy"; gene_id "YPL060C-A"; +chrXVI SGD exon 439429 442742 . - 0 transcript_id "YPL060C-A_dummy"; gene_id "YPL060C-A"; +chrXVI SGD gene 444522 445301 . + . gene_id "YPL059W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 444522 445301 . + . transcript_id "YPL059W_id004"; gene_id "YPL059W"; gene_name "GRX5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 444522 445301 . + . transcript_id "YPL059W_id004"; gene_id "YPL059W"; gene_name "GRX5"; +chrXVI SGD transcript 444579 445031 . + . transcript_id "YPL059W_id001"; gene_id "YPL059W"; gene_name "GRX5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 444579 445031 . + 0 transcript_id "YPL059W_id001"; gene_name "GRX5"; gene_id "YPL059W"; +chrXVI SGD gene 445842 450377 . - . gene_id "YPL058C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 445842 450377 . - . transcript_id "YPL058C_mRNA"; gene_id "YPL058C"; gene_name "PDR12"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 445842 450377 . - 0 transcript_id "YPL058C_mRNA"; gene_name "PDR12"; gene_id "YPL058C"; +chrXVI SGD gene 451460 453315 . - . gene_id "YPL057C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 451460 453315 . - . transcript_id "YPL057C_id001"; gene_id "YPL057C"; gene_name "SUR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 451460 453315 . - . transcript_id "YPL057C_id001"; gene_id "YPL057C"; gene_name "SUR1"; +chrXVI SGD transcript 451909 453057 . - . transcript_id "YPL057C_id003"; gene_id "YPL057C"; gene_name "SUR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 451909 453057 . - 0 transcript_id "YPL057C_id003"; gene_name "SUR1"; gene_id "YPL057C"; +chrXVI SGD gene 453214 454779 . - . gene_id "YPL056C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 453214 454779 . - . transcript_id "YPL056C_id001"; gene_id "YPL056C"; gene_name "LCL1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 453214 454779 . - . transcript_id "YPL056C_id001"; gene_id "YPL056C"; gene_name "LCL1"; +chrXVI SGD transcript 453430 453735 . - . transcript_id "YPL056C_id002"; gene_id "YPL056C"; gene_name "LCL1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 453430 453735 . - 0 transcript_id "YPL056C_id002"; gene_name "LCL1"; gene_id "YPL056C"; +chrXVI SGD gene 453445 455009 . - . gene_id "YPL055C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 453445 455009 . - . transcript_id "YPL055C_id001"; gene_id "YPL055C"; gene_name "LGE1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 453445 455009 . - . transcript_id "YPL055C_id001"; gene_id "YPL055C"; gene_name "LGE1"; +chrXVI SGD transcript 453992 454990 . - . transcript_id "YPL055C_id002"; gene_id "YPL055C"; gene_name "LGE1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 453992 454990 . - 0 transcript_id "YPL055C_id002"; gene_name "LGE1"; gene_id "YPL055C"; +chrXVI SGD gene 455759 456664 . + . gene_id "YPL054W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 455759 456664 . + . transcript_id "YPL054W_id001"; gene_id "YPL054W"; gene_name "LEE1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 455759 456664 . + 0 transcript_id "YPL054W_id001"; gene_name "LEE1"; gene_id "YPL054W"; +chrXVI SGD gene 456990 458545 . - . gene_id "YPL053C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 456990 458545 . - . transcript_id "YPL053C_id002"; gene_id "YPL053C"; gene_name "KTR6"; transcript_biotype "protein_coding"; +chrXVI SGD exon 456990 458545 . - . transcript_id "YPL053C_id002"; gene_id "YPL053C"; gene_name "KTR6"; +chrXVI SGD transcript 457118 458458 . - . transcript_id "YPL053C_id001"; gene_id "YPL053C"; gene_name "KTR6"; transcript_biotype "protein_coding"; +chrXVI SGD exon 457118 458458 . - 0 transcript_id "YPL053C_id001"; gene_name "KTR6"; gene_id "YPL053C"; +chrXVI SGD gene 458742 459897 . + . gene_id "YPL052W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 458742 459897 . + . transcript_id "YPL052W_id002"; gene_id "YPL052W"; gene_name "OAZ1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 458742 459897 . + . transcript_id "YPL052W_id002"; gene_id "YPL052W"; gene_name "OAZ1"; +chrXVI SGD transcript 458799 459678 . + . transcript_id "YPL052W_id001"; gene_id "YPL052W"; gene_name "OAZ1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 458799 459005 . + 0 transcript_id "YPL052W_id001"; gene_name "OAZ1"; gene_id "YPL052W"; +chrXVI SGD exon 459007 459678 . + 0 transcript_id "YPL052W_id001"; gene_name "OAZ1"; gene_id "YPL052W"; +chrXVI SGD gene 459911 460726 . + . gene_id "YPL051W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 459911 460726 . + . transcript_id "YPL051W_id004"; gene_id "YPL051W"; gene_name "ARL3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 459911 460726 . + . transcript_id "YPL051W_id004"; gene_id "YPL051W"; gene_name "ARL3"; +chrXVI SGD transcript 459963 460559 . + . transcript_id "YPL051W_id001"; gene_id "YPL051W"; gene_name "ARL3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 459963 460559 . + 0 transcript_id "YPL051W_id001"; gene_name "ARL3"; gene_id "YPL051W"; +chrXVI SGD gene 460623 462183 . - . gene_id "YPL050C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 460623 462183 . - . transcript_id "YPL050C_id007"; gene_id "YPL050C"; gene_name "MNN9"; transcript_biotype "protein_coding"; +chrXVI SGD exon 460623 462183 . - . transcript_id "YPL050C_id007"; gene_id "YPL050C"; gene_name "MNN9"; +chrXVI SGD transcript 460779 461966 . - . transcript_id "YPL050C_id001"; gene_id "YPL050C"; gene_name "MNN9"; transcript_biotype "protein_coding"; +chrXVI SGD exon 460779 461966 . - 0 transcript_id "YPL050C_id001"; gene_name "MNN9"; gene_id "YPL050C"; +chrXVI SGD gene 462306 464149 . - . gene_id "YPL049C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 462306 464149 . - . transcript_id "YPL049C_id002"; gene_id "YPL049C"; gene_name "DIG1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 462306 464149 . - . transcript_id "YPL049C_id002"; gene_id "YPL049C"; gene_name "DIG1"; +chrXVI SGD transcript 462481 463839 . - . transcript_id "YPL049C_id001"; gene_id "YPL049C"; gene_name "DIG1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 462481 463839 . - 0 transcript_id "YPL049C_id001"; gene_name "DIG1"; gene_id "YPL049C"; +chrXVI SGD gene 464281 465928 . + . gene_id "YPL048W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 464281 465928 . + . transcript_id "YPL048W_id001"; gene_id "YPL048W"; gene_name "CAM1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 464281 465928 . + . transcript_id "YPL048W_id001"; gene_id "YPL048W"; gene_name "CAM1"; +chrXVI SGD transcript 464401 465648 . + . transcript_id "YPL048W_id003"; gene_id "YPL048W"; gene_name "CAM1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 464401 465648 . + 0 transcript_id "YPL048W_id003"; gene_name "CAM1"; gene_id "YPL048W"; +chrXVI SGD gene 465786 466951 . - . gene_id "YPL046C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 465786 466951 . - . transcript_id "YPL046C_id004"; gene_id "YPL046C"; gene_name "ELC1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 465786 466951 . - . transcript_id "YPL046C_id004"; gene_id "YPL046C"; gene_name "ELC1"; +chrXVI SGD gene 465828 466772 . + . gene_id "YPL047W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 465828 466772 . + . transcript_id "YPL047W_id002"; gene_id "YPL047W"; gene_name "SGF11"; transcript_biotype "protein_coding"; +chrXVI SGD exon 465828 466772 . + . transcript_id "YPL047W_id002"; gene_id "YPL047W"; gene_name "SGF11"; +chrXVI SGD transcript 465962 466261 . + . transcript_id "YPL047W_id001"; gene_id "YPL047W"; gene_name "SGF11"; transcript_biotype "protein_coding"; +chrXVI SGD exon 465962 466261 . + 0 transcript_id "YPL047W_id001"; gene_name "SGF11"; gene_id "YPL047W"; +chrXVI SGD transcript 466644 466943 . - . transcript_id "YPL046C_id001"; gene_id "YPL046C"; gene_name "ELC1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 466644 466943 . - 0 transcript_id "YPL046C_id001"; gene_name "ELC1"; gene_id "YPL046C"; +chrXVI SGD gene 467180 469903 . + . gene_id "YPL045W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 467180 469903 . + . transcript_id "YPL045W_id003"; gene_id "YPL045W"; gene_name "VPS16"; transcript_biotype "protein_coding"; +chrXVI SGD exon 467180 469903 . + . transcript_id "YPL045W_id003"; gene_id "YPL045W"; gene_name "VPS16"; +chrXVI SGD transcript 467260 469656 . + . transcript_id "YPL045W_id001"; gene_id "YPL045W"; gene_name "VPS16"; transcript_biotype "protein_coding"; +chrXVI SGD exon 467260 469656 . + 0 transcript_id "YPL045W_id001"; gene_name "VPS16"; gene_id "YPL045W"; +chrXVI SGD gene 469879 472101 . + . gene_id "YPL043W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 469879 472101 . + . transcript_id "YPL043W_id004"; gene_id "YPL043W"; gene_name "NOP4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 469879 472101 . + . transcript_id "YPL043W_id004"; gene_id "YPL043W"; gene_name "NOP4"; +chrXVI SGD gene 469926 470474 . - . gene_id "YPL044C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 469926 470474 . - . transcript_id "YPL044C_id001"; gene_id "YPL044C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 469926 470474 . - 0 transcript_id "YPL044C_id001"; gene_id "YPL044C"; +chrXVI SGD transcript 469939 471996 . + . transcript_id "YPL043W_id001"; gene_id "YPL043W"; gene_name "NOP4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 469939 471996 . + 0 transcript_id "YPL043W_id001"; gene_name "NOP4"; gene_id "YPL043W"; +chrXVI SGD gene 472932 475001 . - . gene_id "YPL042C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 472932 475001 . - . transcript_id "YPL042C_id002"; gene_id "YPL042C"; gene_name "SSN3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 472932 475001 . - . transcript_id "YPL042C_id002"; gene_id "YPL042C"; gene_name "SSN3"; +chrXVI SGD transcript 473040 474707 . - . transcript_id "YPL042C_id001"; gene_id "YPL042C"; gene_name "SSN3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 473040 474707 . - 0 transcript_id "YPL042C_id001"; gene_name "SSN3"; gene_id "YPL042C"; +chrXVI SGD gene 474958 477173 . - . gene_id "YPL041C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 474958 477173 . - . transcript_id "YPL041C_id001"; gene_id "YPL041C"; gene_name "MRX11"; transcript_biotype "protein_coding"; +chrXVI SGD exon 474958 477173 . - . transcript_id "YPL041C_id001"; gene_id "YPL041C"; gene_name "MRX11"; +chrXVI SGD transcript 475118 475741 . - . transcript_id "YPL041C_id004"; gene_id "YPL041C"; gene_name "MRX11"; transcript_biotype "protein_coding"; +chrXVI SGD exon 475118 475741 . - 0 transcript_id "YPL041C_id004"; gene_name "MRX11"; gene_id "YPL041C"; +chrXVI SGD gene 475993 479001 . - . gene_id "YPL040C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 475993 479001 . - . transcript_id "YPL040C_id001"; gene_id "YPL040C"; gene_name "ISM1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 475993 479001 . - 0 transcript_id "YPL040C_id001"; gene_name "ISM1"; gene_id "YPL040C"; +chrXVI SGD gene 479168 480312 . + . gene_id "YPL039W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 479168 480312 . + . transcript_id "YPL039W_id005"; gene_id "YPL039W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 479168 480312 . + . transcript_id "YPL039W_id005"; gene_id "YPL039W"; +chrXVI SGD transcript 479225 480175 . + . transcript_id "YPL039W_id001"; gene_id "YPL039W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 479225 480175 . + 0 transcript_id "YPL039W_id001"; gene_id "YPL039W"; +chrXVI SGD gene 480182 480373 . + . gene_id "YPL038W-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 480182 480373 . + . transcript_id "YPL038W-A_id001"; gene_id "YPL038W-A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 480182 480373 . + 0 transcript_id "YPL038W-A_id001"; gene_id "YPL038W-A"; +chrXVI SGD gene 480344 481180 . + . gene_id "YPL038W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 480344 481180 . + . transcript_id "YPL038W_id002"; gene_id "YPL038W"; gene_name "MET31"; transcript_biotype "protein_coding"; +chrXVI SGD exon 480344 481180 . + . transcript_id "YPL038W_id002"; gene_id "YPL038W"; gene_name "MET31"; +chrXVI SGD transcript 480535 481068 . + . transcript_id "YPL038W_id001"; gene_id "YPL038W"; gene_name "MET31"; transcript_biotype "protein_coding"; +chrXVI SGD exon 480535 481068 . + 0 transcript_id "YPL038W_id001"; gene_name "MET31"; gene_id "YPL038W"; +chrXVI SGD gene 481318 482905 . - . gene_id "YPL037C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 481318 482905 . - . transcript_id "YPL037C_id001"; gene_id "YPL037C"; gene_name "EGD1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 481318 482905 . - . transcript_id "YPL037C_id001"; gene_id "YPL037C"; gene_name "EGD1"; +chrXVI SGD transcript 481428 481901 . - . transcript_id "YPL037C_id003"; gene_id "YPL037C"; gene_name "EGD1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 481428 481901 . - 0 transcript_id "YPL037C_id003"; gene_name "EGD1"; gene_id "YPL037C"; +chrXVI SGD gene 482843 485686 . + . gene_id "YPL036W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 482843 485686 . + . transcript_id "YPL036W_id001"; gene_id "YPL036W"; gene_name "PMA2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 482843 485686 . + 0 transcript_id "YPL036W_id001"; gene_name "PMA2"; gene_id "YPL036W"; +chrXVI SGD gene 486346 487397 . + . gene_id "YPL034W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 486346 487397 . + . transcript_id "YPL034W_id002"; gene_id "YPL034W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 486346 487397 . + . transcript_id "YPL034W_id002"; gene_id "YPL034W"; +chrXVI SGD gene 486564 486911 . - . gene_id "YPL035C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 486564 486911 . - . transcript_id "YPL035C_mRNA"; gene_id "YPL035C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 486564 486911 . - 0 transcript_id "YPL035C_mRNA"; gene_id "YPL035C"; +chrXVI SGD transcript 486712 487209 . + . transcript_id "YPL034W_id001"; gene_id "YPL034W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 486712 487209 . + 0 transcript_id "YPL034W_id001"; gene_id "YPL034W"; +chrXVI SGD gene 487362 488207 . - . gene_id "YPL033C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 487362 488207 . - . transcript_id "YPL033C_id001"; gene_id "YPL033C"; gene_name "SRL4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 487362 488207 . - 0 transcript_id "YPL033C_id001"; gene_name "SRL4"; gene_id "YPL033C"; +chrXVI SGD gene 488529 491566 . - . gene_id "YPL032C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 488529 491566 . - . transcript_id "YPL032C_id002"; gene_id "YPL032C"; gene_name "SVL3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 488529 491566 . - . transcript_id "YPL032C_id002"; gene_id "YPL032C"; gene_name "SVL3"; +chrXVI SGD transcript 488887 491364 . - . transcript_id "YPL032C_id001"; gene_id "YPL032C"; gene_name "SVL3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 488887 491364 . - 0 transcript_id "YPL032C_id001"; gene_name "SVL3"; gene_id "YPL032C"; +chrXVI SGD gene 491651 493073 . - . gene_id "YPL031C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 491651 493073 . - . transcript_id "YPL031C_id001"; gene_id "YPL031C"; gene_name "PHO85"; transcript_biotype "protein_coding"; +chrXVI SGD exon 491651 493073 . - . transcript_id "YPL031C_id001"; gene_id "YPL031C"; gene_name "PHO85"; +chrXVI SGD transcript 492018 493037 . - . transcript_id "YPL031C_id002"; gene_id "YPL031C"; gene_name "PHO85"; transcript_biotype "protein_coding"; +chrXVI SGD exon 492018 492918 . - 1 transcript_id "YPL031C_id002"; gene_name "PHO85"; gene_id "YPL031C"; +chrXVI SGD exon 493021 493037 . - 0 transcript_id "YPL031C_id002"; gene_name "PHO85"; gene_id "YPL031C"; +chrXVI SGD gene 493487 495343 . + . gene_id "YPL030W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 493487 495343 . + . transcript_id "YPL030W_id004"; gene_id "YPL030W"; gene_name "TRM44"; transcript_biotype "protein_coding"; +chrXVI SGD exon 493487 495343 . + . transcript_id "YPL030W_id004"; gene_id "YPL030W"; gene_name "TRM44"; +chrXVI SGD transcript 493543 495246 . + . transcript_id "YPL030W_id001"; gene_id "YPL030W"; gene_name "TRM44"; transcript_biotype "protein_coding"; +chrXVI SGD exon 493543 495246 . + 0 transcript_id "YPL030W_id001"; gene_name "TRM44"; gene_id "YPL030W"; +chrXVI SGD gene 495460 497790 . + . gene_id "YPL029W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 495460 497790 . + . transcript_id "YPL029W_id002"; gene_id "YPL029W"; gene_name "SUV3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 495460 497790 . + . transcript_id "YPL029W_id002"; gene_id "YPL029W"; gene_name "SUV3"; +chrXVI SGD transcript 495506 497719 . + . transcript_id "YPL029W_id001"; gene_id "YPL029W"; gene_name "SUV3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 495506 497719 . + 0 transcript_id "YPL029W_id001"; gene_name "SUV3"; gene_id "YPL029W"; +chrXVI SGD gene 497945 499392 . + . gene_id "YPL028W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 497945 499392 . + . transcript_id "YPL028W_id005"; gene_id "YPL028W"; gene_name "ERG10"; transcript_biotype "protein_coding"; +chrXVI SGD exon 497945 499392 . + . transcript_id "YPL028W_id005"; gene_id "YPL028W"; gene_name "ERG10"; +chrXVI SGD transcript 498096 499292 . + . transcript_id "YPL028W_id001"; gene_id "YPL028W"; gene_name "ERG10"; transcript_biotype "protein_coding"; +chrXVI SGD exon 498096 499292 . + 0 transcript_id "YPL028W_id001"; gene_name "ERG10"; gene_id "YPL028W"; +chrXVI SGD gene 499665 500402 . + . gene_id "YPL027W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 499665 500402 . + . transcript_id "YPL027W_mRNA"; gene_id "YPL027W"; gene_name "SMA1"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 499665 500402 . + 0 transcript_id "YPL027W_mRNA"; gene_name "SMA1"; gene_id "YPL027W"; +chrXVI SGD gene 500421 502267 . - . gene_id "YPL026C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 500421 502267 . - . transcript_id "YPL026C_id005"; gene_id "YPL026C"; gene_name "SKS1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 500421 502267 . - . transcript_id "YPL026C_id005"; gene_id "YPL026C"; gene_name "SKS1"; +chrXVI SGD transcript 500675 502183 . - . transcript_id "YPL026C_id001"; gene_id "YPL026C"; gene_name "SKS1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 500675 502183 . - 0 transcript_id "YPL026C_id001"; gene_name "SKS1"; gene_id "YPL026C"; +chrXVI SGD gene 502260 503270 . - . gene_id "YPL025C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 502260 503270 . - . transcript_id "YPL025C_id002"; gene_id "YPL025C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 502260 503270 . - . transcript_id "YPL025C_id002"; gene_id "YPL025C"; +chrXVI SGD transcript 502473 503030 . - . transcript_id "YPL025C_id001"; gene_id "YPL025C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 502473 503030 . - 0 transcript_id "YPL025C_id001"; gene_id "YPL025C"; +chrXVI SGD gene 503147 504395 . + . gene_id "YPL024W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 503147 504395 . + . transcript_id "YPL024W_id004"; gene_id "YPL024W"; gene_name "RMI1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 503147 504395 . + . transcript_id "YPL024W_id004"; gene_id "YPL024W"; gene_name "RMI1"; +chrXVI SGD transcript 503517 504242 . + . transcript_id "YPL024W_id001"; gene_id "YPL024W"; gene_name "RMI1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 503517 504242 . + 0 transcript_id "YPL024W_id001"; gene_name "RMI1"; gene_id "YPL024W"; +chrXVI SGD gene 504153 506444 . - . gene_id "YPL023C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 504153 506444 . - . transcript_id "YPL023C_id004"; gene_id "YPL023C"; gene_name "MET12"; transcript_biotype "protein_coding"; +chrXVI SGD exon 504153 506444 . - . transcript_id "YPL023C_id004"; gene_id "YPL023C"; gene_name "MET12"; +chrXVI SGD transcript 504339 506312 . - . transcript_id "YPL023C_id001"; gene_id "YPL023C"; gene_name "MET12"; transcript_biotype "protein_coding"; +chrXVI SGD exon 504339 506312 . - 0 transcript_id "YPL023C_id001"; gene_name "MET12"; gene_id "YPL023C"; +chrXVI SGD gene 506605 510531 . + . gene_id "YPL022W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 506605 510531 . + . transcript_id "YPL022W_id001"; gene_id "YPL022W"; gene_name "RAD1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 506605 510531 . + . transcript_id "YPL022W_id001"; gene_id "YPL022W"; gene_name "RAD1"; +chrXVI SGD transcript 506697 509999 . + . transcript_id "YPL022W_id002"; gene_id "YPL022W"; gene_name "RAD1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 506697 509999 . + 0 transcript_id "YPL022W_id002"; gene_name "RAD1"; gene_id "YPL022W"; +chrXVI SGD gene 511101 511664 . + . gene_id "YPL021W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 511101 511664 . + . transcript_id "YPL021W_mRNA"; gene_id "YPL021W"; gene_name "ECM23"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 511101 511664 . + 0 transcript_id "YPL021W_mRNA"; gene_name "ECM23"; gene_id "YPL021W"; +chrXVI SGD gene 512216 514308 . - . gene_id "YPL020C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 512216 514308 . - . transcript_id "YPL020C_id001"; gene_id "YPL020C"; gene_name "ULP1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 512216 514308 . - . transcript_id "YPL020C_id001"; gene_id "YPL020C"; gene_name "ULP1"; +chrXVI SGD transcript 512313 514178 . - . transcript_id "YPL020C_id002"; gene_id "YPL020C"; gene_name "ULP1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 512313 514178 . - 0 transcript_id "YPL020C_id002"; gene_name "ULP1"; gene_id "YPL020C"; +chrXVI SGD gene 514386 517265 . - . gene_id "YPL019C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 514386 517265 . - . transcript_id "YPL019C_id001"; gene_id "YPL019C"; gene_name "VTC3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 514386 517265 . - . transcript_id "YPL019C_id001"; gene_id "YPL019C"; gene_name "VTC3"; +chrXVI SGD transcript 514511 517018 . - . transcript_id "YPL019C_id004"; gene_id "YPL019C"; gene_name "VTC3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 514511 517018 . - 0 transcript_id "YPL019C_id004"; gene_name "VTC3"; gene_id "YPL019C"; +chrXVI SGD gene 517638 519922 . + . gene_id "YPL018W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 517638 519922 . + . transcript_id "YPL018W_id003"; gene_id "YPL018W"; gene_name "CTF19"; transcript_biotype "protein_coding"; +chrXVI SGD exon 517638 519922 . + . transcript_id "YPL018W_id003"; gene_id "YPL018W"; gene_name "CTF19"; +chrXVI SGD transcript 517651 518760 . + . transcript_id "YPL018W_id001"; gene_id "YPL018W"; gene_name "CTF19"; transcript_biotype "protein_coding"; +chrXVI SGD exon 517651 518760 . + 0 transcript_id "YPL018W_id001"; gene_name "CTF19"; gene_id "YPL018W"; +chrXVI SGD gene 518734 520233 . - . gene_id "YPL017C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 518734 520233 . - . transcript_id "YPL017C_mRNA"; gene_id "YPL017C"; gene_name "IRC15"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 518734 520233 . - 0 transcript_id "YPL017C_mRNA"; gene_name "IRC15"; gene_id "YPL017C"; +chrXVI SGD gene 521014 524958 . + . gene_id "YPL016W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 521014 524958 . + . transcript_id "YPL016W_mRNA"; gene_id "YPL016W"; gene_name "SWI1"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 521014 524958 . + 0 transcript_id "YPL016W_mRNA"; gene_name "SWI1"; gene_id "YPL016W"; +chrXVI SGD gene 525501 527490 . - . gene_id "YPL015C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 525501 527490 . - . transcript_id "YPL015C_id001"; gene_id "YPL015C"; gene_name "HST2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 525501 527490 . - . transcript_id "YPL015C_id001"; gene_id "YPL015C"; gene_name "HST2"; +chrXVI SGD transcript 525810 526883 . - . transcript_id "YPL015C_id002"; gene_id "YPL015C"; gene_name "HST2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 525810 526883 . - 0 transcript_id "YPL015C_id002"; gene_name "HST2"; gene_id "YPL015C"; +chrXVI SGD gene 527431 528948 . + . gene_id "YPL014W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 527431 528948 . + . transcript_id "YPL014W_id002"; gene_id "YPL014W"; gene_name "CIP1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 527431 528948 . + . transcript_id "YPL014W_id002"; gene_id "YPL014W"; gene_name "CIP1"; +chrXVI SGD transcript 527547 528692 . + . transcript_id "YPL014W_id001"; gene_id "YPL014W"; gene_name "CIP1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 527547 528692 . + 0 transcript_id "YPL014W_id001"; gene_name "CIP1"; gene_id "YPL014W"; +chrXVI SGD gene 528656 529402 . - . gene_id "YPL013C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 528656 529402 . - . transcript_id "YPL013C_id001"; gene_id "YPL013C"; gene_name "MRPS16"; transcript_biotype "protein_coding"; +chrXVI SGD exon 528656 529402 . - . transcript_id "YPL013C_id001"; gene_id "YPL013C"; gene_name "MRPS16"; +chrXVI SGD transcript 528985 529350 . - . transcript_id "YPL013C_id006"; gene_id "YPL013C"; gene_name "MRPS16"; transcript_biotype "protein_coding"; +chrXVI SGD exon 528985 529350 . - 0 transcript_id "YPL013C_id006"; gene_name "MRPS16"; gene_id "YPL013C"; +chrXVI SGD gene 529603 533533 . + . gene_id "YPL012W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 529603 533533 . + . transcript_id "YPL012W_id001"; gene_id "YPL012W"; gene_name "RRP12"; transcript_biotype "protein_coding"; +chrXVI SGD exon 529603 533533 . + . transcript_id "YPL012W_id001"; gene_id "YPL012W"; gene_name "RRP12"; +chrXVI SGD transcript 529723 533409 . + . transcript_id "YPL012W_id003"; gene_id "YPL012W"; gene_name "RRP12"; transcript_biotype "protein_coding"; +chrXVI SGD exon 529723 533409 . + 0 transcript_id "YPL012W_id003"; gene_name "RRP12"; gene_id "YPL012W"; +chrXVI SGD gene 533388 534760 . - . gene_id "YPL011C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 533388 534760 . - . transcript_id "YPL011C_id001"; gene_id "YPL011C"; gene_name "TAF3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 533388 534760 . - . transcript_id "YPL011C_id001"; gene_id "YPL011C"; gene_name "TAF3"; +chrXVI SGD transcript 533642 534703 . - . transcript_id "YPL011C_id002"; gene_id "YPL011C"; gene_name "TAF3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 533642 534703 . - 0 transcript_id "YPL011C_id002"; gene_name "TAF3"; gene_id "YPL011C"; +chrXVI SGD gene 534932 535812 . + . gene_id "YPL010W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 534932 535812 . + . transcript_id "YPL010W_id002"; gene_id "YPL010W"; gene_name "RET3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 534932 535812 . + . transcript_id "YPL010W_id002"; gene_id "YPL010W"; gene_name "RET3"; +chrXVI SGD transcript 535018 535587 . + . transcript_id "YPL010W_id001"; gene_id "YPL010W"; gene_name "RET3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 535018 535587 . + 0 transcript_id "YPL010W_id001"; gene_name "RET3"; gene_id "YPL010W"; +chrXVI SGD gene 535820 538936 . - . gene_id "YPL009C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 535820 538936 . - . transcript_id "YPL009C_id001"; gene_id "YPL009C"; gene_name "RQC2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 535820 538936 . - 0 transcript_id "YPL009C_id001"; gene_name "RQC2"; gene_id "YPL009C"; +chrXVI SGD gene 539149 542048 . + . gene_id "YPL008W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 539149 542048 . + . transcript_id "YPL008W_id002"; gene_id "YPL008W"; gene_name "CHL1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 539149 542048 . + . transcript_id "YPL008W_id002"; gene_id "YPL008W"; gene_name "CHL1"; +chrXVI SGD transcript 539385 541970 . + . transcript_id "YPL008W_id001"; gene_id "YPL008W"; gene_name "CHL1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 539385 541970 . + 0 transcript_id "YPL008W_id001"; gene_name "CHL1"; gene_id "YPL008W"; +chrXVI SGD gene 541963 543892 . - . gene_id "YPL007C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 541963 543892 . - . transcript_id "YPL007C_id001"; gene_id "YPL007C"; gene_name "TFC8"; transcript_biotype "protein_coding"; +chrXVI SGD exon 541963 543892 . - . transcript_id "YPL007C_id001"; gene_id "YPL007C"; gene_name "TFC8"; +chrXVI SGD transcript 542082 543848 . - . transcript_id "YPL007C_id002"; gene_id "YPL007C"; gene_name "TFC8"; transcript_biotype "protein_coding"; +chrXVI SGD exon 542082 543848 . - 0 transcript_id "YPL007C_id002"; gene_name "TFC8"; gene_id "YPL007C"; +chrXVI SGD gene 544595 548364 . + . gene_id "YPL006W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 544595 548364 . + . transcript_id "YPL006W_id001"; gene_id "YPL006W"; gene_name "NCR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 544595 548364 . + . transcript_id "YPL006W_id001"; gene_id "YPL006W"; gene_name "NCR1"; +chrXVI SGD transcript 544631 548143 . + . transcript_id "YPL006W_id003"; gene_id "YPL006W"; gene_name "NCR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 544631 548143 . + 0 transcript_id "YPL006W_id003"; gene_name "NCR1"; gene_id "YPL006W"; +chrXVI SGD gene 548477 550412 . + . gene_id "YPL005W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 548477 550412 . + . transcript_id "YPL005W_id002"; gene_id "YPL005W"; gene_name "AEP3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 548477 550412 . + . transcript_id "YPL005W_id002"; gene_id "YPL005W"; gene_name "AEP3"; +chrXVI SGD transcript 548486 550306 . + . transcript_id "YPL005W_id001"; gene_id "YPL005W"; gene_name "AEP3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 548486 550306 . + 0 transcript_id "YPL005W_id001"; gene_name "AEP3"; gene_id "YPL005W"; +chrXVI SGD gene 550308 551706 . - . gene_id "YPL004C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 550308 551706 . - . transcript_id "YPL004C_id005"; gene_id "YPL004C"; gene_name "LSP1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 550308 551706 . - . transcript_id "YPL004C_id005"; gene_id "YPL004C"; gene_name "LSP1"; +chrXVI SGD transcript 550632 551657 . - . transcript_id "YPL004C_id001"; gene_id "YPL004C"; gene_name "LSP1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 550632 551657 . - 0 transcript_id "YPL004C_id001"; gene_name "LSP1"; gene_id "YPL004C"; +chrXVI SGD gene 552008 553510 . + . gene_id "YPL003W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 552008 553510 . + . transcript_id "YPL003W_id001"; gene_id "YPL003W"; gene_name "ULA1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 552008 553510 . + . transcript_id "YPL003W_id001"; gene_id "YPL003W"; gene_name "ULA1"; +chrXVI SGD transcript 552020 553408 . + . transcript_id "YPL003W_id003"; gene_id "YPL003W"; gene_name "ULA1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 552020 553408 . + 0 transcript_id "YPL003W_id003"; gene_name "ULA1"; gene_id "YPL003W"; +chrXVI SGD gene 553259 554393 . - . gene_id "YPL002C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 553259 554393 . - . transcript_id "YPL002C_id002"; gene_id "YPL002C"; gene_name "SNF8"; transcript_biotype "protein_coding"; +chrXVI SGD exon 553259 554393 . - . transcript_id "YPL002C_id002"; gene_id "YPL002C"; gene_name "SNF8"; +chrXVI SGD transcript 553627 554328 . - . transcript_id "YPL002C_id001"; gene_id "YPL002C"; gene_name "SNF8"; transcript_biotype "protein_coding"; +chrXVI SGD exon 553627 554328 . - 0 transcript_id "YPL002C_id001"; gene_name "SNF8"; gene_id "YPL002C"; +chrXVI SGD gene 554549 555783 . + . gene_id "YPL001W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 554549 555783 . + . transcript_id "YPL001W_id001"; gene_id "YPL001W"; gene_name "HAT1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 554549 555783 . + . transcript_id "YPL001W_id001"; gene_id "YPL001W"; gene_name "HAT1"; +chrXVI SGD transcript 554605 555729 . + . transcript_id "YPL001W_id003"; gene_id "YPL001W"; gene_name "HAT1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 554605 555729 . + 0 transcript_id "YPL001W_id003"; gene_name "HAT1"; gene_id "YPL001W"; +chrXVI SGD gene 556377 557837 . + . gene_id "YPR001W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 556377 557837 . + . transcript_id "YPR001W_id001"; gene_id "YPR001W"; gene_name "CIT3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 556377 557837 . + 0 transcript_id "YPR001W_id001"; gene_name "CIT3"; gene_id "YPR001W"; +chrXVI SGD gene 558378 560137 . + . gene_id "YPR002W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 558378 560137 . + . transcript_id "YPR002W_id008"; gene_id "YPR002W"; gene_name "PDH1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 558378 560137 . + . transcript_id "YPR002W_id008"; gene_id "YPR002W"; gene_name "PDH1"; +chrXVI SGD transcript 558385 559935 . + . transcript_id "YPR002W_id001"; gene_id "YPR002W"; gene_name "PDH1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 558385 559935 . + 0 transcript_id "YPR002W_id001"; gene_name "PDH1"; gene_id "YPR002W"; +chrXVI SGD gene 560198 560289 . - . gene_id "YNCP0008C"; gene_biotype "ncRNA"; +chrXVI SGD transcript 560198 560289 . - . transcript_id "YNCP0008C_tRNA"; gene_id "YNCP0008C"; transcript_biotype "ncRNA"; +chrXVI SGD exon 560198 560233 . - . transcript_id "YNCP0008C_tRNA"; gene_id "YNCP0008C"; +chrXVI SGD exon 560253 560289 . - . transcript_id "YNCP0008C_tRNA"; gene_id "YNCP0008C"; +chrXVI SGD gene 560569 560766 . - . gene_id "YPR002C-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 560569 560766 . - . transcript_id "YPR002C-A_id001"; gene_id "YPR002C-A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 560569 560766 . - 0 transcript_id "YPR002C-A_id001"; gene_id "YPR002C-A"; +chrXVI SGD gene 561504 563768 . - . gene_id "YPR003C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 561504 563768 . - . transcript_id "YPR003C_id001"; gene_id "YPR003C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 561504 563768 . - 0 transcript_id "YPR003C_id001"; gene_id "YPR003C"; +chrXVI SGD gene 563876 565092 . - . gene_id "YPR004C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 563876 565092 . - . transcript_id "YPR004C_id001"; gene_id "YPR004C"; gene_name "AIM45"; transcript_biotype "protein_coding"; +chrXVI SGD exon 563876 565092 . - . transcript_id "YPR004C_id001"; gene_id "YPR004C"; gene_name "AIM45"; +chrXVI SGD transcript 564007 565041 . - . transcript_id "YPR004C_id003"; gene_id "YPR004C"; gene_name "AIM45"; transcript_biotype "protein_coding"; +chrXVI SGD exon 564007 565041 . - 0 transcript_id "YPR004C_id003"; gene_name "AIM45"; gene_id "YPR004C"; +chrXVI SGD gene 565475 566882 . - . gene_id "YPR005C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 565475 566882 . - . transcript_id "YPR005C_id005"; gene_id "YPR005C"; gene_name "HAL1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 565475 566882 . - . transcript_id "YPR005C_id005"; gene_id "YPR005C"; gene_name "HAL1"; +chrXVI SGD transcript 565787 566671 . - . transcript_id "YPR005C_id001"; gene_id "YPR005C"; gene_name "HAL1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 565787 566671 . - 0 transcript_id "YPR005C_id001"; gene_name "HAL1"; gene_id "YPR005C"; +chrXVI SGD gene 567269 568996 . - . gene_id "YPR006C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 567269 568996 . - . transcript_id "YPR006C_mRNA"; gene_id "YPR006C"; gene_name "ICL2"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 567269 568996 . - 0 transcript_id "YPR006C_mRNA"; gene_name "ICL2"; gene_id "YPR006C"; +chrXVI SGD gene 569336 571378 . - . gene_id "YPR007C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 569336 571378 . - . transcript_id "YPR007C_mRNA"; gene_id "YPR007C"; gene_name "REC8"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 569336 571378 . - 0 transcript_id "YPR007C_mRNA"; gene_name "REC8"; gene_id "YPR007C"; +chrXVI SGD gene 572269 572339 . + . gene_id "YNCP0009W"; gene_biotype "ncRNA"; +chrXVI SGD transcript 572269 572339 . + . transcript_id "YNCP0009W_tRNA"; gene_id "YNCP0009W"; transcript_biotype "ncRNA"; +chrXVI SGD exon 572269 572339 . + . transcript_id "YNCP0009W_tRNA"; gene_id "YNCP0009W"; +chrXVI SGD gene 572630 575228 . + . gene_id "YPR008W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 572630 575228 . + . transcript_id "YPR008W_id001"; gene_id "YPR008W"; gene_name "HAA1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 572630 575228 . + . transcript_id "YPR008W_id001"; gene_id "YPR008W"; gene_name "HAA1"; +chrXVI SGD transcript 573018 575102 . + . transcript_id "YPR008W_id002"; gene_id "YPR008W"; gene_name "HAA1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 573018 575102 . + 0 transcript_id "YPR008W_id002"; gene_name "HAA1"; gene_id "YPR008W"; +chrXVI SGD gene 576292 577440 . + . gene_id "YPR009W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 576292 577440 . + . transcript_id "YPR009W_id001"; gene_id "YPR009W"; gene_name "SUT2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 576292 577440 . + . transcript_id "YPR009W_id001"; gene_id "YPR009W"; gene_name "SUT2"; +chrXVI SGD transcript 576552 577358 . + . transcript_id "YPR009W_id002"; gene_id "YPR009W"; gene_name "SUT2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 576552 577358 . + 0 transcript_id "YPR009W_id002"; gene_name "SUT2"; gene_id "YPR009W"; +chrXVI SGD gene 577221 581253 . - . gene_id "YPR010C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 577221 581253 . - . transcript_id "YPR010C_id001"; gene_id "YPR010C"; gene_name "RPA135"; transcript_biotype "protein_coding"; +chrXVI SGD exon 577221 581253 . - . transcript_id "YPR010C_id001"; gene_id "YPR010C"; gene_name "RPA135"; +chrXVI SGD transcript 577585 581196 . - . transcript_id "YPR010C_id004"; gene_id "YPR010C"; gene_name "RPA135"; transcript_biotype "protein_coding"; +chrXVI SGD exon 577585 581196 . - 0 transcript_id "YPR010C_id004"; gene_name "RPA135"; gene_id "YPR010C"; +chrXVI SGD gene 582062 582134 . + . gene_id "YNCP0010W"; gene_biotype "ncRNA"; +chrXVI SGD transcript 582062 582134 . + . transcript_id "YNCP0010W_tRNA"; gene_id "YNCP0010W"; transcript_biotype "ncRNA"; +chrXVI SGD exon 582062 582134 . + . transcript_id "YNCP0010W_tRNA"; gene_id "YNCP0010W"; +chrXVI SGD gene 582310 584037 . - . gene_id "YPR010C-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 582310 584037 . - . transcript_id "YPR010C-A_id001"; gene_id "YPR010C-A"; gene_name "MIN8"; transcript_biotype "protein_coding"; +chrXVI SGD exon 582310 584037 . - . transcript_id "YPR010C-A_id001"; gene_id "YPR010C-A"; gene_name "MIN8"; +chrXVI SGD transcript 582373 582734 . - . transcript_id "YPR010C-A_id006"; gene_id "YPR010C-A"; gene_name "MIN8"; transcript_biotype "protein_coding"; +chrXVI SGD exon 582373 582558 . - 0 transcript_id "YPR010C-A_id006"; gene_name "MIN8"; gene_id "YPR010C-A"; +chrXVI SGD exon 582702 582734 . - 0 transcript_id "YPR010C-A_id006"; gene_name "MIN8"; gene_id "YPR010C-A"; +chrXVI SGD gene 582732 584111 . - . gene_id "YPR011C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 582732 584111 . - . transcript_id "YPR011C_id001"; gene_id "YPR011C"; gene_name "MRX21"; transcript_biotype "protein_coding"; +chrXVI SGD exon 582732 584111 . - . transcript_id "YPR011C_id001"; gene_id "YPR011C"; gene_name "MRX21"; +chrXVI SGD transcript 583062 584042 . - . transcript_id "YPR011C_id002"; gene_id "YPR011C"; gene_name "MRX21"; transcript_biotype "protein_coding"; +chrXVI SGD exon 583062 584042 . - 0 transcript_id "YPR011C_id002"; gene_name "MRX21"; gene_id "YPR011C"; +chrXVI SGD gene 584296 584605 . + . gene_id "YPR012W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 584296 584605 . + . transcript_id "YPR012W_id002"; gene_id "YPR012W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 584296 584605 . + . transcript_id "YPR012W_id002"; gene_id "YPR012W"; +chrXVI SGD transcript 584309 584563 . + . transcript_id "YPR012W_id001"; gene_id "YPR012W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 584309 584563 . + 0 transcript_id "YPR012W_id001"; gene_id "YPR012W"; +chrXVI SGD gene 584405 586287 . - . gene_id "YPR013C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 584405 586287 . - . transcript_id "YPR013C_id002"; gene_id "YPR013C"; gene_name "CMR3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 584405 586287 . - . transcript_id "YPR013C_id002"; gene_id "YPR013C"; gene_name "CMR3"; +chrXVI SGD transcript 584632 585585 . - . transcript_id "YPR013C_id001"; gene_id "YPR013C"; gene_name "CMR3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 584632 585585 . - 0 transcript_id "YPR013C_id001"; gene_name "CMR3"; gene_id "YPR013C"; +chrXVI SGD gene 587189 587518 . - . gene_id "YPR014C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 587189 587518 . - . transcript_id "YPR014C_mRNA"; gene_id "YPR014C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 587189 587518 . - 0 transcript_id "YPR014C_mRNA"; gene_id "YPR014C"; +chrXVI SGD gene 590283 591026 . - . gene_id "YPR015C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 590283 591026 . - . transcript_id "YPR015C_id001"; gene_id "YPR015C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 590283 591026 . - 0 transcript_id "YPR015C_id001"; gene_id "YPR015C"; +chrXVI SGD gene 591679 593161 . - . gene_id "YPR016C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 591679 593161 . - . transcript_id "YPR016C_id002"; gene_id "YPR016C"; gene_name "TIF6"; transcript_biotype "protein_coding"; +chrXVI SGD exon 591679 593161 . - . transcript_id "YPR016C_id002"; gene_id "YPR016C"; gene_name "TIF6"; +chrXVI SGD transcript 592332 593069 . - . transcript_id "YPR016C_id001"; gene_id "YPR016C"; gene_name "TIF6"; transcript_biotype "protein_coding"; +chrXVI SGD exon 592332 593069 . - 0 transcript_id "YPR016C_id001"; gene_name "TIF6"; gene_id "YPR016C"; +chrXVI SGD gene 593096 593356 . + . gene_id "YPR016W-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 593096 593356 . + . transcript_id "YPR016W-A_mRNA"; gene_id "YPR016W-A"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 593096 593356 . + 0 transcript_id "YPR016W-A_mRNA"; gene_id "YPR016W-A"; +chrXVI SGD gene 593231 594175 . - . gene_id "YPR017C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 593231 594175 . - . transcript_id "YPR017C_id001"; gene_id "YPR017C"; gene_name "DSS4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 593231 594175 . - . transcript_id "YPR017C_id001"; gene_id "YPR017C"; gene_name "DSS4"; +chrXVI SGD transcript 593486 593917 . - . transcript_id "YPR017C_id003"; gene_id "YPR017C"; gene_name "DSS4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 593486 593917 . - 0 transcript_id "YPR017C_id003"; gene_name "DSS4"; gene_id "YPR017C"; +chrXVI SGD gene 594403 596693 . + . gene_id "YPR018W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 594403 596693 . + . transcript_id "YPR018W_id001"; gene_id "YPR018W"; gene_name "RLF2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 594403 596693 . + . transcript_id "YPR018W_id001"; gene_id "YPR018W"; gene_name "RLF2"; +chrXVI SGD transcript 594476 596296 . + . transcript_id "YPR018W_id003"; gene_id "YPR018W"; gene_name "RLF2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 594476 596296 . + 0 transcript_id "YPR018W_id003"; gene_name "RLF2"; gene_id "YPR018W"; +chrXVI SGD gene 596750 599551 . + . gene_id "YPR019W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 596750 599551 . + . transcript_id "YPR019W_id001"; gene_id "YPR019W"; gene_name "MCM4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 596750 599551 . + 0 transcript_id "YPR019W_id001"; gene_name "MCM4"; gene_id "YPR019W"; +chrXVI SGD gene 599821 600444 . + . gene_id "YPR020W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 599821 600444 . + . transcript_id "YPR020W_id006"; gene_id "YPR020W"; gene_name "ATP20"; transcript_biotype "protein_coding"; +chrXVI SGD exon 599821 600444 . + . transcript_id "YPR020W_id006"; gene_id "YPR020W"; gene_name "ATP20"; +chrXVI SGD transcript 599870 600217 . + . transcript_id "YPR020W_id001"; gene_id "YPR020W"; gene_name "ATP20"; transcript_biotype "protein_coding"; +chrXVI SGD exon 599870 600217 . + 0 transcript_id "YPR020W_id001"; gene_name "ATP20"; gene_id "YPR020W"; +chrXVI SGD gene 600649 603357 . - . gene_id "YPR021C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 600649 603357 . - . transcript_id "YPR021C_mRNA"; gene_id "YPR021C"; gene_name "AGC1"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 600649 603357 . - 0 transcript_id "YPR021C_mRNA"; gene_name "AGC1"; gene_id "YPR021C"; +chrXVI SGD gene 603911 607312 . - . gene_id "YPR022C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 603911 607312 . - . transcript_id "YPR022C_mRNA"; gene_id "YPR022C"; gene_name "SDD4"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 603911 607312 . - 0 transcript_id "YPR022C_mRNA"; gene_name "SDD4"; gene_id "YPR022C"; +chrXVI SGD gene 608388 610043 . - . gene_id "YPR023C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 608388 610043 . - . transcript_id "YPR023C_id002"; gene_id "YPR023C"; gene_name "EAF3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 608388 610043 . - . transcript_id "YPR023C_id002"; gene_id "YPR023C"; gene_name "EAF3"; +chrXVI SGD transcript 608826 610031 . - . transcript_id "YPR023C_id001"; gene_id "YPR023C"; gene_name "EAF3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 608826 610031 . - 0 transcript_id "YPR023C_id001"; gene_name "EAF3"; gene_id "YPR023C"; +chrXVI SGD gene 610297 613259 . + . gene_id "YPR024W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 610297 613259 . + . transcript_id "YPR024W_id001"; gene_id "YPR024W"; gene_name "YME1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 610297 613259 . + . transcript_id "YPR024W_id001"; gene_id "YPR024W"; gene_name "YME1"; +chrXVI SGD transcript 610481 612724 . + . transcript_id "YPR024W_id004"; gene_id "YPR024W"; gene_name "YME1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 610481 612724 . + 0 transcript_id "YPR024W_id004"; gene_name "YME1"; gene_id "YPR024W"; +chrXVI SGD gene 613248 615096 . - . gene_id "YPR025C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 613248 615096 . - . transcript_id "YPR025C_id002"; gene_id "YPR025C"; gene_name "CCL1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 613248 615096 . - . transcript_id "YPR025C_id002"; gene_id "YPR025C"; gene_name "CCL1"; +chrXVI SGD transcript 613377 614558 . - . transcript_id "YPR025C_id001"; gene_id "YPR025C"; gene_name "CCL1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 613377 614558 . - 0 transcript_id "YPR025C_id001"; gene_name "CCL1"; gene_id "YPR025C"; +chrXVI SGD gene 615379 619014 . + . gene_id "YPR026W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 615379 619014 . + . transcript_id "YPR026W_mRNA"; gene_id "YPR026W"; gene_name "ATH1"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 615379 619014 . + 0 transcript_id "YPR026W_mRNA"; gene_name "ATH1"; gene_id "YPR026W"; +chrXVI SGD gene 620425 621258 . - . gene_id "YPR027C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 620425 621258 . - . transcript_id "YPR027C_mRNA"; gene_id "YPR027C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 620425 621258 . - 0 transcript_id "YPR027C_mRNA"; gene_id "YPR027C"; +chrXVI SGD gene 622540 622631 . - . gene_id "YNCP0011C"; gene_biotype "ncRNA"; +chrXVI SGD transcript 622540 622631 . - . transcript_id "YNCP0011C_tRNA"; gene_id "YNCP0011C"; transcript_biotype "ncRNA"; +chrXVI SGD exon 622540 622575 . - . transcript_id "YNCP0011C_tRNA"; gene_id "YNCP0011C"; +chrXVI SGD exon 622595 622631 . - . transcript_id "YNCP0011C_tRNA"; gene_id "YNCP0011C"; +chrXVI SGD gene 622809 624351 . + . gene_id "YPR028W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 622809 624351 . + . transcript_id "YPR028W_id001"; gene_id "YPR028W"; gene_name "YOP1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 622809 624351 . + . transcript_id "YPR028W_id001"; gene_id "YPR028W"; gene_name "YOP1"; +chrXVI SGD transcript 623527 624202 . + . transcript_id "YPR028W_id002"; gene_id "YPR028W"; gene_name "YOP1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 623527 623577 . + 0 transcript_id "YPR028W_id002"; gene_name "YOP1"; gene_id "YPR028W"; +chrXVI SGD exon 623711 624202 . + 0 transcript_id "YPR028W_id002"; gene_name "YOP1"; gene_id "YPR028W"; +chrXVI SGD gene 624221 627028 . - . gene_id "YPR029C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 624221 627028 . - . transcript_id "YPR029C_id001"; gene_id "YPR029C"; gene_name "APL4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 624221 627028 . - . transcript_id "YPR029C_id001"; gene_id "YPR029C"; gene_name "APL4"; +chrXVI SGD transcript 624469 626967 . - . transcript_id "YPR029C_id009"; gene_id "YPR029C"; gene_name "APL4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 624469 626967 . - 0 transcript_id "YPR029C_id009"; gene_name "APL4"; gene_id "YPR029C"; +chrXVI SGD gene 627880 631245 . + . gene_id "YPR030W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 627880 631245 . + . transcript_id "YPR030W_id001"; gene_id "YPR030W"; gene_name "CSR2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 627880 631245 . + 0 transcript_id "YPR030W_id001"; gene_name "CSR2"; gene_id "YPR030W"; +chrXVI SGD gene 631515 633761 . + . gene_id "YPR031W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 631515 633761 . + . transcript_id "YPR031W_mRNA"; gene_id "YPR031W"; gene_name "NTO1"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 631515 633761 . + 0 transcript_id "YPR031W_mRNA"; gene_name "NTO1"; gene_id "YPR031W"; +chrXVI SGD gene 634123 637224 . + . gene_id "YPR032W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 634123 637224 . + . transcript_id "YPR032W_mRNA"; gene_id "YPR032W"; gene_name "SRO7"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 634123 637224 . + 0 transcript_id "YPR032W_mRNA"; gene_name "SRO7"; gene_id "YPR032W"; +chrXVI SGD gene 637255 639064 . - . gene_id "YPR033C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 637255 639064 . - . transcript_id "YPR033C_id003"; gene_id "YPR033C"; gene_name "HTS1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 637255 639064 . - . transcript_id "YPR033C_id003"; gene_id "YPR033C"; gene_name "HTS1"; +chrXVI SGD transcript 637379 639019 . - . transcript_id "YPR033C_id001"; gene_id "YPR033C"; gene_name "HTS1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 637379 639019 . - 0 transcript_id "YPR033C_id001"; gene_name "HTS1"; gene_id "YPR033C"; +chrXVI SGD gene 639229 641215 . + . gene_id "YPR034W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 639229 641215 . + . transcript_id "YPR034W_id001"; gene_id "YPR034W"; gene_name "ARP7"; transcript_biotype "protein_coding"; +chrXVI SGD exon 639229 641215 . + . transcript_id "YPR034W_id001"; gene_id "YPR034W"; gene_name "ARP7"; +chrXVI SGD transcript 639525 640958 . + . transcript_id "YPR034W_id004"; gene_id "YPR034W"; gene_name "ARP7"; transcript_biotype "protein_coding"; +chrXVI SGD exon 639525 640958 . + 0 transcript_id "YPR034W_id004"; gene_name "ARP7"; gene_id "YPR034W"; +chrXVI SGD gene 642015 643538 . + . gene_id "YPR035W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 642015 643538 . + . transcript_id "YPR035W_id001"; gene_id "YPR035W"; gene_name "GLN1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 642015 643538 . + . transcript_id "YPR035W_id001"; gene_id "YPR035W"; gene_name "GLN1"; +chrXVI SGD transcript 642208 643320 . + . transcript_id "YPR035W_id002"; gene_id "YPR035W"; gene_name "GLN1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 642208 643320 . + 0 transcript_id "YPR035W_id002"; gene_name "GLN1"; gene_id "YPR035W"; +chrXVI SGD gene 643627 645372 . + . gene_id "YPR036W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 643627 645372 . + . transcript_id "YPR036W_id001"; gene_id "YPR036W"; gene_name "VMA13"; transcript_biotype "protein_coding"; +chrXVI SGD exon 643627 645372 . + . transcript_id "YPR036W_id001"; gene_id "YPR036W"; gene_name "VMA13"; +chrXVI SGD transcript 643836 645272 . + . transcript_id "YPR036W_id004"; gene_id "YPR036W"; gene_name "VMA13"; transcript_biotype "protein_coding"; +chrXVI SGD exon 643836 645272 . + 0 transcript_id "YPR036W_id004"; gene_name "VMA13"; gene_id "YPR036W"; +chrXVI SGD gene 645607 646418 . + . gene_id "YPR036W-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 645607 646418 . + . transcript_id "YPR036W-A_id001"; gene_id "YPR036W-A"; gene_name "SPO24"; transcript_biotype "protein_coding"; +chrXVI SGD exon 645607 646418 . + . transcript_id "YPR036W-A_id001"; gene_id "YPR036W-A"; gene_name "SPO24"; +chrXVI SGD transcript 645950 646153 . + . transcript_id "YPR036W-A_id004"; gene_id "YPR036W-A"; gene_name "SPO24"; transcript_biotype "protein_coding"; +chrXVI SGD exon 645950 646153 . + 0 transcript_id "YPR036W-A_id004"; gene_name "SPO24"; gene_id "YPR036W-A"; +chrXVI SGD gene 646369 648402 . - . gene_id "YPR037C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 646369 648402 . - . transcript_id "YPR037C_id001"; gene_id "YPR037C"; gene_name "ERV2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 646369 648402 . - . transcript_id "YPR037C_id001"; gene_id "YPR037C"; gene_name "ERV2"; +chrXVI SGD transcript 646448 647038 . - . transcript_id "YPR037C_id002"; gene_id "YPR037C"; gene_name "ERV2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 646448 647038 . - 0 transcript_id "YPR037C_id002"; gene_name "ERV2"; gene_id "YPR037C"; +chrXVI SGD gene 646836 647195 . + . gene_id "YPR038W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 646836 647195 . + . transcript_id "YPR038W_mRNA"; gene_id "YPR038W"; gene_name "IRC16"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 646836 647195 . + 0 transcript_id "YPR038W_mRNA"; gene_name "IRC16"; gene_id "YPR038W"; +chrXVI SGD gene 647012 647347 . + . gene_id "YPR039W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 647012 647347 . + . transcript_id "YPR039W_mRNA"; gene_id "YPR039W"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 647012 647347 . + 0 transcript_id "YPR039W_mRNA"; gene_id "YPR039W"; +chrXVI SGD gene 647275 648509 . + . gene_id "YPR040W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 647275 648509 . + . transcript_id "YPR040W_id001"; gene_id "YPR040W"; gene_name "TIP41"; transcript_biotype "protein_coding"; +chrXVI SGD exon 647275 648509 . + . transcript_id "YPR040W_id001"; gene_id "YPR040W"; gene_name "TIP41"; +chrXVI SGD transcript 647305 648375 . + . transcript_id "YPR040W_id002"; gene_id "YPR040W"; gene_name "TIP41"; transcript_biotype "protein_coding"; +chrXVI SGD exon 647305 648375 . + 0 transcript_id "YPR040W_id002"; gene_name "TIP41"; gene_id "YPR040W"; +chrXVI SGD gene 648597 650166 . + . gene_id "YPR041W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 648597 650166 . + . transcript_id "YPR041W_id002"; gene_id "YPR041W"; gene_name "TIF5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 648597 650166 . + . transcript_id "YPR041W_id002"; gene_id "YPR041W"; gene_name "TIF5"; +chrXVI SGD transcript 648704 649921 . + . transcript_id "YPR041W_id001"; gene_id "YPR041W"; gene_name "TIF5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 648704 649921 . + 0 transcript_id "YPR041W_id001"; gene_name "TIF5"; gene_id "YPR041W"; +chrXVI SGD gene 649918 654916 . + . gene_id "YPR043W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 649918 654916 . + . transcript_id "YPR043W_id001"; gene_id "YPR043W"; gene_name "RPL43A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 649918 654916 . + . transcript_id "YPR043W_id001"; gene_id "YPR043W"; gene_name "RPL43A"; +chrXVI SGD gene 650435 653662 . - . gene_id "YPR042C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 650435 653662 . - . transcript_id "YPR042C_mRNA"; gene_id "YPR042C"; gene_name "PUF2"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 650435 653662 . - 0 transcript_id "YPR042C_mRNA"; gene_name "PUF2"; gene_id "YPR042C"; +chrXVI SGD transcript 654166 654847 . + . transcript_id "YPR043W_id003"; gene_id "YPR043W"; gene_name "RPL43A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 654166 654167 . + 0 transcript_id "YPR043W_id003"; gene_name "RPL43A"; gene_id "YPR043W"; +chrXVI SGD exon 654571 654847 . + 1 transcript_id "YPR043W_id003"; gene_name "RPL43A"; gene_id "YPR043W"; +chrXVI SGD gene 654524 654877 . - . gene_id "YPR044C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 654524 654877 . - . transcript_id "YPR044C_mRNA"; gene_id "YPR044C"; gene_name "OPI11"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 654524 654877 . - 0 transcript_id "YPR044C_mRNA"; gene_name "OPI11"; gene_id "YPR044C"; +chrXVI SGD gene 655025 656610 . - . gene_id "YPR045C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 655025 656610 . - . transcript_id "YPR045C_id003"; gene_id "YPR045C"; gene_name "THP3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 655025 656610 . - . transcript_id "YPR045C_id003"; gene_id "YPR045C"; gene_name "THP3"; +chrXVI SGD transcript 655140 656552 . - . transcript_id "YPR045C_id001"; gene_id "YPR045C"; gene_name "THP3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 655140 656552 . - 0 transcript_id "YPR045C_id001"; gene_name "THP3"; gene_id "YPR045C"; +chrXVI SGD gene 656393 657436 . + . gene_id "YPR046W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 656393 657436 . + . transcript_id "YPR046W_id001"; gene_id "YPR046W"; gene_name "MCM16"; transcript_biotype "protein_coding"; +chrXVI SGD exon 656393 657436 . + . transcript_id "YPR046W_id001"; gene_id "YPR046W"; gene_name "MCM16"; +chrXVI SGD transcript 656799 657344 . + . transcript_id "YPR046W_id009"; gene_id "YPR046W"; gene_name "MCM16"; transcript_biotype "protein_coding"; +chrXVI SGD exon 656799 657344 . + 0 transcript_id "YPR046W_id009"; gene_name "MCM16"; gene_id "YPR046W"; +chrXVI SGD gene 657469 659042 . + . gene_id "YPR047W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 657469 659042 . + . transcript_id "YPR047W_id003"; gene_id "YPR047W"; gene_name "MSF1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 657469 659042 . + . transcript_id "YPR047W_id003"; gene_id "YPR047W"; gene_name "MSF1"; +chrXVI SGD transcript 657529 658938 . + . transcript_id "YPR047W_id001"; gene_id "YPR047W"; gene_name "MSF1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 657529 658938 . + 0 transcript_id "YPR047W_id001"; gene_name "MSF1"; gene_id "YPR047W"; +chrXVI SGD gene 659157 661242 . + . gene_id "YPR048W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 659157 661242 . + . transcript_id "YPR048W_id001"; gene_id "YPR048W"; gene_name "TAH18"; transcript_biotype "protein_coding"; +chrXVI SGD exon 659157 661242 . + . transcript_id "YPR048W_id001"; gene_id "YPR048W"; gene_name "TAH18"; +chrXVI SGD transcript 659182 661053 . + . transcript_id "YPR048W_id006"; gene_id "YPR048W"; gene_name "TAH18"; transcript_biotype "protein_coding"; +chrXVI SGD exon 659182 661053 . + 0 transcript_id "YPR048W_id006"; gene_name "TAH18"; gene_id "YPR048W"; +chrXVI SGD gene 661137 664673 . - . gene_id "YPR049C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 661137 664673 . - . transcript_id "YPR049C_id001"; gene_id "YPR049C"; gene_name "ATG11"; transcript_biotype "protein_coding"; +chrXVI SGD exon 661137 664673 . - 0 transcript_id "YPR049C_id001"; gene_name "ATG11"; gene_id "YPR049C"; +chrXVI SGD gene 664930 665759 . + . gene_id "YPR051W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 664930 665759 . + . transcript_id "YPR051W_id001"; gene_id "YPR051W"; gene_name "MAK3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 664930 665759 . + . transcript_id "YPR051W_id001"; gene_id "YPR051W"; gene_name "MAK3"; +chrXVI SGD gene 664953 665366 . - . gene_id "YPR050C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 664953 665366 . - . transcript_id "YPR050C_mRNA"; gene_id "YPR050C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 664953 665366 . - 0 transcript_id "YPR050C_mRNA"; gene_id "YPR050C"; +chrXVI SGD transcript 664960 665490 . + . transcript_id "YPR051W_id004"; gene_id "YPR051W"; gene_name "MAK3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 664960 665490 . + 0 transcript_id "YPR051W_id004"; gene_name "MAK3"; gene_id "YPR051W"; +chrXVI SGD gene 665437 666038 . - . gene_id "YPR052C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 665437 666038 . - . transcript_id "YPR052C_id003"; gene_id "YPR052C"; gene_name "NHP6A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 665437 666038 . - . transcript_id "YPR052C_id003"; gene_id "YPR052C"; gene_name "NHP6A"; +chrXVI SGD transcript 665693 665974 . - . transcript_id "YPR052C_id001"; gene_id "YPR052C"; gene_name "NHP6A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 665693 665974 . - 0 transcript_id "YPR052C_id001"; gene_name "NHP6A"; gene_id "YPR052C"; +chrXVI SGD gene 665788 666243 . - . gene_id "YPR053C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 665788 666243 . - . transcript_id "YPR053C_mRNA"; gene_id "YPR053C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 665788 666243 . - 0 transcript_id "YPR053C_mRNA"; gene_id "YPR053C"; +chrXVI SGD gene 666280 667446 . + . gene_id "YPR054W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 666280 667446 . + . transcript_id "YPR054W_id001"; gene_id "YPR054W"; gene_name "SMK1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 666280 667446 . + 0 transcript_id "YPR054W_id001"; gene_name "SMK1"; gene_id "YPR054W"; +chrXVI SGD gene 667676 670873 . + . gene_id "YPR055W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 667676 670873 . + . transcript_id "YPR055W_mRNA"; gene_id "YPR055W"; gene_name "SEC8"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 667676 670873 . + 0 transcript_id "YPR055W_mRNA"; gene_name "SEC8"; gene_id "YPR055W"; +chrXVI SGD gene 671095 673335 . + . gene_id "YPR056W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 671095 673335 . + . transcript_id "YPR056W_id001"; gene_id "YPR056W"; gene_name "TFB4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 671095 673335 . + . transcript_id "YPR056W_id001"; gene_id "YPR056W"; gene_name "TFB4"; +chrXVI SGD transcript 671126 672142 . + . transcript_id "YPR056W_id002"; gene_id "YPR056W"; gene_name "TFB4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 671126 672142 . + 0 transcript_id "YPR056W_id002"; gene_name "TFB4"; gene_id "YPR056W"; +chrXVI SGD gene 671990 673553 . + . gene_id "YPR057W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 671990 673553 . + . transcript_id "YPR057W_id001"; gene_id "YPR057W"; gene_name "BRR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 671990 673553 . + . transcript_id "YPR057W_id001"; gene_id "YPR057W"; gene_name "BRR1"; +chrXVI SGD transcript 672471 673496 . + . transcript_id "YPR057W_id003"; gene_id "YPR057W"; gene_name "BRR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 672471 673496 . + 0 transcript_id "YPR057W_id003"; gene_name "BRR1"; gene_id "YPR057W"; +chrXVI SGD gene 673664 674942 . + . gene_id "YPR058W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 673664 674942 . + . transcript_id "YPR058W_id002"; gene_id "YPR058W"; gene_name "YMC1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 673664 674942 . + . transcript_id "YPR058W_id002"; gene_id "YPR058W"; gene_name "YMC1"; +chrXVI SGD transcript 673751 674674 . + . transcript_id "YPR058W_id001"; gene_id "YPR058W"; gene_name "YMC1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 673751 674674 . + 0 transcript_id "YPR058W_id001"; gene_name "YMC1"; gene_id "YPR058W"; +chrXVI SGD gene 674314 674700 . - . gene_id "YPR059C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 674314 674700 . - . transcript_id "YPR059C_mRNA"; gene_id "YPR059C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 674314 674700 . - 0 transcript_id "YPR059C_mRNA"; gene_id "YPR059C"; +chrXVI SGD gene 674648 675724 . - . gene_id "YPR060C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 674648 675724 . - . transcript_id "YPR060C_id002"; gene_id "YPR060C"; gene_name "ARO7"; transcript_biotype "protein_coding"; +chrXVI SGD exon 674648 675724 . - . transcript_id "YPR060C_id002"; gene_id "YPR060C"; gene_name "ARO7"; +chrXVI SGD transcript 674861 675631 . - . transcript_id "YPR060C_id001"; gene_id "YPR060C"; gene_name "ARO7"; transcript_biotype "protein_coding"; +chrXVI SGD exon 674861 675631 . - 0 transcript_id "YPR060C_id001"; gene_name "ARO7"; gene_id "YPR060C"; +chrXVI SGD gene 675860 676953 . - . gene_id "YPR061C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 675860 676953 . - . transcript_id "YPR061C_id005"; gene_id "YPR061C"; gene_name "JID1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 675860 676953 . - . transcript_id "YPR061C_id005"; gene_id "YPR061C"; gene_name "JID1"; +chrXVI SGD transcript 675977 676882 . - . transcript_id "YPR061C_id001"; gene_id "YPR061C"; gene_name "JID1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 675977 676882 . - 0 transcript_id "YPR061C_id001"; gene_name "JID1"; gene_id "YPR061C"; +chrXVI SGD gene 677136 677886 . + . gene_id "YPR062W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 677136 677886 . + . transcript_id "YPR062W_id001"; gene_id "YPR062W"; gene_name "FCY1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 677136 677886 . + . transcript_id "YPR062W_id001"; gene_id "YPR062W"; gene_name "FCY1"; +chrXVI SGD transcript 677165 677641 . + . transcript_id "YPR062W_id002"; gene_id "YPR062W"; gene_name "FCY1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 677165 677641 . + 0 transcript_id "YPR062W_id002"; gene_name "FCY1"; gene_id "YPR062W"; +chrXVI SGD gene 677563 678696 . - . gene_id "YPR063C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 677563 678696 . - . transcript_id "YPR063C_id001"; gene_id "YPR063C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 677563 678696 . - . transcript_id "YPR063C_id001"; gene_id "YPR063C"; +chrXVI SGD transcript 677812 678320 . - . transcript_id "YPR063C_id005"; gene_id "YPR063C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 677812 678193 . - 1 transcript_id "YPR063C_id005"; gene_id "YPR063C"; +chrXVI SGD exon 678280 678320 . - 0 transcript_id "YPR063C_id005"; gene_id "YPR063C"; +chrXVI SGD gene 678951 679370 . + . gene_id "YPR064W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 678951 679370 . + . transcript_id "YPR064W_id001"; gene_id "YPR064W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 678951 679370 . + 0 transcript_id "YPR064W_id001"; gene_id "YPR064W"; +chrXVI SGD gene 679529 681135 . + . gene_id "YPR065W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 679529 681135 . + . transcript_id "YPR065W_id002"; gene_id "YPR065W"; gene_name "ROX1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 679529 681135 . + . transcript_id "YPR065W_id002"; gene_id "YPR065W"; gene_name "ROX1"; +chrXVI SGD transcript 679693 680799 . + . transcript_id "YPR065W_id001"; gene_id "YPR065W"; gene_name "ROX1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 679693 680799 . + 0 transcript_id "YPR065W_id001"; gene_name "ROX1"; gene_id "YPR065W"; +chrXVI SGD gene 681206 682472 . + . gene_id "YPR066W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 681206 682472 . + . transcript_id "YPR066W_id001"; gene_id "YPR066W"; gene_name "UBA3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 681206 682472 . + . transcript_id "YPR066W_id001"; gene_id "YPR066W"; gene_name "UBA3"; +chrXVI SGD transcript 681213 682112 . + . transcript_id "YPR066W_id002"; gene_id "YPR066W"; gene_name "UBA3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 681213 682112 . + 0 transcript_id "YPR066W_id002"; gene_name "UBA3"; gene_id "YPR066W"; +chrXVI SGD gene 681608 682926 . + . gene_id "YPR067W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 681608 682926 . + . transcript_id "YPR067W_id004"; gene_id "YPR067W"; gene_name "ISA2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 681608 682926 . + . transcript_id "YPR067W_id004"; gene_id "YPR067W"; gene_name "ISA2"; +chrXVI SGD transcript 682220 682777 . + . transcript_id "YPR067W_id001"; gene_id "YPR067W"; gene_name "ISA2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 682220 682777 . + 0 transcript_id "YPR067W_id001"; gene_name "ISA2"; gene_id "YPR067W"; +chrXVI SGD gene 682757 684401 . - . gene_id "YPR068C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 682757 684401 . - . transcript_id "YPR068C_id001"; gene_id "YPR068C"; gene_name "HOS1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 682757 684401 . - . transcript_id "YPR068C_id001"; gene_id "YPR068C"; gene_name "HOS1"; +chrXVI SGD transcript 682941 684353 . - . transcript_id "YPR068C_id004"; gene_id "YPR068C"; gene_name "HOS1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 682941 684353 . - 0 transcript_id "YPR068C_id004"; gene_name "HOS1"; gene_id "YPR068C"; +chrXVI SGD gene 684492 685695 . - . gene_id "YPR069C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 684492 685695 . - . transcript_id "YPR069C_id001"; gene_id "YPR069C"; gene_name "SPE3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 684492 685695 . - . transcript_id "YPR069C_id001"; gene_id "YPR069C"; gene_name "SPE3"; +chrXVI SGD transcript 684556 685437 . - . transcript_id "YPR069C_id002"; gene_id "YPR069C"; gene_name "SPE3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 684556 685437 . - 0 transcript_id "YPR069C_id002"; gene_name "SPE3"; gene_id "YPR069C"; +chrXVI SGD gene 685623 687924 . + . gene_id "YPR070W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 685623 687924 . + . transcript_id "YPR070W_id001"; gene_id "YPR070W"; gene_name "MED1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 685623 687924 . + . transcript_id "YPR070W_id001"; gene_id "YPR070W"; gene_name "MED1"; +chrXVI SGD transcript 685898 687598 . + . transcript_id "YPR070W_id002"; gene_id "YPR070W"; gene_name "MED1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 685898 687598 . + 0 transcript_id "YPR070W_id002"; gene_name "MED1"; gene_id "YPR070W"; +chrXVI SGD gene 688145 689438 . + . gene_id "YPR071W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 688145 689438 . + . transcript_id "YPR071W_id002"; gene_id "YPR071W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 688145 689438 . + . transcript_id "YPR071W_id002"; gene_id "YPR071W"; +chrXVI SGD transcript 688172 688807 . + . transcript_id "YPR071W_id001"; gene_id "YPR071W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 688172 688807 . + 0 transcript_id "YPR071W_id001"; gene_id "YPR071W"; +chrXVI SGD gene 689565 689646 . + . gene_id "YNCP0012W"; gene_biotype "ncRNA"; +chrXVI SGD transcript 689565 689646 . + . transcript_id "YNCP0012W_tRNA"; gene_id "YNCP0012W"; gene_name "SUP16"; transcript_biotype "ncRNA"; +chrXVI SGD exon 689565 689646 . + . transcript_id "YNCP0012W_tRNA"; gene_name "SUP16"; gene_id "YNCP0012W"; +chrXVI SGD gene 690000 691963 . + . gene_id "YPR072W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 690000 691963 . + . transcript_id "YPR072W_id001"; gene_id "YPR072W"; gene_name "NOT5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 690000 691963 . + . transcript_id "YPR072W_id001"; gene_id "YPR072W"; gene_name "NOT5"; +chrXVI SGD transcript 690107 691789 . + . transcript_id "YPR072W_id003"; gene_id "YPR072W"; gene_name "NOT5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 690107 691789 . + 0 transcript_id "YPR072W_id003"; gene_name "NOT5"; gene_id "YPR072W"; +chrXVI SGD gene 691514 692466 . - . gene_id "YPR073C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 691514 692466 . - . transcript_id "YPR073C_id002"; gene_id "YPR073C"; gene_name "LTP1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 691514 692466 . - . transcript_id "YPR073C_id002"; gene_id "YPR073C"; gene_name "LTP1"; +chrXVI SGD transcript 691933 692418 . - . transcript_id "YPR073C_id001"; gene_id "YPR073C"; gene_name "LTP1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 691933 692418 . - 0 transcript_id "YPR073C_id001"; gene_name "LTP1"; gene_id "YPR073C"; +chrXVI SGD gene 692649 694963 . - . gene_id "YPR074C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 692649 694963 . - . transcript_id "YPR074C_id001"; gene_id "YPR074C"; gene_name "TKL1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 692649 694963 . - . transcript_id "YPR074C_id001"; gene_id "YPR074C"; gene_name "TKL1"; +chrXVI SGD transcript 692796 694838 . - . transcript_id "YPR074C_id002"; gene_id "YPR074C"; gene_name "TKL1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 692796 694838 . - 0 transcript_id "YPR074C_id002"; gene_name "TKL1"; gene_id "YPR074C"; +chrXVI SGD gene 695018 695188 . + . gene_id "YPR074W-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 695018 695188 . + . transcript_id "YPR074W-A_mRNA"; gene_id "YPR074W-A"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 695018 695188 . + 0 transcript_id "YPR074W-A_mRNA"; gene_id "YPR074W-A"; +chrXVI SGD gene 695737 696819 . - . gene_id "YPR075C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 695737 696819 . - . transcript_id "YPR075C_id001"; gene_id "YPR075C"; gene_name "OPY2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 695737 696819 . - 0 transcript_id "YPR075C_id001"; gene_name "OPY2"; gene_id "YPR075C"; +chrXVI SGD gene 696476 696850 . + . gene_id "YPR076W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 696476 696850 . + . transcript_id "YPR076W_mRNA"; gene_id "YPR076W"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 696476 696850 . + 0 transcript_id "YPR076W_mRNA"; gene_id "YPR076W"; +chrXVI SGD gene 697131 697502 . - . gene_id "YPR077C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 697131 697502 . - . transcript_id "YPR077C_mRNA"; gene_id "YPR077C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 697131 697502 . - 0 transcript_id "YPR077C_mRNA"; gene_id "YPR077C"; +chrXVI SGD gene 697147 698265 . - . gene_id "YPR078C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 697147 698265 . - . transcript_id "YPR078C_mRNA"; gene_id "YPR078C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 697147 698265 . - 0 transcript_id "YPR078C_mRNA"; gene_id "YPR078C"; +chrXVI SGD gene 698772 700117 . + . gene_id "YPR079W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 698772 700117 . + . transcript_id "YPR079W_id002"; gene_id "YPR079W"; gene_name "MRL1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 698772 700117 . + . transcript_id "YPR079W_id002"; gene_id "YPR079W"; gene_name "MRL1"; +chrXVI SGD transcript 698869 700014 . + . transcript_id "YPR079W_id001"; gene_id "YPR079W"; gene_name "MRL1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 698869 700014 . + 0 transcript_id "YPR079W_id001"; gene_name "MRL1"; gene_id "YPR079W"; +chrXVI SGD gene 700459 702091 . + . gene_id "YPR080W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 700459 702091 . + . transcript_id "YPR080W_id002"; gene_id "YPR080W"; gene_name "TEF1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 700459 702091 . + . transcript_id "YPR080W_id002"; gene_id "YPR080W"; gene_name "TEF1"; +chrXVI SGD transcript 700594 701970 . + . transcript_id "YPR080W_id001"; gene_id "YPR080W"; gene_name "TEF1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 700594 701970 . + 0 transcript_id "YPR080W_id001"; gene_name "TEF1"; gene_id "YPR080W"; +chrXVI SGD gene 702114 703970 . - . gene_id "YPR081C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 702114 703970 . - . transcript_id "YPR081C_id001"; gene_id "YPR081C"; gene_name "GRS2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 702114 703970 . - 0 transcript_id "YPR081C_id001"; gene_name "GRS2"; gene_id "YPR081C"; +chrXVI SGD gene 704074 704726 . - . gene_id "YPR082C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 704074 704726 . - . transcript_id "YPR082C_id004"; gene_id "YPR082C"; gene_name "DIB1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 704074 704726 . - . transcript_id "YPR082C_id004"; gene_id "YPR082C"; gene_name "DIB1"; +chrXVI SGD transcript 704225 704656 . - . transcript_id "YPR082C_id001"; gene_id "YPR082C"; gene_name "DIB1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 704225 704656 . - 0 transcript_id "YPR082C_id001"; gene_name "DIB1"; gene_id "YPR082C"; +chrXVI SGD gene 704807 706714 . + . gene_id "YPR083W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 704807 706714 . + . transcript_id "YPR083W_id003"; gene_id "YPR083W"; gene_name "MDM36"; transcript_biotype "protein_coding"; +chrXVI SGD exon 704807 706714 . + . transcript_id "YPR083W_id003"; gene_id "YPR083W"; gene_name "MDM36"; +chrXVI SGD transcript 704854 706593 . + . transcript_id "YPR083W_id001"; gene_id "YPR083W"; gene_name "MDM36"; transcript_biotype "protein_coding"; +chrXVI SGD exon 704854 706593 . + 0 transcript_id "YPR083W_id001"; gene_name "MDM36"; gene_id "YPR083W"; +chrXVI SGD gene 706857 708509 . + . gene_id "YPR084W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 706857 708509 . + . transcript_id "YPR084W_id003"; gene_id "YPR084W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 706857 708509 . + . transcript_id "YPR084W_id003"; gene_id "YPR084W"; +chrXVI SGD transcript 706972 708342 . + . transcript_id "YPR084W_id001"; gene_id "YPR084W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 706972 708342 . + 0 transcript_id "YPR084W_id001"; gene_id "YPR084W"; +chrXVI SGD gene 708285 709916 . - . gene_id "YPR085C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 708285 709916 . - . transcript_id "YPR085C_id001"; gene_id "YPR085C"; gene_name "ASA1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 708285 709916 . - . transcript_id "YPR085C_id001"; gene_id "YPR085C"; gene_name "ASA1"; +chrXVI SGD transcript 708497 709828 . - . transcript_id "YPR085C_id003"; gene_id "YPR085C"; gene_name "ASA1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 708497 709828 . - 0 transcript_id "YPR085C_id003"; gene_name "ASA1"; gene_id "YPR085C"; +chrXVI SGD gene 710020 711427 . + . gene_id "YPR086W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 710020 711427 . + . transcript_id "YPR086W_id001"; gene_id "YPR086W"; gene_name "SUA7"; transcript_biotype "protein_coding"; +chrXVI SGD exon 710020 711427 . + . transcript_id "YPR086W_id001"; gene_id "YPR086W"; gene_name "SUA7"; +chrXVI SGD transcript 710101 711138 . + . transcript_id "YPR086W_id003"; gene_id "YPR086W"; gene_name "SUA7"; transcript_biotype "protein_coding"; +chrXVI SGD exon 710101 711138 . + 0 transcript_id "YPR086W_id003"; gene_name "SUA7"; gene_id "YPR086W"; +chrXVI SGD gene 711261 713061 . - . gene_id "YPR088C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 711261 713061 . - . transcript_id "YPR088C_id001"; gene_id "YPR088C"; gene_name "SRP54"; transcript_biotype "protein_coding"; +chrXVI SGD exon 711261 713061 . - . transcript_id "YPR088C_id001"; gene_id "YPR088C"; gene_name "SRP54"; +chrXVI SGD gene 711354 711674 . + . gene_id "YPR087W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 711354 711674 . + . transcript_id "YPR087W_mRNA"; gene_id "YPR087W"; gene_name "VPS69"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 711354 711674 . + 0 transcript_id "YPR087W_mRNA"; gene_name "VPS69"; gene_id "YPR087W"; +chrXVI SGD transcript 711403 713028 . - . transcript_id "YPR088C_id002"; gene_id "YPR088C"; gene_name "SRP54"; transcript_biotype "protein_coding"; +chrXVI SGD exon 711403 713028 . - 0 transcript_id "YPR088C_id002"; gene_name "SRP54"; gene_id "YPR088C"; +chrXVI SGD gene 713236 716081 . + . gene_id "YPR089W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 713236 716081 . + . transcript_id "YPR089W_id002"; gene_id "YPR089W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 713236 716081 . + . transcript_id "YPR089W_id002"; gene_id "YPR089W"; +chrXVI SGD transcript 713275 715941 . + . transcript_id "YPR089W_id001"; gene_id "YPR089W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 713275 715941 . + 0 transcript_id "YPR089W_id001"; gene_id "YPR089W"; +chrXVI SGD gene 715842 718499 . - . gene_id "YPR091C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 715842 718499 . - . transcript_id "YPR091C_id003"; gene_id "YPR091C"; gene_name "NVJ2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 715842 718499 . - . transcript_id "YPR091C_id003"; gene_id "YPR091C"; gene_name "NVJ2"; +chrXVI SGD transcript 716156 718468 . - . transcript_id "YPR091C_id001"; gene_id "YPR091C"; gene_name "NVJ2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 716156 718468 . - 0 transcript_id "YPR091C_id001"; gene_name "NVJ2"; gene_id "YPR091C"; +chrXVI SGD gene 718379 718684 . + . gene_id "YPR092W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 718379 718684 . + . transcript_id "YPR092W_id001"; gene_id "YPR092W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 718379 718684 . + 0 transcript_id "YPR092W_id001"; gene_id "YPR092W"; +chrXVI SGD gene 718608 720490 . - . gene_id "YPR093C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 718608 720490 . - . transcript_id "YPR093C_id001"; gene_id "YPR093C"; gene_name "ASR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 718608 720490 . - . transcript_id "YPR093C_id001"; gene_id "YPR093C"; gene_name "ASR1"; +chrXVI SGD gene 718700 718806 . - . gene_id "YNCP0013C"; gene_biotype "ncRNA"; +chrXVI SGD transcript 718700 718806 . - . transcript_id "YNCP0013C_snoRNA"; gene_id "YNCP0013C"; gene_name "SNR51"; transcript_biotype "ncRNA"; +chrXVI SGD exon 718700 718806 . - . transcript_id "YNCP0013C_snoRNA"; gene_name "SNR51"; gene_id "YNCP0013C"; +chrXVI SGD gene 718887 719050 . - . gene_id "YNCP0014C"; gene_biotype "ncRNA"; +chrXVI SGD transcript 718887 719050 . - . transcript_id "YNCP0014C_snoRNA"; gene_id "YNCP0014C"; gene_name "SNR70"; transcript_biotype "ncRNA"; +chrXVI SGD exon 718887 719050 . - . transcript_id "YNCP0014C_snoRNA"; gene_name "SNR70"; gene_id "YNCP0014C"; +chrXVI SGD gene 719148 719242 . - . gene_id "YNCP0015C"; gene_biotype "ncRNA"; +chrXVI SGD transcript 719148 719242 . - . transcript_id "YNCP0015C_snoRNA"; gene_id "YNCP0015C"; gene_name "SNR41"; transcript_biotype "ncRNA"; +chrXVI SGD exon 719148 719242 . - . transcript_id "YNCP0015C_snoRNA"; gene_name "SNR41"; gene_id "YNCP0015C"; +chrXVI SGD transcript 719558 720424 . - . transcript_id "YPR093C_id002"; gene_id "YPR093C"; gene_name "ASR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 719558 720424 . - 0 transcript_id "YPR093C_id002"; gene_name "ASR1"; gene_id "YPR093C"; +chrXVI SGD gene 720454 721031 . + . gene_id "YPR094W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 720454 721031 . + . transcript_id "YPR094W_id003"; gene_id "YPR094W"; gene_name "RDS3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 720454 721031 . + . transcript_id "YPR094W_id003"; gene_id "YPR094W"; gene_name "RDS3"; +chrXVI SGD transcript 720637 720960 . + . transcript_id "YPR094W_id001"; gene_id "YPR094W"; gene_name "RDS3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 720637 720960 . + 0 transcript_id "YPR094W_id001"; gene_name "RDS3"; gene_id "YPR094W"; +chrXVI SGD gene 721037 724717 . - . gene_id "YPR095C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 721037 724717 . - . transcript_id "YPR095C_mRNA"; gene_id "YPR095C"; gene_name "SYT1"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 721037 724717 . - 0 transcript_id "YPR095C_mRNA"; gene_name "SYT1"; gene_id "YPR095C"; +chrXVI SGD gene 724842 725144 . - . gene_id "YPR096C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 724842 725144 . - . transcript_id "YPR096C_mRNA"; gene_id "YPR096C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 724842 725144 . - 0 transcript_id "YPR096C_mRNA"; gene_id "YPR096C"; +chrXVI SGD gene 725160 728782 . + . gene_id "YPR097W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 725160 728782 . + . transcript_id "YPR097W_id002"; gene_id "YPR097W"; gene_name "LEC1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 725160 728782 . + . transcript_id "YPR097W_id002"; gene_id "YPR097W"; gene_name "LEC1"; +chrXVI SGD transcript 725394 728615 . + . transcript_id "YPR097W_id001"; gene_id "YPR097W"; gene_name "LEC1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 725394 728615 . + 0 transcript_id "YPR097W_id001"; gene_name "LEC1"; gene_id "YPR097W"; +chrXVI SGD gene 728492 729548 . - . gene_id "YPR098C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 728492 729548 . - . transcript_id "YPR098C_id002"; gene_id "YPR098C"; gene_name "TMH18"; transcript_biotype "protein_coding"; +chrXVI SGD exon 728492 729548 . - . transcript_id "YPR098C_id002"; gene_id "YPR098C"; gene_name "TMH18"; +chrXVI SGD transcript 728947 729528 . - . transcript_id "YPR098C_id001"; gene_id "YPR098C"; gene_name "TMH18"; transcript_biotype "protein_coding"; +chrXVI SGD exon 728947 729385 . - 1 transcript_id "YPR098C_id001"; gene_name "TMH18"; gene_id "YPR098C"; +chrXVI SGD exon 729482 729528 . - 0 transcript_id "YPR098C_id001"; gene_name "TMH18"; gene_id "YPR098C"; +chrXVI SGD gene 729318 730204 . - . gene_id "YPR099C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 729318 730204 . - . transcript_id "YPR099C_id002"; gene_id "YPR099C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 729318 730204 . - . transcript_id "YPR099C_id002"; gene_id "YPR099C"; +chrXVI SGD transcript 729757 730113 . - . transcript_id "YPR099C_id001"; gene_id "YPR099C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 729757 730113 . - 0 transcript_id "YPR099C_id001"; gene_id "YPR099C"; +chrXVI SGD gene 729763 730349 . + . gene_id "YPR100W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 729763 730349 . + . transcript_id "YPR100W_id007"; gene_id "YPR100W"; gene_name "MRPL51"; transcript_biotype "protein_coding"; +chrXVI SGD exon 729763 730349 . + . transcript_id "YPR100W_id007"; gene_id "YPR100W"; gene_name "MRPL51"; +chrXVI SGD transcript 729791 730213 . + . transcript_id "YPR100W_id001"; gene_id "YPR100W"; gene_name "MRPL51"; transcript_biotype "protein_coding"; +chrXVI SGD exon 729791 730213 . + 0 transcript_id "YPR100W_id001"; gene_name "MRPL51"; gene_id "YPR100W"; +chrXVI SGD gene 730415 731233 . + . gene_id "YPR101W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 730415 731233 . + . transcript_id "YPR101W_id002"; gene_id "YPR101W"; gene_name "SNT309"; transcript_biotype "protein_coding"; +chrXVI SGD exon 730415 731233 . + . transcript_id "YPR101W_id002"; gene_id "YPR101W"; gene_name "SNT309"; +chrXVI SGD transcript 730492 731019 . + . transcript_id "YPR101W_id001"; gene_id "YPR101W"; gene_name "SNT309"; transcript_biotype "protein_coding"; +chrXVI SGD exon 730492 731019 . + 0 transcript_id "YPR101W_id001"; gene_name "SNT309"; gene_id "YPR101W"; +chrXVI SGD gene 731133 732027 . - . gene_id "YPR102C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 731133 732027 . - . transcript_id "YPR102C_id001"; gene_id "YPR102C"; gene_name "RPL11A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 731133 732027 . - . transcript_id "YPR102C_id001"; gene_id "YPR102C"; gene_name "RPL11A"; +chrXVI SGD transcript 731224 731748 . - . transcript_id "YPR102C_id003"; gene_id "YPR102C"; gene_name "RPL11A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 731224 731748 . - 0 transcript_id "YPR102C_id003"; gene_name "RPL11A"; gene_id "YPR102C"; +chrXVI SGD gene 732281 733515 . + . gene_id "YPR103W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 732281 733515 . + . transcript_id "YPR103W_id001"; gene_id "YPR103W"; gene_name "PRE2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 732281 733515 . + . transcript_id "YPR103W_id001"; gene_id "YPR103W"; gene_name "PRE2"; +chrXVI SGD transcript 732349 733212 . + . transcript_id "YPR103W_id003"; gene_id "YPR103W"; gene_name "PRE2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 732349 733212 . + 0 transcript_id "YPR103W_id003"; gene_name "PRE2"; gene_id "YPR103W"; +chrXVI SGD gene 733623 736433 . - . gene_id "YPR104C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 733623 736433 . - . transcript_id "YPR104C_id001"; gene_id "YPR104C"; gene_name "FHL1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 733623 736433 . - 0 transcript_id "YPR104C_id001"; gene_name "FHL1"; gene_id "YPR104C"; +chrXVI SGD gene 736913 739790 . - . gene_id "YPR105C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 736913 739790 . - . transcript_id "YPR105C_id001"; gene_id "YPR105C"; gene_name "COG4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 736913 739790 . - . transcript_id "YPR105C_id001"; gene_id "YPR105C"; gene_name "COG4"; +chrXVI SGD transcript 736984 739569 . - . transcript_id "YPR105C_id003"; gene_id "YPR105C"; gene_name "COG4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 736984 739569 . - 0 transcript_id "YPR105C_id003"; gene_name "COG4"; gene_id "YPR105C"; +chrXVI SGD gene 740049 741536 . + . gene_id "YPR106W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 740049 741536 . + . transcript_id "YPR106W_id001"; gene_id "YPR106W"; gene_name "ISR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 740049 741536 . + . transcript_id "YPR106W_id001"; gene_id "YPR106W"; gene_name "ISR1"; +chrXVI SGD transcript 740061 741392 . + . transcript_id "YPR106W_id002"; gene_id "YPR106W"; gene_name "ISR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 740061 741392 . + 0 transcript_id "YPR106W_id002"; gene_name "ISR1"; gene_id "YPR106W"; +chrXVI SGD gene 741223 742148 . - . gene_id "YPR107C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 741223 742148 . - . transcript_id "YPR107C_id004"; gene_id "YPR107C"; gene_name "YTH1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 741223 742148 . - . transcript_id "YPR107C_id004"; gene_id "YPR107C"; gene_name "YTH1"; +chrXVI SGD transcript 741438 742064 . - . transcript_id "YPR107C_id001"; gene_id "YPR107C"; gene_name "YTH1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 741438 742064 . - 0 transcript_id "YPR107C_id001"; gene_name "YTH1"; gene_id "YPR107C"; +chrXVI SGD gene 742374 744036 . + . gene_id "YPR108W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 742374 744036 . + . transcript_id "YPR108W_id001"; gene_id "YPR108W"; gene_name "RPN7"; transcript_biotype "protein_coding"; +chrXVI SGD exon 742374 744036 . + . transcript_id "YPR108W_id001"; gene_id "YPR108W"; gene_name "RPN7"; +chrXVI SGD transcript 742454 743743 . + . transcript_id "YPR108W_id002"; gene_id "YPR108W"; gene_name "RPN7"; transcript_biotype "protein_coding"; +chrXVI SGD exon 742454 743743 . + 0 transcript_id "YPR108W_id002"; gene_name "RPN7"; gene_id "YPR108W"; +chrXVI SGD gene 744175 744387 . + . gene_id "YPR108W-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 744175 744387 . + . transcript_id "YPR108W-A_mRNA"; gene_id "YPR108W-A"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 744175 744387 . + 0 transcript_id "YPR108W-A_mRNA"; gene_id "YPR108W-A"; +chrXVI SGD gene 744284 744355 . + . gene_id "YNCP0016W"; gene_biotype "ncRNA"; +chrXVI SGD transcript 744284 744355 . + . transcript_id "YNCP0016W_tRNA"; gene_id "YNCP0016W"; transcript_biotype "ncRNA"; +chrXVI SGD exon 744284 744355 . + . transcript_id "YNCP0016W_tRNA"; gene_id "YNCP0016W"; +chrXVI SGD gene 744458 745688 . + . gene_id "YPR109W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 744458 745688 . + . transcript_id "YPR109W_id001"; gene_id "YPR109W"; gene_name "GLD1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 744458 745688 . + . transcript_id "YPR109W_id001"; gene_id "YPR109W"; gene_name "GLD1"; +chrXVI SGD transcript 744689 745573 . + . transcript_id "YPR109W_id002"; gene_id "YPR109W"; gene_name "GLD1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 744689 745573 . + 0 transcript_id "YPR109W_id002"; gene_name "GLD1"; gene_id "YPR109W"; +chrXVI SGD gene 745538 746874 . - . gene_id "YPR110C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 745538 746874 . - . transcript_id "YPR110C_id001"; gene_id "YPR110C"; gene_name "RPC40"; transcript_biotype "protein_coding"; +chrXVI SGD exon 745538 746874 . - . transcript_id "YPR110C_id001"; gene_id "YPR110C"; gene_name "RPC40"; +chrXVI SGD transcript 745828 746835 . - . transcript_id "YPR110C_id002"; gene_id "YPR110C"; gene_name "RPC40"; transcript_biotype "protein_coding"; +chrXVI SGD exon 745828 746835 . - 0 transcript_id "YPR110C_id002"; gene_name "RPC40"; gene_id "YPR110C"; +chrXVI SGD gene 747072 749237 . + . gene_id "YPR111W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 747072 749237 . + . transcript_id "YPR111W_id001"; gene_id "YPR111W"; gene_name "DBF20"; transcript_biotype "protein_coding"; +chrXVI SGD exon 747072 749237 . + . transcript_id "YPR111W_id001"; gene_id "YPR111W"; gene_name "DBF20"; +chrXVI SGD transcript 747306 749000 . + . transcript_id "YPR111W_id002"; gene_id "YPR111W"; gene_name "DBF20"; transcript_biotype "protein_coding"; +chrXVI SGD exon 747306 749000 . + 0 transcript_id "YPR111W_id002"; gene_name "DBF20"; gene_id "YPR111W"; +chrXVI SGD gene 749146 751971 . - . gene_id "YPR112C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 749146 751971 . - . transcript_id "YPR112C_id003"; gene_id "YPR112C"; gene_name "MRD1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 749146 751971 . - . transcript_id "YPR112C_id003"; gene_id "YPR112C"; gene_name "MRD1"; +chrXVI SGD transcript 749256 751919 . - . transcript_id "YPR112C_id001"; gene_id "YPR112C"; gene_name "MRD1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 749256 751919 . - 0 transcript_id "YPR112C_id001"; gene_name "MRD1"; gene_id "YPR112C"; +chrXVI SGD gene 752232 753136 . + . gene_id "YPR113W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 752232 753136 . + . transcript_id "YPR113W_id004"; gene_id "YPR113W"; gene_name "PIS1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 752232 753136 . + . transcript_id "YPR113W_id004"; gene_id "YPR113W"; gene_name "PIS1"; +chrXVI SGD transcript 752257 752919 . + . transcript_id "YPR113W_id001"; gene_id "YPR113W"; gene_name "PIS1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 752257 752919 . + 0 transcript_id "YPR113W_id001"; gene_name "PIS1"; gene_id "YPR113W"; +chrXVI SGD gene 752807 754330 . + . gene_id "YPR114W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 752807 754330 . + . transcript_id "YPR114W_id001"; gene_id "YPR114W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 752807 754330 . + . transcript_id "YPR114W_id001"; gene_id "YPR114W"; +chrXVI SGD transcript 753301 754248 . + . transcript_id "YPR114W_id003"; gene_id "YPR114W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 753301 754248 . + 0 transcript_id "YPR114W_id003"; gene_id "YPR114W"; +chrXVI SGD gene 754670 758400 . + . gene_id "YPR115W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 754670 758400 . + . transcript_id "YPR115W_id001"; gene_id "YPR115W"; gene_name "RGC1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 754670 758400 . + . transcript_id "YPR115W_id001"; gene_id "YPR115W"; gene_name "RGC1"; +chrXVI SGD transcript 754877 758128 . + . transcript_id "YPR115W_id002"; gene_id "YPR115W"; gene_name "RGC1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 754877 758128 . + 0 transcript_id "YPR115W_id002"; gene_name "RGC1"; gene_id "YPR115W"; +chrXVI SGD gene 758638 761025 . + . gene_id "YPR116W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 758638 761025 . + . transcript_id "YPR116W_id002"; gene_id "YPR116W"; gene_name "RRG8"; transcript_biotype "protein_coding"; +chrXVI SGD exon 758638 761025 . + . transcript_id "YPR116W_id002"; gene_id "YPR116W"; gene_name "RRG8"; +chrXVI SGD transcript 758648 759481 . + . transcript_id "YPR116W_id001"; gene_id "YPR116W"; gene_name "RRG8"; transcript_biotype "protein_coding"; +chrXVI SGD exon 758648 759481 . + 0 transcript_id "YPR116W_id001"; gene_name "RRG8"; gene_id "YPR116W"; +chrXVI SGD gene 760025 767494 . + . gene_id "YPR117W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 760025 767494 . + . transcript_id "YPR117W_mRNA"; gene_id "YPR117W"; gene_name "HOB2"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 760025 767494 . + 0 transcript_id "YPR117W_mRNA"; gene_name "HOB2"; gene_id "YPR117W"; +chrXVI SGD gene 767701 769115 . + . gene_id "YPR118W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 767701 769115 . + . transcript_id "YPR118W_id004"; gene_id "YPR118W"; gene_name "MRI1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 767701 769115 . + . transcript_id "YPR118W_id004"; gene_id "YPR118W"; gene_name "MRI1"; +chrXVI SGD transcript 767752 768987 . + . transcript_id "YPR118W_id001"; gene_id "YPR118W"; gene_name "MRI1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 767752 768987 . + 0 transcript_id "YPR118W_id001"; gene_name "MRI1"; gene_id "YPR118W"; +chrXVI SGD gene 769207 769302 . - . gene_id "YNCP0017C"; gene_biotype "ncRNA"; +chrXVI SGD transcript 769207 769302 . - . transcript_id "YNCP0017C_tRNA"; gene_id "YNCP0017C"; transcript_biotype "ncRNA"; +chrXVI SGD exon 769207 769242 . - . transcript_id "YNCP0017C_tRNA"; gene_id "YNCP0017C"; +chrXVI SGD exon 769266 769302 . - . transcript_id "YNCP0017C_tRNA"; gene_id "YNCP0017C"; +chrXVI SGD gene 771304 773818 . + . gene_id "YPR119W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 771304 773818 . + . transcript_id "YPR119W_id001"; gene_id "YPR119W"; gene_name "CLB2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 771304 773818 . + . transcript_id "YPR119W_id001"; gene_id "YPR119W"; gene_name "CLB2"; +chrXVI SGD transcript 771653 773128 . + . transcript_id "YPR119W_id003"; gene_id "YPR119W"; gene_name "CLB2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 771653 773128 . + 0 transcript_id "YPR119W_id003"; gene_name "CLB2"; gene_id "YPR119W"; +chrXVI SGD gene 773662 775309 . - . gene_id "YPR120C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 773662 775309 . - . transcript_id "YPR120C_id002"; gene_id "YPR120C"; gene_name "CLB5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 773662 775309 . - . transcript_id "YPR120C_id002"; gene_id "YPR120C"; gene_name "CLB5"; +chrXVI SGD transcript 773875 775182 . - . transcript_id "YPR120C_id001"; gene_id "YPR120C"; gene_name "CLB5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 773875 775182 . - 0 transcript_id "YPR120C_id001"; gene_name "CLB5"; gene_id "YPR120C"; +chrXVI SGD gene 775765 775836 . - . gene_id "YNCP0018C"; gene_biotype "ncRNA"; +chrXVI SGD transcript 775765 775836 . - . transcript_id "YNCP0018C_tRNA"; gene_id "YNCP0018C"; transcript_biotype "ncRNA"; +chrXVI SGD exon 775765 775836 . - . transcript_id "YNCP0018C_tRNA"; gene_id "YNCP0018C"; +chrXVI SGD gene 778203 780364 . + . gene_id "YPR121W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 778203 780364 . + . transcript_id "YPR121W_id002"; gene_id "YPR121W"; gene_name "THI22"; transcript_biotype "protein_coding"; +chrXVI SGD exon 778203 780364 . + . transcript_id "YPR121W_id002"; gene_id "YPR121W"; gene_name "THI22"; +chrXVI SGD transcript 778583 780301 . + . transcript_id "YPR121W_id001"; gene_id "YPR121W"; gene_name "THI22"; transcript_biotype "protein_coding"; +chrXVI SGD exon 778583 780301 . + 0 transcript_id "YPR121W_id001"; gene_name "THI22"; gene_id "YPR121W"; +chrXVI SGD gene 782045 785671 . + . gene_id "YPR122W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 782045 785671 . + . transcript_id "YPR122W_mRNA"; gene_id "YPR122W"; gene_name "AXL1"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 782045 785671 . + 0 transcript_id "YPR122W_mRNA"; gene_name "AXL1"; gene_id "YPR122W"; +chrXVI SGD gene 786023 787671 . + . gene_id "YPR124W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 786023 787671 . + . transcript_id "YPR124W_id003"; gene_id "YPR124W"; gene_name "CTR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 786023 787671 . + . transcript_id "YPR124W_id003"; gene_id "YPR124W"; gene_name "CTR1"; +chrXVI SGD gene 786141 786575 . - . gene_id "YPR123C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 786141 786575 . - . transcript_id "YPR123C_mRNA"; gene_id "YPR123C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 786141 786575 . - 0 transcript_id "YPR123C_mRNA"; gene_id "YPR123C"; +chrXVI SGD transcript 786208 787428 . + . transcript_id "YPR124W_id001"; gene_id "YPR124W"; gene_name "CTR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 786208 787428 . + 0 transcript_id "YPR124W_id001"; gene_name "CTR1"; gene_id "YPR124W"; +chrXVI SGD gene 787865 789640 . + . gene_id "YPR125W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 787865 789640 . + . transcript_id "YPR125W_id001"; gene_id "YPR125W"; gene_name "YLH47"; transcript_biotype "protein_coding"; +chrXVI SGD exon 787865 789640 . + . transcript_id "YPR125W_id001"; gene_id "YPR125W"; gene_name "YLH47"; +chrXVI SGD transcript 787961 789325 . + . transcript_id "YPR125W_id003"; gene_id "YPR125W"; gene_name "YLH47"; transcript_biotype "protein_coding"; +chrXVI SGD exon 787961 789325 . + 0 transcript_id "YPR125W_id003"; gene_name "YLH47"; gene_id "YPR125W"; +chrXVI SGD gene 789077 789385 . - . gene_id "YPR126C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 789077 789385 . - . transcript_id "YPR126C_mRNA"; gene_id "YPR126C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 789077 789385 . - 0 transcript_id "YPR126C_mRNA"; gene_id "YPR126C"; +chrXVI SGD gene 789755 791200 . + . gene_id "YPR127W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 789755 791200 . + . transcript_id "YPR127W_id001"; gene_id "YPR127W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 789755 791200 . + . transcript_id "YPR127W_id001"; gene_id "YPR127W"; +chrXVI SGD transcript 790083 791120 . + . transcript_id "YPR127W_id002"; gene_id "YPR127W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 790083 791120 . + 0 transcript_id "YPR127W_id002"; gene_id "YPR127W"; +chrXVI SGD gene 791051 792257 . - . gene_id "YPR128C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 791051 792257 . - . transcript_id "YPR128C_id002"; gene_id "YPR128C"; gene_name "ANT1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 791051 792257 . - . transcript_id "YPR128C_id002"; gene_id "YPR128C"; gene_name "ANT1"; +chrXVI SGD transcript 791218 792204 . - . transcript_id "YPR128C_id001"; gene_id "YPR128C"; gene_name "ANT1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 791218 792204 . - 0 transcript_id "YPR128C_id001"; gene_name "ANT1"; gene_id "YPR128C"; +chrXVI SGD gene 792630 793815 . + . gene_id "YPR129W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 792630 793815 . + . transcript_id "YPR129W_id001"; gene_id "YPR129W"; gene_name "SCD6"; transcript_biotype "protein_coding"; +chrXVI SGD exon 792630 793815 . + . transcript_id "YPR129W_id001"; gene_id "YPR129W"; gene_name "SCD6"; +chrXVI SGD transcript 792687 793736 . + . transcript_id "YPR129W_id003"; gene_id "YPR129W"; gene_name "SCD6"; transcript_biotype "protein_coding"; +chrXVI SGD exon 792687 793736 . + 0 transcript_id "YPR129W_id003"; gene_name "SCD6"; gene_id "YPR129W"; +chrXVI SGD gene 793374 793781 . - . gene_id "YPR130C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 793374 793781 . - . transcript_id "YPR130C_mRNA"; gene_id "YPR130C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 793374 793781 . - 0 transcript_id "YPR130C_mRNA"; gene_id "YPR130C"; +chrXVI SGD gene 793720 794580 . - . gene_id "YPR131C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 793720 794580 . - . transcript_id "YPR131C_id004"; gene_id "YPR131C"; gene_name "NAT3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 793720 794580 . - . transcript_id "YPR131C_id004"; gene_id "YPR131C"; gene_name "NAT3"; +chrXVI SGD transcript 793911 794498 . - . transcript_id "YPR131C_id001"; gene_id "YPR131C"; gene_name "NAT3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 793911 794498 . - 0 transcript_id "YPR131C_id001"; gene_name "NAT3"; gene_id "YPR131C"; +chrXVI SGD gene 794941 796028 . + . gene_id "YPR132W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 794941 796028 . + . transcript_id "YPR132W_id002"; gene_id "YPR132W"; gene_name "RPS23B"; transcript_biotype "protein_coding"; +chrXVI SGD exon 794941 796028 . + . transcript_id "YPR132W_id002"; gene_id "YPR132W"; gene_name "RPS23B"; +chrXVI SGD transcript 794965 795767 . + . transcript_id "YPR132W_id001"; gene_id "YPR132W"; gene_name "RPS23B"; transcript_biotype "protein_coding"; +chrXVI SGD exon 794965 795029 . + 0 transcript_id "YPR132W_id001"; gene_name "RPS23B"; gene_id "YPR132W"; +chrXVI SGD exon 795395 795767 . + 1 transcript_id "YPR132W_id001"; gene_name "RPS23B"; gene_id "YPR132W"; +chrXVI SGD gene 795804 797301 . - . gene_id "YPR133C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 795804 797301 . - . transcript_id "YPR133C_id004"; gene_id "YPR133C"; gene_name "SPN1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 795804 797301 . - . transcript_id "YPR133C_id004"; gene_id "YPR133C"; gene_name "SPN1"; +chrXVI SGD transcript 795978 797210 . - . transcript_id "YPR133C_id001"; gene_id "YPR133C"; gene_name "SPN1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 795978 797210 . - 0 transcript_id "YPR133C_id001"; gene_name "SPN1"; gene_id "YPR133C"; +chrXVI SGD gene 797428 797868 . + . gene_id "YPR133W-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 797428 797868 . + . transcript_id "YPR133W-A_id005"; gene_id "YPR133W-A"; gene_name "TOM5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 797428 797868 . + . transcript_id "YPR133W-A_id005"; gene_id "YPR133W-A"; gene_name "TOM5"; +chrXVI SGD transcript 797557 797709 . + . transcript_id "YPR133W-A_id001"; gene_id "YPR133W-A"; gene_name "TOM5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 797557 797709 . + 0 transcript_id "YPR133W-A_id001"; gene_name "TOM5"; gene_id "YPR133W-A"; +chrXVI SGD gene 798012 798996 . + . gene_id "YPR134W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 798012 798996 . + . transcript_id "YPR134W_id002"; gene_id "YPR134W"; gene_name "MSS18"; transcript_biotype "protein_coding"; +chrXVI SGD exon 798012 798996 . + . transcript_id "YPR134W_id002"; gene_id "YPR134W"; gene_name "MSS18"; +chrXVI SGD transcript 798051 798857 . + . transcript_id "YPR134W_id001"; gene_id "YPR134W"; gene_name "MSS18"; transcript_biotype "protein_coding"; +chrXVI SGD exon 798051 798857 . + 0 transcript_id "YPR134W_id001"; gene_name "MSS18"; gene_id "YPR134W"; +chrXVI SGD gene 799172 802066 . + . gene_id "YPR135W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 799172 802066 . + . transcript_id "YPR135W_id003"; gene_id "YPR135W"; gene_name "CTF4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 799172 802066 . + . transcript_id "YPR135W_id003"; gene_id "YPR135W"; gene_name "CTF4"; +chrXVI SGD transcript 799234 802017 . + . transcript_id "YPR135W_id001"; gene_id "YPR135W"; gene_name "CTF4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 799234 802017 . + 0 transcript_id "YPR135W_id001"; gene_name "CTF4"; gene_id "YPR135W"; +chrXVI SGD gene 801382 804255 . + . gene_id "YPR137W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 801382 804255 . + . transcript_id "YPR137W_id001"; gene_id "YPR137W"; gene_name "RRP9"; transcript_biotype "protein_coding"; +chrXVI SGD exon 801382 804255 . + . transcript_id "YPR137W_id001"; gene_id "YPR137W"; gene_name "RRP9"; +chrXVI SGD gene 802325 802837 . - . gene_id "YPR136C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 802325 802837 . - . transcript_id "YPR136C_mRNA"; gene_id "YPR136C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 802325 802837 . - 0 transcript_id "YPR136C_mRNA"; gene_id "YPR136C"; +chrXVI SGD transcript 802359 804080 . + . transcript_id "YPR137W_id004"; gene_id "YPR137W"; gene_name "RRP9"; transcript_biotype "protein_coding"; +chrXVI SGD exon 802359 804080 . + 0 transcript_id "YPR137W_id004"; gene_name "RRP9"; gene_id "YPR137W"; +chrXVI SGD gene 805001 810269 . - . gene_id "YPR137C-B"; gene_biotype "protein_coding"; +chrXVI SGD transcript 805001 810269 . - . transcript_id "YPR137C-B_dummy"; gene_id "YPR137C-B"; transcript_biotype "protein_coding"; +chrXVI SGD exon 805001 808963 . - 0 transcript_id "YPR137C-B_dummy"; gene_id "YPR137C-B"; +chrXVI SGD exon 808965 810269 . - 0 transcript_id "YPR137C-B_dummy"; gene_id "YPR137C-B"; +chrXVI SGD gene 808947 810269 . - . gene_id "YPR137C-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 808947 810269 . - . transcript_id "YPR137C-A_dummy"; gene_id "YPR137C-A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 808947 810269 . - 0 transcript_id "YPR137C-A_dummy"; gene_id "YPR137C-A"; +chrXVI SGD gene 810676 810749 . + . gene_id "YNCP0019W"; gene_biotype "ncRNA"; +chrXVI SGD transcript 810676 810749 . + . transcript_id "YNCP0019W_tRNA"; gene_id "YNCP0019W"; transcript_biotype "ncRNA"; +chrXVI SGD exon 810676 810749 . + . transcript_id "YNCP0019W_tRNA"; gene_id "YNCP0019W"; +chrXVI SGD gene 810845 812767 . - . gene_id "YPR138C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 810845 812767 . - . transcript_id "YPR138C_id001"; gene_id "YPR138C"; gene_name "MEP3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 810845 812767 . - . transcript_id "YPR138C_id001"; gene_id "YPR138C"; gene_name "MEP3"; +chrXVI SGD transcript 810984 812453 . - . transcript_id "YPR138C_id002"; gene_id "YPR138C"; gene_name "MEP3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 810984 812453 . - 0 transcript_id "YPR138C_id002"; gene_name "MEP3"; gene_id "YPR138C"; +chrXVI SGD gene 813020 814133 . - . gene_id "YPR139C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 813020 814133 . - . transcript_id "YPR139C_id002"; gene_id "YPR139C"; gene_name "LOA1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 813020 814133 . - . transcript_id "YPR139C_id002"; gene_id "YPR139C"; gene_name "LOA1"; +chrXVI SGD transcript 813156 814058 . - . transcript_id "YPR139C_id001"; gene_id "YPR139C"; gene_name "LOA1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 813156 814058 . - 0 transcript_id "YPR139C_id001"; gene_name "LOA1"; gene_id "YPR139C"; +chrXVI SGD gene 814291 815700 . + . gene_id "YPR140W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 814291 815700 . + . transcript_id "YPR140W_id001"; gene_id "YPR140W"; gene_name "TAZ1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 814291 815700 . + . transcript_id "YPR140W_id001"; gene_id "YPR140W"; gene_name "TAZ1"; +chrXVI SGD transcript 814391 815536 . + . transcript_id "YPR140W_id002"; gene_id "YPR140W"; gene_name "TAZ1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 814391 815536 . + 0 transcript_id "YPR140W_id002"; gene_name "TAZ1"; gene_id "YPR140W"; +chrXVI SGD gene 815567 818081 . - . gene_id "YPR141C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 815567 818081 . - . transcript_id "YPR141C_id003"; gene_id "YPR141C"; gene_name "KAR3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 815567 818081 . - . transcript_id "YPR141C_id003"; gene_id "YPR141C"; gene_name "KAR3"; +chrXVI SGD transcript 815734 817923 . - . transcript_id "YPR141C_id001"; gene_id "YPR141C"; gene_name "KAR3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 815734 817923 . - 0 transcript_id "YPR141C_id001"; gene_name "KAR3"; gene_id "YPR141C"; +chrXVI SGD gene 818130 818693 . - . gene_id "YPR142C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 818130 818693 . - . transcript_id "YPR142C_mRNA"; gene_id "YPR142C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 818130 818693 . - 0 transcript_id "YPR142C_mRNA"; gene_id "YPR142C"; +chrXVI SGD gene 818276 819384 . + . gene_id "YPR143W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 818276 819384 . + . transcript_id "YPR143W_id002"; gene_id "YPR143W"; gene_name "RRP15"; transcript_biotype "protein_coding"; +chrXVI SGD exon 818276 819384 . + . transcript_id "YPR143W_id002"; gene_id "YPR143W"; gene_name "RRP15"; +chrXVI SGD transcript 818323 819075 . + . transcript_id "YPR143W_id001"; gene_id "YPR143W"; gene_name "RRP15"; transcript_biotype "protein_coding"; +chrXVI SGD exon 818323 819075 . + 0 transcript_id "YPR143W_id001"; gene_name "RRP15"; gene_id "YPR143W"; +chrXVI SGD gene 819529 819602 . + . gene_id "YNCP0020W"; gene_biotype "ncRNA"; +chrXVI SGD transcript 819529 819602 . + . transcript_id "YNCP0020W_tRNA"; gene_id "YNCP0020W"; transcript_biotype "ncRNA"; +chrXVI SGD exon 819529 819602 . + . transcript_id "YNCP0020W_tRNA"; gene_id "YNCP0020W"; +chrXVI SGD gene 819649 821446 . - . gene_id "YPR144C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 819649 821446 . - . transcript_id "YPR144C_id006"; gene_id "YPR144C"; gene_name "NOC4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 819649 821446 . - . transcript_id "YPR144C_id006"; gene_id "YPR144C"; gene_name "NOC4"; +chrXVI SGD transcript 819765 821423 . - . transcript_id "YPR144C_id001"; gene_id "YPR144C"; gene_name "NOC4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 819765 821423 . - 0 transcript_id "YPR144C_id001"; gene_name "NOC4"; gene_id "YPR144C"; +chrXVI SGD gene 821732 821903 . + . gene_id "YNCP0021W"; gene_biotype "ncRNA"; +chrXVI SGD transcript 821732 821903 . + . transcript_id "YNCP0021W_snoRNA"; gene_id "YNCP0021W"; gene_name "SNR45"; transcript_biotype "ncRNA"; +chrXVI SGD exon 821732 821903 . + . transcript_id "YNCP0021W_snoRNA"; gene_name "SNR45"; gene_id "YNCP0021W"; +chrXVI SGD gene 822496 824492 . + . gene_id "YPR145W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 822496 824492 . + . transcript_id "YPR145W_id003"; gene_id "YPR145W"; gene_name "ASN1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 822496 824492 . + . transcript_id "YPR145W_id003"; gene_id "YPR145W"; gene_name "ASN1"; +chrXVI SGD transcript 822620 824338 . + . transcript_id "YPR145W_id001"; gene_id "YPR145W"; gene_name "ASN1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 822620 824338 . + 0 transcript_id "YPR145W_id001"; gene_name "ASN1"; gene_id "YPR145W"; +chrXVI SGD gene 824558 825064 . - . gene_id "YPR145C-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 824558 825064 . - . transcript_id "YPR145C-A_id004"; gene_id "YPR145C-A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 824558 825064 . - . transcript_id "YPR145C-A_id004"; gene_id "YPR145C-A"; +chrXVI SGD transcript 824690 824926 . - . transcript_id "YPR145C-A_id001"; gene_id "YPR145C-A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 824690 824926 . - 0 transcript_id "YPR145C-A_id001"; gene_id "YPR145C-A"; +chrXVI SGD gene 825347 825676 . - . gene_id "YPR146C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 825347 825676 . - . transcript_id "YPR146C_mRNA"; gene_id "YPR146C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 825347 825676 . - 0 transcript_id "YPR146C_mRNA"; gene_id "YPR146C"; +chrXVI SGD gene 825358 826620 . - . gene_id "YPR147C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 825358 826620 . - . transcript_id "YPR147C_id001"; gene_id "YPR147C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 825358 826620 . - . transcript_id "YPR147C_id001"; gene_id "YPR147C"; +chrXVI SGD transcript 825645 826559 . - . transcript_id "YPR147C_id002"; gene_id "YPR147C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 825645 826559 . - 0 transcript_id "YPR147C_id002"; gene_id "YPR147C"; +chrXVI SGD gene 826833 828140 . - . gene_id "YPR148C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 826833 828140 . - . transcript_id "YPR148C_id001"; gene_id "YPR148C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 826833 828140 . - 0 transcript_id "YPR148C_id001"; gene_id "YPR148C"; +chrXVI SGD gene 829735 831061 . + . gene_id "YPR149W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 829735 831061 . + . transcript_id "YPR149W_id001"; gene_id "YPR149W"; gene_name "NCE102"; transcript_biotype "protein_coding"; +chrXVI SGD exon 829735 831061 . + . transcript_id "YPR149W_id001"; gene_id "YPR149W"; gene_name "NCE102"; +chrXVI SGD transcript 829918 830439 . + . transcript_id "YPR149W_id003"; gene_id "YPR149W"; gene_name "NCE102"; transcript_biotype "protein_coding"; +chrXVI SGD exon 829918 830439 . + 0 transcript_id "YPR149W_id003"; gene_name "NCE102"; gene_id "YPR149W"; +chrXVI SGD gene 830999 831520 . + . gene_id "YPR150W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 830999 831520 . + . transcript_id "YPR150W_mRNA"; gene_id "YPR150W"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 830999 831520 . + 0 transcript_id "YPR150W_mRNA"; gene_id "YPR150W"; +chrXVI SGD gene 831055 831675 . - . gene_id "YPR151C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 831055 831675 . - . transcript_id "YPR151C_id001"; gene_id "YPR151C"; gene_name "SUE1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 831055 831675 . - 0 transcript_id "YPR151C_id001"; gene_name "SUE1"; gene_id "YPR151C"; +chrXVI SGD gene 831656 833494 . - . gene_id "YPR152C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 831656 833494 . - . transcript_id "YPR152C_id001"; gene_id "YPR152C"; gene_name "URN1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 831656 833494 . - . transcript_id "YPR152C_id001"; gene_id "YPR152C"; gene_name "URN1"; +chrXVI SGD transcript 832061 833458 . - . transcript_id "YPR152C_id002"; gene_id "YPR152C"; gene_name "URN1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 832061 833458 . - 0 transcript_id "YPR152C_id002"; gene_name "URN1"; gene_id "YPR152C"; +chrXVI SGD gene 833689 834245 . + . gene_id "YPR153W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 833689 834245 . + . transcript_id "YPR153W_id001"; gene_id "YPR153W"; gene_name "MAY24"; transcript_biotype "protein_coding"; +chrXVI SGD exon 833689 833693 . + 0 transcript_id "YPR153W_id001"; gene_name "MAY24"; gene_id "YPR153W"; +chrXVI SGD exon 833828 834245 . + 1 transcript_id "YPR153W_id001"; gene_name "MAY24"; gene_id "YPR153W"; +chrXVI SGD gene 833925 835528 . + . gene_id "YPR154W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 833925 835528 . + . transcript_id "YPR154W_id001"; gene_id "YPR154W"; gene_name "PIN3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 833925 835528 . + . transcript_id "YPR154W_id001"; gene_id "YPR154W"; gene_name "PIN3"; +chrXVI SGD transcript 834565 835212 . + . transcript_id "YPR154W_id004"; gene_id "YPR154W"; gene_name "PIN3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 834565 835212 . + 0 transcript_id "YPR154W_id004"; gene_name "PIN3"; gene_id "YPR154W"; +chrXVI SGD gene 835413 837479 . - . gene_id "YPR155C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 835413 837479 . - . transcript_id "YPR155C_id001"; gene_id "YPR155C"; gene_name "NCA2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 835413 837479 . - . transcript_id "YPR155C_id001"; gene_id "YPR155C"; gene_name "NCA2"; +chrXVI SGD transcript 835563 837413 . - . transcript_id "YPR155C_id002"; gene_id "YPR155C"; gene_name "NCA2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 835563 837413 . - 0 transcript_id "YPR155C_id002"; gene_name "NCA2"; gene_id "YPR155C"; +chrXVI SGD gene 837675 840165 . - . gene_id "YPR156C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 837675 840165 . - . transcript_id "YPR156C_id001"; gene_id "YPR156C"; gene_name "TPO3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 837675 840165 . - . transcript_id "YPR156C_id001"; gene_id "YPR156C"; gene_name "TPO3"; +chrXVI SGD transcript 837909 839777 . - . transcript_id "YPR156C_id002"; gene_id "YPR156C"; gene_name "TPO3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 837909 839777 . - 0 transcript_id "YPR156C_id002"; gene_name "TPO3"; gene_id "YPR156C"; +chrXVI SGD gene 840941 842785 . + . gene_id "YPR157W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 840941 842785 . + . transcript_id "YPR157W_id004"; gene_id "YPR157W"; gene_name "TDA6"; transcript_biotype "protein_coding"; +chrXVI SGD exon 840941 842785 . + . transcript_id "YPR157W_id004"; gene_id "YPR157W"; gene_name "TDA6"; +chrXVI SGD transcript 841266 842669 . + . transcript_id "YPR157W_id001"; gene_id "YPR157W"; gene_name "TDA6"; transcript_biotype "protein_coding"; +chrXVI SGD exon 841266 842669 . + 0 transcript_id "YPR157W_id001"; gene_name "TDA6"; gene_id "YPR157W"; +chrXVI SGD gene 843164 844178 . + . gene_id "YPR158W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 843164 844178 . + . transcript_id "YPR158W_id006"; gene_id "YPR158W"; gene_name "CUR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 843164 844178 . + . transcript_id "YPR158W_id006"; gene_id "YPR158W"; gene_name "CUR1"; +chrXVI SGD transcript 843262 844020 . + . transcript_id "YPR158W_id001"; gene_id "YPR158W"; gene_name "CUR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 843262 844020 . + 0 transcript_id "YPR158W_id001"; gene_name "CUR1"; gene_id "YPR158W"; +chrXVI SGD gene 844709 846031 . + . gene_id "YPR158W-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 844709 846031 . + . transcript_id "YPR158W-A_dummy"; gene_id "YPR158W-A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 844709 846031 . + 0 transcript_id "YPR158W-A_dummy"; gene_id "YPR158W-A"; +chrXVI SGD gene 844709 849980 . + . gene_id "YPR158W-B"; gene_biotype "protein_coding"; +chrXVI SGD transcript 844709 849980 . + . transcript_id "YPR158W-B_dummy"; gene_id "YPR158W-B"; transcript_biotype "protein_coding"; +chrXVI SGD exon 844709 846013 . + 0 transcript_id "YPR158W-B_dummy"; gene_id "YPR158W-B"; +chrXVI SGD exon 846015 849980 . + 0 transcript_id "YPR158W-B_dummy"; gene_id "YPR158W-B"; +chrXVI SGD gene 850989 856257 . - . gene_id "YPR158C-D"; gene_biotype "protein_coding"; +chrXVI SGD transcript 850989 856257 . - . transcript_id "YPR158C-D_dummy"; gene_id "YPR158C-D"; transcript_biotype "protein_coding"; +chrXVI SGD exon 850989 854951 . - 0 transcript_id "YPR158C-D_dummy"; gene_id "YPR158C-D"; +chrXVI SGD exon 854953 856257 . - 0 transcript_id "YPR158C-D_dummy"; gene_id "YPR158C-D"; +chrXVI SGD gene 854935 856257 . - . gene_id "YPR158C-C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 854935 856257 . - . transcript_id "YPR158C-C_dummy"; gene_id "YPR158C-C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 854935 856257 . - 0 transcript_id "YPR158C-C_dummy"; gene_id "YPR158C-C"; +chrXVI SGD gene 856902 856974 . + . gene_id "YNCP0022W"; gene_biotype "ncRNA"; +chrXVI SGD transcript 856902 856974 . + . transcript_id "YNCP0022W_tRNA"; gene_id "YNCP0022W"; transcript_biotype "ncRNA"; +chrXVI SGD exon 856902 856974 . + . transcript_id "YNCP0022W_tRNA"; gene_id "YNCP0022W"; +chrXVI SGD gene 857262 860045 . + . gene_id "YPR159W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 857262 860045 . + . transcript_id "YPR159W_id003"; gene_id "YPR159W"; gene_name "KRE6"; transcript_biotype "protein_coding"; +chrXVI SGD exon 857262 860045 . + . transcript_id "YPR159W_id003"; gene_id "YPR159W"; gene_name "KRE6"; +chrXVI SGD transcript 857583 859745 . + . transcript_id "YPR159W_id001"; gene_id "YPR159W"; gene_name "KRE6"; transcript_biotype "protein_coding"; +chrXVI SGD exon 857583 859745 . + 0 transcript_id "YPR159W_id001"; gene_name "KRE6"; gene_id "YPR159W"; +chrXVI SGD gene 860314 860415 . - . gene_id "YPR159C-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 860314 860415 . - . transcript_id "YPR159C-A_mRNA"; gene_id "YPR159C-A"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 860314 860415 . - 0 transcript_id "YPR159C-A_mRNA"; gene_id "YPR159C-A"; +chrXVI SGD gene 860379 860449 . + . gene_id "YNCP0023W"; gene_biotype "ncRNA"; +chrXVI SGD transcript 860379 860449 . + . transcript_id "YNCP0023W_tRNA"; gene_id "YNCP0023W"; transcript_biotype "ncRNA"; +chrXVI SGD exon 860379 860449 . + . transcript_id "YNCP0023W_tRNA"; gene_id "YNCP0023W"; +chrXVI SGD gene 861306 864014 . + . gene_id "YPR160W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 861306 864014 . + . transcript_id "YPR160W_id001"; gene_id "YPR160W"; gene_name "GPH1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 861306 864014 . + 0 transcript_id "YPR160W_id001"; gene_name "GPH1"; gene_id "YPR160W"; +chrXVI SGD gene 861934 862014 . + . gene_id "YPR160W-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 861934 862014 . + . transcript_id "YPR160W-A_id001"; gene_id "YPR160W-A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 861934 862014 . + 0 transcript_id "YPR160W-A_id001"; gene_id "YPR160W-A"; +chrXVI SGD gene 862577 862861 . - . gene_id "YPR160C-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 862577 862861 . - . transcript_id "YPR160C-A_id001"; gene_id "YPR160C-A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 862577 862861 . - 0 transcript_id "YPR160C-A_id001"; gene_id "YPR160C-A"; +chrXVI SGD gene 864318 866493 . - . gene_id "YPR161C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 864318 866493 . - . transcript_id "YPR161C_id003"; gene_id "YPR161C"; gene_name "SGV1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 864318 866493 . - . transcript_id "YPR161C_id003"; gene_id "YPR161C"; gene_name "SGV1"; +chrXVI SGD transcript 864449 866422 . - . transcript_id "YPR161C_id001"; gene_id "YPR161C"; gene_name "SGV1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 864449 866422 . - 0 transcript_id "YPR161C_id001"; gene_name "SGV1"; gene_id "YPR161C"; +chrXVI SGD gene 866662 868332 . - . gene_id "YPR162C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 866662 868332 . - . transcript_id "YPR162C_id001"; gene_id "YPR162C"; gene_name "ORC4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 866662 868332 . - . transcript_id "YPR162C_id001"; gene_id "YPR162C"; gene_name "ORC4"; +chrXVI SGD transcript 866715 868304 . - . transcript_id "YPR162C_id002"; gene_id "YPR162C"; gene_name "ORC4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 866715 868304 . - 0 transcript_id "YPR162C_id002"; gene_name "ORC4"; gene_id "YPR162C"; +chrXVI SGD gene 868469 870114 . - . gene_id "YPR163C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 868469 870114 . - . transcript_id "YPR163C_id003"; gene_id "YPR163C"; gene_name "TIF3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 868469 870114 . - . transcript_id "YPR163C_id003"; gene_id "YPR163C"; gene_name "TIF3"; +chrXVI SGD transcript 868645 869955 . - . transcript_id "YPR163C_id001"; gene_id "YPR163C"; gene_name "TIF3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 868645 869955 . - 0 transcript_id "YPR163C_id001"; gene_name "TIF3"; gene_id "YPR163C"; +chrXVI SGD gene 870703 874926 . + . gene_id "YPR164W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 870703 874926 . + . transcript_id "YPR164W_mRNA"; gene_id "YPR164W"; gene_name "MMS1"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 870703 874926 . + 0 transcript_id "YPR164W_mRNA"; gene_name "MMS1"; gene_id "YPR164W"; +chrXVI SGD gene 874907 876225 . + . gene_id "YPR165W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 874907 876225 . + . transcript_id "YPR165W_id001"; gene_id "YPR165W"; gene_name "RHO1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 874907 876225 . + . transcript_id "YPR165W_id001"; gene_id "YPR165W"; gene_name "RHO1"; +chrXVI SGD transcript 875368 875997 . + . transcript_id "YPR165W_id003"; gene_id "YPR165W"; gene_name "RHO1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 875368 875997 . + 0 transcript_id "YPR165W_id003"; gene_name "RHO1"; gene_id "YPR165W"; +chrXVI SGD gene 876168 876775 . - . gene_id "YPR166C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 876168 876775 . - . transcript_id "YPR166C_id004"; gene_id "YPR166C"; gene_name "MRP2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 876168 876775 . - . transcript_id "YPR166C_id004"; gene_id "YPR166C"; gene_name "MRP2"; +chrXVI SGD transcript 876282 876629 . - . transcript_id "YPR166C_id001"; gene_id "YPR166C"; gene_name "MRP2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 876282 876629 . - 0 transcript_id "YPR166C_id001"; gene_name "MRP2"; gene_id "YPR166C"; +chrXVI SGD gene 876768 877780 . - . gene_id "YPR167C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 876768 877780 . - . transcript_id "YPR167C_id001"; gene_id "YPR167C"; gene_name "MET16"; transcript_biotype "protein_coding"; +chrXVI SGD exon 876768 877780 . - . transcript_id "YPR167C_id001"; gene_id "YPR167C"; gene_name "MET16"; +chrXVI SGD transcript 876847 877632 . - . transcript_id "YPR167C_id003"; gene_id "YPR167C"; gene_name "MET16"; transcript_biotype "protein_coding"; +chrXVI SGD exon 876847 877632 . - 0 transcript_id "YPR167C_id003"; gene_name "MET16"; gene_id "YPR167C"; +chrXVI SGD gene 877431 880147 . + . gene_id "YPR168W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 877431 880147 . + . transcript_id "YPR168W_id001"; gene_id "YPR168W"; gene_name "NUT2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 877431 880147 . + . transcript_id "YPR168W_id001"; gene_id "YPR168W"; gene_name "NUT2"; +chrXVI SGD transcript 878076 878549 . + . transcript_id "YPR168W_id002"; gene_id "YPR168W"; gene_name "NUT2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 878076 878549 . + 0 transcript_id "YPR168W_id002"; gene_name "NUT2"; gene_id "YPR168W"; +chrXVI SGD gene 878215 880244 . + . gene_id "YPR169W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 878215 880244 . + . transcript_id "YPR169W_id002"; gene_id "YPR169W"; gene_name "JIP5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 878215 880244 . + . transcript_id "YPR169W_id002"; gene_id "YPR169W"; gene_name "JIP5"; +chrXVI SGD transcript 878690 880168 . + . transcript_id "YPR169W_id001"; gene_id "YPR169W"; gene_name "JIP5"; transcript_biotype "protein_coding"; +chrXVI SGD exon 878690 880168 . + 0 transcript_id "YPR169W_id001"; gene_name "JIP5"; gene_id "YPR169W"; +chrXVI SGD gene 880296 880369 . - . gene_id "YNCP0024C"; gene_biotype "ncRNA"; +chrXVI SGD transcript 880296 880369 . - . transcript_id "YNCP0024C_tRNA"; gene_id "YNCP0024C"; transcript_biotype "ncRNA"; +chrXVI SGD exon 880296 880369 . - . transcript_id "YNCP0024C_tRNA"; gene_id "YNCP0024C"; +chrXVI SGD gene 882602 883691 . - . gene_id "YPR170C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 882602 883691 . - . transcript_id "YPR170C_id001"; gene_id "YPR170C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 882602 883691 . - . transcript_id "YPR170C_id001"; gene_id "YPR170C"; +chrXVI SGD transcript 882983 883318 . - . transcript_id "YPR170C_id004"; gene_id "YPR170C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 882983 883318 . - 0 transcript_id "YPR170C_id004"; gene_id "YPR170C"; +chrXVI SGD gene 883201 883536 . + . gene_id "YPR169W-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 883201 883536 . + . transcript_id "YPR169W-A_id003"; gene_id "YPR169W-A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 883201 883536 . + . transcript_id "YPR169W-A_id003"; gene_id "YPR169W-A"; +chrXVI SGD transcript 883239 883457 . + . transcript_id "YPR169W-A_id001"; gene_id "YPR169W-A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 883239 883457 . + 0 transcript_id "YPR169W-A_id001"; gene_id "YPR169W-A"; +chrXVI SGD gene 883239 883595 . + . gene_id "YPR170W-B"; gene_biotype "protein_coding"; +chrXVI SGD transcript 883239 883595 . + . transcript_id "YPR170W-B_id001"; gene_id "YPR170W-B"; transcript_biotype "protein_coding"; +chrXVI SGD exon 883239 883387 . + 0 transcript_id "YPR170W-B_id001"; gene_id "YPR170W-B"; +chrXVI SGD exon 883487 883595 . + 1 transcript_id "YPR170W-B_id001"; gene_id "YPR170W-B"; +chrXVI SGD gene 883245 883832 . + . gene_id "YPR170W-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 883245 883832 . + . transcript_id "YPR170W-A_id002"; gene_id "YPR170W-A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 883245 883832 . + . transcript_id "YPR170W-A_id002"; gene_id "YPR170W-A"; +chrXVI SGD transcript 883378 883563 . + . transcript_id "YPR170W-A_id001"; gene_id "YPR170W-A"; transcript_biotype "protein_coding"; +chrXVI SGD exon 883378 883563 . + 0 transcript_id "YPR170W-A_id001"; gene_id "YPR170W-A"; +chrXVI SGD gene 883762 885651 . + . gene_id "YPR171W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 883762 885651 . + . transcript_id "YPR171W_id001"; gene_id "YPR171W"; gene_name "BSP1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 883762 885651 . + . transcript_id "YPR171W_id001"; gene_id "YPR171W"; gene_name "BSP1"; +chrXVI SGD transcript 883828 885558 . + . transcript_id "YPR171W_id002"; gene_id "YPR171W"; gene_name "BSP1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 883828 885558 . + 0 transcript_id "YPR171W_id002"; gene_name "BSP1"; gene_id "YPR171W"; +chrXVI SGD gene 885510 887869 . - . gene_id "YPR173C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 885510 887869 . - . transcript_id "YPR173C_id001"; gene_id "YPR173C"; gene_name "VPS4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 885510 887869 . - . transcript_id "YPR173C_id001"; gene_id "YPR173C"; gene_name "VPS4"; +chrXVI SGD gene 885775 886675 . + . gene_id "YPR172W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 885775 886675 . + . transcript_id "YPR172W_id002"; gene_id "YPR172W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 885775 886675 . + . transcript_id "YPR172W_id002"; gene_id "YPR172W"; +chrXVI SGD transcript 885796 886398 . + . transcript_id "YPR172W_id001"; gene_id "YPR172W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 885796 886398 . + 0 transcript_id "YPR172W_id001"; gene_id "YPR172W"; +chrXVI SGD transcript 886524 887837 . - . transcript_id "YPR173C_id004"; gene_id "YPR173C"; gene_name "VPS4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 886524 887837 . - 0 transcript_id "YPR173C_id004"; gene_name "VPS4"; gene_id "YPR173C"; +chrXVI SGD gene 887886 888743 . - . gene_id "YPR174C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 887886 888743 . - . transcript_id "YPR174C_id001"; gene_id "YPR174C"; gene_name "CSA1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 887886 888743 . - . transcript_id "YPR174C_id001"; gene_id "YPR174C"; gene_name "CSA1"; +chrXVI SGD transcript 888043 888708 . - . transcript_id "YPR174C_id002"; gene_id "YPR174C"; gene_name "CSA1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 888043 888708 . - 0 transcript_id "YPR174C_id002"; gene_name "CSA1"; gene_id "YPR174C"; +chrXVI SGD gene 888924 891076 . + . gene_id "YPR175W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 888924 891076 . + . transcript_id "YPR175W_id003"; gene_id "YPR175W"; gene_name "DPB2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 888924 891076 . + . transcript_id "YPR175W_id003"; gene_id "YPR175W"; gene_name "DPB2"; +chrXVI SGD transcript 888974 891043 . + . transcript_id "YPR175W_id001"; gene_id "YPR175W"; gene_name "DPB2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 888974 891043 . + 0 transcript_id "YPR175W_id001"; gene_name "DPB2"; gene_id "YPR175W"; +chrXVI SGD gene 890940 892137 . - . gene_id "YPR176C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 890940 892137 . - . transcript_id "YPR176C_id002"; gene_id "YPR176C"; gene_name "BET2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 890940 892137 . - . transcript_id "YPR176C_id002"; gene_id "YPR176C"; gene_name "BET2"; +chrXVI SGD transcript 891101 892078 . - . transcript_id "YPR176C_id001"; gene_id "YPR176C"; gene_name "BET2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 891101 892078 . - 0 transcript_id "YPR176C_id001"; gene_name "BET2"; gene_id "YPR176C"; +chrXVI SGD gene 892302 893820 . + . gene_id "YPR178W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 892302 893820 . + . transcript_id "YPR178W_id003"; gene_id "YPR178W"; gene_name "PRP4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 892302 893820 . + . transcript_id "YPR178W_id003"; gene_id "YPR178W"; gene_name "PRP4"; +chrXVI SGD gene 892313 892684 . - . gene_id "YPR177C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 892313 892684 . - . transcript_id "YPR177C_mRNA"; gene_id "YPR177C"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 892313 892684 . - 0 transcript_id "YPR177C_mRNA"; gene_id "YPR177C"; +chrXVI SGD transcript 892332 893729 . + . transcript_id "YPR178W_id001"; gene_id "YPR178W"; gene_name "PRP4"; transcript_biotype "protein_coding"; +chrXVI SGD exon 892332 893729 . + 0 transcript_id "YPR178W_id001"; gene_name "PRP4"; gene_id "YPR178W"; +chrXVI SGD gene 893701 895803 . - . gene_id "YPR179C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 893701 895803 . - . transcript_id "YPR179C_id001"; gene_id "YPR179C"; gene_name "HDA3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 893701 895803 . - . transcript_id "YPR179C_id001"; gene_id "YPR179C"; gene_name "HDA3"; +chrXVI SGD transcript 893797 895764 . - . transcript_id "YPR179C_id005"; gene_id "YPR179C"; gene_name "HDA3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 893797 895764 . - 0 transcript_id "YPR179C_id005"; gene_name "HDA3"; gene_id "YPR179C"; +chrXVI SGD gene 895929 897080 . + . gene_id "YPR180W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 895929 897080 . + . transcript_id "YPR180W_id003"; gene_id "YPR180W"; gene_name "AOS1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 895929 897080 . + . transcript_id "YPR180W_id003"; gene_id "YPR180W"; gene_name "AOS1"; +chrXVI SGD transcript 895961 897004 . + . transcript_id "YPR180W_id001"; gene_id "YPR180W"; gene_name "AOS1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 895961 897004 . + 0 transcript_id "YPR180W_id001"; gene_name "AOS1"; gene_id "YPR180W"; +chrXVI SGD gene 897144 899763 . - . gene_id "YPR181C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 897144 899763 . - . transcript_id "YPR181C_id001"; gene_id "YPR181C"; gene_name "SEC23"; transcript_biotype "protein_coding"; +chrXVI SGD exon 897144 899763 . - . transcript_id "YPR181C_id001"; gene_id "YPR181C"; gene_name "SEC23"; +chrXVI SGD transcript 897361 899667 . - . transcript_id "YPR181C_id002"; gene_id "YPR181C"; gene_name "SEC23"; transcript_biotype "protein_coding"; +chrXVI SGD exon 897361 899667 . - 0 transcript_id "YPR181C_id002"; gene_name "SEC23"; gene_id "YPR181C"; +chrXVI SGD gene 899956 900536 . + . gene_id "YPR182W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 899956 900536 . + . transcript_id "YPR182W_id002"; gene_id "YPR182W"; gene_name "SMX3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 899956 900536 . + . transcript_id "YPR182W_id002"; gene_id "YPR182W"; gene_name "SMX3"; +chrXVI SGD transcript 900194 900454 . + . transcript_id "YPR182W_id001"; gene_id "YPR182W"; gene_name "SMX3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 900194 900454 . + 0 transcript_id "YPR182W_id001"; gene_name "SMX3"; gene_id "YPR182W"; +chrXVI SGD gene 900704 902093 . + . gene_id "YPR183W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 900704 902093 . + . transcript_id "YPR183W_id002"; gene_id "YPR183W"; gene_name "DPM1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 900704 902093 . + . transcript_id "YPR183W_id002"; gene_id "YPR183W"; gene_name "DPM1"; +chrXVI SGD transcript 900755 901558 . + . transcript_id "YPR183W_id001"; gene_id "YPR183W"; gene_name "DPM1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 900755 901558 . + 0 transcript_id "YPR183W_id001"; gene_name "DPM1"; gene_id "YPR183W"; +chrXVI SGD gene 902044 906654 . + . gene_id "YPR184W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 902044 906654 . + . transcript_id "YPR184W_mRNA"; gene_id "YPR184W"; gene_name "GDB1"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 902044 906654 . + 0 transcript_id "YPR184W_mRNA"; gene_name "GDB1"; gene_id "YPR184W"; +chrXVI SGD gene 906908 909741 . + . gene_id "YPR185W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 906908 909741 . + . transcript_id "YPR185W_id004"; gene_id "YPR185W"; gene_name "ATG13"; transcript_biotype "protein_coding"; +chrXVI SGD exon 906908 909741 . + . transcript_id "YPR185W_id004"; gene_id "YPR185W"; gene_name "ATG13"; +chrXVI SGD transcript 907218 909434 . + . transcript_id "YPR185W_id001"; gene_id "YPR185W"; gene_name "ATG13"; transcript_biotype "protein_coding"; +chrXVI SGD exon 907218 909434 . + 0 transcript_id "YPR185W_id001"; gene_name "ATG13"; gene_id "YPR185W"; +chrXVI SGD gene 909602 911043 . - . gene_id "YPR186C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 909602 911043 . - . transcript_id "YPR186C_id009"; gene_id "YPR186C"; gene_name "PZF1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 909602 911043 . - . transcript_id "YPR186C_id009"; gene_id "YPR186C"; gene_name "PZF1"; +chrXVI SGD transcript 909733 911022 . - . transcript_id "YPR186C_id001"; gene_id "YPR186C"; gene_name "PZF1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 909733 911022 . - 0 transcript_id "YPR186C_id001"; gene_name "PZF1"; gene_id "YPR186C"; +chrXVI SGD gene 911241 912597 . + . gene_id "YPR187W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 911241 912597 . + . transcript_id "YPR187W_id002"; gene_id "YPR187W"; gene_name "RPO26"; transcript_biotype "protein_coding"; +chrXVI SGD exon 911241 912597 . + . transcript_id "YPR187W_id002"; gene_id "YPR187W"; gene_name "RPO26"; +chrXVI SGD transcript 911257 911800 . + . transcript_id "YPR187W_id001"; gene_id "YPR187W"; gene_name "RPO26"; transcript_biotype "protein_coding"; +chrXVI SGD exon 911257 911276 . + 0 transcript_id "YPR187W_id001"; gene_name "RPO26"; gene_id "YPR187W"; +chrXVI SGD exon 911353 911800 . + 1 transcript_id "YPR187W_id001"; gene_name "RPO26"; gene_id "YPR187W"; +chrXVI SGD gene 911816 912524 . - . gene_id "YPR188C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 911816 912524 . - . transcript_id "YPR188C_id003"; gene_id "YPR188C"; gene_name "MLC2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 911816 912524 . - . transcript_id "YPR188C_id003"; gene_id "YPR188C"; gene_name "MLC2"; +chrXVI SGD transcript 911988 912479 . - . transcript_id "YPR188C_id001"; gene_id "YPR188C"; gene_name "MLC2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 911988 912479 . - 0 transcript_id "YPR188C_id001"; gene_name "MLC2"; gene_id "YPR188C"; +chrXVI SGD gene 912664 916962 . + . gene_id "YPR189W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 912664 916962 . + . transcript_id "YPR189W_id001"; gene_id "YPR189W"; gene_name "SKI3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 912664 916962 . + 0 transcript_id "YPR189W_id001"; gene_name "SKI3"; gene_id "YPR189W"; +chrXVI SGD gene 916974 919071 . - . gene_id "YPR190C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 916974 919071 . - . transcript_id "YPR190C_id004"; gene_id "YPR190C"; gene_name "RPC82"; transcript_biotype "protein_coding"; +chrXVI SGD exon 916974 919071 . - . transcript_id "YPR190C_id004"; gene_id "YPR190C"; gene_name "RPC82"; +chrXVI SGD transcript 917077 919041 . - . transcript_id "YPR190C_id001"; gene_id "YPR190C"; gene_name "RPC82"; transcript_biotype "protein_coding"; +chrXVI SGD exon 917077 919041 . - 0 transcript_id "YPR190C_id001"; gene_name "RPC82"; gene_id "YPR190C"; +chrXVI SGD gene 919381 920487 . + . gene_id "YPR191W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 919381 920487 . + . transcript_id "YPR191W_id001"; gene_id "YPR191W"; gene_name "QCR2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 919381 920487 . + 0 transcript_id "YPR191W_id001"; gene_name "QCR2"; gene_id "YPR191W"; +chrXVI SGD gene 921843 922928 . + . gene_id "YPR192W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 921843 922928 . + . transcript_id "YPR192W_id001"; gene_id "YPR192W"; gene_name "AQY1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 921843 922928 . + . transcript_id "YPR192W_id001"; gene_id "YPR192W"; gene_name "AQY1"; +chrXVI SGD transcript 921860 922777 . + . transcript_id "YPR192W_id003"; gene_id "YPR192W"; gene_name "AQY1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 921860 922777 . + 0 transcript_id "YPR192W_id003"; gene_name "AQY1"; gene_id "YPR192W"; +chrXVI SGD gene 922875 923992 . - . gene_id "YPR193C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 922875 923992 . - . transcript_id "YPR193C_id002"; gene_id "YPR193C"; gene_name "HPA2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 922875 923992 . - . transcript_id "YPR193C_id002"; gene_id "YPR193C"; gene_name "HPA2"; +chrXVI SGD transcript 922909 923379 . - . transcript_id "YPR193C_id001"; gene_id "YPR193C"; gene_name "HPA2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 922909 923379 . - 0 transcript_id "YPR193C_id001"; gene_name "HPA2"; gene_id "YPR193C"; +chrXVI SGD gene 924304 926937 . - . gene_id "YPR194C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 924304 926937 . - . transcript_id "YPR194C_id001"; gene_id "YPR194C"; gene_name "OPT2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 924304 926937 . - 0 transcript_id "YPR194C_id001"; gene_name "OPT2"; gene_id "YPR194C"; +chrXVI SGD gene 927965 928294 . - . gene_id "YPR195C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 927965 928294 . - . transcript_id "YPR195C_id001"; gene_id "YPR195C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 927965 928294 . - 0 transcript_id "YPR195C_id001"; gene_id "YPR195C"; +chrXVI SGD gene 931347 933225 . + . gene_id "YPR196W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 931347 933225 . + . transcript_id "YPR196W_id001"; gene_id "YPR196W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 931347 933225 . + . transcript_id "YPR196W_id001"; gene_id "YPR196W"; +chrXVI SGD transcript 931376 932788 . + . transcript_id "YPR196W_id002"; gene_id "YPR196W"; transcript_biotype "protein_coding"; +chrXVI SGD exon 931376 932788 . + 0 transcript_id "YPR196W_id002"; gene_id "YPR196W"; +chrXVI SGD gene 933898 934461 . - . gene_id "YPR197C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 933898 934461 . - . transcript_id "YPR197C_id001"; gene_id "YPR197C"; transcript_biotype "protein_coding"; +chrXVI SGD exon 933898 934461 . - 0 transcript_id "YPR197C_id001"; gene_id "YPR197C"; +chrXVI SGD gene 933979 935876 . + . gene_id "YPR198W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 933979 935876 . + . transcript_id "YPR198W_id005"; gene_id "YPR198W"; gene_name "SGE1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 933979 935876 . + . transcript_id "YPR198W_id005"; gene_id "YPR198W"; gene_name "SGE1"; +chrXVI SGD transcript 934034 935665 . + . transcript_id "YPR198W_id001"; gene_id "YPR198W"; gene_name "SGE1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 934034 935665 . + 0 transcript_id "YPR198W_id001"; gene_name "SGE1"; gene_id "YPR198W"; +chrXVI SGD gene 937973 939113 . - . gene_id "YPR199C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 937973 939113 . - . transcript_id "YPR199C_id001"; gene_id "YPR199C"; gene_name "ARR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 937973 939113 . - . transcript_id "YPR199C_id001"; gene_id "YPR199C"; gene_name "ARR1"; +chrXVI SGD transcript 938148 939032 . - . transcript_id "YPR199C_id005"; gene_id "YPR199C"; gene_name "ARR1"; transcript_biotype "protein_coding"; +chrXVI SGD exon 938148 939032 . - 0 transcript_id "YPR199C_id005"; gene_name "ARR1"; gene_id "YPR199C"; +chrXVI SGD gene 939279 939671 . - . gene_id "YPR200C"; gene_biotype "protein_coding"; +chrXVI SGD transcript 939279 939671 . - . transcript_id "YPR200C_id001"; gene_id "YPR200C"; gene_name "ARR2"; transcript_biotype "protein_coding"; +chrXVI SGD exon 939279 939671 . - 0 transcript_id "YPR200C_id001"; gene_name "ARR2"; gene_id "YPR200C"; +chrXVI SGD gene 939673 941233 . + . gene_id "YPR201W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 939673 941233 . + . transcript_id "YPR201W_id003"; gene_id "YPR201W"; gene_name "ARR3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 939673 941233 . + . transcript_id "YPR201W_id003"; gene_id "YPR201W"; gene_name "ARR3"; +chrXVI SGD transcript 939922 941136 . + . transcript_id "YPR201W_id001"; gene_id "YPR201W"; gene_name "ARR3"; transcript_biotype "protein_coding"; +chrXVI SGD exon 939922 941136 . + 0 transcript_id "YPR201W_id001"; gene_name "ARR3"; gene_id "YPR201W"; +chrXVI SGD gene 943032 943896 . + . gene_id "YPR202W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 943032 943896 . + . transcript_id "YPR202W_mRNA"; gene_id "YPR202W"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 943032 943050 . + 0 transcript_id "YPR202W_mRNA"; gene_id "YPR202W"; +chrXVI SGD CDS 943199 943896 . + 2 transcript_id "YPR202W_mRNA"; gene_id "YPR202W"; +chrXVI SGD gene 943880 944188 . + . gene_id "YPR203W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 943880 944188 . + . transcript_id "YPR203W_mRNA"; gene_id "YPR203W"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 943880 944188 . + 0 transcript_id "YPR203W_mRNA"; gene_id "YPR203W"; +chrXVI SGD gene 944603 947701 . + . gene_id "YPR204W"; gene_biotype "protein_coding"; +chrXVI SGD transcript 944603 947701 . + . transcript_id "YPR204W_mRNA"; gene_id "YPR204W"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 944603 947701 . + 0 transcript_id "YPR204W_mRNA"; gene_id "YPR204W"; +chrXVI SGD gene 946856 947338 . - . gene_id "YPR204C-A"; gene_biotype "protein_coding"; +chrXVI SGD transcript 946856 947338 . - . transcript_id "YPR204C-A_mRNA"; gene_id "YPR204C-A"; transcript_biotype "protein_coding"; +chrXVI SGD CDS 946856 947338 . - 0 transcript_id "YPR204C-A_mRNA"; gene_id "YPR204C-A"; +chrmt SGD gene 731 802 . + . gene_id "YNCQ0001W"; gene_biotype "ncRNA"; +chrmt SGD transcript 731 802 . + . transcript_id "YNCQ0001W_tRNA"; gene_id "YNCQ0001W"; transcript_biotype "ncRNA"; +chrmt SGD exon 731 802 . + . transcript_id "YNCQ0001W_tRNA"; gene_id "YNCQ0001W"; +chrmt SGD gene 3952 4338 . + . gene_id "Q0010"; gene_biotype "protein_coding"; +chrmt SGD transcript 3952 4338 . + . transcript_id "Q0010_mRNA"; gene_id "Q0010"; transcript_biotype "protein_coding"; +chrmt SGD CDS 3952 4338 . + 0 transcript_id "Q0010_mRNA"; gene_id "Q0010"; +chrmt SGD gene 4254 4415 . + . gene_id "Q0017"; gene_biotype "protein_coding"; +chrmt SGD transcript 4254 4415 . + . transcript_id "Q0017_mRNA"; gene_id "Q0017"; transcript_biotype "protein_coding"; +chrmt SGD CDS 4254 4415 . + 0 transcript_id "Q0017_mRNA"; gene_id "Q0017"; +chrmt SGD gene 6546 8194 . + . gene_id "YNCQ0002W"; gene_biotype "ncRNA"; +chrmt SGD transcript 6546 8194 . + . transcript_id "YNCQ0002W_rRNA"; gene_id "YNCQ0002W"; gene_name "15S_RRNA"; transcript_biotype "ncRNA"; +chrmt SGD exon 6546 8194 . + . transcript_id "YNCQ0002W_rRNA"; gene_name "15S_RRNA"; gene_id "YNCQ0002W"; +chrmt SGD gene 9374 9447 . + . gene_id "YNCQ0003W"; gene_biotype "ncRNA"; +chrmt SGD transcript 9374 9447 . + . transcript_id "YNCQ0003W_tRNA"; gene_id "YNCQ0003W"; transcript_biotype "ncRNA"; +chrmt SGD exon 9374 9447 . + . transcript_id "YNCQ0003W_tRNA"; gene_id "YNCQ0003W"; +chrmt SGD gene 11667 11957 . + . gene_id "Q0032"; gene_biotype "protein_coding"; +chrmt SGD transcript 11667 11957 . + . transcript_id "Q0032_mRNA"; gene_id "Q0032"; transcript_biotype "protein_coding"; +chrmt SGD CDS 11667 11957 . + 0 transcript_id "Q0032_mRNA"; gene_id "Q0032"; +chrmt SGD gene 13818 16322 . + . gene_id "Q0050"; gene_biotype "protein_coding"; +chrmt SGD transcript 13818 16322 . + . transcript_id "Q0050_mRNA"; gene_id "Q0050"; gene_name "AI1"; transcript_biotype "protein_coding"; +chrmt SGD CDS 13818 16322 . + 0 transcript_id "Q0050_mRNA"; gene_name "AI1"; gene_id "Q0050"; +chrmt SGD gene 13818 18830 . + . gene_id "Q0055"; gene_biotype "protein_coding"; +chrmt SGD transcript 13818 18830 . + . transcript_id "Q0055_mRNA"; gene_id "Q0055"; gene_name "AI2"; transcript_biotype "protein_coding"; +chrmt SGD CDS 13818 13986 . + 0 transcript_id "Q0055_mRNA"; gene_name "AI2"; gene_id "Q0055"; +chrmt SGD CDS 16435 18830 . + 2 transcript_id "Q0055_mRNA"; gene_name "AI2"; gene_id "Q0055"; +chrmt SGD gene 13818 19996 . + . gene_id "Q0060"; gene_biotype "protein_coding"; +chrmt SGD transcript 13818 19996 . + . transcript_id "Q0060_mRNA"; gene_id "Q0060"; gene_name "AI3"; transcript_biotype "protein_coding"; +chrmt SGD CDS 13818 13986 . + 0 transcript_id "Q0060_mRNA"; gene_name "AI3"; gene_id "Q0060"; +chrmt SGD CDS 16435 16470 . + 2 transcript_id "Q0060_mRNA"; gene_name "AI3"; gene_id "Q0060"; +chrmt SGD CDS 18954 19996 . + 2 transcript_id "Q0060_mRNA"; gene_name "AI3"; gene_id "Q0060"; +chrmt SGD gene 13818 21935 . + . gene_id "Q0065"; gene_biotype "protein_coding"; +chrmt SGD transcript 13818 21935 . + . transcript_id "Q0065_mRNA"; gene_id "Q0065"; gene_name "AI4"; transcript_biotype "protein_coding"; +chrmt SGD CDS 13818 13986 . + 0 transcript_id "Q0065_mRNA"; gene_name "AI4"; gene_id "Q0065"; +chrmt SGD CDS 16435 16470 . + 2 transcript_id "Q0065_mRNA"; gene_name "AI4"; gene_id "Q0065"; +chrmt SGD CDS 18954 18991 . + 2 transcript_id "Q0065_mRNA"; gene_name "AI4"; gene_id "Q0065"; +chrmt SGD CDS 20508 21935 . + 0 transcript_id "Q0065_mRNA"; gene_name "AI4"; gene_id "Q0065"; +chrmt SGD gene 13818 23167 . + . gene_id "Q0070"; gene_biotype "protein_coding"; +chrmt SGD transcript 13818 23167 . + . transcript_id "Q0070_mRNA"; gene_id "Q0070"; gene_name "AI5_ALPHA"; transcript_biotype "protein_coding"; +chrmt SGD CDS 13818 13986 . + 0 transcript_id "Q0070_mRNA"; gene_name "AI5_ALPHA"; gene_id "Q0070"; +chrmt SGD CDS 16435 16470 . + 2 transcript_id "Q0070_mRNA"; gene_name "AI5_ALPHA"; gene_id "Q0070"; +chrmt SGD CDS 18954 18991 . + 2 transcript_id "Q0070_mRNA"; gene_name "AI5_ALPHA"; gene_id "Q0070"; +chrmt SGD CDS 20508 20984 . + 0 transcript_id "Q0070_mRNA"; gene_name "AI5_ALPHA"; gene_id "Q0070"; +chrmt SGD CDS 21995 23167 . + 0 transcript_id "Q0070_mRNA"; gene_name "AI5_ALPHA"; gene_id "Q0070"; +chrmt SGD gene 13818 26701 . + . gene_id "Q0045"; gene_biotype "protein_coding"; +chrmt SGD transcript 13818 26701 . + . transcript_id "Q0045_mRNA"; gene_id "Q0045"; gene_name "COX1"; transcript_biotype "protein_coding"; +chrmt SGD CDS 13818 13986 . + 0 transcript_id "Q0045_mRNA"; gene_name "COX1"; gene_id "Q0045"; +chrmt SGD CDS 16435 16470 . + 2 transcript_id "Q0045_mRNA"; gene_name "COX1"; gene_id "Q0045"; +chrmt SGD CDS 18954 18991 . + 2 transcript_id "Q0045_mRNA"; gene_name "COX1"; gene_id "Q0045"; +chrmt SGD CDS 20508 20984 . + 0 transcript_id "Q0045_mRNA"; gene_name "COX1"; gene_id "Q0045"; +chrmt SGD CDS 21995 22246 . + 0 transcript_id "Q0045_mRNA"; gene_name "COX1"; gene_id "Q0045"; +chrmt SGD CDS 23612 23746 . + 0 transcript_id "Q0045_mRNA"; gene_name "COX1"; gene_id "Q0045"; +chrmt SGD CDS 25318 25342 . + 0 transcript_id "Q0045_mRNA"; gene_name "COX1"; gene_id "Q0045"; +chrmt SGD CDS 26229 26701 . + 2 transcript_id "Q0045_mRNA"; gene_name "COX1"; gene_id "Q0045"; +chrmt SGD gene 24156 25255 . + . gene_id "Q0075"; gene_biotype "protein_coding"; +chrmt SGD transcript 24156 25255 . + . transcript_id "Q0075_mRNA"; gene_id "Q0075"; gene_name "AI5_BETA"; transcript_biotype "protein_coding"; +chrmt SGD CDS 24156 24870 . + 0 transcript_id "Q0075_mRNA"; gene_name "AI5_BETA"; gene_id "Q0075"; +chrmt SGD CDS 24906 25255 . + 2 transcript_id "Q0075_mRNA"; gene_name "AI5_BETA"; gene_id "Q0075"; +chrmt SGD gene 27666 27812 . + . gene_id "Q0080"; gene_biotype "protein_coding"; +chrmt SGD transcript 27666 27812 . + . transcript_id "Q0080_mRNA"; gene_id "Q0080"; gene_name "ATP8"; transcript_biotype "protein_coding"; +chrmt SGD CDS 27666 27812 . + 0 transcript_id "Q0080_mRNA"; gene_name "ATP8"; gene_id "Q0080"; +chrmt SGD gene 28487 29266 . + . gene_id "Q0085"; gene_biotype "protein_coding"; +chrmt SGD transcript 28487 29266 . + . transcript_id "Q0085_mRNA"; gene_id "Q0085"; gene_name "ATP6"; transcript_biotype "protein_coding"; +chrmt SGD CDS 28487 29266 . + 0 transcript_id "Q0085_mRNA"; gene_name "ATP6"; gene_id "Q0085"; +chrmt SGD gene 30874 31014 . + . gene_id "Q0092"; gene_biotype "protein_coding"; +chrmt SGD transcript 30874 31014 . + . transcript_id "Q0092_mRNA"; gene_id "Q0092"; transcript_biotype "protein_coding"; +chrmt SGD CDS 30874 31014 . + 0 transcript_id "Q0092_mRNA"; gene_id "Q0092"; +chrmt SGD gene 35373 35444 . + . gene_id "YNCQ0004W"; gene_biotype "ncRNA"; +chrmt SGD transcript 35373 35444 . + . transcript_id "YNCQ0004W_tRNA"; gene_id "YNCQ0004W"; transcript_biotype "ncRNA"; +chrmt SGD exon 35373 35444 . + . transcript_id "YNCQ0004W_tRNA"; gene_id "YNCQ0004W"; +chrmt SGD gene 36540 38579 . + . gene_id "Q0110"; gene_biotype "protein_coding"; +chrmt SGD transcript 36540 38579 . + . transcript_id "Q0110_mRNA"; gene_id "Q0110"; gene_name "BI2"; transcript_biotype "protein_coding"; +chrmt SGD CDS 36540 36954 . + 0 transcript_id "Q0110_mRNA"; gene_name "BI2"; gene_id "Q0110"; +chrmt SGD CDS 37723 38579 . + 2 transcript_id "Q0110_mRNA"; gene_name "BI2"; gene_id "Q0110"; +chrmt SGD gene 36540 40265 . + . gene_id "Q0115"; gene_biotype "protein_coding"; +chrmt SGD transcript 36540 40265 . + . transcript_id "Q0115_mRNA"; gene_id "Q0115"; gene_name "BI3"; transcript_biotype "protein_coding"; +chrmt SGD CDS 36540 36954 . + 0 transcript_id "Q0115_mRNA"; gene_name "BI3"; gene_id "Q0115"; +chrmt SGD CDS 37723 37736 . + 2 transcript_id "Q0115_mRNA"; gene_name "BI3"; gene_id "Q0115"; +chrmt SGD CDS 39141 40265 . + 0 transcript_id "Q0115_mRNA"; gene_name "BI3"; gene_id "Q0115"; +chrmt SGD gene 36540 42251 . + . gene_id "Q0120"; gene_biotype "protein_coding"; +chrmt SGD transcript 36540 42251 . + . transcript_id "Q0120_mRNA"; gene_id "Q0120"; gene_name "BI4"; transcript_biotype "protein_coding"; +chrmt SGD CDS 36540 36954 . + 0 transcript_id "Q0120_mRNA"; gene_name "BI4"; gene_id "Q0120"; +chrmt SGD CDS 37723 37736 . + 2 transcript_id "Q0120_mRNA"; gene_name "BI4"; gene_id "Q0120"; +chrmt SGD CDS 39141 39217 . + 0 transcript_id "Q0120_mRNA"; gene_name "BI4"; gene_id "Q0120"; +chrmt SGD CDS 40841 42251 . + 1 transcript_id "Q0120_mRNA"; gene_name "BI4"; gene_id "Q0120"; +chrmt SGD gene 36540 43647 . + . gene_id "Q0105"; gene_biotype "protein_coding"; +chrmt SGD transcript 36540 43647 . + . transcript_id "Q0105_mRNA"; gene_id "Q0105"; gene_name "COB"; transcript_biotype "protein_coding"; +chrmt SGD CDS 36540 36954 . + 0 transcript_id "Q0105_mRNA"; gene_name "COB"; gene_id "Q0105"; +chrmt SGD CDS 37723 37736 . + 2 transcript_id "Q0105_mRNA"; gene_name "COB"; gene_id "Q0105"; +chrmt SGD CDS 39141 39217 . + 0 transcript_id "Q0105_mRNA"; gene_name "COB"; gene_id "Q0105"; +chrmt SGD CDS 40841 41090 . + 1 transcript_id "Q0105_mRNA"; gene_name "COB"; gene_id "Q0105"; +chrmt SGD CDS 42508 42558 . + 0 transcript_id "Q0105_mRNA"; gene_name "COB"; gene_id "Q0105"; +chrmt SGD CDS 43297 43647 . + 0 transcript_id "Q0105_mRNA"; gene_name "COB"; gene_id "Q0105"; +chrmt SGD gene 46723 46953 . + . gene_id "Q0130"; gene_biotype "protein_coding"; +chrmt SGD transcript 46723 46953 . + . transcript_id "Q0130_mRNA"; gene_id "Q0130"; gene_name "OLI1"; transcript_biotype "protein_coding"; +chrmt SGD CDS 46723 46953 . + 0 transcript_id "Q0130_mRNA"; gene_name "OLI1"; gene_id "Q0130"; +chrmt SGD gene 48201 48290 . + . gene_id "YNCQ0005W"; gene_biotype "ncRNA"; +chrmt SGD transcript 48201 48290 . + . transcript_id "YNCQ0005W_tRNA"; gene_id "YNCQ0005W"; transcript_biotype "ncRNA"; +chrmt SGD exon 48201 48290 . + . transcript_id "YNCQ0005W_tRNA"; gene_id "YNCQ0005W"; +chrmt SGD gene 48901 50097 . + . gene_id "Q0140"; gene_biotype "protein_coding"; +chrmt SGD transcript 48901 50097 . + . transcript_id "Q0140_mRNA"; gene_id "Q0140"; gene_name "VAR1"; transcript_biotype "protein_coding"; +chrmt SGD CDS 48901 50097 . + 0 transcript_id "Q0140_mRNA"; gene_name "VAR1"; gene_id "Q0140"; +chrmt SGD gene 51052 51228 . + . gene_id "Q0142"; gene_biotype "protein_coding"; +chrmt SGD transcript 51052 51228 . + . transcript_id "Q0142_mRNA"; gene_id "Q0142"; transcript_biotype "protein_coding"; +chrmt SGD CDS 51052 51228 . + 0 transcript_id "Q0142_mRNA"; gene_id "Q0142"; +chrmt SGD gene 51277 51429 . + . gene_id "Q0143"; gene_biotype "protein_coding"; +chrmt SGD transcript 51277 51429 . + . transcript_id "Q0143_mRNA"; gene_id "Q0143"; transcript_biotype "protein_coding"; +chrmt SGD CDS 51277 51429 . + 0 transcript_id "Q0143_mRNA"; gene_id "Q0143"; +chrmt SGD gene 54109 54438 . + . gene_id "Q0144"; gene_biotype "protein_coding"; +chrmt SGD transcript 54109 54438 . + . transcript_id "Q0144_mRNA"; gene_id "Q0144"; transcript_biotype "protein_coding"; +chrmt SGD CDS 54109 54438 . + 0 transcript_id "Q0144_mRNA"; gene_id "Q0144"; +chrmt SGD gene 58009 62447 . + . gene_id "YNCQ0006W"; gene_biotype "ncRNA"; +chrmt SGD transcript 58009 62447 . + . transcript_id "YNCQ0006W_rRNA"; gene_id "YNCQ0006W"; gene_name "21S_RRNA"; transcript_biotype "ncRNA"; +chrmt SGD exon 58009 60724 . + . transcript_id "YNCQ0006W_rRNA"; gene_name "21S_RRNA"; gene_id "YNCQ0006W"; +chrmt SGD exon 61868 62447 . + . transcript_id "YNCQ0006W_rRNA"; gene_name "21S_RRNA"; gene_id "YNCQ0006W"; +chrmt SGD gene 61022 61729 . + . gene_id "Q0160"; gene_biotype "protein_coding"; +chrmt SGD transcript 61022 61729 . + . transcript_id "Q0160_mRNA"; gene_id "Q0160"; gene_name "SCEI"; transcript_biotype "protein_coding"; +chrmt SGD CDS 61022 61729 . + 0 transcript_id "Q0160_mRNA"; gene_name "SCEI"; gene_id "Q0160"; +chrmt SGD gene 63862 63937 . + . gene_id "YNCQ0007W"; gene_biotype "ncRNA"; +chrmt SGD transcript 63862 63937 . + . transcript_id "YNCQ0007W_tRNA"; gene_id "YNCQ0007W"; transcript_biotype "ncRNA"; +chrmt SGD exon 63862 63937 . + . transcript_id "YNCQ0007W_tRNA"; gene_id "YNCQ0007W"; +chrmt SGD gene 64415 64490 . + . gene_id "YNCQ0008W"; gene_biotype "ncRNA"; +chrmt SGD transcript 64415 64490 . + . transcript_id "YNCQ0008W_tRNA"; gene_id "YNCQ0008W"; transcript_biotype "ncRNA"; +chrmt SGD exon 64415 64490 . + . transcript_id "YNCQ0008W_tRNA"; gene_id "YNCQ0008W"; +chrmt SGD gene 64596 64670 . + . gene_id "YNCQ0009W"; gene_biotype "ncRNA"; +chrmt SGD transcript 64596 64670 . + . transcript_id "YNCQ0009W_tRNA"; gene_id "YNCQ0009W"; transcript_biotype "ncRNA"; +chrmt SGD exon 64596 64670 . + . transcript_id "YNCQ0009W_tRNA"; gene_id "YNCQ0009W"; +chrmt SGD gene 65770 66174 . + . gene_id "Q0182"; gene_biotype "protein_coding"; +chrmt SGD transcript 65770 66174 . + . transcript_id "Q0182_mRNA"; gene_id "Q0182"; transcript_biotype "protein_coding"; +chrmt SGD CDS 65770 66174 . + 0 transcript_id "Q0182_mRNA"; gene_id "Q0182"; +chrmt SGD gene 66095 66179 . + . gene_id "YNCQ0010W"; gene_biotype "ncRNA"; +chrmt SGD transcript 66095 66179 . + . transcript_id "YNCQ0010W_tRNA"; gene_id "YNCQ0010W"; transcript_biotype "ncRNA"; +chrmt SGD exon 66095 66179 . + . transcript_id "YNCQ0010W_tRNA"; gene_id "YNCQ0010W"; +chrmt SGD gene 66210 66285 . + . gene_id "YNCQ0011W"; gene_biotype "ncRNA"; +chrmt SGD transcript 66210 66285 . + . transcript_id "YNCQ0011W_tRNA"; gene_id "YNCQ0011W"; transcript_biotype "ncRNA"; +chrmt SGD exon 66210 66285 . + . transcript_id "YNCQ0011W_tRNA"; gene_id "YNCQ0011W"; +chrmt SGD gene 67061 67134 . + . gene_id "YNCQ0012W"; gene_biotype "ncRNA"; +chrmt SGD transcript 67061 67134 . + . transcript_id "YNCQ0012W_tRNA"; gene_id "YNCQ0012W"; transcript_biotype "ncRNA"; +chrmt SGD exon 67061 67134 . + . transcript_id "YNCQ0012W_tRNA"; gene_id "YNCQ0012W"; +chrmt SGD gene 67309 67381 . + . gene_id "YNCQ0013W"; gene_biotype "ncRNA"; +chrmt SGD transcript 67309 67381 . + . transcript_id "YNCQ0013W_tRNA"; gene_id "YNCQ0013W"; transcript_biotype "ncRNA"; +chrmt SGD exon 67309 67381 . + . transcript_id "YNCQ0013W_tRNA"; gene_id "YNCQ0013W"; +chrmt SGD gene 67468 67542 . + . gene_id "YNCQ0014W"; gene_biotype "ncRNA"; +chrmt SGD transcript 67468 67542 . + . transcript_id "YNCQ0014W_tRNA"; gene_id "YNCQ0014W"; transcript_biotype "ncRNA"; +chrmt SGD exon 67468 67542 . + . transcript_id "YNCQ0014W_tRNA"; gene_id "YNCQ0014W"; +chrmt SGD gene 68322 68396 . + . gene_id "YNCQ0015W"; gene_biotype "ncRNA"; +chrmt SGD transcript 68322 68396 . + . transcript_id "YNCQ0015W_tRNA"; gene_id "YNCQ0015W"; transcript_biotype "ncRNA"; +chrmt SGD exon 68322 68396 . + . transcript_id "YNCQ0015W_tRNA"; gene_id "YNCQ0015W"; +chrmt SGD gene 69203 69288 . + . gene_id "YNCQ0016W"; gene_biotype "ncRNA"; +chrmt SGD transcript 69203 69288 . + . transcript_id "YNCQ0016W_tRNA"; gene_id "YNCQ0016W"; transcript_biotype "ncRNA"; +chrmt SGD exon 69203 69288 . + . transcript_id "YNCQ0016W_tRNA"; gene_id "YNCQ0016W"; +chrmt SGD gene 69289 69362 . + . gene_id "YNCQ0017W"; gene_biotype "ncRNA"; +chrmt SGD transcript 69289 69362 . + . transcript_id "YNCQ0017W_tRNA"; gene_id "YNCQ0017W"; transcript_biotype "ncRNA"; +chrmt SGD exon 69289 69362 . + . transcript_id "YNCQ0017W_tRNA"; gene_id "YNCQ0017W"; +chrmt SGD gene 69846 69921 . + . gene_id "YNCQ0018W"; gene_biotype "ncRNA"; +chrmt SGD transcript 69846 69921 . + . transcript_id "YNCQ0018W_tRNA"; gene_id "YNCQ0018W"; transcript_biotype "ncRNA"; +chrmt SGD exon 69846 69921 . + . transcript_id "YNCQ0018W_tRNA"; gene_id "YNCQ0018W"; +chrmt SGD gene 70162 70237 . + . gene_id "YNCQ0019W"; gene_biotype "ncRNA"; +chrmt SGD transcript 70162 70237 . + . transcript_id "YNCQ0019W_tRNA"; gene_id "YNCQ0019W"; transcript_biotype "ncRNA"; +chrmt SGD exon 70162 70237 . + . transcript_id "YNCQ0019W_tRNA"; gene_id "YNCQ0019W"; +chrmt SGD gene 70824 70907 . + . gene_id "YNCQ0020W"; gene_biotype "ncRNA"; +chrmt SGD transcript 70824 70907 . + . transcript_id "YNCQ0020W_tRNA"; gene_id "YNCQ0020W"; transcript_biotype "ncRNA"; +chrmt SGD exon 70824 70907 . + . transcript_id "YNCQ0020W_tRNA"; gene_id "YNCQ0020W"; +chrmt SGD gene 71433 71503 . + . gene_id "YNCQ0021W"; gene_biotype "ncRNA"; +chrmt SGD transcript 71433 71503 . + . transcript_id "YNCQ0021W_tRNA"; gene_id "YNCQ0021W"; transcript_biotype "ncRNA"; +chrmt SGD exon 71433 71503 . + . transcript_id "YNCQ0021W_tRNA"; gene_id "YNCQ0021W"; +chrmt SGD gene 72630 72705 . + . gene_id "YNCQ0022W"; gene_biotype "ncRNA"; +chrmt SGD transcript 72630 72705 . + . transcript_id "YNCQ0022W_tRNA"; gene_id "YNCQ0022W"; transcript_biotype "ncRNA"; +chrmt SGD exon 72630 72705 . + . transcript_id "YNCQ0022W_tRNA"; gene_id "YNCQ0022W"; +chrmt SGD gene 73758 74513 . + . gene_id "Q0250"; gene_biotype "protein_coding"; +chrmt SGD transcript 73758 74513 . + . transcript_id "Q0250_mRNA"; gene_id "Q0250"; gene_name "COX2"; transcript_biotype "protein_coding"; +chrmt SGD CDS 73758 74513 . + 0 transcript_id "Q0250_mRNA"; gene_name "COX2"; gene_id "Q0250"; +chrmt SGD gene 74495 75984 . + . gene_id "Q0255"; gene_biotype "protein_coding"; +chrmt SGD transcript 74495 75984 . + . transcript_id "Q0255_mRNA"; gene_id "Q0255"; transcript_biotype "protein_coding"; +chrmt SGD CDS 74495 75622 . + 0 transcript_id "Q0255_mRNA"; gene_id "Q0255"; +chrmt SGD CDS 75663 75872 . + 0 transcript_id "Q0255_mRNA"; gene_id "Q0255"; +chrmt SGD CDS 75904 75984 . + 0 transcript_id "Q0255_mRNA"; gene_id "Q0255"; +chrmt SGD gene 77431 77505 . + . gene_id "YNCQ0023W"; gene_biotype "ncRNA"; +chrmt SGD transcript 77431 77505 . + . transcript_id "YNCQ0023W_tRNA"; gene_id "YNCQ0023W"; transcript_biotype "ncRNA"; +chrmt SGD exon 77431 77505 . + . transcript_id "YNCQ0023W_tRNA"; gene_id "YNCQ0023W"; +chrmt SGD gene 78089 78162 . - . gene_id "YNCQ0024C"; gene_biotype "ncRNA"; +chrmt SGD transcript 78089 78162 . - . transcript_id "YNCQ0024C_tRNA"; gene_id "YNCQ0024C"; transcript_biotype "ncRNA"; +chrmt SGD exon 78089 78162 . - . transcript_id "YNCQ0024C_tRNA"; gene_id "YNCQ0024C"; +chrmt SGD gene 78533 78608 . + . gene_id "YNCQ0025W"; gene_biotype "ncRNA"; +chrmt SGD transcript 78533 78608 . + . transcript_id "YNCQ0025W_tRNA"; gene_id "YNCQ0025W"; transcript_biotype "ncRNA"; +chrmt SGD exon 78533 78608 . + . transcript_id "YNCQ0025W_tRNA"; gene_id "YNCQ0025W"; +chrmt SGD gene 79213 80022 . + . gene_id "Q0275"; gene_biotype "protein_coding"; +chrmt SGD transcript 79213 80022 . + . transcript_id "Q0275_mRNA"; gene_id "Q0275"; gene_name "COX3"; transcript_biotype "protein_coding"; +chrmt SGD CDS 79213 80022 . + 0 transcript_id "Q0275_mRNA"; gene_name "COX3"; gene_id "Q0275"; +chrmt SGD gene 85035 85112 . + . gene_id "YNCQ0026W"; gene_biotype "ncRNA"; +chrmt SGD transcript 85035 85112 . + . transcript_id "YNCQ0026W_tRNA"; gene_id "YNCQ0026W"; transcript_biotype "ncRNA"; +chrmt SGD exon 85035 85112 . + . transcript_id "YNCQ0026W_tRNA"; gene_id "YNCQ0026W"; +chrmt SGD gene 85295 85777 . + . gene_id "YNCQ0027W"; gene_biotype "ncRNA"; +chrmt SGD transcript 85295 85777 . + . transcript_id "YNCQ0027W_ncRNA"; gene_id "YNCQ0027W"; gene_name "RPM1"; transcript_biotype "ncRNA"; +chrmt SGD exon 85295 85777 . + . transcript_id "YNCQ0027W_ncRNA"; gene_name "RPM1"; gene_id "YNCQ0027W"; +chrmt SGD gene 85554 85709 . + . gene_id "Q0297"; gene_biotype "protein_coding"; +chrmt SGD transcript 85554 85709 . + . transcript_id "Q0297_mRNA"; gene_id "Q0297"; transcript_biotype "protein_coding"; +chrmt SGD CDS 85554 85709 . + 0 transcript_id "Q0297_mRNA"; gene_id "Q0297"; diff --git a/grammar.py b/grammar.py index 988ac4c..2c16455 100644 --- a/grammar.py +++ b/grammar.py @@ -73,7 +73,8 @@ def get_value_at_pos(p): def get_value_at_pos(p): return get_nt_at_gene_coord(p, gene, gene['contig']) - if get_value_at_pos(pos) == indicated_value: + # Very important to be case-insensitive + if get_value_at_pos(pos).upper() == indicated_value.upper(): return '' if pos < 0: @@ -170,7 +171,7 @@ def check_multiple_positions_dont_exist(groups, gene, seq_type): { 'type': 'partial_amino_acid_deletion', 'rule_name': 'single_aa', - 'regex': f'(? list[str]: { 'type': 'partial_amino_acid_deletion', 'rule_name': 'single_aa', - 'regex': f'(? list[str] { 'type': 'partial_nucleotide_deletion', 'rule_name': 'single_nt', - 'regex': f'(? ['V123A', 'L124A', 'P125A']""" - + """Split into single variants: VLP123AAA => ['V123A', 'L124A', 'P125A']""" groups = re.match(regex, value).groups() return [f'{aa1}{int(groups[1])+i}{aa2}' for i, (aa1, aa2) in enumerate(zip(groups[0], groups[2]))] @@ -201,4 +200,4 @@ def join_multiple_aa(values): if len(values) == 0: return '' sorted_values = sorted(values, key=lambda x: int(re.search(r'\d+', x).group())) - return ''.join(v[0] for v in sorted_values) + '-' + sorted_values[0][1:-1] + '-' + ''.join(v[-1] for v in sorted_values) + return ''.join(v[0] for v in sorted_values) + sorted_values[0][1:-1] + ''.join(v[-1] for v in sorted_values) diff --git a/results/sgd/description_name/allele_auto_fix.tsv b/results/sgd/description_name/allele_auto_fix.tsv new file mode 100644 index 0000000..de619ee --- /dev/null +++ b/results/sgd/description_name/allele_auto_fix.tsv @@ -0,0 +1,27 @@ +systematic_id allele_id allele_name allele_description allele_type change_description_to change_name_to change_type_to auto_fix_comment sequence_error solution_index allele_parts rules_applied reference +YBR010W 719 hht1-R72A R72A amino_acid_dummy R73A amino_acid_mutation histone_fix R72 R72A amino_acid_mutation:single_aa PMID:33843274 +YEL061C 3694 cin8-D528K D528K amino_acid_dummy D490K cin8-D490K amino_acid_mutation multi_shift_fix D528 D528K amino_acid_mutation:single_aa PMID:34387192 +YEL061C 3695 cin8-G522N G522N amino_acid_dummy G484N cin8-G484N amino_acid_mutation multi_shift_fix G522 G522N amino_acid_mutation:single_aa PMID:34387192 +YEL061C 3696 cin8-K516M K516M amino_acid_dummy K478M cin8-K478M amino_acid_mutation multi_shift_fix K516 K516M amino_acid_mutation:single_aa PMID:34387192 +YEL061C 3697 cin8-M526T M526T amino_acid_dummy M488T cin8-M488T amino_acid_mutation multi_shift_fix M526 M526T amino_acid_mutation:single_aa PMID:34387192 +YKR063C 8662 las1-G4A G4A amino_acid_dummy G132A las1-G132A amino_acid_mutation multi_shift_fix G4 G4A amino_acid_mutation:single_aa PMID:32220933 +YKR063C 8663 las1-H2D H2D amino_acid_dummy H130D las1-H130D amino_acid_mutation multi_shift_fix H2 H2D amino_acid_mutation:single_aa PMID:32220933 +YKR063C 8664 las1-H2N H2N amino_acid_dummy H130N las1-H130N amino_acid_mutation multi_shift_fix H2 H2N amino_acid_mutation:single_aa PMID:32220933 +YKR063C 8665 las1-H2R H2R amino_acid_dummy H130R las1-H130R amino_acid_mutation multi_shift_fix H2 H2R amino_acid_mutation:single_aa PMID:32220933 +YKR063C 8666 las1-H6A H6A amino_acid_dummy H134A las1-H134A amino_acid_mutation multi_shift_fix H6 H6A amino_acid_mutation:single_aa PMID:32220933 +YKR063C 8667 las1-H6N H6N amino_acid_dummy H134N las1-H134N amino_acid_mutation multi_shift_fix H6 H6N amino_acid_mutation:single_aa PMID:32220933 +YKR063C 8668 las1-R1E R1E amino_acid_dummy R129E las1-R129E amino_acid_mutation multi_shift_fix R1 R1E amino_acid_mutation:single_aa PMID:32220933 +YKR063C 8669 las1-R1K R1K amino_acid_dummy R129K las1-R129K amino_acid_mutation multi_shift_fix R1 R1K amino_acid_mutation:single_aa PMID:32220933 +YKR063C 8670 las1-T5A T5A amino_acid_dummy T133A las1-T133A amino_acid_mutation multi_shift_fix T5 T5A amino_acid_mutation:single_aa PMID:32220933 +YKR063C 8671 las1-T5S T5S amino_acid_dummy T133S las1-T133S amino_acid_mutation multi_shift_fix T5 T5S amino_acid_mutation:single_aa PMID:32220933 +YKR063C 8672 las1-W3F W3F amino_acid_dummy W131F las1-W131F amino_acid_mutation multi_shift_fix W3 W3F amino_acid_mutation:single_aa PMID:32220933 +YKR063C 8673 las1-W3L W3L amino_acid_dummy W131L las1-W131L amino_acid_mutation multi_shift_fix W3 W3L amino_acid_mutation:single_aa PMID:32220933 +YNL304W 11804 ypt11-G40D G40D amino_acid_dummy G102D ypt11-G102D amino_acid_mutation old_coords_fix, revision 051111: G40 G40D amino_acid_mutation:single_aa PMID:12391144,PMID:18595704 +YNL304W 11805 ypt11-I144N I144N amino_acid_dummy I206N ypt11-I206N amino_acid_mutation old_coords_fix, revision 051111: I144 I144N amino_acid_mutation:single_aa PMID:12391144 +YNL304W 11815 ypt11-V246D V246D amino_acid_dummy V308D ypt11-V308D amino_acid_mutation old_coords_fix, revision 051111: V246 V246D amino_acid_mutation:single_aa PMID:12391144 +YOL012C 12037 htz1-I109T I109T amino_acid_dummy I110T amino_acid_mutation histone_fix I109 I109T amino_acid_mutation:single_aa PMID:24098487 +YOL012C 12038 htz1-S111P S111P amino_acid_dummy S112P amino_acid_mutation histone_fix S111 S111P amino_acid_mutation:single_aa PMID:24098487 +YOR211C 12809 mgm1-E114A E114A amino_acid_dummy E93A mgm1-E93A amino_acid_mutation old_coords_fix, revision 061006: E114 E114A amino_acid_mutation:single_aa PMID:31764998 +YOR211C 12829 mgm1-R78A R78A amino_acid_dummy R57A mgm1-R57A amino_acid_mutation old_coords_fix, revision 061006: R78 R78A amino_acid_mutation:single_aa PMID:31764998 +YOR211C 12830 mgm1-R79A R79A amino_acid_dummy R58A mgm1-R58A amino_acid_mutation old_coords_fix, revision 061006: R79 R79A amino_acid_mutation:single_aa PMID:31764998 +YOR330C 13107 mip1-A630T A630T amino_acid_dummy A604T mip1-A604T amino_acid_mutation old_coords_fix, revision 051202: A630 A630T amino_acid_mutation:single_aa PMID:32303542 diff --git a/results/sgd/description_name/allele_description_name_transvar.tsv b/results/sgd/description_name/allele_description_name_transvar.tsv new file mode 100644 index 0000000..26dd52c --- /dev/null +++ b/results/sgd/description_name/allele_description_name_transvar.tsv @@ -0,0 +1,6378 @@ +systematic_id gene_name allele_id allele_name allele_description allele_type reference allele_parts needs_fixing change_description_to rules_applied pattern_error invalid_error sequence_error change_type_to transvar_coordinates +Q0045 COX1 0 cox1-D445E D445E amino_acid_mutation PMID:32291342 D445E False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.26431T>G/c.1335T>G/p.D445E +Q0045 COX1 1 cox1-E243D E243D amino_acid_mutation PMID:32291342 E243D False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.22003A>C/c.729A>C/p.E243D +Q0045 COX1 2 cox1-E39Q E39Q amino_acid_mutation PMID:32291342 E39Q False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.13932G>C/c.115G>C/p.E39Q +Q0045 COX1 3 cox1-I67N I67N amino_acid_mutation PMID:32291342 I67N False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.16465T>A/c.200T>A/p.I67N +Q0045 COX1 4 cox1-N99D N99D amino_acid_mutation PMID:32291342 N99D False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.20559A>G/c.295A>G/p.N99D +Q0045 COX1 5 cox1-Q411L Q411L amino_acid_mutation PMID:32291342 Q411L False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.26328A>T/c.1232A>T/p.Q411L +Q0045 COX1 6 cox1-Q413L Q413L amino_acid_mutation PMID:32291342 Q413L False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.26334A>T/c.1238A>T/p.Q413L +Q0045 COX1 7 cox1-S382A S382A amino_acid_mutation PMID:32291342 S382A False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.26240T>G/c.1144T>G/p.S382A +Q0045 COX1 8 cox1-S455A S455A amino_acid_mutation PMID:32291342 S455A False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.26459T>G/c.1363T>G/p.S455A +Q0045 COX1 9 cox1-S458A S458A amino_acid_mutation PMID:32291342 S458A False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.26468T>G/c.1372T>G/p.S458A +Q0045 COX1 10 cox1-S52D S52D amino_acid_mutation PMID:32291342 S52D False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.13971_13973delTCAinsGAC/c.154_156delTCAinsGAC/p.S52D +Q0045 COX1 11 cox1-T316K T316K amino_acid_mutation PMID:32291342 T316K False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.22221C>A/c.947C>A/p.T316K +Q0045 COX1 12 cox1-V374G V374G amino_acid_mutation PMID:35216443 V374G False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.25331T>G/c.1121T>G/p.V374G +Q0080 ATP8 14 atp8-L13T L13T amino_acid_mutation PMID:37340059 L13T False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.27702_27703delTTinsAC/c.37_38delTTinsAC/p.L13T +Q0085 ATP6 15 atp6-A235T A235T amino_acid_mutation PMID:37083953 A235T False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.29189G>A/c.703G>A/p.A235T +Q0085 ATP6 16 atp6-G194S G194S amino_acid_mutation PMID:37083953 G194S False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.29066G>A/c.580G>A/p.G194S +Q0085 ATP6 17 atp6-H195R H195R amino_acid_mutation PMID:37083953 H195R False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.29070A>G/c.584A>G/p.H195R +Q0085 ATP6 18 atp6-I133T I133T amino_acid_mutation PMID:37083953 I133T False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.28884T>C/c.398T>C/p.I133T +Q0085 ATP6 19 atp6-I170V I170V amino_acid_mutation PMID:28986220 I170V False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.28994A>G/c.508A>G/p.I170V +Q0085 ATP6 20 atp6-I191V I191V amino_acid_mutation PMID:37083953 I191V False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.29057A>G/c.571A>G/p.I191V +Q0085 ATP6 21 atp6-K90E K90E amino_acid_mutation PMID:28986220 K90E False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.28754A>G/c.268A>G/p.K90E +Q0085 ATP6 22 atp6-L174K L174K amino_acid_mutation PMID:33600551 L174K False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.29006_29007delTTinsAA/c.520_521delTTinsAA/p.L174K +Q0085 ATP6 23 atp6-L174M L174M amino_acid_mutation PMID:33600551 L174M False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.29006_29008delTTAinsATG/c.520_522delTTAinsATG/p.L174M +Q0085 ATP6 24 atp6-L174R L174R amino_acid_mutation PMID:33600551 L174R False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.29006_29007delTTinsAG/c.520_521delTTinsAG/p.L174R +Q0085 ATP6 25 atp6-L183P L183P amino_acid_mutation PMID:19269308 L183P False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.29033_29034delTTinsCC/c.547_548delTTinsCC/p.L183P +Q0085 ATP6 26 atp6-L183R L183R amino_acid_mutation PMID:17855363,PMID:19269308,PMID:21715656,PMID:31276579 L183R False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.29033_29034delTTinsAG/c.547_548delTTinsAG/p.L183R +Q0085 ATP6 28 atp6-L232P L232P amino_acid_mutation PMID:28986220 L232P False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.29180_29181delTTinsCC/c.694_695delTTinsCC/p.L232P +Q0085 ATP6 29 atp6-L247R L247R amino_acid_mutation PMID:20056103,PMID:30414414 L247R False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.29225_29226delTTinsAG/c.739_740delTTinsAG/p.L247R +Q0085 ATP6 30 atp6-L252P L252P amino_acid_mutation PMID:24316278,PMID:32708436 L252P False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.29240_29241delTTinsCC/c.754_755delTTinsCC/p.L252P +Q0085 ATP6 31 atp6-P157T P157T amino_acid_mutation PMID:28986220 P157T False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.28955C>A/c.469C>A/p.P157T +Q0085 ATP6 32 atp6-P163S P163S amino_acid_mutation PMID:28986220 P163S False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.28973C>T/c.487C>T/p.P163S +Q0085 ATP6 33 atp6-S175N S175N amino_acid_mutation PMID:29778688 S175N False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.29009_29010delTCinsAA/c.523_524delTCinsAA/p.S175N +Q0085 ATP6 34 atp6-S250P S250P amino_acid_mutation PMID:24316278 S250P False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.29234T>C/c.748T>C/p.S250P +Q0085 ATP6 36 atp6-V169I V169I amino_acid_mutation PMID:37083953 V169I False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.28991G>A/c.505G>A/p.V169I +Q0085 ATP6 37 atp6-W136R W136R amino_acid_mutation PMID:22789932 W136R False amino_acid_mutation:single_aa amino_acid_mutation +Q0085 ATP6 38 atp6-Y242H Y242H amino_acid_mutation PMID:37083953 Y242H False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.29210T>C/c.724T>C/p.Y242H +YAL001C TFC3 82 tfc3-g349e g349e amino_acid_mutation PMID:27708008 g349e False G349E amino_acid_mutation:single_aa amino_acid_mutation chrI:g.150031C>T/c.1046G>A/p.G349E +YAL003W EFB1 85 efb1-F163A F163A amino_acid_mutation PMID:19095653 F163A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.143026_143027delTTinsGC/c.487_488delTTinsGC/p.F163A +YAL003W EFB1 86 efb1-K205A K205A amino_acid_mutation PMID:19095653 K205A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.143152_143153delAAinsGC/c.613_614delAAinsGC/p.K205A +YAL005C SSA1 88 SSA1-V477D V477D amino_acid_mutation PMID:25544045 V477D False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.140002A>T/c.1430T>A/p.V477D +YAL005C SSA1 90 ssa1-A394V,F475S A394V,F475S amino_acid_mutation PMID:30074427 A394V|F475S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.140251G>A/c.1181C>T/p.A394V|chrI:g.140008A>G/c.1424T>C/p.F475S +YAL005C SSA1 91 ssa1-C15G C15G amino_acid_mutation PMID:1776361 C15G False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.141389A>C/c.43T>G/p.C15G +YAL005C SSA1 92 ssa1-C15R C15R amino_acid_mutation PMID:1776361 C15R False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.141389A>G/c.43T>C/p.C15R +YAL005C SSA1 93 ssa1-C15S C15S amino_acid_mutation PMID:1776361 C15S False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.141389A>T/c.43T>A/p.C15S +YAL005C SSA1 94 ssa1-C264D C264D amino_acid_mutation PMID:36030825 C264D False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.140894_140895delTGinsGA/c.790_791delTGinsGA/p.C264D +YAL005C SSA1 95 ssa1-C264D,C303D C264D,C303D amino_acid_mutation PMID:22809627,PMID:36030825 C264D|C303D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.140894_140895delTGinsGA/c.790_791delTGinsGA/p.C264D|chrI:g.140524_140525delTGinsGA/c.907_908delTGinsGA/p.C303D +YAL005C SSA1 96 ssa1-C264S C264S amino_acid_mutation PMID:22809627,PMID:36030825 C264S False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.140895A>T/c.790T>A/p.C264S +YAL005C SSA1 97 ssa1-C264S,C303S C264S,C303S amino_acid_mutation PMID:22809627,PMID:36030825 C264S|C303S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.140895A>T/c.790T>A/p.C264S|chrI:g.140525A>T/c.907T>A/p.C303S +YAL005C SSA1 98 ssa1-C303D C303D amino_acid_mutation PMID:36030825 C303D False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.140524_140525delTGinsGA/c.907_908delTGinsGA/p.C303D +YAL005C SSA1 99 ssa1-C303S C303S amino_acid_mutation PMID:22809627,PMID:36030825 C303S False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.140525A>T/c.907T>A/p.C303S +YAL005C SSA1 100 ssa1-D8N D8N amino_acid_mutation PMID:1776361 D8N False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.141410C>T/c.22G>A/p.D8N +YAL005C SSA1 101 ssa1-F475S F475S amino_acid_mutation PMID:30074427,PMID:33341991 F475S False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.140008A>G/c.1424T>C/p.F475S +YAL005C SSA1 102 ssa1-L483W L483W amino_acid_mutation PMID:30074427,PMID:33341991 L483W False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.139984A>C/c.1448T>G/p.L483W +YAL005C SSA1 105 ssa1-P433S,F475S P433S,F475S amino_acid_mutation PMID:30074427 P433S|F475S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.140135G>A/c.1297C>T/p.P433S|chrI:g.140008A>G/c.1424T>C/p.F475S +YAL005C SSA1 106 ssa1-T11A T11A amino_acid_mutation PMID:1776361 T11A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.141401T>C/c.31A>G/p.T11A +YAL005C SSA1 107 ssa1-T201A T201A amino_acid_mutation PMID:33741343 T201A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.140831T>C/c.601A>G/p.T201A +YAL005C SSA1 108 ssa1-T201A,V435F T201A,V435F amino_acid_mutation PMID:34873058 T201A|V435F False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.140831T>C/c.601A>G/p.T201A|chrI:g.140129C>A/c.1303G>T/p.V435F +YAL005C SSA1 109 ssa1-T36A T36A amino_acid_mutation PMID:23217712 T36A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.141326T>C/c.106A>G/p.T36A +YAL005C SSA1 110 ssa1-T36E T36E amino_acid_mutation PMID:23217712 T36E False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.141324_141326delACTinsGAG/c.106_108delACTinsGAG/p.T36E +YAL005C SSA1 111 ssa1-V477I,F475S V477I,F475S amino_acid_mutation PMID:30074427 V477I|F475S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.140003C>T/c.1429G>A/p.V477I|chrI:g.140008A>G/c.1424T>C/p.F475S +YAL009W SPO7 114 spo7-I56A I56A amino_acid_mutation PMID:32527729 I56A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.136019_136020delATinsGC/c.166_167delATinsGC/p.I56A +YAL009W SPO7 115 spo7-I56R I56R amino_acid_mutation PMID:32527729 I56R False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.136020T>G/c.167T>G/p.I56R +YAL009W SPO7 116 spo7-L54A L54A amino_acid_mutation PMID:32527729 L54A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.136013_136014delTTinsGC/c.160_161delTTinsGC/p.L54A +YAL009W SPO7 117 spo7-L54R L54R amino_acid_mutation PMID:32527729 L54R False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.136013_136014delTTinsAG/c.160_161delTTinsAG/p.L54R +YAL009W SPO7 118 spo7-L55A L55A amino_acid_mutation PMID:32527729 L55A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.136016_136017delTTinsGC/c.163_164delTTinsGC/p.L55A +YAL009W SPO7 119 spo7-L55R L55R amino_acid_mutation PMID:32527729 L55R False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.136016_136017delTTinsAG/c.163_164delTTinsAG/p.L55R +YAL009W SPO7 120 spo7-S22A S22A amino_acid_mutation PMID:31501244 S22A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.135917T>G/c.64T>G/p.S22A +YAL009W SPO7 121 spo7-S28A S28A amino_acid_mutation PMID:30201607,PMID:31501244 S28A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.135935T>G/c.82T>G/p.S28A +YAL009W SPO7 122 spo7-S28D S28D amino_acid_mutation PMID:30201607 S28D False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.135935_135936delTCinsGA/c.82_83delTCinsGA/p.S28D +YAL021C CCR4 133 ccr4-A638S A638S amino_acid_mutation PMID:32430798 A638S False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.111448C>A/c.1912G>T/p.A638S +YAL021C CCR4 134 ccr4-D713A D713A amino_acid_mutation PMID:35167422 D713A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.111222T>G/c.2138A>C/p.D713A +YAL021C CCR4 135 ccr4-D780A D780A amino_acid_mutation PMID:35167422 D780A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.111021T>G/c.2339A>C/p.D780A +YAL021C CCR4 136 ccr4-E556A E556A amino_acid_mutation PMID:35167422 E556A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.111693T>G/c.1667A>C/p.E556A +YAL021C CCR4 137 ccr4-G743D G743D amino_acid_mutation PMID:35384721 G743D False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.111132C>T/c.2228G>A/p.G743D +YAL021C CCR4 138 ccr4-S720F,G743D S720F,G743D amino_acid_mutation PMID:35384721 S720F|G743D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.111201G>A/c.2159C>T/p.S720F|chrI:g.111132C>T/c.2228G>A/p.G743D +YAL035W FUN12 160 fun12-A444V,G479A A444V,G479A amino_acid_mutation PMID:17189426 A444V|G479A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.77757C>T/c.1331C>T/p.A444V|chrI:g.77862G>C/c.1436G>C/p.G479A +YAL035W FUN12 161 fun12-G479A G479A amino_acid_mutation PMID:17189426 G479A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.77862G>C/c.1436G>C/p.G479A +YAL035W FUN12 162 fun12-G479A,D740R G479A,D740R amino_acid_mutation PMID:17189426 G479A|D740R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.77862G>C/c.1436G>C/p.G479A|chrI:g.78644_78645delGAinsCG/c.2218_2219delGAinsCG/p.D740R +YAL035W FUN12 163 fun12-H480I H480I amino_acid_mutation PMID:19029250 H480I False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.77864_77865delCAinsAT/c.1438_1439delCAinsAT/p.H480I +YAL035W FUN12 164 fun12-H480I,A709V H480I,A709V amino_acid_mutation PMID:19029250 H480I|A709V False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.77864_77865delCAinsAT/c.1438_1439delCAinsAT/p.H480I|chrI:g.78552C>T/c.2126C>T/p.A709V +YAL035W FUN12 165 fun12-H480I,F643R H480I,F643R amino_acid_mutation PMID:19029250 H480I|F643R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.77864_77865delCAinsAT/c.1438_1439delCAinsAT/p.H480I|chrI:g.78353_78354delTTinsCG/c.1927_1928delTTinsCG/p.F643R +YAL035W FUN12 166 fun12-H505Y H505Y amino_acid_mutation PMID:12507428 H505Y False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.77939C>T/c.1513C>T/p.H505Y +YAL035W FUN12 167 fun12-T439A T439A amino_acid_mutation PMID:12507428,PMID:19029250 T439A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.77741A>G/c.1315A>G/p.T439A +YAL035W FUN12 168 fun12-T439A,A709V T439A,A709V amino_acid_mutation PMID:12507428,PMID:19029250 T439A|A709V False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.77741A>G/c.1315A>G/p.T439A|chrI:g.78552C>T/c.2126C>T/p.A709V +YAL035W FUN12 169 fun12-T439A,F643R T439A,F643R amino_acid_mutation PMID:19029250 T439A|F643R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.77741A>G/c.1315A>G/p.T439A|chrI:g.78353_78354delTTinsCG/c.1927_1928delTTinsCG/p.F643R +YAL035W FUN12 170 fun12-T439A,F643S T439A,F643S amino_acid_mutation PMID:12507428 T439A|F643S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.77741A>G/c.1315A>G/p.T439A|chrI:g.78354T>C/c.1928T>C/p.F643S +YAL035W FUN12 171 fun12-T439A,H505Y T439A,H505Y amino_acid_mutation PMID:12507428 T439A|H505Y False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.77741A>G/c.1315A>G/p.T439A|chrI:g.77939C>T/c.1513C>T/p.H505Y +YAL035W FUN12 172 fun12-V835A,I836A,Y837A,H838A,L839A V835A,I836A,Y837A,H838A,L839A amino_acid_mutation PMID:31900355 V835A|I836A|Y837A|H838A|L839A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.78930T>C/c.2504T>C/p.V835A|chrI:g.78932_78933delATinsGC/c.2506_2507delATinsGC/p.I836A|chrI:g.78935_78936delTAinsGC/c.2509_2510delTAinsGC/p.Y837A|chrI:g.78938_78939delCAinsGC/c.2512_2513delCAinsGC/p.H838A|chrI:g.78941_78942delTTinsGC/c.2515_2516delTTinsGC/p.L839A +YAL035W FUN12 173 fun12-Y837A Y837A amino_acid_mutation PMID:31900355 Y837A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.78935_78936delTAinsGC/c.2509_2510delTAinsGC/p.Y837A +YAL038W CDC19 181 cdc19-A336S A336S amino_acid_mutation PMID:34786710 A336S False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.72791G>T/c.1006G>T/p.A336S +YAL038W CDC19 182 cdc19-D147N D147N amino_acid_mutation PMID:34786710 D147N False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.72224G>A/c.439G>A/p.D147N +YAL041W CDC24 199 cdc24-K525E K525E amino_acid_mutation PMID:32327559 K525E False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.64412A>G/c.1573A>G/p.K525E +YAL041W CDC24 200 cdc24-K801A K801A amino_acid_mutation PMID:32327559 K801A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.65240_65241delAAinsGC/c.2401_2402delAAinsGC/p.K801A +YAL044C GCV3 212 gcv3-H51R H51R amino_acid_mutation PMID:36190515 H51R False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.58311T>C/c.152A>G/p.H51R +YAL044C GCV3 213 gcv3-K102R K102R amino_acid_mutation PMID:19570983 K102R False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.58158T>C/c.305A>G/p.K102R +YAL044C GCV3 214 gcv3-K143P K143P amino_acid_mutation PMID:36190515 K143P False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.58035_58036delAAinsCC/c.427_428delAAinsCC/p.K143P +YAL044C GCV3 215 gcv3-P110L P110L amino_acid_mutation PMID:36190515 P110L False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.58148G>A/c.329C>T/p.P110L +YAL048C GEM1 221 gem1-R103K R103K amino_acid_mutation PMID:34713605 R103K False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.54482C>T/c.308G>A/p.R103K +YAL048C GEM1 222 gem1-S324N S324N amino_acid_mutation PMID:34713605 S324N False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.53819C>T/c.971G>A/p.S324N +YAL051W OAF1 223 oaf1-L63S L63S amino_acid_mutation PMID:31738765 L63S False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.48751T>C/c.188T>C/p.L63S +YAL054C ACS1 224 acs1-R679H R679H amino_acid_mutation PMID:34362905 R679H False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.42987C>T/c.2036G>A/p.R679H +YAL056W GPB2 226 gpb2-A564V A564V amino_acid_mutation PMID:29429618 A564V False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.40949C>T/c.1691C>T/p.A564V +YAL056W GPB2 227 gpb2-E542* E542* partial_amino_acid_deletion PMID:29429618 E542* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrI:g.40882G>T/c.1624G>T/p.E542* +YAL056W GPB2 228 gpb2-Q510* Q510* partial_amino_acid_deletion PMID:29429618 Q510* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrI:g.40786C>T/c.1528C>T/p.Q510* +YAL056W GPB2 229 gpb2-W523* W523* partial_amino_acid_deletion PMID:29429618 W523* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrI:g.40826G>A/c.1568G>A/p.W523* +YAL056W GPB2 230 gpb2-Y282* Y282* partial_amino_acid_deletion PMID:29429618 Y282* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrI:g.40104T>A/c.846T>A/p.Y282* +YAL056W GPB2 231 gpb2-Y381* Y381* partial_amino_acid_deletion PMID:29429618 Y381* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrI:g.40401T>A/c.1143T>A/p.Y381* +YAL056W GPB2 232 gpb2-Y659* Y659* partial_amino_acid_deletion PMID:29429618 Y659* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrI:g.41235T>A/c.1977T>A/p.Y659* +YAL064C-A TDA8 236 tda8-R16K R16K amino_acid_mutation PMID:31611676 R16K False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.13697C>T/c.47G>A/p.R16K +YAL064C-A TDA8 237 tda8-S11G S11G amino_acid_mutation PMID:31611676 S11G False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.13713T>C/c.31A>G/p.S11G +YAR002W NUP60 251 nup60-I36R I36R amino_acid_mutation PMID:35148185 I36R False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.152321_152322delTTinsGG/c.107_108delTTinsGG/p.I36R +YAR002W NUP60 252 nup60-K467N K467N amino_acid_mutation PMID:35735140 K467N False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.153657A>C/c.1401A>C/p.K467N +YAR002W NUP60 253 nup60-K467R K467R amino_acid_mutation PMID:35373738,PMID:35735140 K467R False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.153656A>G/c.1400A>G/p.K467R +YAR007C RFA1 261 rfa1-D228Y D228Y amino_acid_mutation PMID:32190820,PMID:32212314,PMID:33724421,PMID:33748714 D228Y False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.157938C>A/c.682G>T/p.D228Y +YAR007C RFA1 262 rfa1-D465A D465A amino_acid_mutation PMID:33602814 D465A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.157226T>G/c.1394A>C/p.D465A +YAR007C RFA1 264 rfa1-F15A F15A amino_acid_mutation PMID:35042867 F15A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.158576_158577delTTinsGC/c.43_44delTTinsGC/p.F15A +YAR007C RFA1 266 rfa1-G77E G77E amino_acid_mutation PMID:29358048,PMID:35086935,PMID:37166686 G77E False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.158389_158390delGTinsAG/c.230_231delGTinsAG/p.G77E +YAR007C RFA1 267 rfa1-I14S I14S amino_acid_mutation PMID:34764291,PMID:9539419 I14S False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.158579A>C/c.41T>G/p.I14S +YAR007C RFA1 268 rfa1-K133R,K170R,K427R K133R,K170R,K427R amino_acid_mutation PMID:33748714 K133R|K170R|K427R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.158222T>C/c.398A>G/p.K133R|chrI:g.158111T>C/c.509A>G/p.K170R|chrI:g.157340T>C/c.1280A>G/p.K427R +YAR007C RFA1 269 rfa1-K259Q,K427Q,K463Q,K494Q K259Q,K427Q,K463Q,K494Q amino_acid_mutation PMID:37140030 K259Q|K427Q|K463Q|K494Q False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.157845T>G/c.775A>C/p.K259Q|chrI:g.157341T>G/c.1279A>C/p.K427Q|chrI:g.157233T>G/c.1387A>C/p.K463Q|chrI:g.157140T>G/c.1480A>C/p.K494Q +YAR007C RFA1 270 rfa1-K259R,K427R,K463R,K494R K259R,K427R,K463R,K494R amino_acid_mutation PMID:37140030 K259R|K427R|K463R|K494R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.157844T>C/c.776A>G/p.K259R|chrI:g.157340T>C/c.1280A>G/p.K427R|chrI:g.157232T>C/c.1388A>G/p.K463R|chrI:g.157139T>C/c.1481A>G/p.K494R +YAR007C RFA1 271 rfa1-K45E K45E amino_acid_mutation PMID:33602817,PMID:33724421,PMID:34764291,PMID:9539419 K45E False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.158487T>C/c.133A>G/p.K45E +YAR007C RFA1 272 rfa1-K494E K494E amino_acid_mutation PMID:34764291,PMID:9539419 K494E False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.157140T>C/c.1480A>G/p.K494E +YAR007C RFA1 276 rfa1-V106A V106A amino_acid_mutation PMID:34140406 V106A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.158303A>G/c.317T>C/p.V106A +YAR007C RFA1 277 rfa1-Y123A,F124A Y123A,F124A amino_acid_mutation PMID:35042867 Y123A|F124A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.158252_158253delTAinsGC/c.367_368delTAinsGC/p.Y123A|chrI:g.158249_158250delTTinsGC/c.370_371delTTinsGC/p.F124A +YAR007C RFA1 278 rfa1-Y193A Y193A amino_acid_mutation PMID:35042867 Y193A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.158042_158043delTAinsGC/c.577_578delTAinsGC/p.Y193A +YAR007C RFA1 279 rfa1-Y29A Y29A amino_acid_mutation PMID:35042867 Y29A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.158534_158535delTAinsGC/c.85_86delTAinsGC/p.Y29A +YAR007C RFA1 280 rfa1-Y55A Y55A amino_acid_mutation PMID:35042867 Y55A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.158456_158457delTAinsGC/c.163_164delTAinsGC/p.Y55A +YAR007C RFA1 281 rfa1-Y96A Y96A amino_acid_mutation PMID:35042867 Y96A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.158333_158334delTAinsGC/c.286_287delTAinsGC/p.Y96A +YAR014C BUD14 305 bud14-F379A F379A amino_acid_mutation PMID:16107882,PMID:34633288 F379A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.167736_167737delTTinsGC/c.1135_1136delTTinsGC/p.F379A +YAR019C CDC15 311 cdc15-T262A T262A amino_acid_mutation PMID:32303542 T262A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.174352T>C/c.784A>G/p.T262A +YAR071W PHO11 321 pho11-N356K N356K amino_acid_mutation PMID:31611676 N356K False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.226527C>G/c.1068C>G/p.N356K +YBL002W HTB2 322 htb2-D72A D72A amino_acid_mutation PMID:34844121 D72A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.236706A>C/c.215A>C/p.D72A +YBL002W HTB2 323 htb2-E80A E80A amino_acid_mutation PMID:31337617 E80A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.236730A>C/c.239A>C/p.E80A +YBL002W HTB2 324 htb2-E80K E80K amino_acid_mutation PMID:31337617 E80K False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.236729G>A/c.238G>A/p.E80K +YBL002W HTB2 325 htb2-E80Q E80Q amino_acid_mutation PMID:31337617 E80Q False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.236729G>C/c.238G>C/p.E80Q +YBL002W HTB2 326 htb2-R96A R96A amino_acid_mutation PMID:35705668 R96A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.236074_236075delAGinsGC/c.286_287delAGinsGC/p.R96A +YBL003C HTA2 328 hta2-E58A E58A amino_acid_mutation PMID:29272409 E58A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.235620T>G/c.173A>C/p.E58A +YBL003C HTA2 329 hta2-L67A L67A amino_acid_mutation PMID:29272409 L67A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.235593_235594delTTinsGC/c.199_200delTTinsGC/p.L67A +YBL005W PDR3 337 pdr3-D853Y D853Y amino_acid_mutation PMID:20146400 D853Y False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.220026G>T/c.2557G>T/p.D853Y +YBL005W PDR3 338 pdr3-Y276S Y276S amino_acid_mutation PMID:35435209 Y276S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.218296A>C/c.827A>C/p.Y276S +YBL007C SLA1 343 sla1-F507L F507L amino_acid_mutation PMID:32907853 F507L False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.214848A>G/c.1519T>C/p.F507L +YBL007C SLA1 344 sla1-I531E I531E amino_acid_mutation PMID:32907853 I531E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.214774_214776delATTinsGAG/c.1591_1593delATTinsGAG/p.I531E +YBL007C SLA1 345 sla1-K525A K525A amino_acid_mutation PMID:32907853 K525A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.214793_214794delAAinsGC/c.1573_1574delAAinsGC/p.K525A +YBL016W FUS3 357 fus3-A190E A190E amino_acid_mutation PMID:35219341 A190E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.193019C>A/c.569C>A/p.A190E +YBL016W FUS3 358 fus3-D314K,D317K D314K,D317K amino_acid_mutation PMID:17952059 D314K|D317K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.193390_193392delGATinsAAG/c.940_942delGATinsAAG/p.D314K|chrII:g.193399_193401delGACinsAAG/c.949_951delGACinsAAG/p.D317K +YBL016W FUS3 359 fus3-K42R K42R amino_acid_mutation PMID:17952059,PMID:18417610 K42R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.192575A>G/c.125A>G/p.K42R +YBL016W FUS3 360 fus3-Q93G Q93G amino_acid_mutation PMID:15067022 Q93G False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.192727_192728delCAinsGG/c.277_278delCAinsGG/p.Q93G +YBL016W FUS3 361 fus3-T180A,Y182A T180A,Y182A amino_acid_mutation PMID:17963515 T180A|Y182A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.192988A>G/c.538A>G/p.T180A|chrII:g.192994_192995delTAinsGC/c.544_545delTAinsGC/p.Y182A +YBL016W FUS3 362 fus3-T180A,Y182F T180A,Y182F amino_acid_mutation PMID:17952059 T180A|Y182F False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.192988A>G/c.538A>G/p.T180A|chrII:g.192995A>T/c.545A>T/p.Y182F +YBL019W APN2 387 apn2-R205E R205E amino_acid_mutation PMID:36198268 R205E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.184965_184966delAGinsGA/c.613_614delAGinsGA/p.R205E +YBL019W APN2 388 apn2-R208E R208E amino_acid_mutation PMID:36198268 R208E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.184974_184975delCGinsGA/c.622_623delCGinsGA/p.R208E +YBL019W APN2 389 apn2-Y33E Y33E amino_acid_mutation PMID:36198268 Y33E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.184449_184451delTATinsGAG/c.97_99delTATinsGAG/p.Y33E +YBL021C HAP3 393 hap3-A48P,K52R A48P,K52R amino_acid_mutation PMID:8223474 A48P|K52R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181953C>G/c.142G>C/p.A48P|chrII:g.181940T>C/c.155A>G/p.K52R +YBL021C HAP3 394 hap3-A84P A84P amino_acid_mutation PMID:8223474 A84P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181845C>G/c.250G>C/p.A84P +YBL021C HAP3 395 hap3-C68S C68S amino_acid_mutation PMID:8223474 C68S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181893A>T/c.202T>A/p.C68S +YBL021C HAP3 396 hap3-C68S,C72S C68S,C72S amino_acid_mutation PMID:8223474 C68S|C72S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181893A>T/c.202T>A/p.C68S|chrII:g.181881A>T/c.214T>A/p.C72S +YBL021C HAP3 397 hap3-C72S C72S amino_acid_mutation PMID:8223474 C72S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181881A>T/c.214T>A/p.C72S +YBL021C HAP3 398 hap3-C72S,E75R C72S,E75R amino_acid_mutation PMID:8223474 C72S|E75R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181881A>T/c.214T>A/p.C72S|chrII:g.181871_181872delGAinsAG/c.223_224delGAinsAG/p.E75R +YBL021C HAP3 399 hap3-C88H C88H amino_acid_mutation PMID:8223474 C88H False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181832_181833delTGinsCA/c.262_263delTGinsCA/p.C88H +YBL021C HAP3 400 hap3-C88R C88R amino_acid_mutation PMID:8223474 C88R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181833A>G/c.262T>C/p.C88R +YBL021C HAP3 401 hap3-E111G,Y113G E111G,Y113G amino_acid_mutation PMID:8223474 E111G|Y113G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181763T>C/c.332A>G/p.E111G|chrII:g.181757_181758delTAinsGG/c.337_338delTAinsGG/p.Y113G +YBL021C HAP3 403 hap3-F110L,V116E F110L,V116E amino_acid_mutation PMID:8223474 F110L|V116E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181767A>G/c.328T>C/p.F110L|chrII:g.181748A>T/c.347T>A/p.V116E +YBL021C HAP3 404 hap3-F79L,V80E F79L,V80E amino_acid_mutation PMID:8223474 F79L|V80E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181860A>G/c.235T>C/p.F79L|chrII:g.181856A>T/c.239T>A/p.V80E +YBL021C HAP3 405 hap3-I77W,E83V I77W,E83V amino_acid_mutation PMID:8223474 I77W|E83V False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181864_181866delATTinsTGG/c.229_231delATTinsTGG/p.I77W|chrII:g.181847T>A/c.248A>T/p.E83V +YBL021C HAP3 406 hap3-K123Stop K123Stop partial_amino_acid_deletion PMID:8223474 K123Stop False K123* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrII:g.181728T>A/c.367A>T/p.K123* +YBL021C HAP3 407 hap3-L108Stop L108Stop partial_amino_acid_deletion PMID:8223474 L108Stop False L108* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrII:g.182201_182203delCTTinsTAA/c.322_324delCTTinsTAA/p.L108* +YBL021C HAP3 408 hap3-L42R L42R amino_acid_mutation PMID:8223474 L42R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181970A>C/c.125T>G/p.L42R +YBL021C HAP3 409 hap3-L76P L76P amino_acid_mutation PMID:8223474 L76P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181868A>G/c.227T>C/p.L76P +YBL021C HAP3 410 hap3-M69R M69R amino_acid_mutation PMID:8223474 M69R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181889A>C/c.206T>G/p.M69R +YBL021C HAP3 411 hap3-N46D N46D amino_acid_mutation PMID:8223474 N46D False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181959T>C/c.136A>G/p.N46D +YBL021C HAP3 412 hap3-N46Y N46Y amino_acid_mutation PMID:8223474 N46Y False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181959T>A/c.136A>T/p.N46Y +YBL021C HAP3 413 hap3-P43R P43R amino_acid_mutation PMID:8223474 P43R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181967G>C/c.128C>G/p.P43R +YBL021C HAP3 414 hap3-Q70E,E75V Q70E,E75V amino_acid_mutation PMID:8223474 Q70E|E75V False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181887G>C/c.208C>G/p.Q70E|chrII:g.181871T>A/c.224A>T/p.E75V +YBL021C HAP3 415 hap3-S82R S82R amino_acid_mutation PMID:8223474 S82R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181849G>C/c.246C>G/p.S82R +YBL021C HAP3 416 hap3-S82R,C88R S82R,C88R amino_acid_mutation PMID:8223474 S82R|C88R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181849G>C/c.246C>G/p.S82R|chrII:g.181833A>G/c.262T>C/p.C88R +YBL021C HAP3 417 hap3-S82R,S85R S82R,S85R amino_acid_mutation PMID:8223474 S82R|S85R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181849G>C/c.246C>G/p.S82R|chrII:g.181840G>C/c.255C>G/p.S85R +YBL021C HAP3 418 hap3-T95A,I96R T95A,I96R amino_acid_mutation PMID:8223474 T95A|I96R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181812T>C/c.283A>G/p.T95A|chrII:g.181808A>C/c.287T>G/p.I96R +YBL021C HAP3 419 hap3-Y113S,V116G Y113S,V116G amino_acid_mutation PMID:8223474 Y113S|V116G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.181757T>G/c.338A>C/p.Y113S|chrII:g.181748A>C/c.347T>G/p.V116G +YBL022C PIM1 420 pim1-S1015A S1015A amino_acid_mutation PMID:37331598,PMID:9405361 S1015A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.178233A>C/c.3043T>G/p.S1015A +YBL023C MCM2 429 mcm2-K549R K549R amino_acid_mutation PMID:21596784 K549R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.175881T>C/c.1646A>G/p.K549R +YBL023C MCM2 430 mcm2-S164A,S170A S164A,S170A amino_acid_mutation PMID:21596784 S164A|S170A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.177036_177037delAGinsGC/c.490_491delAGinsGC/p.S164A|chrII:g.177018_177019delAGinsGC/c.508_509delAGinsGC/p.S170A +YBL023C MCM2 431 mcm2-S164E,S170E S164E,S170E amino_acid_mutation PMID:21596784 S164E|S170E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.177035_177037delAGTinsGAG/c.490_492delAGTinsGAG/p.S164E|chrII:g.177017_177019delAGTinsGAG/c.508_510delAGTinsGAG/p.S170E +YBL023C MCM2 432 mcm2-S170A S170A amino_acid_mutation PMID:19692334 S170A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.177018_177019delAGinsGC/c.508_509delAGinsGC/p.S170A +YBL030C PET9 444 pet9-A106D A106D amino_acid_mutation PMID:18809618 A106D False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.163681G>T/c.317C>A/p.A106D +YBL030C PET9 445 pet9-A128P A128P amino_acid_mutation PMID:18809618,PMID:19160490,PMID:25833713,PMID:33923309 A128P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.163616C>G/c.382G>C/p.A128P +YBL030C PET9 446 pet9-A137D A137D amino_acid_mutation PMID:18809618 A137D False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.163588G>T/c.410C>A/p.A137D +YBL030C PET9 447 pet9-M114P M114P amino_acid_mutation PMID:18809618,PMID:33923309 M114P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.163657_163658delATinsCC/c.340_341delATinsCC/p.M114P +YBL030C PET9 448 pet9-R252G R252G amino_acid_mutation PMID:28947214,PMID:33923309 R252G False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.163244T>C/c.754A>G/p.R252G +YBL030C PET9 449 pet9-R96H R96H amino_acid_mutation PMID:28947214,PMID:33923309 R96H False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.163711C>T/c.287G>A/p.R96H +YBL030C PET9 450 pet9-S303M S303M amino_acid_mutation PMID:33923309 S303M False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.163089_163091delTCAinsATG/c.907_909delTCAinsATG/p.S303M +YBL033C RIB1 459 rib1-C148S C148S amino_acid_mutation PMID:32265460 C148S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.159252A>T/c.442T>A/p.C148S +YBL033C RIB1 460 rib1-C159S C159S amino_acid_mutation PMID:32265460 C159S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.159219A>T/c.475T>A/p.C159S +YBL033C RIB1 461 rib1-C161S C161S amino_acid_mutation PMID:32265460 C161S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.159213A>T/c.481T>A/p.C161S +YBL039C URA7 474 ura7-H360A H360A amino_acid_mutation PMID:34734801 H360A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.144650_144651delCAinsGC/c.1078_1079delCAinsGC/p.H360A +YBL039C URA7 475 ura7-H360R H360R amino_acid_mutation PMID:34734801 H360R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.144650T>C/c.1079A>G/p.H360R +YBL045C COR1 493 cor1-N63A,N187A,D192A N63A,N187A,D192A amino_acid_mutation PMID:33016568 N63A|N187A|D192A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.135329_135330delAAinsGC/c.187_188delAAinsGC/p.N63A|chrII:g.134957_134958delAAinsGC/c.559_560delAAinsGC/p.N187A|chrII:g.134942T>G/c.575A>C/p.D192A +YBL045C COR1 494 cor1-N63A,N187A,D192A,V189A,Y65A,L238A,K240A N63A,N187A,D192A,V189A,Y65A,L238A,K240A amino_acid_mutation PMID:33016568 N63A|N187A|D192A|V189A|Y65A|L238A|K240A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.135329_135330delAAinsGC/c.187_188delAAinsGC/p.N63A|chrII:g.134957_134958delAAinsGC/c.559_560delAAinsGC/p.N187A|chrII:g.134942T>G/c.575A>C/p.D192A|chrII:g.134951A>G/c.566T>C/p.V189A|chrII:g.135323_135324delTAinsGC/c.193_194delTAinsGC/p.Y65A|chrII:g.134804_134805delCTinsGC/c.712_713delCTinsGC/p.L238A|chrII:g.134798_134799delAAinsGC/c.718_719delAAinsGC/p.K240A +YBL046W PSY4 496 psy4-S364A S364A amino_acid_mutation PMID:35977012 S364A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.133513T>G/c.1090T>G/p.S364A +YBL046W PSY4 497 psy4-S409A,S434A S409A,S434A amino_acid_mutation PMID:35977012 S409A|S434A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.133648_133649delAGinsGC/c.1225_1226delAGinsGC/p.S409A|chrII:g.133723_133724delAGinsGC/c.1300_1301delAGinsGC/p.S434A +YBL046W PSY4 498 psy4-T320A T320A amino_acid_mutation PMID:35977012 T320A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.133381A>G/c.958A>G/p.T320A +YBL046W PSY4 499 psy4-T320A,S364A T320A,S364A amino_acid_mutation PMID:35977012 T320A|S364A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.133381A>G/c.958A>G/p.T320A|chrII:g.133513T>G/c.1090T>G/p.S364A +YBL046W PSY4 500 psy4-T320A,T347A T320A,T347A amino_acid_mutation PMID:35977012 T320A|T347A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.133381A>G/c.958A>G/p.T320A|chrII:g.133444A>G/c.1039A>G/p.T347A +YBL046W PSY4 501 psy4-T320E T320E amino_acid_mutation PMID:35977012 T320E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.133381_133383delACTinsGAG/c.958_960delACTinsGAG/p.T320E +YBL046W PSY4 502 psy4-T320S,T347S T320S,T347S amino_acid_mutation PMID:35977012 T320S|T347S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.133382C>G/c.959C>G/p.T320S|chrII:g.133444A>T/c.1039A>T/p.T347S +YBL046W PSY4 503 psy4-T347A T347A amino_acid_mutation PMID:35977012 T347A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.133444A>G/c.1039A>G/p.T347A +YBL046W PSY4 504 psy4-T347E T347E amino_acid_mutation PMID:35977012 T347E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.133444_133445delACinsGA/c.1039_1040delACinsGA/p.T347E +YBL050W SEC17 515 sec17-F21S,M22S F21S,M22S amino_acid_mutation PMID:33944780,PMID:35171720 F21S|M22S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.125302T>C/c.62T>C/p.F21S|chrII:g.125305_125306delTGinsGC/c.65_66delTGinsGC/p.M22S +YBL050W SEC17 516 sec17-K159E,K163E K159E,K163E amino_acid_mutation PMID:33944780 K159E|K163E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.125715A>G/c.475A>G/p.K159E|chrII:g.125727A>G/c.487A>G/p.K163E +YBL050W SEC17 517 sec17-L291A,L292A L291A,L292A amino_acid_mutation PMID:33944780 L291A|L292A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.126111_126112delTTinsGC/c.871_872delTTinsGC/p.L291A|chrII:g.126114_126115delTTinsGC/c.874_875delTTinsGC/p.L292A +YBL054W TOD6 522 tod6-S280A,S298A,S308A,S318A,S333A,S346A S280A,S298A,S308A,S318A,S333A,S346A amino_acid_mutation PMID:35310337,PMID:35975715 S280A|S298A|S308A|S318A|S333A|S346A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.118426T>G/c.838T>G/p.S280A|chrII:g.118480T>G/c.892T>G/p.S298A|chrII:g.118510T>G/c.922T>G/p.S308A|chrII:g.118540T>G/c.952T>G/p.S318A|chrII:g.118585T>G/c.997T>G/p.S333A|chrII:g.118624T>G/c.1036T>G/p.S346A +YBL058W SHP1 526 shp1-G243S G243S amino_acid_mutation PMID:31611676 G243S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.112163G>A/c.727G>A/p.G243S +YBL061C SKT5 531 chs4-C693S C693S amino_acid_mutation PMID:17142567 C693S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.105330A>T/c.2077T>A/p.C693S +YBL064C PRX1 532 prx1-C91A C91A amino_acid_mutation PMID:31389622 C91A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.100885_100886delTGinsGC/c.271_272delTGinsGC/p.C91A +YBL064C PRX1 533 prx1-P233stop P233stop partial_amino_acid_deletion PMID:31389622,PMID:37258762 P233stop False P233* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrII:g.100458_100460delCCTinsTAA/c.697_699delCCTinsTAA/p.P233* +YBL069W AST1 535 ast1-D405I D405I amino_acid_mutation PMID:34624020 D405I False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.91953_91954delGAinsAT/c.1213_1214delGAinsAT/p.D405I +YBL078C ATG8 557 atg8-D102A D102A amino_acid_mutation PMID:17632063 D102A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.80427T>G/c.305A>C/p.D102A +YBL078C ATG8 558 atg8-F104A F104A amino_acid_mutation PMID:17632063 F104A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.80421_80422delTTinsGC/c.310_311delTTinsGC/p.F104A +YBL078C ATG8 560 atg8-F77A F77A amino_acid_mutation PMID:34239122 F77A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.80502_80503delTTinsGC/c.229_230delTTinsGC/p.F77A +YBL078C ATG8 561 atg8-F77A,F79A F77A,F79A amino_acid_mutation PMID:34239122 F77A|F79A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.80502_80503delTTinsGC/c.229_230delTTinsGC/p.F77A|chrII:g.80496_80497delTTinsGC/c.235_236delTTinsGC/p.F79A +YBL078C ATG8 562 atg8-I32A I32A amino_acid_mutation PMID:17632063 I32A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.80637_80638delATinsGC/c.94_95delATinsGC/p.I32A +YBL078C ATG8 563 atg8-K26P K26P amino_acid_mutation PMID:20428927 K26P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.80655_80656delAAinsCC/c.76_77delAAinsCC/p.K26P +YBL078C ATG8 564 atg8-K48A K48A amino_acid_mutation PMID:17632063 K48A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.80589_80590delAAinsGC/c.142_143delAAinsGC/p.K48A +YBL078C ATG8 565 atg8-L50A L50A amino_acid_mutation PMID:16680092,PMID:17632063 L50A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.80583_80584delCTinsGC/c.148_149delCTinsGC/p.L50A +YBL078C ATG8 566 atg8-L55W,T56A,V61W,R65A L55W,T56A,V61W,R65A amino_acid_mutation PMID:34095778 L55W|T56A|V61W|R65A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.80567_80569delCTTinsTGG/c.163_165delCTTinsTGG/p.L55W|chrII:g.80566T>C/c.166A>G/p.T56A|chrII:g.80549_80551delGTTinsTGG/c.181_183delGTTinsTGG/p.V61W|chrII:g.80538_80539delAGinsGC/c.193_194delAGinsGC/p.R65A +YBL078C ATG8 567 atg8-P85L,P86L P85L,P86L amino_acid_mutation PMID:34095778 P85L|P86L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.80478G>A/c.254C>T/p.P85L|chrII:g.80519G>A/c.257C>T/p.P86L +YBL078C ATG8 568 atg8-R65A R65A amino_acid_mutation PMID:17632063 R65A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.80538_80539delAGinsGC/c.193_194delAGinsGC/p.R65A +YBL078C ATG8 569 atg8-R65A,P85L,P86L R65A,P85L,P86L amino_acid_mutation PMID:34095778 R65A|P85L|P86L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.80538_80539delAGinsGC/c.193_194delAGinsGC/p.R65A|chrII:g.80478G>A/c.254C>T/p.P85L|chrII:g.80519G>A/c.257C>T/p.P86L +YBL078C ATG8 570 atg8-Y106A Y106A amino_acid_mutation PMID:17632063 Y106A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.80415_80416delTAinsGC/c.316_317delTAinsGC/p.Y106A +YBL078C ATG8 571 atg8-Y49A Y49A amino_acid_mutation PMID:16680092 Y49A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.80586_80587delTAinsGC/c.145_146delTAinsGC/p.Y49A +YBL078C ATG8 572 atg8-Y49A ,L50A Y49A ,L50A amino_acid_mutation PMID:32029894 Y49A|L50A False Y49A,L50A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.80586_80587delTAinsGC/c.145_146delTAinsGC/p.Y49A|chrII:g.80583_80584delCTinsGC/c.148_149delCTinsGC/p.L50A +YBL079W NUP170 575 nup170-H1009N H1009N amino_acid_mutation PMID:31611676 H1009N False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.78283C>A/c.3025C>A/p.H1009N +YBL080C PET112 577 pet112-F103L F103L amino_acid_mutation PMID:30283131 F103L False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.74389A>G/c.307T>C/p.F103L +YBL088C TEL1 590 tel1-N2021D N2021D amino_acid_mutation PMID:26584331 N2021D False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.53322T>C/c.6061A>G/p.N2021D +YBL088C TEL1 591 tel1-T2028K T2028K amino_acid_mutation PMID:32043971 T2028K False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.53300G>T/c.6083C>A/p.T2028K +YBL101C ECM21 609 ecm21-E216* E216* partial_amino_acid_deletion PMID:33501915 E216* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrII:g.27654C>A/c.646G>T/p.E216* +YBL101C ECM21 610 ecm21-E316* E316* partial_amino_acid_deletion PMID:33501915 E316* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrII:g.27354C>A/c.946G>T/p.E316* +YBL101C ECM21 611 ecm21-E668* E668* partial_amino_acid_deletion PMID:33501915 E668* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrII:g.26298C>A/c.2002G>T/p.E668* +YBL101C ECM21 613 ecm21-L812* L812* partial_amino_acid_deletion PMID:33501915 L812* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrII:g.25865A>T/c.2435T>A/p.L812* +YBL101C ECM21 614 ecm21-P2S P2S amino_acid_mutation PMID:35437932 P2S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.28296G>A/c.4C>T/p.P2S +YBL101C ECM21 615 ecm21-P748A,P749A,Y750A P748A,P749A,Y750A amino_acid_mutation PMID:35437932 P748A|P749A|Y750A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.26058G>C/c.2242C>G/p.P748A|chrII:g.26055G>C/c.2245C>G/p.P749A|chrII:g.26051_26052delTAinsGC/c.2248_2249delTAinsGC/p.Y750A +YBL101C ECM21 616 ecm21-P886S P886S amino_acid_mutation PMID:33501915 P886S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.25644G>A/c.2656C>T/p.P886S +YBL101C ECM21 617 ecm21-R742* R742* partial_amino_acid_deletion PMID:33501915 R742* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrII:g.26076T>A/c.2224A>T/p.R742* +YBL104C SEA4 620 sea4-T980I T980I amino_acid_mutation PMID:35931002 T980I False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.18355G>A/c.2939C>T/p.T980I +YBL105C PKC1 623 PKC1-R398P R398P amino_acid_mutation PMID:30586320,PMID:32184286,PMID:33508381,PMID:37379203,PMID:8846785 R398P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.16504C>G/c.1193G>C/p.R398P +YBL105C PKC1 629 pkc1-K92R K92R amino_acid_mutation PMID:35931002 K92R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.17422T>C/c.275A>G/p.K92R +YBL105C PKC1 630 pkc1-S1143A S1143A amino_acid_mutation PMID:35912799 S1143A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.14270A>C/c.3427T>G/p.S1143A +YBL105C PKC1 631 pkc1-S328T S328T amino_acid_mutation PMID:35931002 S328T False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.16714C>G/c.983G>C/p.S328T +YBL105C PKC1 632 pkc1-T1125A,S1143A T1125A,S1143A amino_acid_mutation PMID:35912799 T1125A|S1143A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.14324T>C/c.3373A>G/p.T1125A|chrII:g.14270A>C/c.3427T>G/p.S1143A +YBL106C SRO77 636 sro77-K809E K809E amino_acid_mutation PMID:35931002 K809E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.11455T>C/c.2425A>G/p.K809E +YBL106C SRO77 637 sro77-N267S N267S amino_acid_mutation PMID:35931002 N267S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.13080T>C/c.800A>G/p.N267S +YBL106C SRO77 638 sro77-P900S P900S amino_acid_mutation PMID:35931002 P900S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.11182G>A/c.2698C>T/p.P900S +YBL106C SRO77 639 sro77-V485A V485A amino_acid_mutation PMID:35931002 V485A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.12426A>G/c.1454T>C/p.V485A +YBL106C SRO77 640 sro77-V693I V693I amino_acid_mutation PMID:35931002 V693I False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.11803C>T/c.2077G>A/p.V693I +YBL107C MIX23 641 mix23-C114Y C114Y amino_acid_mutation PMID:35931002 C114Y False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.10211C>T/c.341G>A/p.C114Y +YBR009C HHF1 654 hhf1-D69I D69I amino_acid_mutation PMID:32927239 D69I False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.255479_255480delGAinsAT/c.205_206delGAinsAT/p.D69I +YBR009C HHF1 655 hhf1-E75M E75M amino_acid_mutation PMID:32927239 E75M False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.255460_255462delGAAinsATG/c.223_225delGAAinsATG/p.E75M +YBR009C HHF1 656 hhf1-G100A G100A amino_acid_mutation PMID:34844121 G100A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.255386C>G/c.299G>C/p.G100A +YBR009C HHF1 657 hhf1-I47A I47A amino_acid_mutation PMID:33526454 I47A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.255545_255546delATinsGC/c.139_140delATinsGC/p.I47A +YBR009C HHF1 658 hhf1-K13R K13R amino_acid_mutation PMID:21249184 K13R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.255647T>C/c.38A>G/p.K13R +YBR009C HHF1 660 hhf1-K78E K78E amino_acid_mutation PMID:32766790 K78E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.255453T>C/c.232A>G/p.K78E +YBR009C HHF1 661 hhf1-K78R K78R amino_acid_mutation PMID:32766790 K78R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.255452T>C/c.233A>G/p.K78R +YBR009C HHF1 662 hhf1-L23A L23A amino_acid_mutation PMID:35705668 L23A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.255617_255618delCTinsGC/c.67_68delCTinsGC/p.L23A +YBR009C HHF1 663 hhf1-N26D N26D amino_acid_mutation PMID:33526454 N26D False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.255609T>C/c.76A>G/p.N26D +YBR009C HHF1 664 hhf1-R20A R20A amino_acid_mutation PMID:35705668 R20A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256151_256152delCGinsGC/c.58_59delCGinsGC/p.R20A +YBR009C HHF1 665 hhf1-R36A R36A amino_acid_mutation PMID:35705668 R36A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.255578_255579delAGinsGC/c.106_107delAGinsGC/p.R36A +YBR009C HHF1 666 hhf1-T72D T72D amino_acid_mutation PMID:32927239 T72D False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.255470_255471delACinsGA/c.214_215delACinsGA/p.T72D +YBR009C HHF1 667 hhf1-T72I T72I amino_acid_mutation PMID:32927239 T72I False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.255470G>A/c.215C>T/p.T72I +YBR009C HHF1 668 hhf1-T74F T74F amino_acid_mutation PMID:32927239 T74F False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.255464_255465delACinsTT/c.220_221delACinsTT/p.T74F +YBR009C HHF1 669 hhf1-T74Y T74Y amino_acid_mutation PMID:32927239 T74Y False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.255464_255465delACinsTA/c.220_221delACinsTA/p.T74Y +YBR009C HHF1 670 hhf1-T81A T81A amino_acid_mutation PMID:33526454 T81A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.255444T>C/c.241A>G/p.T81A +YBR009C HHF1 671 hhf1-Y99A Y99A amino_acid_mutation PMID:34844121 Y99A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.255389_255390delTAinsGC/c.295_296delTAinsGC/p.Y99A +YBR010W HHT1 676 hht1-A111C A111C amino_acid_mutation PMID:32631887 A111C False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256661_256662delGCinsTG/c.331_332delGCinsTG/p.A111C +YBR010W HHT1 677 hht1-E51A E51A amino_acid_mutation PMID:32496195 E51A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256482A>C/c.152A>C/p.E51A +YBR010W HHT1 678 hht1-E74A E74A amino_acid_mutation PMID:33526454 E74A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256551A>C/c.221A>C/p.E74A +YBR010W HHT1 679 hht1-E74Q E74Q amino_acid_mutation PMID:33526454 E74Q False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256550G>C/c.220G>C/p.E74Q +YBR010W HHT1 680 hht1-E95A E95A amino_acid_mutation PMID:35705668 E95A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256614A>C/c.284A>C/p.E95A +YBR010W HHT1 681 hht1-F55A F55A amino_acid_mutation PMID:32496195 F55A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256493_256494delTTinsGC/c.163_164delTTinsGC/p.F55A +YBR010W HHT1 682 hht1-G13A G13A amino_acid_mutation PMID:35705668 G13A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256368G>C/c.38G>C/p.G13A +YBR010W HHT1 683 hht1-G45A G45A amino_acid_mutation PMID:32496195,PMID:32845241 G45A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256464G>C/c.134G>C/p.G45A +YBR010W HHT1 684 hht1-H114A H114A amino_acid_mutation PMID:32631887 H114A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256670_256671delCAinsGC/c.340_341delCAinsGC/p.H114A +YBR010W HHT1 685 hht1-H114N H114N amino_acid_mutation PMID:32631887 H114N False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256670C>A/c.340C>A/p.H114N +YBR010W HHT1 686 hht1-H114Y H114Y amino_acid_mutation PMID:32631887 H114Y False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256670C>T/c.340C>T/p.H114Y +YBR010W HHT1 687 hht1-I113A I113A amino_acid_mutation PMID:32845241 I113A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256667_256668delATinsGC/c.337_338delATinsGC/p.I113A +YBR010W HHT1 688 hht1-I52A I52A amino_acid_mutation PMID:32496195 I52A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256484_256485delATinsGC/c.154_155delATinsGC/p.I52A +YBR010W HHT1 689 hht1-I90A I90A amino_acid_mutation PMID:33526454 I90A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256598_256599delATinsGC/c.268_269delATinsGC/p.I90A +YBR010W HHT1 690 hht1-K15R,K24R K15R,K24R amino_acid_mutation PMID:21454479 K15R|K24R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256374A>G/c.44A>G/p.K15R|chrII:g.256401A>G/c.71A>G/p.K24R +YBR010W HHT1 691 hht1-K19A K19A amino_acid_mutation PMID:33869198 K19A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256357_256358delAAinsGC/c.55_56delAAinsGC/p.K19A +YBR010W HHT1 692 hht1-K19L K19L amino_acid_mutation PMID:33869198 K19L False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256357_256358delAAinsCT/c.55_56delAAinsCT/p.K19L +YBR010W HHT1 693 hht1-K19Q K19Q amino_acid_mutation PMID:33869198 K19Q False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256357A>C/c.55A>C/p.K19Q +YBR010W HHT1 694 hht1-K28A K28A amino_acid_mutation PMID:33869198 K28A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256384_256385delAAinsGC/c.82_83delAAinsGC/p.K28A +YBR010W HHT1 695 hht1-K28M K28M amino_acid_mutation PMID:33869198 K28M False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256385_256386delAAinsTG/c.83_84delAAinsTG/p.K28M +YBR010W HHT1 696 hht1-K37A K37A amino_acid_mutation PMID:35263330 K37A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256411_256412delAAinsGC/c.109_110delAAinsGC/p.K37A +YBR010W HHT1 697 hht1-K43A K43A amino_acid_mutation PMID:21685365,PMID:32845241,PMID:33869198 K43A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256457_256458delAAinsGC/c.127_128delAAinsGC/p.K43A +YBR010W HHT1 698 hht1-K43L K43L amino_acid_mutation PMID:33869198 K43L False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256457_256458delAAinsCT/c.127_128delAAinsCT/p.K43L +YBR010W HHT1 699 hht1-K43M K43M amino_acid_mutation PMID:33869198 K43M False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256458A>T/c.128A>T/p.K43M +YBR010W HHT1 700 hht1-K43Q K43Q amino_acid_mutation PMID:33869198 K43Q False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256457A>C/c.127A>C/p.K43Q +YBR010W HHT1 701 hht1-K57A K57A amino_acid_mutation PMID:22553361 K57A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256499_256500delAAinsGC/c.169_170delAAinsGC/p.K57A +YBR010W HHT1 702 hht1-K57Q K57Q amino_acid_mutation PMID:21656278,PMID:32496195 K57Q False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256499A>C/c.169A>C/p.K57Q +YBR010W HHT1 703 hht1-K5A K5A amino_acid_mutation PMID:33869198 K5A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256343_256344delAAinsGC/c.13_14delAAinsGC/p.K5A +YBR010W HHT1 705 hht1-K80A K80A amino_acid_mutation PMID:33869198 K80A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256568_256569delAAinsGC/c.238_239delAAinsGC/p.K80A +YBR010W HHT1 706 hht1-K80L K80L amino_acid_mutation PMID:33869198 K80L False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256568_256569delAAinsCT/c.238_239delAAinsCT/p.K80L +YBR010W HHT1 707 hht1-K80M K80M amino_acid_mutation PMID:33869198 K80M False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256569A>T/c.239A>T/p.K80M +YBR010W HHT1 708 hht1-L49A L49A amino_acid_mutation PMID:32496195 L49A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256475_256476delTTinsGC/c.145_146delTTinsGC/p.L49A +YBR010W HHT1 709 hht1-L61W L61W amino_acid_mutation PMID:29271283 L61W False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256511_256512delCTinsTG/c.181_182delCTinsTG/p.L61W +YBR010W HHT1 710 hht1-P44A P44A amino_acid_mutation PMID:32496195 P44A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256460C>G/c.130C>G/p.P44A +YBR010W HHT1 711 hht1-Q56A Q56A amino_acid_mutation PMID:32496195 Q56A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256496_256497delCAinsGC/c.166_167delCAinsGC/p.Q56A +YBR010W HHT1 712 hht1-Q77E Q77E amino_acid_mutation PMID:33526454 Q77E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256559C>G/c.229C>G/p.Q77E +YBR010W HHT1 713 hht1-Q94A Q94A amino_acid_mutation PMID:32845241 Q94A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256610_256611delCAinsGC/c.280_281delCAinsGC/p.Q94A +YBR010W HHT1 714 hht1-R41A R41A amino_acid_mutation PMID:32496195,PMID:32845241 R41A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256451_256452delAGinsGC/c.121_122delAGinsGC/p.R41A +YBR010W HHT1 715 hht1-R50A R50A amino_acid_mutation PMID:32496195,PMID:32845241 R50A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256478_256479delAGinsGC/c.148_149delAGinsGC/p.R50A +YBR010W HHT1 716 hht1-R53A R53A amino_acid_mutation PMID:32496195,PMID:32845241 R53A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256487_256488delAGinsGC/c.157_158delAGinsGC/p.R53A +YBR010W HHT1 717 hht1-R53E R53E amino_acid_mutation PMID:29271283 R53E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256487_256488delAGinsGA/c.157_158delAGinsGA/p.R53E +YBR010W HHT1 718 hht1-R54A R54A amino_acid_mutation PMID:32496195 R54A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256462_256463delAGinsGC/c.160_161delAGinsGC/p.R54A +YBR010W HHT1 720 hht1-R84A R84A amino_acid_mutation PMID:33526454 R84A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256580_256581delAGinsGC/c.250_251delAGinsGC/p.R84A +YBR010W HHT1 721 hht1-S11A S11A amino_acid_mutation PMID:35704464 S11A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256361T>G/c.31T>G/p.S11A +YBR010W HHT1 722 hht1-S58A S58A amino_acid_mutation PMID:32496195 S58A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256502T>G/c.172T>G/p.S58A +YBR010W HHT1 723 hht1-T46A T46A amino_acid_mutation PMID:32496195,PMID:32845241 T46A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256466A>G/c.136A>G/p.T46A +YBR010W HHT1 724 hht1-V47A V47A amino_acid_mutation PMID:32496195,PMID:32845241,PMID:35705668 V47A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256470T>C/c.140T>C/p.V47A +YBR010W HHT1 725 hht1-Y42A Y42A amino_acid_mutation PMID:32496195 Y42A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.256426_256427delTAinsGC/c.124_125delTAinsGC/p.Y42A +YBR017C KAP104 732 kap104-A523P A523P amino_acid_mutation PMID:31611676 A523P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.272137C>G/c.1567G>C/p.A523P +YBR023C CHS3 733 chs3-L24A L24A amino_acid_mutation PMID:33978245 L24A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.287855_287856delCTinsGC/c.70_71delCTinsGC/p.L24A +YBR034C HMT1 750 hmt1-G70D G70D amino_acid_mutation PMID:31613873 G70D False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.305768C>T/c.209G>A/p.G70D +YBR037C SCO1 770 sco1-C148A C148A amino_acid_mutation PMID:17430883 C148A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.311010_311011delTGinsGC/c.442_443delTGinsGC/p.C148A +YBR037C SCO1 771 sco1-R220D R220D amino_acid_mutation PMID:18390903 R220D False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.310793_310795delAGAinsGAC/c.658_660delAGAinsGAC/p.R220D +YBR037C SCO1 772 sco1-V221D V221D amino_acid_mutation PMID:18390903 V221D False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.310790_310791delTAinsAC/c.662_663delTAinsAC/p.V221D +YBR037C SCO1 773 sco1-Y219D Y219D amino_acid_mutation PMID:18390903 Y219D False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.310798A>C/c.655T>G/p.Y219D +YBR037C SCO1 774 sco1-Y222D Y222D amino_acid_mutation PMID:18390903 Y222D False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.310789A>C/c.664T>G/p.Y222D +YBR038W CHS2 775 CHS2-V377I V377I amino_acid_mutation PMID:29601579 V377I False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.313026G>A/c.1129G>A/p.V377I +YBR038W CHS2 779 chs2-S133A S133A amino_acid_mutation PMID:35230542 S133A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.312294T>G/c.397T>G/p.S133A +YBR038W CHS2 780 chs2-S133E S133E amino_acid_mutation PMID:35230542 S133E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.312294_312295delTCinsGA/c.397_398delTCinsGA/p.S133E +YBR038W CHS2 781 chs2-S217A S217A amino_acid_mutation PMID:22573892 S217A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.312546T>G/c.649T>G/p.S217A +YBR038W CHS2 782 chs2-S217D S217D amino_acid_mutation PMID:22573892 S217D False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.312546_312547delTCinsGA/c.649_650delTCinsGA/p.S217D +YBR039W ATP3 786 atp3-L116F L116F amino_acid_mutation PMID:33093184 L116F False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.315922G>T/c.348G>T/p.L116F +YBR041W FAT1 789 fat1-P439L P439L amino_acid_mutation PMID:31611676 P439L False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.319581C>T/c.1316C>T/p.P439L +YBR059C AKL1 803 akl1-S176P S176P amino_acid_mutation PMID:35511982 S176P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.359662A>G/c.526T>C/p.S176P +YBR060C ORC2 810 orc2-K406R K406R amino_acid_mutation PMID:35926881 K406R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.361298T>C/c.1217A>G/p.K406R +YBR060C ORC2 811 orc2-K406R,K419R,K434R,K592R K406R,K419R,K434R,K592R amino_acid_mutation PMID:35926881 K406R|K419R|K434R|K592R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.361298T>C/c.1217A>G/p.K406R|chrII:g.361259T>C/c.1256A>G/p.K419R|chrII:g.361214T>C/c.1301A>G/p.K434R|chrII:g.360864T>C/c.1775A>G/p.K592R +YBR060C ORC2 812 orc2-K419R K419R amino_acid_mutation PMID:35926881 K419R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.361259T>C/c.1256A>G/p.K419R +YBR060C ORC2 813 orc2-K434R K434R amino_acid_mutation PMID:35926881 K434R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.361214T>C/c.1301A>G/p.K434R +YBR060C ORC2 814 orc2-K592R K592R amino_acid_mutation PMID:35926881 K592R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.360864T>C/c.1775A>G/p.K592R +YBR061C TRM7 816 trm7-A26P A26P amino_acid_mutation PMID:26310293 A26P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.365644C>G/c.76G>C/p.A26P +YBR072W HSP26 823 hsp26-S144E S144E amino_acid_mutation PMID:34795272 S144E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.382459_382461delAGTinsGAG/c.430_432delAGTinsGAG/p.S144E +YBR072W HSP26 824 hsp26-S207E S207E amino_acid_mutation PMID:34795272 S207E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.382648_382650delTCTinsGAG/c.619_621delTCTinsGAG/p.S207E +YBR072W HSP26 825 hsp26-S208E S208E amino_acid_mutation PMID:34795272 S208E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.382651_382653delTCTinsGAG/c.622_624delTCTinsGAG/p.S208E +YBR072W HSP26 826 hsp26-S208E,S211E S208E,S211E amino_acid_mutation PMID:34795272 S208E|S211E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.382651_382653delTCTinsGAG/c.622_624delTCTinsGAG/p.S208E|chrII:g.382478_382479delTCinsGA/c.631_632delTCinsGA/p.S211E +YBR072W HSP26 827 hsp26-S211E S211E amino_acid_mutation PMID:34795272 S211E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.382478_382479delTCinsGA/c.631_632delTCinsGA/p.S211E +YBR072W HSP26 828 hsp26-S47E S47E amino_acid_mutation PMID:34795272 S47E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.382168_382170delTCTinsGAG/c.139_141delTCTinsGAG/p.S47E +YBR072W HSP26 829 hsp26-S47E,T48E S47E,T48E amino_acid_mutation PMID:34795272 S47E|T48E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.382168_382170delTCTinsGAG/c.139_141delTCTinsGAG/p.S47E|chrII:g.382171_382173delACTinsGAG/c.142_144delACTinsGAG/p.T48E +YBR072W HSP26 830 hsp26-S90E S90E amino_acid_mutation PMID:34795272 S90E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.382297_382299delAGTinsGAG/c.268_270delAGTinsGAG/p.S90E +YBR072W HSP26 831 hsp26-T163E T163E amino_acid_mutation PMID:34795272 T163E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.382334_382335delACinsGA/c.487_488delACinsGA/p.T163E +YBR072W HSP26 832 hsp26-T42E T42E amino_acid_mutation PMID:34795272 T42E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.382153_382154delACinsGA/c.124_125delACinsGA/p.T42E +YBR072W HSP26 833 hsp26-T48E T48E amino_acid_mutation PMID:34795272 T48E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.382171_382173delACTinsGAG/c.142_144delACTinsGAG/p.T48E +YBR073W RDH54 834 rdh54-K352R K352R amino_acid_mutation PMID:16831867 K352R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.384166A>G/c.1055A>G/p.K352R +YBR081C SPT7 847 spt7-S485T,M486A S485T,M486A amino_acid_mutation PMID:35301489 S485T|M486A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.403799A>T/c.1453T>A/p.S485T|chrII:g.403795_403796delATinsGC/c.1456_1457delATinsGC/p.M486A +YBR082C UBC4 848 ubc4-C86A C86A amino_acid_mutation PMID:35294869 C86A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.406818_406819delTGinsGC/c.256_257delTGinsGC/p.C86A +YBR083W TEC1 851 tec1-P274S P274S amino_acid_mutation PMID:15620357 P274S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.409988C>T/c.820C>T/p.P274S +YBR083W TEC1 852 tec1-T273M T273M amino_acid_mutation PMID:15620357 T273M False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.409986C>T/c.818C>T/p.T273M +YBR088C POL30 862 pol30-201,204 201,204 partial_amino_acid_deletion PMID:18245822 201|204 False partial_amino_acid_deletion:single_aa|partial_amino_acid_deletion:single_aa partial_amino_acid_deletion chrII:g.425207_425209delTCC/c.601_603delGGA/p.G201delG|chrII:g.425199_425201delGTT/c.610_612delACA/p.T204delT +YBR088C POL30 870 pol30-A251V A251V amino_acid_mutation PMID:16782870 A251V False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425015G>A/c.752C>T/p.A251V +YBR088C POL30 872 pol30-K107R K107R amino_acid_mutation PMID:27708008 K107R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425447T>C/c.320A>G/p.K107R +YBR088C POL30 873 pol30-K108R K108R amino_acid_mutation PMID:27708008 K108R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425444T>C/c.323A>G/p.K108R +YBR088C POL30 874 pol30-K117R K117R amino_acid_mutation PMID:27708008 K117R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425417T>C/c.350A>G/p.K117R +YBR088C POL30 875 pol30-K127R K127R amino_acid_mutation PMID:27708008,PMID:32371600 K127R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425387T>C/c.380A>G/p.K127R +YBR088C POL30 876 pol30-K127R,K164R K127R,K164R amino_acid_mutation PMID:33526454,PMID:36126066 K127R|K164R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425387T>C/c.380A>G/p.K127R|chrII:g.425276T>C/c.491A>G/p.K164R +YBR088C POL30 877 pol30-K146R K146R amino_acid_mutation PMID:27708008 K146R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425330T>C/c.437A>G/p.K146R +YBR088C POL30 878 pol30-K164E K164E amino_acid_mutation PMID:18193055 K164E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425277T>C/c.490A>G/p.K164E +YBR088C POL30 879 pol30-K164N,D86A,Q201P,D256V K164N,D86A,Q201P,D256V amino_acid_mutation PMID:18193055 K164N|D86A|Q201P|D256V False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425275T>G/c.492A>C/p.K164N|chrII:g.425510T>G/c.257A>C/p.D86A|chrII:g.425165T>G/c.602A>C/p.Q201P|chrII:g.425000T>A/c.767A>T/p.D256V +YBR088C POL30 880 pol30-K164R K164R amino_acid_mutation PMID:20713444,PMID:26545110,PMID:27708008,PMID:29281621,PMID:32371600,PMID:35338218,PMID:36126066 K164R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425276T>C/c.491A>G/p.K164R +YBR088C POL30 881 pol30-K164R,S177L K164R,S177L amino_acid_mutation PMID:18193055 K164R|S177L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425276T>C/c.491A>G/p.K164R|chrII:g.425237G>A/c.530C>T/p.S177L +YBR088C POL30 882 pol30-K168A K168A amino_acid_mutation PMID:31281030 K168A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425264_425265delAAinsGC/c.502_503delAAinsGC/p.K168A +YBR088C POL30 883 pol30-L154A L154A amino_acid_mutation PMID:35338218 L154A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425306_425307delTTinsGC/c.460_461delTTinsGC/p.L154A +YBR088C POL30 884 pol30-L154A,K164R L154A,K164R amino_acid_mutation PMID:35338218 L154A|K164R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425306_425307delTTinsGC/c.460_461delTTinsGC/p.L154A|chrII:g.425276T>C/c.491A>G/p.K164R +YBR088C POL30 887 pol30-k168r k168r amino_acid_mutation PMID:27708008 k168r False K168R amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425264T>C/c.503A>G/p.K168R +YBR088C POL30 888 pol30-k183r k183r amino_acid_mutation PMID:27708008 k183r False K183R amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425219T>C/c.548A>G/p.K183R +YBR088C POL30 889 pol30-k196r k196r amino_acid_mutation PMID:27708008 k196r False K196R amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425180T>C/c.587A>G/p.K196R +YBR088C POL30 890 pol30-k210r k210r amino_acid_mutation PMID:27708008 k210r False K210R amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425138T>C/c.629A>G/p.K210R +YBR088C POL30 891 pol30-k217r k217r amino_acid_mutation PMID:27708008 k217r False K217R amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425117T>C/c.650A>G/p.K217R +YBR088C POL30 892 pol30-k242r k242r amino_acid_mutation PMID:27708008 k242r False K242R amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425042T>C/c.725A>G/p.K242R +YBR088C POL30 893 pol30-k253r k253r amino_acid_mutation PMID:27708008 k253r False K253R amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425009T>C/c.758A>G/p.K253R +YBR093C PHO5 902 pho5-Y297* Y297* partial_amino_acid_deletion PMID:31611676 Y297* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrII:g.430061G>T/c.891C>A/p.Y297* +YBR097W VPS15 904 vps15-E200R E200R amino_acid_mutation PMID:18533003 E200R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.437548_437549delGAinsAG/c.598_599delGAinsAG/p.E200R +YBR098W MMS4 907 mms4-G549E G549E amino_acid_mutation PMID:29796388 G549E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.443160G>A/c.1646G>A/p.G549E +YBR101C FES1 909 fes1-A79R,R195A A79R,R195A amino_acid_mutation PMID:31242183 A79R|R195A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.444458_444459delGCinsCG/c.235_236delGCinsCG/p.A79R|chrII:g.444110_444111delAGinsGC/c.583_584delAGinsGC/p.R195A +YBR108W AIM3 916 aim3-F587S F587S amino_acid_mutation PMID:31611676 F587S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.456581T>C/c.1760T>C/p.F587S +YBR112C CYC8 933 cyc8-A356P A356P amino_acid_mutation PMID:25304510 A356P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.464705C>G/c.1066G>C/p.A356P +YBR112C CYC8 934 cyc8-A392P A392P amino_acid_mutation PMID:29796388 A392P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.464597C>G/c.1174G>C/p.A392P +YBR112C CYC8 935 cyc8-D395Y D395Y amino_acid_mutation PMID:29796388 D395Y False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.464588C>A/c.1183G>T/p.D395Y +YBR112C CYC8 936 cyc8-G337S G337S amino_acid_mutation PMID:29796388 G337S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.464762C>T/c.1009G>A/p.G337S +YBR112C CYC8 937 cyc8-G371S G371S amino_acid_mutation PMID:29796388 G371S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.464660C>T/c.1111G>A/p.G371S +YBR112C CYC8 938 cyc8-L350V L350V amino_acid_mutation PMID:29796388 L350V False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.464723A>C/c.1048T>G/p.L350V +YBR112C CYC8 939 cyc8-L350V,A352fs L350V,A352fs amino_acid_insertion_and_mutation PMID:29796388 L350V|A352fs False L350V,A352FS amino_acid_mutation:single_aa|amino_acid_insertion_and_mutation:multiple_aa amino_acid_insertion_and_mutation chrII:g.464723A>C/c.1048T>G/p.L350V|chrII:g.464715_464717delinsGCTAAA/c.1054_1056delinsTTTAGC/p.A352_A352delinsFS +YBR112C CYC8 940 cyc8-L370R L370R amino_acid_mutation PMID:29796388 L370R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.464837_464838delTTinsAG/c.1108_1109delTTinsAG/p.L370R +YBR112C CYC8 941 cyc8-L373F L373F amino_acid_mutation PMID:29796388 L373F False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.464654G>A/c.1117C>T/p.L373F +YBR112C CYC8 943 cyc8-W367C W367C amino_acid_mutation PMID:29796388 W367C False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.464670C>A/c.1101G>T/p.W367C +YBR112C CYC8 944 cyc8-W367L W367L amino_acid_mutation PMID:29796388 W367L False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.464671C>A/c.1100G>T/p.W367L +YBR112C CYC8 945 cyc8-Y353C Y353C amino_acid_mutation PMID:28363963 Y353C False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.464713T>C/c.1058A>G/p.Y353C +YBR118W TEF2 979 tef2-G70S G70S amino_acid_mutation PMID:28911200 G70S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.477878G>A/c.208G>A/p.G70S +YBR118W TEF2 980 tef2-P331L P331L amino_acid_mutation PMID:28911200 P331L False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.478662C>T/c.992C>T/p.P331L +YBR121C GRS1 983 grs1-D96N D96N amino_acid_mutation PMID:25168514 D96N False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.483082C>T/c.286G>A/p.D96N +YBR121C GRS1 984 grs1-P227L P227L amino_acid_mutation PMID:25168514 P227L False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.482688G>A/c.680C>T/p.P227L +YBR121C GRS1 985 grs1-P265H P265H amino_acid_mutation PMID:35332613 P265H False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.482573_482574delCAinsAT/c.794_795delCAinsAT/p.P265H +YBR121C GRS1 986 grs1-P265R P265R amino_acid_mutation PMID:35332613 P265R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.482574G>C/c.794C>G/p.P265R +YBR123C TFC1 991 tfc1-e447k e447k amino_acid_mutation PMID:21552543,PMID:27708008 e447k False E447K amino_acid_mutation:single_aa amino_acid_mutation chrII:g.485353C>T/c.1339G>A/p.E447K +YBR126C TPS1 993 tps1-D156G D156G amino_acid_mutation PMID:35929793 D156G False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.489926T>C/c.467A>G/p.D156G +YBR126C TPS1 994 tps1-R24G R24G amino_acid_mutation PMID:35929793 R24G False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.490323T>C/c.70A>G/p.R24G +YBR126C TPS1 995 tps1-W111S W111S amino_acid_mutation PMID:35929793 W111S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.490061C>G/c.332G>C/p.W111S +YBR126C TPS1 996 tps1-W182STOP W182STOP partial_amino_acid_deletion PMID:35929793 W182STOP False W182* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrII:g.489848C>T/c.545G>A/p.W182* +YBR126C TPS1 997 tps1-Y102V Y102V amino_acid_mutation PMID:35929793 Y102V False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.490088_490089delTAinsGT/c.304_305delTAinsGT/p.Y102V +YBR126C TPS1 998 tps1-Y102V,W111S Y102V,W111S amino_acid_mutation PMID:35929793 Y102V|W111S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.490088_490089delTAinsGT/c.304_305delTAinsGT/p.Y102V|chrII:g.490061C>G/c.332G>C/p.W111S +YBR126W-A MEO1 1001 meo1-T4I T4I amino_acid_mutation PMID:35283819 T4I False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.490860C>T/c.11C>T/p.T4I +YBR127C VMA2 1002 vma2-R381Q R381Q amino_acid_mutation PMID:30720463 R381Q False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.491681_491682delAGinsCA/c.1141_1142delAGinsCA/p.R381Q +YBR127C VMA2 1003 vma2-Y284A Y284A amino_acid_mutation PMID:34663920 Y284A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.491972_491973delTAinsGC/c.850_851delTAinsGC/p.Y284A +YBR127C VMA2 1004 vma2-Y352C Y352C amino_acid_mutation PMID:30720463 Y352C False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.491768T>C/c.1055A>G/p.Y352C +YBR130C SHE3 1008 she3-K340A,R341A K340A,R341A amino_acid_mutation PMID:28092367 K340A|R341A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.495920_495921delAAinsGC/c.1018_1019delAAinsGC/p.K340A|chrII:g.495848_495849delAGinsGC/c.1021_1022delAGinsGC/p.R341A +YBR130C SHE3 1009 she3-L364A,V367A L364A,V367A amino_acid_mutation PMID:28092367 L364A|V367A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.495779_495780delTTinsGC/c.1090_1091delTTinsGC/p.L364A|chrII:g.495770A>G/c.1100T>C/p.V367A +YBR135W CKS1 1013 cks1-L22V L22V amino_acid_mutation PMID:29796388 L22V False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.504917T>G/c.64T>G/p.L22V +YBR136W MEC1 1023 mec1-A1306V A1306V amino_acid_mutation PMID:32043971 A1306V False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.509584C>T/c.3917C>T/p.A1306V +YBR136W MEC1 1024 mec1-A1726V A1726V amino_acid_mutation PMID:33742106 A1726V False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.510844C>T/c.5177C>T/p.A1726V +YBR136W MEC1 1025 mec1-A1859V A1859V amino_acid_mutation PMID:33742106 A1859V False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.511243C>T/c.5576C>T/p.A1859V +YBR136W MEC1 1026 mec1-A775P A775P amino_acid_mutation PMID:33742106 A775P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.507990G>C/c.2323G>C/p.A775P +YBR136W MEC1 1027 mec1-A927T A927T amino_acid_mutation PMID:33742106 A927T False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.508446G>A/c.2779G>A/p.A927T +YBR136W MEC1 1028 mec1-C1985Y C1985Y amino_acid_mutation PMID:33742106 C1985Y False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.511621G>A/c.5954G>A/p.C1985Y +YBR136W MEC1 1029 mec1-C467Y C467Y amino_acid_mutation PMID:33742106 C467Y False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.507067G>A/c.1400G>A/p.C467Y +YBR136W MEC1 1030 mec1-D2224A D2224A amino_acid_mutation PMID:31340146 D2224A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.512338A>C/c.6671A>C/p.D2224A +YBR136W MEC1 1031 mec1-D2243N D2243N amino_acid_mutation PMID:33169019 D2243N False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.512394G>A/c.6727G>A/p.D2243N +YBR136W MEC1 1032 mec1-D2245N D2245N amino_acid_mutation PMID:33742106 D2245N False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.512400G>A/c.6733G>A/p.D2245N +YBR136W MEC1 1033 mec1-E2130K E2130K amino_acid_mutation PMID:33742106 E2130K False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.512055G>A/c.6388G>A/p.E2130K +YBR136W MEC1 1034 mec1-F2244L F2244L amino_acid_mutation PMID:33169019 F2244L False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.512397T>C/c.6730T>C/p.F2244L +YBR136W MEC1 1035 mec1-F2248A F2248A amino_acid_mutation PMID:33169019 F2248A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.512409_512410delTTinsGC/c.6742_6743delTTinsGC/p.F2248A +YBR136W MEC1 1036 mec1-G1124N G1124N amino_acid_mutation PMID:33742106 G1124N False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.509037_509038delGGinsAA/c.3370_3371delGGinsAA/p.G1124N +YBR136W MEC1 1037 mec1-G1546S G1546S amino_acid_mutation PMID:33742106 G1546S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.510303G>A/c.4636G>A/p.G1546S +YBR136W MEC1 1038 mec1-G1804N G1804N amino_acid_mutation PMID:33742106 G1804N False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.511077_511078delGGinsAA/c.5410_5411delGGinsAA/p.G1804N +YBR136W MEC1 1039 mec1-G2127E G2127E amino_acid_mutation PMID:33742106 G2127E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.512047G>A/c.6380G>A/p.G2127E +YBR136W MEC1 1040 mec1-G2279K G2279K amino_acid_mutation PMID:33742106 G2279K False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.512502_512503delGGinsAA/c.6835_6836delGGinsAA/p.G2279K +YBR136W MEC1 1041 mec1-H2241A H2241A amino_acid_mutation PMID:33169019 H2241A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.512388_512389delCAinsGC/c.6721_6722delCAinsGC/p.H2241A +YBR136W MEC1 1042 mec1-S1413F S1413F amino_acid_mutation PMID:33742106 S1413F False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.509905C>T/c.4238C>T/p.S1413F +YBR136W MEC1 1043 mec1-S1964A S1964A amino_acid_mutation PMID:31340146 S1964A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.511557T>G/c.5890T>G/p.S1964A +YBR136W MEC1 1044 mec1-S1991A S1991A amino_acid_mutation PMID:34569643 S1991A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.511638_511639delAGinsGC/c.5971_5972delAGinsGC/p.S1991A +YBR136W MEC1 1045 mec1-S1991D S1991D amino_acid_mutation PMID:34569643 S1991D False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.511638_511639delAGinsGA/c.5971_5972delAGinsGA/p.S1991D +YBR136W MEC1 1046 mec1-S2339N S2339N amino_acid_mutation PMID:33742106 S2339N False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.512683G>A/c.7016G>A/p.S2339N +YBR136W MEC1 1047 mec1-T1902E T1902E amino_acid_mutation PMID:31340146 T1902E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.511371_511373delACTinsGAG/c.5704_5706delACTinsGAG/p.T1902E +YBR136W MEC1 1048 mec1-V2242A V2242A amino_acid_mutation PMID:33169019 V2242A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.512392T>C/c.6725T>C/p.V2242A +YBR136W MEC1 1049 mec1-W2368A W2368A amino_acid_mutation PMID:23934994 W2368A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.512769_512770delTGinsGC/c.7102_7103delTGinsGC/p.W2368A +YBR140C IRA1 1056 ira1-A1259D A1259D amino_acid_mutation PMID:29429618 A1259D False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.522853G>T/c.3776C>A/p.A1259D +YBR140C IRA1 1057 ira1-A1311V A1311V amino_acid_mutation PMID:29429618 A1311V False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.522697G>A/c.3932C>T/p.A1311V +YBR140C IRA1 1058 ira1-D212H D212H amino_acid_mutation PMID:29429618 D212H False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.525995C>G/c.634G>C/p.D212H +YBR140C IRA1 1059 ira1-E1847* E1847* partial_amino_acid_deletion PMID:29429618 E1847* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrII:g.521090C>A/c.5539G>T/p.E1847* +YBR140C IRA1 1060 ira1-E2776* E2776* partial_amino_acid_deletion PMID:29429618 E2776* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrII:g.518303C>A/c.8326G>T/p.E2776* +YBR140C IRA1 1061 ira1-E3018* E3018* partial_amino_acid_deletion PMID:29429618 E3018* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrII:g.517577C>A/c.9052G>T/p.E3018* +YBR140C IRA1 1062 ira1-G2815* G2815* partial_amino_acid_deletion PMID:29429618 G2815* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrII:g.518186C>A/c.8443G>T/p.G2815* +YBR140C IRA1 1063 ira1-G2863R G2863R amino_acid_mutation PMID:29429618 G2863R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.518042C>G/c.8587G>C/p.G2863R +YBR140C IRA1 1064 ira1-K164E K164E amino_acid_mutation PMID:29429618 K164E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.526139T>C/c.490A>G/p.K164E +YBR140C IRA1 1065 ira1-L1143* L1143* partial_amino_acid_deletion PMID:29429618 L1143* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrII:g.523201A>T/c.3428T>A/p.L1143* +YBR140C IRA1 1066 ira1-L1401* L1401* partial_amino_acid_deletion PMID:29429618 L1401* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrII:g.522427A>T/c.4202T>A/p.L1401* +YBR140C IRA1 1067 ira1-L1564R L1564R amino_acid_mutation PMID:29429618 L1564R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.521938A>C/c.4691T>G/p.L1564R +YBR140C IRA1 1068 ira1-L1631* L1631* partial_amino_acid_deletion PMID:29429618 L1631* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrII:g.521737A>T/c.4892T>A/p.L1631* +YBR140C IRA1 1069 ira1-L99F L99F amino_acid_mutation PMID:29429618 L99F False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.526332C>A/c.297G>T/p.L99F +YBR140C IRA1 1070 ira1-P492S P492S amino_acid_mutation PMID:27939892 P492S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.525155G>A/c.1474C>T/p.P492S +YBR140C IRA1 1071 ira1-R103G R103G amino_acid_mutation PMID:29429618 R103G False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.526322T>C/c.307A>G/p.R103G +YBR140C IRA1 1072 ira1-S379* S379* partial_amino_acid_deletion PMID:29429618 S379* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrII:g.525493G>T/c.1136C>A/p.S379* +YBR140C IRA1 1073 ira1-T684K T684K amino_acid_mutation PMID:29429618 T684K False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.524578G>T/c.2051C>A/p.T684K +YBR140C IRA1 1074 ira1-V2764F V2764F amino_acid_mutation PMID:29429618 V2764F False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.518339C>A/c.8290G>T/p.V2764F +YBR140C IRA1 1075 ira1-Y2475* Y2475* partial_amino_acid_deletion PMID:29429618 Y2475* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrII:g.519204G>T/c.7425C>A/p.Y2475* +YBR140C IRA1 1076 ira1-Y2886* Y2886* partial_amino_acid_deletion PMID:29429618 Y2886* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrII:g.517971G>T/c.8658C>A/p.Y2886* +YBR142W MAK5 1078 mak5-D333A D333A amino_acid_mutation PMID:16449635,PMID:35385737 D333A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.529314A>C/c.998A>C/p.D333A +YBR142W MAK5 1079 mak5-K221A K221A amino_acid_mutation PMID:16449635 K221A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.528977_528978delAAinsGC/c.661_662delAAinsGC/p.K221A +YBR142W MAK5 1080 mak5-R728* R728* partial_amino_acid_deletion PMID:24312670 R728* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrII:g.530498A>T/c.2182A>T/p.R728* +YBR143C SUP45 1093 sup45-D110G D110G amino_acid_mutation PMID:20444877 D110G False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.531854T>C/c.329A>G/p.D110G +YBR143C SUP45 1094 sup45-I32F I32F amino_acid_mutation PMID:20444877 I32F False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.532089T>A/c.94A>T/p.I32F +YBR143C SUP45 1095 sup45-M48I M48I amino_acid_mutation PMID:20444877 M48I False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.532039C>G/c.144G>C/p.M48I +YBR143C SUP45 1096 sup45-Q182E Q182E amino_acid_mutation PMID:18657261 Q182E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.531639G>C/c.544C>G/p.Q182E +YBR143C SUP45 1097 sup45-Q182N Q182N amino_acid_mutation PMID:18657261 Q182N False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.531637_531639delCAAinsAAC/c.544_546delCAAinsAAC/p.Q182N +YBR151W APD1 1102 apd1-C110A C110A amino_acid_mutation PMID:30879301 C110A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545355_545356delTGinsGC/c.328_329delTGinsGC/p.C110A +YBR151W APD1 1103 apd1-C128A C128A amino_acid_mutation PMID:30879301 C128A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545409_545410delTGinsGC/c.382_383delTGinsGC/p.C128A +YBR151W APD1 1104 apd1-C207A C207A amino_acid_mutation PMID:30879301 C207A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545646_545647delTGinsGC/c.619_620delTGinsGC/p.C207A +YBR151W APD1 1105 apd1-C216A C216A amino_acid_mutation PMID:30879301 C216A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545673_545674delTGinsGC/c.646_647delTGinsGC/p.C216A +YBR151W APD1 1106 apd1-C309A C309A amino_acid_mutation PMID:30879301 C309A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545952_545953delTGinsGC/c.925_926delTGinsGC/p.C309A +YBR151W APD1 1107 apd1-C33A C33A amino_acid_mutation PMID:30879301 C33A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545124_545125delTGinsGC/c.97_98delTGinsGC/p.C33A +YBR151W APD1 1108 apd1-C44A C44A amino_acid_mutation PMID:30879301 C44A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545157_545158delTGinsGC/c.130_131delTGinsGC/p.C44A +YBR151W APD1 1109 apd1-C48A C48A amino_acid_mutation PMID:30879301 C48A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545169_545170delTGinsGC/c.142_143delTGinsGC/p.C48A +YBR151W APD1 1110 apd1-C95A C95A amino_acid_mutation PMID:30879301 C95A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545310_545311delTGinsGC/c.283_284delTGinsGC/p.C95A +YBR151W APD1 1111 apd1-H255A H255A amino_acid_mutation PMID:30879301 H255A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545790_545791delCAinsGC/c.763_764delCAinsGC/p.H255A +YBR151W APD1 1113 apd1-H255C H255C amino_acid_mutation PMID:30879301 H255C False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545790_545791delCAinsTG/c.763_764delCAinsTG/p.H255C +YBR151W APD1 1115 apd1-H259C H259C amino_acid_mutation PMID:30879301 H259C False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545802_545803delCAinsTG/c.775_776delCAinsTG/p.H259C +YBR151W APD1 1116 apd1-W316STOP W316STOP partial_amino_acid_deletion PMID:30879301 W316STOP False W316* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrII:g.545974G>A/c.947G>A/p.W316* +YBR154C RPB5 1124 rpb5-H147R H147R amino_acid_mutation PMID:17179178,PMID:21552543 H147R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.548570T>C/c.440A>G/p.H147R +YBR154C RPB5 1125 rpb5-P151T P151T amino_acid_mutation PMID:29133017 P151T False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.548559G>T/c.451C>A/p.P151T +YBR154C RPB5 1126 rpb5-R200E R200E amino_acid_mutation PMID:17179178 R200E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.548411_548412delAGinsGA/c.598_599delAGinsGA/p.R200E +YBR155W CNS1 1129 cns1-1-121 1-121 partial_amino_acid_deletion PMID:25380751 1-121 False partial_amino_acid_deletion:multiple_aa partial_amino_acid_deletion chrII:g.549261_549623del363/c.3_365del363/p.N1_K121del121 +YBR158W AMN1 1138 amn1-S67R S67R amino_acid_mutation PMID:32303542 S67R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.556747_556748delTCinsAG/c.199_200delTCinsAG/p.S67R +YBR158W AMN1 1139 amn1-V368D V368D amino_acid_mutation PMID:30273335 V368D False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.557651T>A/c.1103T>A/p.V368D +YBR160W CDC28 1164 cdc28-T169A T169A amino_acid_mutation PMID:8754858 T169A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.560582A>G/c.505A>G/p.T169A +YBR160W CDC28 1165 cdc28-T169E T169E amino_acid_mutation PMID:8754858 T169E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.560582_560583delACinsGA/c.505_506delACinsGA/p.T169E +YBR160W CDC28 1166 cdc28-Y19F Y19F amino_acid_mutation PMID:26634277 Y19F False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.560133A>T/c.56A>T/p.Y19F +YBR164C ARL1 1171 ARL1-D130N D130N amino_acid_mutation PMID:22594927 D130N False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.568039C>T/c.388G>A/p.D130N +YBR164C ARL1 1172 ARL1-Q72L Q72L amino_acid_mutation PMID:22594927 Q72L False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.568212T>A/c.215A>T/p.Q72L +YBR164C ARL1 1173 ARL1-T32N T32N amino_acid_mutation PMID:22594927 T32N False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.568332G>T/c.95C>A/p.T32N +YBR166C TYR1 1174 tyr1-A184T A184T amino_acid_mutation PMID:29744630 A184T False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.570651C>T/c.550G>A/p.A184T +YBR166C TYR1 1175 tyr1-M197I M197I amino_acid_mutation PMID:29744630 M197I False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.570610C>G/c.591G>C/p.M197I +YBR166C TYR1 1176 tyr1-T210I T210I amino_acid_mutation PMID:29744630 T210I False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.570572G>A/c.629C>T/p.T210I +YBR170C NPL4 1183 npl4-I575A I575A amino_acid_mutation PMID:31836717 I575A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.576363_576364delATinsGC/c.1723_1724delATinsGC/p.I575A +YBR170C NPL4 1184 npl4-M574A M574A amino_acid_mutation PMID:31836717 M574A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.576366_576367delATinsGC/c.1720_1721delATinsGC/p.M574A +YBR170C NPL4 1185 npl4-M574Q M574Q amino_acid_mutation PMID:31836717 M574Q False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.576366_576367delATinsCA/c.1720_1721delATinsCA/p.M574Q +YBR170C NPL4 1186 npl4-T571A T571A amino_acid_mutation PMID:31836717 T571A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.576376T>C/c.1711A>G/p.T571A +YBR172C SMY2 1188 smy2-Y234A Y234A amino_acid_mutation PMID:19571182,PMID:36288698 Y234A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.580672_580673delTAinsGC/c.700_701delTAinsGC/p.Y234A +YBR173C UMP1 1192 ump1-I3T I3T amino_acid_mutation PMID:35204754 I3T False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.582165A>G/c.8T>C/p.I3T +YBR173C UMP1 1193 ump1-S11P S11P amino_acid_mutation PMID:35204754 S11P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.582142A>G/c.31T>C/p.S11P +YBR179C FZO1 1195 fzo1-C381S C381S amino_acid_mutation PMID:37416455 C381S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.587974A>T/c.1141T>A/p.C381S +YBR179C FZO1 1196 fzo1-C805S C805S amino_acid_mutation PMID:37416455 C805S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.586702A>T/c.2413T>A/p.C805S +YBR179C FZO1 1197 fzo1-K200A K200A amino_acid_mutation PMID:9786948 K200A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.588516_588517delAAinsGC/c.598_599delAAinsGC/p.K200A +YBR179C FZO1 1198 fzo1-K371A K371A amino_acid_mutation PMID:9786948 K371A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.588003_588004delAAinsGC/c.1111_1112delAAinsGC/p.K371A +YBR179C FZO1 1199 fzo1-K398R K398R amino_acid_mutation PMID:31857350 K398R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.587922T>C/c.1193A>G/p.K398R +YBR179C FZO1 1200 fzo1-K464D,D335K K464D,D335K amino_acid_mutation PMID:31740565 K464D|D335K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.587723_587725delAAAinsGAC/c.1390_1392delAAAinsGAC/p.K464D|chrII:g.588110_588112delGACinsAAG/c.1003_1005delGACinsAAG/p.D335K +YBR179C FZO1 1201 fzo1-K464R K464R amino_acid_mutation PMID:31740565 K464R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.587724T>C/c.1391A>G/p.K464R +YBR179C FZO1 1202 fzo1-K538P K538P amino_acid_mutation PMID:16624808 K538P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.587502_587503delAAinsCC/c.1612_1613delAAinsCC/p.K538P +YBR179C FZO1 1203 fzo1-K727A,K735A,K736A K727A,K735A,K736A amino_acid_mutation PMID:16624808 K727A|K735A|K736A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.586935_586936delAAinsGC/c.2179_2180delAAinsGC/p.K727A|chrII:g.586911_586912delAAinsGC/c.2203_2204delAAinsGC/p.K735A|chrII:g.586908_586909delAAinsGC/c.2206_2207delAAinsGC/p.K736A +YBR179C FZO1 1204 fzo1-L501A L501A amino_acid_mutation PMID:16624808 L501A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.587613_587614delCTinsGC/c.1501_1502delCTinsGC/p.L501A +YBR179C FZO1 1205 fzo1-L501A,L504A L501A,L504A amino_acid_mutation PMID:16624808 L501A|L504A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.587613_587614delCTinsGC/c.1501_1502delCTinsGC/p.L501A|chrII:g.587604_587605delTTinsGC/c.1510_1511delTTinsGC/p.L504A +YBR179C FZO1 1206 fzo1-L504A L504A amino_acid_mutation PMID:16624808 L504A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.587604_587605delTTinsGC/c.1510_1511delTTinsGC/p.L504A +YBR179C FZO1 1207 fzo1-L518A L518A amino_acid_mutation PMID:16624808 L518A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.587562_587563delTTinsGC/c.1552_1553delTTinsGC/p.L518A +YBR179C FZO1 1208 fzo1-L773P L773P amino_acid_mutation PMID:16624808 L773P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.586797_586798delTTinsCC/c.2317_2318delTTinsCC/p.L773P +YBR179C FZO1 1209 fzo1-L776P L776P amino_acid_mutation PMID:16624808 L776P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.586788A>G/c.2327T>C/p.L776P +YBR179C FZO1 1210 fzo1-L794P L794P amino_acid_mutation PMID:16624808 L794P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.586734_586735delTTinsCC/c.2380_2381delTTinsCC/p.L794P +YBR179C FZO1 1211 fzo1-L802P L802P amino_acid_mutation PMID:16624808 L802P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.586710A>G/c.2405T>C/p.L802P +YBR179C FZO1 1212 fzo1-L819P L819P amino_acid_mutation PMID:16624808 L819P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.586724A>G/c.2456T>C/p.L819P +YBR179C FZO1 1213 fzo1-L98P L98P amino_acid_mutation PMID:16624808 L98P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.588822A>G/c.293T>C/p.L98P +YBR179C FZO1 1214 fzo1-M525P M525P amino_acid_mutation PMID:16624808 M525P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.587541_587542delATinsCC/c.1573_1574delATinsCC/p.M525P +YBR179C FZO1 1215 fzo1-R182D,D335R R182D,D335R amino_acid_mutation PMID:31740565 R182D|D335R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.588569_588571delAGAinsGAC/c.544_546delAGAinsGAC/p.R182D|chrII:g.588111_588112delGAinsCG/c.1003_1004delGAinsCG/p.D335R +YBR179C FZO1 1216 fzo1-R182E,D335K,K464D R182E,D335K,K464D amino_acid_mutation PMID:31740565 R182E|D335K|K464D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.588570_588571delAGinsGA/c.544_545delAGinsGA/p.R182E|chrII:g.588110_588112delGACinsAAG/c.1003_1005delGACinsAAG/p.D335K|chrII:g.587723_587725delAAAinsGAC/c.1390_1392delAAAinsGAC/p.K464D +YBR179C FZO1 1217 fzo1-S201N S201N amino_acid_mutation PMID:9786948 S201N False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.588512_588514delTCAinsAAC/c.601_603delTCAinsAAC/p.S201N +YBR179C FZO1 1218 fzo1-T221A T221A amino_acid_mutation PMID:31740565,PMID:9786948 T221A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.588454T>C/c.661A>G/p.T221A +YBR179C FZO1 1219 fzo1-T221N T221N amino_acid_mutation PMID:16624808 T221N False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.588453G>T/c.662C>A/p.T221N +YBR179C FZO1 1220 fzo1-V172P V172P amino_acid_mutation PMID:16624808 V172P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.588600_588601delGTinsCC/c.514_515delGTinsCC/p.V172P +YBR179C FZO1 1221 fzo1-V196M V196M amino_acid_mutation PMID:19812251 V196M False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.588527_588529delGTAinsATG/c.586_588delGTAinsATG/p.V196M +YBR179C FZO1 1222 fzo1-V327T V327T amino_acid_mutation PMID:19812251 V327T False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.588200_588201delGTinsAC/c.979_980delGTinsAC/p.V327T +YBR179C FZO1 1223 fzo1-Y490P Y490P amino_acid_mutation PMID:16624808 Y490P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.587646_587647delTAinsCC/c.1468_1469delTAinsCC/p.Y490P +YBR179C FZO1 1224 fzo1-Y769P Y769P amino_acid_mutation PMID:16624808 Y769P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.586809_586810delTAinsCC/c.2305_2306delTAinsCC/p.Y769P +YBR186W PCH2 1229 pch2-E399Q E399Q amino_acid_mutation PMID:32569318 E399Q False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.601747G>C/c.1195G>C/p.E399Q +YBR192W RIM2 1232 rim2-E248A E248A amino_acid_mutation PMID:30660752 E248A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.608394A>C/c.743A>C/p.E248A +YBR192W RIM2 1233 rim2-K299A K299A amino_acid_mutation PMID:30660752 K299A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.608332_608333delAAinsGC/c.895_896delAAinsGC/p.K299A +YBR200W BEM1 1251 bem1-P208L P208L amino_acid_mutation PMID:31940256 P208L False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.621494C>T/c.623C>T/p.P208L +YBR200W BEM1 1252 bem1-P355A P355A amino_acid_mutation PMID:31940256 P355A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.621934C>G/c.1063C>G/p.P355A +YBR200W BEM1 1253 bem1-R369A R369A amino_acid_mutation PMID:31940256 R369A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.621976_621977delAGinsGC/c.1105_1106delAGinsGC/p.R369A +YBR201W DER1 1258 der1-A116C A116C amino_acid_mutation PMID:35970394 A116C False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.623921_623923delGCAinsTGT/c.346_348delGCAinsTGT/p.A116C +YBR201W DER1 1259 der1-F153C F153C amino_acid_mutation PMID:35970394 F153C False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.624033T>G/c.458T>G/p.F153C +YBR201W DER1 1260 der1-H123C H123C amino_acid_mutation PMID:35970394 H123C False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.623942_623943delCAinsTG/c.367_368delCAinsTG/p.H123C +YBR201W DER1 1261 der1-I72C I72C amino_acid_mutation PMID:35970394 I72C False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.623789_623791delATAinsTGT/c.214_216delATAinsTGT/p.I72C +YBR201W DER1 1262 der1-K39C K39C amino_acid_mutation PMID:35970394 K39C False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.623690_623692delAAGinsTGT/c.115_117delAAGinsTGT/p.K39C +YBR201W DER1 1263 der1-M161C M161C amino_acid_mutation PMID:35970394 M161C False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.624056_624058delATGinsTGT/c.481_483delATGinsTGT/p.M161C +YBR201W DER1 1264 der1-N73C N73C amino_acid_mutation PMID:35970394 N73C False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.623792_623793delAAinsTG/c.217_218delAAinsTG/p.N73C +YBR201W DER1 1265 der1-Q113C Q113C amino_acid_mutation PMID:35970394 Q113C False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.623912_623914delCAAinsTGT/c.337_339delCAAinsTGT/p.Q113C +YBR201W DER1 1266 der1-V103C V103C amino_acid_mutation PMID:35970394 V103C False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.623882_623884delGTGinsTGT/c.307_309delGTGinsTGT/p.V103C +YBR201W DER1 1267 der1-V127C V127C amino_acid_mutation PMID:35970394 V127C False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.623954_623956delGTGinsTGT/c.379_381delGTGinsTGT/p.V127C +YBR201W DER1 1268 der1-V35C V35C amino_acid_mutation PMID:35970394 V35C False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.623678_623680delGTGinsTGT/c.103_105delGTGinsTGT/p.V35C +YBR201W DER1 1269 der1-Y165C Y165C amino_acid_mutation PMID:35970394 Y165C False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.624069A>G/c.494A>G/p.Y165C +YBR211C AME1 1277 ame1-T31A,S41A,S45A,S52A,S53A,S59A,S101A T31A,S41A,S45A,S52A,S53A,S59A,S101A amino_acid_mutation PMID:34308839 T31A|S41A|S45A|S52A|S53A|S59A|S101A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.647042T>C/c.91A>G/p.T31A|chrII:g.647012A>C/c.121T>G/p.S41A|chrII:g.647000A>C/c.133T>G/p.S45A|chrII:g.646979A>C/c.154T>G/p.S52A|chrII:g.646976A>C/c.157T>G/p.S53A|chrII:g.646958A>C/c.175T>G/p.S59A|chrII:g.646832A>C/c.301T>G/p.S101A +YBR211C AME1 1278 ame1-T31E,S41E,S45E,S52E,S53E,S59E,S101E T31E,S41E,S45E,S52E,S53E,S59E,S101E amino_acid_mutation PMID:34308839 T31E|S41E|S45E|S52E|S53E|S59E|S101E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.647041_647042delACinsGA/c.91_92delACinsGA/p.T31E|chrII:g.647011_647012delTCinsGA/c.121_122delTCinsGA/p.S41E|chrII:g.646998_647000delTCTinsGAG/c.133_135delTCTinsGAG/p.S45E|chrII:g.646977_646979delTCTinsGAG/c.154_156delTCTinsGAG/p.S52E|chrII:g.646975_646976delTCinsGA/c.157_158delTCinsGA/p.S53E|chrII:g.646956_646958delTCTinsGAG/c.175_177delTCTinsGAG/p.S59E|chrII:g.646831_646832delTCinsGA/c.301_302delTCinsGA/p.S101E +YBR217W ATG12 1282 atg12-F154K F154K amino_acid_mutation PMID:16874032 F154K False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.658291_658293delTTTinsAAG/c.460_462delTTTinsAAG/p.F154K +YBR217W ATG12 1283 atg12-G186A G186A amino_acid_mutation PMID:9759731 G186A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.658388G>C/c.557G>C/p.G186A +YBR217W ATG12 1284 atg12-Y149A Y149A amino_acid_mutation PMID:16874032 Y149A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.658276_658277delTAinsGC/c.445_446delTAinsGC/p.Y149A +YBR223C TDP1 1290 tdp1-H182A H182A amino_acid_mutation PMID:15135727 H182A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.669753_669754delCAinsGC/c.544_545delCAinsGC/p.H182A +YBR223C TDP1 1291 tdp1-H432R H432R amino_acid_mutation PMID:27551064 H432R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.669003T>C/c.1295A>G/p.H432R +YBR227C MCX1 1294 mcx1-Y174A Y174A amino_acid_mutation PMID:25957689 Y174A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.674614_674615delTAinsGC/c.520_521delTAinsGC/p.Y174A +YBR237W PRP5 1305 prp5-K716M K716M amino_acid_mutation PMID:35283819 K716M False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.694062_694063delAAinsTG/c.2147_2148delAAinsTG/p.K716M +YBR237W PRP5 1306 prp5-S153I S153I amino_acid_mutation PMID:31611676 S153I False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.692426G>T/c.458G>T/p.S153I +YBR249C ARO4 1316 aro4-D22Y D22Y amino_acid_mutation PMID:29744630 D22Y False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.717931C>A/c.64G>T/p.D22Y +YBR249C ARO4 1318 aro4-K229L K229L amino_acid_mutation PMID:18372204,PMID:26344106,PMID:32550099,PMID:32990403,PMID:33164460,PMID:34018734,PMID:34098954,PMID:34689412,PMID:35107250,PMID:36534476,PMID:36890537,PMID:37450901 K229L False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.717309_717310delAAinsCT/c.685_686delAAinsCT/p.K229L +YBR249C ARO4 1319 aro4-Q166R Q166R amino_acid_mutation PMID:29744630 Q166R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.717498T>C/c.497A>G/p.Q166R +YBR249C ARO4 1320 aro4-S195F S195F amino_acid_mutation PMID:29744630 S195F False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.717411G>A/c.584C>T/p.S195F +YBR260C RGD1 1339 rgd1-R508A R508A amino_acid_mutation PMID:33508381 R508A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.733117_733118delAGinsGC/c.1522_1523delAGinsGC/p.R508A +YBR260C RGD1 1340 rgd1-S148A S148A amino_acid_mutation PMID:33508381 S148A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.734197_734198delAGinsGC/c.442_443delAGinsGC/p.S148A +YBR260C RGD1 1341 rgd1-S148E S148E amino_acid_mutation PMID:33508381 S148E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.734196_734198delAGCinsGAG/c.442_444delAGCinsGAG/p.S148E +YBR275C RIF1 1349 rif1-C466A C466A amino_acid_mutation PMID:31182712 C466A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.755710_755711delTGinsGC/c.1396_1397delTGinsGC/p.C466A +YBR275C RIF1 1350 rif1-C466A,C473A C466A,C473A amino_acid_mutation PMID:31182712 C466A|C473A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.755710_755711delTGinsGC/c.1396_1397delTGinsGC/p.C466A|chrII:g.755689_755690delTGinsGC/c.1417_1418delTGinsGC/p.C473A +YBR275C RIF1 1351 rif1-C473A C473A amino_acid_mutation PMID:31182712 C473A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.755689_755690delTGinsGC/c.1417_1418delTGinsGC/p.C473A +YBR275C RIF1 1353 rif1-M436A,T564A,R565A,W572A M436A,T564A,R565A,W572A amino_acid_mutation PMID:33772576 M436A|T564A|R565A|W572A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.755800_755801delATinsGC/c.1306_1307delATinsGC/p.M436A|chrII:g.755417T>C/c.1690A>G/p.T564A|chrII:g.755413_755414delCGinsGC/c.1693_1694delCGinsGC/p.R565A|chrII:g.755392_755393delTGinsGC/c.1714_1715delTGinsGC/p.W572A +YBR275C RIF1 1354 rif1-N560S N560S amino_acid_mutation PMID:29796388 N560S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.755428T>C/c.1679A>G/p.N560S +YBR275C RIF1 1355 rif1-R299A,Q303A,R306A R299A,Q303A,R306A amino_acid_mutation PMID:33772576 R299A|Q303A|R306A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.756211_756212delAGinsGC/c.895_896delAGinsGC/p.R299A|chrII:g.756199_756200delCAinsGC/c.907_908delCAinsGC/p.Q303A|chrII:g.756190_756191delCGinsGC/c.916_917delCGinsGC/p.R306A +YBR275C RIF1 1357 rif1-Y577R Y577R amino_acid_mutation PMID:33772576 Y577R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.755377_755378delTAinsCG/c.1729_1730delTAinsCG/p.Y577R +YBR288C APM3 1368 apm3-D217A D217A amino_acid_mutation PMID:35175277 D217A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.778814T>G/c.650A>C/p.D217A +YBR288C APM3 1369 apm3-G469K G469K amino_acid_mutation PMID:35175277 G469K False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.778057_778059delGGTinsAAG/c.1405_1407delGGTinsAAG/p.G469K +YBR289W SNF5 1373 snf5-H106A,H109A,H213A,H214A H106A,H109A,H213A,H214A amino_acid_mutation PMID:35129437 H106A|H109A|H213A|H214A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.779982_779983delCAinsGC/c.316_317delCAinsGC/p.H106A|chrII:g.779977_779978delCAinsGC/c.325_326delCAinsGC/p.H109A|chrII:g.780303_780304delCAinsGC/c.637_638delCAinsGC/p.H213A|chrII:g.780306_780307delCAinsGC/c.640_641delCAinsGC/p.H214A +YBR290W BSD2 1376 Bsd2-T197A T197A amino_acid_mutation PMID:17429078 T197A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.783179A>G/c.589A>G/p.T197A +YBR294W SUL1 1377 sul1-G380R G380R amino_acid_mutation PMID:33560525 G380R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.790372G>A/c.1138G>A/p.G380R +YBR295W PCA1 1378 PCA1-R970G R970G amino_acid_mutation PMID:10743563 R970G False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.795756C>G/c.2908C>G/p.R970G +YCL009C ILV6 1390 ilv6-G89D G89D amino_acid_mutation PMID:29477860 G89D False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.105283C>T/c.266G>A/p.G89D +YCL009C ILV6 1391 ilv6-N104H N104H amino_acid_mutation PMID:29477860 N104H False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.105239T>G/c.310A>C/p.N104H +YCL009C ILV6 1392 ilv6-N86A N86A amino_acid_mutation PMID:29477860 N86A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.105292_105293delAAinsGC/c.256_257delAAinsGC/p.N86A +YCL009C ILV6 1393 ilv6-V110E V110E amino_acid_mutation PMID:35022416 V110E False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.105220A>T/c.329T>A/p.V110E +YCL009C ILV6 1394 ilv6-V90D,L91F V90D,L91F amino_acid_mutation PMID:29037781 V90D|L91F False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.105280A>T/c.269T>A/p.V90D|chrIII:g.105276C>A/c.273G>T/p.L91F +YCL017C NFS1 1424 nfs1-A275T A275T amino_acid_mutation PMID:34805801 A275T False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.93448C>T/c.823G>A/p.A275T +YCL017C NFS1 1425 nfs1-F164S F164S amino_acid_mutation PMID:34805801 F164S False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.93780A>G/c.491T>C/p.F164S +YCL017C NFS1 1426 nfs1-I191S I191S amino_acid_mutation PMID:31040179 I191S False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.93699A>C/c.572T>G/p.I191S +YCL017C NFS1 1427 nfs1-I492T I492T amino_acid_mutation PMID:34805801 I492T False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.92796A>G/c.1475T>C/p.I492T +YCL017C NFS1 1428 nfs1-M244E M244E amino_acid_mutation PMID:34805801 M244E False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.93540_93541delATinsGA/c.730_731delATinsGA/p.M244E +YCL017C NFS1 1429 nfs1-M408V M408V amino_acid_mutation PMID:34805801 M408V False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.93049T>C/c.1222A>G/p.M408V +YCL017C NFS1 1430 nfs1-N128D N128D amino_acid_mutation PMID:34805801 N128D False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.93889T>C/c.382A>G/p.N128D +YCL017C NFS1 1431 nfs1-N132D N132D amino_acid_mutation PMID:34805801 N132D False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.93877T>C/c.394A>G/p.N132D +YCL017C NFS1 1432 nfs1-N172D N172D amino_acid_mutation PMID:34805801 N172D False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.93757T>C/c.514A>G/p.N172D +YCL017C NFS1 1433 nfs1-N173D N173D amino_acid_mutation PMID:34805801 N173D False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.93754T>C/c.517A>G/p.N173D +YCL017C NFS1 1434 nfs1-P236E P236E amino_acid_mutation PMID:34805801 P236E False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.93564_93565delCCinsGA/c.706_707delCCinsGA/p.P236E +YCL017C NFS1 1435 nfs1-Q328E Q328E amino_acid_mutation PMID:34805801 Q328E False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.93289G>C/c.982C>G/p.Q328E +YCL017C NFS1 1436 nfs1-R313A,R316A,R318A R313A,R316A,R318A amino_acid_mutation PMID:35026224 R313A|R316A|R318A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.93448_93449delCGinsGC/c.937_938delCGinsGC/p.R313A|chrIII:g.93324_93325delAGinsGC/c.946_947delAGinsGC/p.R316A|chrIII:g.93318_93319delAGinsGC/c.952_953delAGinsGC/p.R318A +YCL017C NFS1 1437 nfs1-R313E,R316E,R318E R313E,R316E,R318E amino_acid_mutation PMID:35026224 R313E|R316E|R318E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.93447_93449delCGCinsGAG/c.937_939delCGCinsGAG/p.R313E|chrIII:g.93324_93325delAGinsGA/c.946_947delAGinsGA/p.R316E|chrIII:g.93318_93319delAGinsGA/c.952_953delAGinsGA/p.R318E +YCL017C NFS1 1438 nfs1-S296P S296P amino_acid_mutation PMID:34805801 S296P False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.93385A>G/c.886T>C/p.S296P +YCL017C NFS1 1439 nfs1-S334A S334A amino_acid_mutation PMID:28941588 S334A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.93271A>C/c.1000T>G/p.S334A +YCL017C NFS1 1440 nfs1-S334A,T336A S334A,T336A amino_acid_mutation PMID:28941588 S334A|T336A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.93271A>C/c.1000T>G/p.S334A|chrIII:g.93265T>C/c.1006A>G/p.T336A +YCL017C NFS1 1441 nfs1-S491P S491P amino_acid_mutation PMID:34805801 S491P False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.92800A>G/c.1471T>C/p.S491P +YCL017C NFS1 1442 nfs1-T195A T195A amino_acid_mutation PMID:28941588 T195A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.93688T>C/c.583A>G/p.T195A +YCL017C NFS1 1443 nfs1-T336A T336A amino_acid_mutation PMID:28941588 T336A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.93265T>C/c.1006A>G/p.T336A +YCL028W RNQ1 1445 rnq1-E43K E43K amino_acid_mutation PMID:20009538 E43K False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.70276G>A/c.127G>A/p.E43K +YCL028W RNQ1 1446 rnq1-F146S F146S amino_acid_mutation PMID:20009538 F146S False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.70586T>C/c.437T>C/p.F146S +YCL028W RNQ1 1447 rnq1-L123P L123P amino_acid_mutation PMID:20009538 L123P False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.70517T>C/c.368T>C/p.L123P +YCL028W RNQ1 1448 rnq1-L91P L91P amino_acid_mutation PMID:20009538 L91P False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.70421T>C/c.272T>C/p.L91P +YCL028W RNQ1 1449 rnq1-L94A L94A amino_acid_mutation PMID:20009538 L94A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.70429_70430delCTinsGC/c.280_281delCTinsGC/p.L94A +YCL028W RNQ1 1450 rnq1-N397D N397D amino_acid_mutation PMID:20009538 N397D False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.71338A>G/c.1189A>G/p.N397D +YCL028W RNQ1 1451 rnq1-S12P S12P amino_acid_mutation PMID:20009538 S12P False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.70183T>C/c.34T>C/p.S12P +YCL028W RNQ1 1452 rnq1-S15P S15P amino_acid_mutation PMID:20009538 S15P False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.70192T>C/c.43T>C/p.S15P +YCL028W RNQ1 1453 rnq1-V23A V23A amino_acid_mutation PMID:20009538 V23A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.70217T>C/c.68T>C/p.V23A +YCL028W RNQ1 1454 rnq1-V53A V53A amino_acid_mutation PMID:20009538 V53A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.70307T>C/c.158T>C/p.V53A +YCL032W STE50 1463 ste50-H275P H275P amino_acid_mutation PMID:30650049 H275P False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64264A>C/c.824A>C/p.H275P +YCL032W STE50 1464 ste50-H275R H275R amino_acid_mutation PMID:30650049 H275R False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64264A>G/c.824A>G/p.H275R +YCL032W STE50 1465 ste50-I289T I289T amino_acid_mutation PMID:30650049 I289T False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64306T>C/c.866T>C/p.I289T +YCL032W STE50 1466 ste50-I289V,R323G I289V,R323G amino_acid_mutation PMID:30650049 I289V|R323G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64305A>G/c.865A>G/p.I289V|chrIII:g.64407A>G/c.967A>G/p.R323G +YCL032W STE50 1467 ste50-I320K I320K amino_acid_mutation PMID:19846660,PMID:30650049 I320K False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64399_64400delTTinsAG/c.959_960delTTinsAG/p.I320K +YCL032W STE50 1468 ste50-K260E,C290S,P304S K260E,C290S,P304S amino_acid_mutation PMID:30650049 K260E|C290S|P304S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64218A>G/c.778A>G/p.K260E|chrIII:g.64308T>A/c.868T>A/p.C290S|chrIII:g.64350C>T/c.910C>T/p.P304S +YCL032W STE50 1469 ste50-K260N,I307K K260N,I307K amino_acid_mutation PMID:30650049 K260N|I307K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64220A>C/c.780A>C/p.K260N|chrIII:g.64360T>A/c.920T>A/p.I307K +YCL032W STE50 1470 ste50-L277S L277S amino_acid_mutation PMID:30650049 L277S False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64270T>C/c.830T>C/p.L277S +YCL032W STE50 1471 ste50-L300V,I307K L300V,I307K amino_acid_mutation PMID:30650049 L300V|I307K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64338T>G/c.898T>G/p.L300V|chrIII:g.64360T>A/c.920T>A/p.I307K +YCL032W STE50 1472 ste50-L322S L322S amino_acid_mutation PMID:30650049 L322S False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64405T>C/c.965T>C/p.L322S +YCL032W STE50 1473 ste50-R274S,H275Y R274S,H275Y amino_acid_mutation PMID:30650049 R274S|H275Y False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.63888A>C/c.822A>C/p.R274S|chrIII:g.64263C>T/c.823C>T/p.H275Y +YCL032W STE50 1474 ste50-R283G,Q294L R283G,Q294L amino_acid_mutation PMID:30650049 R283G|Q294L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64287A>G/c.847A>G/p.R283G|chrIII:g.63947A>T/c.881A>T/p.Q294L +YCL032W STE50 1475 ste50-R296G R296G amino_acid_mutation PMID:30650049,PMID:36538537 R296G False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64326A>G/c.886A>G/p.R296G +YCL039W GID7 1480 gid7-E726K E726K amino_acid_mutation PMID:35472090 E726K False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.54820G>A/c.2176G>A/p.E726K +YCL040W GLK1 1481 glk1-T89A T89A amino_acid_mutation PMID:29422502 T89A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.51102A>G/c.265A>G/p.T89A +YCL043C PDI1 1485 pdi1-D436N D436N amino_acid_mutation PMID:19233841 D436N False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.48916C>T/c.1306G>A/p.D436N +YCL054W SPB1 1490 spb1-D52A D52A amino_acid_mutation PMID:14636587,PMID:15546625 D52A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.31603A>C/c.155A>C/p.D52A +YCL055W KAR4 1492 kar4-A157P A157P amino_acid_mutation PMID:36930734 A157P False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28397G>C/c.469G>C/p.A157P +YCL055W KAR4 1493 kar4-A310Stop A310Stop partial_amino_acid_deletion PMID:36930734 A310Stop False A310* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrIII:g.28856_28858delGCTinsTAA/c.928_930delGCTinsTAA/p.A310* +YCL055W KAR4 1494 kar4-A85P A85P amino_acid_mutation PMID:36930734 A85P False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28181G>C/c.253G>C/p.A85P +YCL055W KAR4 1495 kar4-C127Y C127Y amino_acid_mutation PMID:36930734 C127Y False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28308G>A/c.380G>A/p.C127Y +YCL055W KAR4 1496 kar4-E183K E183K amino_acid_mutation PMID:36930734 E183K False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28475G>A/c.547G>A/p.E183K +YCL055W KAR4 1497 kar4-E260G E260G amino_acid_mutation PMID:36930734 E260G False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28707A>G/c.779A>G/p.E260G +YCL055W KAR4 1498 kar4-E260K E260K amino_acid_mutation PMID:36930734 E260K False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28706G>A/c.778G>A/p.E260K +YCL055W KAR4 1499 kar4-F186S F186S amino_acid_mutation PMID:36930734 F186S False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28485T>C/c.557T>C/p.F186S +YCL055W KAR4 1500 kar4-G126A G126A amino_acid_mutation PMID:36930734 G126A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28305G>C/c.377G>C/p.G126A +YCL055W KAR4 1501 kar4-G287D G287D amino_acid_mutation PMID:36930734 G287D False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28788G>A/c.860G>A/p.G287D +YCL055W KAR4 1502 kar4-H213Y H213Y amino_acid_mutation PMID:36930734 H213Y False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28565C>T/c.637C>T/p.H213Y +YCL055W KAR4 1503 kar4-L255F L255F amino_acid_mutation PMID:36930734 L255F False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28693G>T/c.765G>T/p.L255F +YCL055W KAR4 1504 kar4-M207R M207R amino_acid_mutation PMID:36930734 M207R False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28548T>G/c.620T>G/p.M207R +YCL055W KAR4 1505 kar4-P273L P273L amino_acid_mutation PMID:36930734 P273L False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28746C>T/c.818C>T/p.P273L +YCL055W KAR4 1506 kar4-P293L P293L amino_acid_mutation PMID:36930734 P293L False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28770C>T/c.878C>T/p.P293L +YCL055W KAR4 1507 kar4-T264P T264P amino_acid_mutation PMID:36930734 T264P False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28718A>C/c.790A>C/p.T264P +YCL055W KAR4 1508 kar4-W156G W156G amino_acid_mutation PMID:36930734 W156G False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28394T>G/c.466T>G/p.W156G +YCL055W KAR4 1509 kar4-W212R W212R amino_acid_mutation PMID:36930734 W212R False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28562T>A/c.634T>A/p.W212R +YCL063W VAC17 1526 vac17-S222A S222A amino_acid_mutation PMID:32916113 S222A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.17953T>G/c.664T>G/p.S222A +YCL063W VAC17 1528 vac17-T149A T149A amino_acid_mutation PMID:32916113 T149A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.17734A>G/c.445A>G/p.T149A +YCL063W VAC17 1529 vac17-T240A T240A amino_acid_mutation PMID:32916113 T240A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.17943A>G/c.718A>G/p.T240A +YCR002C CDC10 1540 cdc10-D182N D182N amino_acid_mutation PMID:31990274 D182N False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.117805C>T/c.544G>A/p.D182N +YCR002C CDC10 1541 cdc10-G100E G100E amino_acid_mutation PMID:31990274 G100E False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.118050C>T/c.299G>A/p.G100E +YCR009C RVS161 1546 rvs161-A175P A175P amino_acid_mutation PMID:19254955 A175P False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.131020C>G/c.523G>C/p.A175P +YCR009C RVS161 1547 rvs161-P158S P158S amino_acid_mutation PMID:19254955 P158S False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.131071G>A/c.472C>T/p.P158S +YCR009C RVS161 1548 rvs161-P203Q P203Q amino_acid_mutation PMID:19254955 P203Q False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.130935G>T/c.608C>A/p.P203Q +YCR009C RVS161 1549 rvs161-R113K R113K amino_acid_mutation PMID:19254955 R113K False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.131205C>T/c.338G>A/p.R113K +YCR009C RVS161 1550 rvs161-R35C R35C amino_acid_mutation PMID:19254955 R35C False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.131440G>A/c.103C>T/p.R35C +YCR010C ADY2 1593 ady2-L219V L219V amino_acid_mutation PMID:34042971 L219V False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.132470G>C/c.655C>G/p.L219V +YCR011C ADP1 1594 adp1-D527H D527H amino_acid_mutation PMID:31611676 D527H False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.135295C>G/c.1579G>C/p.D527H +YCR014C POL4 1595 pol4-D367E D367E amino_acid_mutation PMID:10438542,PMID:37070185 D367E False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.139833G>C/c.1101C>G/p.D367E +YCR042C TAF2 1617 taf2-I1399D I1399D amino_acid_mutation PMID:35676274 I1399D False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.201201_201203delATAinsGAC/c.4195_4197delATAinsGAC/p.I1399D +YCR042C TAF2 1618 taf2-V1397D V1397D amino_acid_mutation PMID:35676274 V1397D False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.201208A>T/c.4190T>A/p.V1397D +YCR044C PER1 1634 per1-H177A H177A amino_acid_mutation PMID:17021251 H177A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.207421_207422delCAinsGC/c.529_530delCAinsGC/p.H177A +YCR044C PER1 1635 per1-H326A H326A amino_acid_mutation PMID:17021251 H326A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.206974_206975delCAinsGC/c.976_977delCAinsGC/p.H326A +YCR053W THR4 1641 thr4-K124A K124A amino_acid_mutation PMID:29127264 K124A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.217066_217067delAAinsGC/c.370_371delAAinsGC/p.K124A +YCR060W TAH1 1650 tah1-K79A K79A amino_acid_mutation PMID:33811921 K79A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.224633_224634delAAinsGC/c.235_236delAAinsGC/p.K79A +YCR060W TAH1 1651 tah1-N43A N43A amino_acid_mutation PMID:33811921 N43A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.224525_224526delAAinsGC/c.127_128delAAinsGC/p.N43A +YCR060W TAH1 1652 tah1-R83A R83A amino_acid_mutation PMID:33811921 R83A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.224645_224646delCGinsGC/c.247_248delCGinsGC/p.R83A +YCR066W RAD18 1656 rad18-I286R I286R amino_acid_mutation PMID:31611676 I286R False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.232356T>G/c.857T>G/p.I286R +YCR068W ATG15 1662 atg15-S332A S332A amino_acid_mutation PMID:26061644 S332A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.238207T>G/c.994T>G/p.S332A +YCR072C RSA4 1667 rsa4-E114A E114A amino_acid_mutation PMID:19737519 E114A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.242012T>G/c.341A>C/p.E114A +YCR072C RSA4 1668 rsa4-E114D E114D amino_acid_mutation PMID:19737519 E114D False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.242011T>G/c.342A>C/p.E114D +YCR076C FUB1 1670 fub1-F129A,Y133A F129A,Y133A amino_acid_mutation PMID:35927584 F129A|Y133A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.249660_249661delTTinsGC/c.385_386delTTinsGC/p.F129A|chrIII:g.249648_249649delTAinsGC/c.397_398delTAinsGC/p.Y133A +YCR076C FUB1 1671 fub1-M198A,F200A M198A,F200A amino_acid_mutation PMID:35927584 M198A|F200A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.249453_249454delATinsGC/c.592_593delATinsGC/p.M198A|chrIII:g.249447_249448delTTinsGC/c.598_599delTTinsGC/p.F200A +YCR084C TUP1 1674 tup1-C700R C700R amino_acid_mutation PMID:34849878 C700R False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.260355A>G/c.2098T>C/p.C700R +YCR084C TUP1 1675 tup1-D597N D597N amino_acid_mutation PMID:34849878 D597N False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.260664C>T/c.1789G>A/p.D597N +YCR084C TUP1 1676 tup1-H484Q H484Q amino_acid_mutation PMID:18201562 H484Q False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.261001G>T/c.1452C>A/p.H484Q +YCR084C TUP1 1677 tup1-H575Y H575Y amino_acid_mutation PMID:31167839,PMID:34849878 H575Y False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.260730G>A/c.1723C>T/p.H575Y +YCR084C TUP1 1678 tup1-L565P L565P amino_acid_mutation PMID:34849878 L565P False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.260759A>G/c.1694T>C/p.L565P +YCR084C TUP1 1679 tup1-N673D N673D amino_acid_mutation PMID:34849878 N673D False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.260436T>C/c.2017A>G/p.N673D +YCR084C TUP1 1681 tup1-Q99stop Q99stop partial_amino_acid_deletion PMID:32303542 Q99stop False Q99* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrIII:g.262158G>A/c.295C>T/p.Q99* +YCR084C TUP1 1682 tup1-S649F S649F amino_acid_mutation PMID:34849878 S649F False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.260507G>A/c.1946C>T/p.S649F +YCR088W ABP1 1685 abp1-W569A W569A amino_acid_mutation PMID:11668184 W569A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.266772_266773delTGinsGC/c.1705_1706delTGinsGC/p.W569A +YCR092C MSH3 1687 msh3-E164A E164A amino_acid_mutation PMID:20421420 E164A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.279330T>G/c.491A>C/p.E164A +YCR092C MSH3 1688 msh3-F162A F162A amino_acid_mutation PMID:20421420 F162A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.279336_279337delTTinsGC/c.484_485delTTinsGC/p.F162A +YCR092C MSH3 1689 msh3-F197A F197A amino_acid_mutation PMID:20421420 F197A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.279231_279232delTTinsGC/c.589_590delTTinsGC/p.F197A +YCR092C MSH3 1690 msh3-H174A H174A amino_acid_mutation PMID:20421420 H174A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.279300_279301delCAinsGC/c.520_521delCAinsGC/p.H174A +YCR092C MSH3 1691 msh3-H194E H194E amino_acid_mutation PMID:20421420 H194E False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.279239_279241delCATinsGAG/c.580_582delCATinsGAG/p.H194E +YCR092C MSH3 1692 msh3-H210A H210A amino_acid_mutation PMID:20421420 H210A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.279192_279193delCAinsGC/c.628_629delCAinsGC/p.H210A +YCR092C MSH3 1693 msh3-K158D K158D amino_acid_mutation PMID:20421420 K158D False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.279347_279349delAAGinsGAC/c.472_474delAAGinsGAC/p.K158D +YCR092C MSH3 1694 msh3-K160D K160D amino_acid_mutation PMID:20421420 K160D False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.279341_279343delAAAinsGAC/c.478_480delAAAinsGAC/p.K160D +YCR092C MSH3 1695 msh3-R171A R171A amino_acid_mutation PMID:20421420 R171A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.279309_279310delAGinsGC/c.511_512delAGinsGC/p.R171A +YCR092C MSH3 1696 msh3-R195D R195D amino_acid_mutation PMID:20421420 R195D False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.279236_279238delAGGinsGAC/c.583_585delAGGinsGAC/p.R195D +YCR092C MSH3 1697 msh3-R206A R206A amino_acid_mutation PMID:20421420 R206A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.279204_279205delAGinsGC/c.616_617delAGinsGC/p.R206A +YCR092C MSH3 1698 msh3-S201G S201G amino_acid_mutation PMID:20421420 S201G False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.279219_279220delTCinsGG/c.601_602delTCinsGG/p.S201G +YCR092C MSH3 1699 msh3-Y157S Y157S amino_acid_mutation PMID:20421420 Y157S False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.279351T>G/c.470A>C/p.Y157S +YCR092C MSH3 1700 msh3-Y199A Y199A amino_acid_mutation PMID:20421420 Y199A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.279225_279226delTAinsGC/c.595_596delTAinsGC/p.Y199A +YDL003W MCD1 1727 mcd1-F528R F528R amino_acid_mutation PMID:15383284,PMID:35708277 F528R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.446264_446265delTTinsCG/c.1582_1583delTTinsCG/p.F528R +YDL003W MCD1 1728 mcd1-K84Q,K210Q K84Q,K210Q amino_acid_mutation PMID:35708277 K84Q|K210Q False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.444932A>C/c.250A>C/p.K84Q|chrIV:g.445310A>C/c.628A>C/p.K210Q +YDL003W MCD1 1729 mcd1-K84R,K210R K84R,K210R amino_acid_mutation PMID:35708277 K84R|K210R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.444933A>G/c.251A>G/p.K84R|chrIV:g.445311A>G/c.629A>G/p.K210R +YDL003W MCD1 1730 mcd1-L532R L532R amino_acid_mutation PMID:15383284,PMID:35708277 L532R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.446276_446277delTTinsAG/c.1594_1595delTTinsAG/p.L532R +YDL003W MCD1 1731 mcd1-V137K V137K amino_acid_mutation PMID:23878248,PMID:35708277 V137K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.445091_445093delGTTinsAAG/c.409_411delGTTinsAAG/p.V137K +YDL006W PTC1 1733 ptc1-D58N D58N amino_acid_mutation PMID:11113180 D58N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.440080G>A/c.172G>A/p.D58N +YDL007W RPT2 1734 rpt2-G2A G2A amino_acid_mutation PMID:23102099 G2A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.438051G>C/c.5G>C/p.G2A +YDL007W RPT2 1736 rpt2-P103A P103A amino_acid_mutation PMID:33862083 P103A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.438353C>G/c.307C>G/p.P103A +YDL007W RPT2 1737 rpt2-R407C R407C amino_acid_mutation PMID:30067984,PMID:35675778 R407C False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.439265_439267delAGAinsTGT/c.1219_1221delAGAinsTGT/p.R407C +YDL014W NOP1 1752 nop1-D243A D243A amino_acid_mutation PMID:35489333 D243A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.428091A>C/c.728A>C/p.D243A +YDL014W NOP1 1753 nop1-M232K M232K amino_acid_mutation PMID:24312670 M232K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.428058T>A/c.695T>A/p.M232K +YDL015C TSC13 1757 tsc13-K140A K140A amino_acid_mutation PMID:17463005 K140A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.426516_426517delAAinsGC/c.418_419delAAinsGC/p.K140A +YDL015C TSC13 1758 tsc13-R141A R141A amino_acid_mutation PMID:17463005 R141A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.426513_426514delAGinsGC/c.421_422delAGinsGC/p.R141A +YDL022W GPD1 1772 gpd1-C134S C134S amino_acid_mutation PMID:31141459 C134S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.412224T>A/c.400T>A/p.C134S +YDL022W GPD1 1773 gpd1-C134S,C306S C134S,C306S amino_acid_mutation PMID:31141459 C134S|C306S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.412224T>A/c.400T>A/p.C134S|chrIV:g.412740T>A/c.916T>A/p.C306S +YDL022W GPD1 1774 gpd1-C306A C306A amino_acid_mutation PMID:31141459 C306A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.412740_412741delTGinsGC/c.916_917delTGinsGC/p.C306A +YDL022W GPD1 1775 gpd1-C306S C306S amino_acid_mutation PMID:31141459 C306S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.412740T>A/c.916T>A/p.C306S +YDL022W GPD1 1776 gpd1-K245A K245A amino_acid_mutation PMID:34369003 K245A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.412557_412558delAAinsGC/c.733_734delAAinsGC/p.K245A +YDL022W GPD1 1777 gpd1-L164P L164P amino_acid_mutation PMID:23759206 L164P False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.412315T>C/c.491T>C/p.L164P +YDL028C MPS1 1785 mps1-D580A D580A amino_acid_mutation PMID:7737118 D580A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.401553T>G/c.1739A>C/p.D580A +YDL030W PRP9 1795 prp9-E78K E78K amino_acid_mutation PMID:2118103 E78K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.397624G>A/c.232G>A/p.E78K +YDL042C SIR2 1810 sir2-C363S C363S amino_acid_mutation PMID:27085841 C363S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.377359A>T/c.1087T>A/p.C363S +YDL042C SIR2 1811 sir2-C469S C469S amino_acid_mutation PMID:27085841 C469S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.377041A>T/c.1405T>A/p.C469S +YDL042C SIR2 1812 sir2-C513S C513S amino_acid_mutation PMID:27085841 C513S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.376909A>T/c.1537T>A/p.C513S +YDL042C SIR2 1813 sir2-G436D G436D amino_acid_mutation PMID:33713126 G436D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.377139C>T/c.1307G>A/p.G436D +YDL042C SIR2 1814 sir2-S473A S473A amino_acid_mutation PMID:26329457 S473A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.377028_377029delAGinsGC/c.1417_1418delAGinsGC/p.S473A +YDL042C SIR2 1815 sir2-S473E S473E amino_acid_mutation PMID:26329457 S473E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.377027_377029delAGTinsGAG/c.1417_1419delAGTinsGAG/p.S473E +YDL046W NPC2 1821 npc2-C47F C47F amino_acid_mutation PMID:31611676 C47F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.371379G>T/c.140G>T/p.C47F +YDL047W SIT4 1824 sit4-S209A S209A amino_acid_mutation PMID:34663920 S209A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.370395T>G/c.625T>G/p.S209A +YDL059C RAD59 1834 rad59-F180A F180A amino_acid_mutation PMID:20012294 F180A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.344415_344416delTTinsGC/c.538_539delTTinsGC/p.F180A +YDL059C RAD59 1835 rad59-K166A K166A amino_acid_mutation PMID:20012294 K166A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.344457_344458delAAinsGC/c.496_497delAAinsGC/p.K166A +YDL059C RAD59 1836 rad59-K174A K174A amino_acid_mutation PMID:20012294 K174A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.344433_344434delAAinsGC/c.520_521delAAinsGC/p.K174A +YDL059C RAD59 1838 rad59-Y92A Y92A amino_acid_mutation PMID:20012294 Y92A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.344679_344680delTAinsGC/c.274_275delTAinsGC/p.Y92A +YDL060W TSR1 1841 tsr1-E588D,Y604C,T704A E588D,Y604C,T704A amino_acid_mutation PMID:35438042 E588D|Y604C|T704A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.343382A>C/c.1764A>C/p.E588D|chrIV:g.343429A>G/c.1811A>G/p.Y604C|chrIV:g.343728A>G/c.2110A>G/p.T704A +YDL060W TSR1 1842 tsr1-F220L,L239F,R473G,E481G,F596Y,F710L,T716A,F759L F220L,L239F,R473G,E481G,F596Y,F710L,T716A,F759L amino_acid_mutation PMID:35438042 F220L|L239F|R473G|E481G|F596Y|F710L|T716A|F759L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.342276T>C/c.658T>C/p.F220L|chrIV:g.342335G>T/c.717G>T/p.L239F|chrIV:g.343035A>G/c.1417A>G/p.R473G|chrIV:g.343060A>G/c.1442A>G/p.E481G|chrIV:g.343405T>A/c.1787T>A/p.F596Y|chrIV:g.343746T>C/c.2128T>C/p.F710L|chrIV:g.343764A>G/c.2146A>G/p.T716A|chrIV:g.343893T>C/c.2275T>C/p.F759L +YDL063C SYO1 1844 syo1-G522A G522A amino_acid_mutation PMID:35213692 G522A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.338570C>G/c.1565G>C/p.G522A +YDL063C SYO1 1845 syo1-G522E G522E amino_acid_mutation PMID:35213692 G522E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.338570C>T/c.1565G>A/p.G522E +YDL064W UBC9 1852 ubc9-A133E A133E amino_acid_mutation PMID:36870416 A133E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.337994C>A/c.398C>A/p.A133E +YDL064W UBC9 1854 ubc9-K153R K153R amino_acid_mutation PMID:21518767 K153R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.338054A>G/c.458A>G/p.K153R +YDL064W UBC9 1855 ubc9-K153R,K157R K153R,K157R amino_acid_mutation PMID:21518767 K153R|K157R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.338054A>G/c.458A>G/p.K153R|chrIV:g.338066A>G/c.470A>G/p.K157R +YDL064W UBC9 1856 ubc9-K157R K157R amino_acid_mutation PMID:21518767 K157R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.338066A>G/c.470A>G/p.K157R +YDL066W IDP1 1860 idp1-R148H R148H amino_acid_mutation PMID:27427385 R148H False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.335276_335278delAGAinsCAT/c.442_444delAGAinsCAT/p.R148H +YDL074C BRE1 1863 bre1-C663S C663S amino_acid_mutation PMID:35638611 C663S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.324163A>T/c.1987T>A/p.C663S +YDL074C BRE1 1864 bre1-K31D K31D amino_acid_mutation PMID:36912886 K31D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.326057_326059delAAAinsGAC/c.91_93delAAAinsGAC/p.K31D +YDL074C BRE1 1865 bre1-Q23A Q23A amino_acid_mutation PMID:36912886 Q23A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.326082_326083delCAinsGC/c.67_68delCAinsGC/p.Q23A +YDL074C BRE1 1866 bre1-Q30A Q30A amino_acid_mutation PMID:36912886 Q30A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.326061_326062delCAinsGC/c.88_89delCAinsGC/p.Q30A +YDL074C BRE1 1867 bre1-Q30A,K31D Q30A,K31D amino_acid_mutation PMID:36912886 Q30A|K31D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.326061_326062delCAinsGC/c.88_89delCAinsGC/p.Q30A|chrIV:g.326057_326059delAAAinsGAC/c.91_93delAAAinsGAC/p.K31D +YDL074C BRE1 1868 bre1-R36E R36E amino_acid_mutation PMID:36912886 R36E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.326043_326044delAGinsGA/c.106_107delAGinsGA/p.R36E +YDL074C BRE1 1869 bre1-R36E,R42E R36E,R42E amino_acid_mutation PMID:36912886 R36E|R42E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.326043_326044delAGinsGA/c.106_107delAGinsGA/p.R36E|chrIV:g.326025_326026delAGinsGA/c.124_125delAGinsGA/p.R42E +YDL074C BRE1 1870 bre1-R42E R42E amino_acid_mutation PMID:36912886 R42E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.326025_326026delAGinsGA/c.124_125delAGinsGA/p.R42E +YDL080C THI3 1874 thi3-S402F S402F amino_acid_mutation PMID:24778186 S402F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.311267G>A/c.1205C>T/p.S402F +YDL085W NDE2 1882 nde2-Q84* Q84* partial_amino_acid_deletion PMID:34362905 Q84* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.303460C>T/c.250C>T/p.Q84* +YDL098C SNU23 1896 snu23-C82Y C82Y amino_acid_mutation PMID:11673470 C82Y False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.284921C>T/c.245G>A/p.C82Y +YDL100C GET3 1898 get3-C240A,C242A C240A,C242A amino_acid_mutation PMID:35839781 C240A|C242A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.282458_282459delTGinsGC/c.718_719delTGinsGC/p.C240A|chrIV:g.282452_282453delTGinsGC/c.724_725delTGinsGC/p.C242A +YDL100C GET3 1899 get3-C240S,C242S C240S,C242S amino_acid_mutation PMID:35839781 C240S|C242S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.282459A>T/c.718T>A/p.C240S|chrIV:g.282453A>T/c.724T>A/p.C242S +YDL100C GET3 1900 get3-D57E D57E amino_acid_mutation PMID:23203805,PMID:25242142 D57E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.283006A>C/c.171T>G/p.D57E +YDL100C GET3 1901 get3-D57E,F190D,I193D D57E,F190D,I193D amino_acid_mutation PMID:35587358 D57E|F190D|I193D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.283006A>C/c.171T>G/p.D57E|chrIV:g.282608_282609delTTinsGA/c.568_569delTTinsGA/p.F190D|chrIV:g.282599_282600delATinsGA/c.577_578delATinsGA/p.I193D +YDL100C GET3 1902 get3-D57N D57N amino_acid_mutation PMID:35442388 D57N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.283008C>T/c.169G>A/p.D57N +YDL100C GET3 1903 get3-K31A K31A amino_acid_mutation PMID:20015340,PMID:35839781 K31A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.283121_283122delAAinsGC/c.91_92delAAinsGC/p.K31A +YDL101C DUN1 1904 dun1-D328A D328A amino_acid_mutation PMID:26970775 D328A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.280866T>G/c.983A>C/p.D328A +YDL101C DUN1 1906 dun1-R60A R60A amino_acid_mutation PMID:26970775 R60A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.281670_281671delAGinsGC/c.178_179delAGinsGC/p.R60A +YDL101C DUN1 1907 dun1-T380A T380A amino_acid_mutation PMID:26970775 T380A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.280711T>C/c.1138A>G/p.T380A +YDL102W POL3 1910 pol3-01,L612G 01,L612G amino_acid_deletion_and_mutation PMID:24388879 01|L612G False partial_amino_acid_deletion:single_aa|amino_acid_mutation:single_aa amino_acid_deletion_and_mutation chrIV:g.276873_276875delTGA/c.2_4delTGA/p.M1delM|chrIV:g.278705_278706delTTinsGG/c.1834_1835delTTinsGG/p.L612G +YDL102W POL3 1911 pol3-01,L612M 01,L612M amino_acid_deletion_and_mutation PMID:24388879 01|L612M False partial_amino_acid_deletion:single_aa|amino_acid_mutation:single_aa amino_acid_deletion_and_mutation chrIV:g.276873_276875delTGA/c.2_4delTGA/p.M1delM|chrIV:g.278705_278707delTTAinsATG/c.1834_1836delTTAinsATG/p.L612M +YDL102W POL3 1922 pol3-A704V A704V amino_acid_mutation PMID:28417960 A704V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278982C>T/c.2111C>T/p.A704V +YDL102W POL3 1923 pol3-C1059S C1059S amino_acid_mutation PMID:34019669 C1059S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.280046T>A/c.3175T>A/p.C1059S +YDL102W POL3 1924 pol3-D321A,E323A D321A,E323A amino_acid_mutation PMID:35229648,PMID:35338218 D321A|E323A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.277833A>C/c.962A>C/p.D321A|chrIV:g.277839A>C/c.968A>C/p.E323A +YDL102W POL3 1925 pol3-D321A,E323A,L612M D321A,E323A,L612M amino_acid_mutation PMID:35229648 D321A|E323A|L612M False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.277833A>C/c.962A>C/p.D321A|chrIV:g.277839A>C/c.968A>C/p.E323A|chrIV:g.278705_278707delTTAinsATG/c.1834_1836delTTAinsATG/p.L612M +YDL102W POL3 1926 pol3-D407A D407A amino_acid_mutation PMID:22022273 D407A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278091A>C/c.1220A>C/p.D407A +YDL102W POL3 1927 pol3-D520V D520V amino_acid_mutation PMID:32123096 D520V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278430A>T/c.1559A>T/p.D520V +YDL102W POL3 1928 pol3-D643N D643N amino_acid_mutation PMID:35338218 D643N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278798G>A/c.1927G>A/p.D643N +YDL102W POL3 1929 pol3-D762A,D764A D762A,D764A amino_acid_mutation PMID:19966286 D762A|D764A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.279156A>C/c.2285A>C/p.D762A|chrIV:g.279162A>C/c.2291A>C/p.D764A +YDL102W POL3 1930 pol3-F406A F406A amino_acid_mutation PMID:22022273 F406A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278087_278088delTTinsGC/c.1216_1217delTTinsGC/p.F406A +YDL102W POL3 1931 pol3-F467I F467I amino_acid_mutation PMID:28417960 F467I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278270T>A/c.1399T>A/p.F467I +YDL102W POL3 1933 pol3-G447D G447D amino_acid_mutation PMID:28417960 G447D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278211G>A/c.1340G>A/p.G447D +YDL102W POL3 1934 pol3-G818C G818C amino_acid_mutation PMID:28417960 G818C False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.279323G>T/c.2452G>T/p.G818C +YDL102W POL3 1935 pol3-K559N K559N amino_acid_mutation PMID:28417960 K559N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278548A>C/c.1677A>C/p.K559N +YDL102W POL3 1936 pol3-L523A L523A amino_acid_mutation PMID:15601866 L523A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278438_278439delCTinsGC/c.1567_1568delCTinsGC/p.L523A +YDL102W POL3 1937 pol3-L523D L523D amino_acid_mutation PMID:15601866 L523D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278438_278440delCTGinsGAC/c.1567_1569delCTGinsGAC/p.L523D +YDL102W POL3 1938 pol3-L523H L523H amino_acid_mutation PMID:15601866 L523H False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278439_278440delTGinsAT/c.1568_1569delTGinsAT/p.L523H +YDL102W POL3 1939 pol3-L523Q L523Q amino_acid_mutation PMID:15601866 L523Q False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278439T>A/c.1568T>A/p.L523Q +YDL102W POL3 1940 pol3-L523R L523R amino_acid_mutation PMID:15601866 L523R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278439T>G/c.1568T>G/p.L523R +YDL102W POL3 1941 pol3-L523S L523S amino_acid_mutation PMID:15601866 L523S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278438_278439delCTinsTC/c.1567_1568delCTinsTC/p.L523S +YDL102W POL3 1942 pol3-L523W L523W amino_acid_mutation PMID:15601866 L523W False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278438_278439delCTinsTG/c.1567_1568delCTinsTG/p.L523W +YDL102W POL3 1943 pol3-L612G L612G amino_acid_mutation PMID:24388879,PMID:34551434,PMID:36533450 L612G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278705_278706delTTinsGG/c.1834_1835delTTinsGG/p.L612G +YDL102W POL3 1944 pol3-L612K L612K amino_acid_mutation PMID:24388879 L612K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278705_278706delTTinsAA/c.1834_1835delTTinsAA/p.L612K +YDL102W POL3 1945 pol3-L612M L612M amino_acid_mutation PMID:15802517,PMID:18439893,PMID:24388879,PMID:31311768,PMID:34551434 L612M False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278705_278707delTTAinsATG/c.1834_1836delTTAinsATG/p.L612M +YDL102W POL3 1946 pol3-R1043G R1043G amino_acid_mutation PMID:29281621 R1043G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.279998A>G/c.3127A>G/p.R1043G +YDL102W POL3 1947 pol3-R658G R658G amino_acid_mutation PMID:28417960 R658G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278843A>G/c.1972A>G/p.R658G +YDL102W POL3 1948 pol3-R674G R674G amino_acid_mutation PMID:28417960 R674G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278891A>G/c.2020A>G/p.R674G +YDL102W POL3 1949 pol3-R696W R696W amino_acid_mutation PMID:25827231 R696W False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278957_278959delAGAinsTGG/c.2086_2088delAGAinsTGG/p.R696W +YDL102W POL3 1950 pol3-S319F S319F amino_acid_mutation PMID:28417960 S319F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.277827C>T/c.956C>T/p.S319F +YDL102W POL3 1951 pol3-S611Y S611Y amino_acid_mutation PMID:28417960 S611Y False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278703C>A/c.1832C>A/p.S611Y +YDL102W POL3 1952 pol3-Y516F Y516F amino_acid_mutation PMID:22022273 Y516F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278418A>T/c.1547A>T/p.Y516F +YDL102W POL3 1953 pol3-Y708A Y708A amino_acid_mutation PMID:28941243 Y708A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278993_278994delTAinsGC/c.2122_2123delTAinsGC/p.Y708A +YDL104C QRI7 1960 qri7-R207D R207D amino_acid_mutation PMID:33277478 R207D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.274256_274258delAGAinsGAC/c.619_621delAGAinsGAC/p.R207D +YDL120W YFH1 1981 yfh1-I130A I130A amino_acid_mutation PMID:19884169 I130A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.246217_246218delATinsGC/c.388_389delATinsGC/p.I130A +YDL120W YFH1 1982 yfh1-I130F I130F amino_acid_mutation PMID:9241271 I130F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.246217_246219delATAinsTTT/c.388_390delATAinsTTT/p.I130F +YDL120W YFH1 1983 yfh1-L144A L144A amino_acid_mutation PMID:21926174 L144A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.246352_246353delCTinsGC/c.430_431delCTinsGC/p.L144A +YDL120W YFH1 1984 yfh1-V150A V150A amino_acid_mutation PMID:21926174 V150A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.246371T>C/c.449T>C/p.V150A +YDL120W YFH1 1985 yfh1-W131A W131A amino_acid_mutation PMID:19884169 W131A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.246313_246314delTGinsGC/c.391_392delTGinsGC/p.W131A +YDL120W YFH1 1986 yfh1-Y73A Y73A amino_acid_mutation PMID:21926174 Y73A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.246139_246140delTAinsGC/c.217_218delTAinsGC/p.Y73A +YDL122W UBP1 1988 ubp1-C110S C110S amino_acid_mutation PMID:31713515 C110S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.242879T>A/c.328T>A/p.C110S +YDL126C CDC48 1991 Cdc48-E588Q E588Q amino_acid_mutation PMID:22580068,PMID:34389719,PMID:35404228 E588Q False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.236903C>G/c.1762G>C/p.E588Q +YDL126C CDC48 2000 cdc48-E315Q E315Q amino_acid_mutation PMID:33172985 E315Q False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.237722C>G/c.943G>C/p.E315Q +YDL126C CDC48 2001 cdc48-M288Y M288Y amino_acid_mutation PMID:31954512 M288Y False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.237801_237803delATGinsTAT/c.862_864delATGinsTAT/p.M288Y +YDL126C CDC48 2002 cdc48-S565G S565G amino_acid_mutation PMID:16822868,PMID:21070972,PMID:9348289 S565G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.236971_236972delTCinsGG/c.1693_1694delTCinsGG/p.S565G +YDL126C CDC48 2003 cdc48-T532C T532C amino_acid_mutation PMID:16234241 T532C False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.237069_237071delACAinsTGT/c.1594_1596delACAinsTGT/p.T532C +YDL132W CDC53 2013 cdc53-K760R K760R amino_acid_mutation PMID:32077151 K760R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.226582A>G/c.2279A>G/p.K760R +YDL134C PPH21 2016 pph21-L369A L369A amino_acid_mutation PMID:11038366,PMID:15947195 L369A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.219666_219667delTTinsGC/c.1105_1106delTTinsGC/p.L369A +YDL134C PPH21 2018 pph21-T364A T364A amino_acid_mutation PMID:11038366,PMID:15947195 T364A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.219682T>C/c.1090A>G/p.T364A +YDL134C PPH21 2019 pph21-T364D T364D amino_acid_mutation PMID:11038366,PMID:15947195 T364D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.219680_219682delACGinsGAC/c.1090_1092delACGinsGAC/p.T364D +YDL134C PPH21 2020 pph21-Y367E Y367E amino_acid_mutation PMID:11038366,PMID:15947195 Y367E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.219671_219673delTACinsGAG/c.1099_1101delTACinsGAG/p.Y367E +YDL134C PPH21 2021 pph21-Y367F Y367F amino_acid_mutation PMID:11038366,PMID:15947195 Y367F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.219672T>A/c.1100A>T/p.Y367F +YDL137W ARF2 2023 arf2-G29A G29A amino_acid_mutation PMID:8945477 G29A False amino_acid_mutation:single_aa amino_acid_mutation +YDL137W ARF2 2024 arf2-T31N T31N amino_acid_mutation PMID:8945477 T31N False amino_acid_mutation:single_aa amino_acid_mutation +YDL138W RGT2 2029 rgt2-V539I V539I amino_acid_mutation PMID:31738765 V539I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.214965G>A/c.1615G>A/p.V539I +YDL138W RGT2 2030 rgt2-W529F W529F amino_acid_mutation PMID:33617932 W529F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.214936_214937delGGinsTT/c.1586_1587delGGinsTT/p.W529F +YDL138W RGT2 2031 rgt2-W529Y W529Y amino_acid_mutation PMID:33617932 W529Y False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.214936_214937delGGinsAT/c.1586_1587delGGinsAT/p.W529Y +YDL139C SCM3 2033 scm3-E94K E94K amino_acid_mutation PMID:31611676 E94K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.211767C>T/c.280G>A/p.E94K +YDL140C RPO21 2059 rpo21-A301D A301D amino_acid_mutation PMID:31353023 A301D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.209660G>T/c.902C>A/p.A301D +YDL140C RPO21 2060 rpo21-E1230K E1230K amino_acid_mutation PMID:31353023 E1230K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.206874C>T/c.3688G>A/p.E1230K +YDL140C RPO21 2061 rpo21-H1085A H1085A amino_acid_mutation PMID:18538653 H1085A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.207308_207309delCAinsGC/c.3253_3254delCAinsGC/p.H1085A +YDL140C RPO21 2062 rpo21-H1085D H1085D amino_acid_mutation PMID:34705427 H1085D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.207309G>C/c.3253C>G/p.H1085D +YDL140C RPO21 2063 rpo21-H1085E H1085E amino_acid_mutation PMID:34705427 H1085E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.207307_207309delCATinsGAG/c.3253_3255delCATinsGAG/p.H1085E +YDL140C RPO21 2064 rpo21-H1085F H1085F amino_acid_mutation PMID:18538653 H1085F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.207308_207309delCAinsTT/c.3253_3254delCAinsTT/p.H1085F +YDL140C RPO21 2065 rpo21-H1085G H1085G amino_acid_mutation PMID:34705427 H1085G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.207308_207309delCAinsGG/c.3253_3254delCAinsGG/p.H1085G +YDL140C RPO21 2066 rpo21-H1085K H1085K amino_acid_mutation PMID:34705427 H1085K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.207307_207309delCATinsAAG/c.3253_3255delCATinsAAG/p.H1085K +YDL140C RPO21 2067 rpo21-H1085L H1085L amino_acid_mutation PMID:34705427 H1085L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.207308T>A/c.3254A>T/p.H1085L +YDL140C RPO21 2068 rpo21-H1085N H1085N amino_acid_mutation PMID:34705427 H1085N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.207309G>T/c.3253C>A/p.H1085N +YDL140C RPO21 2069 rpo21-H1085P H1085P amino_acid_mutation PMID:34705427 H1085P False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.207308T>G/c.3254A>C/p.H1085P +YDL140C RPO21 2070 rpo21-H1085Q H1085Q amino_acid_mutation PMID:34705427 H1085Q False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.207307A>T/c.3255T>A/p.H1085Q +YDL140C RPO21 2071 rpo21-H1085R H1085R amino_acid_mutation PMID:34705427 H1085R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.207308T>C/c.3254A>G/p.H1085R +YDL140C RPO21 2072 rpo21-H1085S H1085S amino_acid_mutation PMID:34705427 H1085S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.207308_207309delCAinsAG/c.3253_3254delCAinsAG/p.H1085S +YDL140C RPO21 2073 rpo21-H1085W H1085W amino_acid_mutation PMID:34705427 H1085W False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.207307_207309delCATinsTGG/c.3253_3255delCATinsTGG/p.H1085W +YDL140C RPO21 2074 rpo21-H1085Y H1085Y amino_acid_mutation PMID:18538653 H1085Y False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.207309G>A/c.3253C>T/p.H1085Y +YDL140C RPO21 2075 rpo21-K330R K330R amino_acid_mutation PMID:17418786,PMID:36288698 K330R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.209573T>C/c.989A>G/p.K330R +YDL140C RPO21 2076 rpo21-K695R K695R amino_acid_mutation PMID:17418786 K695R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.208478T>C/c.2084A>G/p.K695R +YDL140C RPO21 2077 rpo21-L1101P L1101P amino_acid_mutation PMID:31353023 L1101P False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.207260_207261delTTinsCC/c.3301_3302delTTinsCC/p.L1101P +YDL140C RPO21 2078 rpo21-L1397S L1397S amino_acid_mutation PMID:29133017 L1397S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.206372A>G/c.4190T>C/p.L1397S +YDL140C RPO21 2079 rpo21-L443T L443T amino_acid_mutation PMID:31353023 L443T False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.209234_209235delTTinsAC/c.1327_1328delTTinsAC/p.L443T +YDL140C RPO21 2080 rpo21-L732del L732del amino_acid_insertion_and_mutation PMID:31353023 L732del False L732DEL amino_acid_insertion_and_mutation:multiple_aa amino_acid_insertion_and_mutation chrIV:g.208366_208368delinsAAGCTCGTC/c.2194_2196delinsGACGAGCTT/p.L732_L732delinsDEL +YDL140C RPO21 2081 rpo21-N1232S N1232S amino_acid_mutation PMID:31353023 N1232S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.206867T>C/c.3695A>G/p.N1232S +YDL140C RPO21 2082 rpo21-N517S N517S amino_acid_mutation PMID:31353023 N517S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.209012T>C/c.1550A>G/p.N517S +YDL140C RPO21 2083 rpo21-S713M S713M amino_acid_mutation PMID:31353023 S713M False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.208423_208425delTCTinsATG/c.2137_2139delTCTinsATG/p.S713M +YDL149W ATG9 2103 atg9-H192L H192L amino_acid_mutation PMID:17178909 H192L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.185499A>T/c.575A>T/p.H192L +YDL154W MSH5 2108 msh5-D532A D532A amino_acid_mutation PMID:20865162 D532A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.179928A>C/c.1595A>C/p.D532A +YDL154W MSH5 2109 msh5-D539A D539A amino_acid_mutation PMID:20865162 D539A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.179949A>C/c.1616A>C/p.D539A +YDL154W MSH5 2110 msh5-D680A D680A amino_acid_mutation PMID:20865162 D680A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.180372A>C/c.2039A>C/p.D680A +YDL154W MSH5 2111 msh5-G643D,A644V G643D,A644V amino_acid_mutation PMID:9374523 G643D|A644V False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.180261G>A/c.1928G>A/p.G643D|chrIV:g.180264C>T/c.1931C>T/p.A644V +YDL154W MSH5 2112 msh5-G648R G648R amino_acid_mutation PMID:9374523 G648R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.180275G>A/c.1942G>A/p.G648R +YDL154W MSH5 2113 msh5-G821D G821D amino_acid_mutation PMID:9374523 G821D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.180795G>A/c.2462G>A/p.G821D +YDL154W MSH5 2114 msh5-L548A L548A amino_acid_mutation PMID:20865162 L548A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.179975_179976delTTinsGC/c.1642_1643delTTinsGC/p.L548A +YDL154W MSH5 2115 msh5-R436A R436A amino_acid_mutation PMID:20865162 R436A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.179639_179640delAGinsGC/c.1306_1307delAGinsGC/p.R436A +YDL154W MSH5 2116 msh5-S416A S416A amino_acid_mutation PMID:20865162 S416A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.179579T>G/c.1246T>G/p.S416A +YDL154W MSH5 2117 msh5-Y480A Y480A amino_acid_mutation PMID:20865162 Y480A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.179771_179772delTAinsGC/c.1438_1439delTAinsGC/p.Y480A +YDL154W MSH5 2118 msh5-Y486A Y486A amino_acid_mutation PMID:20865162 Y486A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.179789_179790delTAinsGC/c.1456_1457delTAinsGC/p.Y486A +YDL159W STE7 2123 ste7-S353A S353A amino_acid_mutation PMID:12506122 S353A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.173491T>G/c.1057T>G/p.S353A +YDL159W STE7 2124 ste7-S353D S353D amino_acid_mutation PMID:12506122 S353D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.173491_173492delTCinsGA/c.1057_1058delTCinsGA/p.S353D +YDL159W STE7 2125 ste7-S359A S359A amino_acid_mutation PMID:8131746 S359A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.173555T>G/c.1075T>G/p.S359A +YDL159W STE7 2126 ste7-T363A T363A amino_acid_mutation PMID:8131746 T363A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.173567A>G/c.1087A>G/p.T363A +YDL160C DHH1 2129 dhh1-D195A D195A amino_acid_mutation PMID:28455591,PMID:32989641 D195A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.171347T>G/c.584A>C/p.D195A +YDL160C DHH1 2130 dhh1-D195A,E196A,S226A,T228A D195A,E196A,S226A,T228A amino_acid_mutation PMID:30973873 D195A|E196A|S226A|T228A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.171347T>G/c.584A>C/p.D195A|chrIV:g.171344T>G/c.587A>C/p.E196A|chrIV:g.171254_171255delAGinsGC/c.676_677delAGinsGC/p.S226A|chrIV:g.171249T>C/c.682A>G/p.T228A +YDL160C DHH1 2131 dhh1-H369A,R370A H369A,R370A amino_acid_mutation PMID:30973873 H369A|R370A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.170825_170826delCAinsGC/c.1105_1106delCAinsGC/p.H369A|chrIV:g.170822_170823delCGinsGC/c.1108_1109delCGinsGC/p.R370A +YDL160C DHH1 2132 dhh1-K96R K96R amino_acid_mutation PMID:28455591,PMID:32989641 K96R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.171644T>C/c.287A>G/p.K96R +YDL160C DHH1 2133 dhh1-Q73A Q73A amino_acid_mutation PMID:28455591,PMID:32989641 Q73A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.171713_171714delCAinsGC/c.217_218delCAinsGC/p.Q73A +YDL160C DHH1 2134 dhh1-R370A R370A amino_acid_mutation PMID:32989641 R370A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.170822_170823delCGinsGC/c.1108_1109delCGinsGC/p.R370A +YDL160C DHH1 2135 dhh1-S14A S14A amino_acid_mutation PMID:32989641 S14A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.171890_171891delAGinsGC/c.40_41delAGinsGC/p.S14A +YDL160C DHH1 2136 dhh1-S14E S14E amino_acid_mutation PMID:32989641 S14E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.171889_171891delAGTinsGAG/c.40_42delAGTinsGAG/p.S14E +YDL160C DHH1 2137 dhh1-T10A T10A amino_acid_mutation PMID:32989641 T10A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.171903T>C/c.28A>G/p.T10A +YDL160C DHH1 2138 dhh1-T10E T10E amino_acid_mutation PMID:32989641 T10E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.171901_171903delACTinsGAG/c.28_30delACTinsGAG/p.T10E +YDL160C DHH1 2139 dhh1-T16A T16A amino_acid_mutation PMID:32989641 T16A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.171885T>C/c.46A>G/p.T16A +YDL160C DHH1 2140 dhh1-T16E T16E amino_acid_mutation PMID:32989641 T16E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.171884_171885delACinsGA/c.46_47delACinsGA/p.T16E +YDL161W ENT1 2142 ent1-S177D,S201D S177D,S201D amino_acid_mutation PMID:32694166 S177D|S201D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.168242_168243delAGinsGA/c.529_530delAGinsGA/p.S177D|chrIV:g.168314_168315delAGinsGA/c.601_602delAGinsGA/p.S201D +YDL168W SFA1 2150 SFA1-A303T A303T amino_acid_mutation PMID:23307895 A303T False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.160510G>A/c.907G>A/p.A303T +YDL168W SFA1 2151 SFA1-M283I M283I amino_acid_mutation PMID:23307895 M283I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.160452G>C/c.849G>C/p.M283I +YDL168W SFA1 2152 SFA1-V208I V208I amino_acid_mutation PMID:23307895 V208I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.160225G>A/c.622G>A/p.V208I +YDL185W VMA1 2163 vma1-Q707H Q707H amino_acid_mutation PMID:31611676 Q707H False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.128907A>T/c.2121A>T/p.Q707H +YDL192W ARF1 2178 arf1-K38T K38T amino_acid_mutation PMID:37400497 K38T False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.116433A>C/c.113A>C/p.K38T +YDL192W ARF1 2179 arf1-K38T,E132D K38T,E132D amino_acid_mutation PMID:37400497 K38T|E132D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.116433A>C/c.113A>C/p.K38T|chrIV:g.116670G>C/c.396G>C/p.E132D +YDL192W ARF1 2180 arf1-L173S L173S amino_acid_mutation PMID:37400497 L173S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.116838T>C/c.518T>C/p.L173S +YDL192W ARF1 2181 arf1-Q71L Q71L amino_acid_mutation PMID:33788577,PMID:37400497 Q71L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.116532A>T/c.212A>T/p.Q71L +YDL192W ARF1 2182 arf1-T31N T31N amino_acid_mutation PMID:37400497 T31N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.116412C>A/c.92C>A/p.T31N +YDL195W SEC31 2195 sec31-A756V A756V amino_acid_mutation PMID:35311587 A756V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.109474C>T/c.2267C>T/p.A756V +YDL198C GGC1 2199 ggc1-D140C D140C amino_acid_mutation PMID:35563451 D140C False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.104133_104134delGAinsTG/c.418_419delGAinsTG/p.D140C +YDL198C GGC1 2200 ggc1-D140C,K235C D140C,K235C amino_acid_mutation PMID:35563451 D140C|K235C False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.104133_104134delGAinsTG/c.418_419delGAinsTG/p.D140C|chrIV:g.103847_103849delAAGinsTGT/c.703_705delAAGinsTGT/p.K235C +YDL198C GGC1 2201 ggc1-D140K,K235D D140K,K235D amino_acid_mutation PMID:35563451 D140K|K235D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.104132_104134delGACinsAAG/c.418_420delGACinsAAG/p.D140K|chrIV:g.103847_103849delAAGinsGAC/c.703_705delAAGinsGAC/p.K235D +YDL198C GGC1 2202 ggc1-D232C D232C amino_acid_mutation PMID:35563451 D232C False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.103857_103858delGAinsTG/c.694_695delGAinsTG/p.D232C +YDL198C GGC1 2203 ggc1-D232C,S35C D232C,S35C amino_acid_mutation PMID:35563451 D232C|S35C False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.103857_103858delGAinsTG/c.694_695delGAinsTG/p.D232C|chrIV:g.104448G>C/c.104C>G/p.S35C +YDL198C GGC1 2204 ggc1-D32C D32C amino_acid_mutation PMID:35563451 D32C False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.104457_104458delGAinsTG/c.94_95delGAinsTG/p.D32C +YDL198C GGC1 2205 ggc1-D32C,K143C D32C,K143C amino_acid_mutation PMID:35563451 D32C|K143C False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.104457_104458delGAinsTG/c.94_95delGAinsTG/p.D32C|chrIV:g.104123_104125delAAGinsTGT/c.427_429delAAGinsTGT/p.K143C +YDL198C GGC1 2206 ggc1-K143C K143C amino_acid_mutation PMID:35563451 K143C False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.104123_104125delAAGinsTGT/c.427_429delAAGinsTGT/p.K143C +YDL198C GGC1 2207 ggc1-K154A K154A amino_acid_mutation PMID:36012783 K154A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.104091_104092delAAinsGC/c.460_461delAAinsGC/p.K154A +YDL198C GGC1 2208 ggc1-K235C K235C amino_acid_mutation PMID:35563451 K235C False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.103847_103849delAAGinsTGT/c.703_705delAAGinsTGT/p.K235C +YDL198C GGC1 2209 ggc1-R156A R156A amino_acid_mutation PMID:36012783 R156A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.104085_104086delAGinsGC/c.466_467delAGinsGC/p.R156A +YDL198C GGC1 2210 ggc1-R251A R251A amino_acid_mutation PMID:36012783 R251A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.103964_103965delAGinsGC/c.751_752delAGinsGC/p.R251A +YDL198C GGC1 2211 ggc1-R53A R53A amino_acid_mutation PMID:36012783 R53A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.104558_104559delAGinsGC/c.157_158delAGinsGC/p.R53A +YDL198C GGC1 2212 ggc1-S35C S35C amino_acid_mutation PMID:35563451 S35C False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.104448G>C/c.104C>G/p.S35C +YDL207W GLE1 2222 gle1-R287A R287A amino_acid_mutation PMID:16783364 R287A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.89106_89107delAGinsGC/c.859_860delAGinsGC/p.R287A +YDL214C PRR2 2230 prr2-V61L V61L amino_acid_mutation PMID:31611676 V61L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.76365C>G/c.181G>C/p.V61L +YDL215C GDH2 2231 gdh2-G627D G627D amino_acid_mutation PMID:35283819 G627D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.72039C>T/c.1880G>A/p.G627D +YDL217C TIM22 2236 tim22-D190A D190A amino_acid_mutation PMID:32918038 D190A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.68038T>G/c.569A>C/p.D190A +YDL217C TIM22 2237 tim22-E140A E140A amino_acid_mutation PMID:32918038 E140A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.68188T>G/c.419A>C/p.E140A +YDL217C TIM22 2240 tim22-G163L G163L amino_acid_mutation PMID:32591483 G163L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.68283_68284delGGinsCT/c.487_488delGGinsCT/p.G163L +YDL217C TIM22 2241 tim22-G179L G179L amino_acid_mutation PMID:32591483 G179L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.68071_68072delGGinsCT/c.535_536delGGinsCT/p.G179L +YDL217C TIM22 2242 tim22-G57E G57E amino_acid_mutation PMID:32591483 G57E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.68436_68437delGTinsAG/c.170_171delGTinsAG/p.G57E +YDL217C TIM22 2243 tim22-K127A K127A amino_acid_mutation PMID:32591483,PMID:32918038 K127A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.68227_68228delAAinsGC/c.379_380delAAinsGC/p.K127A +YDL217C TIM22 2244 tim22-K127A,K169A K127A,K169A amino_acid_mutation PMID:32918038 K127A|K169A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.68227_68228delAAinsGC/c.379_380delAAinsGC/p.K127A|chrIV:g.68101_68102delAAinsGC/c.505_506delAAinsGC/p.K169A +YDL217C TIM22 2245 tim22-K169A K169A amino_acid_mutation PMID:32918038 K169A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.68101_68102delAAinsGC/c.505_506delAAinsGC/p.K169A +YDL217C TIM22 2246 tim22-K45A,D151A K45A,D151A amino_acid_mutation PMID:32591483 K45A|D151A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.68473_68474delAAinsGC/c.133_134delAAinsGC/p.K45A|chrIV:g.68155T>G/c.452A>C/p.D151A +YDL220C CDC13 2263 cdc13-D546G D546G amino_acid_mutation PMID:22377634 D546G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63382T>C/c.1637A>G/p.D546G +YDL220C CDC13 2264 cdc13-E252K E252K amino_acid_mutation PMID:23181431 E252K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.64265C>T/c.754G>A/p.E252K +YDL220C CDC13 2265 cdc13-E867R E867R amino_acid_mutation PMID:32661422 E867R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.62419_62420delGAinsAG/c.2599_2600delGAinsAG/p.E867R +YDL220C CDC13 2266 cdc13-F237A F237A amino_acid_mutation PMID:34751785 F237A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.64309_64310delTTinsGC/c.709_710delTTinsGC/p.F237A +YDL220C CDC13 2267 cdc13-F237A,E252K F237A,E252K amino_acid_mutation PMID:34751785 F237A|E252K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.64309_64310delTTinsGC/c.709_710delTTinsGC/p.F237A|chrIV:g.64265C>T/c.754G>A/p.E252K +YDL220C CDC13 2268 cdc13-F539A F539A amino_acid_mutation PMID:30249661 F539A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63403_63404delTTinsGC/c.1615_1616delTTinsGC/p.F539A +YDL220C CDC13 2269 cdc13-F547A F547A amino_acid_mutation PMID:22377634 F547A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63379_63380delTTinsGC/c.1639_1640delTTinsGC/p.F547A +YDL220C CDC13 2270 cdc13-F683L F683L amino_acid_mutation PMID:22377634 F683L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.62972A>G/c.2047T>C/p.F683L +YDL220C CDC13 2271 cdc13-F684A F684A amino_acid_mutation PMID:22377634 F684A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.62968_62969delTTinsGC/c.2050_2051delTTinsGC/p.F684A +YDL220C CDC13 2272 cdc13-F684S F684S amino_acid_mutation PMID:22377634,PMID:32287268 F684S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.62968A>G/c.2051T>C/p.F684S +YDL220C CDC13 2273 cdc13-G614V G614V amino_acid_mutation PMID:22377634 G614V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63178C>A/c.1841G>T/p.G614V +YDL220C CDC13 2274 cdc13-I578A I578A amino_acid_mutation PMID:30249661 I578A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63286_63287delATinsGC/c.1732_1733delATinsGC/p.I578A +YDL220C CDC13 2275 cdc13-K622A K622A amino_acid_mutation PMID:30249661 K622A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63154_63155delAAinsGC/c.1864_1865delAAinsGC/p.K622A +YDL220C CDC13 2276 cdc13-K909R K909R amino_acid_mutation PMID:21743457 K909R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.62293T>C/c.2726A>G/p.K909R +YDL220C CDC13 2277 cdc13-L401R L401R amino_acid_mutation PMID:32661422 L401R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63817A>C/c.1202T>G/p.L401R +YDL220C CDC13 2278 cdc13-L529Q L529Q amino_acid_mutation PMID:22377634 L529Q False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63433A>T/c.1586T>A/p.L529Q +YDL220C CDC13 2279 cdc13-N609A N609A amino_acid_mutation PMID:22377634 N609A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63193_63194delAAinsGC/c.1825_1826delAAinsGC/p.N609A +YDL220C CDC13 2280 cdc13-S249A S249A amino_acid_mutation PMID:25387524 S249A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.64274A>C/c.745T>G/p.S249A +YDL220C CDC13 2281 cdc13-S255A S255A amino_acid_mutation PMID:25387524 S255A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.64256A>C/c.763T>G/p.S255A +YDL220C CDC13 2282 cdc13-S314A S314A amino_acid_mutation PMID:25387524 S314A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.64078_64079delAGinsGC/c.940_941delAGinsGC/p.S314A +YDL220C CDC13 2283 cdc13-S531F S531F amino_acid_mutation PMID:22377634 S531F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63427G>A/c.1592C>T/p.S531F +YDL220C CDC13 2284 cdc13-S56F S56F amino_acid_mutation PMID:22377634 S56F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.64852G>A/c.167C>T/p.S56F +YDL220C CDC13 2285 cdc13-S611L S611L amino_acid_mutation PMID:22377634 S611L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63187G>A/c.1832C>T/p.S611L +YDL220C CDC13 2286 cdc13-T308A T308A amino_acid_mutation PMID:19135888,PMID:28650257 T308A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.64097T>C/c.922A>G/p.T308A +YDL220C CDC13 2289 cdc13-V530G V530G amino_acid_mutation PMID:22377634 V530G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63430A>C/c.1589T>G/p.V530G +YDL220C CDC13 2290 cdc13-V543F V543F amino_acid_mutation PMID:22377634 V543F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63392C>A/c.1627G>T/p.V543F +YDL220C CDC13 2291 cdc13-Y522A Y522A amino_acid_mutation PMID:30249661 Y522A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63454_63455delTAinsGC/c.1564_1565delTAinsGC/p.Y522A +YDL220C CDC13 2292 cdc13-Y556A,Y558A Y556A,Y558A amino_acid_mutation PMID:32287268 Y556A|Y558A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63352_63353delTAinsGC/c.1666_1667delTAinsGC/p.Y556A|chrIV:g.63346_63347delTAinsGC/c.1672_1673delTAinsGC/p.Y558A +YDL220C CDC13 2293 cdc13-Y561A Y561A amino_acid_mutation PMID:30249661 Y561A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63337_63338delTAinsGC/c.1681_1682delTAinsGC/p.Y561A +YDL220C CDC13 2294 cdc13-Y626A Y626A amino_acid_mutation PMID:30249661 Y626A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63142_63143delTAinsGC/c.1876_1877delTAinsGC/p.Y626A +YDL232W OST4 2296 ost4-V23D V23D amino_acid_mutation PMID:33442744 V23D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.38554T>A/c.68T>A/p.V23D +YDL235C YPD1 2299 ypd1-G74C G74C amino_acid_mutation PMID:15665496 G74C False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.33699C>A/c.220G>T/p.G74C +YDR001C NTH1 2303 nth1-E24A E24A amino_acid_mutation PMID:33441790 E24A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.452405T>G/c.71A>C/p.E24A +YDR001C NTH1 2304 nth1-L19A L19A amino_acid_mutation PMID:33441790 L19A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.452420_452421delTTinsGC/c.55_56delTTinsGC/p.L19A +YDR001C NTH1 2305 nth1-S20A S20A amino_acid_mutation PMID:33441790 S20A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.452418A>C/c.58T>G/p.S20A +YDR001C NTH1 2306 nth1-S20A,S21A S20A,S21A amino_acid_mutation PMID:33441790 S20A|S21A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.452418A>C/c.58T>G/p.S20A|chrIV:g.452415A>C/c.61T>G/p.S21A +YDR001C NTH1 2307 nth1-S20A,S21A,S60A,S66A,S83A S20A,S21A,S60A,S66A,S83A amino_acid_mutation PMID:33441790 S20A|S21A|S60A|S66A|S83A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.452418A>C/c.58T>G/p.S20A|chrIV:g.452415A>C/c.61T>G/p.S21A|chrIV:g.452297_452298delAGinsGC/c.178_179delAGinsGC/p.S60A|chrIV:g.452280A>C/c.196T>G/p.S66A|chrIV:g.452229A>C/c.247T>G/p.S83A +YDR001C NTH1 2308 nth1-S20A,S21A,S60A,S83A S20A,S21A,S60A,S83A amino_acid_mutation PMID:33441790 S20A|S21A|S60A|S83A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.452418A>C/c.58T>G/p.S20A|chrIV:g.452415A>C/c.61T>G/p.S21A|chrIV:g.452297_452298delAGinsGC/c.178_179delAGinsGC/p.S60A|chrIV:g.452229A>C/c.247T>G/p.S83A +YDR001C NTH1 2309 nth1-S20E,S21E S20E,S21E amino_acid_mutation PMID:33441790 S20E|S21E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.452417_452418delTCinsGA/c.58_59delTCinsGA/p.S20E|chrIV:g.452414_452415delTCinsGA/c.61_62delTCinsGA/p.S21E +YDR001C NTH1 2310 nth1-S21A S21A amino_acid_mutation PMID:33441790 S21A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.452415A>C/c.61T>G/p.S21A +YDR001C NTH1 2311 nth1-S60A S60A amino_acid_mutation PMID:33441790 S60A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.452297_452298delAGinsGC/c.178_179delAGinsGC/p.S60A +YDR001C NTH1 2312 nth1-S60A,S83A S60A,S83A amino_acid_mutation PMID:33441790 S60A|S83A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.452297_452298delAGinsGC/c.178_179delAGinsGC/p.S60A|chrIV:g.452229A>C/c.247T>G/p.S83A +YDR001C NTH1 2313 nth1-S66A S66A amino_acid_mutation PMID:33441790 S66A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.452280A>C/c.196T>G/p.S66A +YDR001C NTH1 2314 nth1-S83A S83A amino_acid_mutation PMID:33441790 S83A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.452229A>C/c.247T>G/p.S83A +YDR005C MAF1 2322 maf1-S177A,S178A S177A,S178A amino_acid_mutation PMID:19299514 S177A|S178A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.457494_457495delAGinsGC/c.529_530delAGinsGC/p.S177A|chrIV:g.457491_457492delAGinsGC/c.532_533delAGinsGC/p.S178A +YDR005C MAF1 2323 maf1-S90A,S101A S90A,S101A amino_acid_mutation PMID:19299514 S90A|S101A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.457755_457756delAGinsGC/c.268_269delAGinsGC/p.S90A|chrIV:g.457723A>C/c.301T>G/p.S101A +YDR005C MAF1 2324 maf1-S90A,S101A,S209A,S210A S90A,S101A,S209A,S210A amino_acid_mutation PMID:19299514 S90A|S101A|S209A|S210A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.457755_457756delAGinsGC/c.268_269delAGinsGC/p.S90A|chrIV:g.457723A>C/c.301T>G/p.S101A|chrIV:g.457399A>C/c.625T>G/p.S209A|chrIV:g.457396A>C/c.628T>G/p.S210A +YDR007W TRP1 2325 trp1-C17A C17A amino_acid_mutation PMID:29127264 C17A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.461890_461891delTGinsGC/c.49_50delTGinsGC/p.C17A +YDR007W TRP1 2326 trp1-C17M C17M amino_acid_mutation PMID:29127264 C17M False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.461890_461892delTGCinsATG/c.49_51delTGCinsATG/p.C17M +YDR021W FAL1 2336 fal1-T322V T322V amino_acid_mutation PMID:21576267 T322V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.487767_487768delACinsGT/c.964_965delACinsGT/p.T322V +YDR022C ATG31 2337 atg31-S174A S174A amino_acid_mutation PMID:25773276 S174A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.488142_488143delAGinsGC/c.520_521delAGinsGC/p.S174A +YDR028C REG1 2344 reg1-I466M,F468A I466M,F468A amino_acid_mutation PMID:10454550 I466M|F468A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.499934G>C/c.1398C>G/p.I466M|chrIV:g.499477_499478delTTinsGC/c.1402_1403delTTinsGC/p.F468A +YDR028C REG1 2345 reg1-P231L P231L amino_acid_mutation PMID:32673313 P231L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.500188G>A/c.692C>T/p.P231L +YDR028C REG1 2346 reg1-R479STOP R479STOP partial_amino_acid_deletion PMID:31481524 R479STOP False R479* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrIV:g.499445G>A/c.1435C>T/p.R479* +YDR028C REG1 2347 reg1-S740STOP S740STOP partial_amino_acid_deletion PMID:16287868 S740STOP False S740* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrIV:g.498660_498662delAGTinsTGA/c.2218_2220delAGTinsTGA/p.S740* +YDR035W ARO3 2350 aro3-K222L K222L amino_acid_mutation PMID:32990403,PMID:34098954,PMID:34689412,PMID:35107250 K222L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.522479_522480delAAinsCT/c.664_665delAAinsCT/p.K222L +YDR036C EHD3 2351 ehd3-E124S E124S amino_acid_mutation PMID:35643281 E124S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.524343_524344delGAinsTC/c.370_371delGAinsTC/p.E124S +YDR036C EHD3 2352 ehd3-F121I F121I amino_acid_mutation PMID:35643281 F121I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.524353A>T/c.361T>A/p.F121I +YDR036C EHD3 2353 ehd3-K14A K14A amino_acid_mutation PMID:35643281 K14A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.524673_524674delAAinsGC/c.40_41delAAinsGC/p.K14A +YDR036C EHD3 2354 ehd3-K18A K18A amino_acid_mutation PMID:35643281 K18A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.524661_524662delAAinsGC/c.52_53delAAinsGC/p.K18A +YDR036C EHD3 2355 ehd3-K7A K7A amino_acid_mutation PMID:35643281 K7A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.524694_524695delAAinsGC/c.19_20delAAinsGC/p.K7A +YDR036C EHD3 2356 ehd3-R22A R22A amino_acid_mutation PMID:35643281 R22A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.524649_524650delCGinsGC/c.64_65delCGinsGC/p.R22A +YDR036C EHD3 2357 ehd3-R3A R3A amino_acid_mutation PMID:35643281 R3A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.524706_524707delAGinsGC/c.7_8delAGinsGC/p.R3A +YDR036C EHD3 2358 ehd3-R3A,K7A,K14A,K18A,R22A R3A,K7A,K14A,K18A,R22A amino_acid_mutation PMID:35643281 R3A|K7A|K14A|K18A|R22A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.524706_524707delAGinsGC/c.7_8delAGinsGC/p.R3A|chrIV:g.524694_524695delAAinsGC/c.19_20delAAinsGC/p.K7A|chrIV:g.524673_524674delAAinsGC/c.40_41delAAinsGC/p.K14A|chrIV:g.524661_524662delAAinsGC/c.52_53delAAinsGC/p.K18A|chrIV:g.524649_524650delCGinsGC/c.64_65delCGinsGC/p.R22A +YDR036C EHD3 2359 ehd3-R3A,K7A,K14A,K18A,R22A,F121I,E124K R3A,K7A,K14A,K18A,R22A,F121I,E124K amino_acid_mutation PMID:35643281 R3A|K7A|K14A|K18A|R22A|F121I|E124K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.524706_524707delAGinsGC/c.7_8delAGinsGC/p.R3A|chrIV:g.524694_524695delAAinsGC/c.19_20delAAinsGC/p.K7A|chrIV:g.524673_524674delAAinsGC/c.40_41delAAinsGC/p.K14A|chrIV:g.524661_524662delAAinsGC/c.52_53delAAinsGC/p.K18A|chrIV:g.524649_524650delCGinsGC/c.64_65delCGinsGC/p.R22A|chrIV:g.524353A>T/c.361T>A/p.F121I|chrIV:g.524344C>T/c.370G>A/p.E124K +YDR036C EHD3 2360 ehd3-R3A,K7A,K14A,K18A,R22A,F121I,E124N R3A,K7A,K14A,K18A,R22A,F121I,E124N amino_acid_mutation PMID:35643281 R3A|K7A|K14A|K18A|R22A|F121I|E124N False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.524706_524707delAGinsGC/c.7_8delAGinsGC/p.R3A|chrIV:g.524694_524695delAAinsGC/c.19_20delAAinsGC/p.K7A|chrIV:g.524673_524674delAAinsGC/c.40_41delAAinsGC/p.K14A|chrIV:g.524661_524662delAAinsGC/c.52_53delAAinsGC/p.K18A|chrIV:g.524649_524650delCGinsGC/c.64_65delCGinsGC/p.R22A|chrIV:g.524353A>T/c.361T>A/p.F121I|chrIV:g.524342_524344delGAAinsAAC/c.370_372delGAAinsAAC/p.E124N +YDR036C EHD3 2361 ehd3-R3A,K7A,K14A,K18A,R22A,F121I,E124Q R3A,K7A,K14A,K18A,R22A,F121I,E124Q amino_acid_mutation PMID:35643281 R3A|K7A|K14A|K18A|R22A|F121I|E124Q False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.524706_524707delAGinsGC/c.7_8delAGinsGC/p.R3A|chrIV:g.524694_524695delAAinsGC/c.19_20delAAinsGC/p.K7A|chrIV:g.524673_524674delAAinsGC/c.40_41delAAinsGC/p.K14A|chrIV:g.524661_524662delAAinsGC/c.52_53delAAinsGC/p.K18A|chrIV:g.524649_524650delCGinsGC/c.64_65delCGinsGC/p.R22A|chrIV:g.524353A>T/c.361T>A/p.F121I|chrIV:g.524344C>G/c.370G>C/p.E124Q +YDR036C EHD3 2362 ehd3-R3A,K7A,K14A,K18A,R22A,F121I,E124R R3A,K7A,K14A,K18A,R22A,F121I,E124R amino_acid_mutation PMID:35643281 R3A|K7A|K14A|K18A|R22A|F121I|E124R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.524706_524707delAGinsGC/c.7_8delAGinsGC/p.R3A|chrIV:g.524694_524695delAAinsGC/c.19_20delAAinsGC/p.K7A|chrIV:g.524673_524674delAAinsGC/c.40_41delAAinsGC/p.K14A|chrIV:g.524661_524662delAAinsGC/c.52_53delAAinsGC/p.K18A|chrIV:g.524649_524650delCGinsGC/c.64_65delCGinsGC/p.R22A|chrIV:g.524353A>T/c.361T>A/p.F121I|chrIV:g.524343_524344delGAinsAG/c.370_371delGAinsAG/p.E124R +YDR036C EHD3 2363 ehd3-R3A,K7A,K14A,K18A,R22A,F121I,E124S R3A,K7A,K14A,K18A,R22A,F121I,E124S amino_acid_mutation PMID:35643281 R3A|K7A|K14A|K18A|R22A|F121I|E124S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.524706_524707delAGinsGC/c.7_8delAGinsGC/p.R3A|chrIV:g.524694_524695delAAinsGC/c.19_20delAAinsGC/p.K7A|chrIV:g.524673_524674delAAinsGC/c.40_41delAAinsGC/p.K14A|chrIV:g.524661_524662delAAinsGC/c.52_53delAAinsGC/p.K18A|chrIV:g.524649_524650delCGinsGC/c.64_65delCGinsGC/p.R22A|chrIV:g.524353A>T/c.361T>A/p.F121I|chrIV:g.524343_524344delGAinsTC/c.370_371delGAinsTC/p.E124S +YDR036C EHD3 2364 ehd3-R3A,K7A,K14A,K18A,R22A,F121I,E124T R3A,K7A,K14A,K18A,R22A,F121I,E124T amino_acid_mutation PMID:35643281 R3A|K7A|K14A|K18A|R22A|F121I|E124T False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.524706_524707delAGinsGC/c.7_8delAGinsGC/p.R3A|chrIV:g.524694_524695delAAinsGC/c.19_20delAAinsGC/p.K7A|chrIV:g.524673_524674delAAinsGC/c.40_41delAAinsGC/p.K14A|chrIV:g.524661_524662delAAinsGC/c.52_53delAAinsGC/p.K18A|chrIV:g.524649_524650delCGinsGC/c.64_65delCGinsGC/p.R22A|chrIV:g.524353A>T/c.361T>A/p.F121I|chrIV:g.524343_524344delGAinsAC/c.370_371delGAinsAC/p.E124T +YDR040C ENA1 2371 ena1-G1088A G1088A amino_acid_mutation PMID:32694166 G1088A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.535205C>G/c.3263G>C/p.G1088A +YDR040C ENA1 2372 ena1-I1089A I1089A amino_acid_mutation PMID:32694166 I1089A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.535202_535203delATinsGC/c.3265_3266delATinsGC/p.I1089A +YDR040C ENA1 2373 ena1-K1090R K1090R amino_acid_mutation PMID:32694166 K1090R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.535199T>C/c.3269A>G/p.K1090R +YDR040C ENA1 2374 ena1-Q1091A Q1091A amino_acid_mutation PMID:32694166 Q1091A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.535196_535197delCAinsGC/c.3271_3272delCAinsGC/p.Q1091A +YDR043C NRG1 2377 nrg1-H226N H226N amino_acid_mutation PMID:33106428 H226N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.542694G>T/c.676C>A/p.H226N +YDR043C NRG1 2378 nrg1-W82STOP W82STOP partial_amino_acid_deletion PMID:35283819 W82STOP False W82* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrIV:g.543125C>T/c.245G>A/p.W82* +YDR047W HEM12 2388 hem12-K8A K8A amino_acid_mutation PMID:26317124 K8A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.551881_551882delAAinsGC/c.22_23delAAinsGC/p.K8A +YDR047W HEM12 2389 hem12-L36A,P37A L36A,P37A amino_acid_mutation PMID:26317124 L36A|P37A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.551496_551497delTTinsGC/c.106_107delTTinsGC/p.L36A|chrIV:g.551968C>G/c.109C>G/p.P37A +YDR050C TPI1 2391 tpi1-N65K N65K amino_acid_mutation PMID:16221686 N65K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.556278G>C/c.195C>G/p.N65K +YDR054C CDC34 2411 CDC34-C95S,L99S C95S,L99S amino_acid_mutation PMID:7592826 C95S|L99S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.562045A>T/c.283T>A/p.C95S|chrIV:g.562032A>G/c.296T>C/p.L99S +YDR054C CDC34 2415 cdc34-A141K A141K amino_acid_mutation PMID:33888705 A141K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.561906_561907delGCinsAA/c.421_422delGCinsAA/p.A141K +YDR054C CDC34 2416 cdc34-C95S C95S amino_acid_mutation PMID:7565715 C95S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.562045A>T/c.283T>A/p.C95S +YDR054C CDC34 2417 cdc34-S139A S139A amino_acid_mutation PMID:7565715 S139A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.561913A>C/c.415T>G/p.S139A +YDR054C CDC34 2418 cdc34-S139D S139D amino_acid_mutation PMID:7565715 S139D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.561911_561913delTCGinsGAC/c.415_417delTCGinsGAC/p.S139D +YDR054C CDC34 2419 cdc34-S73A S73A amino_acid_mutation PMID:7565715 S73A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.562299_562300delAGinsGC/c.217_218delAGinsGC/p.S73A +YDR054C CDC34 2420 cdc34-S73D S73D amino_acid_mutation PMID:7565715 S73D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.562299_562300delAGinsGA/c.217_218delAGinsGA/p.S73D +YDR054C CDC34 2421 cdc34-S73E S73E amino_acid_mutation PMID:7565715 S73E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.562298_562300delAGCinsGAG/c.217_219delAGCinsGAG/p.S73E +YDR054C CDC34 2422 cdc34-S73K S73K amino_acid_mutation PMID:7565715 S73K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.562298_562299delGCinsAG/c.218_219delGCinsAG/p.S73K +YDR054C CDC34 2423 cdc34-S73K,S97A S73K,S97A amino_acid_mutation PMID:7565715 S73K|S97A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.562298_562299delGCinsAG/c.218_219delGCinsAG/p.S73K|chrIV:g.562039A>C/c.289T>G/p.S97A +YDR054C CDC34 2424 cdc34-S73K,S97D S73K,S97D amino_acid_mutation PMID:7565715 S73K|S97D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.562298_562299delGCinsAG/c.218_219delGCinsAG/p.S73K|chrIV:g.562038_562039delTCinsGA/c.289_290delTCinsGA/p.S97D +YDR054C CDC34 2426 cdc34-S97A S97A amino_acid_mutation PMID:7565715 S97A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.562039A>C/c.289T>G/p.S97A +YDR054C CDC34 2427 cdc34-S97D S97D amino_acid_mutation PMID:7565715 S97D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.562038_562039delTCinsGA/c.289_290delTCinsGA/p.S97D +YDR054C CDC34 2429 cdc34-S97T S97T amino_acid_mutation PMID:7565715 S97T False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.562039A>T/c.289T>A/p.S97T +YDR059C UBC5 2432 ubc5-C86A C86A amino_acid_mutation PMID:35294869 C86A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.569424_569425delTGinsGC/c.256_257delTGinsGC/p.C86A +YDR069C DOA4 2448 doa4-C571S C571S amino_acid_mutation PMID:8247125 C571S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.586009A>T/c.1711T>A/p.C571S +YDR069C DOA4 2450 doa4-W707stop W707stop partial_amino_acid_deletion PMID:35942513 W707stop False W707* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrIV:g.585600C>T/c.2120G>A/p.W707* +YDR078C SHU2 2456 shu2-C114S C114S amino_acid_mutation PMID:25659377 C114S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.602530A>T/c.340T>A/p.C114S +YDR080W VPS41 2462 vps41-S364A, S367A, S368A, S371A, S372A, T376A S364A, S367A, S368A, S371A, S372A, T376A amino_acid_mutation PMID:19193765 S364A|S367A|S368A|S371A|S372A|T376A False S364A,S367A,S368A,S371A,S372A,T376A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.605097T>G/c.1090T>G/p.S364A|chrIV:g.605106T>G/c.1099T>G/p.S367A|chrIV:g.605109_605110delAGinsGC/c.1102_1103delAGinsGC/p.S368A|chrIV:g.605118T>G/c.1111T>G/p.S371A|chrIV:g.605121_605122delAGinsGC/c.1114_1115delAGinsGC/p.S372A|chrIV:g.605133A>G/c.1126A>G/p.T376A +YDR081C PDC2 2464 pdc2-L634S L634S amino_acid_mutation PMID:24778186 L634S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.608181A>G/c.1901T>C/p.L634S +YDR082W STN1 2471 stn1-E167R E167R amino_acid_mutation PMID:32661422 E167R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.610939_610940delGAinsAG/c.499_500delGAinsAG/p.E167R +YDR082W STN1 2472 stn1-I168D I168D amino_acid_mutation PMID:20157006,PMID:32661422 I168D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.610942_610944delATAinsGAC/c.502_504delATAinsGAC/p.I168D +YDR082W STN1 2473 stn1-I73A I73A amino_acid_mutation PMID:22377634 I73A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.610657_610658delATinsGC/c.217_218delATinsGC/p.I73A +YDR082W STN1 2474 stn1-I73S I73S amino_acid_mutation PMID:22377634 I73S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.610658_610659delTAinsGC/c.218_219delTAinsGC/p.I73S +YDR082W STN1 2475 stn1-L164D L164D amino_acid_mutation PMID:20157006 L164D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.610930_610932delTTAinsGAC/c.490_492delTTAinsGAC/p.L164D +YDR082W STN1 2476 stn1-V414R V414R amino_acid_mutation PMID:32661422 V414R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.611680_611681delGTinsCG/c.1240_1241delGTinsCG/p.V414R +YDR082W STN1 2477 stn1-W171D W171D amino_acid_mutation PMID:32661422 W171D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.610951_610953delTGGinsGAC/c.511_513delTGGinsGAC/p.W171D +YDR085C AFR1 2479 afr1-V546A,F548A V546A,F548A amino_acid_mutation PMID:18552279 V546A|F548A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.614514A>G/c.1637T>C/p.V546A|chrIV:g.614508_614509delTTinsGC/c.1642_1643delTTinsGC/p.F548A +YDR091C RLI1 2491 rli1-C25S C25S amino_acid_mutation PMID:23318452 C25S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.628462A>T/c.73T>A/p.C25S +YDR091C RLI1 2492 rli1-C25S,C61S C25S,C61S amino_acid_mutation PMID:26182403 C25S|C61S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.628462A>T/c.73T>A/p.C25S|chrIV:g.628354A>T/c.181T>A/p.C61S +YDR091C RLI1 2493 rli1-E493Q E493Q amino_acid_mutation PMID:31370247 E493Q False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.627058C>G/c.1477G>C/p.E493Q +YDR092W UBC13 2495 ubc13-E55A E55A amino_acid_mutation PMID:32265276 E55A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.630307A>C/c.164A>C/p.E55A +YDR092W UBC13 2496 ubc13-K10E K10E amino_acid_mutation PMID:32265276 K10E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.629903A>G/c.28A>G/p.K10E +YDR092W UBC13 2497 ubc13-K6E K6E amino_acid_mutation PMID:32265276 K6E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.629891A>G/c.16A>G/p.K6E +YDR092W UBC13 2498 ubc13-M64A M64A amino_acid_mutation PMID:32265276 M64A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.630333_630334delATinsGC/c.190_191delATinsGC/p.M64A +YDR092W UBC13 2499 ubc13-S96A S96A amino_acid_mutation PMID:32265276 S96A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.630429T>G/c.286T>G/p.S96A +YDR093W DNF2 2501 dnf2-N258S N258S amino_acid_mutation PMID:33060204 N258S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.632054A>G/c.773A>G/p.N258S +YDR093W DNF2 2502 dnf2-Q655N Q655N amino_acid_mutation PMID:33060204 Q655N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.633244_633246delCAGinsAAC/c.1963_1965delCAGinsAAC/p.Q655N +YDR096W GIS1 2503 gis1-H204A H204A amino_acid_mutation PMID:24999627 H204A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.637748_637749delCAinsGC/c.610_611delCAinsGC/p.H204A +YDR097C MSH6 2504 msh6-M1032K M1032K amino_acid_mutation PMID:32772095 M1032K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.640836A>T/c.3095T>A/p.M1032K +YDR099W BMH2 2507 bmh2-E185D E185D amino_acid_mutation PMID:17299042 E185D False amino_acid_mutation:single_aa amino_acid_mutation +YDR099W BMH2 2508 bmh2-K51F K51F amino_acid_mutation PMID:17299042 K51F False amino_acid_mutation:single_aa amino_acid_mutation +YDR099W BMH2 2509 bmh2-K51G K51G amino_acid_mutation PMID:17299042 K51G False amino_acid_mutation:single_aa amino_acid_mutation +YDR099W BMH2 2510 bmh2-K51L K51L amino_acid_mutation PMID:17299042 K51L False amino_acid_mutation:single_aa amino_acid_mutation +YDR099W BMH2 2511 bmh2-K51P K51P amino_acid_mutation PMID:17299042 K51P False amino_acid_mutation:single_aa amino_acid_mutation +YDR099W BMH2 2512 bmh2-K51R K51R amino_acid_mutation PMID:17299042 K51R False amino_acid_mutation:single_aa amino_acid_mutation +YDR099W BMH2 2513 bmh2-L225Q L225Q amino_acid_mutation PMID:17299042 L225Q False amino_acid_mutation:single_aa amino_acid_mutation +YDR099W BMH2 2514 bmh2-S189P S189P amino_acid_mutation PMID:11748725 S189P False amino_acid_mutation:single_aa amino_acid_mutation +YDR103W STE5 2517 ste5-C180A C180A amino_acid_mutation PMID:9501067 C180A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.658887_658888delTGinsGC/c.538_539delTGinsGC/p.C180A +YDR103W STE5 2518 ste5-D746G D746G amino_acid_mutation PMID:9335587 D746G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.660586A>G/c.2237A>G/p.D746G +YDR103W STE5 2519 ste5-F382L,Y769C F382L,Y769C amino_acid_mutation PMID:9335587 F382L|Y769C False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.659493T>C/c.1144T>C/p.F382L|chrIV:g.660655A>G/c.2306A>G/p.Y769C +YDR103W STE5 2520 ste5-F514L F514L amino_acid_mutation PMID:9335587 F514L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.659889T>C/c.1540T>C/p.F514L +YDR103W STE5 2521 ste5-I504T I504T amino_acid_mutation PMID:9335587 I504T False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.659860T>C/c.1511T>C/p.I504T +YDR103W STE5 2522 ste5-L128P,N744K L128P,N744K amino_acid_mutation PMID:9335587 L128P|N744K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.658732T>C/c.383T>C/p.L128P|chrIV:g.660581C>G/c.2232C>G/p.N744K +YDR103W STE5 2523 ste5-R57K,T465G R57K,T465G amino_acid_mutation PMID:9335587 R57K|T465G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.658519G>A/c.170G>A/p.R57K|chrIV:g.659742_659743delACinsGG/c.1393_1394delACinsGG/p.T465G +YDR103W STE5 2524 ste5-R60G,S497G R60G,S497G amino_acid_mutation PMID:9335587 R60G|S497G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.658527A>G/c.178A>G/p.R60G|chrIV:g.659838A>G/c.1489A>G/p.S497G +YDR103W STE5 2525 ste5-R895G R895G amino_acid_mutation PMID:9335587 R895G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.661032A>G/c.2683A>G/p.R895G +YDR103W STE5 2526 ste5-S185A S185A amino_acid_mutation PMID:32597919 S185A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.658902T>G/c.553T>G/p.S185A +YDR103W STE5 2527 ste5-S62G,S497G S62G,S497G amino_acid_mutation PMID:9335587 S62G|S497G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.658533A>G/c.184A>G/p.S62G|chrIV:g.659838A>G/c.1489A>G/p.S497G +YDR103W STE5 2528 ste5-S71P,M463T,V489A S71P,M463T,V489A amino_acid_mutation PMID:9335587 S71P|M463T|V489A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.658560T>C/c.211T>C/p.S71P|chrIV:g.659737T>C/c.1388T>C/p.M463T|chrIV:g.659815T>C/c.1466T>C/p.V489A +YDR103W STE5 2529 ste5-V763A,S861P V763A,S861P amino_acid_mutation PMID:9335587 V763A|S861P False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.660637T>C/c.2288T>C/p.V763A|chrIV:g.660930T>C/c.2581T>C/p.S861P +YDR108W TRS85 2531 trs85-K621E K621E amino_acid_mutation PMID:34018207 K621E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.673129A>G/c.1861A>G/p.K621E +YDR108W TRS85 2532 trs85-R618E R618E amino_acid_mutation PMID:34018207 R618E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.673120_673121delAGinsGA/c.1852_1853delAGinsGA/p.R618E +YDR108W TRS85 2533 trs85-R619E R619E amino_acid_mutation PMID:34018207 R619E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.673123_673124delAGinsGA/c.1855_1856delAGinsGA/p.R619E +YDR108W TRS85 2534 trs85-R620E R620E amino_acid_mutation PMID:34018207 R620E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.673126_673128delCGCinsGAG/c.1858_1860delCGCinsGAG/p.R620E +YDR121W DPB4 2552 dpb4-A62S A62S amino_acid_mutation PMID:34362907 A62S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.693768G>T/c.184G>T/p.A62S +YDR123C INO2 2553 ino2-L119A L119A amino_acid_mutation PMID:15819625,PMID:34617598 L119A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.699113_699114delTTinsGC/c.355_356delTTinsGC/p.L119A +YDR129C SAC6 2558 sac6-T103A T103A amino_acid_mutation PMID:27068241 T103A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.714962T>C/c.307A>G/p.T103A +YDR129C SAC6 2559 sac6-T103E T103E amino_acid_mutation PMID:27068241 T103E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.714960_714962delACCinsGAG/c.307_309delACCinsGAG/p.T103E +YDR135C YCF1 2565 Ycf1-S251A S251A amino_acid_mutation PMID:18667437 S251A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.726800_726801delAGinsGC/c.751_752delAGinsGC/p.S251A +YDR135C YCF1 2566 Ycf1-S908A,T911A S908A,T911A amino_acid_mutation PMID:18667437,PMID:35277487 S908A|T911A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.724829_724830delAGinsGC/c.2722_2723delAGinsGC/p.S908A|chrIV:g.724821T>C/c.2731A>G/p.T911A +YDR135C YCF1 2567 ycf1-E1435Q E1435Q amino_acid_mutation PMID:35277487 E1435Q False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.723249C>G/c.4303G>C/p.E1435Q +YDR135C YCF1 2568 ycf1-R206E R206E amino_acid_mutation PMID:35277487 R206E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.726935_726936delAGinsGA/c.616_617delAGinsGA/p.R206E +YDR135C YCF1 2569 ycf1-R716A R716A amino_acid_mutation PMID:35277487 R716A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.725405_725406delAGinsGC/c.2146_2147delAGinsGC/p.R716A +YDR135C YCF1 2570 ycf1-S908A S908A amino_acid_mutation PMID:35277487 S908A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.724829_724830delAGinsGC/c.2722_2723delAGinsGC/p.S908A +YDR135C YCF1 2571 ycf1-S914A S914A amino_acid_mutation PMID:35277487 S914A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.724811_724812delAGinsGC/c.2740_2741delAGinsGC/p.S914A +YDR135C YCF1 2572 ycf1-T911A T911A amino_acid_mutation PMID:35277487 T911A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.724821T>C/c.2731A>G/p.T911A +YDR140W MTQ2 2576 mtq2-D77A D77A amino_acid_mutation PMID:33166396 D77A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.734367A>C/c.230A>C/p.D77A +YDR140W MTQ2 2577 mtq2-N122A N122A amino_acid_mutation PMID:33166396 N122A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.734501_734502delAAinsGC/c.364_365delAAinsGC/p.N122A +YDR141C DOP1 2583 dop1-R820L R820L amino_acid_mutation PMID:31611676 R820L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.737539C>A/c.2459G>T/p.R820L +YDR143C SAN1 2587 san1-C257S C257S amino_acid_mutation PMID:35294869 C257S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.743106A>T/c.769T>A/p.C257S +YDR143C SAN1 2588 san1-C279S C279S amino_acid_mutation PMID:33793773 C279S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.743040A>T/c.835T>A/p.C279S +YDR145W TAF12 2592 taf12-L446A L446A amino_acid_mutation PMID:23962978 L446A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.748073_748074delCTinsGC/c.1336_1337delCTinsGC/p.L446A +YDR145W TAF12 2593 taf12-W486* W486* partial_amino_acid_deletion PMID:23962978 W486* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.748194G>A/c.1457G>A/p.W486* +YDR145W TAF12 2594 taf12-l464a l464a amino_acid_mutation PMID:27708008 l464a False L464A amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.748127_748128delTTinsGC/c.1390_1391delTTinsGC/p.L464A +YDR145W TAF12 2596 taf12-w486stop w486stop partial_amino_acid_deletion PMID:23390603,PMID:24336748,PMID:27708008 w486stop False W486* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrIV:g.748194G>A/c.1457G>A/p.W486* +YDR150W NUM1 2604 num1-D315A D315A amino_acid_mutation PMID:34985939 D315A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.756571A>C/c.944A>C/p.D315A +YDR155C CPR1 2613 cpr1-K151R K151R amino_acid_mutation PMID:32240951 K151R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.768549T>C/c.452A>G/p.K151R +YDR160W SSY1 2618 ssy1-T639I T639I amino_acid_mutation PMID:18307103 T639I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.778078C>T/c.1916C>T/p.T639I +YDR165W TRM82 2623 trm82-K223L K223L amino_acid_mutation PMID:26416026 K223L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.785537_785538delAAinsCT/c.667_668delAAinsCT/p.K223L +YDR168W CDC37 2636 cdc37-L62F L62F amino_acid_mutation PMID:17573546 L62F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.790513G>T/c.186G>T/p.L62F +YDR168W CDC37 2637 cdc37-M58R M58R amino_acid_mutation PMID:17573546 M58R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.790500T>G/c.173T>G/p.M58R +YDR168W CDC37 2638 cdc37-R65Q R65Q amino_acid_mutation PMID:17573546 R65Q False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.790521G>A/c.194G>A/p.R65Q +YDR168W CDC37 2639 cdc37-S14A S14A amino_acid_mutation PMID:17220467,PMID:19399909,PMID:36260391 S14A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.790367T>G/c.40T>G/p.S14A +YDR168W CDC37 2640 cdc37-S14E S14E amino_acid_mutation PMID:17220467 S14E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.790367_790368delTCinsGA/c.40_41delTCinsGA/p.S14E +YDR168W CDC37 2641 cdc37-S17A S17A amino_acid_mutation PMID:17220467 S17A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.790322T>G/c.49T>G/p.S17A +YDR168W CDC37 2642 cdc37-S17E S17E amino_acid_mutation PMID:17220467 S17E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.790322_790323delTCinsGA/c.49_50delTCinsGA/p.S17E +YDR168W CDC37 2643 cdc37-W33R W33R amino_acid_mutation PMID:17573546 W33R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.790424T>A/c.97T>A/p.W33R +YDR168W CDC37 2644 cdc37-Y59C Y59C amino_acid_mutation PMID:17573546 Y59C False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.790503A>G/c.176A>G/p.Y59C +YDR172W SUP35 2663 sup35-C653R C653R amino_acid_mutation PMID:22396662 C653R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.810280T>C/c.1957T>C/p.C653R +YDR172W SUP35 2665 sup35-G44R G44R amino_acid_mutation PMID:30582872,PMID:36366434 G44R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.808453G>A/c.130G>A/p.G44R +YDR172W SUP35 2666 sup35-G58D G58D amino_acid_mutation PMID:29084237,PMID:30582872,PMID:36366434 G58D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.808496G>A/c.173G>A/p.G58D +YDR172W SUP35 2668 sup35-N100H,L110Stop N100H,L110Stop amino_acid_deletion_and_mutation PMID:33546497 N100H|L110Stop False N100H,L110* amino_acid_mutation:single_aa|nonsense_mutation:stop_codon_text amino_acid_deletion_and_mutation chrIV:g.808621A>C/c.298A>C/p.N100H|chrIV:g.808652T>A/c.329T>A/p.L110* +YDR172W SUP35 2669 sup35-Q15R Q15R amino_acid_mutation PMID:30582872,PMID:36366434 Q15R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.808367A>G/c.44A>G/p.Q15R +YDR172W SUP35 2670 sup35-Q33K,A34K Q33K,A34K amino_acid_mutation PMID:31803017 Q33K|A34K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.808420C>A/c.97C>A/p.Q33K|chrIV:g.808423_808425delGCTinsAAG/c.100_102delGCTinsAAG/p.A34K +YDR172W SUP35 2671 sup35-Q38R,Y45C,Y101Stop Q38R,Y45C,Y101Stop amino_acid_deletion_and_mutation PMID:33546497 Q38R|Y45C|Y101Stop False Q38R,Y45C,Y101* amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|nonsense_mutation:stop_codon_text amino_acid_deletion_and_mutation chrIV:g.808436A>G/c.113A>G/p.Q38R|chrIV:g.808457A>G/c.134A>G/p.Y45C|chrIV:g.808626C>A/c.303C>A/p.Y101* +YDR172W SUP35 2672 sup35-Q61K,Q62K Q61K,Q62K amino_acid_mutation PMID:23965990 Q61K|Q62K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.808504C>A/c.181C>A/p.Q61K|chrIV:g.808507C>A/c.184C>A/p.Q62K +YDR172W SUP35 2674 sup35-Q70K,Q71K Q70K,Q71K amino_acid_mutation PMID:23965990 Q70K|Q71K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.808531C>A/c.208C>A/p.Q70K|chrIV:g.808534C>A/c.211C>A/p.Q71K +YDR172W SUP35 2675 sup35-Q80K,Q81K Q80K,Q81K amino_acid_mutation PMID:23965990 Q80K|Q81K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.808561C>A/c.238C>A/p.Q80K|chrIV:g.808564C>A/c.241C>A/p.Q81K +YDR172W SUP35 2676 sup35-Q89K,Q90K Q89K,Q90K amino_acid_mutation PMID:23965990 Q89K|Q90K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.808588C>A/c.265C>A/p.Q89K|chrIV:g.808591C>A/c.268C>A/p.Q90K +YDR172W SUP35 2677 sup35-S17R S17R amino_acid_mutation PMID:30582872,PMID:36366434 S17R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.808307_808308delTCinsCG/c.49_50delTCinsCG/p.S17R +YDR172W SUP35 2678 sup35-T341D T341D amino_acid_mutation PMID:18267004 T341D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.809344_809345delACinsGA/c.1021_1022delACinsGA/p.T341D +YDR172W SUP35 2679 sup35-Y46K,Q47K Y46K,Q47K amino_acid_mutation PMID:23965990 Y46K|Q47K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.808459_808461delTACinsAAG/c.136_138delTACinsAAG/p.Y46K|chrIV:g.808462C>A/c.139C>A/p.Q47K +YDR173C ARG82 2681 arg82-D131A,K133A D131A,K133A amino_acid_mutation PMID:28923943 D131A|K133A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.811241T>G/c.392A>C/p.D131A|chrIV:g.811235_811236delAAinsGC/c.397_398delAAinsGC/p.K133A +YDR176W NGG1 2685 ngg1-K15R K15R amino_acid_mutation PMID:35301489 K15R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.814495A>G/c.44A>G/p.K15R +YDR176W NGG1 2686 ngg1-K15R,K18R K15R,K18R amino_acid_mutation PMID:35301489 K15R|K18R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.814495A>G/c.44A>G/p.K15R|chrIV:g.814504A>G/c.53A>G/p.K18R +YDR176W NGG1 2687 ngg1-K18R K18R amino_acid_mutation PMID:35301489 K18R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.814504A>G/c.53A>G/p.K18R +YDR176W NGG1 2688 ngg1-K9R K9R amino_acid_mutation PMID:35301489 K9R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.814477A>G/c.26A>G/p.K9R +YDR176W NGG1 2689 ngg1-K9R,K15R K9R,K15R amino_acid_mutation PMID:35301489 K9R|K15R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.814477A>G/c.26A>G/p.K9R|chrIV:g.814495A>G/c.44A>G/p.K15R +YDR176W NGG1 2690 ngg1-K9R,K15R,K18R K9R,K15R,K18R amino_acid_mutation PMID:35301489 K9R|K15R|K18R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.814477A>G/c.26A>G/p.K9R|chrIV:g.814495A>G/c.44A>G/p.K15R|chrIV:g.814504A>G/c.53A>G/p.K18R +YDR176W NGG1 2691 ngg1-K9R,K18R K9R,K18R amino_acid_mutation PMID:35301489 K9R|K18R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.814477A>G/c.26A>G/p.K9R|chrIV:g.814504A>G/c.53A>G/p.K18R +YDR177W UBC1 2693 ubc1-C88A C88A amino_acid_mutation PMID:35294869 C88A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.817139_817140delTGinsGC/c.262_263delTGinsGC/p.C88A +YDR177W UBC1 2694 ubc1-S115D S115D amino_acid_mutation PMID:21996927 S115D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.817220_817221delTCinsGA/c.343_344delTCinsGA/p.S115D +YDR177W UBC1 2695 ubc1-S97A S97A amino_acid_mutation PMID:21996927 S97A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.817166T>G/c.289T>G/p.S97A +YDR177W UBC1 2696 ubc1-S97D S97D amino_acid_mutation PMID:21996927 S97D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.817166_817168delTCGinsGAC/c.289_291delTCGinsGAC/p.S97D +YDR178W SDH4 2700 sdh4-D98G D98G amino_acid_mutation PMID:26008905 D98G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.818242A>G/c.293A>G/p.D98G +YDR178W SDH4 2701 sdh4-D98Y D98Y amino_acid_mutation PMID:26008905 D98Y False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.818241G>T/c.292G>T/p.D98Y +YDR180W SCC2 2704 scc2-A757V A757V amino_acid_mutation PMID:35654035 A757V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.823564C>T/c.2270C>T/p.A757V +YDR180W SCC2 2705 scc2-D730V D730V amino_acid_mutation PMID:19948494 D730V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.823483A>T/c.2189A>T/p.D730V +YDR180W SCC2 2706 scc2-D820G D820G amino_acid_mutation PMID:35654035 D820G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.823753A>G/c.2459A>G/p.D820G +YDR180W SCC2 2707 scc2-E534K E534K amino_acid_mutation PMID:35654035 E534K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.822894G>A/c.1600G>A/p.E534K +YDR180W SCC2 2708 scc2-G1242R G1242R amino_acid_mutation PMID:19948494 G1242R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.825018G>C/c.3724G>C/p.G1242R +YDR180W SCC2 2709 scc2-G1242V G1242V amino_acid_mutation PMID:35654035 G1242V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.825019G>T/c.3725G>T/p.G1242V +YDR180W SCC2 2710 scc2-H302P H302P amino_acid_mutation PMID:35654035 H302P False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.822199A>C/c.905A>C/p.H302P +YDR180W SCC2 2711 scc2-K788E,H789E K788E,H789E amino_acid_mutation PMID:32930661 K788E|H789E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.823656A>G/c.2362A>G/p.K788E|chrIV:g.823659_823661delCATinsGAG/c.2365_2367delCATinsGAG/p.H789E +YDR180W SCC2 2712 scc2-N672H N672H amino_acid_mutation PMID:35654035 N672H False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.823308A>C/c.2014A>C/p.N672H +YDR180W SCC2 2713 scc2-R716G R716G amino_acid_mutation PMID:35654035 R716G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.823440A>G/c.2146A>G/p.R716G +YDR180W SCC2 2714 scc2-R716L R716L amino_acid_mutation PMID:19948494 R716L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.823440_823441delAGinsCT/c.2146_2147delAGinsCT/p.R716L +YDR180W SCC2 2715 scc2-R787G R787G amino_acid_mutation PMID:35654035 R787G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.823653A>G/c.2359A>G/p.R787G +YDR180W SCC2 2716 scc2-R787T R787T amino_acid_mutation PMID:35654035 R787T False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.823654G>C/c.2360G>C/p.R787T +YDR180W SCC2 2717 scc2-S717E,K721E,K788E,H789E S717E,K721E,K788E,H789E amino_acid_mutation PMID:32930661 S717E|K721E|K788E|H789E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.823443_823444delTCinsGA/c.2149_2150delTCinsGA/p.S717E|chrIV:g.823455A>G/c.2161A>G/p.K721E|chrIV:g.823656A>G/c.2362A>G/p.K788E|chrIV:g.823659_823661delCATinsGAG/c.2365_2367delCATinsGAG/p.H789E +YDR180W SCC2 2718 scc2-S717L,K721E S717L,K721E amino_acid_mutation PMID:32930661 S717L|K721E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.823444C>T/c.2150C>T/p.S717L|chrIV:g.823455A>G/c.2161A>G/p.K721E +YDR180W SCC2 2719 scc2-S751L S751L amino_acid_mutation PMID:35654035 S751L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.823545_823546delTCinsCT/c.2251_2252delTCinsCT/p.S751L +YDR196C CAB5 2838 cab5-R146C R146C amino_acid_mutation PMID:24360804 R146C False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.850562_850564delAGAinsTGT/c.436_438delAGAinsTGT/p.R146C +YDR207C UME6 2846 ume6-K635E K635E amino_acid_mutation PMID:28468907 K635E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.865620T>C/c.1903A>G/p.K635E +YDR207C UME6 2847 ume6-M530T M530T amino_acid_mutation PMID:28468907 M530T False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.865934A>G/c.1589T>C/p.M530T +YDR208W MSS4 2849 Mss4-D598A D598A amino_acid_mutation PMID:15741172 D598A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.870016A>C/c.1793A>C/p.D598A +YDR208W MSS4 2850 Mss4-D636A D636A amino_acid_mutation PMID:15741172 D636A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.870130A>C/c.1907A>C/p.D636A +YDR211W GCD6 2858 gcd6-E569A E569A amino_acid_mutation PMID:14681227 E569A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.886432A>C/c.1706A>C/p.E569A +YDR211W GCD6 2859 gcd6-F250L F250L amino_acid_mutation PMID:17526738 F250L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.885474T>C/c.748T>C/p.F250L +YDR211W GCD6 2860 gcd6-G369V G369V amino_acid_mutation PMID:14993275 G369V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.885832G>T/c.1106G>T/p.G369V +YDR211W GCD6 2861 gcd6-I413A I413A amino_acid_mutation PMID:14993275 I413A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.885963_885964delATinsGC/c.1237_1238delATinsGC/p.I413A +YDR211W GCD6 2862 gcd6-I90F I90F amino_acid_mutation PMID:14993275 I90F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.884994A>T/c.268A>T/p.I90F +YDR211W GCD6 2863 gcd6-R284H R284H amino_acid_mutation PMID:14993275 R284H False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.885576_885578delAGAinsCAT/c.850_852delAGAinsCAT/p.R284H +YDR211W GCD6 2864 gcd6-R323P R323P amino_acid_mutation PMID:14993275 R323P False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.885693_885694delAGinsCC/c.967_968delAGinsCC/p.R323P +YDR211W GCD6 2865 gcd6-S576N S576N amino_acid_mutation PMID:17526738 S576N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.886453G>A/c.1727G>A/p.S576N +YDR211W GCD6 2866 gcd6-V57G V57G amino_acid_mutation PMID:14993275 V57G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.884896T>G/c.170T>G/p.V57G +YDR211W GCD6 2867 gcd6-W618R W618R amino_acid_mutation PMID:14993275 W618R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.886578T>A/c.1852T>A/p.W618R +YDR216W ADR1 2876 adr1-S230A S230A amino_acid_mutation PMID:20139423,PMID:3290650,PMID:35987431 S230A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.895722T>G/c.688T>G/p.S230A +YDR217C RAD9 2882 rad9-G1096E G1096E amino_acid_mutation PMID:32043971 G1096E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.900194C>T/c.3287G>A/p.G1096E +YDR217C RAD9 2883 rad9-K1088E K1088E amino_acid_mutation PMID:34543274 K1088E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.900219T>C/c.3262A>G/p.K1088E +YDR217C RAD9 2884 rad9-K1088M K1088M amino_acid_mutation PMID:33842461 K1088M False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.900218T>A/c.3263A>T/p.K1088M +YDR217C RAD9 2886 rad9-L1006W L1006W amino_acid_mutation PMID:32043971 L1006W False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.900464A>C/c.3017T>G/p.L1006W +YDR217C RAD9 2887 rad9-S462A,T474A S462A,T474A amino_acid_mutation PMID:33086066 S462A|T474A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.902097A>C/c.1384T>G/p.S462A|chrIV:g.902061T>C/c.1420A>G/p.T474A +YDR217C RAD9 2888 rad9-Y798A Y798A amino_acid_mutation PMID:33842461 Y798A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.901088_901089delTAinsGC/c.2392_2393delTAinsGC/p.Y798A +YDR217C RAD9 2889 rad9-Y798Q Y798Q amino_acid_mutation PMID:34543274 Y798Q False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.901087_901089delTATinsCAA/c.2392_2394delTATinsCAA/p.Y798Q +YDR224C HTB1 2894 htb1-D72A D72A amino_acid_mutation PMID:34844121 D72A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.914498T>G/c.215A>C/p.D72A +YDR224C HTB1 2895 htb1-E80A E80A amino_acid_mutation PMID:31337617 E80A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.914474T>G/c.239A>C/p.E80A +YDR224C HTB1 2896 htb1-E80K E80K amino_acid_mutation PMID:31337617 E80K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.914475C>T/c.238G>A/p.E80K +YDR224C HTB1 2897 htb1-E80Q E80Q amino_acid_mutation PMID:31337617 E80Q False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.914475C>G/c.238G>C/p.E80Q +YDR224C HTB1 2898 htb1-K124R,S126A,S127A K124R,S126A,S127A amino_acid_mutation PMID:19255247 K124R|S126A|S127A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.914342T>C/c.371A>G/p.K124R|chrIV:g.914337A>C/c.376T>G/p.S126A|chrIV:g.914334A>C/c.379T>G/p.S127A +YDR224C HTB1 2899 htb1-R96A R96A amino_acid_mutation PMID:35705668 R96A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.914426_914427delAGinsGC/c.286_287delAGinsGC/p.R96A +YDR224C HTB1 2900 htb1-S126stop S126stop partial_amino_acid_deletion PMID:19255247 S126stop False S126* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrIV:g.914335_914336delCTinsAA/c.377_378delCTinsAA/p.S126* +YDR224C HTB1 2901 htb1-T129stop T129stop partial_amino_acid_deletion PMID:19255247 T129stop False T129* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrIV:g.914326_914328delACTinsTAA/c.385_387delACTinsTAA/p.T129* +YDR225W HTA1 2902 hta1-K120A K120A amino_acid_mutation PMID:17028320 K120A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.915887_915888delAAinsGC/c.358_359delAAinsGC/p.K120A +YDR225W HTA1 2903 hta1-K121A K121A amino_acid_mutation PMID:17028320 K121A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.915890_915891delAAinsGC/c.361_362delAAinsGC/p.K121A +YDR225W HTA1 2904 hta1-K124A K124A amino_acid_mutation PMID:17028320 K124A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.915899_915900delAAinsGC/c.370_371delAAinsGC/p.K124A +YDR225W HTA1 2905 hta1-K127A K127A amino_acid_mutation PMID:17028320 K127A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.915908_915909delAAinsGC/c.379_380delAAinsGC/p.K127A +YDR225W HTA1 2906 hta1-K127A,S129A K127A,S129A amino_acid_mutation PMID:17028320 K127A|S129A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.915908_915909delAAinsGC/c.379_380delAAinsGC/p.K127A|chrIV:g.915914T>G/c.385T>G/p.S129A +YDR225W HTA1 2907 hta1-K14A K14A amino_acid_mutation PMID:17028320 K14A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.915569_915570delAAinsGC/c.40_41delAAinsGC/p.K14A +YDR225W HTA1 2909 hta1-K5A K5A amino_acid_mutation PMID:17028320 K5A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.915542_915543delAAinsGC/c.13_14delAAinsGC/p.K5A +YDR225W HTA1 2910 hta1-K8A K8A amino_acid_mutation PMID:17028320 K8A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.915551_915552delAAinsGC/c.22_23delAAinsGC/p.K8A +YDR225W HTA1 2911 hta1-R31I R31I amino_acid_mutation PMID:34259632 R31I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.915621G>T/c.92G>T/p.R31I +YDR225W HTA1 2912 hta1-S11A S11A amino_acid_mutation PMID:17028320 S11A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.915560T>G/c.31T>G/p.S11A +YDR225W HTA1 2913 hta1-S122A S122A amino_acid_mutation PMID:17028320 S122A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.915893T>G/c.364T>G/p.S122A +YDR225W HTA1 2914 hta1-S122A,K127A S122A,K127A amino_acid_mutation PMID:17028320 S122A|K127A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.915893T>G/c.364T>G/p.S122A|chrIV:g.915908_915909delAAinsGC/c.379_380delAAinsGC/p.K127A +YDR225W HTA1 2915 hta1-S122A,K127A,S129A S122A,K127A,S129A amino_acid_mutation PMID:17028320 S122A|K127A|S129A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.915893T>G/c.364T>G/p.S122A|chrIV:g.915908_915909delAAinsGC/c.379_380delAAinsGC/p.K127A|chrIV:g.915914T>G/c.385T>G/p.S129A +YDR225W HTA1 2916 hta1-S122A,S129A S122A,S129A amino_acid_mutation PMID:17028320 S122A|S129A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.915893T>G/c.364T>G/p.S122A|chrIV:g.915914T>G/c.385T>G/p.S129A +YDR225W HTA1 2917 hta1-S122A,T126A,S129A S122A,T126A,S129A amino_acid_mutation PMID:17028320 S122A|T126A|S129A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.915893T>G/c.364T>G/p.S122A|chrIV:g.915905A>G/c.376A>G/p.T126A|chrIV:g.915914T>G/c.385T>G/p.S129A +YDR225W HTA1 2918 hta1-S122D S122D amino_acid_mutation PMID:17028320 S122D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.915893_915894delTCinsGA/c.364_365delTCinsGA/p.S122D +YDR225W HTA1 2919 hta1-S129A S129A amino_acid_mutation PMID:12792653,PMID:31804179 S129A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.915914T>G/c.385T>G/p.S129A +YDR225W HTA1 2920 hta1-S129A,T126A S129A,T126A amino_acid_mutation PMID:31804179 S129A|T126A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.915914T>G/c.385T>G/p.S129A|chrIV:g.915905A>G/c.376A>G/p.T126A +YDR225W HTA1 2921 hta1-S16A S16A amino_acid_mutation PMID:17028320 S16A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.915575T>G/c.46T>G/p.S16A +YDR225W HTA1 2922 hta1-S18A S18A amino_acid_mutation PMID:17028320 S18A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.915581T>G/c.52T>G/p.S18A +YDR225W HTA1 2923 hta1-S2A S2A amino_acid_mutation PMID:17028320 S2A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.914836T>G/c.4T>G/p.S2A +YDR225W HTA1 2924 hta1-T126A T126A amino_acid_mutation PMID:17028320,PMID:31804179 T126A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.915905A>G/c.376A>G/p.T126A +YDR226W ADK1 2929 adk1-G20S G20S amino_acid_mutation PMID:20659900 G20S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.916543G>A/c.58G>A/p.G20S +YDR227W SIR4 2932 sir4-K1037R K1037R amino_acid_mutation PMID:34787675 K1037R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.920680A>G/c.3110A>G/p.K1037R +YDR238C SEC26 2950 sec26-F856A,W860A F856A,W860A amino_acid_mutation PMID:23962978 F856A|W860A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.938250_938251delTTinsGC/c.2566_2567delTTinsGC/p.F856A|chrIV:g.938238_938239delTGinsGC/c.2578_2579delTGinsGC/p.W860A +YDR244W PEX5 2956 pex5-S121A S121A amino_acid_mutation PMID:36122347 S121A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.950923T>G/c.361T>G/p.S121A +YDR244W PEX5 2957 pex5-S121D S121D amino_acid_mutation PMID:36122347 S121D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.950923_950925delTCAinsGAC/c.361_363delTCAinsGAC/p.S121D +YDR244W PEX5 2962 pex5-S216A S216A amino_acid_mutation PMID:36122347 S216A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.951208T>G/c.646T>G/p.S216A +YDR244W PEX5 2963 pex5-S216D S216D amino_acid_mutation PMID:36122347 S216D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.951208_951210delTCAinsGAC/c.646_648delTCAinsGAC/p.S216D +YDR244W PEX5 2964 pex5-S232A S232A amino_acid_mutation PMID:36122347 S232A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.951256_951257delAGinsGC/c.694_695delAGinsGC/p.S232A +YDR244W PEX5 2965 pex5-S232D S232D amino_acid_mutation PMID:36122347 S232D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.951256_951257delAGinsGA/c.694_695delAGinsGA/p.S232D +YDR244W PEX5 2968 pex5-S330A S330A amino_acid_mutation PMID:36122347 S330A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.951550_951551delAGinsGC/c.988_989delAGinsGC/p.S330A +YDR244W PEX5 2969 pex5-S330D S330D amino_acid_mutation PMID:36122347 S330D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.951550_951551delAGinsGA/c.988_989delAGinsGA/p.S330D +YDR244W PEX5 2972 pex5-S568A S568A amino_acid_mutation PMID:36122347 S568A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.952264T>G/c.1702T>G/p.S568A +YDR244W PEX5 2973 pex5-S568D S568D amino_acid_mutation PMID:36122347 S568D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.952264_952265delTCinsGA/c.1702_1703delTCinsGA/p.S568D +YDR244W PEX5 2974 pex5-S611A S611A amino_acid_mutation PMID:36122347 S611A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.952393T>G/c.1831T>G/p.S611A +YDR244W PEX5 2975 pex5-S611D S611D amino_acid_mutation PMID:36122347 S611D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.952393_952395delTCGinsGAC/c.1831_1833delTCGinsGAC/p.S611D +YDR244W PEX5 2976 pex5-S7A S7A amino_acid_mutation PMID:36122347 S7A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.950581T>G/c.19T>G/p.S7A +YDR244W PEX5 2977 pex5-S7D S7D amino_acid_mutation PMID:36122347 S7D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.950581_950583delTCAinsGAC/c.19_21delTCAinsGAC/p.S7D +YDR247W VHS1 2983 vhs1-S239N S239N amino_acid_mutation PMID:33973343 S239N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.956727_956728delTCinsAA/c.715_716delTCinsAA/p.S239N +YDR255C RMD5 2989 rmd5-C379S C379S amino_acid_mutation PMID:18508925 C379S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.966688A>T/c.1135T>A/p.C379S +YDR267C CIA1 2992 cia1-R127E R127E amino_acid_mutation PMID:17937914 R127E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1003123_1003124delAGinsGA/c.379_380delAGinsGA/p.R127E +YDR268W MSW1 2995 msw1-E333M E333M amino_acid_mutation PMID:30920170 E333M False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1005000_1005002delGAAinsATG/c.997_999delGAAinsATG/p.E333M +YDR268W MSW1 2996 msw1-I297G I297G amino_acid_mutation PMID:30920170 I297G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1004892_1004893delATinsGG/c.889_890delATinsGG/p.I297G +YDR277C MTH1 3000 mth1-A81D A81D amino_acid_mutation PMID:35801089 A81D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1015461G>T/c.242C>A/p.A81D +YDR277C MTH1 3001 mth1-I85S I85S amino_acid_mutation PMID:35801089 I85S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1015449A>C/c.254T>G/p.I85S +YDR279W RNH202 3002 rnh202-H109R H109R amino_acid_mutation PMID:30975634 H109R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1019693A>G/c.326A>G/p.H109R +YDR279W RNH202 3003 rnh202-L186F L186F amino_acid_mutation PMID:30975634 L186F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1019925A>T/c.558A>T/p.L186F +YDR279W RNH202 3004 rnh202-L52R L52R amino_acid_mutation PMID:30975634 L52R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1019522T>G/c.155T>G/p.L52R +YDR279W RNH202 3005 rnh202-T204I T204I amino_acid_mutation PMID:30975634 T204I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1019978C>T/c.611C>T/p.T204I +YDR283C GCN2 3009 GCN2-E803V E803V amino_acid_mutation PMID:16100380 E803V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1027642T>A/c.2408A>T/p.E803V +YDR285W ZIP1 3012 zip1-S75E S75E amino_acid_mutation PMID:20951350,PMID:27913618 S75E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1032658_1032660delAGTinsGAG/c.223_225delAGTinsGAG/p.S75E +YDR289C RTT103 3020 rtt103-R108N R108N amino_acid_mutation PMID:20818393,PMID:36974034 R108N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1039186_1039187delGAinsAC/c.323_324delGAinsAC/p.R108N +YDR291W HRQ1 3022 hrq1-K318A K318A amino_acid_mutation PMID:32371399,PMID:33115720,PMID:33115721,PMID:35483549 K318A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1040679_1040680delAAinsGC/c.952_953delAAinsGC/p.K318A +YDR291W HRQ1 3024 hrq1-T240K T240K amino_acid_mutation PMID:31611676 T240K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1040446C>A/c.719C>A/p.T240K +YDR298C ATP5 3033 atp5-M1K M1K amino_acid_mutation PMID:8168623 M1K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1058813A>T/c.2T>A/p.M1K +YDR300C PRO1 3036 PRO1-E415K E415K amino_acid_mutation PMID:27672730 E415K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1061549C>T/c.1243G>A/p.E415K +YDR300C PRO1 3037 PRO1-I150T I150T amino_acid_mutation PMID:17449694,PMID:18641164,PMID:27672730,PMID:31646149,PMID:34442729,PMID:34576795 I150T False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1062343A>G/c.449T>C/p.I150T +YDR300C PRO1 3038 PRO1-P247S P247S amino_acid_mutation PMID:27672730 P247S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1062053G>A/c.739C>T/p.P247S +YDR300C PRO1 3039 pro1-A105V A105V amino_acid_mutation PMID:17449694,PMID:27672730,PMID:31646149 A105V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1062478G>A/c.314C>T/p.A105V +YDR300C PRO1 3040 pro1-D154N D154N amino_acid_mutation PMID:12513997,PMID:17449694,PMID:18641164 D154N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1062332C>T/c.460G>A/p.D154N +YDR300C PRO1 3041 pro1-D156A D156A amino_acid_mutation PMID:27442630 D156A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1062325T>G/c.467A>C/p.D156A +YDR300C PRO1 3042 pro1-E149K E149K amino_acid_mutation PMID:17449694 E149K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1062347C>T/c.445G>A/p.E149K +YDR300C PRO1 3043 pro1-H306R H306R amino_acid_mutation PMID:17449694,PMID:27672730,PMID:31646149 H306R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1061875T>C/c.917A>G/p.H306R +YDR300C PRO1 3044 pro1-N142D,I166V N142D,I166V amino_acid_mutation PMID:17449694 N142D|I166V False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1062368T>C/c.424A>G/p.N142D|chrIV:g.1062296T>C/c.496A>G/p.I166V +YDR300C PRO1 3045 pro1-N309D,R428C N309D,R428C amino_acid_mutation PMID:17449694,PMID:27672730,PMID:31646149 N309D|R428C False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1061867T>C/c.925A>G/p.N309D|chrIV:g.1061510G>A/c.1282C>T/p.R428C +YDR300C PRO1 3046 pro1-Q79H Q79H amino_acid_mutation PMID:32748014,PMID:34576795 Q79H False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1062625C>A/c.237G>T/p.Q79H +YDR300C PRO1 3047 pro1-R148G R148G amino_acid_mutation PMID:17449694 R148G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1062350T>C/c.442A>G/p.R148G +YDR300C PRO1 3048 pro1-R148G,Q351R R148G,Q351R amino_acid_mutation PMID:17449694,PMID:27672730,PMID:31646149 R148G|Q351R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1062350T>C/c.442A>G/p.R148G|chrIV:g.1061740T>C/c.1052A>G/p.Q351R +YDR300C PRO1 3049 pro1-S146P S146P amino_acid_mutation PMID:17449694,PMID:27672730,PMID:31646149 S146P False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1062356A>G/c.436T>C/p.S146P +YDR300C PRO1 3050 pro1-T126A T126A amino_acid_mutation PMID:17449694 T126A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1062486T>C/c.376A>G/p.T126A +YDR303C RSC3 3062 rsc3-C14G C14G amino_acid_mutation PMID:11336698 C14G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1071347A>C/c.40T>G/p.C14G +YDR313C PIB1 3074 pib1-C225S C225S amino_acid_mutation PMID:32265276 C225S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1089407A>T/c.673T>A/p.C225S +YDR313C PIB1 3075 pib1-I227A I227A amino_acid_mutation PMID:32265276 I227A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1089400_1089401delATinsGC/c.679_680delATinsGC/p.I227A +YDR325W YCG1 3091 ycg1-A746V A746V amino_acid_mutation PMID:29796388 A746V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1119362C>T/c.2237C>T/p.A746V +YDR326C YSP2 3094 ysp2-T518A T518A amino_acid_mutation PMID:29927351 T518A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1123374T>C/c.1552A>G/p.T518A +YDR328C SKP1 3099 skp1-L146S L146S amino_acid_mutation PMID:26310304 L146S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1125582A>G/c.437T>C/p.L146S +YDR336W MRX8 3117 mrx8-G145A,K146A,S147A G145A,K146A,S147A amino_acid_mutation PMID:34432493 G145A|K146A|S147A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1145525G>C/c.434G>C/p.G145A|chrIV:g.1145527_1145528delAAinsGC/c.436_437delAAinsGC/p.K146A|chrIV:g.1145530T>G/c.439T>G/p.S147A +YDR345C HXT3 3126 hxt3-N367A N367A amino_acid_mutation PMID:35951639 N367A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1163561_1163562delAAinsGC/c.1099_1100delAAinsGC/p.N367A +YDR353W TRR1 3128 trr1-L277* L277* partial_amino_acid_deletion PMID:24022485 L277* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1184128T>A/c.830T>A/p.L277* +YDR356W SPC110 3133 spc110-S11A S11A amino_acid_mutation PMID:36259662 S11A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1186137_1186138delAGinsGC/c.31_32delAGinsGC/p.S11A +YDR356W SPC110 3134 spc110-S11A,S36A S11A,S36A amino_acid_mutation PMID:36259662 S11A|S36A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1186137_1186138delAGinsGC/c.31_32delAGinsGC/p.S11A|chrIV:g.1186212T>G/c.106T>G/p.S36A +YDR356W SPC110 3135 spc110-S36A S36A amino_acid_mutation PMID:17213332,PMID:36259662 S36A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1186212T>G/c.106T>G/p.S36A +YDR363W ESC2 3138 esc2-D447M,D449A D447M,D449A amino_acid_mutation PMID:35654140 D447M|D449A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1200521_1200523delGATinsATG/c.1339_1341delGATinsATG/p.D447M|chrIV:g.1200528A>C/c.1346A>C/p.D449A +YDR363W ESC2 3139 esc2-K179E,K182E,K183E,K197E,R198E K179E,K182E,K183E,K197E,R198E amino_acid_mutation PMID:35654140 K179E|K182E|K183E|K197E|R198E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1199717A>G/c.535A>G/p.K179E|chrIV:g.1199726A>G/c.544A>G/p.K182E|chrIV:g.1199729A>G/c.547A>G/p.K183E|chrIV:g.1199771A>G/c.589A>G/p.K197E|chrIV:g.1199774_1199775delCGinsGA/c.592_593delCGinsGA/p.R198E +YDR363W ESC2 3141 esc2-V120A,V121A V120A,V121A amino_acid_mutation PMID:35654140 V120A|V121A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1199541T>C/c.359T>C/p.V120A|chrIV:g.1199544T>C/c.362T>C/p.V121A +YDR369C XRS2 3152 xrs2-S349A, T675A S349A, T675A amino_acid_mutation PMID:27017623 S349A|T675A False S349A,T675A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1216535_1216536delAGinsGC/c.1045_1046delAGinsGC/p.S349A|chrIV:g.1215558T>C/c.2023A>G/p.T675A +YDR372C VPS74 3154 vps74-R6A,R7A,R8A R6A,R7A,R8A amino_acid_mutation PMID:34821548 R6A|R7A|R8A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1222133_1222134delCGinsGC/c.16_17delCGinsGC/p.R6A|chrIV:g.1222130_1222131delCGinsGC/c.19_20delCGinsGC/p.R7A|chrIV:g.1222127_1222128delAGinsGC/c.22_23delAGinsGC/p.R8A +YDR375C BCS1 3157 bcs1-C289Y C289Y amino_acid_mutation PMID:19285991 C289Y False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1225671C>T/c.866G>A/p.C289Y +YDR375C BCS1 3158 bcs1-E212G E212G amino_acid_mutation PMID:19285991 E212G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1225902T>C/c.635A>G/p.E212G +YDR375C BCS1 3159 bcs1-F342C F342C amino_acid_mutation PMID:19285991,PMID:28888990 F342C False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1225512A>C/c.1025T>G/p.F342C +YDR375C BCS1 3160 bcs1-F401I F401I amino_acid_mutation PMID:28888990 F401I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1225336A>T/c.1201T>A/p.F401I +YDR375C BCS1 3161 bcs1-F432I F432I amino_acid_mutation PMID:19285991 F432I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1225243A>T/c.1294T>A/p.F432I +YDR375C BCS1 3162 bcs1-K192P K192P amino_acid_mutation PMID:28888990 K192P False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1225962_1225963delAAinsCC/c.574_575delAAinsCC/p.K192P +YDR375C BCS1 3163 bcs1-M310V M310V amino_acid_mutation PMID:19285991 M310V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1225609T>C/c.928A>G/p.M310V +YDR381W YRA1 3170 yra1-F126A F126A amino_acid_mutation PMID:21856751 F126A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1237699_1237700delTTinsGC/c.376_377delTTinsGC/p.F126A +YDR381W YRA1 3171 yra1-R107A R107A amino_acid_mutation PMID:21856751 R107A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1237642_1237643delAGinsGC/c.319_320delAGinsGC/p.R107A +YDR381W YRA1 3172 yra1-Y112A Y112A amino_acid_mutation PMID:21856751 Y112A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1237657_1237658delTAinsGC/c.334_335delTAinsGC/p.Y112A +YDR384C ATO3 3174 ato3-F95S F95S amino_acid_mutation PMID:34042971 F95S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1241748A>G/c.284T>C/p.F95S +YDR385W EFT2 3175 eft2-C372Y C372Y amino_acid_mutation PMID:33355653 C372Y False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1244344G>A/c.1115G>A/p.C372Y +YDR385W EFT2 3176 eft2-D696A D696A amino_acid_mutation PMID:16950777 D696A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1245316A>C/c.2087A>C/p.D696A +YDR385W EFT2 3177 eft2-H699K H699K amino_acid_mutation PMID:19338753 H699K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1245324_1245326delCACinsAAG/c.2095_2097delCACinsAAG/p.H699K +YDR385W EFT2 3178 eft2-H699N H699N amino_acid_mutation PMID:16950777 H699N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1245324C>A/c.2095C>A/p.H699N +YDR385W EFT2 3179 eft2-I698A I698A amino_acid_mutation PMID:16950777 I698A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1245321_1245322delATinsGC/c.2092_2093delATinsGC/p.I698A +YDR385W EFT2 3180 eft2-P580H P580H amino_acid_mutation PMID:33355653 P580H False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1244968_1244969delCAinsAT/c.1739_1740delCAinsAT/p.P580H +YDR385W EFT2 3181 eft2-Q753Y Q753Y amino_acid_mutation PMID:33355653 Q753Y False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1245486_1245488delCAAinsTAT/c.2257_2259delCAAinsTAT/p.Q753Y +YDR385W EFT2 3182 eft2-S523Y S523Y amino_acid_mutation PMID:19349972 S523Y False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1244797C>A/c.1568C>A/p.S523Y +YDR385W EFT2 3183 eft2-V28M V28M amino_acid_mutation PMID:33355653 V28M False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1243311_1243313delGTCinsATG/c.82_84delGTCinsATG/p.V28M +YDR390C UBA2 3188 uba2-C162S C162S amino_acid_mutation PMID:30575729 C162S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1256393A>T/c.484T>A/p.C162S +YDR390C UBA2 3190 uba2-R484M R484M amino_acid_mutation PMID:36870416 R484M False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1255397C>A/c.1451G>T/p.R484M +YDR392W SPT3 3194 spt3-A202V A202V amino_acid_mutation PMID:18073420 A202V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1259300C>T/c.605C>T/p.A202V +YDR392W SPT3 3195 spt3-D182G D182G amino_acid_mutation PMID:18073420 D182G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1259240A>G/c.545A>G/p.D182G +YDR392W SPT3 3196 spt3-K179E K179E amino_acid_mutation PMID:18073420 K179E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1259230A>G/c.535A>G/p.K179E +YDR392W SPT3 3197 spt3-L178R L178R amino_acid_mutation PMID:18073420 L178R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1259228T>G/c.533T>G/p.L178R +YDR392W SPT3 3198 spt3-M188I M188I amino_acid_mutation PMID:18073420 M188I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1259259G>C/c.564G>C/p.M188I +YDR392W SPT3 3199 spt3-M188T M188T amino_acid_mutation PMID:18073420 M188T False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1259258T>C/c.563T>C/p.M188T +YDR392W SPT3 3200 spt3-M188V M188V amino_acid_mutation PMID:18073420 M188V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1259257A>G/c.562A>G/p.M188V +YDR392W SPT3 3201 spt3-Q201P Q201P amino_acid_mutation PMID:18073420 Q201P False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1259297A>C/c.602A>C/p.Q201P +YDR392W SPT3 3202 spt3-W143R W143R amino_acid_mutation PMID:18073420 W143R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1259122T>A/c.427T>A/p.W143R +YDR392W SPT3 3203 spt3-W196C W196C amino_acid_mutation PMID:18073420 W196C False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1259283G>T/c.588G>T/p.W196C +YDR392W SPT3 3204 spt3-W196R W196R amino_acid_mutation PMID:18073420 W196R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1259281T>A/c.586T>A/p.W196R +YDR392W SPT3 3205 spt3-Y193C Y193C amino_acid_mutation PMID:18073420 Y193C False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1259273A>G/c.578A>G/p.Y193C +YDR392W SPT3 3206 spt3-Y193F Y193F amino_acid_mutation PMID:18073420 Y193F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1259273A>T/c.578A>T/p.Y193F +YDR392W SPT3 3207 spt3-Y193H Y193H amino_acid_mutation PMID:18073420 Y193H False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1259272T>C/c.577T>C/p.Y193H +YDR394W RPT3 3211 rpt3-K219S K219S amino_acid_mutation PMID:9724628 K219S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1262336_1262337delAGinsGC/c.656_657delAGinsGC/p.K219S +YDR394W RPT3 3212 rpt3-P93A P93A amino_acid_mutation PMID:33862083 P93A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1261957C>G/c.277C>G/p.P93A +YDR394W RPT3 3214 rpt3-Y246A Y246A amino_acid_mutation PMID:22493437 Y246A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1262416_1262417delTAinsGC/c.736_737delTAinsGC/p.Y246A +YDR395W SXM1 3218 sxm1-A19T A19T amino_acid_mutation PMID:31611676 A19T False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1263378G>A/c.55G>A/p.A19T +YDR395W SXM1 3219 sxm1-A573P A573P amino_acid_mutation PMID:31611676 A573P False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1265040G>C/c.1717G>C/p.A573P +YDR395W SXM1 3222 sxm1-E100* E100* partial_amino_acid_deletion PMID:31611676 E100* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1263621G>T/c.298G>T/p.E100* +YDR395W SXM1 3224 sxm1-E31* E31* partial_amino_acid_deletion PMID:31611676 E31* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1263414G>T/c.91G>T/p.E31* +YDR395W SXM1 3225 sxm1-E360* E360* partial_amino_acid_deletion PMID:31611676 E360* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1264401G>T/c.1078G>T/p.E360* +YDR395W SXM1 3226 sxm1-E430* E430* partial_amino_acid_deletion PMID:31611676 E430* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1264611G>T/c.1288G>T/p.E430* +YDR395W SXM1 3227 sxm1-E568* E568* partial_amino_acid_deletion PMID:31611676 E568* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1265025G>T/c.1702G>T/p.E568* +YDR395W SXM1 3229 sxm1-E727* E727* partial_amino_acid_deletion PMID:31611676 E727* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1265502G>T/c.2179G>T/p.E727* +YDR395W SXM1 3230 sxm1-E808* E808* partial_amino_acid_deletion PMID:31611676 E808* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1265745G>T/c.2422G>T/p.E808* +YDR395W SXM1 3231 sxm1-E849* E849* partial_amino_acid_deletion PMID:31611676 E849* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1265868G>T/c.2545G>T/p.E849* +YDR395W SXM1 3233 sxm1-G454* G454* partial_amino_acid_deletion PMID:31611676 G454* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1264683G>T/c.1360G>T/p.G454* +YDR395W SXM1 3235 sxm1-I674K I674K amino_acid_mutation PMID:31611676 I674K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1265344T>A/c.2021T>A/p.I674K +YDR395W SXM1 3236 sxm1-K299E K299E amino_acid_mutation PMID:31611676 K299E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1264218A>G/c.895A>G/p.K299E +YDR395W SXM1 3238 sxm1-K541* K541* partial_amino_acid_deletion PMID:31611676 K541* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1264944A>T/c.1621A>T/p.K541* +YDR395W SXM1 3239 sxm1-L332F L332F amino_acid_mutation PMID:31611676 L332F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1264317C>T/c.994C>T/p.L332F +YDR395W SXM1 3243 sxm1-Q212* Q212* partial_amino_acid_deletion PMID:31611676 Q212* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1263957C>T/c.634C>T/p.Q212* +YDR395W SXM1 3244 sxm1-Q225* Q225* partial_amino_acid_deletion PMID:31611676 Q225* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1263996C>T/c.673C>T/p.Q225* +YDR395W SXM1 3245 sxm1-Q331* Q331* partial_amino_acid_deletion PMID:31611676 Q331* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1264314C>T/c.991C>T/p.Q331* +YDR395W SXM1 3247 sxm1-Q463* Q463* partial_amino_acid_deletion PMID:31611676 Q463* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1264710C>T/c.1387C>T/p.Q463* +YDR395W SXM1 3248 sxm1-Q604* Q604* partial_amino_acid_deletion PMID:31611676 Q604* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1265133C>T/c.1810C>T/p.Q604* +YDR395W SXM1 3249 sxm1-S161* S161* partial_amino_acid_deletion PMID:31611676 S161* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1263805C>A/c.482C>A/p.S161* +YDR395W SXM1 3250 sxm1-S596* S596* partial_amino_acid_deletion PMID:31611676 S596* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1265110C>A/c.1787C>A/p.S596* +YDR395W SXM1 3251 sxm1-W258* W258* partial_amino_acid_deletion PMID:31611676 W258* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1264096G>A/c.773G>A/p.W258* +YDR395W SXM1 3252 sxm1-W805* W805* partial_amino_acid_deletion PMID:31611676 W805* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1265737G>A/c.2414G>A/p.W805* +YDR395W SXM1 3253 sxm1-Y270* Y270* partial_amino_acid_deletion PMID:31611676 Y270* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1264133C>A/c.810C>A/p.Y270* +YDR395W SXM1 3254 sxm1-Y284* Y284* partial_amino_acid_deletion PMID:31611676 Y284* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1264175T>A/c.852T>A/p.Y284* +YDR399W HPT1 3265 hpt1-R60K R60K amino_acid_mutation PMID:35283819 R60K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1270246G>A/c.179G>A/p.R60K +YDR405W MRP20 3273 mrp20-A105E A105E amino_acid_mutation PMID:35078232 A105E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1277959C>A/c.314C>A/p.A105E +YDR410C STE14 3280 ste14-E213D E213D amino_acid_mutation PMID:11451995 E213D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1292453T>G/c.639A>C/p.E213D +YDR410C STE14 3281 ste14-E213Q E213Q amino_acid_mutation PMID:11451995 E213Q False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1292455C>G/c.637G>C/p.E213Q +YDR410C STE14 3282 ste14-E214D E214D amino_acid_mutation PMID:11451995 E214D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1292450T>G/c.642A>C/p.E214D +YDR410C STE14 3283 ste14-G132R G132R amino_acid_mutation PMID:11451995 G132R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1292698C>T/c.394G>A/p.G132R +YDR410C STE14 3284 ste14-G31E G31E amino_acid_mutation PMID:11451995 G31E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1293000C>T/c.92G>A/p.G31E +YDR410C STE14 3285 ste14-L217S L217S amino_acid_mutation PMID:11451995 L217S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1292442A>G/c.650T>C/p.L217S +YDR410C STE14 3286 ste14-L81F L81F amino_acid_mutation PMID:11451995 L81F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1292921G>A/c.241C>T/p.L81F +YDR410C STE14 3287 ste14-P173L P173L amino_acid_mutation PMID:11451995 P173L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1292574G>A/c.518C>T/p.P173L +YDR410C STE14 3288 ste14-S148F S148F amino_acid_mutation PMID:11451995 S148F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1292649G>A/c.443C>T/p.S148F +YDR411C DFM1 3289 dfm1-F107S F107S amino_acid_mutation PMID:34686332,PMID:36689475 F107S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1294075A>G/c.320T>C/p.F107S +YDR411C DFM1 3290 dfm1-F58S F58S amino_acid_mutation PMID:34686332,PMID:36689475 F58S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1294222A>G/c.173T>C/p.F58S +YDR411C DFM1 3291 dfm1-K67E K67E amino_acid_mutation PMID:34686332,PMID:36689475 K67E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1294196T>C/c.199A>G/p.K67E +YDR411C DFM1 3292 dfm1-L64V L64V amino_acid_mutation PMID:34686332,PMID:36689475 L64V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1294205A>C/c.190T>G/p.L64V +YDR411C DFM1 3293 dfm1-Q101R Q101R amino_acid_mutation PMID:34686332,PMID:36689475 Q101R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1294093T>C/c.302A>G/p.Q101R +YDR411C DFM1 3294 dfm1-R98L R98L amino_acid_mutation PMID:34686332 R98L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1294102_1294103delAGinsCT/c.292_293delAGinsCT/p.R98L +YDR411C DFM1 3295 dfm1-R98L,S99V R98L,S99V amino_acid_mutation PMID:34686332 R98L|S99V False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1294102_1294103delAGinsCT/c.292_293delAGinsCT/p.R98L|chrIV:g.1294099_1294100delTCinsGT/c.295_296delTCinsGT/p.S99V +YDR411C DFM1 3296 dfm1-R98L,S99V,S100V R98L,S99V,S100V amino_acid_mutation PMID:34686332 R98L|S99V|S100V False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1294102_1294103delAGinsCT/c.292_293delAGinsCT/p.R98L|chrIV:g.1294099_1294100delTCinsGT/c.295_296delTCinsGT/p.S99V|chrIV:g.1294096_1294097delTCinsGT/c.298_299delTCinsGT/p.S100V +YDR411C DFM1 3297 dfm1-R98L,S99V,S100V,Q101L R98L,S99V,S100V,Q101L amino_acid_mutation PMID:34686332 R98L|S99V|S100V|Q101L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1294102_1294103delAGinsCT/c.292_293delAGinsCT/p.R98L|chrIV:g.1294099_1294100delTCinsGT/c.295_296delTCinsGT/p.S99V|chrIV:g.1294096_1294097delTCinsGT/c.298_299delTCinsGT/p.S100V|chrIV:g.1294093T>A/c.302A>T/p.Q101L +YDR419W RAD30 3304 rad30-K17R,K546R,K603R K17R,K546R,K603R amino_acid_mutation PMID:33033113 K17R|K546R|K603R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1303223A>G/c.50A>G/p.K17R|chrIV:g.1304810A>G/c.1637A>G/p.K546R|chrIV:g.1304981A>G/c.1808A>G/p.K603R +YDR419W RAD30 3305 rad30-K17R,K546R,K615R K17R,K546R,K615R amino_acid_mutation PMID:33033113 K17R|K546R|K615R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1303223A>G/c.50A>G/p.K17R|chrIV:g.1304810A>G/c.1637A>G/p.K546R|chrIV:g.1305017A>G/c.1844A>G/p.K615R +YDR419W RAD30 3306 rad30-K589A,K596A,R597A K589A,K596A,R597A amino_acid_mutation PMID:32932109 K589A|K596A|R597A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1304938_1304939delAAinsGC/c.1765_1766delAAinsGC/p.K589A|chrIV:g.1304959_1304960delAAinsGC/c.1786_1787delAAinsGC/p.K596A|chrIV:g.1304962_1304963delAGinsGC/c.1789_1790delAGinsGC/p.R597A +YDR419W RAD30 3307 rad30-K622A,R630A,K631A,K632A K622A,R630A,K631A,K632A amino_acid_mutation PMID:32932109 K622A|R630A|K631A|K632A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1305037_1305038delAAinsGC/c.1864_1865delAAinsGC/p.K622A|chrIV:g.1305061_1305062delAGinsGC/c.1888_1889delAGinsGC/p.R630A|chrIV:g.1305064_1305065delAAinsGC/c.1891_1892delAAinsGC/p.K631A|chrIV:g.1305067_1305068delAAinsGC/c.1894_1895delAAinsGC/p.K632A +YDR419W RAD30 3308 rad30-L577Q L577Q amino_acid_mutation PMID:17874115 L577Q False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1304903T>A/c.1730T>A/p.L577Q +YDR419W RAD30 3310 rad30-Q55A Q55A amino_acid_mutation PMID:29985422 Q55A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1303336_1303337delCAinsGC/c.163_164delCAinsGC/p.Q55A +YDR419W RAD30 3311 rad30-R73A R73A amino_acid_mutation PMID:29985422 R73A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1303390_1303391delAGinsGC/c.217_218delAGinsGC/p.R73A +YDR419W RAD30 3312 rad30-S14A S14A amino_acid_mutation PMID:34499654 S14A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1303213T>G/c.40T>G/p.S14A +YDR419W RAD30 3313 rad30-S14A,T547A,T612A S14A,T547A,T612A amino_acid_mutation PMID:33033113 S14A|T547A|T612A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1303213T>G/c.40T>G/p.S14A|chrIV:g.1304812A>G/c.1639A>G/p.T547A|chrIV:g.1305007A>G/c.1834A>G/p.T612A +YDR419W RAD30 3314 rad30-S592A,L599A,F600A S592A,L599A,F600A amino_acid_mutation PMID:32932109 S592A|L599A|F600A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1304947T>G/c.1774T>G/p.S592A|chrIV:g.1304968_1304969delTTinsGC/c.1795_1796delTTinsGC/p.L599A|chrIV:g.1304971_1304972delTTinsGC/c.1798_1799delTTinsGC/p.F600A +YDR419W RAD30 3315 rad30-S621A,F627A,F628A S621A,F627A,F628A amino_acid_mutation PMID:32932109 S621A|F627A|F628A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1305034T>G/c.1861T>G/p.S621A|chrIV:g.1305052_1305053delTTinsGC/c.1879_1880delTTinsGC/p.F627A|chrIV:g.1305055_1305056delTTinsGC/c.1882_1883delTTinsGC/p.F628A +YDR419W RAD30 3316 rad30-T547A T547A amino_acid_mutation PMID:33033113 T547A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1304812A>G/c.1639A>G/p.T547A +YDR419W RAD30 3317 rad30-T612A T612A amino_acid_mutation PMID:33033113 T612A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1305007A>G/c.1834A>G/p.T612A +YDR421W ARO80 3320 aro80-E910D E910D amino_acid_mutation PMID:33106428 E910D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1314769G>C/c.2730G>C/p.E910D +YDR421W ARO80 3321 aro80-H309Q H309Q amino_acid_mutation PMID:34788829 H309Q False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1312966C>A/c.927C>A/p.H309Q +YDR421W ARO80 3322 aro80-S706T S706T amino_acid_mutation PMID:33106428 S706T False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1314091G>C/c.2117G>C/p.S706T +YDR422C SIP1 3323 SIP1-S541R S541R amino_acid_mutation PMID:34555030 S541R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1316152_1316153delTCinsAG/c.1621_1622delTCinsAG/p.S541R +YDR430C CYM1 3325 cym1-S882M S882M amino_acid_mutation PMID:29764912 S882M False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1325825_1325826delGTinsTG/c.2645_2646delGTinsTG/p.S882M +YDR430C CYM1 3326 cym1-S882T S882T amino_acid_mutation PMID:29764912 S882T False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1325826C>G/c.2645G>C/p.S882T +YDR439W LRS4 3340 lrs4-Q325stop Q325stop partial_amino_acid_deletion PMID:34389719 Q325stop False Q325* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrIV:g.1340648C>T/c.973C>T/p.Q325* +YDR440W DOT1 3341 dot1-G401A G401A amino_acid_mutation PMID:23979574 G401A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1343694G>C/c.1202G>C/p.G401A +YDR446W ECM11 3343 ecm11-K5N K5N amino_acid_mutation PMID:17888002 K5N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1353739G>C/c.15G>C/p.K5N +YDR452W PPN1 3350 ppn1-P76H P76H amino_acid_mutation PMID:35311587 P76H False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1363104C>A/c.227C>A/p.P76H +YDR456W NHX1 3358 nhx1-A351S A351S amino_acid_mutation PMID:16671892 A351S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1368535G>T/c.1051G>T/p.A351S +YDR456W NHX1 3359 nhx1-A438P A438P amino_acid_mutation PMID:24065030 A438P False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1368796G>C/c.1312G>C/p.A438P +YDR456W NHX1 3360 nhx1-E355A E355A amino_acid_mutation PMID:16671892 E355A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1368548A>C/c.1064A>C/p.E355A +YDR456W NHX1 3361 nhx1-E355Q E355Q amino_acid_mutation PMID:16671892 E355Q False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1368547G>C/c.1063G>C/p.E355Q +YDR456W NHX1 3362 nhx1-E365A E365A amino_acid_mutation PMID:16671892 E365A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1368578A>C/c.1094A>C/p.E365A +YDR456W NHX1 3363 nhx1-E369A E369A amino_acid_mutation PMID:16671892 E369A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1368590A>C/c.1106A>C/p.E369A +YDR456W NHX1 3364 nhx1-E371A E371A amino_acid_mutation PMID:16671892 E371A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1368596A>C/c.1112A>C/p.E371A +YDR456W NHX1 3365 nhx1-F357A F357A amino_acid_mutation PMID:16671892 F357A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1368553_1368554delTTinsGC/c.1069_1070delTTinsGC/p.F357A +YDR456W NHX1 3366 nhx1-F357C F357C amino_acid_mutation PMID:16671892 F357C False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1368554T>G/c.1070T>G/p.F357C +YDR456W NHX1 3367 nhx1-F357I F357I amino_acid_mutation PMID:16671892 F357I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1368553T>A/c.1069T>A/p.F357I +YDR456W NHX1 3368 nhx1-F357L F357L amino_acid_mutation PMID:16671892 F357L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1368553T>C/c.1069T>C/p.F357L +YDR456W NHX1 3369 nhx1-F357V F357V amino_acid_mutation PMID:16671892 F357V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1368553T>G/c.1069T>G/p.F357V +YDR456W NHX1 3370 nhx1-F357Y F357Y amino_acid_mutation PMID:16671892 F357Y False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1368554T>A/c.1070T>A/p.F357Y +YDR456W NHX1 3371 nhx1-N356A N356A amino_acid_mutation PMID:16671892 N356A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1368550_1368551delAAinsGC/c.1066_1067delAAinsGC/p.N356A +YDR456W NHX1 3372 nhx1-P376N P376N amino_acid_mutation PMID:16671892 P376N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1368525_1368527delCCAinsAAC/c.1126_1128delCCAinsAAC/p.P376N +YDR456W NHX1 3373 nhx1-R352A R352A amino_acid_mutation PMID:16671892 R352A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1368453_1368454delCGinsGC/c.1054_1055delCGinsGC/p.R352A +YDR456W NHX1 3374 nhx1-Y361A Y361A amino_acid_mutation PMID:16671892 Y361A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1368565_1368566delTAinsGC/c.1081_1082delTAinsGC/p.Y361A +YDR456W NHX1 3375 nhx1-Y361F Y361F amino_acid_mutation PMID:16671892 Y361F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1368566A>T/c.1082A>T/p.Y361F +YDR456W NHX1 3376 nhx1-Y361L Y361L amino_acid_mutation PMID:16671892 Y361L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1368565_1368566delTAinsCT/c.1081_1082delTAinsCT/p.Y361L +YDR456W NHX1 3377 nhx1-Y361S Y361S amino_acid_mutation PMID:16671892 Y361S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1368566A>C/c.1082A>C/p.Y361S +YDR456W NHX1 3378 nhx1-Y361T Y361T amino_acid_mutation PMID:16671892 Y361T False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1368565_1368566delTAinsAC/c.1081_1082delTAinsAC/p.Y361T +YDR457W TOM1 3382 tom1-C3235A C3235A amino_acid_mutation PMID:23129771 C3235A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1379492_1379493delTGinsGC/c.9703_9704delTGinsGC/p.C3235A +YDR461W MFA1 3385 mfa1-A32K A32K amino_acid_mutation PMID:16963638 A32K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1385269_1385270delGCinsAA/c.94_95delGCinsAA/p.A32K +YDR461W MFA1 3386 mfa1-A8G A8G amino_acid_mutation PMID:16963638 A8G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1385198C>G/c.23C>G/p.A8G +YDR461W MFA1 3387 mfa1-A8T A8T amino_acid_mutation PMID:16963638 A8T False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1385197G>A/c.22G>A/p.A8T +YDR461W MFA1 3388 mfa1-A9P A9P amino_acid_mutation PMID:16963638 A9P False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1385200G>C/c.25G>C/p.A9P +YDR461W MFA1 3389 mfa1-D30E D30E amino_acid_mutation PMID:16963638 D30E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1385265C>G/c.90C>G/p.D30E +YDR461W MFA1 3390 mfa1-E17K E17K amino_acid_mutation PMID:16963638 E17K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1385224G>A/c.49G>A/p.E17K +YDR461W MFA1 3391 mfa1-F28A F28A amino_acid_mutation PMID:16963638 F28A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1385257_1385258delTTinsGC/c.82_83delTTinsGC/p.F28A +YDR461W MFA1 3392 mfa1-G26C G26C amino_acid_mutation PMID:16963638 G26C False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1385251G>T/c.76G>T/p.G26C +YDR461W MFA1 3393 mfa1-G26V G26V amino_acid_mutation PMID:16963638 G26V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1385252G>T/c.77G>T/p.G26V +YDR461W MFA1 3395 mfa1-K18A K18A amino_acid_mutation PMID:16963638 K18A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1385227_1385228delAAinsGC/c.52_53delAAinsGC/p.K18A +YDR461W MFA1 3396 mfa1-K19A K19A amino_acid_mutation PMID:16963638 K19A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1385230_1385231delAAinsGC/c.55_56delAAinsGC/p.K19A +YDR461W MFA1 3397 mfa1-P31A P31A amino_acid_mutation PMID:16963638 P31A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1385266C>G/c.91C>G/p.P31A +YDR461W MFA1 3398 mfa1-P31Q P31Q amino_acid_mutation PMID:16963638 P31Q False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1385267C>A/c.92C>A/p.P31Q +YDR461W MFA1 3399 mfa1-W29C W29C amino_acid_mutation PMID:16963638 W29C False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1385262G>T/c.87G>T/p.W29C +YDR464W SPP41 3405 spp41-M923I M923I amino_acid_mutation PMID:35283819 M923I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1391640G>C/c.2769G>C/p.M923I +YDR470C UGO1 3410 ugo1-P189L P189L amino_acid_mutation PMID:34713605 P189L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1400649G>A/c.566C>T/p.P189L +YDR477W SNF1 3425 snf1-G53R G53R amino_acid_mutation PMID:16980405,PMID:17586499,PMID:2557546,PMID:29643469,PMID:32673313 G53R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1412529G>A/c.157G>A/p.G53R +YDR477W SNF1 3426 snf1-I132G I132G amino_acid_mutation PMID:17991748,PMID:18955495,PMID:19225458 I132G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1412766_1412767delATinsGG/c.394_395delATinsGG/p.I132G +YDR477W SNF1 3427 snf1-I241N I241N amino_acid_mutation PMID:12684376 I241N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1412800T>A/c.722T>A/p.I241N +YDR477W SNF1 3428 snf1-K192R K192R amino_acid_mutation PMID:12684376 K192R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1412947A>G/c.575A>G/p.K192R +YDR477W SNF1 3430 snf1-K84R K84R amino_acid_mutation PMID:11486005,PMID:16980405,PMID:23472170,PMID:2557546 K84R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1412623A>G/c.251A>G/p.K84R +YDR477W SNF1 3431 snf1-L183I L183I amino_acid_mutation PMID:12684376,PMID:25116136 L183I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1412919T>A/c.547T>A/p.L183I +YDR477W SNF1 3432 snf1-L470S L470S amino_acid_mutation PMID:8985180 L470S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1413781T>C/c.1409T>C/p.L470S +YDR477W SNF1 3433 snf1-S214A S214A amino_acid_mutation PMID:27524664 S214A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1413012T>G/c.640T>G/p.S214A +YDR477W SNF1 3434 snf1-S214E S214E amino_acid_mutation PMID:27524664 S214E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1413012_1413014delTCTinsGAG/c.640_642delTCTinsGAG/p.S214E +YDR477W SNF1 3438 snf1-T210A T210A amino_acid_mutation PMID:16980405,PMID:23472170,PMID:25116136,PMID:27524664 T210A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1413000A>G/c.628A>G/p.T210A +YDR477W SNF1 3439 snf1-T210A,K84R T210A,K84R amino_acid_mutation PMID:35028974 T210A|K84R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1413000A>G/c.628A>G/p.T210A|chrIV:g.1412623A>G/c.251A>G/p.K84R +YDR477W SNF1 3441 snf1-T210D T210D amino_acid_mutation PMID:1468623 T210D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1413000_1413001delACinsGA/c.628_629delACinsGA/p.T210D +YDR477W SNF1 3442 snf1-T210E T210E amino_acid_mutation PMID:27524664 T210E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1413000_1413002delACTinsGAG/c.628_630delACTinsGAG/p.T210E +YDR477W SNF1 3443 snf1-Y167H Y167H amino_acid_mutation PMID:12684376 Y167H False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1412871T>C/c.499T>C/p.Y167H +YDR489W SLD5 3461 sld5-E130K E130K amino_acid_mutation PMID:32043971,PMID:34752451 E130K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1431399G>A/c.388G>A/p.E130K +YDR493W MZM1 3463 mzm1-D25N D25N amino_acid_mutation PMID:24014394 D25N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1436289G>A/c.73G>A/p.D25N +YDR493W MZM1 3465 mzm1-Q70* Q70* partial_amino_acid_deletion PMID:26912632 Q70* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1436424C>T/c.208C>T/p.Q70* +YDR493W MZM1 3466 mzm1-Y11A Y11A amino_acid_mutation PMID:21807901 Y11A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1436247_1436248delTAinsGC/c.31_32delTAinsGC/p.Y11A +YDR496C PUF6 3468 puf6-R172E,R431E R172E,R431E amino_acid_mutation PMID:34349113 R172E|R431E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1442888_1442890delCGTinsGAG/c.514_516delCGTinsGAG/p.R172E|chrIV:g.1442112_1442113delAGinsGA/c.1291_1292delAGinsGA/p.R431E +YDR496C PUF6 3469 puf6-Y208E,R431E Y208E,R431E amino_acid_mutation PMID:34349113 Y208E|R431E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1442780_1442782delTATinsGAG/c.622_624delTATinsGAG/p.Y208E|chrIV:g.1442112_1442113delAGinsGA/c.1291_1292delAGinsGA/p.R431E +YDR499W LCD1 3473 lcd1-R179H R179H amino_acid_mutation PMID:32043971 R179H False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1448365G>A/c.536G>A/p.R179H +YDR507C GIN4 3476 gin4-K48A K48A amino_acid_mutation PMID:16861226,PMID:28148650 K48A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1465644_1465645delAAinsGC/c.142_143delAAinsGC/p.K48A +YDR508C GNP1 3479 GNP1-W239L W239L amino_acid_mutation PMID:12709439 W239L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1467729C>A/c.716G>T/p.W239L +YDR510W SMT3 3480 SMT3-Q56K Q56K amino_acid_mutation PMID:30192228 Q56K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1469565C>A/c.166C>A/p.Q56K +YDR510W SMT3 3486 smt3-D68R D68R amino_acid_mutation PMID:34853311 D68R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1469601_1469602delGAinsCG/c.202_203delGAinsCG/p.D68R +YDR513W GRX2 3490 grx2-C64S C64S amino_acid_mutation PMID:32521506 C64S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1471206T>A/c.190T>A/p.C64S +YDR523C SPS1 3492 sps1-K47R K47R amino_acid_mutation PMID:32788308 K47R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1486899T>C/c.140A>G/p.K47R +YDR523C SPS1 3493 sps1-T12A T12A amino_acid_mutation PMID:25409301 T12A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1487005T>C/c.34A>G/p.T12A +YDR531W CAB1 3501 cab1-A22G A22G amino_acid_mutation PMID:34491400 A22G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498296C>G/c.65C>G/p.A22G +YDR531W CAB1 3502 cab1-A299V A299V amino_acid_mutation PMID:33396642 A299V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499127C>T/c.896C>T/p.A299V +YDR531W CAB1 3503 cab1-A352T A352T amino_acid_mutation PMID:33396642 A352T False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499285G>A/c.1054G>A/p.A352T +YDR531W CAB1 3504 cab1-D114E D114E amino_acid_mutation PMID:34491400 D114E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498573C>G/c.342C>G/p.D114E +YDR531W CAB1 3505 cab1-D213N D213N amino_acid_mutation PMID:33396642 D213N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498868G>A/c.637G>A/p.D213N +YDR531W CAB1 3506 cab1-D24A D24A amino_acid_mutation PMID:36167065 D24A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498302A>C/c.71A>C/p.D24A +YDR531W CAB1 3507 cab1-D24G D24G amino_acid_mutation PMID:33396642 D24G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498302A>G/c.71A>G/p.D24G +YDR531W CAB1 3508 cab1-E105A E105A amino_acid_mutation PMID:36167065 E105A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498545A>C/c.314A>C/p.E105A +YDR531W CAB1 3509 cab1-F103V F103V amino_acid_mutation PMID:34491400 F103V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498538T>G/c.307T>G/p.F103V +YDR531W CAB1 3510 cab1-F330A F330A amino_acid_mutation PMID:36167065 F330A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499219_1499220delTTinsGC/c.988_989delTTinsGC/p.F330A +YDR531W CAB1 3511 cab1-G26V G26V amino_acid_mutation PMID:33396642 G26V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498308G>T/c.77G>T/p.G26V +YDR531W CAB1 3512 cab1-G311R G311R amino_acid_mutation PMID:33396642 G311R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499162G>A/c.931G>A/p.G311R +YDR531W CAB1 3513 cab1-G351A G351A amino_acid_mutation PMID:36167065 G351A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499283G>C/c.1052G>C/p.G351A +YDR531W CAB1 3514 cab1-G351S G351S amino_acid_mutation PMID:19266201,PMID:31409644,PMID:34491400,PMID:36613877 G351S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499282G>A/c.1051G>A/p.G351S +YDR531W CAB1 3515 cab1-I287T I287T amino_acid_mutation PMID:33396642 I287T False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498982T>C/c.860T>C/p.I287T +YDR531W CAB1 3516 cab1-I291T I291T amino_acid_mutation PMID:33396642,PMID:36613877 I291T False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499103T>C/c.872T>C/p.I291T +YDR531W CAB1 3517 cab1-I294V I294V amino_acid_mutation PMID:33396642 I294V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499111A>G/c.880A>G/p.I294V +YDR531W CAB1 3518 cab1-L179P L179P amino_acid_mutation PMID:33396642 L179P False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498767T>C/c.536T>C/p.L179P +YDR531W CAB1 3519 cab1-N290A N290A amino_acid_mutation PMID:36167065 N290A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499099_1499100delAAinsGC/c.868_869delAAinsGC/p.N290A +YDR531W CAB1 3520 cab1-N290I N290I amino_acid_mutation PMID:33396642,PMID:36613877 N290I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499100A>T/c.869A>T/p.N290I +YDR531W CAB1 3521 cab1-Q195A Q195A amino_acid_mutation PMID:36167065 Q195A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498814_1498815delCAinsGC/c.583_584delCAinsGC/p.Q195A +YDR531W CAB1 3522 cab1-Q293A Q293A amino_acid_mutation PMID:36167065 Q293A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499108_1499109delCAinsGC/c.877_878delCAinsGC/p.Q293A +YDR531W CAB1 3523 cab1-R173A R173A amino_acid_mutation PMID:36167065 R173A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498748_1498749delAGinsGC/c.517_518delAGinsGC/p.R173A +YDR531W CAB1 3524 cab1-S158A S158A amino_acid_mutation PMID:36167065 S158A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498703T>G/c.472T>G/p.S158A +YDR531W CAB1 3525 cab1-S237N S237N amino_acid_mutation PMID:33396642 S237N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498940_1498942delTCAinsAAC/c.709_711delTCAinsAAC/p.S237N +YDR531W CAB1 3526 cab1-T46A T46A amino_acid_mutation PMID:36167065 T46A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498367A>G/c.136A>G/p.T46A +YDR531W CAB1 3527 cab1-W185A W185A amino_acid_mutation PMID:36167065 W185A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498784_1498785delTGinsGC/c.553_554delTGinsGC/p.W185A +YDR531W CAB1 3528 cab1-W331A W331A amino_acid_mutation PMID:36167065 W331A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499222_1499223delTGinsGC/c.991_992delTGinsGC/p.W331A +YDR531W CAB1 3529 cab1-W331L W331L amino_acid_mutation PMID:34491400 W331L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499223G>T/c.992G>T/p.W331L +YDR531W CAB1 3530 cab1-Y197A Y197A amino_acid_mutation PMID:36167065 Y197A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498820_1498821delTAinsGC/c.589_590delTAinsGC/p.Y197A +YDR531W CAB1 3531 cab1-Y220A Y220A amino_acid_mutation PMID:36167065 Y220A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498889_1498890delTAinsGC/c.658_659delTAinsGC/p.Y220A +YDR531W CAB1 3532 cab1-Y313A Y313A amino_acid_mutation PMID:36167065 Y313A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499168_1499169delTAinsGC/c.937_938delTAinsGC/p.Y313A +YDR531W CAB1 3533 cab1-Y326A Y326A amino_acid_mutation PMID:36167065 Y326A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499207_1499208delTAinsGC/c.976_977delTAinsGC/p.Y326A +YDR533C HSP31 3540 hsp31-C138A C138A amino_acid_mutation PMID:26370081 C138A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1501748_1501749delTGinsGC/c.412_413delTGinsGC/p.C138A +YDR533C HSP31 3541 hsp31-E170A E170A amino_acid_mutation PMID:26370081 E170A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1501652T>G/c.509A>C/p.E170A +YDR533C HSP31 3542 hsp31-H139A H139A amino_acid_mutation PMID:26370081 H139A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1501745_1501746delCAinsGC/c.415_416delCAinsGC/p.H139A +YDR539W FDC1 3545 fdc1-E285A E285A amino_acid_mutation PMID:25862228 E285A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1512947A>C/c.854A>C/p.E285A +YDR539W FDC1 3546 fdc1-F397A F397A amino_acid_mutation PMID:35232989 F397A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1513282_1513283delTTinsGC/c.1189_1190delTTinsGC/p.F397A +YDR539W FDC1 3547 fdc1-F397V F397V amino_acid_mutation PMID:35232989 F397V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1513282T>G/c.1189T>G/p.F397V +YDR539W FDC1 3548 fdc1-F397V,I398A F397V,I398A amino_acid_mutation PMID:35232989 F397V|I398A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1513282T>G/c.1189T>G/p.F397V|chrIV:g.1513285_1513286delATinsGC/c.1192_1193delATinsGC/p.I398A +YDR539W FDC1 3549 fdc1-F397V,I398V F397V,I398V amino_acid_mutation PMID:35232989 F397V|I398V False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1513282T>G/c.1189T>G/p.F397V|chrIV:g.1513285A>G/c.1192A>G/p.I398V +YDR539W FDC1 3550 fdc1-F397Y F397Y amino_acid_mutation PMID:35232989 F397Y False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1513283T>A/c.1190T>A/p.F397Y +YDR539W FDC1 3551 fdc1-I189A I189A amino_acid_mutation PMID:35232989 I189A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1512658_1512659delATinsGC/c.565_566delATinsGC/p.I189A +YDR539W FDC1 3552 fdc1-I189V I189V amino_acid_mutation PMID:35232989 I189V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1512658A>G/c.565A>G/p.I189V +YDR539W FDC1 3553 fdc1-I330A I330A amino_acid_mutation PMID:35232989 I330A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1513081_1513082delATinsGC/c.988_989delATinsGC/p.I330A +YDR539W FDC1 3554 fdc1-I330V I330V amino_acid_mutation PMID:35232989 I330V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1513081A>G/c.988A>G/p.I330V +YDR539W FDC1 3555 fdc1-I398A I398A amino_acid_mutation PMID:35232989 I398A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1513285_1513286delATinsGC/c.1192_1193delATinsGC/p.I398A +YDR539W FDC1 3556 fdc1-I398V I398V amino_acid_mutation PMID:35232989 I398V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1513285A>G/c.1192A>G/p.I398V +YDR539W FDC1 3557 fdc1-L442V,F440A L442V,F440A amino_acid_mutation PMID:35232989 L442V|F440A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1513417T>G/c.1324T>G/p.L442V|chrIV:g.1513411_1513412delTTinsGC/c.1318_1319delTTinsGC/p.F440A +YDR539W FDC1 3558 fdc1-M286A M286A amino_acid_mutation PMID:35232989 M286A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1512949_1512950delATinsGC/c.856_857delATinsGC/p.M286A +YDR539W FDC1 3559 fdc1-M286V M286V amino_acid_mutation PMID:35232989 M286V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1512949A>G/c.856A>G/p.M286V +YDR539W FDC1 3560 fdc1-Q192A Q192A amino_acid_mutation PMID:35232989 Q192A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1512667_1512668delCAinsGC/c.574_575delCAinsGC/p.Q192A +YDR539W FDC1 3561 fdc1-Q192N Q192N amino_acid_mutation PMID:35232989 Q192N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1512667_1512669delCAAinsAAC/c.574_576delCAAinsAAC/p.Q192N +YDR539W FDC1 3562 fdc1-Q192S Q192S amino_acid_mutation PMID:35232989 Q192S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1512667_1512668delCAinsTC/c.574_575delCAinsTC/p.Q192S +YEL009C GCN4 3569 gcn4-L267S L267S amino_acid_mutation PMID:21111745,PMID:21129149 L267S False amino_acid_mutation:single_aa amino_acid_mutation +YEL013W VAC8 3570 vac8-C4A,C5A,C7A C4A,C5A,C7A amino_acid_mutation PMID:34977681 C4A|C5A|C7A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.128834_128835delTGinsGC/c.10_11delTGinsGC/p.C4A|chrV:g.128837_128838delTGinsGC/c.13_14delTGinsGC/p.C5A|chrV:g.128843_128844delTGinsGC/c.19_20delTGinsGC/p.C7A +YEL019C MMS21 3575 mms21-1-184 1-184 partial_amino_acid_deletion PMID:34787675 1-184 False partial_amino_acid_deletion:multiple_aa partial_amino_acid_deletion chrV:g.120750_121301del552/c.1_552del552/p.M1_C184del184 +YEL019C MMS21 3577 mms21-C200A,H202A C200A,H202A amino_acid_mutation PMID:31765407 C200A|H202A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.120703_120704delTGinsGC/c.598_599delTGinsGC/p.C200A|chrV:g.120697_120698delCAinsGC/c.604_605delCAinsGC/p.H202A +YEL019C MMS21 3578 mms21-E170R,D171R,D172R E170R,D171R,D172R amino_acid_mutation PMID:34853311 E170R|D171R|D172R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.120793_120794delGAinsAG/c.508_509delGAinsAG/p.E170R|chrV:g.120790_120791delGAinsCG/c.511_512delGAinsCG/p.D171R|chrV:g.120787_120788delGAinsCG/c.514_515delGAinsCG/p.D172R +YEL019C MMS21 3580 mms21-G177P G177P amino_acid_mutation PMID:34853311 G177P False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.120772_120773delGGinsCC/c.529_530delGGinsCC/p.G177P +YEL019C MMS21 3581 mms21-I264A,V266A I264A,V266A amino_acid_mutation PMID:34853311 I264A|V266A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.120511_120512delATinsGC/c.790_791delATinsGC/p.I264A|chrV:g.120505A>G/c.797T>C/p.V266A +YEL019C MMS21 3582 mms21-I264P I264P amino_acid_mutation PMID:34853311 I264P False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.120511_120512delATinsCC/c.790_791delATinsCC/p.I264P +YEL019C MMS21 3585 mms21-S260A,S261A S260A,S261A amino_acid_mutation PMID:25659338 S260A|S261A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.120523_120524delAGinsGC/c.778_779delAGinsGC/p.S260A|chrV:g.120520_120521delAGinsGC/c.781_782delAGinsGC/p.S261A +YEL019C MMS21 3586 mms21-S260I,S261I S260I,S261I amino_acid_mutation PMID:25659338 S260I|S261I False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.120523C>A/c.779G>T/p.S260I|chrV:g.120520C>A/c.782G>T/p.S261I +YEL019C MMS21 3588 mms21-V266R V266R amino_acid_mutation PMID:34853311 V266R False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.120505_120506delGTinsCG/c.796_797delGTinsCG/p.V266R +YEL020W-A TIM9 3601 tim9-E52K E52K amino_acid_mutation PMID:19037098 E52K False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.117364G>A/c.154G>A/p.E52K +YEL021W URA3 3612 ura3-L150I L150I amino_acid_mutation PMID:31058959 L150I False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.116614T>A/c.448T>A/p.L150I +YEL021W URA3 3613 ura3-L32S L32S amino_acid_mutation PMID:31058959 L32S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.116261T>C/c.95T>C/p.L32S +YEL021W URA3 3614 ura3-M25K M25K amino_acid_mutation PMID:31058959 M25K False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.116240T>A/c.74T>A/p.M25K +YEL021W URA3 3615 ura3-N120S N120S amino_acid_mutation PMID:31058959 N120S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.116525A>G/c.359A>G/p.N120S +YEL021W URA3 3616 ura3-N120T N120T amino_acid_mutation PMID:31058959 N120T False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.116525A>C/c.359A>C/p.N120T +YEL021W URA3 3617 ura3-R235A R235A amino_acid_mutation PMID:34544143 R235A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.116869_116870delAGinsGC/c.703_704delAGinsGC/p.R235A +YEL021W URA3 3619 ura3-V48A V48A amino_acid_mutation PMID:31058959 V48A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.116309T>C/c.143T>C/p.V48A +YEL021W URA3 3620 ura3-Y251S Y251S amino_acid_mutation PMID:31058959 Y251S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.116918A>C/c.752A>C/p.Y251S +YEL022W GEA2 3625 gea2-V698G V698G amino_acid_mutation PMID:14734650 V698G False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.113513T>G/c.2093T>G/p.V698G +YEL022W GEA2 3626 gea2-Y1001D Y1001D amino_acid_mutation PMID:36044848 Y1001D False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.114421T>G/c.3001T>G/p.Y1001D +YEL024W RIP1 3635 rip1-P166S P166S amino_acid_mutation PMID:26504246 P166S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.107755C>T/c.496C>T/p.P166S +YEL026W SNU13 3639 snu13-E72A E72A amino_acid_mutation PMID:24234454 E72A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.101119A>C/c.215A>C/p.E72A +YEL026W SNU13 3640 snu13-L67W L67W amino_acid_mutation PMID:21552543 L67W False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.102142_102143delTAinsGG/c.200_201delTAinsGG/p.L67W +YEL026W SNU13 3641 snu13-l67w l67w amino_acid_mutation PMID:21552543,PMID:25721128 l67w False L67W amino_acid_mutation:single_aa amino_acid_mutation chrV:g.102142_102143delTAinsGG/c.200_201delTAinsGG/p.L67W +YEL027W VMA3 3643 vma3-T32I T32I amino_acid_mutation PMID:16794315 T32I False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.100863C>T/c.95C>T/p.T32I +YEL031W SPF1 3645 spf1-D487N D487N amino_acid_mutation PMID:32353073 D487N False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.91716G>A/c.1459G>A/p.D487N +YEL032W MCM3 3648 mcm3-K499A K499A amino_acid_mutation PMID:24349215 K499A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.88431_88432delAAinsGC/c.1495_1496delAAinsGC/p.K499A +YEL048C TCA17 3663 tca17-D45Y D45Y amino_acid_mutation PMID:30120216 D45Y False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.65035C>A/c.133G>T/p.D45Y +YEL050C RML2 3666 rml2-G292D G292D amino_acid_mutation PMID:34362905 G292D False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.59977C>T/c.875G>A/p.G292D +YEL050C RML2 3667 rml2-H343Q H343Q amino_acid_mutation PMID:9079633 H343Q False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.59823A>T/c.1029T>A/p.H343Q +YEL053C MAK10 3672 mak10-F47A F47A amino_acid_mutation PMID:33139728 F47A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.55963_55964delTTinsGC/c.139_140delTTinsGC/p.F47A +YEL053C MAK10 3674 mak10-K500A,K501A,K503A,K504A K500A,K501A,K503A,K504A amino_acid_mutation PMID:33139728 K500A|K501A|K503A|K504A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.54604_54605delAAinsGC/c.1498_1499delAAinsGC/p.K500A|chrV:g.54601_54602delAAinsGC/c.1501_1502delAAinsGC/p.K501A|chrV:g.54595_54596delAAinsGC/c.1507_1508delAAinsGC/p.K503A|chrV:g.54592_54593delAAinsGC/c.1510_1511delAAinsGC/p.K504A +YEL053C MAK10 3675 mak10-K59A K59A amino_acid_mutation PMID:33139728 K59A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.55927_55928delAAinsGC/c.175_176delAAinsGC/p.K59A +YEL053C MAK10 3677 mak10-R636K R636K amino_acid_mutation PMID:35283819 R636K False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.54195_54197delCGCinsAAG/c.1906_1908delCGCinsAAG/p.R636K +YEL053C MAK10 3683 mak10-Y80A Y80A amino_acid_mutation PMID:33139728 Y80A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.55864_55865delTAinsGC/c.238_239delTAinsGC/p.Y80A +YEL053C MAK10 3684 mak10-Y80F Y80F amino_acid_mutation PMID:33139728 Y80F False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.55864T>A/c.239A>T/p.Y80F +YEL056W HAT2 3690 hat2-V298M V298M amino_acid_mutation PMID:35283819 V298M False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.48059G>A/c.892G>A/p.V298M +YEL061C CIN8 3698 cin8-Q520E Q520E amino_acid_mutation PMID:34387192 Q520E False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.37980G>C/c.1558C>G/p.Q520E +YEL063C CAN1 3703 can1-D73A,E74A,D75A,E76A,E78A D73A,E74A,D75A,E76A,E78A amino_acid_mutation PMID:27798240 D73A|E74A|D75A|E76A|E78A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.33249T>G/c.218A>C/p.D73A|chrV:g.33246T>G/c.221A>C/p.E74A|chrV:g.33243T>G/c.224A>C/p.D75A|chrV:g.33240T>G/c.227A>C/p.E76A|chrV:g.33234T>G/c.233A>C/p.E78A +YEL063C CAN1 3704 can1-D73A,E74R,D75R,E76A D73A,E74R,D75R,E76A amino_acid_mutation PMID:27798240 D73A|E74R|D75R|E76A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.33249T>G/c.218A>C/p.D73A|chrV:g.33246_33247delGAinsAG/c.220_221delGAinsAG/p.E74R|chrV:g.33243_33244delGAinsCG/c.223_224delGAinsCG/p.D75R|chrV:g.33240T>G/c.227A>C/p.E76A +YEL063C CAN1 3705 can1-E184Q E184Q amino_acid_mutation PMID:34638549,PMID:34668730 E184Q False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.32917C>G/c.550G>C/p.E184Q +YEL063C CAN1 3706 can1-E184Q,66-69 E184Q,66-69 amino_acid_deletion_and_mutation PMID:34638549,PMID:34668730 E184Q|66-69 False amino_acid_mutation:single_aa|partial_amino_acid_deletion:multiple_aa amino_acid_deletion_and_mutation chrV:g.32917C>G/c.550G>C/p.E184Q|chrV:g.33507_33518del12/c.196_207del12/p.F66_L69delFFRL +YEL063C CAN1 3707 can1-E184Q,66-69,74-77 E184Q,66-69,74-77 amino_acid_deletion_and_mutation PMID:34638549,PMID:34668730 E184Q|66-69|74-77 False amino_acid_mutation:single_aa|partial_amino_acid_deletion:multiple_aa|partial_amino_acid_deletion:multiple_aa amino_acid_deletion_and_mutation chrV:g.32917C>G/c.550G>C/p.E184Q|chrV:g.33507_33518del12/c.196_207del12/p.F66_L69delFFRL|chrV:g.33483_33494del12/c.225_236del12/p.N75_K78delNKKK +YEL063C CAN1 3708 can1-E184Q,74-77 E184Q,74-77 amino_acid_deletion_and_mutation PMID:34638549,PMID:34668730 E184Q|74-77 False amino_acid_mutation:single_aa|partial_amino_acid_deletion:multiple_aa amino_acid_deletion_and_mutation chrV:g.32917C>G/c.550G>C/p.E184Q|chrV:g.33483_33494del12/c.225_236del12/p.N75_K78delNKKK +YEL063C CAN1 3709 can1-E78R E78R amino_acid_mutation PMID:27798240 E78R False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.33234_33235delGAinsAG/c.232_233delGAinsAG/p.E78R +YEL063C CAN1 3710 can1-K42R,K45R K42R,K45R amino_acid_mutation PMID:34638549,PMID:34668730 K42R|K45R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.33342T>C/c.125A>G/p.K42R|chrV:g.33333T>C/c.134A>G/p.K45R +YER008C SEC3 3726 sec3-E199A E199A amino_acid_mutation PMID:32800898 E199A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.171223T>G/c.596A>C/p.E199A +YER008C SEC3 3727 sec3-K136A K136A amino_acid_mutation PMID:32800898 K136A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.171412_171413delAAinsGC/c.406_407delAAinsGC/p.K136A +YER008C SEC3 3728 sec3-L131A L131A amino_acid_mutation PMID:32800898 L131A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.171427_171428delTTinsGC/c.391_392delTTinsGC/p.L131A +YER009W NTF2 3730 NTF2-N77Y N77Y amino_acid_mutation PMID:11489893 N77Y False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.172343A>T/c.229A>T/p.N77Y +YER009W NTF2 3734 ntf2-h104y h104y amino_acid_mutation PMID:27708008 h104y False H104Y amino_acid_mutation:single_aa amino_acid_mutation chrV:g.172424C>T/c.310C>T/p.H104Y +YER013W PRP22 3742 prp22-H606A H606A amino_acid_mutation PMID:33577981 H606A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.180656_180657delCAinsGC/c.1816_1817delCAinsGC/p.H606A +YER013W PRP22 3743 prp22-K512A K512A amino_acid_mutation PMID:33674615,PMID:33705709 K512A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.180374_180375delAAinsGC/c.1534_1535delAAinsGC/p.K512A +YER013W PRP22 3744 prp22-S635A S635A amino_acid_mutation PMID:22408182 S635A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.180743T>G/c.1903T>G/p.S635A +YER013W PRP22 3745 prp22-T637A T637A amino_acid_mutation PMID:22408182,PMID:33547186 T637A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.180749A>G/c.1909A>G/p.T637A +YER018C SPC25 3753 spc25-V159D V159D amino_acid_mutation PMID:23334295 V159D False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.192148_192149delTAinsAC/c.476_477delTAinsAC/p.V159D +YER019W ISC1 3755 isc1-K168A K168A amino_acid_mutation PMID:21550973 K168A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.193252_193253delAAinsGC/c.502_503delAAinsGC/p.K168A +YER020W GPA2 3759 GPA2-R273A R273A amino_acid_mutation PMID:9524122 R273A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.195984_195985delAGinsGC/c.817_818delAGinsGC/p.R273A +YER021W RPN3 3763 rpn3-L140P L140P amino_acid_mutation PMID:23934994 L140P False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.197366T>C/c.419T>C/p.L140P +YER025W GCD11 3780 gcd11-D403R D403R amino_acid_mutation PMID:35031321 D403R False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.206457_206458delGAinsCG/c.1207_1208delGAinsCG/p.D403R +YER025W GCD11 3781 gcd11-H108N H108N amino_acid_mutation PMID:7774582 H108N False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.205572C>A/c.322C>A/p.H108N +YER025W GCD11 3782 gcd11-I318M I318M amino_acid_mutation PMID:30517694 I318M False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.206204T>G/c.954T>G/p.I318M +YER025W GCD11 3783 gcd11-K250A K250A amino_acid_mutation PMID:8947054 K250A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.205998_205999delAAinsGC/c.748_749delAAinsGC/p.K250A +YER025W GCD11 3784 gcd11-K250R K250R amino_acid_mutation PMID:8947054 K250R False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.205999A>G/c.749A>G/p.K250R +YER025W GCD11 3785 gcd11-R127L R127L amino_acid_mutation PMID:7774582 R127L False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.205630G>T/c.380G>T/p.R127L +YER025W GCD11 3786 gcd11-V281K V281K amino_acid_mutation PMID:23063529,PMID:28055140 V281K False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.206091_206092delGTinsAA/c.841_842delGTinsAA/p.V281K +YER025W GCD11 3787 gcd11-V281R V281R amino_acid_mutation PMID:35031321 V281R False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.206091_206092delGTinsAG/c.841_842delGTinsAG/p.V281R +YER026C CHO1 3788 cho1-S46A,S47A S46A,S47A amino_acid_mutation PMID:20146400 S46A|S47A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.208339A>C/c.136T>G/p.S46A|chrV:g.208335_208336delAGinsGC/c.139_140delAGinsGC/p.S47A +YER027C GAL83 3789 GAL83-S224R S224R amino_acid_mutation PMID:34555030 S224R False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.209561A>C/c.672T>G/p.S224R +YER027C GAL83 3790 gal83-D225Y D225Y amino_acid_mutation PMID:29771304 D225Y False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.209560C>A/c.673G>T/p.D225Y +YER027C GAL83 3791 gal83-H384A H384A amino_acid_mutation PMID:23184934 H384A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.209082_209083delCAinsGC/c.1150_1151delCAinsGC/p.H384A +YER027C GAL83 3792 gal83-W184A,R214Q W184A,R214Q amino_acid_mutation PMID:18474591 W184A|R214Q False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.209682_209683delTGinsGC/c.550_551delTGinsGC/p.W184A|chrV:g.209668C>T/c.641G>A/p.R214Q +YER031C YPT31 3797 ypt31-K127N K127N amino_acid_mutation PMID:31754649 K127N False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.214367C>G/c.381G>C/p.K127N +YER031C YPT31 3798 ypt31-Q72L Q72L amino_acid_mutation PMID:26906739 Q72L False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.214533T>A/c.215A>T/p.Q72L +YER032W FIR1 3799 fir1-V759A V759A amino_acid_mutation PMID:35098049 V759A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.217338T>C/c.2276T>C/p.V759A +YER048C CAJ1 3820 caj1-H34Q H34Q amino_acid_mutation PMID:32777224 H34Q False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.248056A>T/c.102T>A/p.H34Q +YER049W TPA1 3823 tpa1-D161A D161A amino_acid_mutation PMID:24550462 D161A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.252209A>C/c.482A>C/p.D161A +YER051W JHD1 3826 jhd1-S44A S44A amino_acid_mutation PMID:35183557 S44A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.254785T>G/c.130T>G/p.S44A +YER051W JHD1 3827 jhd1-S44D S44D amino_acid_mutation PMID:35183557 S44D False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.254785_254787delTCAinsGAC/c.130_132delTCAinsGAC/p.S44D +YER052C HOM3 3830 hom3-D234A D234A amino_acid_mutation PMID:34849833 D234A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.257258T>G/c.701A>C/p.D234A +YER052C HOM3 3831 hom3-P267L P267L amino_acid_mutation PMID:35283819 P267L False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.257159G>A/c.800C>T/p.P267L +YER054C GIP2 3834 gip2-S155L S155L amino_acid_mutation PMID:32430798 S155L False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.263235G>A/c.464C>T/p.S155L +YER055C HIS1 3835 his1-N231I N231I amino_acid_mutation PMID:35085780 N231I False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.265094T>A/c.692A>T/p.N231I +YER055C HIS1 3836 his1-T48S T48S amino_acid_mutation PMID:35085780 T48S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.265644T>A/c.142A>T/p.T48S +YER069W ARG56 3841 arg56-C119Y C119Y amino_acid_mutation PMID:35543513 C119Y False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.295765G>A/c.356G>A/p.C119Y +YER069W ARG56 3842 arg56-T340A T340A amino_acid_mutation PMID:35543513 T340A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.296427A>G/c.1018A>G/p.T340A +YER069W ARG56 3843 arg56-T340E T340E amino_acid_mutation PMID:35543513 T340E False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.296427_296429delACTinsGAG/c.1018_1020delACTinsGAG/p.T340E +YER069W ARG56 3844 arg56-T340I T340I amino_acid_mutation PMID:32805427 T340I False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.296428C>T/c.1019C>T/p.T340I +YER069W ARG56 3845 arg56-T340L T340L amino_acid_mutation PMID:35543513 T340L False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.296427_296428delACinsCT/c.1018_1019delACinsCT/p.T340L +YER069W ARG56 3846 arg56-T340N T340N amino_acid_mutation PMID:35543513 T340N False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.296428C>A/c.1019C>A/p.T340N +YER069W ARG56 3847 arg56-T340R T340R amino_acid_mutation PMID:35543513 T340R False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.296428_296429delCTinsGG/c.1019_1020delCTinsGG/p.T340R +YER069W ARG56 3848 arg56-T340S T340S amino_acid_mutation PMID:35543513 T340S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.296428C>G/c.1019C>G/p.T340S +YER069W ARG56 3849 arg56-V267A V267A amino_acid_mutation PMID:35543513 V267A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.296209T>C/c.800T>C/p.V267A +YER070W RNR1 3850 rnr1- D226N,S117P D226N,S117P amino_acid_mutation PMID:30462295 D226N|S117P False D226N,S117P amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299625G>A/c.676G>A/p.D226N|chrV:g.299298T>C/c.349T>C/p.S117P +YER070W RNR1 3851 rnr1-A245V A245V amino_acid_mutation PMID:30462295 A245V False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299683C>T/c.734C>T/p.A245V +YER070W RNR1 3852 rnr1-A283V,S425L A283V,S425L amino_acid_mutation PMID:30462295 A283V|S425L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299797C>T/c.848C>T/p.A283V|chrV:g.300223C>T/c.1274C>T/p.S425L +YER070W RNR1 3853 rnr1-C428A C428A amino_acid_mutation PMID:11893751 C428A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.300231_300232delTGinsGC/c.1282_1283delTGinsGC/p.C428A +YER070W RNR1 3854 rnr1-D226G D226G amino_acid_mutation PMID:30462295 D226G False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299626A>G/c.677A>G/p.D226G +YER070W RNR1 3855 rnr1-D226V D226V amino_acid_mutation PMID:30462295 D226V False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299626A>T/c.677A>T/p.D226V +YER070W RNR1 3856 rnr1-D57N D57N amino_acid_mutation PMID:12581528,PMID:17721079,PMID:33784385,PMID:36400763 D57N False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299118G>A/c.169G>A/p.D57N +YER070W RNR1 3857 rnr1-F15S F15S amino_acid_mutation PMID:30462295 F15S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.298993T>C/c.44T>C/p.F15S +YER070W RNR1 3858 rnr1-G267C G267C amino_acid_mutation PMID:30462295 G267C False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299748G>T/c.799G>T/p.G267C +YER070W RNR1 3859 rnr1-G271S G271S amino_acid_mutation PMID:30462295 G271S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299760G>A/c.811G>A/p.G271S +YER070W RNR1 3860 rnr1-G8D,V278A G8D,V278A amino_acid_mutation PMID:30462295 G8D|V278A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.298972G>A/c.23G>A/p.G8D|chrV:g.299782T>C/c.833T>C/p.V278A +YER070W RNR1 3861 rnr1-I231T,T244A I231T,T244A amino_acid_mutation PMID:30462295 I231T|T244A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299641T>C/c.692T>C/p.I231T|chrV:g.299679A>G/c.730A>G/p.T244A +YER070W RNR1 3862 rnr1-I262T,M275I I262T,M275I amino_acid_mutation PMID:30462295 I262T|M275I False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299734T>C/c.785T>C/p.I262T|chrV:g.299774G>C/c.825G>C/p.M275I +YER070W RNR1 3863 rnr1-I262V I262V amino_acid_mutation PMID:30462295 I262V False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299733A>G/c.784A>G/p.I262V +YER070W RNR1 3864 rnr1-I262V,N291D I262V,N291D amino_acid_mutation PMID:30462295 I262V|N291D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299733A>G/c.784A>G/p.I262V|chrV:g.299820A>G/c.871A>G/p.N291D +YER070W RNR1 3865 rnr1-K243E K243E amino_acid_mutation PMID:30462295 K243E False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299676A>G/c.727A>G/p.K243E +YER070W RNR1 3866 rnr1-M275T M275T amino_acid_mutation PMID:30462295 M275T False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299773T>C/c.824T>C/p.M275T +YER070W RNR1 3867 rnr1-P274L P274L amino_acid_mutation PMID:30462295 P274L False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299770C>T/c.821C>T/p.P274L +YER070W RNR1 3868 rnr1-Q288A Q288A amino_acid_mutation PMID:23335335 Q288A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299811_299812delCAinsGC/c.862_863delCAinsGC/p.Q288A +YER070W RNR1 3869 rnr1-Q288E Q288E amino_acid_mutation PMID:23335335 Q288E False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299811C>G/c.862C>G/p.Q288E +YER070W RNR1 3870 rnr1-R256H,Y779C R256H,Y779C amino_acid_mutation PMID:30462295 R256H|Y779C False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299716G>A/c.767G>A/p.R256H|chrV:g.301285A>G/c.2336A>G/p.Y779C +YER070W RNR1 3871 rnr1-R293A R293A amino_acid_mutation PMID:23335335 R293A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299826_299827delAGinsGC/c.877_878delAGinsGC/p.R293A +YER070W RNR1 3872 rnr1-S242T S242T amino_acid_mutation PMID:30462295 S242T False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299595T>A/c.724T>A/p.S242T +YER070W RNR1 3873 rnr1-S269P S269P amino_acid_mutation PMID:30462295 S269P False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299754T>C/c.805T>C/p.S269P +YER070W RNR1 3874 rnr1-T244I,V278A T244I,V278A amino_acid_mutation PMID:30462295 T244I|V278A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299680C>T/c.731C>T/p.T244I|chrV:g.299782T>C/c.833T>C/p.V278A +YER070W RNR1 3875 rnr1-T265A T265A amino_acid_mutation PMID:30462295 T265A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299742A>G/c.793A>G/p.T265A +YER070W RNR1 3876 rnr1-T282A T282A amino_acid_mutation PMID:30462295 T282A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299793A>G/c.844A>G/p.T282A +YER070W RNR1 3877 rnr1-T282S T282S amino_acid_mutation PMID:30462295 T282S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299794C>G/c.845C>G/p.T282S +YER070W RNR1 3878 rnr1-Y285A Y285A amino_acid_mutation PMID:23335335,PMID:33784385 Y285A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299802_299803delTAinsGC/c.853_854delTAinsGC/p.Y285A +YER070W RNR1 3879 rnr1-Y285C Y285C amino_acid_mutation PMID:30462295 Y285C False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299803A>G/c.854A>G/p.Y285C +YER070W RNR1 3880 rnr1-Y285F Y285F amino_acid_mutation PMID:33784385 Y285F False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.299803A>T/c.854A>T/p.Y285F +YER072W VTC1 3883 vtc1-K24E K24E amino_acid_mutation PMID:37066886 K24E False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.302875A>G/c.70A>G/p.K24E +YER072W VTC1 3884 vtc1-R31E R31E amino_acid_mutation PMID:37066886 R31E False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.302896_302898delCGTinsGAG/c.91_93delCGTinsGAG/p.R31E +YER072W VTC1 3885 vtc1-R83K R83K amino_acid_mutation PMID:35283819 R83K False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.303053G>A/c.248G>A/p.R83K +YER075C PTP3 3887 ptp3-C804A C804A amino_acid_mutation PMID:10817757 C804A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.308789_308790delTGinsGC/c.2410_2411delTGinsGC/p.C804A +YER083C GET2 3894 get2-E220C E220C amino_acid_mutation PMID:28877464 E220C False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.326372_326374delGAAinsTGT/c.658_660delGAAinsTGT/p.E220C +YER083C GET2 3895 get2-K150A,K157A K150A,K157A amino_acid_mutation PMID:32910895,PMID:36640319 K150A|K157A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.326583_326584delAAinsGC/c.448_449delAAinsGC/p.K150A|chrV:g.326562_326563delAAinsGC/c.469_470delAAinsGC/p.K157A +YER083C GET2 3896 get2-S28C S28C amino_acid_mutation PMID:28877464 S28C False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.326949G>C/c.83C>G/p.S28C +YER083C GET2 3897 get2-T34I T34I amino_acid_mutation PMID:31611676 T34I False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.326931G>A/c.101C>T/p.T34I +YER086W ILV1 3901 ilv1-H480Y H480Y amino_acid_mutation PMID:35020456 H480Y False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.329914C>T/c.1438C>T/p.H480Y +YER086W ILV1 3902 ilv1-K109A K109A amino_acid_mutation PMID:29127264 K109A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.328801_328802delAAinsGC/c.325_326delAAinsGC/p.K109A +YER090W TRP2 3906 trp2-S208L S208L amino_acid_mutation PMID:31611676 S208L False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.338571C>T/c.623C>T/p.S208L +YER090W TRP2 3907 trp2-S65R,S76L S65R,S76L amino_acid_mutation PMID:32224264 S65R|S76L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.338143T>G/c.195T>G/p.S65R|chrV:g.338175C>T/c.227C>T/p.S76L +YER094C PUP3 3926 pup3-E151K E151K amino_acid_mutation PMID:32916113 E151K False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.349226C>T/c.451G>A/p.E151K +YER095W RAD51 3931 rad51-A265V A265V amino_acid_mutation PMID:21558173 A265V False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.350773C>T/c.794C>T/p.A265V +YER095W RAD51 3932 rad51-E108L E108L amino_acid_mutation PMID:30894431 E108L False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.350301_350302delGAinsCT/c.322_323delGAinsCT/p.E108L +YER095W RAD51 3933 rad51-E126G E126G amino_acid_mutation PMID:32772095 E126G False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.350356A>G/c.377A>G/p.E126G +YER095W RAD51 3934 rad51-F317I F317I amino_acid_mutation PMID:25938495 F317I False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.350928T>A/c.949T>A/p.F317I +YER095W RAD51 3935 rad51-I345T I345T amino_acid_mutation PMID:18927106 I345T False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.351013T>C/c.1034T>C/p.I345T +YER095W RAD51 3936 rad51-K191A K191A amino_acid_mutation PMID:34320356 K191A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.350550_350551delAAinsGC/c.571_572delAAinsGC/p.K191A +YER095W RAD51 3937 rad51-P339S P339S amino_acid_mutation PMID:18927106 P339S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.350994C>T/c.1015C>T/p.P339S +YER095W RAD51 3938 rad51-S125A S125A amino_acid_mutation PMID:32083180 S125A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.350352T>G/c.373T>G/p.S125A +YER095W RAD51 3939 rad51-S12A S12A amino_acid_mutation PMID:32652040 S12A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.350013T>G/c.34T>G/p.S12A +YER095W RAD51 3940 rad51-S2A S2A amino_acid_mutation PMID:32652040 S2A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.349983T>G/c.4T>G/p.S2A +YER095W RAD51 3941 rad51-S2A,S12A S2A,S12A amino_acid_mutation PMID:32652040 S2A|S12A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.349983T>G/c.4T>G/p.S2A|chrV:g.350013T>G/c.34T>G/p.S12A +YER095W RAD51 3942 rad51-S30A S30A amino_acid_mutation PMID:32652040 S30A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.350067T>G/c.88T>G/p.S30A +YER095W RAD51 3943 rad51-S375A S375A amino_acid_mutation PMID:32083180 S375A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.351102T>G/c.1123T>G/p.S375A +YER095W RAD51 3944 rad51-V328A V328A amino_acid_mutation PMID:18927106 V328A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.350962T>C/c.983T>C/p.V328A +YER100W UBC6 3947 ubc6-C87A C87A amino_acid_mutation PMID:32588820 C87A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.359820_359821delTGinsGC/c.259_260delTGinsGC/p.C87A +YER101C AST2 3948 ast2-N406I N406I amino_acid_mutation PMID:34624020 N406I False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.360578T>A/c.1217A>T/p.N406I +YER101C AST2 3949 ast2-V427F V427F amino_acid_mutation PMID:36870416 V427F False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.360516C>A/c.1279G>T/p.V427F +YER110C KAP123 3953 kap123-A550V A550V amino_acid_mutation PMID:32998951 A550V False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.380455G>A/c.1649C>T/p.A550V +YER110C KAP123 3954 kap123-R1068S R1068S amino_acid_mutation PMID:32998951 R1068S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.378900C>G/c.3204G>C/p.R1068S +YER118C SHO1 3968 SHO1-P120L P120L amino_acid_mutation PMID:18591427,PMID:34347092 P120L False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.398697G>A/c.359C>T/p.P120L +YER120W SCS2 3969 scs2-K180R K180R amino_acid_mutation PMID:34787675 K180R False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.401673A>G/c.539A>G/p.K180R +YER120W SCS2 3970 scs2-K40A K40A amino_acid_mutation PMID:15668246 K40A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.401252_401253delAAinsGC/c.118_119delAAinsGC/p.K40A +YER120W SCS2 3971 scs2-K40N,T42A K40N,T42A amino_acid_mutation PMID:35101986 K40N|T42A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.401254G>C/c.120G>C/p.K40N|chrV:g.401258A>G/c.124A>G/p.T42A +YER120W SCS2 3972 scs2-K84D,L86D K84D,L86D amino_acid_mutation PMID:34787675 K84D|L86D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.401384_401386delAAGinsGAC/c.250_252delAAGinsGAC/p.K84D|chrV:g.401390_401392delCTGinsGAC/c.256_258delCTGinsGAC/p.L86D +YER125W RSP5 3984 rsp5-A401E A401E amino_acid_mutation PMID:14500784,PMID:17986087,PMID:29106511,PMID:31867745,PMID:34448525 A401E False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.411390C>A/c.1202C>A/p.A401E +YER125W RSP5 3985 rsp5-A799T A799T amino_acid_mutation PMID:16217550 A799T False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.412583G>A/c.2395G>A/p.A799T +YER125W RSP5 3987 rsp5-C517F C517F amino_acid_mutation PMID:16217550 C517F False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.411738G>T/c.1550G>T/p.C517F +YER125W RSP5 3988 rsp5-C517Y C517Y amino_acid_mutation PMID:16217550 C517Y False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.411738G>A/c.1550G>A/p.C517Y +YER125W RSP5 3989 rsp5-F618A F618A amino_acid_mutation PMID:31956026,PMID:35294869,PMID:35770973 F618A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.412040_412041delTTinsGC/c.1852_1853delTTinsGC/p.F618A +YER125W RSP5 3991 rsp5-G229D G229D amino_acid_mutation PMID:29771304 G229D False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.410874G>A/c.686G>A/p.G229D +YER125W RSP5 3992 rsp5-G689C G689C amino_acid_mutation PMID:33501915 G689C False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.412253G>T/c.2065G>T/p.G689C +YER125W RSP5 3993 rsp5-G747E G747E amino_acid_mutation PMID:24158909 G747E False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.412428G>A/c.2240G>A/p.G747E +YER125W RSP5 3994 rsp5-G753I G753I amino_acid_mutation PMID:23285107 G753I False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.412445_412446delGGinsAT/c.2257_2258delGGinsAT/p.G753I +YER125W RSP5 3996 rsp5-K44Q, K45Q, K75Q, K77Q, K78Q K44Q, K45Q, K75Q, K77Q, K78Q amino_acid_mutation PMID:18832381 K44Q|K45Q|K75Q|K77Q|K78Q False K44Q,K45Q,K75Q,K77Q,K78Q amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.410318A>C/c.130A>C/p.K44Q|chrV:g.410321A>C/c.133A>C/p.K45Q|chrV:g.410411A>C/c.223A>C/p.K75Q|chrV:g.410417A>C/c.229A>C/p.K77Q|chrV:g.410420A>C/c.232A>C/p.K78Q +YER125W RSP5 3997 rsp5-K75Q,K77Q,K78Q K75Q,K77Q,K78Q amino_acid_mutation PMID:33201982 K75Q|K77Q|K78Q False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.410411A>C/c.223A>C/p.K75Q|chrV:g.410417A>C/c.229A>C/p.K77Q|chrV:g.410420A>C/c.232A>C/p.K78Q +YER125W RSP5 3998 rsp5-L733S L733S amino_acid_mutation PMID:29106511,PMID:32800549 L733S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.412386T>C/c.2198T>C/p.L733S +YER125W RSP5 3999 rsp5-P514T P514T amino_acid_mutation PMID:16217550 P514T False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.411728C>A/c.1540C>A/p.P514T +YER125W RSP5 4000 rsp5-P772L P772L amino_acid_mutation PMID:33501915 P772L False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.412503C>T/c.2315C>T/p.P772L +YER125W RSP5 4001 rsp5-R402C R402C amino_acid_mutation PMID:35942513 R402C False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.411392C>T/c.1204C>T/p.R402C +YER125W RSP5 4002 rsp5-R742H R742H amino_acid_mutation PMID:33501915 R742H False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.412413G>A/c.2225G>A/p.R742H +YER125W RSP5 4003 rsp5-T255A T255A amino_acid_mutation PMID:29106511 T255A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.410951A>G/c.763A>G/p.T255A +YER125W RSP5 4004 rsp5-T357A T357A amino_acid_mutation PMID:29106511 T357A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.411257A>G/c.1069A>G/p.T357A +YER125W RSP5 4005 rsp5-T413A T413A amino_acid_mutation PMID:29106511 T413A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.411425A>G/c.1237A>G/p.T413A +YER125W RSP5 4006 rsp5-T761A T761A amino_acid_mutation PMID:26548973 T761A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.412469A>G/c.2281A>G/p.T761A +YER125W RSP5 4007 rsp5-T761D T761D amino_acid_mutation PMID:26548973 T761D False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.412469_412470delACinsGA/c.2281_2282delACinsGA/p.T761D +YER125W RSP5 4008 rsp5-W415F,P418A W415F,P418A amino_acid_mutation PMID:35437932 W415F|P418A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.411432_411433delGGinsTT/c.1244_1245delGGinsTT/p.W415F|chrV:g.411440C>G/c.1252C>G/p.P418A +YER125W RSP5 4010 rsp5-Y516A Y516A amino_acid_mutation PMID:35770973 Y516A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.411734_411735delTAinsGC/c.1546_1547delTAinsGC/p.Y516A +YER133W GLC7 4026 glc7-A268T A268T amino_acid_mutation PMID:9584086 A268T False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.433821G>A/c.802G>A/p.A268T +YER133W GLC7 4027 glc7-A278V A278V amino_acid_mutation PMID:9584086 A278V False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.433852C>T/c.833C>T/p.A278V +YER133W GLC7 4028 glc7-D137A,E138A D137A,E138A amino_acid_mutation PMID:21368139,PMID:26771880,PMID:9055072 D137A|E138A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.432835A>C/c.410A>C/p.D137A|chrV:g.433432A>C/c.413A>C/p.E138A +YER133W GLC7 4029 glc7-D13A,R14A,E17A D13A,R14A,E17A amino_acid_mutation PMID:9055072 D13A|R14A|E17A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.432532A>C/c.38A>C/p.D13A|chrV:g.432534_432535delAGinsGC/c.40_41delAGinsGC/p.R14A|chrV:g.432544A>C/c.50A>C/p.E17A +YER133W GLC7 4030 glc7-D202N D202N amino_acid_mutation PMID:9584086 D202N False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.433623G>A/c.604G>A/p.D202N +YER133W GLC7 4031 glc7-D285A,E286A D285A,E286A amino_acid_mutation PMID:9055072 D285A|E286A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.433873A>C/c.854A>C/p.D285A|chrV:g.433876A>C/c.857A>C/p.E286A +YER133W GLC7 4032 glc7-D7A,D9A D7A,D9A amino_acid_mutation PMID:9055072 D7A|D9A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.432514A>C/c.20A>C/p.D7A|chrV:g.432520A>C/c.26A>C/p.D9A +YER133W GLC7 4033 glc7-D94A,R95A,K97A D94A,R95A,K97A amino_acid_mutation PMID:9055072 D94A|R95A|K97A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.433300A>C/c.281A>C/p.D94A|chrV:g.433302_433303delCGinsGC/c.283_284delCGinsGC/p.R95A|chrV:g.433308_433309delAAinsGC/c.289_290delAAinsGC/p.K97A +YER133W GLC7 4034 glc7-D9K D9K amino_acid_mutation PMID:9584086 D9K False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.432519_432521delGATinsAAG/c.25_27delGATinsAAG/p.D9K +YER133W GLC7 4035 glc7-E101Q E101Q amino_acid_mutation PMID:18627629 E101Q False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.433320G>C/c.301G>C/p.E101Q +YER133W GLC7 4036 glc7-E53A,E55A E53A,E55A amino_acid_mutation PMID:9055072 E53A|E55A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.432583A>C/c.158A>C/p.E53A|chrV:g.432658A>C/c.164A>C/p.E55A +YER133W GLC7 4037 glc7-E76A E76A amino_acid_mutation PMID:9055072 E76A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.432652A>C/c.227A>C/p.E76A +YER133W GLC7 4038 glc7-G198D G198D amino_acid_mutation PMID:9584086 G198D False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.433612G>A/c.593G>A/p.G198D +YER133W GLC7 4039 glc7-G214D G214D amino_acid_mutation PMID:9584086 G214D False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.433660G>A/c.641G>A/p.G214D +YER133W GLC7 4040 glc7-G24A G24A amino_acid_mutation PMID:9584086 G24A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.432565G>C/c.71G>C/p.G24A +YER133W GLC7 4041 glc7-G279S G279S amino_acid_mutation PMID:9584086 G279S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.433854G>A/c.835G>A/p.G279S +YER133W GLC7 4042 glc7-K110A,K112A K110A,K112A amino_acid_mutation PMID:21368139,PMID:26582391,PMID:9055072 K110A|K112A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.433347_433348delAAinsGC/c.328_329delAAinsGC/p.K110A|chrV:g.433353_433354delAAinsGC/c.334_335delAAinsGC/p.K112A +YER133W GLC7 4043 glc7-K259A,R260A K259A,R260A amino_acid_mutation PMID:25730376,PMID:9055072 K259A|R260A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.433794_433795delAAinsGC/c.775_776delAAinsGC/p.K259A|chrV:g.433797_433798delAGinsGC/c.778_779delAGinsGC/p.R260A +YER133W GLC7 4044 glc7-K40A,R42A K40A,R42A amino_acid_mutation PMID:9055072 K40A|R42A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.432612_432613delAAinsGC/c.118_119delAAinsGC/p.K40A|chrV:g.432549_432550delAGinsGC/c.124_125delAGinsGC/p.R42A +YER133W GLC7 4045 glc7-L15S L15S amino_acid_mutation PMID:23275890 L15S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.432538T>C/c.44T>C/p.L15S +YER133W GLC7 4046 glc7-P177S P177S amino_acid_mutation PMID:9584086 P177S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.433548C>T/c.529C>T/p.P177S +YER133W GLC7 4047 glc7-P195F P195F amino_acid_mutation PMID:9584086 P195F False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.433602_433603delCCinsTT/c.583_584delCCinsTT/p.P195F +YER133W GLC7 4048 glc7-P23S P23S amino_acid_mutation PMID:9584086 P23S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.432561C>T/c.67C>T/p.P23S +YER133W GLC7 4049 glc7-P269L P269L amino_acid_mutation PMID:9584086 P269L False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.433825C>T/c.806C>T/p.P269L +YER133W GLC7 4050 glc7-P82S P82S amino_acid_mutation PMID:9584086 P82S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.433263C>T/c.244C>T/p.P82S +YER133W GLC7 4051 glc7-Q48K Q48K amino_acid_mutation PMID:32673313 Q48K False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.432567C>A/c.142C>A/p.Q48K +YER133W GLC7 4052 glc7-R121A,E125A R121A,E125A amino_acid_mutation PMID:9055072 R121A|E125A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.433380_433381delAGinsGC/c.361_362delAGinsGC/p.R121A|chrV:g.433393A>C/c.374A>C/p.E125A +YER133W GLC7 4053 glc7-R121K R121K amino_acid_mutation PMID:9584086 R121K False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.433381G>A/c.362G>A/p.R121K +YER133W GLC7 4054 glc7-R142H R142H amino_acid_mutation PMID:9584086 R142H False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.433444G>A/c.425G>A/p.R142H +YER133W GLC7 4055 glc7-R19A,K22A R19A,K22A amino_acid_mutation PMID:9055072 R19A|K22A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.432549_432550delAGinsGC/c.55_56delAGinsGC/p.R19A|chrV:g.432489_432490delAAinsGC/c.64_65delAAinsGC/p.K22A +YER133W GLC7 4056 glc7-R245Q R245Q amino_acid_mutation PMID:9584086 R245Q False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.433752_433753delAGinsCA/c.733_734delAGinsCA/p.R245Q +YER133W GLC7 4057 glc7-R42K R42K amino_acid_mutation PMID:9584086 R42K False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.432550G>A/c.125G>A/p.R42K +YER133W GLC7 4058 glc7-R73C R73C amino_acid_mutation PMID:8150278 R73C False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.433236C>T/c.217C>T/p.R73C +YER133W GLC7 4059 glc7-T152K T152K amino_acid_mutation PMID:19884341 T152K False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.433474C>A/c.455C>A/p.T152K +YER141W COX15 4068 cox15-T236W T236W amino_acid_mutation PMID:26940873 T236W False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.454164_454166delACCinsTGG/c.706_708delACCinsTGG/p.T236W +YER143W DDI1 4070 DDI1-D220A D220A amino_acid_mutation PMID:31902667 D220A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.456977A>C/c.659A>C/p.D220A +YER143W DDI1 4071 ddi1-D220N D220N amino_acid_mutation PMID:32193351 D220N False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.456976G>A/c.658G>A/p.D220N +YER144C UBP5 4072 ubp5-L71S L71S amino_acid_mutation PMID:31611676 L71S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.460012A>G/c.212T>C/p.L71S +YER147C SCC4 4079 scc4-Y40A Y40A amino_acid_mutation PMID:34259632 Y40A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.464724_464725delTAinsGC/c.118_119delTAinsGC/p.Y40A +YER147C SCC4 4080 scc4-Y40H Y40H amino_acid_mutation PMID:34259632 Y40H False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.464725A>G/c.118T>C/p.Y40H +YER147C SCC4 4081 scc4-Y40N Y40N amino_acid_mutation PMID:34259632 Y40N False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.464725A>T/c.118T>A/p.Y40N +YER148W SPT15 4086 spt15-A140G A140G amino_acid_mutation PMID:34229745 A140G False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.465721C>G/c.419C>G/p.A140G +YER148W SPT15 4087 spt15-F155S F155S amino_acid_mutation PMID:10330135 F155S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.465766T>C/c.464T>C/p.F155S +YER148W SPT15 4088 spt15-G119P G119P amino_acid_mutation PMID:1569955 G119P False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.465657_465658delGGinsCC/c.355_356delGGinsCC/p.G119P +YER148W SPT15 4089 spt15-G119V G119V amino_acid_mutation PMID:1569955 G119V False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.465658G>T/c.356G>T/p.G119V +YER148W SPT15 4090 spt15-G210P G210P amino_acid_mutation PMID:1569955 G210P False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.465741_465742delGGinsCC/c.628_629delGGinsCC/p.G210P +YER148W SPT15 4091 spt15-G210V G210V amino_acid_mutation PMID:1569955 G210V False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.465742G>T/c.629G>T/p.G210V +YER148W SPT15 4094 spt15-L114F L114F amino_acid_mutation PMID:1569955 L114F False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.465644A>T/c.342A>T/p.L114F +YER148W SPT15 4095 spt15-L114K L114K amino_acid_mutation PMID:1569955 L114K False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.465642_465643delTTinsAA/c.340_341delTTinsAA/p.L114K +YER148W SPT15 4096 spt15-L205D L205D amino_acid_mutation PMID:1569955 L205D False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.465915_465917delTTAinsGAC/c.613_615delTTAinsGAC/p.L205D +YER148W SPT15 4097 spt15-L205F L205F amino_acid_mutation PMID:1569955 L205F False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.465917A>T/c.615A>T/p.L205F +YER148W SPT15 4098 spt15-L205K L205K amino_acid_mutation PMID:1569955 L205K False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.465915_465916delTTinsAA/c.613_614delTTinsAA/p.L205K +YER148W SPT15 4099 spt15-L214V L214V amino_acid_mutation PMID:34229745 L214V False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.465942C>G/c.640C>G/p.L214V +YER148W SPT15 4104 spt15-P169A P169A amino_acid_mutation PMID:34229745 P169A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.465807C>G/c.505C>G/p.P169A +YER148W SPT15 4105 spt15-R238K R238K amino_acid_mutation PMID:34229745 R238K False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.466015G>A/c.713G>A/p.R238K +YER148W SPT15 4106 spt15-S118L S118L amino_acid_mutation PMID:34229745 S118L False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.465655C>T/c.353C>T/p.S118L +YER148W SPT15 4107 spt15-i143n i143n amino_acid_mutation PMID:1586948,PMID:23390603,PMID:25721128,PMID:27708008 i143n False I143N amino_acid_mutation:single_aa amino_acid_mutation chrV:g.465730T>A/c.428T>A/p.I143N +YER148W SPT15 4109 spt15-p65s p65s amino_acid_mutation PMID:1586948,PMID:27708008 p65s False P65S amino_acid_mutation:single_aa amino_acid_mutation chrV:g.465495C>T/c.193C>T/p.P65S +YER151C UBP3 4116 ubp3-C469A C469A amino_acid_mutation PMID:32401766,PMID:32673164 C469A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.471019_471020delTGinsGC/c.1405_1406delTGinsGC/p.C469A +YER154W OXA1 4119 oxa1-H121L H121L amino_acid_mutation PMID:22846909 H121L False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.475381A>T/c.362A>T/p.H121L +YER155C BEM2 4122 bem2-R2003A R2003A amino_acid_mutation PMID:35887509 R2003A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.476841_476842delAGinsGC/c.6007_6008delAGinsGC/p.R2003A +YER156C MYG1 4124 myg1-G142S G142S amino_acid_mutation PMID:31611676 G142S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.483918C>T/c.424G>A/p.G142S +YER162C RAD4 4135 rad4-F47S F47S amino_acid_mutation PMID:31611676 F47S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.502755A>G/c.140T>C/p.F47S +YER164W CHD1 4136 chd1-D513N D513N amino_acid_mutation PMID:34313223 D513N False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.506928G>A/c.1537G>A/p.D513N +YER164W CHD1 4137 chd1-E514A E514A amino_acid_mutation PMID:34520455 E514A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.506932A>C/c.1541A>C/p.E514A +YER164W CHD1 4138 chd1-K407R K407R amino_acid_mutation PMID:34313223,PMID:34520455 K407R False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.506611A>G/c.1220A>G/p.K407R +YER164W CHD1 4139 chd1-K478D,G479A,K480D,K481A K478D,G479A,K480D,K481A amino_acid_mutation PMID:35173352 K478D|G479A|K480D|K481A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.506823_506825delAAAinsGAC/c.1432_1434delAAAinsGAC/p.K478D|chrV:g.506827G>C/c.1436G>C/p.G479A|chrV:g.506829_506831delAAAinsGAC/c.1438_1440delAAAinsGAC/p.K480D|chrV:g.506832_506833delAAinsGC/c.1441_1442delAAinsGC/p.K481A +YER165W PAB1 4145 pab1-F364L F364L amino_acid_mutation PMID:2673535 F364L False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.511462T>C/c.1090T>C/p.F364L +YER165W PAB1 4146 pab1-N100D N100D amino_acid_mutation PMID:31611676 N100D False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.510670A>G/c.298A>G/p.N100D +YER169W RPH1 4151 rph1-H235A H235A amino_acid_mutation PMID:24999627 H235A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.524071_524072delCAinsGC/c.703_704delCAinsGC/p.H235A +YER169W RPH1 4152 rph1-S412D S412D amino_acid_mutation PMID:35183557 S412D False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.524602_524603delAGinsGA/c.1234_1235delAGinsGA/p.S412D +YER169W RPH1 4153 rph1-S575D S575D amino_acid_mutation PMID:35183557 S575D False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.525091_525092delTCinsGA/c.1723_1724delTCinsGA/p.S575D +YER171W RAD3 4176 rad3-C115S C115S amino_acid_mutation PMID:16973432 C115S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.527424T>A/c.343T>A/p.C115S +YER171W RAD3 4177 rad3-K48A K48A amino_acid_mutation PMID:16973432 K48A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.527223_527224delAAinsGC/c.142_143delAAinsGC/p.K48A +YER171W RAD3 4178 rad3-K48R K48R amino_acid_mutation PMID:2846277 K48R False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.527224A>G/c.143A>G/p.K48R +YER171W RAD3 4179 rad3-R111H R111H amino_acid_mutation PMID:16973432 R111H False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.527412_527414delAGAinsCAT/c.331_333delAGAinsCAT/p.R111H +YER172C BRR2 4187 brr2-A1932P A1932P amino_acid_mutation PMID:25428373 A1932P False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.530228C>G/c.5794G>C/p.A1932P +YER172C BRR2 4188 brr2-A1973N A1973N amino_acid_mutation PMID:25428373 A1973N False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.530104_530105delGCinsAA/c.5917_5918delGCinsAA/p.A1973N +YER172C BRR2 4189 brr2-C1769R C1769R amino_acid_mutation PMID:25428373 C1769R False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.530717A>G/c.5305T>C/p.C1769R +YER172C BRR2 4190 brr2-E610G E610G amino_acid_mutation PMID:23857713 E610G False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.534193T>C/c.1829A>G/p.E610G +YER172C BRR2 4191 brr2-E909K E909K amino_acid_mutation PMID:23857713 E909K False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.533297C>T/c.2725G>A/p.E909K +YER172C BRR2 4192 brr2-H1855R H1855R amino_acid_mutation PMID:25428373 H1855R False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.530458T>C/c.5564A>G/p.H1855R +YER172C BRR2 4193 brr2-I2071T I2071T amino_acid_mutation PMID:25428373 I2071T False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.529810A>G/c.6212T>C/p.I2071T +YER172C BRR2 4194 brr2-I2073N I2073N amino_acid_mutation PMID:25428373 I2073N False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.529804A>T/c.6218T>A/p.I2073N +YER172C BRR2 4195 brr2-K1925R K1925R amino_acid_mutation PMID:25428373 K1925R False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.530248T>C/c.5774A>G/p.K1925R +YER172C BRR2 4196 brr2-L1883P L1883P amino_acid_mutation PMID:25428373 L1883P False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.530374A>G/c.5648T>C/p.L1883P +YER172C BRR2 4197 brr2-L1930P L1930P amino_acid_mutation PMID:25428373 L1930P False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.530233_530234delTTinsCC/c.5788_5789delTTinsCC/p.L1930P +YER172C BRR2 4198 brr2-L1951P L1951P amino_acid_mutation PMID:25428373 L1951P False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.530170A>G/c.5852T>C/p.L1951P +YER172C BRR2 4200 brr2-N1972D N1972D amino_acid_mutation PMID:25428373 N1972D False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.530108T>C/c.5914A>G/p.N1972D +YER172C BRR2 4201 brr2-R1107L R1107L amino_acid_mutation PMID:19878916 R1107L False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.532702_532703delAGinsCT/c.3319_3320delAGinsCT/p.R1107L +YER172C BRR2 4202 brr2-R1899G R1899G amino_acid_mutation PMID:25428373 R1899G False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.530327T>C/c.5695A>G/p.R1899G +YER172C BRR2 4203 brr2-R295I R295I amino_acid_mutation PMID:23857713 R295I False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.535138C>A/c.884G>T/p.R295I +YER172C BRR2 4204 brr2-S1919P S1919P amino_acid_mutation PMID:25428373 S1919P False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.530267A>G/c.5755T>C/p.S1919P +YER172C BRR2 4205 brr2-S1935P S1935P amino_acid_mutation PMID:25428373 S1935P False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.530219A>G/c.5803T>C/p.S1935P +YER172C BRR2 4206 brr2-S2148P S2148P amino_acid_mutation PMID:25428373 S2148P False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.529580A>G/c.6442T>C/p.S2148P +YER172C BRR2 4207 brr2-V2045D V2045D amino_acid_mutation PMID:25428373 V2045D False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.529888A>T/c.6134T>A/p.V2045D +YER172C BRR2 4208 brr2-W2099R W2099R amino_acid_mutation PMID:25428373 W2099R False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.529727A>T/c.6295T>A/p.W2099R +YER173W RAD24 4211 rad24-E334* E334* partial_amino_acid_deletion PMID:33086066 E334* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrV:g.537299G>T/c.1000G>T/p.E334* +YER174C GRX4 4212 grx4-C171A C171A amino_acid_mutation PMID:32098918 C171A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.538657_538658delTGinsGC/c.511_512delTGinsGC/p.C171A +YER177W BMH1 4225 bmh1-A59T A59T amino_acid_mutation PMID:9822578 A59T False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.545785G>A/c.175G>A/p.A59T +YER177W BMH1 4226 bmh1-D101N,L177I D101N,L177I amino_acid_mutation PMID:14704161 D101N|L177I False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.545911G>A/c.301G>A/p.D101N|chrV:g.546139C>A/c.529C>A/p.L177I +YER177W BMH1 4227 bmh1-D129N D129N amino_acid_mutation PMID:14704161 D129N False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.545995G>A/c.385G>A/p.D129N +YER177W BMH1 4228 bmh1-E136G E136G amino_acid_mutation PMID:14704161 E136G False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.546017A>G/c.407A>G/p.E136G +YER177W BMH1 4229 bmh1-E16K,L173Q E16K,L173Q amino_acid_mutation PMID:14704161 E16K|L173Q False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.545244G>A/c.46G>A/p.E16K|chrV:g.546128T>A/c.518T>A/p.L173Q +YER177W BMH1 4230 bmh1-E19K,P257L E19K,P257L amino_acid_mutation PMID:14704161 E19K|P257L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.545665G>A/c.55G>A/p.E19K|chrV:g.546380C>T/c.770C>T/p.P257L +YER177W BMH1 4231 bmh1-G55D G55D amino_acid_mutation PMID:9822578 G55D False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.545774G>A/c.164G>A/p.G55D +YER177W BMH1 4232 bmh1-G55D,T93N,A153V,R172C G55D,T93N,A153V,R172C amino_acid_mutation PMID:14704161 G55D|T93N|A153V|R172C False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.545774G>A/c.164G>A/p.G55D|chrV:g.545888C>A/c.278C>A/p.T93N|chrV:g.546068C>T/c.458C>T/p.A153V|chrV:g.546124C>T/c.514C>T/p.R172C +YER177W BMH1 4233 bmh1-K125N,N148T K125N,N148T amino_acid_mutation PMID:14704161 K125N|N148T False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.545985G>C/c.375G>C/p.K125N|chrV:g.546053A>C/c.443A>C/p.N148T +YER177W BMH1 4234 bmh1-K125R,L177H K125R,L177H amino_acid_mutation PMID:14704161 K125R|L177H False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.545984A>G/c.374A>G/p.K125R|chrV:g.546140T>A/c.530T>A/p.L177H +YER177W BMH1 4235 bmh1-L225Q,E244V,E262STOP L225Q,E244V,E262STOP amino_acid_deletion_and_mutation PMID:14704161 L225Q|E244V|E262STOP False L225Q,E244V,E262* amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|nonsense_mutation:stop_codon_text amino_acid_deletion_and_mutation chrV:g.546284T>A/c.674T>A/p.L225Q|chrV:g.546341A>T/c.731A>T/p.E244V|chrV:g.546394G>T/c.784G>T/p.E262* +YER177W BMH1 4236 bmh1-L232S L232S amino_acid_mutation PMID:9822578 L232S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.546305T>C/c.695T>C/p.L232S +YER177W BMH1 4237 bmh1-S2T,I222N S2T,I222N amino_acid_mutation PMID:14704161 S2T|I222N False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.545614T>A/c.4T>A/p.S2T|chrV:g.546275T>A/c.665T>A/p.I222N +YER177W BMH1 4238 bmh1-S39P,E92V,D101N S39P,E92V,D101N amino_acid_mutation PMID:14704161 S39P|E92V|D101N False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.545725T>C/c.115T>C/p.S39P|chrV:g.545885A>T/c.275A>T/p.E92V|chrV:g.545911G>A/c.301G>A/p.D101N +YER177W BMH1 4239 bmh1-T96P,L110V,Y130F,E239K T96P,L110V,Y130F,E239K amino_acid_mutation PMID:14704161 T96P|L110V|Y130F|E239K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.545484A>C/c.286A>C/p.T96P|chrV:g.545938T>G/c.328T>G/p.L110V|chrV:g.545999A>T/c.389A>T/p.Y130F|chrV:g.546325G>A/c.715G>A/p.E239K +YER178W PDA1 4240 pda1-A189V A189V amino_acid_mutation PMID:29445841 A189V False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.547382C>T/c.566C>T/p.A189V +YER178W PDA1 4241 pda1-M230V M230V amino_acid_mutation PMID:29445841 M230V False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.547504A>G/c.688A>G/p.M230V +YER178W PDA1 4242 pda1-R322C R322C amino_acid_mutation PMID:29445841 R322C False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.547780_547782delAGAinsTGT/c.964_966delAGAinsTGT/p.R322C +YER179W DMC1 4243 dmc1-T159A T159A amino_acid_mutation PMID:24465215 T159A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.548987A>G/c.475A>G/p.T159A +YFL001W DEG1 4250 deg1-I22T I22T amino_acid_mutation PMID:31723032 I22T False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.147195T>C/c.65T>C/p.I22T +YFL002C SPB4 4253 spb4-D172A D172A amino_acid_mutation PMID:16449635 D172A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.146420T>G/c.515A>C/p.D172A +YFL002C SPB4 4254 spb4-R360A R360A amino_acid_mutation PMID:21825077 R360A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.145856_145857delAGinsGC/c.1078_1079delAGinsGC/p.R360A +YFL003C MSH4 4256 msh4-E276A E276A amino_acid_mutation PMID:20865162 E276A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.136331T>G/c.827A>C/p.E276A +YFL003C MSH4 4257 msh4-F194A F194A amino_acid_mutation PMID:20865162 F194A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.136577_136578delTTinsGC/c.580_581delTTinsGC/p.F194A +YFL003C MSH4 4258 msh4-F491A F491A amino_acid_mutation PMID:20865162 F491A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.135686_135687delTTinsGC/c.1471_1472delTTinsGC/p.F491A +YFL003C MSH4 4259 msh4-L493A L493A amino_acid_mutation PMID:20865162 L493A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.135680_135681delCTinsGC/c.1477_1478delCTinsGC/p.L493A +YFL003C MSH4 4260 msh4-N532A N532A amino_acid_mutation PMID:20865162 N532A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.135563_135564delAAinsGC/c.1594_1595delAAinsGC/p.N532A +YFL003C MSH4 4261 msh4-R456A R456A amino_acid_mutation PMID:20865162 R456A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.135791_135792delAGinsGC/c.1366_1367delAGinsGC/p.R456A +YFL003C MSH4 4262 msh4-R676W R676W amino_acid_mutation PMID:20865162 R676W False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.135130_135132delAGAinsTGG/c.2026_2028delAGAinsTGG/p.R676W +YFL003C MSH4 4263 msh4-Y143A Y143A amino_acid_mutation PMID:20865162 Y143A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.136730_136731delTAinsGC/c.427_428delTAinsGC/p.Y143A +YFL005W SEC4 4269 sec4-S34N S34N amino_acid_mutation PMID:20444978 S34N False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.130433_130435delTCAinsAAC/c.100_102delTCAinsAAC/p.S34N +YFL008W SMC1 4276 smc1-D588Y D588Y amino_acid_mutation PMID:34259632 D588Y False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.121190G>T/c.1762G>T/p.D588Y +YFL008W SMC1 4277 smc1-E508A E508A amino_acid_mutation PMID:19948494 E508A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.120951A>C/c.1523A>C/p.E508A +YFL008W SMC1 4278 smc1-I590K I590K amino_acid_mutation PMID:34259632 I590K False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.121197_121198delTTinsAG/c.1769_1770delTTinsAG/p.I590K +YFL008W SMC1 4279 smc1-L635K,K639E L635K,K639E amino_acid_mutation PMID:34259632 L635K|K639E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.121331_121332delTTinsAA/c.1903_1904delTTinsAA/p.L635K|chrVI:g.121343A>G/c.1915A>G/p.K639E +YFL008W SMC1 4281 smc1-R332F R332F amino_acid_mutation PMID:27307603 R332F False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.120422_120424delAGAinsTTT/c.994_996delAGAinsTTT/p.R332F +YFL008W SMC1 4282 smc1-Y300F Y300F amino_acid_mutation PMID:8276886 Y300F False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.120327A>T/c.899A>T/p.Y300F +YFL013C IES1 4290 ies1-G103R G103R amino_acid_mutation PMID:35283819 G103R False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.109624C>T/c.307G>A/p.G103R +YFL018C LPD1 4295 lpd1-G94D G94D amino_acid_mutation PMID:33232753 G94D False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.102847C>T/c.281G>A/p.G94D +YFL025C BST1 4304 bst1-S740R S740R amino_acid_mutation PMID:35435209 S740R False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.85015G>C/c.2220C>G/p.S740R +YFL026W STE2 4311 ste2-A185P A185P amino_acid_mutation PMID:9742115 A185P False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83132G>C/c.553G>C/p.A185P +YFL026W STE2 4312 ste2-A206G A206G amino_acid_mutation PMID:16314417 A206G False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83196C>G/c.617C>G/p.A206G +YFL026W STE2 4313 ste2-A265C A265C amino_acid_mutation PMID:22387470 A265C False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83372_83374delGCAinsTGT/c.793_795delGCAinsTGT/p.A265C +YFL026W STE2 4314 ste2-C252R C252R amino_acid_mutation PMID:27150158 C252R False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83333T>C/c.754T>C/p.C252R +YFL026W STE2 4315 ste2-D201A D201A amino_acid_mutation PMID:16314417 D201A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83181A>C/c.602A>C/p.D201A +YFL026W STE2 4316 ste2-D242A D242A amino_acid_mutation PMID:8132618 D242A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83304A>C/c.725A>C/p.D242A +YFL026W STE2 4317 ste2-D275V D275V amino_acid_mutation PMID:10485282 D275V False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83403A>T/c.824A>T/p.D275V +YFL026W STE2 4318 ste2-E143K E143K amino_acid_mutation PMID:9067610 E143K False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83006G>A/c.427G>A/p.E143K +YFL026W STE2 4319 ste2-F204A F204A amino_acid_mutation PMID:16314417 F204A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83189_83190delTTinsGC/c.610_611delTTinsGC/p.F204A +YFL026W STE2 4320 ste2-F204S F204S amino_acid_mutation PMID:10485282 F204S False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83190T>C/c.611T>C/p.F204S +YFL026W STE2 4321 ste2-F235A F235A amino_acid_mutation PMID:8132618 F235A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83282_83283delTTinsGC/c.703_704delTTinsGC/p.F235A +YFL026W STE2 4322 ste2-F235A,D242A F235A,D242A amino_acid_mutation PMID:8132618 F235A|D242A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83282_83283delTTinsGC/c.703_704delTTinsGC/p.F235A|chrVI:g.83304A>C/c.725A>C/p.D242A +YFL026W STE2 4323 ste2-F235A,F241A F235A,F241A amino_acid_mutation PMID:8132618 F235A|F241A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83282_83283delTTinsGC/c.703_704delTTinsGC/p.F235A|chrVI:g.83300_83301delTTinsGC/c.721_722delTTinsGC/p.F241A +YFL026W STE2 4324 ste2-F235A,K239A F235A,K239A amino_acid_mutation PMID:8132618 F235A|K239A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83282_83283delTTinsGC/c.703_704delTTinsGC/p.F235A|chrVI:g.83294_83295delAAinsGC/c.715_716delAAinsGC/p.K239A +YFL026W STE2 4325 ste2-F235A,L238A F235A,L238A amino_acid_mutation PMID:8132618 F235A|L238A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83282_83283delTTinsGC/c.703_704delTTinsGC/p.F235A|chrVI:g.83291_83292delCTinsGC/c.712_713delCTinsGC/p.L238A +YFL026W STE2 4326 ste2-F235A,Q240A F235A,Q240A amino_acid_mutation PMID:8132618 F235A|Q240A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83282_83283delTTinsGC/c.703_704delTTinsGC/p.F235A|chrVI:g.83297_83298delCAinsGC/c.718_719delCAinsGC/p.Q240A +YFL026W STE2 4327 ste2-F235A,S243A F235A,S243A amino_acid_mutation PMID:8132618 F235A|S243A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83282_83283delTTinsGC/c.703_704delTTinsGC/p.F235A|chrVI:g.83306_83307delAGinsGC/c.727_728delAGinsGC/p.S243A +YFL026W STE2 4328 ste2-F241A F241A amino_acid_mutation PMID:8132618 F241A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83300_83301delTTinsGC/c.721_722delTTinsGC/p.F241A +YFL026W STE2 4329 ste2-F241S F241S amino_acid_mutation PMID:27150158 F241S False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83301T>C/c.722T>C/p.F241S +YFL026W STE2 4330 ste2-F262C F262C amino_acid_mutation PMID:22387470 F262C False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83364T>G/c.785T>G/p.F262C +YFL026W STE2 4331 ste2-F38Y F38Y amino_acid_mutation PMID:25647246 F38Y False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.82692T>A/c.113T>A/p.F38Y +YFL026W STE2 4332 ste2-F55L,F116S,N158D F55L,F116S,N158D amino_acid_mutation PMID:25647246 F55L|F116S|N158D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.82742T>C/c.163T>C/p.F55L|chrVI:g.82926T>C/c.347T>C/p.F116S|chrVI:g.83051A>G/c.472A>G/p.N158D +YFL026W STE2 4333 ste2-G237A G237A amino_acid_mutation PMID:8132618,PMID:8164685 G237A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83289G>C/c.710G>C/p.G237A +YFL026W STE2 4334 ste2-G237R G237R amino_acid_mutation PMID:8164685 G237R False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83288G>C/c.709G>C/p.G237R +YFL026W STE2 4335 ste2-G31R,A52T G31R,A52T amino_acid_mutation PMID:25647246 G31R|A52T False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.82670G>A/c.91G>A/p.G31R|chrVI:g.82733G>A/c.154G>A/p.A52T +YFL026W STE2 4336 ste2-G31R,M69K,S213F G31R,M69K,S213F amino_acid_mutation PMID:25647246 G31R|M69K|S213F False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.82670G>A/c.91G>A/p.G31R|chrVI:g.82785T>A/c.206T>A/p.M69K|chrVI:g.83217C>T/c.638C>T/p.S213F +YFL026W STE2 4338 ste2-H94Y H94Y amino_acid_mutation PMID:25647246 H94Y False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.82859C>T/c.280C>T/p.H94Y +YFL026W STE2 4340 ste2-I142T I142T amino_acid_mutation PMID:10841771 I142T False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83004T>C/c.425T>C/p.I142T +YFL026W STE2 4342 ste2-I150A I150A amino_acid_mutation PMID:11861550 I150A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83027_83028delATinsGC/c.448_449delATinsGC/p.I150A +YFL026W STE2 4343 ste2-I153D I153D amino_acid_mutation PMID:11861550 I153D False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83036_83037delATinsGA/c.457_458delATinsGA/p.I153D +YFL026W STE2 4344 ste2-I153E I153E amino_acid_mutation PMID:11861550 I153E False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83036_83038delATTinsGAG/c.457_459delATTinsGAG/p.I153E +YFL026W STE2 4345 ste2-I153F I153F amino_acid_mutation PMID:11861550 I153F False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83036A>T/c.457A>T/p.I153F +YFL026W STE2 4346 ste2-I153H I153H amino_acid_mutation PMID:11861550 I153H False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83036_83037delATinsCA/c.457_458delATinsCA/p.I153H +YFL026W STE2 4347 ste2-I153P I153P amino_acid_mutation PMID:11861550 I153P False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83036_83037delATinsCC/c.457_458delATinsCC/p.I153P +YFL026W STE2 4348 ste2-I153R I153R amino_acid_mutation PMID:11861550 I153R False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83037_83038delTTinsGG/c.458_459delTTinsGG/p.I153R +YFL026W STE2 4349 ste2-I153S I153S amino_acid_mutation PMID:11861550 I153S False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83037T>G/c.458T>G/p.I153S +YFL026W STE2 4350 ste2-I153Y I153Y amino_acid_mutation PMID:11861550 I153Y False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83036_83037delATinsTA/c.457_458delATinsTA/p.I153Y +YFL026W STE2 4352 ste2-I169K I169K amino_acid_mutation PMID:11861550 I169K False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83085T>A/c.506T>A/p.I169K +YFL026W STE2 4353 ste2-I209A I209A amino_acid_mutation PMID:16314417 I209A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83204_83205delATinsGC/c.625_626delATinsGC/p.I209A +YFL026W STE2 4355 ste2-I260K I260K amino_acid_mutation PMID:25647246 I260K False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83358T>A/c.779T>A/p.I260K +YFL026W STE2 4357 ste2-I261K I261K amino_acid_mutation PMID:27150158 I261K False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83361T>A/c.782T>A/p.I261K +YFL026W STE2 4363 ste2-I53V,L113R I53V,L113R amino_acid_mutation PMID:25647246 I53V|L113R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.82736A>G/c.157A>G/p.I53V|chrVI:g.82917T>G/c.338T>G/p.L113R +YFL026W STE2 4365 ste2-K202A K202A amino_acid_mutation PMID:16314417 K202A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83183_83184delAAinsGC/c.604_605delAAinsGC/p.K202A +YFL026W STE2 4366 ste2-K225C K225C amino_acid_mutation PMID:17176053 K225C False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83252_83254delAAAinsTGT/c.673_675delAAAinsTGT/p.K225C +YFL026W STE2 4367 ste2-K225R K225R amino_acid_mutation PMID:27150158 K225R False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83253A>G/c.674A>G/p.K225R +YFL026W STE2 4368 ste2-K239A K239A amino_acid_mutation PMID:8132618 K239A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83294_83295delAAinsGC/c.715_716delAAinsGC/p.K239A +YFL026W STE2 4369 ste2-K239N K239N amino_acid_mutation PMID:8164685 K239N False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83296G>C/c.717G>C/p.K239N +YFL026W STE2 4370 ste2-L211R L211R amino_acid_mutation PMID:25647246 L211R False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83211T>G/c.632T>G/p.L211R +YFL026W STE2 4371 ste2-L222P L222P amino_acid_mutation PMID:21477594 L222P False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83244T>C/c.665T>C/p.L222P +YFL026W STE2 4372 ste2-L222R L222R amino_acid_mutation PMID:21477594 L222R False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83244T>G/c.665T>G/p.L222R +YFL026W STE2 4373 ste2-L226W L226W amino_acid_mutation PMID:10841771 L226W False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83256T>G/c.677T>G/p.L226W +YFL026W STE2 4374 ste2-L236A L236A amino_acid_mutation PMID:8132618 L236A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83285_83286delCTinsGC/c.706_707delCTinsGC/p.L236A +YFL026W STE2 4375 ste2-L236H L236H amino_acid_mutation PMID:27150158 L236H False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83286T>A/c.707T>A/p.L236H +YFL026W STE2 4376 ste2-L236H,K239R L236H,K239R amino_acid_mutation PMID:27150158 L236H|K239R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83286T>A/c.707T>A/p.L236H|chrVI:g.83295A>G/c.716A>G/p.K239R +YFL026W STE2 4377 ste2-L236I L236I amino_acid_mutation PMID:27150158 L236I False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83285C>A/c.706C>A/p.L236I +YFL026W STE2 4378 ste2-L238A L238A amino_acid_mutation PMID:8132618 L238A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83291_83292delCTinsGC/c.712_713delCTinsGC/p.L238A +YFL026W STE2 4379 ste2-L247C L247C amino_acid_mutation PMID:10846179 L247C False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83319_83320delTAinsGT/c.740_741delTAinsGT/p.L247C +YFL026W STE2 4380 ste2-L247F L247F amino_acid_mutation PMID:27150158 L247F False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83320A>T/c.741A>T/p.L247F +YFL026W STE2 4381 ste2-L248C L248C amino_acid_mutation PMID:10846179 L248C False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83321_83322delCTinsTG/c.742_743delCTinsTG/p.L248C +YFL026W STE2 4382 ste2-L248P L248P amino_acid_mutation PMID:27150158 L248P False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83322T>C/c.743T>C/p.L248P +YFL026W STE2 4383 ste2-L264H L264H amino_acid_mutation PMID:27150158 L264H False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83370T>A/c.791T>A/p.L264H +YFL026W STE2 4384 ste2-L264H,N271Y L264H,N271Y amino_acid_mutation PMID:27150158 L264H|N271Y False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83370T>A/c.791T>A/p.L264H|chrVI:g.83390A>T/c.811A>T/p.N271Y +YFL026W STE2 4385 ste2-L264P L264P amino_acid_mutation PMID:10485282 L264P False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83370T>C/c.791T>C/p.L264P +YFL026W STE2 4386 ste2-L277V L277V amino_acid_mutation PMID:27150158 L277V False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83408T>G/c.829T>G/p.L277V +YFL026W STE2 4387 ste2-L289S L289S amino_acid_mutation PMID:10841771 L289S False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83445T>C/c.866T>C/p.L289S +YFL026W STE2 4388 ste2-M180K,H245P M180K,H245P amino_acid_mutation PMID:27150158 M180K|H245P False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83118T>A/c.539T>A/p.M180K|chrVI:g.83313A>C/c.734A>C/p.H245P +YFL026W STE2 4389 ste2-M180R M180R amino_acid_mutation PMID:9742115 M180R False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83118T>G/c.539T>G/p.M180R +YFL026W STE2 4390 ste2-M189K,S214P M189K,S214P amino_acid_mutation PMID:27150158 M189K|S214P False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83145T>A/c.566T>A/p.M189K|chrVI:g.83219T>C/c.640T>C/p.S214P +YFL026W STE2 4391 ste2-M218T M218T amino_acid_mutation PMID:9067610 M218T False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83232T>C/c.653T>C/p.M218T +YFL026W STE2 4392 ste2-M250C M250C amino_acid_mutation PMID:10846179 M250C False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83327_83329delATGinsTGT/c.748_750delATGinsTGT/p.M250C +YFL026W STE2 4393 ste2-N132I N132I amino_acid_mutation PMID:9742115 N132I False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.82974A>T/c.395A>T/p.N132I +YFL026W STE2 4394 ste2-N132Y N132Y amino_acid_mutation PMID:9742115 N132Y False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.82973A>T/c.394A>T/p.N132Y +YFL026W STE2 4395 ste2-N194S,F204L N194S,F204L amino_acid_mutation PMID:27150158 N194S|F204L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83160A>G/c.581A>G/p.N194S|chrVI:g.83189T>C/c.610T>C/p.F204L +YFL026W STE2 4396 ste2-N205D N205D amino_acid_mutation PMID:10485282 N205D False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83192A>G/c.613A>G/p.N205D +YFL026W STE2 4397 ste2-N205H,L211V N205H,L211V amino_acid_mutation PMID:27150158 N205H|L211V False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83192A>C/c.613A>C/p.N205H|chrVI:g.83210C>G/c.631C>G/p.L211V +YFL026W STE2 4398 ste2-N205K N205K amino_acid_mutation PMID:10485282 N205K False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83194T>G/c.615T>G/p.N205K +YFL026W STE2 4399 ste2-N216C N216C amino_acid_mutation PMID:22387470 N216C False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83225_83226delAAinsTG/c.646_647delAAinsTG/p.N216C +YFL026W STE2 4400 ste2-N46S N46S amino_acid_mutation PMID:11861550 N46S False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.82716A>G/c.137A>G/p.N46S +YFL026W STE2 4401 ste2-N84Q N84Q amino_acid_mutation PMID:11861550 N84Q False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.82829_82831delAACinsCAA/c.250_252delAACinsCAA/p.N84Q +YFL026W STE2 4403 ste2-P258A P258A amino_acid_mutation PMID:10846179 P258A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83351C>G/c.772C>G/p.P258A +YFL026W STE2 4404 ste2-P258C P258C amino_acid_mutation PMID:9529386 P258C False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83351_83353delCCAinsTGT/c.772_774delCCAinsTGT/p.P258C +YFL026W STE2 4405 ste2-P258F P258F amino_acid_mutation PMID:10846179 P258F False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83351_83353delCCAinsTTT/c.772_774delCCAinsTTT/p.P258F +YFL026W STE2 4406 ste2-P258I P258I amino_acid_mutation PMID:10846179 P258I False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83351_83352delCCinsAT/c.772_773delCCinsAT/p.P258I +YFL026W STE2 4407 ste2-P258L P258L amino_acid_mutation PMID:26232403,PMID:9529386 P258L False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83352C>T/c.773C>T/p.P258L +YFL026W STE2 4408 ste2-P258L,S254L P258L,S254L amino_acid_mutation PMID:26232403 P258L|S254L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83352C>T/c.773C>T/p.P258L|chrVI:g.83339_83340delTCinsCT/c.760_761delTCinsCT/p.S254L +YFL026W STE2 4409 ste2-P258L,S259L P258L,S259L amino_acid_mutation PMID:26232403 P258L|S259L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83352C>T/c.773C>T/p.P258L|chrVI:g.83355C>T/c.776C>T/p.S259L +YFL026W STE2 4410 ste2-P258M P258M amino_acid_mutation PMID:9529386 P258M False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83351_83353delCCAinsATG/c.772_774delCCAinsATG/p.P258M +YFL026W STE2 4411 ste2-P258V P258V amino_acid_mutation PMID:10846179 P258V False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83351_83352delCCinsGT/c.772_773delCCinsGT/p.P258V +YFL026W STE2 4412 ste2-P258Y P258Y amino_acid_mutation PMID:9529386 P258Y False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83351_83353delCCAinsTAT/c.772_774delCCAinsTAT/p.P258Y +YFL026W STE2 4413 ste2-P290C P290C amino_acid_mutation PMID:17176053 P290C False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83447_83449delCCAinsTGT/c.868_870delCCAinsTGT/p.P290C +YFL026W STE2 4414 ste2-Q135H,L164P,S207I Q135H,L164P,S207I amino_acid_mutation PMID:25647246 Q135H|L164P|S207I False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.82984A>T/c.405A>T/p.Q135H|chrVI:g.83069_83070delTTinsCC/c.490_491delTTinsCC/p.L164P|chrVI:g.83198_83199delTCinsAT/c.619_620delTCinsAT/p.S207I +YFL026W STE2 4415 ste2-Q135P Q135P amino_acid_mutation PMID:9742115 Q135P False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.82983A>C/c.404A>C/p.Q135P +YFL026W STE2 4416 ste2-Q149A Q149A amino_acid_mutation PMID:10841771 Q149A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83024_83025delCAinsGC/c.445_446delCAinsGC/p.Q149A +YFL026W STE2 4417 ste2-Q149C Q149C amino_acid_mutation PMID:17176053 Q149C False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83024_83026delCAGinsTGT/c.445_447delCAGinsTGT/p.Q149C +YFL026W STE2 4418 ste2-Q149I Q149I amino_acid_mutation PMID:11861550 Q149I False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83024_83026delCAGinsATC/c.445_447delCAGinsATC/p.Q149I +YFL026W STE2 4419 ste2-Q149N Q149N amino_acid_mutation PMID:11861550 Q149N False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83024_83026delCAGinsAAC/c.445_447delCAGinsAAC/p.Q149N +YFL026W STE2 4420 ste2-Q149P Q149P amino_acid_mutation PMID:10841771 Q149P False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83025A>C/c.446A>C/p.Q149P +YFL026W STE2 4421 ste2-Q149R Q149R amino_acid_mutation PMID:10841771 Q149R False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83025A>G/c.446A>G/p.Q149R +YFL026W STE2 4422 ste2-Q149S Q149S amino_acid_mutation PMID:10841771 Q149S False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83024_83025delCAinsTC/c.445_446delCAinsTC/p.Q149S +YFL026W STE2 4423 ste2-Q149T Q149T amino_acid_mutation PMID:10841771 Q149T False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83024_83025delCAinsAC/c.445_446delCAinsAC/p.Q149T +YFL026W STE2 4424 ste2-Q149V Q149V amino_acid_mutation PMID:10841771 Q149V False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83024_83025delCAinsGT/c.445_446delCAinsGT/p.Q149V +YFL026W STE2 4425 ste2-Q200A Q200A amino_acid_mutation PMID:16314417 Q200A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83177_83178delCAinsGC/c.598_599delCAinsGC/p.Q200A +YFL026W STE2 4426 ste2-Q240A Q240A amino_acid_mutation PMID:8132618 Q240A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83297_83298delCAinsGC/c.718_719delCAinsGC/p.Q240A +YFL026W STE2 4427 ste2-Q253L Q253L amino_acid_mutation PMID:10841771 Q253L False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83337A>T/c.758A>T/p.Q253L +YFL026W STE2 4428 ste2-Q51P,G174W,G237S Q51P,G174W,G237S amino_acid_mutation PMID:25647246 Q51P|G174W|G237S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.82731A>C/c.152A>C/p.Q51P|chrVI:g.83099G>T/c.520G>T/p.G174W|chrVI:g.83288G>A/c.709G>A/p.G237S +YFL026W STE2 4429 ste2-R231A R231A amino_acid_mutation PMID:8132618 R231A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83270_83271delAGinsGC/c.691_692delAGinsGC/p.R231A +YFL026W STE2 4430 ste2-R231A,D242A R231A,D242A amino_acid_mutation PMID:8132618 R231A|D242A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83270_83271delAGinsGC/c.691_692delAGinsGC/p.R231A|chrVI:g.83304A>C/c.725A>C/p.D242A +YFL026W STE2 4431 ste2-R231A,F241A R231A,F241A amino_acid_mutation PMID:8132618 R231A|F241A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83270_83271delAGinsGC/c.691_692delAGinsGC/p.R231A|chrVI:g.83300_83301delTTinsGC/c.721_722delTTinsGC/p.F241A +YFL026W STE2 4432 ste2-R231A,K239A R231A,K239A amino_acid_mutation PMID:8132618 R231A|K239A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83270_83271delAGinsGC/c.691_692delAGinsGC/p.R231A|chrVI:g.83294_83295delAAinsGC/c.715_716delAAinsGC/p.K239A +YFL026W STE2 4433 ste2-R231A,L238A R231A,L238A amino_acid_mutation PMID:8132618 R231A|L238A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83270_83271delAGinsGC/c.691_692delAGinsGC/p.R231A|chrVI:g.83291_83292delCTinsGC/c.712_713delCTinsGC/p.L238A +YFL026W STE2 4434 ste2-R231A,Q240A R231A,Q240A amino_acid_mutation PMID:8132618 R231A|Q240A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83270_83271delAGinsGC/c.691_692delAGinsGC/p.R231A|chrVI:g.83297_83298delCAinsGC/c.718_719delCAinsGC/p.Q240A +YFL026W STE2 4435 ste2-R231A,S243A R231A,S243A amino_acid_mutation PMID:8132618 R231A|S243A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83270_83271delAGinsGC/c.691_692delAGinsGC/p.R231A|chrVI:g.83306_83307delAGinsGC/c.727_728delAGinsGC/p.S243A +YFL026W STE2 4437 ste2-R233A R233A amino_acid_mutation PMID:8132618 R233A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83276_83277delAGinsGC/c.697_698delAGinsGC/p.R233A +YFL026W STE2 4438 ste2-R233A,D242A R233A,D242A amino_acid_mutation PMID:8132618 R233A|D242A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83276_83277delAGinsGC/c.697_698delAGinsGC/p.R233A|chrVI:g.83304A>C/c.725A>C/p.D242A +YFL026W STE2 4439 ste2-R233A,F241A R233A,F241A amino_acid_mutation PMID:8132618 R233A|F241A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83276_83277delAGinsGC/c.697_698delAGinsGC/p.R233A|chrVI:g.83300_83301delTTinsGC/c.721_722delTTinsGC/p.F241A +YFL026W STE2 4440 ste2-R233A,K239A R233A,K239A amino_acid_mutation PMID:8132618 R233A|K239A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83276_83277delAGinsGC/c.697_698delAGinsGC/p.R233A|chrVI:g.83294_83295delAAinsGC/c.715_716delAAinsGC/p.K239A +YFL026W STE2 4441 ste2-R233A,L238A R233A,L238A amino_acid_mutation PMID:8132618 R233A|L238A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83276_83277delAGinsGC/c.697_698delAGinsGC/p.R233A|chrVI:g.83291_83292delCTinsGC/c.712_713delCTinsGC/p.L238A +YFL026W STE2 4442 ste2-R233A,Q240A R233A,Q240A amino_acid_mutation PMID:8132618 R233A|Q240A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83276_83277delAGinsGC/c.697_698delAGinsGC/p.R233A|chrVI:g.83297_83298delCAinsGC/c.718_719delCAinsGC/p.Q240A +YFL026W STE2 4443 ste2-R233A,S243A R233A,S243A amino_acid_mutation PMID:8132618 R233A|S243A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83276_83277delAGinsGC/c.697_698delAGinsGC/p.R233A|chrVI:g.83306_83307delAGinsGC/c.727_728delAGinsGC/p.S243A +YFL026W STE2 4444 ste2-R233C R233C amino_acid_mutation PMID:17176053 R233C False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83276_83278delAGAinsTGT/c.697_699delAGAinsTGT/p.R233C +YFL026W STE2 4445 ste2-R233I,R234K,K239N R233I,R234K,K239N amino_acid_mutation PMID:8164685 R233I|R234K|K239N False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83277G>T/c.698G>T/p.R233I|chrVI:g.83280G>A/c.701G>A/p.R234K|chrVI:g.83296G>C/c.717G>C/p.K239N +YFL026W STE2 4446 ste2-R234A R234A amino_acid_mutation PMID:8132618 R234A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83279_83280delAGinsGC/c.700_701delAGinsGC/p.R234A +YFL026W STE2 4447 ste2-R234A,D242A R234A,D242A amino_acid_mutation PMID:8132618 R234A|D242A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83279_83280delAGinsGC/c.700_701delAGinsGC/p.R234A|chrVI:g.83304A>C/c.725A>C/p.D242A +YFL026W STE2 4448 ste2-R234A,F241A R234A,F241A amino_acid_mutation PMID:8132618 R234A|F241A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83279_83280delAGinsGC/c.700_701delAGinsGC/p.R234A|chrVI:g.83300_83301delTTinsGC/c.721_722delTTinsGC/p.F241A +YFL026W STE2 4449 ste2-R234A,K239A R234A,K239A amino_acid_mutation PMID:8132618 R234A|K239A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83279_83280delAGinsGC/c.700_701delAGinsGC/p.R234A|chrVI:g.83294_83295delAAinsGC/c.715_716delAAinsGC/p.K239A +YFL026W STE2 4450 ste2-R234A,L238A R234A,L238A amino_acid_mutation PMID:8132618 R234A|L238A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83279_83280delAGinsGC/c.700_701delAGinsGC/p.R234A|chrVI:g.83291_83292delCTinsGC/c.712_713delCTinsGC/p.L238A +YFL026W STE2 4451 ste2-R234A,Q240A R234A,Q240A amino_acid_mutation PMID:8132618 R234A|Q240A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83279_83280delAGinsGC/c.700_701delAGinsGC/p.R234A|chrVI:g.83297_83298delCAinsGC/c.718_719delCAinsGC/p.Q240A +YFL026W STE2 4452 ste2-R234A,S243A R234A,S243A amino_acid_mutation PMID:8132618 R234A|S243A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83279_83280delAGinsGC/c.700_701delAGinsGC/p.R234A|chrVI:g.83306_83307delAGinsGC/c.727_728delAGinsGC/p.S243A +YFL026W STE2 4453 ste2-R58G R58G amino_acid_mutation PMID:15667221 R58G False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.82751A>G/c.172A>G/p.R58G +YFL026W STE2 4454 ste2-S104Y S104Y amino_acid_mutation PMID:25647246 S104Y False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.82890C>A/c.311C>A/p.S104Y +YFL026W STE2 4455 ste2-S141P S141P amino_acid_mutation PMID:11861550 S141P False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83000T>C/c.421T>C/p.S141P +YFL026W STE2 4456 ste2-S184R S184R amino_acid_mutation PMID:9742115 S184R False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83131C>G/c.552C>G/p.S184R +YFL026W STE2 4457 ste2-S207A S207A amino_acid_mutation PMID:16314417 S207A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83198T>G/c.619T>G/p.S207A +YFL026W STE2 4458 ste2-S207F S207F amino_acid_mutation PMID:10485282 S207F False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83199C>T/c.620C>T/p.S207F +YFL026W STE2 4459 ste2-S207P S207P amino_acid_mutation PMID:27150158 S207P False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83198T>C/c.619T>C/p.S207P +YFL026W STE2 4460 ste2-S213P,R233G S213P,R233G amino_acid_mutation PMID:27150158 S213P|R233G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83216T>C/c.637T>C/p.S213P|chrVI:g.83276A>G/c.697A>G/p.R233G +YFL026W STE2 4461 ste2-S214P, F217I S214P, F217I amino_acid_mutation PMID:27150158 S214P|F217I False S214P,F217I amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83219T>C/c.640T>C/p.S214P|chrVI:g.83228T>A/c.649T>A/p.F217I +YFL026W STE2 4462 ste2-S219T S219T amino_acid_mutation PMID:27150158 S219T False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83234T>A/c.655T>A/p.S219T +YFL026W STE2 4463 ste2-S232A S232A amino_acid_mutation PMID:8132618 S232A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83273T>G/c.694T>G/p.S232A +YFL026W STE2 4464 ste2-S232A,D242A S232A,D242A amino_acid_mutation PMID:8132618 S232A|D242A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83273T>G/c.694T>G/p.S232A|chrVI:g.83304A>C/c.725A>C/p.D242A +YFL026W STE2 4466 ste2-S232A,L238A S232A,L238A amino_acid_mutation PMID:8132618 S232A|L238A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83273T>G/c.694T>G/p.S232A|chrVI:g.83291_83292delCTinsGC/c.712_713delCTinsGC/p.L238A +YFL026W STE2 4467 ste2-S232A,Q240A S232A,Q240A amino_acid_mutation PMID:8132618 S232A|Q240A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83273T>G/c.694T>G/p.S232A|chrVI:g.83297_83298delCAinsGC/c.718_719delCAinsGC/p.Q240A +YFL026W STE2 4468 ste2-S232A,S243A S232A,S243A amino_acid_mutation PMID:8132618 S232A|S243A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83273T>G/c.694T>G/p.S232A|chrVI:g.83306_83307delAGinsGC/c.727_728delAGinsGC/p.S243A +YFL026W STE2 4469 ste2-S243A S243A amino_acid_mutation PMID:8132618 S243A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83306_83307delAGinsGC/c.727_728delAGinsGC/p.S243A +YFL026W STE2 4470 ste2-S251C S251C amino_acid_mutation PMID:10846179 S251C False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83331_83332delCAinsGT/c.752_753delCAinsGT/p.S251C +YFL026W STE2 4471 ste2-S254F S254F amino_acid_mutation PMID:9819407 S254F False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83340C>T/c.761C>T/p.S254F +YFL026W STE2 4472 ste2-S254L S254L amino_acid_mutation PMID:9819407 S254L False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83339_83340delTCinsCT/c.760_761delTCinsCT/p.S254L +YFL026W STE2 4473 ste2-S259L S259L amino_acid_mutation PMID:10846179,PMID:27150158 S259L False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83355C>T/c.776C>T/p.S259L +YFL026W STE2 4474 ste2-S259P S259P amino_acid_mutation PMID:10846179 S259P False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83354T>C/c.775T>C/p.S259P +YFL026W STE2 4475 ste2-S288P S288P amino_acid_mutation PMID:10841771 S288P False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83441T>C/c.862T>C/p.S288P +YFL026W STE2 4477 ste2-S95Y S95Y amino_acid_mutation PMID:25647246 S95Y False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.82863C>A/c.284C>A/p.S95Y +YFL026W STE2 4478 ste2-T144P T144P amino_acid_mutation PMID:9067610 T144P False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83009A>C/c.430A>C/p.T144P +YFL026W STE2 4479 ste2-T208A T208A amino_acid_mutation PMID:16314417 T208A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83201A>G/c.622A>G/p.T208A +YFL026W STE2 4480 ste2-T274A T274A amino_acid_mutation PMID:10485282 T274A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83399A>G/c.820A>G/p.T274A +YFL026W STE2 4481 ste2-V196A,S219L V196A,S219L amino_acid_mutation PMID:27150158 V196A|S219L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83166T>C/c.587T>C/p.V196A|chrVI:g.83235C>T/c.656C>T/p.S219L +YFL026W STE2 4482 ste2-V223C V223C amino_acid_mutation PMID:10846179 V223C False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83246_83248delGTAinsTGT/c.667_669delGTAinsTGT/p.V223C +YFL026W STE2 4483 ste2-V223I,V257D V223I,V257D amino_acid_mutation PMID:27150158 V223I|V257D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83246G>A/c.667G>A/p.V223I|chrVI:g.83349T>A/c.770T>A/p.V257D +YFL026W STE2 4484 ste2-V45A,V152L,T179I,Q253K V45A,V152L,T179I,Q253K amino_acid_mutation PMID:25647246 V45A|V152L|T179I|Q253K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.82713T>C/c.134T>C/p.V45A|chrVI:g.83033G>C/c.454G>C/p.V152L|chrVI:g.83115C>T/c.536C>T/p.T179I|chrVI:g.83336C>A/c.757C>A/p.Q253K +YFL026W STE2 4485 ste2-V49D V49D amino_acid_mutation PMID:25647246 V49D False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.82725T>A/c.146T>A/p.V49D +YFL026W STE2 4486 ste2-W295C W295C amino_acid_mutation PMID:17176053 W295C False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83464G>T/c.885G>T/p.W295C +YFL026W STE2 4487 ste2-Y203A Y203A amino_acid_mutation PMID:16314417 Y203A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83186_83187delTAinsGC/c.607_608delTAinsGC/p.Y203A +YFL026W STE2 4488 ste2-Y203H Y203H amino_acid_mutation PMID:9742115 Y203H False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83186T>C/c.607T>C/p.Y203H +YFL026W STE2 4489 ste2-Y266C Y266C amino_acid_mutation PMID:27150158 Y266C False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83376A>G/c.797A>G/p.Y266C +YFL026W STE2 4490 ste2-Y266D Y266D amino_acid_mutation PMID:10485282 Y266D False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83375T>G/c.796T>G/p.Y266D +YFL029C CAK1 4506 cak1-D179R D179R amino_acid_mutation PMID:9135146 D179R False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.78626_78627delGAinsCG/c.535_536delGAinsCG/p.D179R +YFL029C CAK1 4507 cak1-K31R K31R amino_acid_mutation PMID:9135146 K31R False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.79070T>C/c.92A>G/p.K31R +YFL029C CAK1 4508 cak1-P212S P212S amino_acid_mutation PMID:18373684 P212S False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.78528G>A/c.634C>T/p.P212S +YFL031W HAC1 4530 hac1-S146A S146A amino_acid_mutation PMID:17108329 S146A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.75548T>G/c.436T>G/p.S146A +YFL033C RIM15 4532 rim15-K823Y K823Y amino_acid_mutation PMID:20471941 K823Y False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.71959_71961delAAGinsTAT/c.2467_2469delAAGinsTAT/p.K823Y +YFL033C RIM15 4533 rim15-S24A S24A amino_acid_mutation PMID:35433688 S24A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.74358A>C/c.70T>G/p.S24A +YFL033C RIM15 4534 rim15-S24E S24E amino_acid_mutation PMID:35433688 S24E False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.74356_74358delTCCinsGAG/c.70_72delTCCinsGAG/p.S24E +YFL036W RPO41 4558 rpo41-R129D R129D amino_acid_mutation PMID:16782871,PMID:18622616 R129D False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.59166_59168delAGAinsGAC/c.385_387delAGAinsGAC/p.R129D +YFL037W TUB2 4567 tub2-C354A C354A amino_acid_mutation PMID:12181356 C354A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.57395_57396delTGinsGC/c.1060_1061delTGinsGC/p.C354A +YFL037W TUB2 4568 tub2-C354S C354S amino_acid_mutation PMID:12181356,PMID:27466378,PMID:32213119 C354S False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.57395T>A/c.1060T>A/p.C354S +YFL037W TUB2 4570 tub2-E421K E421K amino_acid_mutation PMID:23001566 E421K False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.57596G>A/c.1261G>A/p.E421K +YFL037W TUB2 4571 tub2-F265L F265L amino_acid_mutation PMID:30674462 F265L False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.57128T>C/c.793T>C/p.F265L +YFL037W TUB2 4572 tub2-F394S F394S amino_acid_mutation PMID:29016863 F394S False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.57416T>C/c.1181T>C/p.F394S +YFL037W TUB2 4573 tub2-K390Q K390Q amino_acid_mutation PMID:28013290 K390Q False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.57503A>C/c.1168A>C/p.K390Q +YFL037W TUB2 4574 tub2-L250F L250F amino_acid_mutation PMID:35149760 L250F False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.57085G>T/c.750G>T/p.L250F +YFL037W TUB2 4575 tub2-R241C R241C amino_acid_mutation PMID:35149760 R241C False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.57056C>T/c.721C>T/p.R241C +YFL037W TUB2 4576 tub2-R241H R241H amino_acid_mutation PMID:35149760 R241H False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.57057G>A/c.722G>A/p.R241H +YFL037W TUB2 4577 tub2-R241S R241S amino_acid_mutation PMID:35149760 R241S False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.57056C>A/c.721C>A/p.R241S +YFL037W TUB2 4578 tub2-S172A S172A amino_acid_mutation PMID:21042413 S172A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.56749T>G/c.514T>G/p.S172A +YFL037W TUB2 4579 tub2-S172E S172E amino_acid_mutation PMID:21042413 S172E False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.56749_56751delTCTinsGAG/c.514_516delTCTinsGAG/p.S172E +YFL037W TUB2 4580 tub2-T178M T178M amino_acid_mutation PMID:34869359 T178M False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.56868_56869delCCinsTG/c.533_534delCCinsTG/p.T178M +YFL037W TUB2 4581 tub2-V169A V169A amino_acid_mutation PMID:17030980 V169A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.56841T>C/c.506T>C/p.V169A +YFL038C YPT1 4584 ypt1-A136D A136D amino_acid_mutation PMID:18568365 A136D False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.55579_55580delCAinsAC/c.407_408delCAinsAC/p.A136D +YFL038C YPT1 4585 ypt1-G80D G80D amino_acid_mutation PMID:18568365,PMID:30609659 G80D False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.55748C>T/c.239G>A/p.G80D +YFL038C YPT1 4586 ypt1-N121I, A161V N121I, A161V amino_acid_mutation PMID:3286011 N121I|A161V False N121I,A161V amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.55625T>A/c.362A>T/p.N121I|chrVI:g.55505G>A/c.482C>T/p.A161V +YFL038C YPT1 4587 ypt1-Q67L Q67L amino_acid_mutation PMID:26906739,PMID:34821548 Q67L False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.55787T>A/c.200A>T/p.Q67L +YFL038C YPT1 4588 ypt1-S22N S22N amino_acid_mutation PMID:30609659 S22N False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.55922_55923delTCinsAA/c.64_65delTCinsAA/p.S22N +YFL039C ACT1 4635 act1-A167E A167E amino_acid_mutation PMID:18945676 A167E False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53887_53888delCTinsAG/c.500_501delCTinsAG/p.A167E +YFL039C ACT1 4636 act1-A167R A167R amino_acid_mutation PMID:18945676 A167R False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53888_53889delGCinsCG/c.499_500delGCinsCG/p.A167R +YFL039C ACT1 4637 act1-C374Ter C374Ter amino_acid_insertion_and_mutation PMID:1935913 C374Ter False C374TER amino_acid_insertion_and_mutation:multiple_aa amino_acid_insertion_and_mutation chrVI:g.53266_53268delinsCCTCTCTGT/c.1120_1122delinsACAGAGAGG/p.C374_C374delinsTER +YFL039C ACT1 4638 act1-D11K D11K amino_acid_mutation PMID:1935913 D11K False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.54355_54357delGATinsAAG/c.31_33delGATinsAAG/p.D11K +YFL039C ACT1 4639 act1-D11Q D11Q amino_acid_mutation PMID:1935913 D11Q False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.54355_54357delGATinsCAA/c.31_33delGATinsCAA/p.D11Q +YFL039C ACT1 4640 act1-D275R D275R amino_acid_mutation PMID:18945676 D275R False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53564_53565delGAinsCG/c.823_824delGAinsCG/p.D275R +YFL039C ACT1 4641 act1-D56A D56A amino_acid_mutation PMID:34096057 D56A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.54221T>G/c.167A>C/p.D56A +YFL039C ACT1 4642 act1-F375Ter F375Ter amino_acid_insertion_and_mutation PMID:1935913 F375Ter False F375TER amino_acid_insertion_and_mutation:multiple_aa amino_acid_insertion_and_mutation chrVI:g.53263_53265delinsCCTCTCTGT/c.1123_1125delinsACAGAGAGG/p.F375_F375delinsTER +YFL039C ACT1 4643 act1-K118M K118M amino_acid_mutation PMID:22718764,PMID:27463135 K118M False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.54035T>A/c.353A>T/p.K118M +YFL039C ACT1 4644 act1-K118N K118N amino_acid_mutation PMID:22718764,PMID:27463135 K118N False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.54034C>G/c.354G>C/p.K118N +YFL039C ACT1 4645 act1-K373Ter K373Ter amino_acid_insertion_and_mutation PMID:1935913 K373Ter False K373TER amino_acid_insertion_and_mutation:multiple_aa amino_acid_insertion_and_mutation chrVI:g.53269_53271delinsCCTCTCTGT/c.1117_1119delinsACAGAGAGG/p.K373_K373delinsTER +YFL039C ACT1 4647 act1-R177A R177A amino_acid_mutation PMID:16382152 R177A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53858_53859delAGinsGC/c.529_530delAGinsGC/p.R177A +YFL039C ACT1 4648 act1-R256H R256H amino_acid_mutation PMID:22753406,PMID:25146730 R256H False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53620_53622delAGAinsCAT/c.766_768delAGAinsCAT/p.R256H +YFL039C ACT1 4649 act1-S14A S14A amino_acid_mutation PMID:7744777 S14A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.54348A>C/c.40T>G/p.S14A +YFL039C ACT1 4650 act1-S14C S14C amino_acid_mutation PMID:7744777 S14C False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.54347G>C/c.41C>G/p.S14C +YFL039C ACT1 4651 act1-S14G S14G amino_acid_mutation PMID:7744777 S14G False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.54347_54348delTCinsGG/c.40_41delTCinsGG/p.S14G +YFL039C ACT1 4652 act1-S348L S348L amino_acid_mutation PMID:34970864 S348L False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53345_53346delTCinsCT/c.1042_1043delTCinsCT/p.S348L +YFL045C SEC53 4656 sec53-E100K E100K amino_acid_mutation PMID:30530630 E100K False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.44095C>T/c.298G>A/p.E100K +YFL045C SEC53 4657 sec53-E146K E146K amino_acid_mutation PMID:30530630 E146K False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.43957C>T/c.436G>A/p.E146K +YFL045C SEC53 4658 sec53-F126L F126L amino_acid_mutation PMID:30530630,PMID:36214454 F126L False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.44017A>G/c.376T>C/p.F126L +YFL045C SEC53 4659 sec53-R148H R148H amino_acid_mutation PMID:30530630 R148H False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.43949_43951delAGAinsCAT/c.442_444delAGAinsCAT/p.R148H +YFL045C SEC53 4660 sec53-V238M V238M amino_acid_mutation PMID:30530630,PMID:36214454 V238M False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.43679_43681delGTAinsATG/c.712_714delGTAinsATG/p.V238M +YFR004W RPN11 4680 rpn11-C116A C116A amino_acid_mutation PMID:12370088,PMID:31487956 C116A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.153738_153739delTGinsGC/c.346_347delTGinsGC/p.C116A +YFR004W RPN11 4683 rpn11-D122A D122A amino_acid_mutation PMID:12370088,PMID:31487956 D122A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.153757A>C/c.365A>C/p.D122A +YFR004W RPN11 4684 rpn11-H111A H111A amino_acid_mutation PMID:12370088,PMID:31487956 H111A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.153723_153724delCAinsGC/c.331_332delCAinsGC/p.H111A +YFR004W RPN11 4685 rpn11-S119A S119A amino_acid_mutation PMID:12370088,PMID:31487956 S119A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.153747T>G/c.355T>G/p.S119A +YFR004W RPN11 4686 rpn11-S119F S119F amino_acid_mutation PMID:32401766 S119F False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.153748C>T/c.356C>T/p.S119F +YFR010W UBP6 4690 ubp6-C118A C118A amino_acid_mutation PMID:35149681 C118A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.165418_165419delTGinsGC/c.352_353delTGinsGC/p.C118A +YFR010W UBP6 4691 ubp6-C118A,I329A,L330A C118A,I329A,L330A amino_acid_mutation PMID:35149681 C118A|I329A|L330A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.165418_165419delTGinsGC/c.352_353delTGinsGC/p.C118A|chrVI:g.166051_166052delATinsGC/c.985_986delATinsGC/p.I329A|chrVI:g.166054_166055delTTinsGC/c.988_989delTTinsGC/p.L330A +YFR013W IOC3 4692 ioc3-M254V M254V amino_acid_mutation PMID:31611676 M254V False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.170681A>G/c.760A>G/p.M254V +YFR019W FAB1 4699 fab1-D2134R D2134R amino_acid_mutation PMID:9763421,PMID:9865702 D2134R False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.190901_190902delGAinsCG/c.6400_6401delGAinsCG/p.D2134R +YFR019W FAB1 4702 fab1-L1498R L1498R amino_acid_mutation PMID:31611676 L1498R False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.188994T>G/c.4493T>G/p.L1498R +YFR019W FAB1 4703 fab1-T2250A T2250A amino_acid_mutation PMID:32388897,PMID:36334632 T2250A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.191249A>G/c.6748A>G/p.T2250A +YFR027W ECO1 4715 eco1-H53Y H53Y amino_acid_mutation PMID:20703090 H53Y False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.207608C>T/c.157C>T/p.H53Y +YFR027W ECO1 4716 eco1-R222G,K223G R222G,K223G amino_acid_mutation PMID:11864574,PMID:20703090 R222G|K223G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.208043A>G/c.664A>G/p.R222G|chrVI:g.208118_208119delAAinsGG/c.667_668delAAinsGG/p.K223G +YFR027W ECO1 4717 eco1-W216G W216G amino_acid_mutation PMID:19948494,PMID:20797861,PMID:22719263 W216G False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.208025T>G/c.646T>G/p.W216G +YFR028C CDC14 4730 cdc14-C283S C283S amino_acid_mutation PMID:20980394 C283S False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.209222A>T/c.847T>A/p.C283S +YFR030W MET10 4736 met10-E929K E929K amino_acid_mutation PMID:19236486 E929K False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.216096G>A/c.2785G>A/p.E929K +YFR030W MET10 4737 met10-T662K T662K amino_acid_mutation PMID:24841117 T662K False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.215296C>A/c.1985C>A/p.T662K +YFR031C SMC2 4742 smc2-E1113Q E1113Q amino_acid_mutation PMID:34951453 E1113Q False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.216770C>G/c.3337G>C/p.E1113Q +YFR031C SMC2 4743 smc2-K38I K38I amino_acid_mutation PMID:32259483 K38I False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.219993_219994delAGinsTC/c.113_114delAGinsTC/p.K38I +YFR031C SMC2 4744 smc2-Q147L Q147L amino_acid_mutation PMID:34951453 Q147L False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.219667T>A/c.440A>T/p.Q147L +YFR043C IRC6 4760 irc6-Y236* Y236* partial_amino_acid_deletion PMID:30872642 Y236* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrVI:g.239120A>T/c.708T>A/p.Y236* +YFR053C HXK1 4772 hxk1-S306P S306P amino_acid_mutation PMID:29422502 S306P False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.254134A>G/c.916T>C/p.S306P +YFR055W IRC7 4774 irc7-G253R G253R amino_acid_mutation PMID:30658969 G253R False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.264960G>A/c.757G>A/p.G253R +YFR055W IRC7 4775 irc7-G321D G321D amino_acid_mutation PMID:30658969 G321D False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.265165G>A/c.962G>A/p.G321D +YFR055W IRC7 4776 irc7-H197Q H197Q amino_acid_mutation PMID:34643787 H197Q False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.264794T>A/c.591T>A/p.H197Q +YFR055W IRC7 4777 irc7-K43R K43R amino_acid_mutation PMID:34643787 K43R False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.264331A>G/c.128A>G/p.K43R +YFR055W IRC7 4780 irc7-T185A T185A amino_acid_mutation PMID:30658969 T185A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.264756A>G/c.553A>G/p.T185A +YFR055W IRC7 4781 irc7-T185A,E323G T185A,E323G amino_acid_mutation PMID:30658969 T185A|E323G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.264756A>G/c.553A>G/p.T185A|chrVI:g.265171A>G/c.968A>G/p.E323G +YFR055W IRC7 4782 irc7-T185A,G253R T185A,G253R amino_acid_mutation PMID:30658969 T185A|G253R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.264756A>G/c.553A>G/p.T185A|chrVI:g.264960G>A/c.757G>A/p.G253R +YFR055W IRC7 4783 irc7-T185A,G321D T185A,G321D amino_acid_mutation PMID:30658969 T185A|G321D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.264756A>G/c.553A>G/p.T185A|chrVI:g.265165G>A/c.962G>A/p.G321D +YFR055W IRC7 4784 irc7-T185A,K43R T185A,K43R amino_acid_mutation PMID:30658969 T185A|K43R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.264756A>G/c.553A>G/p.T185A|chrVI:g.264331A>G/c.128A>G/p.K43R +YFR055W IRC7 4785 irc7-T185A,P146R T185A,P146R amino_acid_mutation PMID:30658969 T185A|P146R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.264756A>G/c.553A>G/p.T185A|chrVI:g.264640C>G/c.437C>G/p.P146R +YFR055W IRC7 4787 irc7-Y56* Y56* partial_amino_acid_deletion PMID:34643787 Y56* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrVI:g.264371C>A/c.168C>A/p.Y56* +YGL001C ERG26 4790 erg26-R39K R39K amino_acid_mutation PMID:26456460 R39K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.496387C>T/c.116G>A/p.R39K +YGL008C PMA1 4796 PMA1-D378T D378T amino_acid_mutation PMID:19929866,PMID:21205016,PMID:23825623 D378T False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.481534_481535delGAinsAC/c.1132_1133delGAinsAC/p.D378T +YGL008C PMA1 4820 pma1-E803A E803A amino_acid_mutation PMID:17573037 E803A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480259T>G/c.2408A>C/p.E803A +YGL008C PMA1 4821 pma1-F796A F796A amino_acid_mutation PMID:32876544 F796A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480280_480281delTTinsGC/c.2386_2387delTTinsGC/p.F796A +YGL008C PMA1 4822 pma1-F808A F808A amino_acid_mutation PMID:17573037 F808A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480244_480245delTTinsGC/c.2422_2423delTTinsGC/p.F808A +YGL008C PMA1 4823 pma1-G793A G793A amino_acid_mutation PMID:17573037 G793A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480289C>G/c.2378G>C/p.G793A +YGL008C PMA1 4824 pma1-G793E G793E amino_acid_mutation PMID:17573037 G793E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480288_480289delGTinsAG/c.2378_2379delGTinsAG/p.G793E +YGL008C PMA1 4826 pma1-I794A I794A amino_acid_mutation PMID:17573037 I794A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480525_480526delATinsGC/c.2380_2381delATinsGC/p.I794A +YGL008C PMA1 4827 pma1-I799A I799A amino_acid_mutation PMID:17573037 I799A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480271_480272delATinsGC/c.2395_2396delATinsGC/p.I799A +YGL008C PMA1 4828 pma1-I807A I807A amino_acid_mutation PMID:17573037 I807A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480247_480248delATinsGC/c.2419_2420delATinsGC/p.I807A +YGL008C PMA1 4829 pma1-I809A I809A amino_acid_mutation PMID:17573037 I809A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480241_480242delATinsGC/c.2425_2426delATinsGC/p.I809A +YGL008C PMA1 4830 pma1-L797A L797A amino_acid_mutation PMID:17573037 L797A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480277_480278delTTinsGC/c.2389_2390delTTinsGC/p.L797A +YGL008C PMA1 4831 pma1-L801A L801A amino_acid_mutation PMID:17573037 L801A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480265_480266delTTinsGC/c.2401_2402delTTinsGC/p.L801A +YGL008C PMA1 4832 pma1-L801A,E803A,E847A L801A,E803A,E847A amino_acid_mutation PMID:32876544 L801A|E803A|E847A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480265_480266delTTinsGC/c.2401_2402delTTinsGC/p.L801A|chrVII:g.480259T>G/c.2408A>C/p.E803A|chrVII:g.480127T>G/c.2540A>C/p.E847A +YGL008C PMA1 4833 pma1-L806A L806A amino_acid_mutation PMID:17573037 L806A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480489_480490delCTinsGC/c.2416_2417delCTinsGC/p.L806A +YGL008C PMA1 4834 pma1-M791A M791A amino_acid_mutation PMID:17573037 M791A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480295_480296delATinsGC/c.2371_2372delATinsGC/p.M791A +YGL008C PMA1 4835 pma1-M795A M795A amino_acid_mutation PMID:17573037 M795A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480283_480284delATinsGC/c.2383_2384delATinsGC/p.M795A +YGL008C PMA1 4836 pma1-N792A N792A amino_acid_mutation PMID:17573037 N792A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480292_480293delAAinsGC/c.2374_2375delAAinsGC/p.N792A +YGL008C PMA1 4837 pma1-N792D N792D amino_acid_mutation PMID:17573037 N792D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480293T>C/c.2374A>G/p.N792D +YGL008C PMA1 4838 pma1-N792H N792H amino_acid_mutation PMID:17573037 N792H False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480293T>G/c.2374A>C/p.N792H +YGL008C PMA1 4839 pma1-N792Q N792Q amino_acid_mutation PMID:17573037 N792Q False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480291_480293delAACinsCAA/c.2374_2376delAACinsCAA/p.N792Q +YGL008C PMA1 4840 pma1-N804A N804A amino_acid_mutation PMID:17573037 N804A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480256_480257delAAinsGC/c.2410_2411delAAinsGC/p.N804A +YGL008C PMA1 4841 pma1-Q798A Q798A amino_acid_mutation PMID:17573037 Q798A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480274_480275delCAinsGC/c.2392_2393delCAinsGC/p.Q798A +YGL008C PMA1 4842 pma1-R811A R811A amino_acid_mutation PMID:17573037 R811A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480235_480236delAGinsGC/c.2431_2432delAGinsGC/p.R811A +YGL008C PMA1 4843 pma1-S234C S234C amino_acid_mutation PMID:35511982 S234C False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.481966G>C/c.701C>G/p.S234C +YGL008C PMA1 4844 pma1-S800A S800A amino_acid_mutation PMID:17573037 S800A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480269A>C/c.2398T>G/p.S800A +YGL008C PMA1 4845 pma1-S911A S911A amino_acid_mutation PMID:19797769 S911A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.479936A>C/c.2731T>G/p.S911A +YGL008C PMA1 4846 pma1-S911D,T912D S911D,T912D amino_acid_mutation PMID:32876544 S911D|T912D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.479935_479936delTCinsGA/c.2731_2732delTCinsGA/p.S911D|chrVII:g.479932_479933delACinsGA/c.2734_2735delACinsGA/p.T912D +YGL008C PMA1 4848 pma1-T802A T802A amino_acid_mutation PMID:17573037 T802A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480263T>C/c.2404A>G/p.T802A +YGL008C PMA1 4849 pma1-T810A T810A amino_acid_mutation PMID:17573037 T810A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480239T>C/c.2428A>G/p.T810A +YGL008C PMA1 4850 pma1-T850S T850S amino_acid_mutation PMID:32876544 T850S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480118G>C/c.2549C>G/p.T850S +YGL008C PMA1 4851 pma1-W805A W805A amino_acid_mutation PMID:17573037 W805A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480253_480254delTGinsGC/c.2413_2414delTGinsGC/p.W805A +YGL013C PDR1 4863 PDR1-R821S R821S amino_acid_mutation PMID:18469127,PMID:23523622 R821S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.469838G>T/c.2461C>A/p.R821S +YGL013C PDR1 4868 pdr1-V819D V819D amino_acid_mutation PMID:31728740 V819D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.469843A>T/c.2456T>A/p.V819D +YGL020C GET1 4873 get1-A95C A95C amino_acid_mutation PMID:28877464 A95C False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.457587_457588delGCinsTG/c.283_284delGCinsTG/p.A95C +YGL020C GET1 4874 get1-S77C S77C amino_acid_mutation PMID:28877464 S77C False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.457640_457641delCGinsGT/c.230_231delCGinsGT/p.S77C +YGL022W STT3 4879 stt3-D518E D518E amino_acid_mutation PMID:18046457 D518E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.453957T>G/c.1554T>G/p.D518E +YGL022W STT3 4880 stt3-D582A D582A amino_acid_mutation PMID:18046457 D582A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.454148A>C/c.1745A>C/p.D582A +YGL022W STT3 4881 stt3-D583A D583A amino_acid_mutation PMID:18046457 D583A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.454151A>C/c.1748A>C/p.D583A +YGL022W STT3 4882 stt3-E45A E45A amino_acid_mutation PMID:32938717 E45A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.452537A>C/c.134A>C/p.E45A +YGL022W STT3 4883 stt3-G163R G163R amino_acid_mutation PMID:14676317,PMID:7590309 G163R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.452890G>A/c.487G>A/p.G163R +YGL022W STT3 4884 stt3-K586A K586A amino_acid_mutation PMID:18046457 K586A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.454086_454087delAAinsGC/c.1756_1757delAAinsGC/p.K586A +YGL022W STT3 4885 stt3-K586R K586R amino_acid_mutation PMID:18046457 K586R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.454087A>G/c.1757A>G/p.K586R +YGL022W STT3 4886 stt3-W589A W589A amino_acid_mutation PMID:18046457 W589A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.454168_454169delTGinsGC/c.1765_1766delTGinsGC/p.W589A +YGL022W STT3 4887 stt3-Y519A Y519A amino_acid_mutation PMID:18046457 Y519A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.453958_453959delTAinsGC/c.1555_1556delTAinsGC/p.Y519A +YGL023C PIB2 4907 pib2-K59A,K60A,K61A K59A,K60A,K61A amino_acid_mutation PMID:36000409 K59A|K60A|K61A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.451929_451930delAAinsGC/c.175_176delAAinsGC/p.K59A|chrVII:g.451926_451927delAAinsGC/c.178_179delAAinsGC/p.K60A|chrVII:g.451923_451924delAAinsGC/c.181_182delAAinsGC/p.K61A +YGL023C PIB2 4908 pib2-K59A,K60A,K61A,S113A,S118A K59A,K60A,K61A,S113A,S118A amino_acid_mutation PMID:36000409 K59A|K60A|K61A|S113A|S118A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.451929_451930delAAinsGC/c.175_176delAAinsGC/p.K59A|chrVII:g.451926_451927delAAinsGC/c.178_179delAAinsGC/p.K60A|chrVII:g.451923_451924delAAinsGC/c.181_182delAAinsGC/p.K61A|chrVII:g.451768A>C/c.337T>G/p.S113A|chrVII:g.451753A>C/c.352T>G/p.S118A +YGL023C PIB2 4909 pib2-K59A,K60A,K61A,S113E,S118E K59A,K60A,K61A,S113E,S118E amino_acid_mutation PMID:36000409 K59A|K60A|K61A|S113E|S118E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.451929_451930delAAinsGC/c.175_176delAAinsGC/p.K59A|chrVII:g.451926_451927delAAinsGC/c.178_179delAAinsGC/p.K60A|chrVII:g.451923_451924delAAinsGC/c.181_182delAAinsGC/p.K61A|chrVII:g.451766_451768delTCTinsGAG/c.337_339delTCTinsGAG/p.S113E|chrVII:g.451751_451753delTCCinsGAG/c.352_354delTCCinsGAG/p.S118E +YGL023C PIB2 4910 pib2-K59E,K60E,K61E K59E,K60E,K61E amino_acid_mutation PMID:36000409 K59E|K60E|K61E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.451930T>C/c.175A>G/p.K59E|chrVII:g.451927T>C/c.178A>G/p.K60E|chrVII:g.451924T>C/c.181A>G/p.K61E +YGL023C PIB2 4911 pib2-K59E,K60E,K61E,S113A,S118A K59E,K60E,K61E,S113A,S118A amino_acid_mutation PMID:36000409 K59E|K60E|K61E|S113A|S118A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.451930T>C/c.175A>G/p.K59E|chrVII:g.451927T>C/c.178A>G/p.K60E|chrVII:g.451924T>C/c.181A>G/p.K61E|chrVII:g.451768A>C/c.337T>G/p.S113A|chrVII:g.451753A>C/c.352T>G/p.S118A +YGL023C PIB2 4912 pib2-K59E,K60E,K61E,S113E,S118E K59E,K60E,K61E,S113E,S118E amino_acid_mutation PMID:36000409 K59E|K60E|K61E|S113E|S118E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.451930T>C/c.175A>G/p.K59E|chrVII:g.451927T>C/c.178A>G/p.K60E|chrVII:g.451924T>C/c.181A>G/p.K61E|chrVII:g.451766_451768delTCTinsGAG/c.337_339delTCTinsGAG/p.S113E|chrVII:g.451751_451753delTCCinsGAG/c.352_354delTCCinsGAG/p.S118E +YGL023C PIB2 4913 pib2-K59R,K60R,K61R K59R,K60R,K61R amino_acid_mutation PMID:36000409 K59R|K60R|K61R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.451929T>C/c.176A>G/p.K59R|chrVII:g.451926T>C/c.179A>G/p.K60R|chrVII:g.451923T>C/c.182A>G/p.K61R +YGL023C PIB2 4914 pib2-L340A L340A amino_acid_mutation PMID:34535752 L340A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.451086_451087delCTinsGC/c.1018_1019delCTinsGC/p.L340A +YGL023C PIB2 4915 pib2-P330A,K331A,K332A P330A,K331A,K332A amino_acid_mutation PMID:36000409 P330A|K331A|K332A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.451117G>C/c.988C>G/p.P330A|chrVII:g.451113_451114delAAinsGC/c.991_992delAAinsGC/p.K331A|chrVII:g.451110_451111delAAinsGC/c.994_995delAAinsGC/p.K332A +YGL023C PIB2 4916 pib2-P333A,L334A,Y335A P333A,L334A,Y335A amino_acid_mutation PMID:36000409 P333A|L334A|Y335A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.451108G>C/c.997C>G/p.P333A|chrVII:g.451104_451105delCTinsGC/c.1000_1001delCTinsGC/p.L334A|chrVII:g.451101_451102delTAinsGC/c.1003_1004delTAinsGC/p.Y335A +YGL023C PIB2 4917 pib2-P337A P337A amino_acid_mutation PMID:34535752 P337A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.451096G>C/c.1009C>G/p.P337A +YGL023C PIB2 4918 pib2-R325A,Q326A,I327A R325A,Q326A,I327A amino_acid_mutation PMID:36000409 R325A|Q326A|I327A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.451131_451132delAGinsGC/c.973_974delAGinsGC/p.R325A|chrVII:g.451128_451129delCAinsGC/c.976_977delCAinsGC/p.Q326A|chrVII:g.451125_451126delATinsGC/c.979_980delATinsGC/p.I327A +YGL023C PIB2 4919 pib2-R341A R341A amino_acid_mutation PMID:34535752 R341A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.451083_451084delAGinsGC/c.1021_1022delAGinsGC/p.R341A +YGL023C PIB2 4920 pib2-R470A,H472A,H473A R470A,H472A,H473A amino_acid_mutation PMID:36000409 R470A|H472A|H473A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.450696_450697delAGinsGC/c.1408_1409delAGinsGC/p.R470A|chrVII:g.450690_450691delCAinsGC/c.1414_1415delCAinsGC/p.H472A|chrVII:g.450687_450688delCAinsGC/c.1417_1418delCAinsGC/p.H473A +YGL023C PIB2 4922 pib2-S113A,S118A S113A,S118A amino_acid_mutation PMID:36000409 S113A|S118A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.451768A>C/c.337T>G/p.S113A|chrVII:g.451753A>C/c.352T>G/p.S118A +YGL023C PIB2 4923 pib2-S113E,S118E S113E,S118E amino_acid_mutation PMID:36000409 S113E|S118E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.451766_451768delTCTinsGAG/c.337_339delTCTinsGAG/p.S113E|chrVII:g.451751_451753delTCCinsGAG/c.352_354delTCCinsGAG/p.S118E +YGL023C PIB2 4924 pib2-V339A,L340A,R341A V339A,L340A,R341A amino_acid_mutation PMID:36000409 V339A|L340A|R341A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.451089A>G/c.1016T>C/p.V339A|chrVII:g.451086_451087delCTinsGC/c.1018_1019delCTinsGC/p.L340A|chrVII:g.451083_451084delAGinsGC/c.1021_1022delAGinsGC/p.R341A +YGL023C PIB2 4925 pib2-W449A,D452A W449A,D452A amino_acid_mutation PMID:36000409 W449A|D452A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.450759_450760delTGinsGC/c.1345_1346delTGinsGC/p.W449A|chrVII:g.450750T>G/c.1355A>C/p.D452A +YGL035C MIG1 4939 mig1-C43F C43F amino_acid_mutation PMID:10217505 C43F False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.432935C>A/c.128G>T/p.C43F +YGL035C MIG1 4940 mig1-S222D,S278D,S311D,S381D S222D,S278D,S311D,S381D amino_acid_mutation PMID:35028974 S222D|S278D|S311D|S381D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.432398_432399delAGinsGA/c.664_665delAGinsGA/p.S222D|chrVII:g.432230_432231delTCinsGA/c.832_833delTCinsGA/p.S278D|chrVII:g.432130_432132delTCAinsGAC/c.931_933delTCAinsGAC/p.S311D|chrVII:g.431921_431922delAGinsGA/c.1141_1142delAGinsGA/p.S381D +YGL035C MIG1 4942 mig1-T489A,S495A T489A,S495A amino_acid_mutation PMID:35028974 T489A|S495A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.431598T>C/c.1465A>G/p.T489A|chrVII:g.431579_431580delAGinsGC/c.1483_1484delAGinsGC/p.S495A +YGL035C MIG1 4943 mig1-T489D,S495D T489D,S495D amino_acid_mutation PMID:35028974 T489D|S495D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.431596_431598delACAinsGAC/c.1465_1467delACAinsGAC/p.T489D|chrVII:g.431579_431580delAGinsGA/c.1483_1484delAGinsGA/p.S495D +YGL037C PNC1 4945 pnc1-C167A C167A amino_acid_mutation PMID:14729974,PMID:33749726 C167A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.427448_427449delTGinsGC/c.499_500delTGinsGC/p.C167A +YGL045W RIM8 4956 rim8-Q366R Q366R amino_acid_mutation PMID:31728740 Q366R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.415198A>G/c.1097A>G/p.Q366R +YGL048C RPT6 4966 rpt6-K195R K195R amino_acid_mutation PMID:21931558,PMID:9724628 K195R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.410703T>C/c.584A>G/p.K195R +YGL048C RPT6 4967 rpt6-S119A S119A amino_acid_mutation PMID:28662109 S119A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.410932A>C/c.355T>G/p.S119A +YGL048C RPT6 4968 rpt6-S119D S119D amino_acid_mutation PMID:28662109 S119D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.410931_410932delTCinsGA/c.355_356delTCinsGA/p.S119D +YGL048C RPT6 4969 rpt6-Y222A Y222A amino_acid_mutation PMID:22493437 Y222A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.410622_410623delTAinsGC/c.664_665delTAinsGC/p.Y222A +YGL049C TIF4632 4973 tif4632-L574F L574F amino_acid_mutation PMID:23184954 L574F False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.407883T>A/c.1722A>T/p.L574F +YGL049C TIF4632 4974 tif4632-M570K M570K amino_acid_mutation PMID:23184954 M570K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.407896A>T/c.1709T>A/p.M570K +YGL049C TIF4632 4977 tif4632-T578I T578I amino_acid_mutation PMID:23184954 T578I False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.407872G>A/c.1733C>T/p.T578I +YGL049C TIF4632 4978 tif4632-W539A W539A amino_acid_mutation PMID:23184954 W539A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.407989_407990delTGinsGC/c.1615_1616delTGinsGC/p.W539A +YGL058W RAD6 4989 rad6-149 R140A, V141A 149 R140A, V141A amino_acid_deletion_and_mutation PMID:8898388 149|R140A|V141A False 149,R140A,V141A partial_amino_acid_deletion:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_deletion_and_mutation chrVII:g.394102_394104delGAT/c.445_447delGAT/p.D149delD|chrVII:g.394403_394404delAGinsGC/c.418_419delAGinsGC/p.R140A|chrVII:g.394407T>C/c.422T>C/p.V141A +YGL058W RAD6 4990 rad6-149 T144A, S148A 149 T144A, S148A amino_acid_deletion_and_mutation PMID:8898388 149|T144A|S148A False 149,T144A,S148A partial_amino_acid_deletion:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_deletion_and_mutation chrVII:g.394102_394104delGAT/c.445_447delGAT/p.D149delD|chrVII:g.394415A>G/c.430A>G/p.T144A|chrVII:g.394427T>G/c.442T>G/p.S148A +YGL058W RAD6 4995 rad6-A126F A126F amino_acid_mutation PMID:36162503 A126F False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394361_394362delGCinsTT/c.376_377delGCinsTT/p.A126F +YGL058W RAD6 4996 rad6-A126T A126T amino_acid_mutation PMID:10803884,PMID:36162503 A126T False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394361G>A/c.376G>A/p.A126T +YGL058W RAD6 4997 rad6-C88A C88A amino_acid_mutation PMID:2157209,PMID:36162503,PMID:9343433 C88A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394247_394248delTGinsGC/c.262_263delTGinsGC/p.C88A +YGL058W RAD6 4998 rad6-C88S C88S amino_acid_mutation PMID:1658333,PMID:35638611,PMID:9343433 C88S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394247T>A/c.262T>A/p.C88S +YGL058W RAD6 4999 rad6-C88V C88V amino_acid_mutation PMID:2157209 C88V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394247_394248delTGinsGT/c.262_263delTGinsGT/p.C88V +YGL058W RAD6 5000 rad6-D60L,E61L,E62L D60L,E61L,E62L amino_acid_mutation PMID:35613580 D60L|E61L|E62L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394163_394164delGAinsCT/c.178_179delGAinsCT/p.D60L|chrVII:g.394166_394167delGAinsCT/c.181_182delGAinsCT/p.E61L|chrVII:g.393841_393842delGAinsCT/c.184_185delGAinsCT/p.E62L +YGL058W RAD6 5001 rad6-E49K E49K amino_acid_mutation PMID:10803884 E49K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394130G>A/c.145G>A/p.E49K +YGL058W RAD6 5002 rad6-N80A N80A amino_acid_mutation PMID:35613580 N80A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394223_394224delAAinsGC/c.238_239delAAinsGC/p.N80A +YGL058W RAD6 5003 rad6-N80A,Y82A N80A,Y82A amino_acid_mutation PMID:35613580 N80A|Y82A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394223_394224delAAinsGC/c.238_239delAAinsGC/p.N80A|chrVII:g.394229_394230delTAinsGC/c.244_245delTAinsGC/p.Y82A +YGL058W RAD6 5004 rad6-N84A N84A amino_acid_mutation PMID:35613580 N84A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.393907_393908delAAinsGC/c.250_251delAAinsGC/p.N84A +YGL058W RAD6 5005 rad6-N84L N84L amino_acid_mutation PMID:35613580 N84L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.393907_393908delAAinsCT/c.250_251delAAinsCT/p.N84L +YGL058W RAD6 5006 rad6-N94L N94L amino_acid_mutation PMID:35613580 N94L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.393937_393938delAAinsCT/c.280_281delAAinsCT/p.N94L +YGL058W RAD6 5007 rad6-P43L P43L amino_acid_mutation PMID:10803884 P43L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394113C>T/c.128C>T/p.P43L +YGL058W RAD6 5008 rad6-P4L,A5V P4L,A5V amino_acid_mutation PMID:10803884 P4L|A5V False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.393996C>T/c.11C>T/p.P4L|chrVII:g.393999C>T/c.14C>T/p.A5V +YGL058W RAD6 5009 rad6-P98L P98L amino_acid_mutation PMID:10803884 P98L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394278C>T/c.293C>T/p.P98L +YGL058W RAD6 5010 rad6-Q93E Q93E amino_acid_mutation PMID:35613580 Q93E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394262C>G/c.277C>G/p.Q93E +YGL058W RAD6 5011 rad6-Q93R Q93R amino_acid_mutation PMID:35613580 Q93R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394263A>G/c.278A>G/p.Q93R +YGL058W RAD6 5012 rad6-R7A,R11A R7A,R11A amino_acid_mutation PMID:35613580 R7A|R11A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394004_394005delAGinsGC/c.19_20delAGinsGC/p.R7A|chrVII:g.394016_394017delAGinsGC/c.31_32delAGinsGC/p.R11A +YGL058W RAD6 5014 rad6-Y82A Y82A amino_acid_mutation PMID:35613580 Y82A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394229_394230delTAinsGC/c.244_245delTAinsGC/p.Y82A +YGL058W RAD6 5015 rad6-Y82E Y82E amino_acid_mutation PMID:35613580 Y82E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394229_394231delTATinsGAG/c.244_246delTATinsGAG/p.Y82E +YGL061C DUO1 5019 duo1-S115F S115F amino_acid_mutation PMID:23275890 S115F False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.389368G>A/c.344C>T/p.S115F +YGL067W NPY1 5024 npy1-E275Q,E276Q E275Q,E276Q amino_acid_mutation PMID:34074215 E275Q|E276Q False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.376923G>C/c.823G>C/p.E275Q|chrVII:g.376926G>C/c.826G>C/p.E276Q +YGL071W AFT1 5028 aft1-S210A,S224A S210A,S224A amino_acid_mutation PMID:29032057 S210A|S224A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.372639T>G/c.628T>G/p.S210A|chrVII:g.372681T>G/c.670T>G/p.S224A +YGL073W HSF1 5029 Hsf1-R206S R206S amino_acid_mutation PMID:18323774 R206S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.369370G>C/c.618G>C/p.R206S +YGL073W HSF1 5034 hsf1-F256S F256S amino_acid_mutation PMID:16806072 F256S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.369519T>C/c.767T>C/p.F256S +YGL073W HSF1 5035 hsf1-H220R H220R amino_acid_mutation PMID:16806072 H220R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.369411A>G/c.659A>G/p.H220R +YGL073W HSF1 5036 hsf1-N222Y N222Y amino_acid_mutation PMID:16806072 N222Y False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.369416A>T/c.664A>T/p.N222Y +YGL073W HSF1 5037 hsf1-R206S,F256S R206S,F256S amino_acid_mutation PMID:18270585 R206S|F256S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.369370G>C/c.618G>C/p.R206S|chrVII:g.369519T>C/c.767T>C/p.F256S +YGL083W SCY1 5049 scy1-P42S P42S amino_acid_mutation PMID:32303542 P42S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.353181C>T/c.124C>T/p.P42S +YGL087C MMS2 5053 mms2-I57A I57A amino_acid_mutation PMID:17964296 I57A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.346650_346651delATinsGC/c.169_170delATinsGC/p.I57A +YGL087C MMS2 5054 mms2-S27A S27A amino_acid_mutation PMID:17964296 S27A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.346740_346741delAGinsGC/c.79_80delAGinsGC/p.S27A +YGL087C MMS2 5055 mms2-S27A,I57A S27A,I57A amino_acid_mutation PMID:17964296 S27A|I57A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.346740_346741delAGinsGC/c.79_80delAGinsGC/p.S27A|chrVII:g.346650_346651delATinsGC/c.169_170delATinsGC/p.I57A +YGL093W SPC105 5069 spc105-S28N S28N amino_acid_mutation PMID:35283819 S28N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.334968G>A/c.83G>A/p.S28N +YGL115W SNF4 5105 SNF4-N177S N177S amino_acid_mutation PMID:34555030 N177S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.292562A>G/c.530A>G/p.N177S +YGL115W SNF4 5107 snf4-C136A C136A amino_acid_mutation PMID:18474591 C136A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.292290_292291delTGinsGC/c.406_407delTGinsGC/p.C136A +YGL115W SNF4 5108 snf4-C136Y C136Y amino_acid_mutation PMID:18474591 C136Y False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.292291G>A/c.407G>A/p.C136Y +YGL115W SNF4 5109 snf4-E269* E269* partial_amino_acid_deletion PMID:32695222,PMID:35311587 E269* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrVII:g.292837G>T/c.805G>T/p.E269* +YGL115W SNF4 5110 snf4-G145D G145D amino_acid_mutation PMID:10224244 G145D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.292466G>A/c.434G>A/p.G145D +YGL115W SNF4 5111 snf4-G145E G145E amino_acid_mutation PMID:18474591 G145E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.292466_292467delGTinsAG/c.434_435delGTinsAG/p.G145E +YGL115W SNF4 5112 snf4-H293A H293A amino_acid_mutation PMID:18474591 H293A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.292909_292910delCAinsGC/c.877_878delCAinsGC/p.H293A +YGL115W SNF4 5113 snf4-H293E H293E amino_acid_mutation PMID:18474591 H293E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.292909_292911delCATinsGAG/c.877_879delCATinsGAG/p.H293E +YGL115W SNF4 5114 snf4-K52E K52E amino_acid_mutation PMID:8985180 K52E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.292186A>G/c.154A>G/p.K52E +YGL115W SNF4 5115 snf4-N177A N177A amino_acid_mutation PMID:18474591 N177A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.292561_292562delAAinsGC/c.529_530delAAinsGC/p.N177A +YGL115W SNF4 5116 snf4-N177Y N177Y amino_acid_mutation PMID:18474591 N177Y False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.292561A>T/c.529A>T/p.N177Y +YGL115W SNF4 5117 snf4-N251A N251A amino_acid_mutation PMID:18474591 N251A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.292783_292784delAAinsGC/c.751_752delAAinsGC/p.N251A +YGL115W SNF4 5118 snf4-N251I N251I amino_acid_mutation PMID:18474591 N251I False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.292784A>T/c.752A>T/p.N251I +YGL115W SNF4 5119 snf4-R146Q R146Q amino_acid_mutation PMID:18474591 R146Q False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.292468_292469delAGinsCA/c.436_437delAGinsCA/p.R146Q +YGL115W SNF4 5120 snf4-R169A R169A amino_acid_mutation PMID:18474591 R169A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.292537_292538delAGinsGC/c.505_506delAGinsGC/p.R169A +YGL115W SNF4 5121 snf4-R294G R294G amino_acid_mutation PMID:18474591 R294G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.292912A>G/c.880A>G/p.R294G +YGL115W SNF4 5122 snf4-R294Q R294Q amino_acid_mutation PMID:18474591 R294Q False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.292912_292913delAGinsCA/c.880_881delAGinsCA/p.R294Q +YGL115W SNF4 5123 snf4-T166N T166N amino_acid_mutation PMID:18474591 T166N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.292529_292530delCGinsAC/c.497_498delCGinsAC/p.T166N +YGL115W SNF4 5124 snf4-V63A V63A amino_acid_mutation PMID:18474591 V63A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.292220T>C/c.188T>C/p.V63A +YGL115W SNF4 5125 snf4-V63Q V63Q amino_acid_mutation PMID:18474591 V63Q False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.292219_292221delGTCinsCAA/c.187_189delGTCinsCAA/p.V63Q +YGL119W COQ8 5131 abc1-E409K E409K amino_acid_mutation PMID:18319072 E409K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.285666G>A/c.1225G>A/p.E409K +YGL119W COQ8 5132 abc1-G130D G130D amino_acid_mutation PMID:18319072 G130D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.284830G>A/c.389G>A/p.G130D +YGL119W COQ8 5133 coq8-A197D A197D amino_acid_mutation PMID:25498144 A197D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.285031C>A/c.590C>A/p.A197D +YGL119W COQ8 5134 coq8-A197V A197V amino_acid_mutation PMID:32479562 A197V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.285031C>T/c.590C>T/p.A197V +YGL119W COQ8 5135 coq8-D346N D346N amino_acid_mutation PMID:25498144 D346N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.285477G>A/c.1036G>A/p.D346N +YGL119W COQ8 5136 coq8-D365N D365N amino_acid_mutation PMID:25498144 D365N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.285534G>A/c.1093G>A/p.D365N +YGL119W COQ8 5137 coq8-E263A E263A amino_acid_mutation PMID:25498144 E263A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.285229A>C/c.788A>C/p.E263A +YGL119W COQ8 5138 coq8-E269Q E269Q amino_acid_mutation PMID:25498144 E269Q False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.285246G>C/c.805G>C/p.E269Q +YGL119W COQ8 5139 coq8-E464* E464* partial_amino_acid_deletion PMID:29194833 E464* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrVII:g.285831G>T/c.1390G>T/p.E464* +YGL119W COQ8 5140 coq8-K134R K134R amino_acid_mutation PMID:25498144 K134R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.284842A>G/c.401A>G/p.K134R +YGL119W COQ8 5141 coq8-K216R K216R amino_acid_mutation PMID:25498144 K216R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.285088A>G/c.647A>G/p.K216R +YGL119W COQ8 5142 coq8-N348D N348D amino_acid_mutation PMID:25498144 N348D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.285197A>G/c.1042A>G/p.N348D +YGL119W COQ8 5143 coq8-N351A N351A amino_acid_mutation PMID:25498144 N351A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.285492_285493delAAinsGC/c.1051_1052delAAinsGC/p.N351A +YGL119W COQ8 5144 coq8-Q137E Q137E amino_acid_mutation PMID:25498144 Q137E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.284850C>G/c.409C>G/p.Q137E +YGL119W COQ8 5145 coq8-R471E R471E amino_acid_mutation PMID:25498144 R471E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.285852_285853delAGinsGA/c.1411_1412delAGinsGA/p.R471E +YGL119W COQ8 5148 coq8-S198A S198A amino_acid_mutation PMID:25498144 S198A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.285033_285034delAGinsGC/c.592_593delAGinsGC/p.S198A +YGL120C PRP43 5150 prp43-S247A S247A amino_acid_mutation PMID:16382144 S247A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.283199A>C/c.739T>G/p.S247A +YGL122C NAB2 5161 nab2-C437S C437S amino_acid_mutation PMID:22560733 C437S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.279215A>T/c.1309T>A/p.C437S +YGL122C NAB2 5162 nab2-E439F E439F amino_acid_mutation PMID:22560733 E439F False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.279207_279209delGAAinsTTT/c.1315_1317delGAAinsTTT/p.E439F +YGL122C NAB2 5163 nab2-F72D F72D amino_acid_mutation PMID:18682389 F72D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.280309_280310delTTinsGA/c.214_215delTTinsGA/p.F72D +YGL122C NAB2 5164 nab2-F73D F73D amino_acid_mutation PMID:18682389 F73D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.280306_280307delTTinsGA/c.217_218delTTinsGA/p.F73D +YGL122C NAB2 5165 nab2-Y428A,F450A,F471A Y428A,F450A,F471A amino_acid_mutation PMID:20554526 Y428A|F450A|F471A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.279241_279242delTAinsGC/c.1282_1283delTAinsGC/p.Y428A|chrVII:g.279175_279176delTTinsGC/c.1348_1349delTTinsGC/p.F450A|chrVII:g.279112_279113delTTinsGC/c.1411_1412delTTinsGC/p.F471A +YGL123W RPS2 5175 rps2-A92D A92D amino_acid_mutation PMID:34791232 A92D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277891C>A/c.275C>A/p.A92D +YGL123W RPS2 5176 rps2-D78A D78A amino_acid_mutation PMID:34791232 D78A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277849A>C/c.233A>C/p.D78A +YGL123W RPS2 5177 rps2-D78K D78K amino_acid_mutation PMID:34791232 D78K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277848_277850delGACinsAAG/c.232_234delGACinsAAG/p.D78K +YGL123W RPS2 5179 rps2-E120A E120A amino_acid_mutation PMID:34791232 E120A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277975A>C/c.359A>C/p.E120A +YGL123W RPS2 5180 rps2-E120K E120K amino_acid_mutation PMID:34791232 E120K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277974G>A/c.358G>A/p.E120K +YGL123W RPS2 5181 rps2-E79K E79K amino_acid_mutation PMID:34791232 E79K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277851G>A/c.235G>A/p.E79K +YGL123W RPS2 5182 rps2-F98D F98D amino_acid_mutation PMID:34791232 F98D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277908_277909delTTinsGA/c.292_293delTTinsGA/p.F98D +YGL123W RPS2 5183 rps2-F98K F98K amino_acid_mutation PMID:34791232 F98K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277908_277910delTTTinsAAG/c.292_294delTTTinsAAG/p.F98K +YGL123W RPS2 5184 rps2-G123D G123D amino_acid_mutation PMID:34791232 G123D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277984G>A/c.368G>A/p.G123D +YGL123W RPS2 5185 rps2-G123K G123K amino_acid_mutation PMID:34791232 G123K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277983_277985delGGTinsAAG/c.367_369delGGTinsAAG/p.G123K +YGL123W RPS2 5186 rps2-I125D I125D amino_acid_mutation PMID:34791232 I125D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277989_277990delATinsGA/c.373_374delATinsGA/p.I125D +YGL123W RPS2 5187 rps2-I125K I125K amino_acid_mutation PMID:34791232 I125K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277990_277991delTCinsAG/c.374_375delTCinsAG/p.I125K +YGL123W RPS2 5188 rps2-I83D I83D amino_acid_mutation PMID:34791232 I83D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277863_277864delATinsGA/c.247_248delATinsGA/p.I83D +YGL123W RPS2 5189 rps2-I83K I83K amino_acid_mutation PMID:34791232 I83K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277864_277865delTCinsAG/c.248_249delTCinsAG/p.I83K +YGL123W RPS2 5190 rps2-K119A K119A amino_acid_mutation PMID:34791232 K119A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277682_277683delAAinsGC/c.355_356delAAinsGC/p.K119A +YGL123W RPS2 5191 rps2-K119D K119D amino_acid_mutation PMID:34791232 K119D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277682_277684delAAAinsGAC/c.355_357delAAAinsGAC/p.K119D +YGL123W RPS2 5192 rps2-N82D N82D amino_acid_mutation PMID:34791232 N82D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277860A>G/c.244A>G/p.N82D +YGL123W RPS2 5193 rps2-N82K N82K amino_acid_mutation PMID:34791232 N82K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277862C>G/c.246C>G/p.N82K +YGL123W RPS2 5194 rps2-P85D P85D amino_acid_mutation PMID:34791232 P85D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277869_277871delCCAinsGAC/c.253_255delCCAinsGAC/p.P85D +YGL123W RPS2 5195 rps2-P85K P85K amino_acid_mutation PMID:34791232 P85K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277869_277870delCCinsAA/c.253_254delCCinsAA/p.P85K +YGL123W RPS2 5196 rps2-Q77D Q77D amino_acid_mutation PMID:34791232 Q77D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277845_277847delCAAinsGAC/c.229_231delCAAinsGAC/p.Q77D +YGL123W RPS2 5197 rps2-Q77K Q77K amino_acid_mutation PMID:34791232 Q77K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277845C>A/c.229C>A/p.Q77K +YGL123W RPS2 5198 rps2-Q87D Q87D amino_acid_mutation PMID:34791232 Q87D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277586_277588delCAAinsGAC/c.259_261delCAAinsGAC/p.Q87D +YGL123W RPS2 5199 rps2-Q87K Q87K amino_acid_mutation PMID:34791232 Q87K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277586C>A/c.259C>A/p.Q87K +YGL123W RPS2 5200 rps2-Q89D Q89D amino_acid_mutation PMID:34791232 Q89D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277881_277883delCAAinsGAC/c.265_267delCAAinsGAC/p.Q89D +YGL123W RPS2 5201 rps2-Q89K Q89K amino_acid_mutation PMID:34791232 Q89K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277881C>A/c.265C>A/p.Q89K +YGL123W RPS2 5202 rps2-Q94D Q94D amino_acid_mutation PMID:34791232 Q94D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277896_277898delCAAinsGAC/c.280_282delCAAinsGAC/p.Q94D +YGL123W RPS2 5203 rps2-Q94K Q94K amino_acid_mutation PMID:34791232 Q94K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277896C>A/c.280C>A/p.Q94K +YGL123W RPS2 5204 rps2-R126A R126A amino_acid_mutation PMID:34791232 R126A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277992_277993delAGinsGC/c.376_377delAGinsGC/p.R126A +YGL123W RPS2 5205 rps2-R126D R126D amino_acid_mutation PMID:34791232 R126D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277992_277994delAGAinsGAC/c.376_378delAGAinsGAC/p.R126D +YGL123W RPS2 5206 rps2-R91D R91D amino_acid_mutation PMID:34791232 R91D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277887_277889delAGAinsGAC/c.271_273delAGAinsGAC/p.R91D +YGL123W RPS2 5207 rps2-S238A S238A amino_acid_mutation PMID:17545469 S238A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.278328T>G/c.712T>G/p.S238A +YGL123W RPS2 5208 rps2-T90D T90D amino_acid_mutation PMID:34791232 T90D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277884_277885delACinsGA/c.268_269delACinsGA/p.T90D +YGL123W RPS2 5209 rps2-T90R T90R amino_acid_mutation PMID:34791232 T90R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277885_277886delCCinsGG/c.269_270delCCinsGG/p.T90R +YGL123W RPS2 5210 rps2-T96D T96D amino_acid_mutation PMID:34791232 T96D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277902_277903delACinsGA/c.286_287delACinsGA/p.T96D +YGL123W RPS2 5211 rps2-T96K T96K amino_acid_mutation PMID:34791232 T96K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277903_277904delCCinsAG/c.287_288delCCinsAG/p.T96K +YGL123W RPS2 5212 rps2-V121D V121D amino_acid_mutation PMID:34791232 V121D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277978T>A/c.362T>A/p.V121D +YGL123W RPS2 5213 rps2-V121K V121K amino_acid_mutation PMID:34791232 V121K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277977_277979delGTTinsAAG/c.361_363delGTTinsAAG/p.V121K +YGL123W RPS2 5214 rps2-V80D V80D amino_acid_mutation PMID:34791232 V80D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277855T>A/c.239T>A/p.V80D +YGL123W RPS2 5215 rps2-V80K V80K amino_acid_mutation PMID:34791232 V80K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.277854_277856delGTCinsAAG/c.238_240delGTCinsAAG/p.V80K +YGL125W MET13 5218 met13-E422A E422A amino_acid_mutation PMID:32934008 E422A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.273784A>C/c.1265A>C/p.E422A +YGL125W MET13 5219 met13-Y404A Y404A amino_acid_mutation PMID:32934008 Y404A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.273729_273730delTAinsGC/c.1210_1211delTAinsGC/p.Y404A +YGL126W SCS3 5227 scs3-H235A H235A amino_acid_mutation PMID:32915949 H235A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.271699_271700delCAinsGC/c.703_704delCAinsGC/p.H235A +YGL126W SCS3 5228 scs3-H350A H350A amino_acid_mutation PMID:32915949 H350A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.272044_272045delCAinsGC/c.1048_1049delCAinsGC/p.H350A +YGL129C RSM23 5230 rsm23-P356L P356L amino_acid_mutation PMID:34362905 P356L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.268009G>A/c.1067C>T/p.P356L +YGL130W CEG1 5235 ceg1-A4V A4V amino_acid_mutation PMID:32303542 A4V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.266155C>T/c.11C>T/p.A4V +YGL136C MRM2 5240 mrm2-D78A D78A amino_acid_mutation PMID:14636587 D78A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.253627T>G/c.233A>C/p.D78A +YGL136C MRM2 5241 mrm2-G259R G259R amino_acid_mutation PMID:28973171 G259R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.253085C>G/c.775G>C/p.G259R +YGL141W HUL5 5245 hul5-C878A C878A amino_acid_mutation PMID:35294869 C878A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.240984_240985delTGinsGC/c.2632_2633delTGinsGC/p.C878A +YGL146C RRT6 5255 rrt6-A267V A267V amino_acid_mutation PMID:32303542 A267V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.228887G>A/c.800C>T/p.A267V +YGL153W PEX14 5261 pex14-S266A S266A amino_acid_mutation PMID:33042991 S266A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.217068T>G/c.796T>G/p.S266A +YGL153W PEX14 5262 pex14-S266D S266D amino_acid_mutation PMID:33042991 S266D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.217068_217069delTCinsGA/c.796_797delTCinsGA/p.S266D +YGL163C RAD54 5266 RAD54-T132D T132D amino_acid_mutation PMID:19917248 T132D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.196009_196010delACinsGA/c.394_395delACinsGA/p.T132D +YGL167C PMR1 5270 pmr1-D53A D53A amino_acid_mutation PMID:17603109,PMID:29108953,PMID:37349354 D53A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.190311T>G/c.158A>C/p.D53A +YGL167C PMR1 5271 pmr1-D778A D778A amino_acid_mutation PMID:29108953 D778A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.188136T>G/c.2333A>C/p.D778A +YGL167C PMR1 5272 pmr1-F548L F548L amino_acid_mutation PMID:27230379 F548L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.188827A>G/c.1642T>C/p.F548L +YGL167C PMR1 5273 pmr1-G694S G694S amino_acid_mutation PMID:32303542 G694S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.188389C>T/c.2080G>A/p.G694S +YGL167C PMR1 5274 pmr1-Q783A Q783A amino_acid_mutation PMID:17603109,PMID:29108953 Q783A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.188121_188122delCAinsGC/c.2347_2348delCAinsGC/p.Q783A +YGL169W SUA5 5277 sua5-K93A K93A amino_acid_mutation PMID:19369944 K93A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.186335_186336delAAinsGC/c.277_278delAAinsGC/p.K93A +YGL173C XRN1 5282 xrn1-D208A D208A amino_acid_mutation PMID:23706738,PMID:29465287 D208A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.179491T>G/c.623A>C/p.D208A +YGL173C XRN1 5283 xrn1-E176G E176G amino_acid_mutation PMID:29465287 E176G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.179587T>C/c.527A>G/p.E176G +YGL173C XRN1 5284 xrn1-E178Q E178Q amino_acid_mutation PMID:35173156 E178Q False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.179582C>G/c.532G>C/p.E178Q +YGL173C XRN1 5285 xrn1-H41A H41A amino_acid_mutation PMID:35173156,PMID:37055518 H41A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.179992_179993delCAinsGC/c.121_122delCAinsGC/p.H41A +YGL175C SAE2 5305 sae2-G270D G270D amino_acid_mutation PMID:18042458 G270D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.173514C>T/c.809G>A/p.G270D +YGL175C SAE2 5306 sae2-L25P L25P amino_acid_mutation PMID:24344201 L25P False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.174249A>G/c.74T>C/p.L25P +YGL175C SAE2 5308 sae2-S267A S267A amino_acid_mutation PMID:27966484 S267A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.173524A>C/c.799T>G/p.S267A +YGL175C SAE2 5309 sae2-S267E S267E amino_acid_mutation PMID:27966484 S267E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.173522_173524delTCCinsGAG/c.799_801delTCCinsGAG/p.S267E +YGL180W ATG1 5319 atg1-D211A D211A amino_acid_mutation PMID:33536246,PMID:9224897 D211A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.160696A>C/c.632A>C/p.D211A +YGL180W ATG1 5320 atg1-K54A K54A amino_acid_mutation PMID:10995454,PMID:19223769 K54A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.160224_160225delAAinsGC/c.160_161delAAinsGC/p.K54A +YGL180W ATG1 5321 atg1-K54A,M102A K54A,M102A amino_acid_mutation PMID:19223769 K54A|M102A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.160224_160225delAAinsGC/c.160_161delAAinsGC/p.K54A|chrVII:g.160368_160369delATinsGC/c.304_305delATinsGC/p.M102A +YGL180W ATG1 5322 atg1-M102G M102G amino_acid_mutation PMID:26166702,PMID:35238874 M102G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.160368_160369delATinsGG/c.304_305delATinsGG/p.M102G +YGL180W ATG1 5323 atg1-S34A S34A amino_acid_mutation PMID:30655342 S34A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.159601T>G/c.100T>G/p.S34A +YGL180W ATG1 5324 atg1-S34D S34D amino_acid_mutation PMID:30655342 S34D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.159601_159602delTCinsGA/c.100_101delTCinsGA/p.S34D +YGL180W ATG1 5325 atg1-T226A T226A amino_acid_mutation PMID:30655342 T226A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.160740A>G/c.676A>G/p.T226A +YGL190C CDC55 5337 cdc55-D76* D76* partial_amino_acid_deletion PMID:34668730 D76* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrVII:g.147162_147164delGATinsTAA/c.226_228delGATinsTAA/p.D76* +YGL190C CDC55 5338 cdc55-E240* E240* partial_amino_acid_deletion PMID:34668730 E240* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrVII:g.146672C>A/c.718G>T/p.E240* +YGL190C CDC55 5340 cdc55-S301A S301A amino_acid_mutation PMID:30927017 S301A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.146488_146489delAGinsGC/c.901_902delAGinsGC/p.S301A +YGL190C CDC55 5341 cdc55-T174A T174A amino_acid_mutation PMID:30927017 T174A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.146870T>C/c.520A>G/p.T174A +YGL192W IME4 5345 ime4-W351A W351A amino_acid_mutation PMID:12384598 W351A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.143296_143297delTGinsGC/c.1051_1052delTGinsGC/p.W351A +YGL207W SPT16 5364 spt16-A417T,G568S,R569K,P599L A417T,G568S,R569K,P599L amino_acid_mutation PMID:11432837 A417T|G568S|R569K|P599L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.100217G>A/c.1249G>A/p.A417T|chrVII:g.100670G>A/c.1702G>A/p.G568S|chrVII:g.100674G>A/c.1706G>A/p.R569K|chrVII:g.100764C>T/c.1796C>T/p.P599L +YGL207W SPT16 5365 spt16-E536G E536G amino_acid_mutation PMID:22670226 E536G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.100575A>G/c.1607A>G/p.E536G +YGL207W SPT16 5366 spt16-E671G E671G amino_acid_mutation PMID:22670226 E671G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.100980A>G/c.2012A>G/p.E671G +YGL207W SPT16 5367 spt16-E763G E763G amino_acid_mutation PMID:19727824 E763G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.101256A>G/c.2288A>G/p.E763G +YGL207W SPT16 5368 spt16-E857K E857K amino_acid_mutation PMID:19727824,PMID:22022426,PMID:22670226 E857K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.101537G>A/c.2569G>A/p.E857K +YGL207W SPT16 5369 spt16-E857K,D1016G E857K,D1016G amino_acid_mutation PMID:22670226 E857K|D1016G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.101537G>A/c.2569G>A/p.E857K|chrVII:g.102015A>G/c.3047A>G/p.D1016G +YGL207W SPT16 5370 spt16-G132D,G836S,P838S G132D,G836S,P838S amino_acid_mutation PMID:11432837 G132D|G836S|P838S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.99363G>A/c.395G>A/p.G132D|chrVII:g.101474G>A/c.2506G>A/p.G836S|chrVII:g.101480C>T/c.2512C>T/p.P838S +YGL207W SPT16 5371 spt16-G365V,Q666R G365V,Q666R amino_acid_mutation PMID:22670226 G365V|Q666R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.100062G>T/c.1094G>T/p.G365V|chrVII:g.100859A>G/c.1997A>G/p.Q666R +YGL207W SPT16 5372 spt16-G369D,R373T G369D,R373T amino_acid_mutation PMID:11432837 G369D|R373T False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.100074G>A/c.1106G>A/p.G369D|chrVII:g.100086G>C/c.1118G>C/p.R373T +YGL207W SPT16 5373 spt16-G836S G836S amino_acid_mutation PMID:11432837 G836S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.101474G>A/c.2506G>A/p.G836S +YGL207W SPT16 5374 spt16-G836S,P838S G836S,P838S amino_acid_mutation PMID:11432837 G836S|P838S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.101474G>A/c.2506G>A/p.G836S|chrVII:g.101480C>T/c.2512C>T/p.P838S +YGL207W SPT16 5375 spt16-I626T,E857K I626T,E857K amino_acid_mutation PMID:22670226 I626T|E857K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.100845T>C/c.1877T>C/p.I626T|chrVII:g.101537G>A/c.2569G>A/p.E857K +YGL207W SPT16 5376 spt16-K579E K579E amino_acid_mutation PMID:22670226 K579E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.100703A>G/c.1735A>G/p.K579E +YGL207W SPT16 5377 spt16-K692A,R693A K692A,R693A amino_acid_mutation PMID:26804921,PMID:36914923 K692A|R693A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.101042_101043delAAinsGC/c.2074_2075delAAinsGC/p.K692A|chrVII:g.101045_101046delCGinsGC/c.2077_2078delCGinsGC/p.R693A +YGL207W SPT16 5378 spt16-L356P L356P amino_acid_mutation PMID:22670226 L356P False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.100035T>C/c.1067T>C/p.L356P +YGL207W SPT16 5379 spt16-L660P,F707L L660P,F707L amino_acid_mutation PMID:22670226 L660P|F707L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.100947T>C/c.1979T>C/p.L660P|chrVII:g.101087T>C/c.2119T>C/p.F707L +YGL207W SPT16 5380 spt16-L669S L669S amino_acid_mutation PMID:22670226 L669S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.100974T>C/c.2006T>C/p.L669S +YGL207W SPT16 5381 spt16-N580D N580D amino_acid_mutation PMID:22670226 N580D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.100706A>G/c.1738A>G/p.N580D +YGL207W SPT16 5382 spt16-N703D,E857K N703D,E857K amino_acid_mutation PMID:22670226 N703D|E857K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.101075A>G/c.2107A>G/p.N703D|chrVII:g.101537G>A/c.2569G>A/p.E857K +YGL207W SPT16 5383 spt16-P565S,P570L P565S,P570L amino_acid_mutation PMID:11432837 P565S|P570L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.100661C>T/c.1693C>T/p.P565S|chrVII:g.100677C>T/c.1709C>T/p.P570L +YGL207W SPT16 5384 spt16-P838S P838S amino_acid_mutation PMID:11432837 P838S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.101480C>T/c.2512C>T/p.P838S +YGL207W SPT16 5385 spt16-P920L P920L amino_acid_mutation PMID:11432837,PMID:22670226,PMID:36230893 P920L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.101727C>T/c.2759C>T/p.P920L +YGL207W SPT16 5386 spt16-Q666R Q666R amino_acid_mutation PMID:22670226 Q666R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.100859A>G/c.1997A>G/p.Q666R +YGL207W SPT16 5387 spt16-Q666R,E1013G Q666R,E1013G amino_acid_mutation PMID:22670226 Q666R|E1013G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.100859A>G/c.1997A>G/p.Q666R|chrVII:g.102006A>G/c.3038A>G/p.E1013G +YGL207W SPT16 5388 spt16-R204W,A273V,C290V,D318N R204W,A273V,C290V,D318N amino_acid_mutation PMID:11432837 R204W|A273V|C290V|D318N False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.99578C>T/c.610C>T/p.R204W|chrVII:g.99786C>T/c.818C>T/p.A273V|chrVII:g.99836_99837delTGinsGT/c.868_869delTGinsGT/p.C290V|chrVII:g.99920G>A/c.952G>A/p.D318N +YGL207W SPT16 5389 spt16-R204W,A273V,C290V,D318N,R801Q,A802T R204W,A273V,C290V,D318N,R801Q,A802T amino_acid_mutation PMID:11432837 R204W|A273V|C290V|D318N|R801Q|A802T False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.99578C>T/c.610C>T/p.R204W|chrVII:g.99786C>T/c.818C>T/p.A273V|chrVII:g.99836_99837delTGinsGT/c.868_869delTGinsGT/p.C290V|chrVII:g.99920G>A/c.952G>A/p.D318N|chrVII:g.101370G>A/c.2402G>A/p.R801Q|chrVII:g.101372G>A/c.2404G>A/p.A802T +YGL207W SPT16 5390 spt16-R679G R679G amino_acid_mutation PMID:22670226 R679G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.101003A>G/c.2035A>G/p.R679G +YGL207W SPT16 5391 spt16-R801Q,A802T R801Q,A802T amino_acid_mutation PMID:11432837 R801Q|A802T False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.101370G>A/c.2402G>A/p.R801Q|chrVII:g.101372G>A/c.2404G>A/p.A802T +YGL207W SPT16 5392 spt16-S366P,E866A S366P,E866A amino_acid_mutation PMID:22670226 S366P|E866A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.100064T>C/c.1096T>C/p.S366P|chrVII:g.101565A>C/c.2597A>C/p.E866A +YGL207W SPT16 5393 spt16-S715G,D718G S715G,D718G amino_acid_mutation PMID:22670226 S715G|D718G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.101111A>G/c.2143A>G/p.S715G|chrVII:g.101121A>G/c.2153A>G/p.D718G +YGL207W SPT16 5394 spt16-S731P,S765P,I919V S731P,S765P,I919V amino_acid_mutation PMID:22670226 S731P|S765P|I919V False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.101159T>C/c.2191T>C/p.S731P|chrVII:g.101155T>C/c.2293T>C/p.S765P|chrVII:g.101723A>G/c.2755A>G/p.I919V +YGL207W SPT16 5395 spt16-S765P S765P amino_acid_mutation PMID:22670226 S765P False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.101155T>C/c.2293T>C/p.S765P +YGL207W SPT16 5396 spt16-S765P,K800E S765P,K800E amino_acid_mutation PMID:22670226 S765P|K800E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.101155T>C/c.2293T>C/p.S765P|chrVII:g.101366A>G/c.2398A>G/p.K800E +YGL207W SPT16 5397 spt16-S765P,L865P S765P,L865P amino_acid_mutation PMID:22670226 S765P|L865P False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.101155T>C/c.2293T>C/p.S765P|chrVII:g.101562T>C/c.2594T>C/p.L865P +YGL207W SPT16 5398 spt16-T434A T434A amino_acid_mutation PMID:22670226 T434A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.100268A>G/c.1300A>G/p.T434A +YGL207W SPT16 5399 spt16-T434I T434I amino_acid_mutation PMID:11432837 T434I False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.100269C>T/c.1301C>T/p.T434I +YGL207W SPT16 5400 spt16-T651A,H741Y,E857K T651A,H741Y,E857K amino_acid_mutation PMID:22670226 T651A|H741Y|E857K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.100919A>G/c.1951A>G/p.T651A|chrVII:g.101189C>T/c.2221C>T/p.H741Y|chrVII:g.101537G>A/c.2569G>A/p.E857K +YGL207W SPT16 5401 spt16-T713A,E857K T713A,E857K amino_acid_mutation PMID:22670226 T713A|E857K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.101105A>G/c.2137A>G/p.T713A|chrVII:g.101537G>A/c.2569G>A/p.E857K +YGL207W SPT16 5402 spt16-T828I,P859S T828I,P859S amino_acid_mutation PMID:11432837 T828I|P859S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.101345C>T/c.2483C>T/p.T828I|chrVII:g.101543C>T/c.2575C>T/p.P859S +YGL207W SPT16 5404 spt16-T848I,T849I,D850Y T848I,T849I,D850Y amino_acid_mutation PMID:11432837 T848I|T849I|D850Y False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.101511C>T/c.2543C>T/p.T848I|chrVII:g.101514C>T/c.2546C>T/p.T849I|chrVII:g.101516G>T/c.2548G>T/p.D850Y +YGL207W SPT16 5405 spt16-Y297H Y297H amino_acid_mutation PMID:22670226 Y297H False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.99857T>C/c.889T>C/p.Y297H +YGL208W SIP2 5407 SIP2-S226R S226R amino_acid_mutation PMID:34555030 S226R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.98015T>G/c.678T>G/p.S226R +YGL210W YPT32 5408 ypt32-A141D A141D amino_acid_mutation PMID:33788577 A141D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.94213_94214delCGinsAC/c.422_423delCGinsAC/p.A141D +YGL234W ADE57 5425 ade57-G188V G188V amino_acid_mutation PMID:31611676 G188V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.57044G>T/c.563G>T/p.G188V +YGL236C MTO1 5428 mto1-M356I M356I amino_acid_mutation PMID:32303542 M356I False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.54729C>G/c.1068G>C/p.M356I +YGL237C HAP2 5431 hap2-A177E,R178G A177E,R178G amino_acid_mutation PMID:8159696 A177E|R178G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52999G>T/c.530C>A/p.A177E|chrVII:g.52997T>C/c.532A>G/p.R178G +YGL237C HAP2 5432 hap2-A177P A177P amino_acid_mutation PMID:8159696 A177P False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53000C>G/c.529G>C/p.A177P +YGL237C HAP2 5433 hap2-A203V A203V amino_acid_mutation PMID:8223474 A203V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52921G>A/c.608C>T/p.A203V +YGL237C HAP2 5434 hap2-F214L F214L amino_acid_mutation PMID:8223474 F214L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52889A>G/c.640T>C/p.F214L +YGL237C HAP2 5435 hap2-G209V G209V amino_acid_mutation PMID:8223474 G209V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52903C>A/c.626G>T/p.G209V +YGL237C HAP2 5436 hap2-G212V G212V amino_acid_mutation PMID:8223474 G212V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52894C>A/c.635G>T/p.G212V +YGL237C HAP2 5437 hap2-H196D H196D amino_acid_mutation PMID:8223474 H196D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52943G>C/c.586C>G/p.H196D +YGL237C HAP2 5438 hap2-H196N H196N amino_acid_mutation PMID:8223474 H196N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52943G>T/c.586C>A/p.H196N +YGL237C HAP2 5439 hap2-H196R H196R amino_acid_mutation PMID:8223474 H196R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52942T>C/c.587A>G/p.H196R +YGL237C HAP2 5440 hap2-H200Q H200Q amino_acid_mutation PMID:8223474 H200Q False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52929A>T/c.600T>A/p.H200Q +YGL237C HAP2 5441 hap2-H200Y H200Y amino_acid_mutation PMID:8223474 H200Y False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52931G>A/c.598C>T/p.H200Y +YGL237C HAP2 5442 hap2-H202N H202N amino_acid_mutation PMID:8223474 H202N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52925G>T/c.604C>A/p.H202N +YGL237C HAP2 5443 hap2-H202Q,R208C H202Q,R208C amino_acid_mutation PMID:8223474 H202Q|R208C False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52923A>T/c.606T>A/p.H202Q|chrVII:g.52907G>A/c.622C>T/p.R208C +YGL237C HAP2 5444 hap2-H202R H202R amino_acid_mutation PMID:8223474 H202R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52924T>C/c.605A>G/p.H202R +YGL237C HAP2 5445 hap2-I171F I171F amino_acid_mutation PMID:8159696 I171F False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53018T>A/c.511A>T/p.I171F +YGL237C HAP2 5446 hap2-I171T I171T amino_acid_mutation PMID:8159696 I171T False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53017A>G/c.512T>C/p.I171T +YGL237C HAP2 5447 hap2-K166M K166M amino_acid_mutation PMID:8159696 K166M False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53032T>A/c.497A>T/p.K166M +YGL237C HAP2 5448 hap2-K166Q K166Q amino_acid_mutation PMID:8159696 K166Q False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53033T>G/c.496A>C/p.K166Q +YGL237C HAP2 5449 hap2-K173N K173N amino_acid_mutation PMID:8159696 K173N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53010T>G/c.519A>C/p.K173N +YGL237C HAP2 5450 hap2-K180E K180E amino_acid_mutation PMID:8159696 K180E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53085T>C/c.538A>G/p.K180E +YGL237C HAP2 5451 hap2-K180STOP K180STOP partial_amino_acid_deletion PMID:8159696 K180STOP False K180* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.53085T>A/c.538A>T/p.K180* +YGL237C HAP2 5452 hap2-L172W,R174M L172W,R174M amino_acid_mutation PMID:8159696 L172W|R174M False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53014A>C/c.515T>G/p.L172W|chrVII:g.53008C>A/c.521G>T/p.R174M +YGL237C HAP2 5453 hap2-L215Stop L215Stop partial_amino_acid_deletion PMID:8223474 L215Stop False L215* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.52885A>T/c.644T>A/p.L215* +YGL237C HAP2 5454 hap2-N164I N164I amino_acid_mutation PMID:8159696 N164I False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53038T>A/c.491A>T/p.N164I +YGL237C HAP2 5455 hap2-N164K N164K amino_acid_mutation PMID:8159696 N164K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53037A>C/c.492T>G/p.N164K +YGL237C HAP2 5456 hap2-N164L N164L amino_acid_mutation PMID:8159696 N164L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53038_53039delAAinsCT/c.490_491delAAinsCT/p.N164L +YGL237C HAP2 5457 hap2-N164Y N164Y amino_acid_mutation PMID:8159696 N164Y False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53039T>A/c.490A>T/p.N164Y +YGL237C HAP2 5458 hap2-P207A P207A amino_acid_mutation PMID:8223474 P207A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52910G>C/c.619C>G/p.P207A +YGL237C HAP2 5459 hap2-Q167E Q167E amino_acid_mutation PMID:8159696 Q167E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53030G>C/c.499C>G/p.Q167E +YGL237C HAP2 5460 hap2-Q167L Q167L amino_acid_mutation PMID:8159696 Q167L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53029T>A/c.500A>T/p.Q167L +YGL237C HAP2 5461 hap2-R170G R170G amino_acid_mutation PMID:8159696 R170G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53021G>C/c.508C>G/p.R170G +YGL237C HAP2 5462 hap2-R170L R170L amino_acid_mutation PMID:8159696 R170L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53020C>A/c.509G>T/p.R170L +YGL237C HAP2 5463 hap2-R170P R170P amino_acid_mutation PMID:8159696 R170P False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53020C>G/c.509G>C/p.R170P +YGL237C HAP2 5464 hap2-R174G R174G amino_acid_mutation PMID:8159696 R174G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53009T>C/c.520A>G/p.R174G +YGL237C HAP2 5465 hap2-R174K R174K amino_acid_mutation PMID:8159696 R174K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53008C>T/c.521G>A/p.R174K +YGL237C HAP2 5466 hap2-R174S R174S amino_acid_mutation PMID:8159696 R174S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53007C>G/c.522G>C/p.R174S +YGL237C HAP2 5467 hap2-R174W R174W amino_acid_mutation PMID:8159696 R174W False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53009T>A/c.520A>T/p.R174W +YGL237C HAP2 5468 hap2-R175G R175G amino_acid_mutation PMID:8159696 R175G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53006G>C/c.523C>G/p.R175G +YGL237C HAP2 5469 hap2-R175P R175P amino_acid_mutation PMID:8159696 R175P False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53005C>G/c.524G>C/p.R175P +YGL237C HAP2 5470 hap2-R175Q R175Q amino_acid_mutation PMID:8159696 R175Q False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53005C>T/c.524G>A/p.R175Q +YGL237C HAP2 5471 hap2-R175STOP R175STOP partial_amino_acid_deletion PMID:8159696 R175STOP False R175* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.53006G>A/c.523C>T/p.R175* +YGL237C HAP2 5472 hap2-R178G R178G amino_acid_mutation PMID:8159696 R178G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52997T>C/c.532A>G/p.R178G +YGL237C HAP2 5473 hap2-R178K R178K amino_acid_mutation PMID:8159696 R178K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52996C>T/c.533G>A/p.R178K +YGL237C HAP2 5474 hap2-R178S R178S amino_acid_mutation PMID:8159696 R178S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52995T>G/c.534A>C/p.R178S +YGL237C HAP2 5475 hap2-R178STOP R178STOP partial_amino_acid_deletion PMID:8159696 R178STOP False R178* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.52997T>A/c.532A>T/p.R178* +YGL237C HAP2 5476 hap2-R199G R199G amino_acid_mutation PMID:8223474 R199G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52934G>C/c.595C>G/p.R199G +YGL237C HAP2 5477 hap2-R199L R199L amino_acid_mutation PMID:8223474 R199L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52933C>A/c.596G>T/p.R199L +YGL237C HAP2 5478 hap2-R206I R206I amino_acid_mutation PMID:8223474 R206I False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52912C>A/c.617G>T/p.R206I +YGL237C HAP2 5479 hap2-R213M R213M amino_acid_mutation PMID:8223474 R213M False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52984_52985delGAinsTG/c.638_639delGAinsTG/p.R213M +YGL237C HAP2 5480 hap2-V163D V163D amino_acid_mutation PMID:8159696 V163D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53041A>T/c.488T>A/p.V163D +YGL237C HAP2 5481 hap2-Y162C,Y168D Y162C,Y168D amino_acid_mutation PMID:8159696 Y162C|Y168D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53044T>C/c.485A>G/p.Y162C|chrVII:g.53027A>C/c.502T>G/p.Y168D +YGL237C HAP2 5482 hap2-Y162F,N164I Y162F,N164I amino_acid_mutation PMID:8159696 Y162F|N164I False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53044T>A/c.485A>T/p.Y162F|chrVII:g.53038T>A/c.491A>T/p.N164I +YGL237C HAP2 5483 hap2-Y168A Y168A amino_acid_mutation PMID:8159696 Y168A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53026_53027delTAinsGC/c.502_503delTAinsGC/p.Y168A +YGL237C HAP2 5484 hap2-Y168C Y168C amino_acid_mutation PMID:8159696 Y168C False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53026T>C/c.503A>G/p.Y168C +YGL237C HAP2 5485 hap2-Y168N Y168N amino_acid_mutation PMID:8159696 Y168N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53027A>T/c.502T>A/p.Y168N +YGL237C HAP2 5486 hap2-Y168S Y168S amino_acid_mutation PMID:8159696 Y168S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53026T>G/c.503A>C/p.Y168S +YGL237C HAP2 5487 hap2-Y169F Y169F amino_acid_mutation PMID:8159696 Y169F False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53023T>A/c.506A>T/p.Y169F +YGL237C HAP2 5488 hap2-Y176P Y176P amino_acid_mutation PMID:8159696 Y176P False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53002_53003delTAinsCC/c.526_527delTAinsCC/p.Y176P +YGL237C HAP2 5489 hap2-Y176S Y176S amino_acid_mutation PMID:8159696 Y176S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.53002T>G/c.527A>C/p.Y176S +YGL237C HAP2 5490 hap2-Y176STOP Y176STOP partial_amino_acid_deletion PMID:8159696 Y176STOP False Y176* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.53001A>T/c.528T>A/p.Y176* +YGL237C HAP2 5491 hap2-Y194C Y194C amino_acid_mutation PMID:8223474 Y194C False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52948T>C/c.581A>G/p.Y194C +YGL237C HAP2 5492 hap2-Y194D Y194D amino_acid_mutation PMID:8223474 Y194D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.52949A>C/c.580T>G/p.Y194D +YGL238W CSE1 5496 cse1-D220A D220A amino_acid_mutation PMID:32734712 D220A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.50210A>C/c.659A>C/p.D220A +YGL238W CSE1 5497 cse1-D220K D220K amino_acid_mutation PMID:32734712 D220K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.50209_50211delGATinsAAG/c.658_660delGATinsAAG/p.D220K +YGL238W CSE1 5498 cse1-D220N D220N amino_acid_mutation PMID:32734712 D220N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.50209G>A/c.658G>A/p.D220N +YGL238W CSE1 5499 cse1-D220R D220R amino_acid_mutation PMID:32734712 D220R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.50209_50210delGAinsCG/c.658_659delGAinsCG/p.D220R +YGL247W BRR6 5515 brr6-Y100H Y100H amino_acid_mutation PMID:34549174 Y100H False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.37230T>C/c.298T>C/p.Y100H +YGL252C RTG2 5519 rtg2-A160G A160G amino_acid_mutation PMID:28472157 A160G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.27006G>C/c.479C>G/p.A160G +YGL252C RTG2 5520 rtg2-D158A D158A amino_acid_mutation PMID:28472157 D158A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.27012T>G/c.473A>C/p.D158A +YGL252C RTG2 5521 rtg2-D23G D23G amino_acid_mutation PMID:31611676 D23G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.27417T>C/c.68A>G/p.D23G +YGL252C RTG2 5522 rtg2-E106A E106A amino_acid_mutation PMID:28472157 E106A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.27168T>G/c.317A>C/p.E106A +YGL252C RTG2 5523 rtg2-E106H E106H amino_acid_mutation PMID:28472157 E106H False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.27167_27169delGAAinsCAT/c.316_318delGAAinsCAT/p.E106H +YGL252C RTG2 5524 rtg2-E137A E137A amino_acid_mutation PMID:28472157 E137A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.27075T>G/c.410A>C/p.E137A +YGL252C RTG2 5525 rtg2-G161A G161A amino_acid_mutation PMID:28472157 G161A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.27003C>G/c.482G>C/p.G161A +YGL252C RTG2 5526 rtg2-G248V G248V amino_acid_mutation PMID:31611676 G248V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.26742C>A/c.743G>T/p.G248V +YGL252C RTG2 5527 rtg2-L56G L56G amino_acid_mutation PMID:28472157 L56G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.27349_27350delTTinsGG/c.166_167delTTinsGG/p.L56G +YGL252C RTG2 5528 rtg2-N113A N113A amino_acid_mutation PMID:28472157 N113A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.27178_27179delAAinsGC/c.337_338delAAinsGC/p.N113A +YGL252C RTG2 5529 rtg2-Q165A Q165A amino_acid_mutation PMID:28472157 Q165A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.26991_26992delCAinsGC/c.493_494delCAinsGC/p.Q165A +YGL252C RTG2 5530 rtg2-Q165E Q165E amino_acid_mutation PMID:28472157 Q165E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.26992G>C/c.493C>G/p.Q165E +YGL252C RTG2 5531 rtg2-R109E R109E amino_acid_mutation PMID:28472157 R109E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.27159_27160delCGinsGA/c.325_326delCGinsGA/p.R109E +YGL252C RTG2 5532 rtg2-S163A S163A amino_acid_mutation PMID:28472157 S163A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.26997_26998delAGinsGC/c.487_488delAGinsGC/p.S163A +YGL252C RTG2 5533 rtg2-T138A T138A amino_acid_mutation PMID:28472157 T138A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.27073T>C/c.412A>G/p.T138A +YGL253W HXK2 5571 hxk2-A132P A132P amino_acid_mutation PMID:10217505 A132P False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24328G>C/c.394G>C/p.A132P +YGL253W HXK2 5572 hxk2-A161D A161D amino_acid_mutation PMID:2685571 A161D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24416C>A/c.482C>A/p.A161D +YGL253W HXK2 5573 hxk2-A239T A239T amino_acid_mutation PMID:2685571,PMID:2685572 A239T False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24649G>A/c.715G>A/p.A239T +YGL253W HXK2 5574 hxk2-A239V A239V amino_acid_mutation PMID:2685571,PMID:2685572 A239V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24650C>T/c.716C>T/p.A239V +YGL253W HXK2 5575 hxk2-D179G D179G amino_acid_mutation PMID:10217505 D179G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24470A>G/c.536A>G/p.D179G +YGL253W HXK2 5576 hxk2-D286G D286G amino_acid_mutation PMID:2685571 D286G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24791A>G/c.857A>G/p.D286G +YGL253W HXK2 5577 hxk2-D286L D286L amino_acid_mutation PMID:2685571,PMID:2685572 D286L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24790_24791delGAinsCT/c.856_857delGAinsCT/p.D286L +YGL253W HXK2 5578 hxk2-D286V D286V amino_acid_mutation PMID:2685571 D286V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24791A>T/c.857A>T/p.D286V +YGL253W HXK2 5579 hxk2-D343E D343E amino_acid_mutation PMID:10217505 D343E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24963C>G/c.1029C>G/p.D343E +YGL253W HXK2 5580 hxk2-D343H D343H amino_acid_mutation PMID:29771304 D343H False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24961G>C/c.1027G>C/p.D343H +YGL253W HXK2 5581 hxk2-D417G D417G amino_acid_mutation PMID:32673313 D417G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.25184A>G/c.1250A>G/p.D417G +YGL253W HXK2 5583 hxk2-E457G E457G amino_acid_mutation PMID:10217505 E457G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.25304A>G/c.1370A>G/p.E457G +YGL253W HXK2 5584 hxk2-F178I F178I amino_acid_mutation PMID:2685571,PMID:2685572 F178I False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24466T>A/c.532T>A/p.F178I +YGL253W HXK2 5586 hxk2-G235C G235C amino_acid_mutation PMID:2685571 G235C False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24637G>T/c.703G>T/p.G235C +YGL253W HXK2 5587 hxk2-G238V G238V amino_acid_mutation PMID:35235554 G238V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24647G>T/c.713G>T/p.G238V +YGL253W HXK2 5588 hxk2-G55D G55D amino_acid_mutation PMID:2685571,PMID:2685572 G55D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24098G>A/c.164G>A/p.G55D +YGL253W HXK2 5589 hxk2-G55V G55V amino_acid_mutation PMID:32673313 G55V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24098G>T/c.164G>T/p.G55V +YGL253W HXK2 5590 hxk2-G89D G89D amino_acid_mutation PMID:2685571 G89D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24200G>A/c.266G>A/p.G89D +YGL253W HXK2 5591 hxk2-I180L,N182D I180L,N182D amino_acid_mutation PMID:2685571 I180L|N182D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24472A>C/c.538A>C/p.I180L|chrVII:g.24478A>G/c.544A>G/p.N182D +YGL253W HXK2 5592 hxk2-K176T K176T amino_acid_mutation PMID:31481524 K176T False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24461A>C/c.527A>C/p.K176T +YGL253W HXK2 5593 hxk2-L216S L216S amino_acid_mutation PMID:2685571,PMID:2685572 L216S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24458_24459delCTinsTC/c.646_647delCTinsTC/p.L216S +YGL253W HXK2 5594 hxk2-L216W L216W amino_acid_mutation PMID:2685571 L216W False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24458_24460delCTAinsTGG/c.646_648delCTAinsTGG/p.L216W +YGL253W HXK2 5595 hxk2-L250P L250P amino_acid_mutation PMID:2685571 L250P False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24683T>C/c.749T>C/p.L250P +YGL253W HXK2 5596 hxk2-L310STOP L310STOP partial_amino_acid_deletion PMID:31481524 L310STOP False L310* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.24863T>A/c.929T>A/p.L310* +YGL253W HXK2 5597 hxk2-L435S L435S amino_acid_mutation PMID:2685571 L435S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.25238T>C/c.1304T>C/p.L435S +YGL253W HXK2 5598 hxk2-L4STOP L4STOP partial_amino_acid_deletion PMID:31481524 L4STOP False L4* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.23945T>A/c.11T>A/p.L4* +YGL253W HXK2 5600 hxk2-N210I N210I amino_acid_mutation PMID:2685571 N210I False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24563A>T/c.629A>T/p.N210I +YGL253W HXK2 5601 hxk2-N237H N237H amino_acid_mutation PMID:2685571,PMID:2685572 N237H False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24643A>C/c.709A>C/p.N237H +YGL253W HXK2 5602 hxk2-P160A P160A amino_acid_mutation PMID:10217505 P160A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24412C>G/c.478C>G/p.P160A +YGL253W HXK2 5604 hxk2-Q163R Q163R amino_acid_mutation PMID:2685571,PMID:2685572 Q163R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24422A>G/c.488A>G/p.Q163R +YGL253W HXK2 5605 hxk2-Q251STOP Q251STOP partial_amino_acid_deletion PMID:31481524 Q251STOP False Q251* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.24685C>T/c.751C>T/p.Q251* +YGL253W HXK2 5606 hxk2-Q299H Q299H amino_acid_mutation PMID:31481524 Q299H False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24831A>T/c.897A>T/p.Q299H +YGL253W HXK2 5607 hxk2-Q376E,I381M Q376E,I381M amino_acid_mutation PMID:2685571 Q376E|I381M False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.25060C>G/c.1126C>G/p.Q376E|chrVII:g.25077C>G/c.1143C>G/p.I381M +YGL253W HXK2 5608 hxk2-Q376E,R391G Q376E,R391G amino_acid_mutation PMID:2685571,PMID:2685572 Q376E|R391G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.25060C>G/c.1126C>G/p.Q376E|chrVII:g.25105A>G/c.1171A>G/p.R391G +YGL253W HXK2 5609 hxk2-R423T R423T amino_acid_mutation PMID:32673313 R423T False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.25202G>C/c.1268G>C/p.R423T +YGL253W HXK2 5611 hxk2-S305P S305P amino_acid_mutation PMID:2685571 S305P False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24847T>C/c.913T>C/p.S305P +YGL253W HXK2 5612 hxk2-S306F S306F amino_acid_mutation PMID:2685571 S306F False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24851C>T/c.917C>T/p.S306F +YGL253W HXK2 5613 hxk2-T212P T212P amino_acid_mutation PMID:31481524 T212P False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24568A>C/c.634A>C/p.T212P +YGL253W HXK2 5614 hxk2-T75I,S345P T75I,S345P amino_acid_mutation PMID:31481524 T75I|S345P False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24158C>T/c.224C>T/p.T75I|chrVII:g.24967T>C/c.1033T>C/p.S345P +YGL253W HXK2 5615 hxk2-T90I T90I amino_acid_mutation PMID:2685571,PMID:2685572 T90I False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24203C>T/c.269C>T/p.T90I +YGL253W HXK2 5616 hxk2-V94A,L99W V94A,L99W amino_acid_mutation PMID:2685571,PMID:2685572 V94A|L99W False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24215T>C/c.281T>C/p.V94A|chrVII:g.24230T>G/c.296T>G/p.L99W +YGL253W HXK2 5618 hxk2-Y346D Y346D amino_acid_mutation PMID:10217505 Y346D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24970T>G/c.1036T>G/p.Y346D +YGL254W FZF1 5622 fzf1-C14S C14S amino_acid_mutation PMID:34245655 C14S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.22343T>A/c.40T>A/p.C14S +YGL254W FZF1 5623 fzf1-C157S C157S amino_acid_mutation PMID:34245655 C157S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.22772T>A/c.469T>A/p.C157S +YGL254W FZF1 5624 fzf1-C162F C162F amino_acid_mutation PMID:35219341 C162F False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.22773G>T/c.485G>T/p.C162F +YGL254W FZF1 5625 fzf1-C162S C162S amino_acid_mutation PMID:34245655 C162S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.22772T>A/c.484T>A/p.C162S +YGL254W FZF1 5626 fzf1-C19S C19S amino_acid_mutation PMID:34245655 C19S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.22343T>A/c.55T>A/p.C19S +YGL254W FZF1 5627 fzf1-C248S C248S amino_acid_mutation PMID:34245655 C248S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.23045T>A/c.742T>A/p.C248S +YGL254W FZF1 5628 fzf1-C253S C253S amino_acid_mutation PMID:34245655 C253S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.23045T>A/c.757T>A/p.C253S +YGL254W FZF1 5629 fzf1-D270Y D270Y amino_acid_mutation PMID:35219341 D270Y False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.23111G>T/c.808G>T/p.D270Y +YGL254W FZF1 5630 fzf1-H180N H180N amino_acid_mutation PMID:35219341 H180N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.22826C>A/c.538C>A/p.H180N +YGL254W FZF1 5631 fzf1-K122A,K184A K122A,K184A amino_acid_mutation PMID:35809138 K122A|K184A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.22667_22668delAAinsGC/c.364_365delAAinsGC/p.K122A|chrVII:g.22853_22854delAAinsGC/c.550_551delAAinsGC/p.K184A +YGL254W FZF1 5632 fzf1-K70A K70A amino_acid_mutation PMID:35809138 K70A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.22511_22512delAAinsGC/c.208_209delAAinsGC/p.K70A +YGL254W FZF1 5633 fzf1-K70A,K107A K70A,K107A amino_acid_mutation PMID:35809138 K70A|K107A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.22511_22512delAAinsGC/c.208_209delAAinsGC/p.K70A|chrVII:g.22622_22623delAAinsGC/c.319_320delAAinsGC/p.K107A +YGL255W ZRT1 5634 zrt1-D164G D164G amino_acid_mutation PMID:18073441 D164G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.21468A>G/c.491A>G/p.D164G +YGL255W ZRT1 5635 zrt1-E165V E165V amino_acid_mutation PMID:18073441 E165V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.21471A>T/c.494A>T/p.E165V +YGL255W ZRT1 5636 zrt1-G113D G113D amino_acid_mutation PMID:18073441 G113D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.21315G>A/c.338G>A/p.G113D +YGL255W ZRT1 5637 zrt1-H102Y H102Y amino_acid_mutation PMID:18073441 H102Y False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.21281C>T/c.304C>T/p.H102Y +YGL255W ZRT1 5638 zrt1-L103S L103S amino_acid_mutation PMID:18073441 L103S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.21285T>C/c.308T>C/p.L103S +YGL255W ZRT1 5639 zrt1-L329STOP L329STOP partial_amino_acid_deletion PMID:18073441 L329STOP False L329* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.21963T>A/c.986T>A/p.L329* +YGL255W ZRT1 5640 zrt1-L337P L337P amino_acid_mutation PMID:18073441 L337P False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.21987T>C/c.1010T>C/p.L337P +YGL255W ZRT1 5641 zrt1-S325F S325F amino_acid_mutation PMID:18073441 S325F False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.21951C>T/c.974C>T/p.S325F +YGL255W ZRT1 5642 zrt1-S71P S71P amino_acid_mutation PMID:18073441 S71P False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.21188T>C/c.211T>C/p.S71P +YGL255W ZRT1 5644 zrt1-T332I T332I amino_acid_mutation PMID:18073441 T332I False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.21972C>T/c.995C>T/p.T332I +YGL255W ZRT1 5645 zrt1-V335N V335N amino_acid_mutation PMID:18073441 V335N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.21980_21981delGTinsAA/c.1003_1004delGTinsAA/p.V335N +YGL255W ZRT1 5646 zrt1-V56G V56G amino_acid_mutation PMID:18073441 V56G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.21144T>G/c.167T>G/p.V56G +YGL255W ZRT1 5647 zrt1-W123STOP W123STOP partial_amino_acid_deletion PMID:18073441 W123STOP False W123* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.21345G>A/c.368G>A/p.W123* +YGL255W ZRT1 5648 zrt1-W150STOP W150STOP partial_amino_acid_deletion PMID:18073441 W150STOP False W150* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.21110G>A/c.449G>A/p.W150* +YGL255W ZRT1 5649 zrt1-Y82STOP Y82STOP partial_amino_acid_deletion PMID:18073441 Y82STOP False Y82* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.21223T>A/c.246T>A/p.Y82* +YGR015C EAT1 5666 eat1-K179fs K179fs amino_acid_insertion_and_mutation PMID:30154260 K179fs False K179FS amino_acid_insertion_and_mutation:multiple_aa amino_acid_insertion_and_mutation chrVII:g.521540_521542delinsGCTAAA/c.535_537delinsTTTAGC/p.K179_K179delinsFS +YGR024C THG1 5673 thg1-V26A V26A amino_acid_mutation PMID:27307223 V26A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.532520A>G/c.77T>C/p.V26A +YGR029W ERV1 5680 erv1-C30S C30S amino_acid_mutation PMID:24625320,PMID:28814504 C30S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.543723T>A/c.88T>A/p.C30S +YGR029W ERV1 5681 erv1-C33S C33S amino_acid_mutation PMID:24625320 C33S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.543732T>A/c.97T>A/p.C33S +YGR029W ERV1 5682 erv1-R182H R182H amino_acid_mutation PMID:19409522,PMID:25269795 R182H False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.544179_544181delAGAinsCAT/c.544_546delAGAinsCAT/p.R182H +YGR040W KSS1 5692 kss1-D249G D249G amino_acid_mutation PMID:35219341 D249G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.575750A>G/c.746A>G/p.D249G +YGR040W KSS1 5693 kss1-D288G D288G amino_acid_mutation PMID:35219341 D288G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.576260A>G/c.863A>G/p.D288G +YGR040W KSS1 5694 kss1-E260G E260G amino_acid_mutation PMID:35219341 E260G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.576176A>G/c.779A>G/p.E260G +YGR040W KSS1 5695 kss1-K42R K42R amino_acid_mutation PMID:1628831,PMID:18417610 K42R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.575522A>G/c.125A>G/p.K42R +YGR040W KSS1 5696 kss1-P266T P266T amino_acid_mutation PMID:35219341 P266T False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.576193C>A/c.796C>A/p.P266T +YGR040W KSS1 5697 kss1-Y185F Y185F amino_acid_mutation PMID:1628831 Y185F False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.575951A>T/c.554A>T/p.Y185F +YGR046W TAM41 5701 tam41-K186P K186P amino_acid_mutation PMID:35321494 K186P False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.585450_585451delAAinsCC/c.556_557delAAinsCC/p.K186P +YGR046W TAM41 5702 tam41-P236L P236L amino_acid_mutation PMID:35321494 P236L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.585601C>T/c.707C>T/p.P236L +YGR046W TAM41 5703 tam41-Y209C Y209C amino_acid_mutation PMID:35321494 Y209C False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.585520A>G/c.626A>G/p.Y209C +YGR048W UFD1 5708 ufd1-A212T A212T amino_acid_mutation PMID:35283819 A212T False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.590459G>A/c.634G>A/p.A212T +YGR055W MUP1 5714 mup1-D43N D43N amino_acid_mutation PMID:27798240 D43N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.599543G>A/c.127G>A/p.D43N +YGR055W MUP1 5715 mup1-G47S G47S amino_acid_mutation PMID:27798240 G47S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.599555G>A/c.139G>A/p.G47S +YGR055W MUP1 5717 mup1-K16R K16R amino_acid_mutation PMID:27798240 K16R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.599463A>G/c.47A>G/p.K16R +YGR055W MUP1 5719 mup1-Q49R Q49R amino_acid_mutation PMID:27798240 Q49R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.599562A>G/c.146A>G/p.Q49R +YGR068C ART5 5731 art5-K364R K364R amino_acid_mutation PMID:35770973 K364R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.625994T>C/c.1091A>G/p.K364R +YGR074W SMD1 5734 smd1-E18A E18A amino_acid_mutation PMID:27974620 E18A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.635764A>C/c.53A>C/p.E18A +YGR074W SMD1 5735 smd1-N37A N37A amino_acid_mutation PMID:27974620 N37A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.635820_635821delAAinsGC/c.109_110delAAinsGC/p.N37A +YGR074W SMD1 5736 smd1-R88K R88K amino_acid_mutation PMID:27974620 R88K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.635974G>A/c.263G>A/p.R88K +YGR074W SMD1 5737 smd1-R93A R93A amino_acid_mutation PMID:27974620 R93A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.635988_635989delAGinsGC/c.277_278delAGinsGC/p.R93A +YGR086C PIL1 5752 pil1-R145E R145E amino_acid_mutation PMID:21593205 R145E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.650183_650185delCGTinsGAG/c.433_435delCGTinsGAG/p.R145E +YGR092W DBF2 5759 dbf2-N305A N305A amino_acid_mutation PMID:18048916 N305A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.669101_669102delAAinsGC/c.913_914delAAinsGC/p.N305A +YGR093W DRN1 5760 drn1-C269A C269A amino_acid_mutation PMID:24919400 C269A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.671192_671193delTGinsGC/c.805_806delTGinsGC/p.C269A +YGR094W VAS1 5763 vas1-M1A M1A amino_acid_mutation PMID:31529142 M1A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.672186_672187delATinsGC/c.1_2delATinsGC/p.M1A +YGR094W VAS1 5764 vas1-R788Q R788Q amino_acid_mutation PMID:31529142 R788Q False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.674547_674548delAGinsCA/c.2362_2363delAGinsCA/p.R788Q +YGR094W VAS1 5765 vas1-T380I T380I amino_acid_mutation PMID:24827421 T380I False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.673324C>T/c.1139C>T/p.T380I +YGR094W VAS1 5766 vas1-T662M T662M amino_acid_mutation PMID:31529142 T662M False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.674170_674171delCTinsTG/c.1985_1986delCTinsTG/p.T662M +YGR101W PCP1 5776 pcp1-G120R G120R amino_acid_mutation PMID:31441130 G120R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.693720G>A/c.358G>A/p.G120R +YGR101W PCP1 5777 pcp1-G233D G233D amino_acid_mutation PMID:31441130 G233D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.694060G>A/c.698G>A/p.G233D +YGR101W PCP1 5778 pcp1-G233S,V321A G233S,V321A amino_acid_mutation PMID:31441130 G233S|V321A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.694059G>A/c.697G>A/p.G233S|chrVII:g.694324T>C/c.962T>C/p.V321A +YGR101W PCP1 5779 pcp1-G315D G315D amino_acid_mutation PMID:31441130 G315D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.694224G>A/c.944G>A/p.G315D +YGR101W PCP1 5780 pcp1-H313A H313A amino_acid_mutation PMID:12901865 H313A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.694299_694300delCAinsGC/c.937_938delCAinsGC/p.H313A +YGR101W PCP1 5781 pcp1-N202A N202A amino_acid_mutation PMID:12901865 N202A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.693966_693967delAAinsGC/c.604_605delAAinsGC/p.N202A +YGR101W PCP1 5782 pcp1-S252N S252N amino_acid_mutation PMID:31441130 S252N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.694117G>A/c.755G>A/p.S252N +YGR101W PCP1 5783 pcp1-S256A S256A amino_acid_mutation PMID:12901865 S256A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.694128_694129delAGinsGC/c.766_767delAGinsGC/p.S256A +YGR112W SHY1 5789 shy1-G137E G137E amino_acid_mutation PMID:20624914 G137E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.717767G>A/c.410G>A/p.G137E +YGR113W DAM1 5796 dam1-S257A,S265A,S292A S257A,S265A,S292A amino_acid_mutation PMID:35883587 S257A|S265A|S292A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.719578T>G/c.769T>G/p.S257A|chrVII:g.719685_719686delAGinsGC/c.793_794delAGinsGC/p.S265A|chrVII:g.719766T>G/c.874T>G/p.S292A +YGR113W DAM1 5797 dam1-S31D S31D amino_acid_mutation PMID:30546002 S31D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.718983_718984delTCinsGA/c.91_92delTCinsGA/p.S31D +YGR116W SPT6 5804 spt6-F249K F249K amino_acid_mutation PMID:21094070 F249K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.721153_721155delTTTinsAAG/c.745_747delTTTinsAAG/p.F249K +YGR116W SPT6 5816 spt6-S1284A S1284A amino_acid_mutation PMID:32439331 S1284A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.724258T>G/c.3850T>G/p.S1284A +YGR119C NUP57 5822 nup57-S396F S396F amino_acid_mutation PMID:32303542 S396F False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.728593_728594delCAinsTT/c.1187_1188delCAinsTT/p.S396F +YGR123C PPT1 5827 ppt1-H311A H311A amino_acid_mutation PMID:32920053 H311A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.737272_737273delCAinsGC/c.931_932delCAinsGC/p.H311A +YGR124W ASN2 5828 asn2-R343A R343A amino_acid_mutation PMID:33347445 R343A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.740970_740971delAGinsGC/c.1027_1028delAGinsGC/p.R343A +YGR134W CAF130 5836 caf130-A508E A508E amino_acid_mutation PMID:35357307 A508E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.759292C>A/c.1523C>A/p.A508E +YGR134W CAF130 5837 caf130-C634STOP C634STOP partial_amino_acid_deletion PMID:35357307 C634STOP False C634* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.759671C>A/c.1902C>A/p.C634* +YGR134W CAF130 5838 caf130-E190STOP E190STOP partial_amino_acid_deletion PMID:35357307 E190STOP False E190* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.758337G>T/c.568G>T/p.E190* +YGR134W CAF130 5839 caf130-E453STOP E453STOP partial_amino_acid_deletion PMID:35357307 E453STOP False E453* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.759126G>T/c.1357G>T/p.E453* +YGR134W CAF130 5840 caf130-E820STOP E820STOP partial_amino_acid_deletion PMID:35357307 E820STOP False E820* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.760227G>T/c.2458G>T/p.E820* +YGR134W CAF130 5841 caf130-E836K E836K amino_acid_mutation PMID:35357307 E836K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.760275G>A/c.2506G>A/p.E836K +YGR134W CAF130 5845 caf130-G789STOP G789STOP partial_amino_acid_deletion PMID:35357307 G789STOP False G789* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.760134G>T/c.2365G>T/p.G789* +YGR134W CAF130 5846 caf130-G842V G842V amino_acid_mutation PMID:35357307 G842V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.760294G>T/c.2525G>T/p.G842V +YGR134W CAF130 5847 caf130-G873STOP G873STOP partial_amino_acid_deletion PMID:35357307 G873STOP False G873* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.760386G>T/c.2617G>T/p.G873* +YGR134W CAF130 5852 caf130-I848K I848K amino_acid_mutation PMID:35357307 I848K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.760312T>A/c.2543T>A/p.I848K +YGR134W CAF130 5856 caf130-P998L P998L amino_acid_mutation PMID:35357307 P998L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.760762C>T/c.2993C>T/p.P998L +YGR134W CAF130 5857 caf130-Q265STOP Q265STOP partial_amino_acid_deletion PMID:35357307 Q265STOP False Q265* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.758562C>T/c.793C>T/p.Q265* +YGR134W CAF130 5858 caf130-Q364STOP Q364STOP partial_amino_acid_deletion PMID:35357307 Q364STOP False Q364* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.758859C>T/c.1090C>T/p.Q364* +YGR134W CAF130 5859 caf130-Q898STOP Q898STOP partial_amino_acid_deletion PMID:35357307 Q898STOP False Q898* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.760461C>T/c.2692C>T/p.Q898* +YGR134W CAF130 5861 caf130-R712G R712G amino_acid_mutation PMID:35357307 R712G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.759903A>G/c.2134A>G/p.R712G +YGR134W CAF130 5862 caf130-S756P S756P amino_acid_mutation PMID:35357307 S756P False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.760035T>C/c.2266T>C/p.S756P +YGR134W CAF130 5863 caf130-T81K T81K amino_acid_mutation PMID:35357307 T81K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.758011C>A/c.242C>A/p.T81K +YGR134W CAF130 5864 caf130-W813R W813R amino_acid_mutation PMID:35357307 W813R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.760206T>A/c.2437T>A/p.W813R +YGR134W CAF130 5865 caf130-Y284STOP Y284STOP partial_amino_acid_deletion PMID:35357307 Y284STOP False Y284* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.758621T>A/c.852T>A/p.Y284* +YGR134W CAF130 5867 caf130-Y843STOP Y843STOP partial_amino_acid_deletion PMID:35357307 Y843STOP False Y843* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.760298T>A/c.2529T>A/p.Y843* +YGR134W CAF130 5868 caf130-Y863C Y863C amino_acid_mutation PMID:35357307 Y863C False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.760357A>G/c.2588A>G/p.Y863C +YGR134W CAF130 5869 caf130-Y863STOP Y863STOP partial_amino_acid_deletion PMID:35357307 Y863STOP False Y863* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.760358C>A/c.2589C>A/p.Y863* +YGR152C RSR1 5883 rsr1-C269S C269S amino_acid_mutation PMID:12058023 C269S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.794688A>T/c.805T>A/p.C269S +YGR152C RSR1 5884 rsr1-G12V G12V amino_acid_mutation PMID:12058023 G12V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.795458C>A/c.35G>T/p.G12V +YGR155W CYS4 5890 cys4-K265T K265T amino_acid_mutation PMID:31611676 K265T False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.799336A>C/c.794A>C/p.K265T +YGR155W CYS4 5891 cys4-S289D S289D amino_acid_mutation PMID:22438835 S289D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.799407_799408delTCinsGA/c.865_866delTCinsGA/p.S289D +YGR157W CHO2 5899 cho2-G102A,G104A G102A,G104A amino_acid_mutation PMID:35071223 G102A|G104A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.802496G>C/c.305G>C/p.G102A|chrVII:g.802750G>C/c.311G>C/p.G104A +YGR162W TIF4631 5912 tif4631-L614F L614F amino_acid_mutation PMID:23184954 L614F False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.825898_825900delCTGinsTTT/c.1840_1842delCTGinsTTT/p.L614F +YGR163W GTR2 5921 gtr2-G65R G65R amino_acid_mutation PMID:27267853 G65R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.827744G>A/c.193G>A/p.G65R +YGR163W GTR2 5922 gtr2-L207P L207P amino_acid_mutation PMID:24702707 L207P False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.828170_828171delTTinsCC/c.619_620delTTinsCC/p.L207P +YGR163W GTR2 5923 gtr2-L41S L41S amino_acid_mutation PMID:27267853 L41S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.827672_827673delCTinsTC/c.121_122delCTinsTC/p.L41S +YGR163W GTR2 5924 gtr2-P64S P64S amino_acid_mutation PMID:27267853 P64S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.827741C>T/c.190C>T/p.P64S +YGR163W GTR2 5925 gtr2-Q66L Q66L amino_acid_mutation PMID:16732272,PMID:32801125,PMID:35158208 Q66L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.827748A>T/c.197A>T/p.Q66L +YGR163W GTR2 5926 gtr2-S23L S23L amino_acid_mutation PMID:16732272,PMID:32801125 S23L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.827619C>T/c.68C>T/p.S23L +YGR163W GTR2 5927 gtr2-S23N S23N amino_acid_mutation PMID:19374031 S23N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.827618_827620delTCAinsAAC/c.67_69delTCAinsAAC/p.S23N +YGR163W GTR2 5928 gtr2-T38N T38N amino_acid_mutation PMID:27267853 T38N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.827664_827665delCAinsAC/c.113_114delCAinsAC/p.T38N +YGR163W GTR2 5929 gtr2-T44N T44N amino_acid_mutation PMID:19374031 T44N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.827531_827532delCGinsAC/c.131_132delCGinsAC/p.T44N +YGR175C ERG1 5941 erg1-F420I F420I amino_acid_mutation PMID:33648022 F420I False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.847166A>T/c.1258T>A/p.F420I +YGR175C ERG1 5942 erg1-G30S G30S amino_acid_mutation PMID:17043127 G30S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.848336C>T/c.88G>A/p.G30S +YGR175C ERG1 5943 erg1-L37P L37P amino_acid_mutation PMID:17043127 L37P False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.848412_848413delTTinsCC/c.109_110delTTinsCC/p.L37P +YGR184C UBR1 5948 Ubr1-F1190A,Q1186A,F1183A,H1175A F1190A,Q1186A,F1183A,H1175A amino_acid_mutation PMID:34789879 F1190A|Q1186A|F1183A|H1175A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.862185_862186delTTinsGC/c.3568_3569delTTinsGC/p.F1190A|chrVII:g.862197_862198delCAinsGC/c.3556_3557delCAinsGC/p.Q1186A|chrVII:g.862206_862207delTTinsGC/c.3547_3548delTTinsGC/p.F1183A|chrVII:g.862230_862231delCAinsGC/c.3523_3524delCAinsGC/p.H1175A +YGR184C UBR1 5949 Ubr1-H160R H160R amino_acid_mutation PMID:21931868 H160R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.865275T>C/c.479A>G/p.H160R +YGR184C UBR1 5950 Ubr1-H678A,V679A,L680A,H681A H678A,V679A,L680A,H681A amino_acid_mutation PMID:34789879 H678A|V679A|L680A|H681A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.863721_863722delCAinsGC/c.2032_2033delCAinsGC/p.H678A|chrVII:g.863718A>G/c.2036T>C/p.V679A|chrVII:g.863715_863716delCTinsGC/c.2038_2039delCTinsGC/p.L680A|chrVII:g.863712_863713delCAinsGC/c.2041_2042delCAinsGC/p.H681A +YGR184C UBR1 5951 Ubr1-Q1224E Q1224E amino_acid_mutation PMID:21931868 Q1224E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.862084G>C/c.3670C>G/p.Q1224E +YGR184C UBR1 5952 Ubr1-V146L V146L amino_acid_mutation PMID:21931868 V146L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.865318C>G/c.436G>C/p.V146L +YGR184C UBR1 5953 ubr1-E1436A,Q1437A E1436A,Q1437A amino_acid_mutation PMID:34789879 E1436A|Q1437A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.861447T>G/c.4307A>C/p.E1436A|chrVII:g.861444_861445delCAinsGC/c.4309_4310delCAinsGC/p.Q1437A +YGR184C UBR1 5954 ubr1-G173R G173R amino_acid_mutation PMID:29861160 G173R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.865237C>T/c.517G>A/p.G173R +YGR184C UBR1 5955 ubr1-K965A K965A amino_acid_mutation PMID:34789879 K965A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.862860_862861delAAinsGC/c.2893_2894delAAinsGC/p.K965A +YGR184C UBR1 5956 ubr1-K965A,E1436A,Q1437A,R1783A K965A,E1436A,Q1437A,R1783A amino_acid_mutation PMID:34789879 K965A|E1436A|Q1437A|R1783A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.862860_862861delAAinsGC/c.2893_2894delAAinsGC/p.K965A|chrVII:g.861447T>G/c.4307A>C/p.E1436A|chrVII:g.861444_861445delCAinsGC/c.4309_4310delCAinsGC/p.Q1437A|chrVII:g.860406_860407delAGinsGC/c.5347_5348delAGinsGC/p.R1783A +YGR184C UBR1 5957 ubr1-R1783A R1783A amino_acid_mutation PMID:34789879 R1783A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.860406_860407delAGinsGC/c.5347_5348delAGinsGC/p.R1783A +YGR185C TYS1 5959 tys1-D321Y D321Y amino_acid_mutation PMID:36307205 D321Y False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.866560C>A/c.961G>T/p.D321Y +YGR185C TYS1 5960 tys1-P171T P171T amino_acid_mutation PMID:30304524 P171T False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.867010G>T/c.511C>A/p.P171T +YGR186W TFG1 5963 tfg1-E346A E346A amino_acid_mutation PMID:15572698 E346A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.868800A>C/c.1037A>C/p.E346A +YGR186W TFG1 5964 tfg1-G363D G363D amino_acid_mutation PMID:16147988 G363D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.868861G>A/c.1088G>A/p.G363D +YGR186W TFG1 5965 tfg1-W350A W350A amino_acid_mutation PMID:15572698 W350A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.868821_868822delTGinsGC/c.1048_1049delTGinsGC/p.W350A +YGR188C BUB1 5967 bub1-T453A T453A amino_acid_mutation PMID:34861183 T453A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.873753T>C/c.1357A>G/p.T453A +YGR188C BUB1 5968 bub1-T453A,T455A T453A,T455A amino_acid_mutation PMID:34861183 T453A|T455A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.873753T>C/c.1357A>G/p.T453A|chrVII:g.873747T>C/c.1363A>G/p.T455A +YGR188C BUB1 5969 bub1-T485A,T509A,T518A T485A,T509A,T518A amino_acid_mutation PMID:24402315,PMID:34861183 T485A|T509A|T518A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.873657T>C/c.1453A>G/p.T485A|chrVII:g.873585T>C/c.1525A>G/p.T509A|chrVII:g.873558T>C/c.1552A>G/p.T518A +YGR188C BUB1 5970 bub1-T566A T566A amino_acid_mutation PMID:21298086 T566A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.873414T>C/c.1696A>G/p.T566A +YGR192C TDH3 5977 tdh3-C154S C154S amino_acid_mutation PMID:34969852 C154S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.883351A>T/c.460T>A/p.C154S +YGR192C TDH3 5978 tdh3-H51A H51A amino_acid_mutation PMID:30012884 H51A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.883659_883660delCAinsGC/c.151_152delCAinsGC/p.H51A +YGR192C TDH3 5979 tdh3-S149A S149A amino_acid_mutation PMID:34663920 S149A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.883366A>C/c.445T>G/p.S149A +YGR192C TDH3 5980 tdh3-T151A T151A amino_acid_mutation PMID:34663920 T151A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.883360T>C/c.451A>G/p.T151A +YGR193C PDX1 5981 pdx1-A208V A208V amino_acid_mutation PMID:32303542 A208V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.885119G>A/c.623C>T/p.A208V +YGR195W SKI6 5983 rrp41-R95E,R96E,E179A R95E,R96E,E179A amino_acid_mutation PMID:17173052 R95E|R96E|E179A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.889164_889165delAGinsGA/c.283_284delAGinsGA/p.R95E|chrVII:g.889167_889169delCGTinsGAG/c.286_288delCGTinsGAG/p.R96E|chrVII:g.889417A>C/c.536A>C/p.E179A +YGR209C TRX2 5997 trx2-K35A K35A amino_acid_mutation PMID:34530076 K35A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.913124_913125delAAinsGC/c.103_104delAAinsGC/p.K35A +YGR209C TRX2 5998 trx2-K35D K35D amino_acid_mutation PMID:34530076 K35D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.913123_913125delAAAinsGAC/c.103_105delAAAinsGAC/p.K35D +YGR209C TRX2 5999 trx2-K35F K35F amino_acid_mutation PMID:34530076 K35F False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.913123_913125delAAAinsTTT/c.103_105delAAAinsTTT/p.K35F +YGR209C TRX2 6000 trx2-K35G K35G amino_acid_mutation PMID:34530076 K35G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.913124_913125delAAinsGG/c.103_104delAAinsGG/p.K35G +YGR209C TRX2 6001 trx2-K35H K35H amino_acid_mutation PMID:34530076 K35H False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.913123_913125delAAAinsCAT/c.103_105delAAAinsCAT/p.K35H +YGR209C TRX2 6002 trx2-K35N K35N amino_acid_mutation PMID:34530076 K35N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.913123T>G/c.105A>C/p.K35N +YGR209C TRX2 6003 trx2-K35P K35P amino_acid_mutation PMID:34530076 K35P False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.913124_913125delAAinsCC/c.103_104delAAinsCC/p.K35P +YGR209C TRX2 6004 trx2-K35R K35R amino_acid_mutation PMID:34530076 K35R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.913124T>C/c.104A>G/p.K35R +YGR209C TRX2 6005 trx2-K35S K35S amino_acid_mutation PMID:34530076 K35S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.913123_913124delAAinsGC/c.104_105delAAinsGC/p.K35S +YGR209C TRX2 6006 trx2-K35V K35V amino_acid_mutation PMID:34530076 K35V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.913124_913125delAAinsGT/c.103_104delAAinsGT/p.K35V +YGR209C TRX2 6007 trx2-W30A W30A amino_acid_mutation PMID:34530076 W30A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.913139_913140delTGinsGC/c.88_89delTGinsGC/p.W30A +YGR209C TRX2 6008 trx2-W30D W30D amino_acid_mutation PMID:34530076 W30D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.913138_913140delTGGinsGAC/c.88_90delTGGinsGAC/p.W30D +YGR209C TRX2 6009 trx2-W30F W30F amino_acid_mutation PMID:34530076 W30F False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.913138_913139delGGinsTT/c.89_90delGGinsTT/p.W30F +YGR209C TRX2 6010 trx2-W30G W30G amino_acid_mutation PMID:34530076 W30G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.913140A>C/c.88T>G/p.W30G +YGR209C TRX2 6011 trx2-W30H W30H amino_acid_mutation PMID:34530076 W30H False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.913138_913140delTGGinsCAT/c.88_90delTGGinsCAT/p.W30H +YGR209C TRX2 6012 trx2-W30K W30K amino_acid_mutation PMID:34530076 W30K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.913139_913140delTGinsAA/c.88_89delTGinsAA/p.W30K +YGR209C TRX2 6013 trx2-W30N W30N amino_acid_mutation PMID:34530076 W30N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.913138_913140delTGGinsAAC/c.88_90delTGGinsAAC/p.W30N +YGR209C TRX2 6014 trx2-W30P W30P amino_acid_mutation PMID:34530076 W30P False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.913139_913140delTGinsCC/c.88_89delTGinsCC/p.W30P +YGR209C TRX2 6015 trx2-W30S W30S amino_acid_mutation PMID:34530076 W30S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.913139C>G/c.89G>C/p.W30S +YGR209C TRX2 6016 trx2-W30V W30V amino_acid_mutation PMID:34530076 W30V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.913139_913140delTGinsGT/c.88_89delTGinsGT/p.W30V +YGR209C TRX2 6017 trx2-W30Y W30Y amino_acid_mutation PMID:34530076 W30Y False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.913138_913139delGGinsAT/c.89_90delGGinsAT/p.W30Y +YGR217W CCH1 6030 cch1-C1369A C1369A amino_acid_mutation PMID:28576969 C1369A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.928800_928801delTGinsGC/c.4105_4106delTGinsGC/p.C1369A +YGR217W CCH1 6031 cch1-C1727A C1727A amino_acid_mutation PMID:28576969 C1727A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.929874_929875delTGinsGC/c.5179_5180delTGinsGC/p.C1727A +YGR217W CCH1 6032 cch1-C587A C587A amino_acid_mutation PMID:28576969 C587A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.926454_926455delTGinsGC/c.1759_1760delTGinsGC/p.C587A +YGR217W CCH1 6033 cch1-C606A C606A amino_acid_mutation PMID:28576969 C606A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.926511_926512delTGinsGC/c.1816_1817delTGinsGC/p.C606A +YGR217W CCH1 6034 cch1-C636A C636A amino_acid_mutation PMID:28576969 C636A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.926601_926602delTGinsGC/c.1906_1907delTGinsGC/p.C636A +YGR217W CCH1 6035 cch1-C642A C642A amino_acid_mutation PMID:28576969 C642A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.926619_926620delTGinsGC/c.1924_1925delTGinsGC/p.C642A +YGR217W CCH1 6036 cch1-P1228L P1228L amino_acid_mutation PMID:23475949 P1228L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.928378C>T/c.3683C>T/p.P1228L +YGR217W CCH1 6037 cch1-V49A,N1066D,Y1145H,N1330S V49A,N1066D,Y1145H,N1330S amino_acid_mutation PMID:23475949 V49A|N1066D|Y1145H|N1330S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.924841T>C/c.146T>C/p.V49A|chrVII:g.927891A>G/c.3196A>G/p.N1066D|chrVII:g.928128T>C/c.3433T>C/p.Y1145H|chrVII:g.928684A>G/c.3989A>G/p.N1330S +YGR218W CRM1 6038 CRM1-T539C T539C amino_acid_mutation PMID:19520826 T539C False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.934155_934157delACGinsTGT/c.1615_1617delACGinsTGT/p.T539C +YGR225W AMA1 6046 ama1-R593A R593A amino_acid_mutation PMID:18946082 R593A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.947014_947015delAGinsGC/c.1777_1778delAGinsGC/p.R593A +YGR235C MIC26 6052 mic26-I127T I127T amino_acid_mutation PMID:32439808 I127T False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.961682A>G/c.380T>C/p.I127T +YGR246C BRF1 6060 brf1-C134S C134S amino_acid_mutation PMID:28912018 C134S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.983873A>T/c.400T>A/p.C134S +YGR246C BRF1 6061 brf1-D22A D22A amino_acid_mutation PMID:10733531 D22A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.984208T>G/c.65A>C/p.D22A +YGR246C BRF1 6062 brf1-D22R D22R amino_acid_mutation PMID:10733531 D22R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.984208_984209delGAinsCG/c.64_65delGAinsCG/p.D22R +YGR246C BRF1 6063 brf1-E33R E33R amino_acid_mutation PMID:10733531 E33R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.984175_984176delGAinsAG/c.97_98delGAinsAG/p.E33R +YGR246C BRF1 6064 brf1-P288H P288H amino_acid_mutation PMID:25561519,PMID:27748960 P288H False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.983410G>T/c.863C>A/p.P288H +YGR246C BRF1 6065 brf1-P288R P288R amino_acid_mutation PMID:27748960 P288R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.983410G>C/c.863C>G/p.P288R +YGR246C BRF1 6066 brf1-R218W R218W amino_acid_mutation PMID:25561519,PMID:27748960 R218W False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.983619_983621delCGTinsTGG/c.652_654delCGTinsTGG/p.R218W +YGR246C BRF1 6067 brf1-S75T S75T amino_acid_mutation PMID:28912018 S75T False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.984050A>T/c.223T>A/p.S75T +YGR246C BRF1 6068 brf1-T10M T10M amino_acid_mutation PMID:28912018 T10M False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.984243_984244delCCinsTG/c.29_30delCCinsTG/p.T10M +YGR246C BRF1 6069 brf1-V24E V24E amino_acid_mutation PMID:10733531 V24E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.984201_984202delTTinsAG/c.71_72delTTinsAG/p.V24E +YGR246C BRF1 6070 brf1-V30E V30E amino_acid_mutation PMID:10733531 V30E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.984183_984184delTTinsAG/c.89_90delTTinsAG/p.V30E +YGR246C BRF1 6071 brf1-V31A V31A amino_acid_mutation PMID:10733531 V31A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.984181A>G/c.92T>C/p.V31A +YGR246C BRF1 6072 brf1-V31E V31E amino_acid_mutation PMID:10733531 V31E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.984180_984181delTCinsAG/c.92_93delTCinsAG/p.V31E +YGR246C BRF1 6073 brf1-W107R W107R amino_acid_mutation PMID:25721128,PMID:28912018 W107R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.983954A>T/c.319T>A/p.W107R +YGR252W GCN5 6079 gcn5-E173A E173A amino_acid_mutation PMID:22558379 E173A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.997325A>C/c.518A>C/p.E173A +YGR252W GCN5 6080 gcn5-E173H E173H amino_acid_mutation PMID:16287868,PMID:19099397,PMID:27672091,PMID:31699900 E173H False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.997324_997326delGAAinsCAT/c.517_519delGAAinsCAT/p.E173H +YGR252W GCN5 6081 gcn5-E173Q E173Q amino_acid_mutation PMID:10373413 E173Q False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.997324G>C/c.517G>C/p.E173Q +YGR252W GCN5 6082 gcn5-F221A F221A amino_acid_mutation PMID:22558379,PMID:27672091 F221A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.997529_997530delTTinsGC/c.661_662delTTinsGC/p.F221A +YGR252W GCN5 6083 gcn5-P371T,M372A P371T,M372A amino_acid_mutation PMID:35301489 P371T|M372A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.997979C>A/c.1111C>A/p.P371T|chrVII:g.997982_997983delATinsGC/c.1114_1115delATinsGC/p.M372A +YGR253C PUP2 6089 pup2-C221S C221S amino_acid_mutation PMID:30940569 C221S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.998480A>T/c.661T>A/p.C221S +YGR253C PUP2 6090 pup2-C76S C76S amino_acid_mutation PMID:30940569 C76S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.998915A>T/c.226T>A/p.C76S +YGR253C PUP2 6091 pup2-S35P,C221S S35P,C221S amino_acid_mutation PMID:30940569 S35P|C221S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.999038A>G/c.103T>C/p.S35P|chrVII:g.998480A>T/c.661T>A/p.C221S +YGR253C PUP2 6092 pup2-S35P,C76S S35P,C76S amino_acid_mutation PMID:30940569 S35P|C76S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.999038A>G/c.103T>C/p.S35P|chrVII:g.998915A>T/c.226T>A/p.C76S +YGR261C APL6 6099 apl6-L117D,I120D L117D,I120D amino_acid_mutation PMID:35417721 L117D|I120D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1016400_1016402delCTGinsGAC/c.349_351delCTGinsGAC/p.L117D|chrVII:g.1016392_1016393delATinsGA/c.358_359delATinsGA/p.I120D +YGR262C BUD32 6101 bud32-D161A D161A amino_acid_mutation PMID:12023889,PMID:14519092,PMID:18951093,PMID:21183954 D161A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017278T>G/c.482A>C/p.D161A +YGR262C BUD32 6102 bud32-D161R D161R amino_acid_mutation PMID:18951093,PMID:36416748 D161R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017278_1017279delGAinsCG/c.481_482delGAinsCG/p.D161R +YGR262C BUD32 6103 bud32-D182A D182A amino_acid_mutation PMID:18951093 D182A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017215T>G/c.545A>C/p.D182A +YGR262C BUD32 6104 bud32-D182A,R204E D182A,R204E amino_acid_mutation PMID:18951093 D182A|R204E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017215T>G/c.545A>C/p.D182A|chrVII:g.1017149_1017150delAGinsGA/c.610_611delAGinsGA/p.R204E +YGR262C BUD32 6105 bud32-D182A,V201Y D182A,V201Y amino_acid_mutation PMID:18951093 D182A|V201Y False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017215T>G/c.545A>C/p.D182A|chrVII:g.1017158_1017159delGTinsTA/c.601_602delGTinsTA/p.V201Y +YGR262C BUD32 6106 bud32-D198A D198A amino_acid_mutation PMID:12023889 D198A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017167T>G/c.593A>C/p.D198A +YGR262C BUD32 6107 bud32-E193A E193A amino_acid_mutation PMID:12023889 E193A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017182T>G/c.578A>C/p.E193A +YGR262C BUD32 6108 bud32-E193R E193R amino_acid_mutation PMID:33277478 E193R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017182_1017183delGAinsAG/c.577_578delGAinsAG/p.E193R +YGR262C BUD32 6109 bud32-E76A E76A amino_acid_mutation PMID:12023889,PMID:18951093 E76A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017533T>G/c.227A>C/p.E76A +YGR262C BUD32 6110 bud32-G25V G25V amino_acid_mutation PMID:12023889,PMID:14519092 G25V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017686C>A/c.74G>T/p.G25V +YGR262C BUD32 6111 bud32-K48A K48A amino_acid_mutation PMID:12023889 K48A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017617_1017618delAAinsGC/c.142_143delAAinsGC/p.K48A +YGR262C BUD32 6112 bud32-K52A K52A amino_acid_mutation PMID:12023889,PMID:14519092,PMID:18951093,PMID:19021767,PMID:36416748 K52A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017605_1017606delAAinsGC/c.154_155delAAinsGC/p.K52A +YGR262C BUD32 6113 bud32-K52A,R204E K52A,R204E amino_acid_mutation PMID:18951093 K52A|R204E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017605_1017606delAAinsGC/c.154_155delAAinsGC/p.K52A|chrVII:g.1017149_1017150delAGinsGA/c.610_611delAGinsGA/p.R204E +YGR262C BUD32 6114 bud32-K52A,V201Y K52A,V201Y amino_acid_mutation PMID:18951093 K52A|V201Y False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017605_1017606delAAinsGC/c.154_155delAAinsGC/p.K52A|chrVII:g.1017158_1017159delGTinsTA/c.601_602delGTinsTA/p.V201Y +YGR262C BUD32 6115 bud32-K57A K57A amino_acid_mutation PMID:12023889 K57A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017590_1017591delAAinsGC/c.169_170delAAinsGC/p.K57A +YGR262C BUD32 6116 bud32-K57E K57E amino_acid_mutation PMID:18951093 K57E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017591T>C/c.169A>G/p.K57E +YGR262C BUD32 6117 bud32-K57E,R60E K57E,R60E amino_acid_mutation PMID:19172740 K57E|R60E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017591T>C/c.169A>G/p.K57E|chrVII:g.1017581_1017582delAGinsGA/c.178_179delAGinsGA/p.R60E +YGR262C BUD32 6118 bud32-K57E,R72E K57E,R72E amino_acid_mutation PMID:18951093 K57E|R72E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017591T>C/c.169A>G/p.K57E|chrVII:g.1017544_1017546delCGTinsGAG/c.214_216delCGTinsGAG/p.R72E +YGR262C BUD32 6119 bud32-N166A N166A amino_acid_mutation PMID:18951093 N166A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017263_1017264delAAinsGC/c.496_497delAAinsGC/p.N166A +YGR262C BUD32 6120 bud32-N166A,D182A N166A,D182A amino_acid_mutation PMID:18951093 N166A|D182A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017263_1017264delAAinsGC/c.496_497delAAinsGC/p.N166A|chrVII:g.1017215T>G/c.545A>C/p.D182A +YGR262C BUD32 6121 bud32-N166A,R204E N166A,R204E amino_acid_mutation PMID:18951093 N166A|R204E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017263_1017264delAAinsGC/c.496_497delAAinsGC/p.N166A|chrVII:g.1017149_1017150delAGinsGA/c.610_611delAGinsGA/p.R204E +YGR262C BUD32 6122 bud32-N166A,V201Y N166A,V201Y amino_acid_mutation PMID:18951093 N166A|V201Y False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017263_1017264delAAinsGC/c.496_497delAAinsGC/p.N166A|chrVII:g.1017158_1017159delGTinsTA/c.601_602delGTinsTA/p.V201Y +YGR262C BUD32 6123 bud32-R204E R204E amino_acid_mutation PMID:19172740 R204E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017149_1017150delAGinsGA/c.610_611delAGinsGA/p.R204E +YGR262C BUD32 6124 bud32-R255A R255A amino_acid_mutation PMID:12023889 R255A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1016996_1016997delCGinsGC/c.763_764delCGinsGC/p.R255A +YGR262C BUD32 6125 bud32-R72E R72E amino_acid_mutation PMID:19172740 R72E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017544_1017546delCGTinsGAG/c.214_216delCGTinsGAG/p.R72E +YGR262C BUD32 6126 bud32-R78D R78D amino_acid_mutation PMID:33277478 R78D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017527_1017528delCGinsGA/c.232_233delCGinsGA/p.R78D +YGR262C BUD32 6127 bud32-S189R S189R amino_acid_mutation PMID:33277478 S189R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017194_1017195delTCinsAG/c.565_566delTCinsAG/p.S189R +YGR262C BUD32 6128 bud32-S258A S258A amino_acid_mutation PMID:23620299 S258A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1016987_1016988delAGinsGC/c.772_773delAGinsGC/p.S258A +YGR262C BUD32 6129 bud32-T163A T163A amino_acid_mutation PMID:12023889 T163A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017273T>C/c.487A>G/p.T163A +YGR262C BUD32 6130 bud32-T163K T163K amino_acid_mutation PMID:12023889 T163K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017272G>T/c.488C>A/p.T163K +YGR262C BUD32 6131 bud32-V201Y V201Y amino_acid_mutation PMID:18951093 V201Y False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017158_1017159delGTinsTA/c.601_602delGTinsTA/p.V201Y +YGR264C MES1 6134 mes1-F731S F731S amino_acid_mutation PMID:31611676 F731S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1019662A>G/c.2192T>C/p.F731S +YGR268C HUA1 6137 hua1-K3R,K18R K3R,K18R amino_acid_mutation PMID:31956026 K3R|K18R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1026646T>C/c.8A>G/p.K3R|chrVII:g.1026601T>C/c.53A>G/p.K18R +YGR270W YTA7 6142 yta7-K460A K460A amino_acid_mutation PMID:22156209,PMID:34471130 K460A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1028747_1028748delAAinsGC/c.1378_1379delAAinsGC/p.K460A +YGR279C SCW4 6161 scw4-Q296E Q296E amino_acid_mutation PMID:31611676 Q296E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1049073G>C/c.886C>G/p.Q296E +YGR281W YOR1 6166 yor1-D71A,E73A D71A,E73A amino_acid_mutation PMID:31956032 D71A|E73A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1053035A>C/c.212A>C/p.D71A|chrVII:g.1053041A>C/c.218A>C/p.E73A +YGR281W YOR1 6167 yor1-D734N D734N amino_acid_mutation PMID:24876383 D734N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1055023G>A/c.2200G>A/p.D734N +YGR281W YOR1 6168 yor1-F270S F270S amino_acid_mutation PMID:20837481 F270S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1053632T>C/c.809T>C/p.F270S +YGR281W YOR1 6169 yor1-G1370D G1370D amino_acid_mutation PMID:24876383 G1370D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1056932G>A/c.4109G>A/p.G1370D +YGR281W YOR1 6170 yor1-G278R G278R amino_acid_mutation PMID:20837481 G278R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1053655G>C/c.832G>C/p.G278R +YGR281W YOR1 6171 yor1-G713D G713D amino_acid_mutation PMID:24876383 G713D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1054961G>A/c.2138G>A/p.G713D +YGR281W YOR1 6172 yor1-G713D, K997C G713D, K997C amino_acid_mutation PMID:24876383 G713D|K997C False G713D,K997C amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1054961G>A/c.2138G>A/p.G713D|chrVII:g.1055812_1055814delAAAinsTGT/c.2989_2991delAAAinsTGT/p.K997C +YGR281W YOR1 6173 yor1-G713D, K997S G713D, K997S amino_acid_mutation PMID:24876383 G713D|K997S False G713D,K997S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1054961G>A/c.2138G>A/p.G713D|chrVII:g.1055813_1055814delAAinsGC/c.2990_2991delAAinsGC/p.K997S +YGR281W YOR1 6174 yor1-I1084P I1084P amino_acid_mutation PMID:31956032 I1084P False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1056073_1056074delATinsCC/c.3250_3251delATinsCC/p.I1084P +YGR281W YOR1 6175 yor1-K997C, G1370D K997C, G1370D amino_acid_mutation PMID:24876383 K997C|G1370D False K997C,G1370D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1055812_1055814delAAAinsTGT/c.2989_2991delAAAinsTGT/p.K997C|chrVII:g.1056932G>A/c.4109G>A/p.G1370D +YGR281W YOR1 6176 yor1-K997C, Y1222G K997C, Y1222G amino_acid_mutation PMID:24876383 K997C|Y1222G False K997C,Y1222G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1055812_1055814delAAAinsTGT/c.2989_2991delAAAinsTGT/p.K997C|chrVII:g.1056487_1056488delTAinsGG/c.3664_3665delTAinsGG/p.Y1222G +YGR281W YOR1 6177 yor1-K997S, G1370D K997S, G1370D amino_acid_mutation PMID:24876383 K997S|G1370D False K997S,G1370D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1055813_1055814delAAinsGC/c.2990_2991delAAinsGC/p.K997S|chrVII:g.1056932G>A/c.4109G>A/p.G1370D +YGR281W YOR1 6178 yor1-K997S, Y1222G K997S, Y1222G amino_acid_mutation PMID:24876383 K997S|Y1222G False K997S,Y1222G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1055813_1055814delAAinsGC/c.2990_2991delAAinsGC/p.K997S|chrVII:g.1056487_1056488delTAinsGG/c.3664_3665delTAinsGG/p.Y1222G +YGR281W YOR1 6179 yor1-P485A, Y1222G P485A, Y1222G amino_acid_mutation PMID:24876383 P485A|Y1222G False P485A,Y1222G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1054276C>G/c.1453C>G/p.P485A|chrVII:g.1056487_1056488delTAinsGG/c.3664_3665delTAinsGG/p.Y1222G +YGR281W YOR1 6180 yor1-P485S P485S amino_acid_mutation PMID:24876383 P485S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1054276C>T/c.1453C>T/p.P485S +YGR281W YOR1 6181 yor1-P485S, Y1222G P485S, Y1222G amino_acid_mutation PMID:24876383 P485S|Y1222G False P485S,Y1222G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1054276C>T/c.1453C>T/p.P485S|chrVII:g.1056487_1056488delTAinsGG/c.3664_3665delTAinsGG/p.Y1222G +YGR281W YOR1 6182 yor1-R1168M R1168M amino_acid_mutation PMID:20837481 R1168M False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1056326G>T/c.3503G>T/p.R1168M +YGR281W YOR1 6183 yor1-R387G R387G amino_acid_mutation PMID:31956032 R387G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1053982A>G/c.1159A>G/p.R387G +YGR281W YOR1 6184 yor1-Y1222G Y1222G amino_acid_mutation PMID:24876383 Y1222G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1056487_1056488delTAinsGG/c.3664_3665delTAinsGG/p.Y1222G +YGR285C ZUO1 6185 zuo1-H128Q H128Q amino_acid_mutation PMID:35701497 H128Q False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1062770A>T/c.384T>A/p.H128Q +YGR285C ZUO1 6186 zuo1-K341A K341A amino_acid_mutation PMID:35701497 K341A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1062132_1062133delAAinsGC/c.1021_1022delAAinsGC/p.K341A +YGR285C ZUO1 6187 zuo1-K341A,K342A,K344A,K348A K341A,K342A,K344A,K348A amino_acid_mutation PMID:35701497 K341A|K342A|K344A|K348A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1062132_1062133delAAinsGC/c.1021_1022delAAinsGC/p.K341A|chrVII:g.1062129_1062130delAAinsGC/c.1024_1025delAAinsGC/p.K342A|chrVII:g.1062123_1062124delAAinsGC/c.1030_1031delAAinsGC/p.K344A|chrVII:g.1062143_1062144delAAinsGC/c.1042_1043delAAinsGC/p.K348A +YGR285C ZUO1 6188 zuo1-K342A K342A amino_acid_mutation PMID:35701497 K342A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1062129_1062130delAAinsGC/c.1024_1025delAAinsGC/p.K342A +YGR285C ZUO1 6189 zuo1-K344A K344A amino_acid_mutation PMID:35701497 K344A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1062123_1062124delAAinsGC/c.1030_1031delAAinsGC/p.K344A +YGR285C ZUO1 6190 zuo1-K348A K348A amino_acid_mutation PMID:35701497 K348A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1062143_1062144delAAinsGC/c.1042_1043delAAinsGC/p.K348A +YGR285C ZUO1 6191 zuo1-K352A,R356A K352A,R356A amino_acid_mutation PMID:35701497 K352A|R356A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1062099_1062100delAAinsGC/c.1054_1055delAAinsGC/p.K352A|chrVII:g.1062087_1062088delAGinsGC/c.1066_1067delAGinsGC/p.R356A +YGR285C ZUO1 6192 zuo1-R247A,R251A R247A,R251A amino_acid_mutation PMID:35701497 R247A|R251A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1062414_1062415delAGinsGC/c.739_740delAGinsGC/p.R247A|chrVII:g.1062402_1062403delCGinsGC/c.751_752delCGinsGC/p.R251A +YGR288W MAL13 6194 mal13-D437G D437G amino_acid_mutation PMID:31611676 D437G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1071602A>G/c.1310A>G/p.D437G +YGR289C MAL11 6195 mal11-A228P,C360S,G388A A228P,C360S,G388A amino_acid_mutation PMID:33277478 A228P|C360S|G388A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1075132C>G/c.682G>C/p.A228P|chrVII:g.1074736A>T/c.1078T>A/p.C360S|chrVII:g.1074651C>G/c.1163G>C/p.G388A +YGR289C MAL11 6196 mal11-L164F,A228P,G388A L164F,A228P,G388A amino_acid_mutation PMID:33277478 L164F|A228P|G388A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1075324G>A/c.490C>T/p.L164F|chrVII:g.1075132C>G/c.682G>C/p.A228P|chrVII:g.1074651C>G/c.1163G>C/p.G388A +YGR292W MAL12 6197 mal12-D37N D37N amino_acid_mutation PMID:31611676 D37N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1076707G>A/c.109G>A/p.D37N +YHL009C YAP3 6202 yap3-K151W K151W amino_acid_mutation PMID:33356165 K151W False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.84609_84610delAAinsTG/c.451_452delAAinsTG/p.K151W +YHL015W RPS20 6206 rps20-I86D I86D amino_acid_mutation PMID:32790018 I86D False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.75667_75668delATinsGA/c.256_257delATinsGA/p.I86D +YHL015W RPS20 6207 rps20-I86K I86K amino_acid_mutation PMID:32790018 I86K False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.75668_75669delTCinsAG/c.257_258delTCinsAG/p.I86K +YHL015W RPS20 6208 rps20-I86N I86N amino_acid_mutation PMID:32790018 I86N False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.75668T>A/c.257T>A/p.I86N +YHL016C DUR3 6211 dur3-K556R K556R amino_acid_mutation PMID:28185458 K556R False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.72578T>C/c.1667A>G/p.K556R +YHL016C DUR3 6212 dur3-K571R K571R amino_acid_mutation PMID:28185458 K571R False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.72533T>C/c.1712A>G/p.K571R +YHL020C OPI1 6215 opi1-C142A C142A amino_acid_mutation PMID:28581036 C142A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.67032_67033delTGinsGC/c.424_425delTGinsGC/p.C142A +YHL020C OPI1 6216 opi1-C159A C159A amino_acid_mutation PMID:28581036 C159A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.66981_66982delTGinsGC/c.475_476delTGinsGC/p.C159A +YHL022C SPO11 6227 spo11-F260A F260A amino_acid_mutation PMID:33398171 F260A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.63379_63380delTTinsGC/c.778_779delTTinsGC/p.F260A +YHL022C SPO11 6230 spo11-K173A K173A amino_acid_mutation PMID:33398171 K173A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.63640_63641delAAinsGC/c.517_518delAAinsGC/p.K173A +YHL022C SPO11 6231 spo11-Q376A Q376A amino_acid_mutation PMID:14992724 Q376A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.63031_63032delCAinsGC/c.1126_1127delCAinsGC/p.Q376A +YHL022C SPO11 6232 spo11-R344A R344A amino_acid_mutation PMID:33398171 R344A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.63127_63128delCGinsGC/c.1030_1031delCGinsGC/p.R344A +YHL022C SPO11 6233 spo11-Y135F Y135F amino_acid_mutation PMID:32152049,PMID:34433891,PMID:34951404,PMID:36271494,PMID:37018287,PMID:9121560 Y135F False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.63754T>A/c.404A>T/p.Y135F +YHL024W RIM4 6239 rim4-S525A,S607A S525A,S607A amino_acid_mutation PMID:35508136 S525A|S607A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.58221T>G/c.1573T>G/p.S525A|chrVIII:g.58467_58468delAGinsGC/c.1819_1820delAGinsGC/p.S607A +YHL040C ARN1 6245 arn1-F208A F208A amino_acid_mutation PMID:15719020 F208A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.20349_20350delTTinsGC/c.622_623delTTinsGC/p.F208A +YHL040C ARN1 6246 arn1-F540A,Y544A F540A,Y544A amino_acid_mutation PMID:15719020 F540A|Y544A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.19353_19354delTTinsGC/c.1618_1619delTTinsGC/p.F540A|chrVIII:g.19341_19342delTAinsGC/c.1630_1631delTAinsGC/p.Y544A +YHL040C ARN1 6247 arn1-F615A,F622A,F624A F615A,F622A,F624A amino_acid_mutation PMID:15719020 F615A|F622A|F624A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.19128_19129delTTinsGC/c.1843_1844delTTinsGC/p.F615A|chrVIII:g.19107_19108delTTinsGC/c.1864_1865delTTinsGC/p.F622A|chrVIII:g.19101_19102delTTinsGC/c.1870_1871delTTinsGC/p.F624A +YHL040C ARN1 6248 arn1-Q550A,R551A,Y558A,R563A Q550A,R551A,Y558A,R563A amino_acid_mutation PMID:15719020 Q550A|R551A|Y558A|R563A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.19323_19324delCAinsGC/c.1648_1649delCAinsGC/p.Q550A|chrVIII:g.19320_19321delAGinsGC/c.1651_1652delAGinsGC/p.R551A|chrVIII:g.19299_19300delTAinsGC/c.1672_1673delTAinsGC/p.Y558A|chrVIII:g.19284_19285delAGinsGC/c.1687_1688delAGinsGC/p.R563A +YHL040C ARN1 6249 arn1-R132A R132A amino_acid_mutation PMID:15719020 R132A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.20577_20578delAGinsGC/c.394_395delAGinsGC/p.R132A +YHL040C ARN1 6250 arn1-Y101A Y101A amino_acid_mutation PMID:15719020 Y101A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.20670_20671delTAinsGC/c.301_302delTAinsGC/p.Y101A +YHL040C ARN1 6251 arn1-Y166A Y166A amino_acid_mutation PMID:15719020 Y166A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.20475_20476delTAinsGC/c.496_497delTAinsGC/p.Y166A +YHL040C ARN1 6252 arn1-Y380A Y380A amino_acid_mutation PMID:15719020 Y380A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.19833_19834delTAinsGC/c.1138_1139delTAinsGC/p.Y380A +YHL040C ARN1 6253 arn1-Y534A,Y538A Y534A,Y538A amino_acid_mutation PMID:15719020 Y534A|Y538A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.19371_19372delTAinsGC/c.1600_1601delTAinsGC/p.Y534A|chrVIII:g.19359_19360delTAinsGC/c.1612_1613delTAinsGC/p.Y538A +YHL040C ARN1 6254 arn1-Y98A Y98A amino_acid_mutation PMID:15719020 Y98A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.20679_20680delTAinsGC/c.292_293delTAinsGC/p.Y98A +YHR004C NEM1 6258 nem1-S140A S140A amino_acid_mutation PMID:30201607 S140A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.112677A>C/c.418T>G/p.S140A +YHR004C NEM1 6259 nem1-S140D S140D amino_acid_mutation PMID:30201607 S140D False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.112675_112677delTCAinsGAC/c.418_420delTCAinsGAC/p.S140D +YHR004C NEM1 6260 nem1-S201A S201A amino_acid_mutation PMID:31501244 S201A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.112494A>C/c.601T>G/p.S201A +YHR004C NEM1 6261 nem1-S210A S210A amino_acid_mutation PMID:30201607 S210A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.112467A>C/c.628T>G/p.S210A +YHR004C NEM1 6262 nem1-S210D S210D amino_acid_mutation PMID:30201607 S210D False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.112466_112467delTCinsGA/c.628_629delTCinsGA/p.S210D +YHR005C GPA1 6264 GPA1-R297C R297C amino_acid_mutation PMID:17132542 R297C False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.114029G>A/c.889C>T/p.R297C +YHR005C GPA1 6265 GPA1-R297H R297H amino_acid_mutation PMID:17132542,PMID:24850831 R297H False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.114028C>T/c.890G>A/p.R297H +YHR005C GPA1 6266 GPA1-R297S R297S amino_acid_mutation PMID:17132542 R297S False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.114029G>T/c.889C>A/p.R297S +YHR005C GPA1 6270 gpa1-E364K E364K amino_acid_mutation PMID:33636126 E364K False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.113828C>T/c.1090G>A/p.E364K +YHR005C GPA1 6271 gpa1-G302S G302S amino_acid_mutation PMID:35985794,PMID:9488712 G302S False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.114014C>T/c.904G>A/p.G302S +YHR005C GPA1 6272 gpa1-G322A G322A amino_acid_mutation PMID:33636126 G322A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.113953C>G/c.965G>C/p.G322A +YHR005C GPA1 6273 gpa1-K21E,R22E K21E,R22E amino_acid_mutation PMID:12029138,PMID:35985794 K21E|R22E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.114857T>C/c.61A>G/p.K21E|chrVIII:g.114853_114854delAGinsGA/c.64_65delAGinsGA/p.R22E +YHR005C GPA1 6274 gpa1-R327S R327S amino_acid_mutation PMID:33636126 R327S False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.113939G>T/c.979C>A/p.R327S +YHR005C-A TIM10 6280 tim10-K68E K68E amino_acid_mutation PMID:19037098 K68E False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.115700T>C/c.202A>G/p.K68E +YHR005C-A TIM10 6281 tim10-L26Q L26Q amino_acid_mutation PMID:31907035 L26Q False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.115825A>T/c.77T>A/p.L26Q +YHR008C SOD2 6285 sod2-I91T I91T amino_acid_mutation PMID:27584980 I91T False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.123319A>G/c.272T>C/p.I91T +YHR013C ARD1 6287 ard1-E26Q E26Q amino_acid_mutation PMID:26296886 E26Q False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.131371C>G/c.76G>C/p.E26Q +YHR013C ARD1 6288 ard1-S39P S39P amino_acid_mutation PMID:27668839 S39P False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.131332A>G/c.115T>C/p.S39P +YHR015W MIP6 6290 mip6-W442A W442A amino_acid_mutation PMID:31680439 W442A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.135877_135878delTGinsGC/c.1324_1325delTGinsGC/p.W442A +YHR018C ARG4 6293 arg4-H162A H162A amino_acid_mutation PMID:29127264 H162A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.140918_140919delCAinsGC/c.484_485delCAinsGC/p.H162A +YHR018C ARG4 6294 arg4-H162N H162N amino_acid_mutation PMID:29127264 H162N False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.140919G>T/c.484C>A/p.H162N +YHR030C SLT2 6316 slt2-E191G E191G amino_acid_mutation PMID:35420390 E191G False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.169773T>C/c.572A>G/p.E191G +YHR030C SLT2 6320 slt2-S340A S340A amino_acid_mutation PMID:34663920 S340A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.169327A>C/c.1018T>G/p.S340A +YHR030C SLT2 6321 slt2-S414A S414A amino_acid_mutation PMID:34663920 S414A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.169105A>C/c.1240T>G/p.S414A +YHR030C SLT2 6322 slt2-S416A S416A amino_acid_mutation PMID:34663920 S416A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.169099A>C/c.1246T>G/p.S416A +YHR030C SLT2 6323 slt2-S428A S428A amino_acid_mutation PMID:34663920 S428A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.169063A>C/c.1282T>G/p.S428A +YHR030C SLT2 6324 slt2-T190A T190A amino_acid_mutation PMID:33498635,PMID:35420390 T190A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.169777T>C/c.568A>G/p.T190A +YHR030C SLT2 6325 slt2-T190A,Y192A T190A,Y192A amino_acid_mutation PMID:33498635 T190A|Y192A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.169777T>C/c.568A>G/p.T190A|chrVIII:g.169770_169771delTAinsGC/c.574_575delTAinsGC/p.Y192A +YHR030C SLT2 6326 slt2-T190A,Y192F T190A,Y192F amino_acid_mutation PMID:35420390 T190A|Y192F False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.169777T>C/c.568A>G/p.T190A|chrVIII:g.169770T>A/c.575A>T/p.Y192F +YHR030C SLT2 6327 slt2-T413A T413A amino_acid_mutation PMID:34663920 T413A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.169108T>C/c.1237A>G/p.T413A +YHR030C SLT2 6328 slt2-T453A T453A amino_acid_mutation PMID:34663920 T453A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.168988T>C/c.1357A>G/p.T453A +YHR030C SLT2 6329 slt2-Y192A Y192A amino_acid_mutation PMID:34663920,PMID:35420390 Y192A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.169770_169771delTAinsGC/c.574_575delTAinsGC/p.Y192A +YHR030C SLT2 6330 slt2-Y192F Y192F amino_acid_mutation PMID:33498635 Y192F False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.169770T>A/c.575A>T/p.Y192F +YHR031C RRM3 6336 rrm3-K260A K260A amino_acid_mutation PMID:10693764,PMID:36350688,PMID:36533450 K260A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.172233_172234delAAinsGC/c.778_779delAAinsGC/p.K260A +YHR031C RRM3 6337 rrm3-K260R K260R amino_acid_mutation PMID:10693764 K260R False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.172233T>C/c.779A>G/p.K260R +YHR036W BRL1 6349 brl1-A360D A360D amino_acid_mutation PMID:35293775 A360D False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181423C>A/c.1079C>A/p.A360D +YHR036W BRL1 6350 brl1-C343Y C343Y amino_acid_mutation PMID:35293775 C343Y False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181372G>A/c.1028G>A/p.C343Y +YHR036W BRL1 6351 brl1-C365S,C371S C365S,C371S amino_acid_mutation PMID:35293775 C365S|C371S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181437T>A/c.1093T>A/p.C365S|chrVIII:g.181455T>A/c.1111T>A/p.C371S +YHR036W BRL1 6352 brl1-C371R C371R amino_acid_mutation PMID:15882446,PMID:21552543,PMID:27708008 C371R False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181455T>C/c.1111T>C/p.C371R +YHR036W BRL1 6353 brl1-C371S C371S amino_acid_mutation PMID:15882446,PMID:27708008 C371S False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181455T>A/c.1111T>A/p.C371S +YHR036W BRL1 6356 brl1-F391D F391D amino_acid_mutation PMID:36000978 F391D False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181515_181516delTTinsGA/c.1171_1172delTTinsGA/p.F391D +YHR036W BRL1 6357 brl1-F391E F391E amino_acid_mutation PMID:35293775 F391E False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181515_181517delTTCinsGAG/c.1171_1173delTTCinsGAG/p.F391E +YHR036W BRL1 6358 brl1-F391P F391P amino_acid_mutation PMID:35293775 F391P False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181515_181516delTTinsCC/c.1171_1172delTTinsCC/p.F391P +YHR036W BRL1 6359 brl1-I395D I395D amino_acid_mutation PMID:36000978 I395D False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181527_181528delATinsGA/c.1183_1184delATinsGA/p.I395D +YHR036W BRL1 6360 brl1-K405I K405I amino_acid_mutation PMID:15882446,PMID:27708008 K405I False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181558A>T/c.1214A>T/p.K405I +YHR036W BRL1 6361 brl1-L402E L402E amino_acid_mutation PMID:35293775 L402E False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181548_181549delTTinsGA/c.1204_1205delTTinsGA/p.L402E +YHR036W BRL1 6362 brl1-N353D N353D amino_acid_mutation PMID:35293775 N353D False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181401A>G/c.1057A>G/p.N353D +YHR036W BRL1 6363 brl1-P356G P356G amino_acid_mutation PMID:35293775 P356G False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181410_181411delCCinsGG/c.1066_1067delCCinsGG/p.P356G +YHR036W BRL1 6366 brl1-T355A T355A amino_acid_mutation PMID:35293775 T355A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181407A>G/c.1063A>G/p.T355A +YHR036W BRL1 6367 brl1-W368Y W368Y amino_acid_mutation PMID:35293775 W368Y False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181447_181448delGGinsAT/c.1103_1104delGGinsAT/p.W368Y +YHR036W BRL1 6368 brl1-Y347H Y347H amino_acid_mutation PMID:34549174,PMID:35293775 Y347H False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181383T>C/c.1039T>C/p.Y347H +YHR038W RRF1 6372 rrf1-L209P L209P amino_acid_mutation PMID:12853640 L209P False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.184691T>C/c.626T>C/p.L209P +YHR039C-A VMA10 6373 vma10-K55A K55A amino_acid_mutation PMID:10969085 K55A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.187354_187355delAAinsGC/c.163_164delAAinsGC/p.K55A +YHR039C-A VMA10 6374 vma10-Y46A Y46A amino_acid_mutation PMID:10969085 Y46A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.187381_187382delTAinsGC/c.136_137delTAinsGC/p.Y46A +YHR043C DOG2 6380 dog2-D12A,D14A D12A,D14A amino_acid_mutation PMID:31481524 D12A|D14A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.193511T>G/c.35A>C/p.D12A|chrVIII:g.193505T>G/c.41A>C/p.D14A +YHR056C RSC30 6387 rsc3-C15G C15G amino_acid_mutation PMID:11336698 C15G False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.217792A>C/c.43T>G/p.C15G +YHR069C RRP4 6399 rrp4-G226D G226D amino_acid_mutation PMID:34162742,PMID:36861343 G226D False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.233981_233982delGAinsAC/c.677_678delGAinsAC/p.G226D +YHR069C RRP4 6400 rrp4-G58V G58V amino_acid_mutation PMID:34162742 G58V False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.234486C>A/c.173G>T/p.G58V +YHR069C RRP4 6401 rrp4-M68T M68T amino_acid_mutation PMID:36861343 M68T False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.234470A>G/c.203T>C/p.M68T +YHR070W TRM5 6405 trm5-R270H R270H amino_acid_mutation PMID:26189817 R270H False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.235688_235690delAGAinsCAT/c.808_810delAGAinsCAT/p.R270H +YHR071W PCL5 6408 pcl5-T32A T32A amino_acid_mutation PMID:18794371 T32A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.237097A>G/c.94A>G/p.T32A +YHR072W ERG7 6413 erg7-D357N D357N amino_acid_mutation PMID:31611676 D357N False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.240166G>A/c.1069G>A/p.D357N +YHR074W QNS1 6415 qns1-C175A C175A amino_acid_mutation PMID:33749726 C175A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.246715_246716delTGinsGC/c.523_524delTGinsGC/p.C175A +YHR074W QNS1 6416 qns1-D365A D365A amino_acid_mutation PMID:33749726 D365A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.247286A>C/c.1094A>C/p.D365A +YHR076W PTC7 6417 ptc7-D109A D109A amino_acid_mutation PMID:28076776 D109A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.251519A>C/c.326A>C/p.D109A +YHR079C IRE1 6421 ire1-D797N,K799N D797N,K799N amino_acid_mutation PMID:33627709 D797N|K799N False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.259203C>T/c.2389G>A/p.D797N|chrVIII:g.259195C>G/c.2397G>C/p.K799N +YHR079C IRE1 6422 ire1-K1058A K1058A amino_acid_mutation PMID:26966233 K1058A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.258419_258420delAAinsGC/c.3172_3173delAAinsGC/p.K1058A +YHR079C IRE1 6423 ire1-K702A K702A amino_acid_mutation PMID:26966233 K702A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.259487_259488delAAinsGC/c.2104_2105delAAinsGC/p.K702A +YHR079C IRE1 6425 ire1-S837A,S840A,S841A,T844A,S850A S837A,S840A,S841A,T844A,S850A amino_acid_mutation PMID:28559428 S837A|S840A|S841A|T844A|S850A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.259083A>C/c.2509T>G/p.S837A|chrVIII:g.259074A>C/c.2518T>G/p.S840A|chrVIII:g.259071A>C/c.2521T>G/p.S841A|chrVIII:g.259062T>C/c.2530A>G/p.T844A|chrVIII:g.259044A>C/c.2548T>G/p.S850A +YHR079C IRE1 6426 ire1-S840A,S841A S840A,S841A amino_acid_mutation PMID:26966233,PMID:28559428 S840A|S841A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.259074A>C/c.2518T>G/p.S840A|chrVIII:g.259071A>C/c.2521T>G/p.S841A +YHR079C IRE1 6427 ire1-S840A,S841A,T844A,S850A S840A,S841A,T844A,S850A amino_acid_mutation PMID:28559428 S840A|S841A|T844A|S850A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.259074A>C/c.2518T>G/p.S840A|chrVIII:g.259071A>C/c.2521T>G/p.S841A|chrVIII:g.259062T>C/c.2530A>G/p.T844A|chrVIII:g.259044A>C/c.2548T>G/p.S850A +YHR079C IRE1 6428 ire1-S840E,S841E S840E,S841E amino_acid_mutation PMID:26966233 S840E|S841E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.259072_259074delTCTinsGAG/c.2518_2520delTCTinsGAG/p.S840E|chrVIII:g.259070_259071delTCinsGA/c.2521_2522delTCinsGA/p.S841E +YHR079C IRE1 6429 ire1-V535R V535R amino_acid_mutation PMID:28689662,PMID:35071223 V535R False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.259988_259989delGTinsAG/c.1603_1604delGTinsAG/p.V535R +YHR079C IRE1 6430 ire1-Y225H Y225H amino_acid_mutation PMID:33627709 Y225H False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.260919A>G/c.673T>C/p.Y225H +YHR082C KSP1 6433 ksp1-K47D K47D amino_acid_mutation PMID:18417610,PMID:31455721 K47D False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.271408_271410delAAAinsGAC/c.139_141delAAAinsGAC/p.K47D +YHR084W STE12 6439 ste12-A160P A160P amino_acid_mutation PMID:31810988 A160P False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.274651G>C/c.478G>C/p.A160P +YHR084W STE12 6440 ste12-K146D K146D amino_acid_mutation PMID:31810988 K146D False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.274609_274611delAAAinsGAC/c.436_438delAAAinsGAC/p.K146D +YHR084W STE12 6441 ste12-K150A K150A amino_acid_mutation PMID:31810988 K150A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.274621_274622delAAinsGC/c.448_449delAAinsGC/p.K150A +YHR084W STE12 6442 ste12-K150I K150I amino_acid_mutation PMID:31810988 K150I False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.274622_274623delAGinsTC/c.449_450delAGinsTC/p.K150I +YHR084W STE12 6443 ste12-K152L K152L amino_acid_mutation PMID:31810988 K152L False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.274627_274628delAAinsCT/c.454_455delAAinsCT/p.K152L +YHR084W STE12 6444 ste12-S158H S158H amino_acid_mutation PMID:31810988 S158H False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.274645_274646delAGinsCA/c.472_473delAGinsCA/p.S158H +YHR086W NAM8 6448 nam8-L140F L140F amino_acid_mutation PMID:36870416 L140F False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.278572A>T/c.420A>T/p.L140F +YHR091C MSR1 6454 msr1-R531H R531H amino_acid_mutation PMID:22569581 R531H False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.285178_285180delAGAinsCAT/c.1591_1593delAGAinsCAT/p.R531H +YHR094C HXT1 6455 hxt1-N370A N370A amino_acid_mutation PMID:25816250 N370A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.291517_291518delAAinsGC/c.1108_1109delAAinsGC/p.N370A +YHR099W TRA1 6459 tra1-D397N,S404F,D469N,V1115I D397N,S404F,D469N,V1115I amino_acid_mutation PMID:22308403 D397N|S404F|D469N|V1115I False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.303949G>A/c.1189G>A/p.D397N|chrVIII:g.303971C>T/c.1211C>T/p.S404F|chrVIII:g.304165G>A/c.1405G>A/p.D469N|chrVIII:g.306103G>A/c.3343G>A/p.V1115I +YHR099W TRA1 6460 tra1-F3744A F3744A amino_acid_mutation PMID:22439631,PMID:30740854 F3744A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.313990_313991delTTinsGC/c.11230_11231delTTinsGC/p.F3744A +YHR099W TRA1 6461 tra1-H400Y H400Y amino_acid_mutation PMID:22308403 H400Y False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.303958C>T/c.1198C>T/p.H400Y +YHR099W TRA1 6462 tra1-L3733A L3733A amino_acid_mutation PMID:18950642,PMID:20635087,PMID:22439631 L3733A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.313957_313958delTTinsGC/c.11197_11198delTTinsGC/p.L3733A +YHR099W TRA1 6463 tra1-P2590L,E3638K P2590L,E3638K amino_acid_mutation PMID:22308403 P2590L|E3638K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.310529C>T/c.7769C>T/p.P2590L|chrVIII:g.313672G>A/c.10912G>A/p.E3638K +YHR099W TRA1 6464 tra1-R3389Q,R3390Q R3389Q,R3390Q amino_acid_mutation PMID:29626083 R3389Q|R3390Q False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.312925_312926delAGinsCA/c.10165_10166delAGinsCA/p.R3389Q|chrVIII:g.312929_312930delGTinsAA/c.10169_10170delGTinsAA/p.R3390Q +YHR099W TRA1 6465 tra1-R3389Q,R3390Q,R3456Q R3389Q,R3390Q,R3456Q amino_acid_mutation PMID:29626083,PMID:34849885 R3389Q|R3390Q|R3456Q False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.312925_312926delAGinsCA/c.10165_10166delAGinsCA/p.R3389Q|chrVIII:g.312929_312930delGTinsAA/c.10169_10170delGTinsAA/p.R3390Q|chrVIII:g.313127_313128delGTinsAA/c.10367_10368delGTinsAA/p.R3456Q +YHR099W TRA1 6466 tra1-R3456Q R3456Q amino_acid_mutation PMID:29626083 R3456Q False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.313127_313128delGTinsAA/c.10367_10368delGTinsAA/p.R3456Q +YHR099W TRA1 6467 tra1-S1259N,A1299T,V1303I,T1430I S1259N,A1299T,V1303I,T1430I amino_acid_mutation PMID:22308403 S1259N|A1299T|V1303I|T1430I False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.306536G>A/c.3776G>A/p.S1259N|chrVIII:g.306655G>A/c.3895G>A/p.A1299T|chrVIII:g.306667G>A/c.3907G>A/p.V1303I|chrVIII:g.307049C>T/c.4289C>T/p.T1430I +YHR099W TRA1 6468 tra1-S208F,S627L,E658K,G3027D,P3730S S208F,S627L,E658K,G3027D,P3730S amino_acid_mutation PMID:22308403 S208F|S627L|E658K|G3027D|P3730S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.303383C>T/c.623C>T/p.S208F|chrVIII:g.304640C>T/c.1880C>T/p.S627L|chrVIII:g.304732G>A/c.1972G>A/p.E658K|chrVIII:g.311840G>A/c.9080G>A/p.G3027D|chrVIII:g.313948C>T/c.11188C>T/p.P3730S +YHR099W TRA1 6470 tra1-SRR3413AAA SRR3413AAA amino_acid_mutation PMID:29626083 SRR3413AAA False amino_acid_mutation:multiple_aa amino_acid_mutation chrVIII:g.312997_313005delinsGCAGCAGCA/c.10237_10245delinsGCAGCAGCA/p.S3413_R3415delinsAAA +YHR099W TRA1 6471 tra1-T1733I T1733I amino_acid_mutation PMID:22308403 T1733I False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.307958C>T/c.5198C>T/p.T1733I +YHR107C CDC12 6479 cdc12-G16A G16A amino_acid_mutation PMID:31611676 G16A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.328106C>G/c.47G>C/p.G16A +YHR107C CDC12 6480 cdc12-G268R G268R amino_acid_mutation PMID:24398420,PMID:31990274 G268R False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.327235C>T/c.802G>A/p.G268R +YHR111W UBA4 6482 uba4-C225S C225S amino_acid_mutation PMID:19145231,PMID:19151091 C225S False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.333731T>A/c.673T>A/p.C225S +YHR111W UBA4 6483 uba4-C397S C397S amino_acid_mutation PMID:19145231,PMID:19151091 C397S False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.334260T>A/c.1189T>A/p.C397S +YHR115C DMA1 6485 dma1-C345A C345A amino_acid_mutation PMID:33933452 C345A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.340326_340327delTGinsGC/c.1033_1034delTGinsGC/p.C345A +YHR115C DMA1 6486 dma1-R199A R199A amino_acid_mutation PMID:33933452 R199A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.340764_340765delAGinsGC/c.595_596delAGinsGC/p.R199A +YHR117W TOM71 6487 tom71-F435L F435L amino_acid_mutation PMID:31611676 F435L False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.343619T>C/c.1303T>C/p.F435L +YHR118C ORC6 6489 orc6-C278S C278S amino_acid_mutation PMID:29796388 C278S False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.344797A>T/c.832T>A/p.C278S +YHR118C ORC6 6490 orc6-Y418S Y418S amino_acid_mutation PMID:24137536 Y418S False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.344376T>G/c.1253A>C/p.Y418S +YHR119W SET1 6501 set1-C1019A C1019A amino_acid_mutation PMID:15775977,PMID:36416860 C1019A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.349097_349098delTGinsGC/c.3055_3056delTGinsGC/p.C1019A +YHR119W SET1 6502 set1-D845G D845G amino_acid_mutation PMID:31611676 D845G False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.348576A>G/c.2534A>G/p.D845G +YHR119W SET1 6503 set1-G951A G951A amino_acid_mutation PMID:35041077 G951A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.348894G>C/c.2852G>C/p.G951A +YHR119W SET1 6504 set1-G951S G951S amino_acid_mutation PMID:15775977,PMID:36416860,PMID:9398665 G951S False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.348893G>A/c.2851G>A/p.G951S +YHR119W SET1 6505 set1-H1017K H1017K amino_acid_mutation PMID:15775977,PMID:36416860 H1017K False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.349091_349093delCATinsAAG/c.3049_3051delCATinsAAG/p.H1017K +YHR119W SET1 6506 set1-H422A H422A amino_acid_mutation PMID:16787775,PMID:36416860 H422A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.347306_347307delCAinsGC/c.1264_1265delCAinsGC/p.H422A +YHR119W SET1 6507 set1-R1013H R1013H amino_acid_mutation PMID:35041077 R1013H False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.349080G>A/c.3038G>A/p.R1013H +YHR119W SET1 6508 set1-T1006A T1006A amino_acid_mutation PMID:35183557 T1006A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.349058A>G/c.3016A>G/p.T1006A +YHR119W SET1 6509 set1-T785A,T787A T785A,T787A amino_acid_mutation PMID:35183557 T785A|T787A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.348395A>G/c.2353A>G/p.T785A|chrVIII:g.348401A>G/c.2359A>G/p.T787A +YHR119W SET1 6510 set1-Y271A,F272A Y271A,F272A amino_acid_mutation PMID:16787775 Y271A|F272A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.346853_346854delTAinsGC/c.811_812delTAinsGC/p.Y271A|chrVIII:g.346856_346857delTTinsGC/c.814_815delTTinsGC/p.F272A +YHR119W SET1 6511 set1-Y967A Y967A amino_acid_mutation PMID:35041077 Y967A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.348941_348942delTAinsGC/c.2899_2900delTAinsGC/p.Y967A +YHR120W MSH1 6516 msh1-F105A F105A amino_acid_mutation PMID:19398768 F105A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.349886_349887delTTinsGC/c.313_314delTTinsGC/p.F105A +YHR120W MSH1 6517 msh1-G776D G776D amino_acid_mutation PMID:19398768 G776D False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.351900G>A/c.2327G>A/p.G776D +YHR120W MSH1 6518 msh1-R813W R813W amino_acid_mutation PMID:19056520,PMID:19398768 R813W False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.352010_352012delCGAinsTGG/c.2437_2439delCGAinsTGG/p.R813W +YHR129C ARP1 6532 arp1-D162A,E165A D162A,E165A amino_acid_mutation PMID:15975903 D162A|E165A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363669T>G/c.485A>C/p.D162A|chrVIII:g.363660T>G/c.494A>C/p.E165A +YHR129C ARP1 6533 arp1-D192A,E195A D192A,E195A amino_acid_mutation PMID:15975903 D192A|E195A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363579T>G/c.575A>C/p.D192A|chrVIII:g.363570T>G/c.584A>C/p.E195A +YHR129C ARP1 6534 arp1-D263A,R264A D263A,R264A amino_acid_mutation PMID:15975903 D263A|R264A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363366T>G/c.788A>C/p.D263A|chrVIII:g.363363_363364delCGinsGC/c.790_791delCGinsGC/p.R264A +YHR129C ARP1 6535 arp1-D282A,D286A D282A,D286A amino_acid_mutation PMID:15975903 D282A|D286A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363309T>G/c.845A>C/p.D282A|chrVIII:g.363594T>G/c.857A>C/p.D286A +YHR129C ARP1 6536 arp1-D296A,D298A D296A,D298A amino_acid_mutation PMID:15975903 D296A|D298A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363267T>G/c.887A>C/p.D296A|chrVIII:g.363261T>G/c.893A>C/p.D298A +YHR129C ARP1 6537 arp1-D298A,R300A,K301A D298A,R300A,K301A amino_acid_mutation PMID:15975903 D298A|R300A|K301A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363261T>G/c.893A>C/p.D298A|chrVIII:g.363255_363256delAGinsGC/c.898_899delAGinsGC/p.R300A|chrVIII:g.363252_363253delAAinsGC/c.901_902delAAinsGC/p.K301A +YHR129C ARP1 6538 arp1-D2A,D6A D2A,D6A amino_acid_mutation PMID:15975903 D2A|D6A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.364149T>G/c.5A>C/p.D2A|chrVIII:g.364137T>G/c.17A>C/p.D6A +YHR129C ARP1 6539 arp1-D321A,R322A D321A,R322A amino_acid_mutation PMID:15975903 D321A|R322A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363192T>G/c.962A>C/p.D321A|chrVIII:g.363189_363190delCGinsGC/c.964_965delCGinsGC/p.R322A +YHR129C ARP1 6540 arp1-D326A,E328A D326A,E328A amino_acid_mutation PMID:15975903 D326A|E328A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363177T>G/c.977A>C/p.D326A|chrVIII:g.363171T>G/c.983A>C/p.E328A +YHR129C ARP1 6541 arp1-D48A,K49A,E53A D48A,K49A,E53A amino_acid_mutation PMID:15975903 D48A|K49A|E53A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.364011T>G/c.143A>C/p.D48A|chrVIII:g.364008_364009delAAinsGC/c.145_146delAAinsGC/p.K49A|chrVIII:g.363996T>G/c.158A>C/p.E53A +YHR129C ARP1 6542 arp1-D58A D58A amino_acid_mutation PMID:15975903 D58A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363981T>G/c.173A>C/p.D58A +YHR129C ARP1 6543 arp1-D87A,E90A D87A,E90A amino_acid_mutation PMID:15975903 D87A|E90A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363894T>G/c.260A>C/p.D87A|chrVIII:g.364182T>G/c.269A>C/p.E90A +YHR129C ARP1 6544 arp1-E108A E108A amino_acid_mutation PMID:15975903 E108A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363831T>G/c.323A>C/p.E108A +YHR129C ARP1 6545 arp1-E108A,H109A E108A,H109A amino_acid_mutation PMID:16415535 E108A|H109A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363831T>G/c.323A>C/p.E108A|chrVIII:g.363828_363829delCAinsGC/c.325_326delCAinsGC/p.H109A +YHR129C ARP1 6546 arp1-E133A,D136A E133A,D136A amino_acid_mutation PMID:15975903 E133A|D136A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363756T>G/c.398A>C/p.E133A|chrVIII:g.363747T>G/c.407A>C/p.D136A +YHR129C ARP1 6547 arp1-E214A,R215A,E216A E214A,R215A,E216A amino_acid_mutation PMID:15975903 E214A|R215A|E216A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363810T>G/c.641A>C/p.E214A|chrVIII:g.363510_363511delCGinsGC/c.643_644delCGinsGC/p.R215A|chrVIII:g.363507T>G/c.647A>C/p.E216A +YHR129C ARP1 6548 arp1-E214A,R215A,E216A,R219A E214A,R215A,E216A,R219A amino_acid_mutation PMID:15975903 E214A|R215A|E216A|R219A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363810T>G/c.641A>C/p.E214A|chrVIII:g.363510_363511delCGinsGC/c.643_644delCGinsGC/p.R215A|chrVIII:g.363507T>G/c.647A>C/p.E216A|chrVIII:g.363498_363499delCGinsGC/c.655_656delCGinsGC/p.R219A +YHR129C ARP1 6549 arp1-E236A,E237A,K238A E236A,E237A,K238A amino_acid_mutation PMID:16415535 E236A|E237A|K238A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363447T>G/c.707A>C/p.E236A|chrVIII:g.363444T>G/c.710A>C/p.E237A|chrVIII:g.363441_363442delAAinsGC/c.712_713delAAinsGC/p.K238A +YHR129C ARP1 6550 arp1-E31A,E32A E31A,E32A amino_acid_mutation PMID:15975903 E31A|E32A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.364062T>G/c.92A>C/p.E31A|chrVIII:g.364059T>G/c.95A>C/p.E32A +YHR129C ARP1 6551 arp1-E31A,E32A,R33A E31A,E32A,R33A amino_acid_mutation PMID:16415535 E31A|E32A|R33A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.364062T>G/c.92A>C/p.E31A|chrVIII:g.364059T>G/c.95A>C/p.E32A|chrVIII:g.364056_364057delAGinsGC/c.97_98delAGinsGC/p.R33A +YHR129C ARP1 6552 arp1-E31A,E32A,R33A,K35A E31A,E32A,R33A,K35A amino_acid_mutation PMID:15975903 E31A|E32A|R33A|K35A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.364062T>G/c.92A>C/p.E31A|chrVIII:g.364059T>G/c.95A>C/p.E32A|chrVIII:g.364056_364057delAGinsGC/c.97_98delAGinsGC/p.R33A|chrVIII:g.364050_364051delAAinsGC/c.103_104delAAinsGC/p.K35A +YHR129C ARP1 6553 arp1-E344A,R345A,K346A E344A,R345A,K346A amino_acid_mutation PMID:15975903 E344A|R345A|K346A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363123T>G/c.1031A>C/p.E344A|chrVIII:g.363120_363121delAGinsGC/c.1033_1034delAGinsGC/p.R345A|chrVIII:g.363117_363118delAAinsGC/c.1036_1037delAAinsGC/p.K346A +YHR129C ARP1 6554 arp1-E374A,D375A E374A,D375A amino_acid_mutation PMID:15975903 E374A|D375A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363033T>G/c.1121A>C/p.E374A|chrVIII:g.363030T>G/c.1124A>C/p.D375A +YHR129C ARP1 6555 arp1-E374A,D375A,R378A E374A,D375A,R378A amino_acid_mutation PMID:15975903 E374A|D375A|R378A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363033T>G/c.1121A>C/p.E374A|chrVIII:g.363030T>G/c.1124A>C/p.D375A|chrVIII:g.363021_363022delCGinsGC/c.1132_1133delCGinsGC/p.R378A +YHR129C ARP1 6556 arp1-E84A,D85A E84A,D85A amino_acid_mutation PMID:15975903 E84A|D85A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363903T>G/c.251A>C/p.E84A|chrVIII:g.363900T>G/c.254A>C/p.D85A +YHR129C ARP1 6557 arp1-E84A,D85A,D87A E84A,D85A,D87A amino_acid_mutation PMID:16415535 E84A|D85A|D87A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363903T>G/c.251A>C/p.E84A|chrVIII:g.363900T>G/c.254A>C/p.D85A|chrVIII:g.363894T>G/c.260A>C/p.D87A +YHR129C ARP1 6558 arp1-K122A,R124A,E125A K122A,R124A,E125A amino_acid_mutation PMID:15975903 K122A|R124A|E125A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363789_363790delAAinsGC/c.364_365delAAinsGC/p.K122A|chrVIII:g.363783_363784delAGinsGC/c.370_371delAGinsGC/p.R124A|chrVIII:g.363780T>G/c.374A>C/p.E125A +YHR129C ARP1 6559 arp1-K222A,E223A,K224A K222A,E223A,K224A amino_acid_mutation PMID:16415535 K222A|E223A|K224A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363489_363490delAAinsGC/c.664_665delAAinsGC/p.K222A|chrVIII:g.363486T>G/c.668A>C/p.E223A|chrVIII:g.363483_363484delAAinsGC/c.670_671delAAinsGC/p.K224A +YHR129C ARP1 6560 arp1-K230A,K233A,K234A K230A,K233A,K234A amino_acid_mutation PMID:15975903 K230A|K233A|K234A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363465_363466delAAinsGC/c.688_689delAAinsGC/p.K230A|chrVIII:g.363456_363457delAAinsGC/c.697_698delAAinsGC/p.K233A|chrVIII:g.363453_363454delAAinsGC/c.700_701delAAinsGC/p.K234A +YHR129C ARP1 6561 arp1-K233A,K234A,E235A K233A,K234A,E235A amino_acid_mutation PMID:16415535 K233A|K234A|E235A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363456_363457delAAinsGC/c.697_698delAAinsGC/p.K233A|chrVIII:g.363453_363454delAAinsGC/c.700_701delAAinsGC/p.K234A|chrVIII:g.363450T>G/c.704A>C/p.E235A +YHR129C ARP1 6562 arp1-K233A,K234A,E235A,E236A,E237A,K238A K233A,K234A,E235A,E236A,E237A,K238A amino_acid_mutation PMID:15975903 K233A|K234A|E235A|E236A|E237A|K238A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363456_363457delAAinsGC/c.697_698delAAinsGC/p.K233A|chrVIII:g.363453_363454delAAinsGC/c.700_701delAAinsGC/p.K234A|chrVIII:g.363450T>G/c.704A>C/p.E235A|chrVIII:g.363447T>G/c.707A>C/p.E236A|chrVIII:g.363444T>G/c.710A>C/p.E237A|chrVIII:g.363441_363442delAAinsGC/c.712_713delAAinsGC/p.K238A +YHR129C ARP1 6563 arp1-K251A,D254A K251A,D254A amino_acid_mutation PMID:15975903 K251A|D254A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363402_363403delAAinsGC/c.751_752delAAinsGC/p.K251A|chrVIII:g.363393T>G/c.761A>C/p.D254A +YHR129C ARP1 6564 arp1-K294A,D296A K294A,D296A amino_acid_mutation PMID:15975903 K294A|D296A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363273_363274delAAinsGC/c.880_881delAAinsGC/p.K294A|chrVIII:g.363267T>G/c.887A>C/p.D296A +YHR129C ARP1 6565 arp1-K294A,D296A,D298A K294A,D296A,D298A amino_acid_mutation PMID:16415535 K294A|D296A|D298A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363273_363274delAAinsGC/c.880_881delAAinsGC/p.K294A|chrVIII:g.363267T>G/c.887A>C/p.D296A|chrVIII:g.363261T>G/c.893A>C/p.D298A +YHR129C ARP1 6566 arp1-K317A,D321A K317A,D321A amino_acid_mutation PMID:15975903 K317A|D321A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363204_363205delAAinsGC/c.949_950delAAinsGC/p.K317A|chrVIII:g.363192T>G/c.962A>C/p.D321A +YHR129C ARP1 6567 arp1-K332A,K336A K332A,K336A amino_acid_mutation PMID:15975903 K332A|K336A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363456_363457delAAinsGC/c.994_995delAAinsGC/p.K332A|chrVIII:g.363147_363148delAAinsGC/c.1006_1007delAAinsGC/p.K336A +YHR129C ARP1 6568 arp1-K336A,K338A K336A,K338A amino_acid_mutation PMID:15975903 K336A|K338A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363147_363148delAAinsGC/c.1006_1007delAAinsGC/p.K336A|chrVIII:g.363141_363142delAAinsGC/c.1012_1013delAAinsGC/p.K338A +YHR129C ARP1 6569 arp1-K35A,E38A K35A,E38A amino_acid_mutation PMID:15975903 K35A|E38A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.364050_364051delAAinsGC/c.103_104delAAinsGC/p.K35A|chrVIII:g.364041T>G/c.113A>C/p.E38A +YHR129C ARP1 6570 arp1-K368A,K369A,D371A K368A,K369A,D371A amino_acid_mutation PMID:16415535 K368A|K369A|D371A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363051_363052delAAinsGC/c.1102_1103delAAinsGC/p.K368A|chrVIII:g.363048_363049delAAinsGC/c.1105_1106delAAinsGC/p.K369A|chrVIII:g.363042T>G/c.1112A>C/p.D371A +YHR129C ARP1 6571 arp1-K369A,D371A K369A,D371A amino_acid_mutation PMID:15975903 K369A|D371A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363048_363049delAAinsGC/c.1105_1106delAAinsGC/p.K369A|chrVIII:g.363042T>G/c.1112A>C/p.D371A +YHR129C ARP1 6572 arp1-K46A,D48A,K49A K46A,D48A,K49A amino_acid_mutation PMID:15975903 K46A|D48A|K49A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.364017_364018delAAinsGC/c.136_137delAAinsGC/p.K46A|chrVIII:g.364011T>G/c.143A>C/p.D48A|chrVIII:g.364008_364009delAAinsGC/c.145_146delAAinsGC/p.K49A +YHR129C ARP1 6573 arp1-K67A,R69A K67A,R69A amino_acid_mutation PMID:15975903 K67A|R69A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363954_363955delAAinsGC/c.199_200delAAinsGC/p.K67A|chrVIII:g.363948_363949delCGinsGC/c.205_206delCGinsGC/p.R69A +YHR129C ARP1 6574 arp1-K73A,R75A K73A,R75A amino_acid_mutation PMID:15975903 K73A|R75A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363936_363937delAAinsGC/c.217_218delAAinsGC/p.K73A|chrVIII:g.363930_363931delCGinsGC/c.223_224delCGinsGC/p.R75A +YHR129C ARP1 6575 arp1-K79A,H80A K79A,H80A amino_acid_mutation PMID:16415535 K79A|H80A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363918_363919delAAinsGC/c.235_236delAAinsGC/p.K79A|chrVIII:g.363915_363916delCAinsGC/c.238_239delCAinsGC/p.H80A +YHR129C ARP1 6576 arp1-R124A,E125A R124A,E125A amino_acid_mutation PMID:15975903 R124A|E125A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363783_363784delAGinsGC/c.370_371delAGinsGC/p.R124A|chrVIII:g.363780T>G/c.374A>C/p.E125A +YHR129C ARP1 6577 arp1-R185A,D187A R185A,D187A amino_acid_mutation PMID:15975903 R185A|D187A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363600_363601delAGinsGC/c.553_554delAGinsGC/p.R185A|chrVIII:g.363594T>G/c.560A>C/p.D187A +YHR129C ARP1 6578 arp1-R202A,K203A R202A,K203A amino_acid_mutation PMID:15975903 R202A|K203A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363549_363550delCGinsGC/c.604_605delCGinsGC/p.R202A|chrVIII:g.363546_363547delAAinsGC/c.607_608delAAinsGC/p.K203A +YHR129C ARP1 6579 arp1-R256A,E259A R256A,E259A amino_acid_mutation PMID:15975903 R256A|E259A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363387_363388delAGinsGC/c.766_767delAGinsGC/p.R256A|chrVIII:g.363378T>G/c.776A>C/p.E259A +YHR129C ARP1 6580 arp1-R266A,E269A R266A,E269A amino_acid_mutation PMID:15975903 R266A|E269A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363357_363358delCGinsGC/c.796_797delCGinsGC/p.R266A|chrVIII:g.363348T>G/c.806A>C/p.E269A +YHR129C ARP1 6581 arp1-R300A,K301A R300A,K301A amino_acid_mutation PMID:16415535 R300A|K301A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363255_363256delAGinsGC/c.898_899delAGinsGC/p.R300A|chrVIII:g.363252_363253delAAinsGC/c.901_902delAAinsGC/p.K301A +YHR129C ARP1 6582 arp1-R364A,K368A R364A,K368A amino_acid_mutation PMID:15975903 R364A|K368A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363063_363064delAGinsGC/c.1090_1091delAGinsGC/p.R364A|chrVIII:g.363051_363052delAAinsGC/c.1102_1103delAAinsGC/p.K368A +YHR129C ARP1 6583 arp1-R75A,K79A R75A,K79A amino_acid_mutation PMID:15975903 R75A|K79A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363930_363931delCGinsGC/c.223_224delCGinsGC/p.R75A|chrVIII:g.363918_363919delAAinsGC/c.235_236delAAinsGC/p.K79A +YHR129C ARP1 6584 arp1-Y151A Y151A amino_acid_mutation PMID:15975903 Y151A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363702_363703delTAinsGC/c.451_452delTAinsGC/p.Y151A +YHR129C ARP1 6585 arp1-Y151S Y151S amino_acid_mutation PMID:15975903 Y151S False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.363702T>G/c.452A>C/p.Y151S +YHR134W WSS1 6588 wss1-E116Q E116Q amino_acid_mutation PMID:32130911 E116Q False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.372094G>C/c.346G>C/p.E116Q +YHR144C DCD1 6594 dcd1-S178F S178F amino_acid_mutation PMID:17803923 S178F False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.388200G>A/c.533C>T/p.S178F +YHR158C KEL1 6597 kel1-P344T P344T amino_acid_mutation PMID:33749796 P344T False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.416150G>T/c.1030C>A/p.P344T +YHR164C DNA2 6615 dna2-D657A D657A amino_acid_mutation PMID:10748138,PMID:10908349,PMID:32638513 D657A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.427209T>G/c.1970A>C/p.D657A +YHR164C DNA2 6617 dna2-E675A E675A amino_acid_mutation PMID:10748138,PMID:26584331,PMID:31098407 E675A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.427155T>G/c.2024A>C/p.E675A +YHR164C DNA2 6618 dna2-K1080E K1080E amino_acid_mutation PMID:10748138,PMID:20007605,PMID:28336516,PMID:28468907,PMID:32638513,PMID:7592912 K1080E False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.425941T>C/c.3238A>G/p.K1080E +YHR164C DNA2 6619 dna2-P504S P504S amino_acid_mutation PMID:35042867 P504S False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.427669G>A/c.1510C>T/p.P504S +YHR164C DNA2 6621 dna2-Y693A Y693A amino_acid_mutation PMID:10748138 Y693A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.427101_427102delTAinsGC/c.2077_2078delTAinsGC/p.Y693A +YHR165C PRP8 6630 prp8-E1960G E1960G amino_acid_mutation PMID:18836455 E1960G False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.431070T>C/c.5879A>G/p.E1960G +YHR165C PRP8 6631 prp8-E1960K E1960K amino_acid_mutation PMID:18836455,PMID:33547186 E1960K False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.431071C>T/c.5878G>A/p.E1960K +YHR165C PRP8 6632 prp8-F2382L F2382L amino_acid_mutation PMID:19098916 F2382L False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.429805A>G/c.7144T>C/p.F2382L +YHR165C PRP8 6633 prp8-G736E G736E amino_acid_mutation PMID:30674666 G736E False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.434741_434742delGCinsAG/c.2207_2208delGCinsAG/p.G736E +YHR165C PRP8 6634 prp8-H2387P H2387P amino_acid_mutation PMID:19098916,PMID:26968627 H2387P False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.429789T>G/c.7160A>C/p.H2387P +YHR165C PRP8 6635 prp8-H2387R H2387R amino_acid_mutation PMID:19098916 H2387R False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.429789T>C/c.7160A>G/p.H2387R +YHR165C PRP8 6636 prp8-I1875T I1875T amino_acid_mutation PMID:18836455 I1875T False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.431325A>G/c.5624T>C/p.I1875T +YHR165C PRP8 6637 prp8-L280P L280P amino_acid_mutation PMID:24231520 L280P False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.436110A>G/c.839T>C/p.L280P +YHR165C PRP8 6638 prp8-N1869D N1869D amino_acid_mutation PMID:18836455,PMID:28416677 N1869D False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.431344T>C/c.5605A>G/p.N1869D +YHR165C PRP8 6639 prp8-N1883D N1883D amino_acid_mutation PMID:18836455 N1883D False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.431302T>C/c.5647A>G/p.N1883D +YHR165C PRP8 6640 prp8-R1753K R1753K amino_acid_mutation PMID:33547186 R1753K False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.431691C>T/c.5258G>A/p.R1753K +YHR165C PRP8 6641 prp8-R2388G R2388G amino_acid_mutation PMID:19098916,PMID:26968627 R2388G False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.429787G>C/c.7162C>G/p.R2388G +YHR165C PRP8 6642 prp8-R2388K R2388K amino_acid_mutation PMID:19098916,PMID:26968627 R2388K False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.429785_429787delCGTinsAAG/c.7162_7164delCGTinsAAG/p.R2388K +YHR165C PRP8 6643 prp8-S2197F S2197F amino_acid_mutation PMID:26968627 S2197F False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.430359G>A/c.6590C>T/p.S2197F +YHR165C PRP8 6644 prp8-T1861P T1861P amino_acid_mutation PMID:18836455 T1861P False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.431368T>G/c.5581A>C/p.T1861P +YHR165C PRP8 6645 prp8-T1982A T1982A amino_acid_mutation PMID:18836455 T1982A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.431005T>C/c.5944A>G/p.T1982A +YHR165C PRP8 6647 prp8-V1098D V1098D amino_acid_mutation PMID:24231520 V1098D False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.433656A>T/c.3293T>A/p.V1098D +YHR165C PRP8 6648 prp8-V1860D V1860D amino_acid_mutation PMID:18836455,PMID:28416677 V1860D False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.431370A>T/c.5579T>A/p.V1860D +YHR165C PRP8 6649 prp8-V1860N V1860N amino_acid_mutation PMID:18836455 V1860N False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.431370_431371delGTinsAA/c.5578_5579delGTinsAA/p.V1860N +YHR165C PRP8 6650 prp8-V1862Y V1862Y amino_acid_mutation PMID:28416677 V1862Y False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.431364_431365delGTinsTA/c.5584_5585delGTinsTA/p.V1862Y +YHR165C PRP8 6651 prp8-V1870N V1870N amino_acid_mutation PMID:18836455 V1870N False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.431340_431341delGTinsAA/c.5608_5609delGTinsAA/p.V1870N +YHR170W NMD3 6658 nmd3-L505A L505A amino_acid_mutation PMID:18077551 L505A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.445340_445341delTTinsGC/c.1513_1514delTTinsGC/p.L505A +YHR171W ATG7 6666 atg7-C507A C507A amino_acid_mutation PMID:10233150 C507A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.447231_447232delTGinsGC/c.1519_1520delTGinsGC/p.C507A +YHR171W ATG7 6667 atg7-G333A G333A amino_acid_mutation PMID:10233150 G333A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.446710G>C/c.998G>C/p.G333A +YHR171W ATG7 6668 atg7-G473D G473D amino_acid_mutation PMID:34161705 G473D False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.447130G>A/c.1418G>A/p.G473D +YHR171W ATG7 6669 atg7-H547Y H547Y amino_acid_mutation PMID:34161705 H547Y False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.447351C>T/c.1639C>T/p.H547Y +YHR171W ATG7 6670 atg7-R511H R511H amino_acid_mutation PMID:34161705 R511H False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.447243_447245delAGAinsCAT/c.1531_1533delAGAinsCAT/p.R511H +YHR171W ATG7 6671 atg7-T208A T208A amino_acid_mutation PMID:34161705 T208A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.446334A>G/c.622A>G/p.T208A +YHR171W ATG7 6672 atg7-V523M V523M amino_acid_mutation PMID:34161705 V523M False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.447279_447281delGTTinsATG/c.1567_1569delGTTinsATG/p.V523M +YHR172W SPC97 6676 spc97-S130E S130E amino_acid_mutation PMID:21573187 S130E False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.448722_448724delAGCinsGAG/c.388_390delAGCinsGAG/p.S130E +YHR172W SPC97 6677 spc97-S40A S40A amino_acid_mutation PMID:21573187 S40A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.448452T>G/c.118T>G/p.S40A +YHR179W OYE2 6683 oye2-F251A F251A amino_acid_mutation PMID:34729922 F251A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.463252_463253delTTinsGC/c.751_752delTTinsGC/p.F251A +YHR179W OYE2 6684 oye2-H192A H192A amino_acid_mutation PMID:34729922 H192A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.463075_463076delCAinsGC/c.574_575delCAinsGC/p.H192A +YHR179W OYE2 6685 oye2-M40A M40A amino_acid_mutation PMID:34729922 M40A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.462619_462620delATinsGC/c.118_119delATinsGC/p.M40A +YHR179W OYE2 6686 oye2-N195A N195A amino_acid_mutation PMID:34729922 N195A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.463084_463085delAAinsGC/c.583_584delAAinsGC/p.N195A +YHR179W OYE2 6687 oye2-N252A N252A amino_acid_mutation PMID:34729922 N252A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.463255_463256delAAinsGC/c.754_755delAAinsGC/p.N252A +YHR179W OYE2 6688 oye2-P296A P296A amino_acid_mutation PMID:34729922 P296A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.463387C>G/c.886C>G/p.P296A +YHR179W OYE2 6689 oye2-R244A R244A amino_acid_mutation PMID:34729922 R244A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.463231_463232delAGinsGC/c.730_731delAGinsGC/p.R244A +YHR179W OYE2 6690 oye2-T38A T38A amino_acid_mutation PMID:34729922 T38A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.462613A>G/c.112A>G/p.T38A +YHR179W OYE2 6691 oye2-W117A W117A amino_acid_mutation PMID:34729922 W117A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.462850_462851delTGinsGC/c.349_350delTGinsGC/p.W117A +YHR179W OYE2 6692 oye2-Y376A Y376A amino_acid_mutation PMID:34729922 Y376A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.463627_463628delTAinsGC/c.1126_1127delTAinsGC/p.Y376A +YHR179W OYE2 6693 oye2-Y83A Y83A amino_acid_mutation PMID:34729922 Y83A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.462748_462749delTAinsGC/c.247_248delTAinsGC/p.Y83A +YHR179W OYE2 6694 oye2-Y83C Y83C amino_acid_mutation PMID:34729922 Y83C False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.462749A>G/c.248A>G/p.Y83C +YHR179W OYE2 6695 oye2-Y83D Y83D amino_acid_mutation PMID:34729922 Y83D False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.462748T>G/c.247T>G/p.Y83D +YHR179W OYE2 6696 oye2-Y83F Y83F amino_acid_mutation PMID:34729922 Y83F False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.462749A>T/c.248A>T/p.Y83F +YHR179W OYE2 6697 oye2-Y83I Y83I amino_acid_mutation PMID:34729922 Y83I False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.462748_462749delTAinsAT/c.247_248delTAinsAT/p.Y83I +YHR179W OYE2 6698 oye2-Y83L Y83L amino_acid_mutation PMID:34729922 Y83L False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.462748_462749delTAinsCT/c.247_248delTAinsCT/p.Y83L +YHR179W OYE2 6699 oye2-Y83M Y83M amino_acid_mutation PMID:34729922 Y83M False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.462748_462750delTACinsATG/c.247_249delTACinsATG/p.Y83M +YHR179W OYE2 6700 oye2-Y83P Y83P amino_acid_mutation PMID:34729922 Y83P False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.462748_462749delTAinsCC/c.247_248delTAinsCC/p.Y83P +YHR179W OYE2 6701 oye2-Y83R Y83R amino_acid_mutation PMID:34729922 Y83R False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.462748_462749delTAinsCG/c.247_248delTAinsCG/p.Y83R +YHR179W OYE2 6702 oye2-Y83S Y83S amino_acid_mutation PMID:34729922 Y83S False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.462749A>C/c.248A>C/p.Y83S +YHR179W OYE2 6703 oye2-Y83T Y83T amino_acid_mutation PMID:34729922 Y83T False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.462748_462749delTAinsAC/c.247_248delTAinsAC/p.Y83T +YHR179W OYE2 6704 oye2-Y83V Y83V amino_acid_mutation PMID:34729922 Y83V False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.462748_462749delTAinsGT/c.247_248delTAinsGT/p.Y83V +YHR182W RGD3 6707 rgd3-R546A R546A amino_acid_mutation PMID:32941095 R546A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.469854_469855delAGinsGC/c.1636_1637delAGinsGC/p.R546A +YHR186C KOG1 6712 kog1-S563L S563L amino_acid_mutation PMID:29429618 S563L False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.478985G>A/c.1688C>T/p.S563L +YHR198C AIM18 6727 aim18-R123A R123A amino_acid_mutation PMID:36739946 R123A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.496913_496914delAGinsGC/c.367_368delAGinsGC/p.R123A +YHR199C AIM46 6728 aim46-R107A R107A amino_acid_mutation PMID:36739946 R107A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.498103_498104delCGinsGC/c.319_320delCGinsGC/p.R107A +YHR201C PPX1 6730 ppx1-M189I M189I amino_acid_mutation PMID:35283819 M189I False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.500577C>G/c.567G>C/p.M189I +YHR205W SCH9 6742 sch9-F760L F760L amino_acid_mutation PMID:32001709 F760L False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.511162T>C/c.2278T>C/p.F760L +YHR205W SCH9 6743 sch9-P220S P220S amino_acid_mutation PMID:35511982 P220S False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.510020C>T/c.658C>T/p.P220S +YHR205W SCH9 6744 sch9-R383C R383C amino_acid_mutation PMID:29429618 R383C False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.510031_510033delAGGinsTGT/c.1147_1149delAGGinsTGT/p.R383C +YHR205W SCH9 6745 sch9-T570A T570A amino_acid_mutation PMID:15470109,PMID:32318242 T570A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.511070A>G/c.1708A>G/p.T570A +YHR205W SCH9 6746 sch9-T737A T737A amino_acid_mutation PMID:15470109,PMID:34695378 T737A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.511571A>G/c.2209A>G/p.T737A +YHR205W SCH9 6748 sch9-W377C W377C amino_acid_mutation PMID:32001709 W377C False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.510493G>T/c.1131G>T/p.W377C +YHR208W BAT1 6754 bat1-A234D A234D amino_acid_mutation PMID:32776205 A234D False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.518232C>A/c.701C>A/p.A234D +YHR208W BAT1 6755 bat1-G333S G333S amino_acid_mutation PMID:35699439 G333S False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.518528G>A/c.997G>A/p.G333S +YHR208W BAT1 6756 bat1-G333W G333W amino_acid_mutation PMID:35699439 G333W False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.518528_518530delGGTinsTGG/c.997_999delGGTinsTGG/p.G333W +YHR209W CRG1 6757 crg1-D44A D44A amino_acid_mutation PMID:30830767 D44A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.519567A>C/c.131A>C/p.D44A +YHR209W CRG1 6758 crg1-D67A D67A amino_acid_mutation PMID:30830767 D67A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.519636A>C/c.200A>C/p.D67A +YHR209W CRG1 6759 crg1-E105A,D108A E105A,D108A amino_acid_mutation PMID:30830767 E105A|D108A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.519750A>C/c.314A>C/p.E105A|chrVIII:g.519759A>C/c.323A>C/p.D108A +YIL002C INP51 6767 inp51-D788A D788A amino_acid_mutation PMID:9565610 D788A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.351069T>G/c.2363A>C/p.D788A +YIL009C-A EST3 6785 est3-D86A D86A amino_acid_mutation PMID:23307900 D86A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.335956T>G/c.257A>C/p.D86A +YIL009C-A EST3 6786 est3-E104R E104R amino_acid_mutation PMID:23307900 E104R False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.335901_335902delGAinsAG/c.310_311delGAinsAG/p.E104R +YIL009C-A EST3 6787 est3-R110A R110A amino_acid_mutation PMID:23307900 R110A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.335883_335884delAGinsGC/c.328_329delAGinsGC/p.R110A +YIL009C-A EST3 6788 est3-V168E V168E amino_acid_mutation PMID:23307900 V168E False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.335708_335709delTCinsAG/c.503_504delTCinsAG/p.V168E +YIL009C-A EST3 6789 est3-V75E V75E amino_acid_mutation PMID:23307900 V75E False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.335988_335989delTTinsAG/c.224_225delTTinsAG/p.V75E +YIL009C-A EST3 6790 est3-W21A W21A amino_acid_mutation PMID:23307900 W21A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.336151_336152delTGinsGC/c.61_62delTGinsGC/p.W21A +YIL013C PDR11 6791 pdr11-E903Q E903Q amino_acid_mutation PMID:31830308 E903Q False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.329736C>G/c.2707G>C/p.E903Q +YIL013C PDR11 6792 pdr11-F1110Y F1110Y amino_acid_mutation PMID:31611676 F1110Y False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.329114A>T/c.3329T>A/p.F1110Y +YIL013C PDR11 6793 pdr11-K788A K788A amino_acid_mutation PMID:31830308 K788A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.330080_330081delAAinsGC/c.2362_2363delAAinsGC/p.K788A +YIL013C PDR11 6794 pdr11-K788M K788M amino_acid_mutation PMID:28922409 K788M False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.330080T>A/c.2363A>T/p.K788M +YIL015W BAR1 6797 bar1-P296R P296R amino_acid_mutation PMID:29796388 P296R False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.323228C>G/c.887C>G/p.P296R +YIL017C VID28 6798 vid28-W606A,Y613A,Q649A W606A,Y613A,Q649A amino_acid_mutation PMID:35437932 W606A|Y613A|Q649A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.319149_319150delTGinsGC/c.1816_1817delTGinsGC/p.W606A|chrIX:g.319128_319129delTAinsGC/c.1837_1838delTAinsGC/p.Y613A|chrIX:g.319020_319021delCAinsGC/c.1945_1946delCAinsGC/p.Q649A +YIL022W TIM44 6808 tim44-E67A E67A amino_acid_mutation PMID:17881357 E67A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.311364A>C/c.200A>C/p.E67A +YIL030C SSM4 6829 ssm4-D221A D221A amino_acid_mutation PMID:31611676 D221A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.299348T>G/c.662A>C/p.D221A +YIL030C SSM4 6830 ssm4-F707L F707L amino_acid_mutation PMID:31611676 F707L False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.297891A>G/c.2119T>C/p.F707L +YIL030C SSM4 6831 ssm4-V906L V906L amino_acid_mutation PMID:31611676 V906L False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.297294C>G/c.2716G>C/p.V906L +YIL031W ULP2 6836 ulp2-C624A C624A amino_acid_mutation PMID:27585592 C624A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.294502_294503delTGinsGC/c.1870_1871delTGinsGC/p.C624A +YIL031W ULP2 6837 ulp2-C624S C624S amino_acid_mutation PMID:31519521 C624S False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.294502T>A/c.1870T>A/p.C624S +YIL033C BCY1 6842 bcy1-K313Q K313Q amino_acid_mutation PMID:25831502,PMID:33253187 K313Q False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.290733T>G/c.937A>C/p.K313Q +YIL033C BCY1 6843 bcy1-K313R K313R amino_acid_mutation PMID:25831502,PMID:33253187 K313R False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.290732T>C/c.938A>G/p.K313R +YIL038C NOT3 6845 not3-I448T I448T amino_acid_mutation PMID:31611676 I448T False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.281310A>G/c.1343T>C/p.I448T +YIL048W NEO1 6851 NEO1-Y222A Y222A amino_acid_mutation PMID:31786280 Y222A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262100_262101delTAinsGC/c.664_665delTAinsGC/p.Y222A +YIL048W NEO1 6852 NEO1-Y222S Y222S amino_acid_mutation PMID:31786280 Y222S False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262101A>C/c.665A>C/p.Y222S +YIL048W NEO1 6855 neo1-A210F A210F amino_acid_mutation PMID:31786280 A210F False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262064_262065delGCinsTT/c.628_629delGCinsTT/p.A210F +YIL048W NEO1 6856 neo1-A210Q A210Q amino_acid_mutation PMID:31786280 A210Q False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262064_262066delGCCinsCAA/c.628_630delGCCinsCAA/p.A210Q +YIL048W NEO1 6857 neo1-D503N D503N amino_acid_mutation PMID:31786280 D503N False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262943G>A/c.1507G>A/p.D503N +YIL048W NEO1 6858 neo1-E237A E237A amino_acid_mutation PMID:31786280 E237A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262146A>C/c.710A>C/p.E237A +YIL048W NEO1 6859 neo1-E237D E237D amino_acid_mutation PMID:31786280 E237D False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262147A>C/c.711A>C/p.E237D +YIL048W NEO1 6860 neo1-F228V F228V amino_acid_mutation PMID:31786280 F228V False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262118T>G/c.682T>G/p.F228V +YIL048W NEO1 6861 neo1-K236A K236A amino_acid_mutation PMID:34645814 K236A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262142_262143delAAinsGC/c.706_707delAAinsGC/p.K236A +YIL048W NEO1 6862 neo1-K236R K236R amino_acid_mutation PMID:34645814 K236R False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262143A>G/c.707A>G/p.K236R +YIL048W NEO1 6863 neo1-N181T N181T amino_acid_mutation PMID:31786280 N181T False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.261978A>C/c.542A>C/p.N181T +YIL048W NEO1 6864 neo1-N199A N199A amino_acid_mutation PMID:31786280 N199A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262031_262032delAAinsGC/c.595_596delAAinsGC/p.N199A +YIL048W NEO1 6865 neo1-N412S N412S amino_acid_mutation PMID:31786280 N412S False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262671A>G/c.1235A>G/p.N412S +YIL048W NEO1 6866 neo1-P212Q P212Q amino_acid_mutation PMID:31786280 P212Q False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262071_262072delCTinsAA/c.635_636delCTinsAA/p.P212Q +YIL048W NEO1 6867 neo1-P456A P456A amino_acid_mutation PMID:34645814 P456A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262802C>G/c.1366C>G/p.P456A +YIL048W NEO1 6868 neo1-Q193A Q193A amino_acid_mutation PMID:34645814 Q193A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262013_262014delCAinsGC/c.577_578delCAinsGC/p.Q193A +YIL048W NEO1 6869 neo1-Q209A Q209A amino_acid_mutation PMID:31786280 Q209A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262061_262062delCAinsGC/c.625_626delCAinsGC/p.Q209A +YIL048W NEO1 6870 neo1-Q209G Q209G amino_acid_mutation PMID:34645814 Q209G False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262061_262062delCAinsGG/c.625_626delCAinsGG/p.Q209G +YIL048W NEO1 6871 neo1-Q243A,R244A Q243A,R244A amino_acid_mutation PMID:34645814 Q243A|R244A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262163_262164delCAinsGC/c.727_728delCAinsGC/p.Q243A|chrIX:g.262166_262167delAGinsGC/c.730_731delAGinsGC/p.R244A +YIL048W NEO1 6872 neo1-R247A R247A amino_acid_mutation PMID:34645814 R247A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262175_262176delCGinsGC/c.739_740delCGinsGC/p.R247A +YIL048W NEO1 6873 neo1-R247L R247L amino_acid_mutation PMID:34645814 R247L False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262176G>T/c.740G>T/p.R247L +YIL048W NEO1 6874 neo1-R460A R460A amino_acid_mutation PMID:31786280 R460A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262814_262815delAGinsGC/c.1378_1379delAGinsGC/p.R460A +YIL048W NEO1 6875 neo1-R460Q R460Q amino_acid_mutation PMID:31786280 R460Q False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262814_262815delAGinsCA/c.1378_1379delAGinsCA/p.R460Q +YIL048W NEO1 6876 neo1-R460Y R460Y amino_acid_mutation PMID:31786280 R460Y False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262814_262816delAGAinsTAT/c.1378_1380delAGAinsTAT/p.R460Y +YIL048W NEO1 6878 neo1-S221A S221A amino_acid_mutation PMID:34645814 S221A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262097T>G/c.661T>G/p.S221A +YIL048W NEO1 6879 neo1-S221L S221L amino_acid_mutation PMID:34645814 S221L False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262098C>T/c.662C>T/p.S221L +YIL048W NEO1 6880 neo1-S452A S452A amino_acid_mutation PMID:31786280 S452A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262790T>G/c.1354T>G/p.S452A +YIL048W NEO1 6881 neo1-S452Q S452Q amino_acid_mutation PMID:31786280 S452Q False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262790_262792delTCTinsCAA/c.1354_1356delTCTinsCAA/p.S452Q +YIL048W NEO1 6882 neo1-S488A S488A amino_acid_mutation PMID:34645814 S488A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262898_262899delAGinsGC/c.1462_1463delAGinsGC/p.S488A +YIL048W NEO1 6883 neo1-S488W S488W amino_acid_mutation PMID:34645814 S488W False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262898_262900delAGTinsTGG/c.1462_1464delAGTinsTGG/p.S488W +YIL048W NEO1 6884 neo1-T453S T453S amino_acid_mutation PMID:34645814 T453S False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262794C>G/c.1358C>G/p.T453S +YIL048W NEO1 6885 neo1-V457A V457A amino_acid_mutation PMID:31786280 V457A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262806T>C/c.1370T>C/p.V457A +YIL048W NEO1 6886 neo1-V457E V457E amino_acid_mutation PMID:31786280 V457E False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262806_262807delTCinsAG/c.1370_1371delTCinsAG/p.V457E +YIL048W NEO1 6887 neo1-V457F V457F amino_acid_mutation PMID:31786280 V457F False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262805G>T/c.1369G>T/p.V457F +YIL048W NEO1 6888 neo1-Y222S,E237D Y222S,E237D amino_acid_mutation PMID:31786280 Y222S|E237D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262101A>C/c.665A>C/p.Y222S|chrIX:g.262147A>C/c.711A>C/p.E237D +YIL048W NEO1 6889 neo1-Y222S,F228V Y222S,F228V amino_acid_mutation PMID:31786280 Y222S|F228V False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262101A>C/c.665A>C/p.Y222S|chrIX:g.262118T>G/c.682T>G/p.F228V +YIL048W NEO1 6890 neo1-Y222S,F228V,E237D Y222S,F228V,E237D amino_acid_mutation PMID:31786280 Y222S|F228V|E237D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.262101A>C/c.665A>C/p.Y222S|chrIX:g.262118T>G/c.682T>G/p.F228V|chrIX:g.262147A>C/c.711A>C/p.E237D +YIL065C FIS1 6904 fis1-A144D A144D amino_acid_mutation PMID:34644400 A144D False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.241345G>T/c.431C>A/p.A144D +YIL065C FIS1 6905 fis1-F43A,N44A F43A,N44A amino_acid_mutation PMID:17998537 F43A|N44A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.241648_241649delTTinsGC/c.127_128delTTinsGC/p.F43A|chrIX:g.241645_241646delAAinsGC/c.130_131delAAinsGC/p.N44A +YIL065C FIS1 6906 fis1-G137P G137P amino_acid_mutation PMID:34644400 G137P False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.241366_241367delGGinsCC/c.409_410delGGinsCC/p.G137P +YIL065C FIS1 6907 fis1-L139P L139P amino_acid_mutation PMID:34644400 L139P False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.241360A>G/c.416T>C/p.L139P +YIL065C FIS1 6908 fis1-L65F L65F amino_acid_mutation PMID:35283819 L65F False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.241583G>A/c.193C>T/p.L65F +YIL065C FIS1 6909 fis1-W47A W47A amino_acid_mutation PMID:17998537 W47A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.241636_241637delTGinsGC/c.139_140delTGinsGC/p.W47A +YIL072W HOP1 6916 hop1-K593A K593A amino_acid_mutation PMID:34951404 K593A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.228378_228379delAAinsGC/c.1777_1778delAAinsGC/p.K593A +YIL078W THS1 6921 ths1-G145D G145D amino_acid_mutation PMID:25416776 G145D False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.212932G>A/c.434G>A/p.G145D +YIL078W THS1 6922 ths1-P310L P310L amino_acid_mutation PMID:26811336 P310L False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.213427C>T/c.929C>T/p.P310L +YIL078W THS1 6923 ths1-Q719stop Q719stop partial_amino_acid_deletion PMID:25416776 Q719stop False Q719* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrIX:g.214653C>T/c.2155C>T/p.Q719* +YIL079C AIR1 6924 air1-C117R C117R amino_acid_mutation PMID:21878619 C117R False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.211657A>G/c.349T>C/p.C117R +YIL079C AIR1 6925 air1-C139R C139R amino_acid_mutation PMID:21878619 C139R False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.211591A>G/c.415T>C/p.C139R +YIL079C AIR1 6926 air1-C178R C178R amino_acid_mutation PMID:21878619 C178R False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.211474A>G/c.532T>C/p.C178R +YIL079C AIR1 6927 air1-C79R C79R amino_acid_mutation PMID:21878619 C79R False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.211771A>G/c.235T>C/p.C79R +YIL079C AIR1 6928 air1-C97R C97R amino_acid_mutation PMID:21878619 C97R False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.211717A>G/c.289T>C/p.C97R +YIL079C AIR1 6929 air1-D186A D186A amino_acid_mutation PMID:21878619 D186A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.211449T>G/c.557A>C/p.D186A +YIL079C AIR1 6930 air1-F174A F174A amino_acid_mutation PMID:21878619 F174A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.211485_211486delTTinsGC/c.520_521delTTinsGC/p.F174A +YIL079C AIR1 6931 air1-F184A F184A amino_acid_mutation PMID:21878619 F184A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.211455_211456delTTinsGC/c.550_551delTTinsGC/p.F184A +YIL079C AIR1 6932 air1-I152A I152A amino_acid_mutation PMID:21878619 I152A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.211551_211552delATinsGC/c.454_455delATinsGC/p.I152A +YIL079C AIR1 6933 air1-R154A R154A amino_acid_mutation PMID:21878619 R154A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.211545_211546delAGinsGC/c.460_461delAGinsGC/p.R154A +YIL079C AIR1 6934 air1-W153A W153A amino_acid_mutation PMID:21878619 W153A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.211548_211549delTGinsGC/c.457_458delTGinsGC/p.W153A +YIL079C AIR1 6935 air1-Y156A Y156A amino_acid_mutation PMID:21878619 Y156A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.211539_211540delTAinsGC/c.466_467delTAinsGC/p.Y156A +YIL079C AIR1 6936 air1-Y176A Y176A amino_acid_mutation PMID:21878619 Y176A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.211479_211480delTAinsGC/c.526_527delTAinsGC/p.Y176A +YIL087C AIM19 6939 aim19-P52S P52S amino_acid_mutation PMID:35283819 P52S False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.199966G>A/c.154C>T/p.P52S +YIL090W ICE2 6941 ice2-S248N S248N amino_acid_mutation PMID:31611676 S248N False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.194159_194161delTCAinsAAC/c.742_744delTCAinsAAC/p.S248N +YIL093C RSM25 6945 rsm25-V61L V61L amino_acid_mutation PMID:31611676 V61L False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.188604C>G/c.181G>C/p.V61L +YIL105C SLM1 6951 slm1-R477A, R478A R477A, R478A amino_acid_mutation PMID:21119626 R477A|R478A False R477A,R478A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.168212_168213delAGinsGC/c.1429_1430delAGinsGC/p.R477A|chrIX:g.168209_168210delAGinsGC/c.1432_1433delAGinsGC/p.R478A +YIL109C SEC24 6966 sec24-E839K E839K amino_acid_mutation PMID:30459179 E839K False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.157651C>T/c.2515G>A/p.E839K +YIL109C SEC24 6967 sec24-E839K,V842A E839K,V842A amino_acid_mutation PMID:30459179 E839K|V842A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.157651C>T/c.2515G>A/p.E839K|chrIX:g.157641A>G/c.2525T>C/p.V842A +YIL109C SEC24 6968 sec24-V842A V842A amino_acid_mutation PMID:30459179 V842A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.157641A>G/c.2525T>C/p.V842A +YIL115C NUP159 6975 nup159-F443A,L446A F443A,L446A amino_acid_mutation PMID:32453403 F443A|L446A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.147382_147383delTTinsGC/c.1327_1328delTTinsGC/p.F443A|chrIX:g.147373_147374delCTinsGC/c.1336_1337delCTinsGC/p.L446A +YIL115C NUP159 6976 nup159-L1081D L1081D amino_acid_mutation PMID:35306250 L1081D False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.145467_145469delCTGinsGAC/c.3241_3243delCTGinsGAC/p.L1081D +YIL115C NUP159 6978 nup159-Y1078A,L1081A Y1078A,L1081A amino_acid_mutation PMID:32453403 Y1078A|L1081A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.145477_145478delTAinsGC/c.3232_3233delTAinsGC/p.Y1078A|chrIX:g.145468_145469delCTinsGC/c.3241_3242delCTinsGC/p.L1081A +YIL115C NUP159 6979 nup159-Y1078D Y1078D amino_acid_mutation PMID:35306250 Y1078D False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.145478A>C/c.3232T>G/p.Y1078D +YIL115C NUP159 6980 nup159-Y1078D,L1081D Y1078D,L1081D amino_acid_mutation PMID:35306250 Y1078D|L1081D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.145478A>C/c.3232T>G/p.Y1078D|chrIX:g.145467_145469delCTGinsGAC/c.3241_3243delCTGinsGAC/p.L1081D +YIL118W RHO3 6985 rho3-Q74L Q74L amino_acid_mutation PMID:32941095 Q74L False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.139972A>T/c.221A>T/p.Q74L +YIL118W RHO3 6987 rho3-T30N T30N amino_acid_mutation PMID:32941095 T30N False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.139840C>A/c.89C>A/p.T30N +YIL119C RPI1 6990 rpi1-E102D E102D amino_acid_mutation PMID:35511982 E102D False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.137572C>G/c.306G>C/p.E102D +YIL126W STH1 6994 sth1-D394A D394A amino_acid_mutation PMID:33058778 D394A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.119172A>C/c.1181A>C/p.D394A +YIL126W STH1 6996 sth1-F659A F659A amino_acid_mutation PMID:33058778 F659A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.119966_119967delTTinsGC/c.1975_1976delTTinsGC/p.F659A +YIL126W STH1 6997 sth1-F793S F793S amino_acid_mutation PMID:20110349 F793S False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.120369T>C/c.2378T>C/p.F793S +YIL126W STH1 6998 sth1-G943S G943S amino_acid_mutation PMID:33058778 G943S False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.120818G>A/c.2827G>A/p.G943S +YIL126W STH1 6999 sth1-H452A H452A amino_acid_mutation PMID:33058778 H452A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.119345_119346delCAinsGC/c.1354_1355delCAinsGC/p.H452A +YIL126W STH1 7000 sth1-H452Y H452Y amino_acid_mutation PMID:33058778 H452Y False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.119345C>T/c.1354C>T/p.H452Y +YIL126W STH1 7001 sth1-H687Y H687Y amino_acid_mutation PMID:33058778 H687Y False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.120050C>T/c.2059C>T/p.H687Y +YIL126W STH1 7002 sth1-K382I K382I amino_acid_mutation PMID:33058778 K382I False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.119136_119137delAGinsTC/c.1145_1146delAGinsTC/p.K382I +YIL126W STH1 7003 sth1-K397A K397A amino_acid_mutation PMID:33058778 K397A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.119180_119181delAAinsGC/c.1189_1190delAAinsGC/p.K397A +YIL126W STH1 7005 sth1-K647A K647A amino_acid_mutation PMID:33058778 K647A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.119930_119931delAAinsGC/c.1939_1940delAAinsGC/p.K647A +YIL126W STH1 7006 sth1-K688A K688A amino_acid_mutation PMID:33058778 K688A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.120053_120054delAAinsGC/c.2062_2063delAAinsGC/p.K688A +YIL126W STH1 7007 sth1-L393A L393A amino_acid_mutation PMID:33058778 L393A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.119168_119169delTTinsGC/c.1177_1178delTTinsGC/p.L393A +YIL126W STH1 7008 sth1-L415A L415A amino_acid_mutation PMID:33058778 L415A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.119234_119235delTTinsGC/c.1243_1244delTTinsGC/p.L415A +YIL126W STH1 7009 sth1-N384D N384D amino_acid_mutation PMID:33058778 N384D False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.119141A>G/c.1150A>G/p.N384D +YIL126W STH1 7010 sth1-Q954W Q954W amino_acid_mutation PMID:33058778 Q954W False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.120851_120853delCAAinsTGG/c.2860_2862delCAAinsTGG/p.Q954W +YIL126W STH1 7011 sth1-R400C R400C amino_acid_mutation PMID:33058778 R400C False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.119189_119191delAGAinsTGT/c.1198_1200delAGAinsTGT/p.R400C +YIL126W STH1 7012 sth1-R684W R684W amino_acid_mutation PMID:33058778 R684W False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.120041_120043delAGAinsTGG/c.2050_2052delAGAinsTGG/p.R684W +YIL126W STH1 7013 sth1-R685A R685A amino_acid_mutation PMID:33058778 R685A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.120044_120045delAGinsGC/c.2053_2054delAGinsGC/p.R685A +YIL126W STH1 7014 sth1-R685H R685H amino_acid_mutation PMID:33058778 R685H False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.120044_120046delAGAinsCAT/c.2053_2055delAGAinsCAT/p.R685H +YIL126W STH1 7015 sth1-S416A S416A amino_acid_mutation PMID:33058778 S416A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.119237T>G/c.1246T>G/p.S416A +YIL126W STH1 7016 sth1-S416M S416M amino_acid_mutation PMID:33058778 S416M False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.119237_119238delTCinsAT/c.1246_1247delTCinsAT/p.S416M +YIL126W STH1 7017 sth1-W658A W658A amino_acid_mutation PMID:33058778 W658A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.119963_119964delTGinsGC/c.1972_1973delTGinsGC/p.W658A +YIL126W STH1 7018 sth1-Y447A Y447A amino_acid_mutation PMID:33058778 Y447A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.119330_119331delTAinsGC/c.1339_1340delTAinsGC/p.Y447A +YIL126W STH1 7019 sth1-Y448A Y448A amino_acid_mutation PMID:33058778 Y448A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.119333_119334delTAinsGC/c.1342_1343delTAinsGC/p.Y448A +YIL129C TAO3 7028 tao3-E1493Q E1493Q amino_acid_mutation PMID:16273108 E1493Q False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.108761C>G/c.4477G>C/p.E1493Q +YIL131C FKH1 7031 fkh1-R80A R80A amino_acid_mutation PMID:34095951 R80A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.101997_101998delAGinsGC/c.238_239delAGinsGC/p.R80A +YIL132C CSM2 7032 csm2-F46A F46A amino_acid_mutation PMID:26215801 F46A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.100365_100366delTTinsGC/c.136_137delTTinsGC/p.F46A +YIL135C VHS2 7035 vhs2-D148N D148N amino_acid_mutation PMID:31611676 D148N False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.95934C>T/c.442G>A/p.D148N +YIL143C SSL2 7053 ssl2-D522V D522V amino_acid_mutation PMID:34652274 D522V False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.81477T>A/c.1565A>T/p.D522V +YIL143C SSL2 7054 ssl2-D610A D610A amino_acid_mutation PMID:34652274 D610A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.81213T>G/c.1829A>C/p.D610A +YIL143C SSL2 7056 ssl2-E537G E537G amino_acid_mutation PMID:34652274 E537G False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.81432T>C/c.1610A>G/p.E537G +YIL143C SSL2 7057 ssl2-F156S F156S amino_acid_mutation PMID:34652274 F156S False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.82575A>G/c.467T>C/p.F156S +YIL143C SSL2 7058 ssl2-F498I F498I amino_acid_mutation PMID:34652274 F498I False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.81550A>T/c.1492T>A/p.F498I +YIL143C SSL2 7059 ssl2-F529L F529L amino_acid_mutation PMID:34652274 F529L False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.81457A>G/c.1585T>C/p.F529L +YIL143C SSL2 7065 ssl2-H508R H508R amino_acid_mutation PMID:22081613 H508R False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.81519T>C/c.1523A>G/p.H508R +YIL143C SSL2 7066 ssl2-I383T I383T amino_acid_mutation PMID:34652274 I383T False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.81894A>G/c.1148T>C/p.I383T +YIL143C SSL2 7067 ssl2-K372E K372E amino_acid_mutation PMID:34652274 K372E False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.81928T>C/c.1114A>G/p.K372E +YIL143C SSL2 7068 ssl2-K523N K523N amino_acid_mutation PMID:34652274 K523N False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.81473T>G/c.1569A>C/p.K523N +YIL143C SSL2 7071 ssl2-N230D N230D amino_acid_mutation PMID:34652274 N230D False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.82354T>C/c.688A>G/p.N230D +YIL143C SSL2 7072 ssl2-N230I N230I amino_acid_mutation PMID:34652274 N230I False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.82353T>A/c.689A>T/p.N230I +YIL143C SSL2 7073 ssl2-N230S N230S amino_acid_mutation PMID:34652274 N230S False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.82353T>C/c.689A>G/p.N230S +YIL143C SSL2 7077 ssl2-N528I N528I amino_acid_mutation PMID:34652274 N528I False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.81459T>A/c.1583A>T/p.N528I +YIL143C SSL2 7078 ssl2-Q592* Q592* partial_amino_acid_deletion PMID:34652274 Q592* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIX:g.81268G>A/c.1774C>T/p.Q592* +YIL143C SSL2 7079 ssl2-R636C R636C amino_acid_mutation PMID:34652274 R636C False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.81136G>A/c.1906C>T/p.R636C +YIL144W NDC80 7092 ndc80-K122E,K204E K122E,K204E amino_acid_mutation PMID:23277429 K122E|K204E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.78437A>G/c.364A>G/p.K122E|chrIX:g.78683A>G/c.610A>G/p.K204E +YIL144W NDC80 7093 ndc80-K204E K204E amino_acid_mutation PMID:23275890 K204E False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.78683A>G/c.610A>G/p.K204E +YIL146C ATG32 7095 atg32-S114A,S119A S114A,S119A amino_acid_mutation PMID:33317697 S114A|S119A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.75434A>C/c.340T>G/p.S114A|chrIX:g.75419A>C/c.355T>G/p.S119A +YIL146C ATG32 7096 atg32-S114D,S119D S114D,S119D amino_acid_mutation PMID:33317697 S114D|S119D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.75432_75434delTCAinsGAC/c.340_342delTCAinsGAC/p.S114D|chrIX:g.75418_75419delTCinsGA/c.355_356delTCinsGA/p.S119D +YIL150C MCM10 7111 mcm10-L242A L242A amino_acid_mutation PMID:16782870 L242A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.62004_62005delCTinsGC/c.724_725delCTinsGC/p.L242A +YIL150C MCM10 7113 mcm10-Y245A Y245A amino_acid_mutation PMID:16782870 Y245A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.61995_61996delTAinsGC/c.733_734delTAinsGC/p.Y245A +YIL162W SUC2 7115 suc2-A409P A409P amino_acid_mutation PMID:33533594 A409P False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.38570G>C/c.1225G>C/p.A409P +YIL162W SUC2 7116 suc2-E223A E223A amino_acid_mutation PMID:36201138 E223A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.38052A>C/c.668A>C/p.E223A +YIL162W SUC2 7117 suc2-F102Y F102Y amino_acid_mutation PMID:33533594 F102Y False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.37689T>A/c.305T>A/p.F102Y +YIL162W SUC2 7118 suc2-Q168A Q168A amino_acid_mutation PMID:36201138 Q168A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.37886_37887delCAinsGC/c.502_503delCAinsGC/p.Q168A +YIL162W SUC2 7119 suc2-Q221V Q221V amino_acid_mutation PMID:36201138 Q221V False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.38045_38046delCAinsGT/c.661_662delCAinsGT/p.Q221V +YIL162W SUC2 7120 suc2-R170S R170S amino_acid_mutation PMID:36201138 R170S False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.37894A>C/c.510A>C/p.R170S +YIR002C MPH1 7130 mph1-E210Q E210Q amino_acid_mutation PMID:19995966 E210Q False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.359769C>G/c.628G>C/p.E210Q +YIR002C MPH1 7131 mph1-Q603D Q603D amino_acid_mutation PMID:19995966 Q603D False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.358588_358590delCAGinsGAC/c.1807_1809delCAGinsGAC/p.Q603D +YIR002C MPH1 7132 mph1-T540A, S542A, S543A T540A, S542A, S543A amino_acid_mutation PMID:27017623 T540A|S542A|S543A False T540A,S542A,S543A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.358779T>C/c.1618A>G/p.T540A|chrIX:g.358772_358773delAGinsGC/c.1624_1625delAGinsGC/p.S542A|chrIX:g.358770A>C/c.1627T>G/p.S543A +YIR011C STS1 7148 sts1-R38D,R65D R38D,R65D amino_acid_mutation PMID:32041904 R38D|R65D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.378133_378135delAGGinsGAC/c.112_114delAGGinsGAC/p.R38D|chrIX:g.378052_378054delAGGinsGAC/c.193_195delAGGinsGAC/p.R65D +YIR012W SQT1 7153 sqt1-E315K E315K amino_acid_mutation PMID:26112308 E315K False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.379428G>A/c.943G>A/p.E315K +YIR021W MRS1 7167 mrs1-L171R L171R amino_acid_mutation PMID:20064926 L171R False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.397805T>G/c.512T>G/p.L171R +YIR026C YVH1 7175 yvh1-F283L F283L amino_acid_mutation PMID:36009873 F283L False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.405150A>G/c.847T>C/p.F283L +YIR033W MGA2 7178 mga2-W1042A W1042A amino_acid_mutation PMID:32029718 W1042A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.419247_419248delTGinsGC/c.3124_3125delTGinsGC/p.W1042A +YIR033W MGA2 7179 mga2-W1042L W1042L amino_acid_mutation PMID:32029718 W1042L False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.419248G>T/c.3125G>T/p.W1042L +YIR033W MGA2 7180 mga2-W1042Q W1042Q amino_acid_mutation PMID:32029718 W1042Q False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.419247_419248delTGinsCA/c.3124_3125delTGinsCA/p.W1042Q +YIR037W HYR1 7183 hyr1-Q70A Q70A amino_acid_mutation PMID:17720812 Q70A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.423335_423336delCAinsGC/c.208_209delCAinsGC/p.Q70A +YIR037W HYR1 7184 hyr1-W125A W125A amino_acid_mutation PMID:17720812 W125A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.423500_423501delTGinsGC/c.373_374delTGinsGC/p.W125A +YJL001W PRE3 7191 pre3-T20A T20A amino_acid_mutation PMID:12940990,PMID:37364618 T20A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.435220A>G/c.58A>G/p.T20A +YJL005W CYR1 7202 cyr1-G726E G726E amino_acid_mutation PMID:29429618 G726E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.427333G>A/c.2177G>A/p.G726E +YJL005W CYR1 7203 cyr1-I1083L I1083L amino_acid_mutation PMID:1406671 I1083L False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.428403A>C/c.3247A>C/p.I1083L +YJL005W CYR1 7204 cyr1-K1876M K1876M amino_acid_mutation PMID:33881352,PMID:37173282 K1876M False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.430783A>T/c.5627A>T/p.K1876M +YJL005W CYR1 7205 cyr1-L1086S L1086S amino_acid_mutation PMID:1406671 L1086S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.428413T>C/c.3257T>C/p.L1086S +YJL005W CYR1 7206 cyr1-L1086W L1086W amino_acid_mutation PMID:1406671 L1086W False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.428413T>G/c.3257T>G/p.L1086W +YJL005W CYR1 7207 cyr1-L1089S L1089S amino_acid_mutation PMID:1406671 L1089S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.428422T>C/c.3266T>C/p.L1089S +YJL005W CYR1 7208 cyr1-L1092P L1092P amino_acid_mutation PMID:1406671 L1092P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.428431T>C/c.3275T>C/p.L1092P +YJL005W CYR1 7209 cyr1-L1092R L1092R amino_acid_mutation PMID:1406671 L1092R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.428431T>G/c.3275T>G/p.L1092R +YJL005W CYR1 7210 cyr1-L1099P L1099P amino_acid_mutation PMID:1406671 L1099P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.428452T>C/c.3296T>C/p.L1099P +YJL005W CYR1 7211 cyr1-L1099Q L1099Q amino_acid_mutation PMID:1406671 L1099Q False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.428452T>A/c.3296T>A/p.L1099Q +YJL005W CYR1 7212 cyr1-N1097S N1097S amino_acid_mutation PMID:1406671 N1097S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.428446A>G/c.3290A>G/p.N1097S +YJL005W CYR1 7213 cyr1-N1097T N1097T amino_acid_mutation PMID:1406671 N1097T False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.428446A>C/c.3290A>C/p.N1097T +YJL005W CYR1 7214 cyr1-P1080L P1080L amino_acid_mutation PMID:1406671 P1080L False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.428395C>T/c.3239C>T/p.P1080L +YJL005W CYR1 7215 cyr1-P1080Q P1080Q amino_acid_mutation PMID:1406671 P1080Q False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.428395C>A/c.3239C>A/p.P1080Q +YJL005W CYR1 7216 cyr1-P1080R P1080R amino_acid_mutation PMID:1406671 P1080R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.428395C>G/c.3239C>G/p.P1080R +YJL005W CYR1 7217 cyr1-Q1081P Q1081P amino_acid_mutation PMID:1406671 Q1081P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.428398A>C/c.3242A>C/p.Q1081P +YJL005W CYR1 7218 cyr1-S917Y S917Y amino_acid_mutation PMID:29429618 S917Y False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.427906C>A/c.2750C>A/p.S917Y +YJL005W CYR1 7219 cyr1-T1513K T1513K amino_acid_mutation PMID:31611676 T1513K False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.429694C>A/c.4538C>A/p.T1513K +YJL010C NOP9 7226 nop9-S647A S647A amino_acid_mutation PMID:35283819 S647A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.417624A>C/c.1939T>G/p.S647A +YJL012C VTC4 7229 vtc4-K200A K200A amino_acid_mutation PMID:19390046,PMID:37066886 K200A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412801_412802delAAinsGC/c.598_599delAAinsGC/p.K200A +YJL012C VTC4 7230 vtc4-K256E K256E amino_acid_mutation PMID:37066886 K256E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412634T>C/c.766A>G/p.K256E +YJL012C VTC4 7231 vtc4-K281A K281A amino_acid_mutation PMID:37066886 K281A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412558_412559delAAinsGC/c.841_842delAAinsGC/p.K281A +YJL012C VTC4 7232 vtc4-K291E K291E amino_acid_mutation PMID:37066886 K291E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412529T>C/c.871A>G/p.K291E +YJL012C VTC4 7233 vtc4-K294E K294E amino_acid_mutation PMID:37066886 K294E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412520T>C/c.880A>G/p.K294E +YJL012C VTC4 7234 vtc4-K428E K428E amino_acid_mutation PMID:37066886 K428E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412118T>C/c.1282A>G/p.K428E +YJL012C VTC4 7235 vtc4-K455E K455E amino_acid_mutation PMID:37066886 K455E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412037T>C/c.1363A>G/p.K455E +YJL012C VTC4 7236 vtc4-K458A K458A amino_acid_mutation PMID:37066886 K458A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412027_412028delAAinsGC/c.1372_1373delAAinsGC/p.K458A +YJL012C VTC4 7237 vtc4-K458I K458I amino_acid_mutation PMID:37066886 K458I False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412026_412027delAGinsTC/c.1373_1374delAGinsTC/p.K458I +YJL012C VTC4 7238 vtc4-K458L K458L amino_acid_mutation PMID:19390046,PMID:37066886 K458L False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412027_412028delAAinsCT/c.1372_1373delAAinsCT/p.K458L +YJL012C VTC4 7239 vtc4-K622E K622E amino_acid_mutation PMID:37066886 K622E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.411536T>C/c.1864A>G/p.K622E +YJL012C VTC4 7240 vtc4-P621D P621D amino_acid_mutation PMID:37066886 P621D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.411537_411539delCCAinsGAC/c.1861_1863delCCAinsGAC/p.P621D +YJL012C VTC4 7241 vtc4-R196E R196E amino_acid_mutation PMID:37066886 R196E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412813_412814delAGinsGA/c.586_587delAGinsGA/p.R196E +YJL012C VTC4 7242 vtc4-R253E R253E amino_acid_mutation PMID:37066886 R253E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412642_412643delAGinsGA/c.757_758delAGinsGA/p.R253E +YJL012C VTC4 7243 vtc4-R264A R264A amino_acid_mutation PMID:19390046,PMID:27252384,PMID:37066886 R264A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412609_412610delAGinsGC/c.790_791delAGinsGC/p.R264A +YJL012C VTC4 7244 vtc4-R264A,R266A R264A,R266A amino_acid_mutation PMID:19390046 R264A|R266A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412609_412610delAGinsGC/c.790_791delAGinsGC/p.R264A|chrX:g.412603_412604delAGinsGC/c.796_797delAGinsGC/p.R266A +YJL012C VTC4 7245 vtc4-R266A R266A amino_acid_mutation PMID:19390046,PMID:37066886 R266A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412603_412604delAGinsGC/c.796_797delAGinsGC/p.R266A +YJL012C VTC4 7246 vtc4-R361A R361A amino_acid_mutation PMID:37066886 R361A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412318_412319delAGinsGC/c.1081_1082delAGinsGC/p.R361A +YJL012C VTC4 7247 vtc4-R373E R373E amino_acid_mutation PMID:37066886 R373E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412281_412283delCGTinsGAG/c.1117_1119delCGTinsGAG/p.R373E +YJL012C VTC4 7248 vtc4-R618E R618E amino_acid_mutation PMID:37066886 R618E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.411546_411548delCGTinsGAG/c.1852_1854delCGTinsGAG/p.R618E +YJL012C VTC4 7249 vtc4-R629E R629E amino_acid_mutation PMID:37066886 R629E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.411514_411515delAGinsGA/c.1885_1886delAGinsGA/p.R629E +YJL012C VTC4 7250 vtc4-S457A S457A amino_acid_mutation PMID:19390046,PMID:37066886 S457A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412031A>C/c.1369T>G/p.S457A +YJL012C VTC4 7251 vtc4-W287D W287D amino_acid_mutation PMID:37066886 W287D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412539_412541delTGGinsGAC/c.859_861delTGGinsGAC/p.W287D +YJL012C VTC4 7252 vtc4-Y359F Y359F amino_acid_mutation PMID:19390046,PMID:37066886 Y359F False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412324T>A/c.1076A>T/p.Y359F +YJL013C MAD3 7257 mad3-S268A S268A amino_acid_mutation PMID:31928870 S268A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.410239A>C/c.802T>G/p.S268A +YJL019W MPS3 7268 MPS3-G186K G186K amino_acid_mutation PMID:22125491 G186K False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.403452_403454delGGCinsAAG/c.556_558delGGCinsAAG/p.G186K +YJL019W MPS3 7274 mps3-A540D A540D amino_acid_mutation PMID:16923827,PMID:23275891,PMID:33332348 A540D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.404515_404516delCAinsAC/c.1619_1620delCAinsAC/p.A540D +YJL019W MPS3 7276 mps3-F592S F592S amino_acid_mutation PMID:16923827,PMID:30625036 F592S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.404671T>C/c.1775T>C/p.F592S +YJL019W MPS3 7277 mps3-Q572L,Q573L Q572L,Q573L amino_acid_mutation PMID:16923827 Q572L|Q573L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.404611A>T/c.1715A>T/p.Q572L|chrX:g.404614A>T/c.1718A>T/p.Q573L +YJL019W MPS3 7278 mps3-S189A S189A amino_acid_mutation PMID:34586062 S189A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.403345_403346delAGinsGC/c.565_566delAGinsGC/p.S189A +YJL019W MPS3 7279 mps3-S190A S190A amino_acid_mutation PMID:22125491 S190A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.403464T>G/c.568T>G/p.S190A +YJL019W MPS3 7280 mps3-W477A W477A amino_acid_mutation PMID:16923827,PMID:33332348 W477A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.404325_404326delTGinsGC/c.1429_1430delTGinsGC/p.W477A +YJL019W MPS3 7281 mps3-W487A W487A amino_acid_mutation PMID:16923827 W487A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.404355_404356delTGinsGC/c.1459_1460delTGinsGC/p.W487A +YJL019W MPS3 7282 mps3-Y502H Y502H amino_acid_mutation PMID:16923827 Y502H False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.404400T>C/c.1504T>C/p.Y502H +YJL024C APS3 7293 aps3-L121S L121S amino_acid_mutation PMID:35175277 L121S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.396154A>G/c.362T>C/p.L121S +YJL024C APS3 7294 aps3-V106D V106D amino_acid_mutation PMID:35175277 V106D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.396198_396199delTGinsAC/c.317_318delTGinsAC/p.V106D +YJL026W RNR2 7298 rnr2-L362V L362V amino_acid_mutation PMID:34830106 L362V False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.393487T>G/c.1084T>G/p.L362V +YJL034W KAR2 7316 kar2-C63A C63A amino_acid_mutation PMID:28257000 C63A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.381513_381514delTGinsGC/c.187_188delTGinsGC/p.C63A +YJL034W KAR2 7318 kar2-K314E K314E amino_acid_mutation PMID:28257000 K314E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.382266A>G/c.940A>G/p.K314E +YJL041W NSP1 7331 nsp1-L640S L640S amino_acid_mutation PMID:11352936,PMID:8524308 L640S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.367820T>C/c.1919T>C/p.L640S +YJL049W CHM7 7337 chm7-F106A,V110A F106A,V110A amino_acid_mutation PMID:33464310 F106A|V110A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.346288_346289delTTinsGC/c.316_317delTTinsGC/p.F106A|chrX:g.346278T>C/c.329T>C/p.V110A +YJL049W CHM7 7338 chm7-K121A,K124A K121A,K124A amino_acid_mutation PMID:33464310 K121A|K124A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.346333_346334delAAinsGC/c.361_362delAAinsGC/p.K121A|chrX:g.346342_346343delAAinsGC/c.370_371delAAinsGC/p.K124A +YJL050W MTR4 7342 mtr4-E263Q E263Q amino_acid_mutation PMID:33782132 E263Q False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.343308G>C/c.787G>C/p.E263Q +YJL050W MTR4 7343 mtr4-E277K E277K amino_acid_mutation PMID:35607352 E277K False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.343350G>A/c.829G>A/p.E277K +YJL050W MTR4 7345 mtr4-R322C R322C amino_acid_mutation PMID:35607352 R322C False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.343485C>T/c.964C>T/p.R322C +YJL050W MTR4 7346 mtr4-S293L S293L amino_acid_mutation PMID:16449635 S293L False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.343399C>T/c.878C>T/p.S293L +YJL050W MTR4 7347 mtr4-W305G W305G amino_acid_mutation PMID:35607352 W305G False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.343434T>G/c.913T>G/p.W305G +YJL057C IKS1 7354 iks1-G185D G185D amino_acid_mutation PMID:35283819 G185D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.329568C>T/c.554G>A/p.G185D +YJL059W YHC3 7355 yhc3-E243K E243K amino_acid_mutation PMID:17475770 E243K False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.325690G>A/c.727G>A/p.E243K +YJL059W YHC3 7356 yhc3-L112P L112P amino_acid_mutation PMID:17475770 L112P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.325298T>C/c.335T>C/p.L112P +YJL059W YHC3 7357 yhc3-L44P L44P amino_acid_mutation PMID:17475770 L44P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.325093_325094delTTinsCC/c.130_131delTTinsCC/p.L44P +YJL059W YHC3 7358 yhc3-R293C R293C amino_acid_mutation PMID:17475770 R293C False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.325840_325842delAGAinsTGT/c.877_879delAGAinsTGT/p.R293C +YJL059W YHC3 7359 yhc3-R293H R293H amino_acid_mutation PMID:17475770 R293H False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.325840_325842delAGAinsCAT/c.877_879delAGAinsCAT/p.R293H +YJL059W YHC3 7360 yhc3-V289F V289F amino_acid_mutation PMID:17475770 V289F False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.325828G>T/c.865G>T/p.V289F +YJL073W JEM1 7376 jem1-H566Q H566Q amino_acid_mutation PMID:18754794 H566Q False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.304878C>A/c.1698C>A/p.H566Q +YJL074C SMC3 7380 smc3-E1155Q E1155Q amino_acid_mutation PMID:35086935 E1155Q False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.299387C>G/c.3463G>C/p.E1155Q +YJL074C SMC3 7381 smc3-E987K E987K amino_acid_mutation PMID:27307603 E987K False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.299891C>T/c.2959G>A/p.E987K +YJL074C SMC3 7382 smc3-K112A K112A amino_acid_mutation PMID:18614053 K112A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.302515_302516delAAinsGC/c.334_335delAAinsGC/p.K112A +YJL074C SMC3 7383 smc3-K112A,K113A K112A,K113A amino_acid_mutation PMID:18614053 K112A|K113A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.302515_302516delAAinsGC/c.334_335delAAinsGC/p.K112A|chrX:g.302512_302513delAAinsGC/c.337_338delAAinsGC/p.K113A +YJL074C SMC3 7384 smc3-K112R K112R amino_acid_mutation PMID:18614053,PMID:18653893,PMID:18653894 K112R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.302515T>C/c.335A>G/p.K112R +YJL074C SMC3 7385 smc3-K112R,K113N K112R,K113N amino_acid_mutation PMID:32277910 K112R|K113N False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.302515T>C/c.335A>G/p.K112R|chrX:g.302511C>G/c.339G>C/p.K113N +YJL074C SMC3 7386 smc3-K112R,K113R K112R,K113R amino_acid_mutation PMID:18614053,PMID:18653893,PMID:18653894,PMID:19328069,PMID:35710835 K112R|K113R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.302515T>C/c.335A>G/p.K112R|chrX:g.302512T>C/c.338A>G/p.K113R +YJL074C SMC3 7387 smc3-K113A K113A amino_acid_mutation PMID:18614053 K113A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.302512_302513delAAinsGC/c.337_338delAAinsGC/p.K113A +YJL074C SMC3 7388 smc3-K113N K113N amino_acid_mutation PMID:18653893 K113N False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.302511C>G/c.339G>C/p.K113N +YJL074C SMC3 7389 smc3-K113R K113R amino_acid_mutation PMID:18614053,PMID:18653893,PMID:18653894 K113R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.302512T>C/c.338A>G/p.K113R +YJL074C SMC3 7392 smc3-L217P L217P amino_acid_mutation PMID:27307603 L217P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.302200_302201delTTinsCC/c.649_650delTTinsCC/p.L217P +YJL076W NET1 7395 net1-T62A,S385A T62A,S385A amino_acid_mutation PMID:32265285 T62A|S385A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.295428A>G/c.184A>G/p.T62A|chrX:g.296397_296398delAGinsGC/c.1153_1154delAGinsGC/p.S385A +YJL081C ARP4 7407 arp4-g161d g161d amino_acid_mutation PMID:16672275,PMID:23390603,PMID:27708008 g161d False G161D amino_acid_mutation:single_aa amino_acid_mutation chrX:g.284789_284790delGAinsAC/c.482_483delGAinsAC/p.G161D +YJL084C ALY2 7409 aly2-K392R K392R amino_acid_mutation PMID:34562280 K392R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.276828T>C/c.1175A>G/p.K392R +YJL087C TRL1 7419 trl1-E299Q E299Q amino_acid_mutation PMID:15923379 E299Q False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.271591C>G/c.895G>C/p.E299Q +YJL087C TRL1 7420 trl1-H673A H673A amino_acid_mutation PMID:12933796 H673A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.270468_270469delCAinsGC/c.2017_2018delCAinsGC/p.H673A +YJL087C TRL1 7421 trl1-N210D N210D amino_acid_mutation PMID:15923379 N210D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.271858T>C/c.628A>G/p.N210D +YJL088W ARG3 7422 arg3-R69G R69G amino_acid_mutation PMID:34544143 R69G False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.269003A>G/c.205A>G/p.R69G +YJL090C DPB11 7430 dpb11-T731A T731A amino_acid_mutation PMID:21956112 T731A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.262861T>C/c.2191A>G/p.T731A +YJL090C DPB11 7431 dpb11-W700A W700A amino_acid_mutation PMID:21956112 W700A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.262953_262954delTGinsGC/c.2098_2099delTGinsGC/p.W700A +YJL090C DPB11 7432 dpb11-Y735A Y735A amino_acid_mutation PMID:21956112 Y735A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.262848_262849delTAinsGC/c.2203_2204delTAinsGC/p.Y735A +YJL091C GWT1 7436 gwt1-G132R G132R amino_acid_mutation PMID:12753194 G132R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.262159C>T/c.394G>A/p.G132R +YJL092W SRS2 7441 srs2-F891A F891A amino_acid_mutation PMID:31142613 F891A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.260093_260094delTTinsGC/c.2671_2672delTTinsGC/p.F891A +YJL092W SRS2 7442 srs2-K41A K41A amino_acid_mutation PMID:21459050,PMID:27390022 K41A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.257543_257544delAAinsGC/c.121_122delAAinsGC/p.K41A +YJL092W SRS2 7443 srs2-K41R K41R amino_acid_mutation PMID:28175398 K41R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.257544A>G/c.122A>G/p.K41R +YJL104W PAM16 7455 pam16-I61N I61N amino_acid_mutation PMID:22808036 I61N False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.227508T>A/c.182T>A/p.I61N +YJL106W IME2 7458 ime2-T242A T242A amino_acid_mutation PMID:35240051 T242A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.222113A>G/c.724A>G/p.T242A +YJL111W CCT7 7461 cct7-G412E G412E amino_acid_mutation PMID:34047865 G412E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.209111_209112delGTinsAG/c.1235_1236delGTinsAG/p.G412E +YJL112W MDV1 7462 mdv1-F149A F149A amino_acid_mutation PMID:17998537 F149A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.205749_205750delTTinsGC/c.445_446delTTinsGC/p.F149A +YJL112W MDV1 7464 mdv1-L148A L148A amino_acid_mutation PMID:17998537 L148A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.205746_205747delCTinsGC/c.442_443delCTinsGC/p.L148A +YJL112W MDV1 7465 mdv1-N544R N544R amino_acid_mutation PMID:16272155 N544R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.206935_206936delATinsGG/c.1631_1632delATinsGG/p.N544R +YJL115W ASF1 7466 asf1-V94R V94R amino_acid_mutation PMID:15840725 V94R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.196566_196567delGTinsCG/c.280_281delGTinsCG/p.V94R +YJL127C SPT10 7477 spt10-C388S C388S amino_acid_mutation PMID:16415340 C388S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.183059A>T/c.1162T>A/p.C388S +YJL127C SPT10 7478 spt10-H355S H355S amino_acid_mutation PMID:16415340 H355S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.183157_183158delCAinsAG/c.1063_1064delCAinsAG/p.H355S +YJL127C SPT10 7479 spt10-H416S H416S amino_acid_mutation PMID:16415340 H416S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.182974_182975delCAinsAG/c.1246_1247delCAinsAG/p.H416S +YJL128C PBS2 7482 pbs2-K389M K389M amino_acid_mutation PMID:35597864 K389M False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.178938T>A/c.1166A>T/p.K389M +YJL128C PBS2 7483 pbs2-S508A S508A amino_acid_mutation PMID:12506122 S508A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.178582A>C/c.1522T>G/p.S508A +YJL128C PBS2 7484 pbs2-S508A,S514D,T518D S508A,S514D,T518D amino_acid_mutation PMID:12506122 S508A|S514D|T518D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.178582A>C/c.1522T>G/p.S508A|chrX:g.178563_178564delTCinsGA/c.1540_1541delTCinsGA/p.S514D|chrX:g.178551_178552delACinsGA/c.1552_1553delACinsGA/p.T518D +YJL128C PBS2 7485 pbs2-S508D S508D amino_acid_mutation PMID:12506122 S508D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.178581_178582delTCinsGA/c.1522_1523delTCinsGA/p.S508D +YJL128C PBS2 7486 pbs2-S508D,S514D,T518D S508D,S514D,T518D amino_acid_mutation PMID:12506122 S508D|S514D|T518D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.178581_178582delTCinsGA/c.1522_1523delTCinsGA/p.S508D|chrX:g.178563_178564delTCinsGA/c.1540_1541delTCinsGA/p.S514D|chrX:g.178551_178552delACinsGA/c.1552_1553delACinsGA/p.T518D +YJL128C PBS2 7487 pbs2-S514D,T518D S514D,T518D amino_acid_mutation PMID:12506122 S514D|T518D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.178563_178564delTCinsGA/c.1540_1541delTCinsGA/p.S514D|chrX:g.178551_178552delACinsGA/c.1552_1553delACinsGA/p.T518D +YJL128C PBS2 7488 pbs2-V54G V54G amino_acid_mutation PMID:35597864 V54G False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.179943A>C/c.161T>G/p.V54G +YJL129C TRK1 7494 TRK1-A1169E A1169E amino_acid_mutation PMID:31044010 A1169E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.173801G>T/c.3506C>A/p.A1169E +YJL129C TRK1 7495 TRK1-H1074N H1074N amino_acid_mutation PMID:31044010 H1074N False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.174087G>T/c.3220C>A/p.H1074N +YJL129C TRK1 7496 TRK1-R993P R993P amino_acid_mutation PMID:31044010 R993P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.174329C>G/c.2978G>C/p.R993P +YJL129C TRK1 7497 TRK1-R993P,A1169E R993P,A1169E amino_acid_mutation PMID:31044010 R993P|A1169E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.174329C>G/c.2978G>C/p.R993P|chrX:g.173801G>T/c.3506C>A/p.A1169E +YJL129C TRK1 7498 TRK1-R993P,H1074N R993P,H1074N amino_acid_mutation PMID:31044010 R993P|H1074N False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.174329C>G/c.2978G>C/p.R993P|chrX:g.174087G>T/c.3220C>A/p.H1074N +YJL129C TRK1 7499 trk1-D880G D880G amino_acid_mutation PMID:29796388 D880G False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.174668T>C/c.2639A>G/p.D880G +YJL129C TRK1 7500 trk1-F820P F820P amino_acid_mutation PMID:35628688 F820P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.174848_174849delTTinsCC/c.2458_2459delTTinsCC/p.F820P +YJL129C TRK1 7501 trk1-L1115P L1115P amino_acid_mutation PMID:35628688 L1115P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.173963A>G/c.3344T>C/p.L1115P +YJL129C TRK1 7502 trk1-L81P L81P amino_acid_mutation PMID:35628688 L81P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.177065_177066delTTinsCC/c.241_242delTTinsCC/p.L81P +YJL129C TRK1 7503 trk1-L949P L949P amino_acid_mutation PMID:35628688 L949P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.174461A>G/c.2846T>C/p.L949P +YJL137C GLG2 7511 glg2-K128N K128N amino_acid_mutation PMID:31611676 K128N False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.155744T>G/c.384A>C/p.K128N +YJL141C YAK1 7514 yak1-G381D G381D amino_acid_mutation PMID:31611676 G381D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.149249C>T/c.1142G>A/p.G381D +YJL141C YAK1 7515 yak1-K398R K398R amino_acid_mutation PMID:21149646,PMID:36711154 K398R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.149198T>C/c.1193A>G/p.K398R +YJL143W TIM17 7520 tim17-D17N D17N amino_acid_mutation PMID:37344598 D17N False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147149G>A/c.49G>A/p.D17N +YJL143W TIM17 7521 tim17-D17N,D76N D17N,D76N amino_acid_mutation PMID:37344598 D17N|D76N False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147149G>A/c.49G>A/p.D17N|chrX:g.147326G>A/c.226G>A/p.D76N +YJL143W TIM17 7522 tim17-D17N,D76N,E126Q D17N,D76N,E126Q amino_acid_mutation PMID:37344598 D17N|D76N|E126Q False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147149G>A/c.49G>A/p.D17N|chrX:g.147326G>A/c.226G>A/p.D76N|chrX:g.147476G>C/c.376G>C/p.E126Q +YJL143W TIM17 7523 tim17-D17N,E126Q D17N,E126Q amino_acid_mutation PMID:37344598 D17N|E126Q False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147149G>A/c.49G>A/p.D17N|chrX:g.147476G>C/c.376G>C/p.E126Q +YJL143W TIM17 7524 tim17-D17R D17R amino_acid_mutation PMID:37344598 D17R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147149_147150delGAinsCG/c.49_50delGAinsCG/p.D17R +YJL143W TIM17 7525 tim17-D76N D76N amino_acid_mutation PMID:37344598 D76N False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147326G>A/c.226G>A/p.D76N +YJL143W TIM17 7526 tim17-D76N,E126Q D76N,E126Q amino_acid_mutation PMID:37344598 D76N|E126Q False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147326G>A/c.226G>A/p.D76N|chrX:g.147476G>C/c.376G>C/p.E126Q +YJL143W TIM17 7527 tim17-D76R D76R amino_acid_mutation PMID:37344598 D76R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147326_147327delGAinsCG/c.226_227delGAinsCG/p.D76R +YJL143W TIM17 7528 tim17-E126Q E126Q amino_acid_mutation PMID:37344598 E126Q False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147476G>C/c.376G>C/p.E126Q +YJL143W TIM17 7529 tim17-E126R E126R amino_acid_mutation PMID:37344598 E126R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147476_147477delGAinsAG/c.376_377delGAinsAG/p.E126R +YJL143W TIM17 7530 tim17-F65N F65N amino_acid_mutation PMID:37344598 F65N False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147293_147294delTTinsAA/c.193_194delTTinsAA/p.F65N +YJL143W TIM17 7531 tim17-F65V F65V amino_acid_mutation PMID:37344598 F65V False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147293T>G/c.193T>G/p.F65V +YJL143W TIM17 7532 tim17-F65V,F72V F65V,F72V amino_acid_mutation PMID:37344598 F65V|F72V False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147293T>G/c.193T>G/p.F65V|chrX:g.147314T>G/c.214T>G/p.F72V +YJL143W TIM17 7533 tim17-F72N F72N amino_acid_mutation PMID:37344598 F72N False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147314_147315delTTinsAA/c.214_215delTTinsAA/p.F72N +YJL143W TIM17 7534 tim17-F72V F72V amino_acid_mutation PMID:37344598 F72V False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147314T>G/c.214T>G/p.F72V +YJL143W TIM17 7535 tim17-W68N W68N amino_acid_mutation PMID:37344598 W68N False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147302_147304delTGGinsAAC/c.202_204delTGGinsAAC/p.W68N +YJL143W TIM17 7536 tim17-W68V W68V amino_acid_mutation PMID:37344598 W68V False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147302_147303delTGinsGT/c.202_203delTGinsGT/p.W68V +YJL143W TIM17 7537 tim17-W68V,F72V W68V,F72V amino_acid_mutation PMID:37344598 W68V|F72V False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147302_147303delTGinsGT/c.202_203delTGinsGT/p.W68V|chrX:g.147314T>G/c.214T>G/p.F72V +YJL145W SFH5 7542 sfh5-E204A,K236A E204A,K236A amino_acid_mutation PMID:19477927 E204A|K236A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.145770A>C/c.611A>C/p.E204A|chrX:g.145865_145866delAAinsGC/c.706_707delAAinsGC/p.K236A +YJL146W IDS2 7543 ids2-S148A S148A amino_acid_mutation PMID:30516470 S148A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.143733T>G/c.442T>G/p.S148A +YJL146W IDS2 7544 ids2-S148D S148D amino_acid_mutation PMID:30516470 S148D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.143733_143734delTCinsGA/c.442_443delTCinsGA/p.S148D +YJL153C INO1 7546 INO1-S184D S184D amino_acid_mutation PMID:23902760 S184D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.135383_135384delTCinsGA/c.550_551delTCinsGA/p.S184D +YJL153C INO1 7547 INO1-S296A S296A amino_acid_mutation PMID:23902760 S296A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.135048A>C/c.886T>G/p.S296A +YJL153C INO1 7548 INO1-S296D S296D amino_acid_mutation PMID:23902760 S296D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.135046_135048delTCAinsGAC/c.886_888delTCAinsGAC/p.S296D +YJL153C INO1 7549 INO1-S374D S374D amino_acid_mutation PMID:23902760 S374D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.134813_134814delAGinsGA/c.1120_1121delAGinsGA/p.S374D +YJL153C INO1 7551 ino1-S368A S368A amino_acid_mutation PMID:34663920 S368A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.134832A>C/c.1102T>G/p.S368A +YJL154C VPS35 7554 vps35-D686N D686N amino_acid_mutation PMID:28487947 D686N False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.131880C>T/c.2056G>A/p.D686N +YJL154C VPS35 7555 vps35-Q733STOP Q733STOP partial_amino_acid_deletion PMID:17892535 Q733STOP False Q733* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrX:g.131739G>A/c.2197C>T/p.Q733* +YJL154C VPS35 7556 vps35-R98W R98W amino_acid_mutation PMID:17892535 R98W False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.133644T>A/c.292A>T/p.R98W +YJL154C VPS35 7557 vps35-R98W,Q733STOP R98W,Q733STOP amino_acid_deletion_and_mutation PMID:17892535 R98W|Q733STOP False R98W,Q733* amino_acid_mutation:single_aa|nonsense_mutation:stop_codon_text amino_acid_deletion_and_mutation chrX:g.133644T>A/c.292A>T/p.R98W|chrX:g.131739G>A/c.2197C>T/p.Q733* +YJL158C CIS3 7560 cis3-I67S I67S amino_acid_mutation PMID:31611676 I67S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.122749A>C/c.200T>G/p.I67S +YJL165C HAL5 7563 hal5-D688A D688A amino_acid_mutation PMID:32191698 D688A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.107399T>G/c.2063A>C/p.D688A +YJL167W ERG20 7568 erg20-A99G A99G amino_acid_mutation PMID:28854674,PMID:36972300 A99G False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.105309C>G/c.296C>G/p.A99G +YJL167W ERG20 7569 erg20-A99P A99P amino_acid_mutation PMID:28854674 A99P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.105308G>C/c.295G>C/p.A99P +YJL167W ERG20 7570 erg20-A99Q A99Q amino_acid_mutation PMID:28854674 A99Q False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.105308_105310delGCCinsCAA/c.295_297delGCCinsCAA/p.A99Q +YJL167W ERG20 7571 erg20-A99W A99W amino_acid_mutation PMID:28854674 A99W False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.105308_105310delGCCinsTGG/c.295_297delGCCinsTGG/p.A99W +YJL167W ERG20 7572 erg20-A99W,N127W A99W,N127W amino_acid_mutation PMID:32043190 A99W|N127W False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.105308_105310delGCCinsTGG/c.295_297delGCCinsTGG/p.A99W|chrX:g.105392_105394delAATinsTGG/c.379_381delAATinsTGG/p.N127W +YJL167W ERG20 7573 erg20-A99Y A99Y amino_acid_mutation PMID:28854674 A99Y False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.105308_105309delGCinsTA/c.295_296delGCinsTA/p.A99Y +YJL167W ERG20 7575 erg20-F96C F96C amino_acid_mutation PMID:25446975,PMID:36972300 F96C False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.105300T>G/c.287T>G/p.F96C +YJL167W ERG20 7576 erg20-F96W F96W amino_acid_mutation PMID:33857581 F96W False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.105300_105301delTCinsGG/c.287_288delTCinsGG/p.F96W +YJL167W ERG20 7577 erg20-F96W,N127W F96W,N127W amino_acid_mutation PMID:32044019,PMID:34601590,PMID:36045295,PMID:36243714,PMID:36857414,PMID:37350414 F96W|N127W False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.105300_105301delTCinsGG/c.287_288delTCinsGG/p.F96W|chrX:g.105392_105394delAATinsTGG/c.379_381delAATinsTGG/p.N127W +YJL167W ERG20 7578 erg20-K197E K197E amino_acid_mutation PMID:34748704 K197E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.105602A>G/c.589A>G/p.K197E +YJL167W ERG20 7579 erg20-N127W N127W amino_acid_mutation PMID:32043190 N127W False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.105392_105394delAATinsTGG/c.379_381delAATinsTGG/p.N127W +YJL168C SET2 7581 set2-N198Q N198Q amino_acid_mutation PMID:33979575 N198Q False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.103835_103837delAATinsCAA/c.592_594delAATinsCAA/p.N198Q +YJL168C SET2 7582 set2-S6A,S8A,S10A S6A,S8A,S10A amino_acid_mutation PMID:35183557 S6A|S8A|S10A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.104412_104413delAGinsGC/c.16_17delAGinsGC/p.S6A|chrX:g.104406_104407delAGinsGC/c.22_23delAGinsGC/p.S8A|chrX:g.104401A>C/c.28T>G/p.S10A +YJL168C SET2 7583 set2-S6D,S8D,S10D S6D,S8D,S10D amino_acid_mutation PMID:35183557 S6D|S8D|S10D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.104412_104413delAGinsGA/c.16_17delAGinsGA/p.S6D|chrX:g.104406_104407delAGinsGA/c.22_23delAGinsGA/p.S8D|chrX:g.104399_104401delTCGinsGAC/c.28_30delTCGinsGAC/p.S10D +YJL168C SET2 7584 set2-T127D T127D amino_acid_mutation PMID:35183557 T127D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.104048_104050delACAinsGAC/c.379_381delACAinsGAC/p.T127D +YJL168C SET2 7585 set2-Y149A Y149A amino_acid_mutation PMID:33979575 Y149A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.103983_103984delTAinsGC/c.445_446delTAinsGC/p.Y149A +YJL168C SET2 7586 set2-Y149F Y149F amino_acid_mutation PMID:34115924 Y149F False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.103983T>A/c.446A>T/p.Y149F +YJL168C SET2 7587 set2-Y236F Y236F amino_acid_mutation PMID:34115924 Y236F False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.103722T>A/c.707A>T/p.Y236F +YJL181W RBH1 7599 rbh1-Q64K Q64K amino_acid_mutation PMID:29771304 Q64K False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.85849C>A/c.190C>A/p.Q64K +YJL187C SWE1 7601 swe1-Y332S Y332S amino_acid_mutation PMID:35484218 Y332S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.78268T>G/c.995A>C/p.Y332S +YJL194W CDC6 7608 cdc6-K114A K114A amino_acid_mutation PMID:9892652 K114A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.69677_69678delAAinsGC/c.340_341delAAinsGC/p.K114A +YJL194W CDC6 7609 cdc6-K114E K114E amino_acid_mutation PMID:36321416,PMID:8930895,PMID:9892652 K114E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.69677A>G/c.340A>G/p.K114E +YJL194W CDC6 7610 cdc6-K114R K114R amino_acid_mutation PMID:9892652 K114R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.69678A>G/c.341A>G/p.K114R +YJL197W UBP12 7616 ubp12-V279L V279L amino_acid_mutation PMID:35435209 V279L False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.64639G>C/c.835G>C/p.V279L +YJL198W PHO90 7618 pho90-T672A T672A amino_acid_mutation PMID:22844449 T672A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.62857A>G/c.2014A>G/p.T672A +YJL208C NUC1 7621 nuc1-H138A H138A amino_acid_mutation PMID:17244531 H138A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.40771_40772delCAinsGC/c.412_413delCAinsGC/p.H138A +YJL209W CBP1 7623 cbp1-W599* W599* partial_amino_acid_deletion PMID:34362905 W599* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrX:g.39800G>A/c.1796G>A/p.W599* +YJL212C OPT1 7624 opt1-D335A D335A amino_acid_mutation PMID:28389436 D335A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.35246T>G/c.1004A>C/p.D335A +YJL212C OPT1 7625 opt1-E135A E135A amino_acid_mutation PMID:28389436 E135A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.35846T>G/c.404A>C/p.E135A +YJL212C OPT1 7626 opt1-E135G E135G amino_acid_mutation PMID:28389436 E135G False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.35846T>C/c.404A>G/p.E135G +YJL212C OPT1 7627 opt1-E135H E135H amino_acid_mutation PMID:28389436 E135H False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.35845_35847delGAGinsCAT/c.403_405delGAGinsCAT/p.E135H +YJL212C OPT1 7628 opt1-E135K E135K amino_acid_mutation PMID:28389436 E135K False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.35847C>T/c.403G>A/p.E135K +YJL212C OPT1 7629 opt1-E135N E135N amino_acid_mutation PMID:28389436 E135N False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.35845_35847delGAGinsAAC/c.403_405delGAGinsAAC/p.E135N +YJL212C OPT1 7630 opt1-E135Q E135Q amino_acid_mutation PMID:28389436 E135Q False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.35847C>G/c.403G>C/p.E135Q +YJL212C OPT1 7631 opt1-E135W E135W amino_acid_mutation PMID:28389436 E135W False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.35846_35847delGAinsTG/c.403_404delGAinsTG/p.E135W +YJL212C OPT1 7632 opt1-E177A E177A amino_acid_mutation PMID:28389436 E177A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.35720T>G/c.530A>C/p.E177A +YJL212C OPT1 7633 opt1-H445A H445A amino_acid_mutation PMID:28389436 H445A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.34916_34917delCAinsGC/c.1333_1334delCAinsGC/p.H445A +YJL212C OPT1 7634 opt1-N710E N710E amino_acid_mutation PMID:28389436 N710E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.34120_34122delAACinsGAG/c.2128_2130delAACinsGAG/p.N710E +YJL212C OPT1 7635 opt1-N710G N710G amino_acid_mutation PMID:28389436 N710G False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.34121_34122delAAinsGG/c.2128_2129delAAinsGG/p.N710G +YJL212C OPT1 7636 opt1-N710H N710H amino_acid_mutation PMID:28389436 N710H False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.34122T>G/c.2128A>C/p.N710H +YJL212C OPT1 7637 opt1-N710K N710K amino_acid_mutation PMID:28389436 N710K False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.34120G>C/c.2130C>G/p.N710K +YJL212C OPT1 7638 opt1-N710R N710R amino_acid_mutation PMID:28389436 N710R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.34120_34121delACinsGG/c.2129_2130delACinsGG/p.N710R +YJL212C OPT1 7639 opt1-N710S N710S amino_acid_mutation PMID:28389436 N710S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.34121T>C/c.2129A>G/p.N710S +YJL212C OPT1 7640 opt1-R554A R554A amino_acid_mutation PMID:28389436 R554A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.34589_34590delAGinsGC/c.1660_1661delAGinsGC/p.R554A +YJL212C OPT1 7641 opt1-Y193A Y193A amino_acid_mutation PMID:28389436 Y193A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.35672_35673delTAinsGC/c.577_578delTAinsGC/p.Y193A +YJL212C OPT1 7642 opt1-Y374A Y374A amino_acid_mutation PMID:28389436 Y374A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.35129_35130delTAinsGC/c.1120_1121delTAinsGC/p.Y374A +YJR006W POL31 7655 pol31-D304N D304N amino_acid_mutation PMID:29281621 D304N False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.450111G>A/c.910G>A/p.D304N +YJR006W POL31 7656 pol31-K358E K358E amino_acid_mutation PMID:16949354,PMID:36833317,PMID:9258670 K358E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.450273A>G/c.1072A>G/p.K358E +YJR006W POL31 7657 pol31-K358I K358I amino_acid_mutation PMID:29281621 K358I False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.450274A>T/c.1073A>T/p.K358I +YJR006W POL31 7658 pol31-T415A T415A amino_acid_mutation PMID:16949354 T415A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.450444A>G/c.1243A>G/p.T415A +YJR007W SUI2 7664 sui2-L205E L205E amino_acid_mutation PMID:35031321 L205E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.451632_451633delTTinsGA/c.613_614delTTinsGA/p.L205E +YJR007W SUI2 7666 sui2-R88T R88T amino_acid_mutation PMID:20805354 R88T False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.451281_451282delCGinsAC/c.262_263delCGinsAC/p.R88T +YJR007W SUI2 7669 sui2-V220E V220E amino_acid_mutation PMID:35031321 V220E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.451678_451679delTTinsAG/c.659_660delTTinsAG/p.V220E +YJR011C CAL4 7671 cal4-C159Y C159Y amino_acid_mutation PMID:35357307 C159Y False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.458951C>T/c.476G>A/p.C159Y +YJR011C CAL4 7672 cal4-G162V G162V amino_acid_mutation PMID:35357307 G162V False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.458942C>A/c.485G>T/p.G162V +YJR011C CAL4 7674 cal4-L208P L208P amino_acid_mutation PMID:35357307 L208P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.458804A>G/c.623T>C/p.L208P +YJR011C CAL4 7675 cal4-Q205P Q205P amino_acid_mutation PMID:35357307 Q205P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.458813T>G/c.614A>C/p.Q205P +YJR011C CAL4 7677 cal4-W202STOP W202STOP partial_amino_acid_deletion PMID:35357307 W202STOP False W202* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrX:g.458822C>T/c.605G>A/p.W202* +YJR014W TMA22 7681 tma22-A105L A105L amino_acid_mutation PMID:34016977 A105L False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.462141_462142delGCinsCT/c.313_314delGCinsCT/p.A105L +YJR014W TMA22 7682 tma22-C11Y C11Y amino_acid_mutation PMID:34016977 C11Y False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.461860G>A/c.32G>A/p.C11Y +YJR017C ESS1 7685 ess1-A144T A144T amino_acid_mutation PMID:10899126 A144T False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466604C>T/c.430G>A/p.A144T +YJR017C ESS1 7686 ess1-C120R C120R amino_acid_mutation PMID:10899126 C120R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466676A>G/c.358T>C/p.C120R +YJR017C ESS1 7687 ess1-C62R C62R amino_acid_mutation PMID:10899126 C62R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466850A>G/c.184T>C/p.C62R +YJR017C ESS1 7688 ess1-D102Y D102Y amino_acid_mutation PMID:10899126 D102Y False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466730C>A/c.304G>T/p.D102Y +YJR017C ESS1 7689 ess1-F110S F110S amino_acid_mutation PMID:10899126 F110S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466705A>G/c.329T>C/p.F110S +YJR017C ESS1 7690 ess1-G127D G127D amino_acid_mutation PMID:10899126,PMID:37050909,PMID:9867817 G127D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466654C>T/c.380G>A/p.G127D +YJR017C ESS1 7691 ess1-G162S G162S amino_acid_mutation PMID:9867817 G162S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466550C>T/c.484G>A/p.G162S +YJR017C ESS1 7692 ess1-G43V G43V amino_acid_mutation PMID:10899126 G43V False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466906C>A/c.128G>T/p.G43V +YJR017C ESS1 7693 ess1-H164R H164R amino_acid_mutation PMID:10899126,PMID:15166139,PMID:16410768,PMID:19332564,PMID:22778132,PMID:25721128,PMID:27708008,PMID:34975936 H164R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466543T>C/c.491A>G/p.H164R +YJR017C ESS1 7694 ess1-H64P H64P amino_acid_mutation PMID:10899126 H64P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466843T>G/c.191A>C/p.H64P +YJR017C ESS1 7695 ess1-K51E K51E amino_acid_mutation PMID:10899126 K51E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466883T>C/c.151A>G/p.K51E +YJR017C ESS1 7696 ess1-L66P L66P amino_acid_mutation PMID:10899126 L66P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466837A>G/c.197T>C/p.L66P +YJR017C ESS1 7697 ess1-L94P L94P amino_acid_mutation PMID:10899126,PMID:37050909 L94P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466753A>G/c.281T>C/p.L94P +YJR017C ESS1 7698 ess1-S118L S118L amino_acid_mutation PMID:10899126 S118L False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466681G>A/c.353C>T/p.S118L +YJR017C ESS1 7699 ess1-S122P S122P amino_acid_mutation PMID:10899126 S122P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466670A>G/c.364T>C/p.S122P +YJR017C ESS1 7700 ess1-S77P S77P amino_acid_mutation PMID:10899126 S77P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466805A>G/c.229T>C/p.S77P +YJR017C ESS1 7701 ess1-S7P S7P amino_acid_mutation PMID:10899126 S7P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.467015A>G/c.19T>C/p.S7P +YJR017C ESS1 7702 ess1-T96P T96P amino_acid_mutation PMID:10899126 T96P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466748T>G/c.286A>C/p.T96P +YJR017C ESS1 7703 ess1-W15R W15R amino_acid_mutation PMID:10899126 W15R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466991A>T/c.43T>A/p.W15R +YJR033C RAV1 7718 rav1-K773A K773A amino_acid_mutation PMID:31941791 K773A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.494134_494135delAAinsGC/c.2317_2318delAAinsGC/p.K773A +YJR034W PET191 7721 pet191-C56A C56A amino_acid_mutation PMID:18503002 C56A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.496745_496746delTGinsGC/c.166_167delTGinsGC/p.C56A +YJR034W PET191 7722 pet191-C5A C5A amino_acid_mutation PMID:18503002 C5A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.496695_496696delTGinsGC/c.13_14delTGinsGC/p.C5A +YJR040W GEF1 7725 gef1-R637I R637I amino_acid_mutation PMID:32303542 R637I False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.509655G>T/c.1910G>T/p.R637I +YJR045C SSC1 7735 ssc1-D107A,I485N D107A,I485N amino_acid_mutation PMID:10430932 D107A|I485N False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.521283T>G/c.320A>C/p.D107A|chrX:g.520149A>T/c.1454T>A/p.I485N +YJR045C SSC1 7736 ssc1-E392K E392K amino_acid_mutation PMID:35252210 E392K False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.520429C>T/c.1174G>A/p.E392K +YJR045C SSC1 7737 ssc1-G365S G365S amino_acid_mutation PMID:35252210 G365S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.520510C>T/c.1093G>A/p.G365S +YJR045C SSC1 7738 ssc1-P486S P486S amino_acid_mutation PMID:22544056 P486S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.520147G>A/c.1456C>T/p.P486S +YJR045C SSC1 7739 ssc1-Q554K Q554K amino_acid_mutation PMID:35252210 Q554K False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.519943G>T/c.1660C>A/p.Q554K +YJR045C SSC1 7740 ssc1-R103W R103W amino_acid_mutation PMID:22544056 R103W False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.521294_521296delCGTinsTGG/c.307_309delCGTinsTGG/p.R103W +YJR045C SSC1 7741 ssc1-S177L S177L amino_acid_mutation PMID:35252210 S177L False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.521073_521074delTCinsCT/c.529_530delTCinsCT/p.S177L +YJR045C SSC1 7742 ssc1-T516K T516K amino_acid_mutation PMID:35252210 T516K False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.520056G>T/c.1547C>A/p.T516K +YJR045C SSC1 7743 ssc1-V110A,I485N V110A,I485N amino_acid_mutation PMID:10430932 V110A|I485N False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.521274A>G/c.329T>C/p.V110A|chrX:g.520149A>T/c.1454T>A/p.I485N +YJR045C SSC1 7744 ssc1-V189P V189P amino_acid_mutation PMID:35252210 V189P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.521037_521038delGTinsCC/c.565_566delGTinsCC/p.V189P +YJR048W CYC1 7749 cyc1-G47S G47S amino_acid_mutation PMID:24326104 G47S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.526473G>A/c.139G>A/p.G47S +YJR048W CYC1 7754 cyc1-Y54H Y54H amino_acid_mutation PMID:24326104 Y54H False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.526494T>C/c.160T>C/p.Y54H +YJR051W OSM1 7755 osm1-M1A M1A amino_acid_mutation PMID:25378625 M1A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.529861_529862delATinsGC/c.1_2delATinsGC/p.M1A +YJR055W HIT1 7756 hit1-C11F C11F amino_acid_mutation PMID:35843310 C11F False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.538803G>T/c.32G>T/p.C11F +YJR055W HIT1 7757 hit1-S29L S29L amino_acid_mutation PMID:35843310 S29L False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.538856_538857delTCinsCT/c.85_86delTCinsCT/p.S29L +YJR060W CBF1 7764 cbf1-T211A T211A amino_acid_mutation PMID:30381292 T211A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.549389A>G/c.631A>G/p.T211A +YJR062C NTA1 7766 nta1-C187S C187S amino_acid_mutation PMID:35638611 C187S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.554291A>T/c.559T>A/p.C187S +YJR063W RPA12 7774 rpa12-K120A K120A amino_acid_mutation PMID:35341765 K120A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.555552_555553delAAinsGC/c.358_359delAAinsGC/p.K120A +YJR063W RPA12 7775 rpa12-N124A N124A amino_acid_mutation PMID:35341765 N124A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.555564_555565delAAinsGC/c.370_371delAAinsGC/p.N124A +YJR063W RPA12 7776 rpa12-S59A S59A amino_acid_mutation PMID:35341765 S59A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.555369T>G/c.175T>G/p.S59A +YJR063W RPA12 7777 rpa12-S6L S6L amino_acid_mutation PMID:31136569 S6L False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.555211C>T/c.17C>T/p.S6L +YJR063W RPA12 7778 rpa12-T49A T49A amino_acid_mutation PMID:31136569 T49A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.555339A>G/c.145A>G/p.T49A +YJR065C ARP3 7782 arp3-D12A D12A amino_acid_mutation PMID:15657399,PMID:34544143 D12A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.559124T>G/c.35A>C/p.D12A +YJR066W TOR1 7791 TOR1-I1954S I1954S amino_acid_mutation PMID:26510498 I1954S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565276T>G/c.5861T>G/p.I1954S +YJR066W TOR1 7800 tor1-A1927E A1927E amino_acid_mutation PMID:26510498 A1927E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565195C>A/c.5780C>A/p.A1927E +YJR066W TOR1 7802 tor1-A1957V A1957V amino_acid_mutation PMID:16923813,PMID:26510498,PMID:32801125 A1957V False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565285C>T/c.5870C>T/p.A1957V +YJR066W TOR1 7803 tor1-F1712L F1712L amino_acid_mutation PMID:29429618 F1712L False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.564549T>C/c.5134T>C/p.F1712L +YJR066W TOR1 7804 tor1-I1954V I1954V amino_acid_mutation PMID:16923813,PMID:32801125 I1954V False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565275A>G/c.5860A>G/p.I1954V +YJR066W TOR1 7805 tor1-I1954V,W2176R I1954V,W2176R amino_acid_mutation PMID:16923813 I1954V|W2176R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565275A>G/c.5860A>G/p.I1954V|chrX:g.565941T>A/c.6526T>A/p.W2176R +YJR066W TOR1 7807 tor1-L2271V L2271V amino_acid_mutation PMID:26510498 L2271V False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.566226C>G/c.6811C>G/p.L2271V +YJR066W TOR1 7808 tor1-S1972A S1972A amino_acid_mutation PMID:8654975 S1972A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565329_565330delAGinsGC/c.5914_5915delAGinsGC/p.S1972A +YJR066W TOR1 7809 tor1-S1972D S1972D amino_acid_mutation PMID:8654975 S1972D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565329_565330delAGinsGA/c.5914_5915delAGinsGA/p.S1972D +YJR066W TOR1 7810 tor1-S1972T S1972T amino_acid_mutation PMID:8654975 S1972T False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565330G>C/c.5915G>C/p.S1972T +YJR066W TOR1 7811 tor1-W2176R W2176R amino_acid_mutation PMID:16923813,PMID:32801125 W2176R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565941T>A/c.6526T>A/p.W2176R +YJR073C OPI3 7820 opi3-A197C A197C amino_acid_mutation PMID:31932304 A197C False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.572346_572347delGCinsTG/c.589_590delGCinsTG/p.A197C +YJR073C OPI3 7821 opi3-G166C G166C amino_acid_mutation PMID:31932304 G166C False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.573240C>A/c.496G>T/p.G166C +YJR073C OPI3 7822 opi3-S115C S115C amino_acid_mutation PMID:31932304 S115C False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.572592G>C/c.344C>G/p.S115C +YJR073C OPI3 7823 opi3-S154C S154C amino_acid_mutation PMID:31932304 S154C False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.572475G>C/c.461C>G/p.S154C +YJR073C OPI3 7824 opi3-T93C T93C amino_acid_mutation PMID:31932304 T93C False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.572657_572659delACGinsTGT/c.277_279delACGinsTGT/p.T93C +YJR073C OPI3 7825 opi3-V138C V138C amino_acid_mutation PMID:31932304 V138C False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.572523_572524delGTinsTG/c.412_413delGTinsTG/p.V138C +YJR080C AIM24 7833 aim24-S88F S88F amino_acid_mutation PMID:29796388 S88F False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.581354G>A/c.263C>T/p.S88F +YJR086W STE18 7842 ste18-C107S C107S amino_acid_mutation PMID:7982577 C107S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.586386T>A/c.319T>A/p.C107S +YJR089W BIR1 7847 bir1-A931E, I935E A931E, I935E amino_acid_mutation PMID:17652458 A931E|I935E False A931E,I935E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.590509_590510delCCinsAG/c.2792_2793delCCinsAG/p.A931E|chrX:g.590520_590522delATTinsGAG/c.2803_2805delATTinsGAG/p.I935E +YJR089W BIR1 7848 bir1-E892A, E893A E892A, E893A amino_acid_mutation PMID:17652458 E892A|E893A False E892A,E893A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.590392A>C/c.2675A>C/p.E892A|chrX:g.590395A>C/c.2678A>C/p.E893A +YJR089W BIR1 7849 bir1-W901A W901A amino_acid_mutation PMID:17652458 W901A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.590418_590419delTGinsGC/c.2701_2702delTGinsGC/p.W901A +YJR103W URA8 7866 ura8-H360A H360A amino_acid_mutation PMID:34734801 H360A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.621831_621832delCAinsGC/c.1078_1079delCAinsGC/p.H360A +YJR104C SOD1 7872 sod1-A4V A4V amino_acid_mutation PMID:27656112,PMID:36622328,PMID:7708768 A4V False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.623004G>A/c.11C>T/p.A4V +YJR104C SOD1 7873 sod1-G37R G37R amino_acid_mutation PMID:27656112,PMID:7708768 G37R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.622906C>G/c.109G>C/p.G37R +YJR104C SOD1 7875 sod1-G94A G94A amino_acid_mutation PMID:34728328 G94A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.622734C>G/c.281G>C/p.G94A +YJR104C SOD1 7876 sod1-H47Q H47Q amino_acid_mutation PMID:27656112 H47Q False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.622874G>T/c.141C>A/p.H47Q +YJR104C SOD1 7877 sod1-H64A H64A amino_acid_mutation PMID:34728328 H64A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.622824_622825delCAinsGC/c.190_191delCAinsGC/p.H64A +YJR104C SOD1 7879 sod1-P143S P143S amino_acid_mutation PMID:34969852 P143S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.622588G>A/c.427C>T/p.P143S +YJR104C SOD1 7880 sod1-R144A R144A amino_acid_mutation PMID:34728328 R144A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.622584_622585delAGinsGC/c.430_431delAGinsGC/p.R144A +YJR104C SOD1 7882 sod1-S135N S135N amino_acid_mutation PMID:34728328 S135N False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.622611_622612delTCinsAA/c.403_404delTCinsAA/p.S135N +YJR104C SOD1 7884 sod1-S60A S60A amino_acid_mutation PMID:34728328 S60A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.622837A>C/c.178T>G/p.S60A +YJR104C SOD1 7885 sod1-S60A,S99A S60A,S99A amino_acid_mutation PMID:34728328 S60A|S99A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.622837A>C/c.178T>G/p.S60A|chrX:g.622720A>C/c.295T>G/p.S99A +YJR104C SOD1 7886 sod1-S99A S99A amino_acid_mutation PMID:34728328 S99A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.622720A>C/c.295T>G/p.S99A +YJR105W ADO1 7887 ado1-T258I T258I amino_acid_mutation PMID:30686113 T258I False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.624353C>T/c.773C>T/p.T258I +YJR117W STE24 7896 ste24-E298G E298G amino_acid_mutation PMID:26771486 E298G False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.642899A>G/c.893A>G/p.E298G +YJR117W STE24 7897 ste24-H297A H297A amino_acid_mutation PMID:32513868 H297A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.642895_642896delCAinsGC/c.889_890delCAinsGC/p.H297A +YJR119C JHD2 7898 jhd2-S212A S212A amino_acid_mutation PMID:35183557 S212A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.645866A>C/c.634T>G/p.S212A +YJR119C JHD2 7899 jhd2-S212D S212D amino_acid_mutation PMID:35183557 S212D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.645865_645866delTCinsGA/c.634_635delTCinsGA/p.S212D +YJR119C JHD2 7900 jhd2-S266A S266A amino_acid_mutation PMID:35183557 S266A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.645695A>C/c.796T>G/p.S266A +YJR119C JHD2 7901 jhd2-S266D S266D amino_acid_mutation PMID:35183557 S266D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.645693_645695delTCAinsGAC/c.796_798delTCAinsGAC/p.S266D +YJR119C JHD2 7902 jhd2-S274A S274A amino_acid_mutation PMID:35183557 S274A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.645671A>C/c.820T>G/p.S274A +YJR119C JHD2 7903 jhd2-S274D S274D amino_acid_mutation PMID:35183557 S274D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.645670_645671delTCinsGA/c.820_821delTCinsGA/p.S274D +YJR119C JHD2 7904 jhd2-S321A S321A amino_acid_mutation PMID:36167807 S321A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.645530A>C/c.961T>G/p.S321A +YJR119C JHD2 7905 jhd2-S321A,S340A S321A,S340A amino_acid_mutation PMID:36167807 S321A|S340A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.645530A>C/c.961T>G/p.S321A|chrX:g.645473A>C/c.1018T>G/p.S340A +YJR119C JHD2 7906 jhd2-S321D S321D amino_acid_mutation PMID:36167807 S321D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.645529_645530delTCinsGA/c.961_962delTCinsGA/p.S321D +YJR119C JHD2 7907 jhd2-S321D,S340D S321D,S340D amino_acid_mutation PMID:36167807 S321D|S340D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.645529_645530delTCinsGA/c.961_962delTCinsGA/p.S321D|chrX:g.645471_645473delTCAinsGAC/c.1018_1020delTCAinsGAC/p.S340D +YJR119C JHD2 7908 jhd2-S340A S340A amino_acid_mutation PMID:35183557,PMID:36167807 S340A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.645473A>C/c.1018T>G/p.S340A +YJR119C JHD2 7909 jhd2-S340D S340D amino_acid_mutation PMID:35183557,PMID:36167807 S340D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.645471_645473delTCAinsGAC/c.1018_1020delTCAinsGAC/p.S340D +YJR119C JHD2 7910 jhd2-S711A S711A amino_acid_mutation PMID:35183557 S711A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.644360A>C/c.2131T>G/p.S711A +YJR119C JHD2 7911 jhd2-S711D S711D amino_acid_mutation PMID:35183557 S711D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.644359_644360delTCinsGA/c.2131_2132delTCinsGA/p.S711D +YJR121W ATP2 7917 atp2-L125A,L318A L125A,L318A amino_acid_mutation PMID:36030696 L125A|L318A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.647743_647744delTTinsGC/c.373_374delTTinsGC/p.L125A|chrX:g.648558_648559delTTinsGC/c.952_953delTTinsGC/p.L318A +YJR121W ATP2 7918 atp2-T124A,T317A T124A,T317A amino_acid_mutation PMID:36030696 T124A|T317A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.647976A>G/c.370A>G/p.T124A|chrX:g.648555A>G/c.949A>G/p.T317A +YJR121W ATP2 7919 atp2-T124D T124D amino_acid_mutation PMID:29719209,PMID:36030696 T124D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.647976_647977delACinsGA/c.370_371delACinsGA/p.T124D +YJR121W ATP2 7920 atp2-T124D,T317D T124D,T317D amino_acid_mutation PMID:36030696 T124D|T317D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.647976_647977delACinsGA/c.370_371delACinsGA/p.T124D|chrX:g.648555_648556delACinsGA/c.949_950delACinsGA/p.T317D +YJR121W ATP2 7921 atp2-T317A T317A amino_acid_mutation PMID:29719209 T317A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.648555A>G/c.949A>G/p.T317A +YJR121W ATP2 7922 atp2-T317D T317D amino_acid_mutation PMID:29719209,PMID:36030696 T317D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.648555_648556delACinsGA/c.949_950delACinsGA/p.T317D +YJR136C TTI2 7926 tti2-F328S F328S amino_acid_mutation PMID:29626083 F328S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.677724A>G/c.983T>C/p.F328S +YJR136C TTI2 7927 tti2-I336F I336F amino_acid_mutation PMID:22505622 I336F False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.677701T>A/c.1006A>T/p.I336F +YJR136C TTI2 7928 tti2-L187P L187P amino_acid_mutation PMID:27172216,PMID:27899648,PMID:31484688 L187P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.678147A>G/c.560T>C/p.L187P +YJR136C TTI2 7929 tti2-Q276* Q276* partial_amino_acid_deletion PMID:27172216 Q276* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrX:g.677881G>A/c.826C>T/p.Q276* +YJR137C MET5 7932 ecm17-A979T A979T amino_acid_mutation PMID:19236486 A979T False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.680351C>T/c.2935G>A/p.A979T +YJR137C MET5 7933 ecm17-E1356K E1356K amino_acid_mutation PMID:19236486 E1356K False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.679220C>T/c.4066G>A/p.E1356K +YJR137C MET5 7934 ecm17-G1115D G1115D amino_acid_mutation PMID:19236486 G1115D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.679942C>T/c.3344G>A/p.G1115D +YJR138W IML1 7935 iml1-R943A R943A amino_acid_mutation PMID:23716719,PMID:36289347 R943A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.687393_687394delCGinsGC/c.2827_2828delCGinsGC/p.R943A +YJR139C HOM6 7936 hom6-K223V K223V amino_acid_mutation PMID:29127264 K223V False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.689857_689858delAAinsGT/c.667_668delAAinsGT/p.K223V +YJR141W IPA1 7941 ipa1-C144S C144S amino_acid_mutation PMID:29519818 C144S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.696335T>A/c.430T>A/p.C144S +YJR141W IPA1 7942 ipa1-C197S C197S amino_acid_mutation PMID:29519818 C197S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.696494T>A/c.589T>A/p.C197S +YJR141W IPA1 7943 ipa1-C200S C200S amino_acid_mutation PMID:29519818 C200S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.696503T>A/c.598T>A/p.C200S +YJR143C PMT4 7947 pmt4-I112R I112R amino_acid_mutation PMID:27358400 I112R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.700279_700280delTTinsGG/c.335_336delTTinsGG/p.I112R +YJR143C PMT4 7948 pmt4-I435D I435D amino_acid_mutation PMID:27358400 I435D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.699311_699312delATinsGA/c.1303_1304delATinsGA/p.I435D +YJR144W MGM101 7951 mgm101-C216A C216A amino_acid_mutation PMID:22948312 C216A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.701527_701528delTGinsGC/c.646_647delTGinsGC/p.C216A +YJR144W MGM101 7952 mgm101-N150A N150A amino_acid_mutation PMID:22027892 N150A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.701329_701330delAAinsGC/c.448_449delAAinsGC/p.N150A +YJR148W BAT2 7955 bat2-G316S G316S amino_acid_mutation PMID:35699439 G316S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.706689G>A/c.946G>A/p.G316S +YJR148W BAT2 7956 bat2-G316W G316W amino_acid_mutation PMID:35699439 G316W False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.706689_706691delGGTinsTGG/c.946_948delGGTinsTGG/p.G316W +YJR151C DAN4 7959 dan4-P216S P216S amino_acid_mutation PMID:36870416 P216S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.715095G>A/c.646C>T/p.P216S +YKL009W MRT4 7990 MRT4-G68E G68E amino_acid_mutation PMID:19797079 G68E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.426444_426445delGTinsAG/c.203_204delGTinsAG/p.G68E +YKL009W MRT4 7991 MRT4-K23E K23E amino_acid_mutation PMID:19797079 K23E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.426308A>G/c.67A>G/p.K23E +YKL009W MRT4 7992 MRT4-K69E K69E amino_acid_mutation PMID:19797079 K69E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.426446A>G/c.205A>G/p.K69E +YKL009W MRT4 7993 mrt4-G68D G68D amino_acid_mutation PMID:21474464 G68D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.426444G>A/c.203G>A/p.G68D +YKL017C HCS1 8000 hcs1-A215P A215P amino_acid_mutation PMID:36077311 A215P False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.406599C>G/c.643G>C/p.A215P +YKL017C HCS1 8001 hcs1-N634K N634K amino_acid_mutation PMID:36077311 N634K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.405340G>C/c.1902C>G/p.N634K +YKL017C HCS1 8002 hcs1-T525I T525I amino_acid_mutation PMID:36077311 T525I False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.405667_405668delCGinsTC/c.1574_1575delCGinsTC/p.T525I +YKL017C HCS1 8003 hcs1-V616I V616I amino_acid_mutation PMID:36077311 V616I False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.405396C>T/c.1846G>A/p.V616I +YKL027W TCD2 8021 tcd2-P351S P351S amino_acid_mutation PMID:35311587 P351S False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.388612C>T/c.1051C>T/p.P351S +YKL028W TFA1 8023 tfa1-C127R C127R amino_acid_mutation PMID:9271406 C127R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.386136T>C/c.379T>C/p.C127R +YKL028W TFA1 8024 tfa1-Q273ochre Q273ochre partial_amino_acid_deletion PMID:9271406 Q273ochre False Q273* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrXI:g.386574C>T/c.817C>T/p.Q273* +YKL033W TTI1 8026 tti1-G858V G858V amino_acid_mutation PMID:34935410 G858V False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.378028G>T/c.2573G>T/p.G858V +YKL033W TTI1 8027 tti1-T598R T598R amino_acid_mutation PMID:34935410 T598R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.377248C>G/c.1793C>G/p.T598R +YKL035W UGP1 8031 ugp1-S11A S11A amino_acid_mutation PMID:17531808 S11A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.369921T>G/c.31T>G/p.S11A +YKL040C NFU1 8034 nfu1-G194C G194C amino_acid_mutation PMID:27532773 G194C False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.361249C>A/c.580G>T/p.G194C +YKL041W VPS24 8035 vps24-E114K E114K amino_acid_mutation PMID:34028356 E114K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.360482G>A/c.340G>A/p.E114K +YKL045W PRI2 8040 pri2-Y352F,Y353F,Y395F,Y397F,Y412F Y352F,Y353F,Y395F,Y397F,Y412F amino_acid_mutation PMID:35617695 Y352F|Y353F|Y395F|Y397F|Y412F False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.354547A>T/c.1055A>T/p.Y352F|chrXI:g.354550A>T/c.1058A>T/p.Y353F|chrXI:g.354676A>T/c.1184A>T/p.Y395F|chrXI:g.354682A>T/c.1190A>T/p.Y397F|chrXI:g.354727A>T/c.1235A>T/p.Y412F +YKL045W PRI2 8041 pri2-Y352F,Y353F,Y395F,Y397F,Y412F,Y431F Y352F,Y353F,Y395F,Y397F,Y412F,Y431F amino_acid_mutation PMID:35617695 Y352F|Y353F|Y395F|Y397F|Y412F|Y431F False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.354547A>T/c.1055A>T/p.Y352F|chrXI:g.354550A>T/c.1058A>T/p.Y353F|chrXI:g.354676A>T/c.1184A>T/p.Y395F|chrXI:g.354682A>T/c.1190A>T/p.Y397F|chrXI:g.354727A>T/c.1235A>T/p.Y412F|chrXI:g.354784A>T/c.1292A>T/p.Y431F +YKL045W PRI2 8042 pri2-Y395F Y395F amino_acid_mutation PMID:30541886 Y395F False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.354676A>T/c.1184A>T/p.Y395F +YKL045W PRI2 8043 pri2-Y395L Y395L amino_acid_mutation PMID:30541886 Y395L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.354675_354676delTAinsCT/c.1183_1184delTAinsCT/p.Y395L +YKL045W PRI2 8044 pri2-Y397F Y397F amino_acid_mutation PMID:30541886 Y397F False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.354682A>T/c.1190A>T/p.Y397F +YKL045W PRI2 8045 pri2-Y397L Y397L amino_acid_mutation PMID:30541886 Y397L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.354681_354682delTAinsCT/c.1189_1190delTAinsCT/p.Y397L +YKL045W PRI2 8046 pri2-Y412F Y412F amino_acid_mutation PMID:35617695 Y412F False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.354727A>T/c.1235A>T/p.Y412F +YKL045W PRI2 8047 pri2-Y431F Y431F amino_acid_mutation PMID:35617695 Y431F False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.354784A>T/c.1292A>T/p.Y431F +YKL049C CSE4 8065 cse4-D217A D217A amino_acid_mutation PMID:33751052 D217A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346115T>G/c.650A>C/p.D217A +YKL049C CSE4 8066 cse4-D217E D217E amino_acid_mutation PMID:33751052,PMID:35234920 D217E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346114G>C/c.651C>G/p.D217E +YKL049C CSE4 8067 cse4-F158A F158A amino_acid_mutation PMID:19782029 F158A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346292_346293delTTinsGC/c.472_473delTTinsGC/p.F158A +YKL049C CSE4 8070 cse4-K65R K65R amino_acid_mutation PMID:29432128 K65R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346571T>C/c.194A>G/p.K65R +YKL049C CSE4 8071 cse4-R37A R37A amino_acid_mutation PMID:28158539,PMID:31578520 R37A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346655_346656delCGinsGC/c.109_110delCGinsGC/p.R37A +YKL049C CSE4 8073 cse4-S33A S33A amino_acid_mutation PMID:29272409 S33A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346668A>C/c.97T>G/p.S33A +YKL049C CSE4 8074 cse4-S33E S33E amino_acid_mutation PMID:29272409 S33E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346666_346668delTCTinsGAG/c.97_99delTCTinsGAG/p.S33E +YKL049C CSE4 8077 cse4-Y193A Y193A amino_acid_mutation PMID:33751052,PMID:35234920 Y193A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346187_346188delTAinsGC/c.577_578delTAinsGC/p.Y193A +YKL049C CSE4 8078 cse4-Y193F Y193F amino_acid_mutation PMID:33751052,PMID:35234920 Y193F False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346187T>A/c.578A>T/p.Y193F +YKL052C ASK1 8088 ask1-S216A,S250A S216A,S250A amino_acid_mutation PMID:32946748 S216A|S250A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.339901A>C/c.646T>G/p.S216A|chrXI:g.339799A>C/c.748T>G/p.S250A +YKL052C ASK1 8089 ask1-S216D,S250D S216D,S250D amino_acid_mutation PMID:32946748 S216D|S250D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.339900_339901delTCinsGA/c.646_647delTCinsGA/p.S216D|chrXI:g.339797_339799delTCGinsGAC/c.748_750delTCGinsGAC/p.S250D +YKL058W TOA2 8091 toa2-F71A F71A amino_acid_mutation PMID:23814059 F71A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.330376_330377delTTinsGC/c.211_212delTTinsGC/p.F71A +YKL058W TOA2 8092 toa2-I27K I27K amino_acid_mutation PMID:16835452 I27K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.330245_330246delTTinsAG/c.80_81delTTinsAG/p.I27K +YKL058W TOA2 8093 toa2-Y10A Y10A amino_acid_mutation PMID:23814059 Y10A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.330193_330194delTAinsGC/c.28_29delTAinsGC/p.Y10A +YKL059C MPE1 8096 mpe1-C182G,C185G C182G,C185G amino_acid_mutation PMID:25135474 C182G|C185G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.328900A>C/c.544T>G/p.C182G|chrXI:g.328891A>C/c.553T>G/p.C185G +YKL059C MPE1 8097 mpe1-F9A F9A amino_acid_mutation PMID:25135474 F9A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.329418_329419delTTinsGC/c.25_26delTTinsGC/p.F9A +YKL059C MPE1 8098 mpe1-F9A,D45K,R76E,P78G F9A,D45K,R76E,P78G amino_acid_mutation PMID:35584695 F9A|D45K|R76E|P78G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.329418_329419delTTinsGC/c.25_26delTTinsGC/p.F9A|chrXI:g.329309_329311delGATinsAAG/c.133_135delGATinsAAG/p.D45K|chrXI:g.329217_329218delAGinsGA/c.226_227delAGinsGA/p.R76E|chrXI:g.329211_329212delCCinsGG/c.232_233delCCinsGG/p.P78G +YKL059C MPE1 8099 mpe1-L337A L337A amino_acid_mutation PMID:25135474 L337A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.328434_328435delCTinsGC/c.1009_1010delCTinsGC/p.L337A +YKL059C MPE1 8100 mpe1-P215G P215G amino_acid_mutation PMID:35584695 P215G False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.328800_328801delCCinsGG/c.643_644delCCinsGG/p.P215G +YKL059C MPE1 8101 mpe1-W257A,Y260A W257A,Y260A amino_acid_mutation PMID:35584695 W257A|Y260A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.328674_328675delTGinsGC/c.769_770delTGinsGC/p.W257A|chrXI:g.328665_328666delTAinsGC/c.778_779delTAinsGC/p.Y260A +YKL060C FBA1 8105 fba1-G135S G135S amino_acid_mutation PMID:35472090 G135S False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.327085C>T/c.403G>A/p.G135S +YKL062W MSN4 8106 msn4-S532A S532A amino_acid_mutation PMID:30507007 S532A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.324821T>G/c.1594T>G/p.S532A +YKL062W MSN4 8107 msn4-S533A S533A amino_acid_mutation PMID:35159565 S533A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.324678T>G/c.1597T>G/p.S533A +YKL062W MSN4 8108 msn4-S558A S558A amino_acid_mutation PMID:30507007 S558A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.324899T>G/c.1672T>G/p.S558A +YKL085W MDH1 8121 mdh1-G30R G30R amino_acid_mutation PMID:27989324 G30R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.279210G>A/c.88G>A/p.G30R +YKL085W MDH1 8122 mdh1-P128L P128L amino_acid_mutation PMID:27989324 P128L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.279505C>T/c.383C>T/p.P128L +YKL085W MDH1 8123 mdh1-P202L P202L amino_acid_mutation PMID:27989324 P202L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.279727C>T/c.605C>T/p.P202L +YKL086W SRX1 8124 srx1-C84S C84S amino_acid_mutation PMID:14586471 C84S False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.278530T>A/c.250T>A/p.C84S +YKL088W CAB3 8125 cab3-A398V A398V amino_acid_mutation PMID:36564894 A398V False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.276475C>T/c.1193C>T/p.A398V +YKL088W CAB3 8126 cab3-T347P T347P amino_acid_mutation PMID:36564894 T347P False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.276321A>C/c.1039A>C/p.T347P +YKL089W MIF2 8146 mif2-F523A F523A amino_acid_mutation PMID:18701705 F523A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274960_274961delTTinsGC/c.1567_1568delTTinsGC/p.F523A +YKL089W MIF2 8147 mif2-S54A,S154A S54A,S154A amino_acid_mutation PMID:14581449 S54A|S154A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.273553T>G/c.160T>G/p.S54A|chrXI:g.273853_273854delAGinsGC/c.460_461delAGinsGC/p.S154A +YKL089W MIF2 8148 mif2-S54A,S325A S54A,S325A amino_acid_mutation PMID:14581449 S54A|S325A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.273553T>G/c.160T>G/p.S54A|chrXI:g.274366T>G/c.973T>G/p.S325A +YKL089W MIF2 8149 mif2-S54A,S98A S54A,S98A amino_acid_mutation PMID:14581449 S54A|S98A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.273553T>G/c.160T>G/p.S54A|chrXI:g.273685T>G/c.292T>G/p.S98A +YKL089W MIF2 8150 mif2-T488A T488A amino_acid_mutation PMID:18701705 T488A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274836A>G/c.1462A>G/p.T488A +YKL089W MIF2 8151 mif2-Y451S,F452A Y451S,F452A amino_acid_mutation PMID:18701705 Y451S|F452A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274745A>C/c.1352A>C/p.Y451S|chrXI:g.274747_274748delTTinsGC/c.1354_1355delTTinsGC/p.F452A +YKL089W MIF2 8152 mif2-Y451S,F452A,F523A Y451S,F452A,F523A amino_acid_mutation PMID:18701705 Y451S|F452A|F523A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274745A>C/c.1352A>C/p.Y451S|chrXI:g.274747_274748delTTinsGC/c.1354_1355delTTinsGC/p.F452A|chrXI:g.274960_274961delTTinsGC/c.1567_1568delTTinsGC/p.F523A +YKL101W HSL1 8180 hsl1-A262P A262P amino_acid_mutation PMID:33749796 A262P False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.249703G>C/c.784G>C/p.A262P +YKL101W HSL1 8182 hsl1-K110R K110R amino_acid_mutation PMID:27053666 K110R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.249248A>G/c.329A>G/p.K110R +YKL108W SLD2 8191 sld2-T84A T84A amino_acid_mutation PMID:16619031,PMID:36400763 T84A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.234675A>G/c.250A>G/p.T84A +YKL110C KTI12 8194 kti12-C109R C109R amino_acid_mutation PMID:30916349 C109R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229556A>G/c.325T>C/p.C109R +YKL110C KTI12 8195 kti12-C115R C115R amino_acid_mutation PMID:30916349 C115R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229538A>G/c.343T>C/p.C115R +YKL110C KTI12 8196 kti12-C99S C99S amino_acid_mutation PMID:30916349 C99S False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229586A>T/c.295T>A/p.C99S +YKL110C KTI12 8197 kti12-D45A D45A amino_acid_mutation PMID:30916349 D45A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229747T>G/c.134A>C/p.D45A +YKL110C KTI12 8198 kti12-D85A D85A amino_acid_mutation PMID:30916349 D85A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229627T>G/c.254A>C/p.D85A +YKL110C KTI12 8199 kti12-E133A E133A amino_acid_mutation PMID:30916349 E133A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229973T>G/c.398A>C/p.E133A +YKL110C KTI12 8200 kti12-E61A E61A amino_acid_mutation PMID:30916349 E61A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229699T>G/c.182A>C/p.E61A +YKL110C KTI12 8201 kti12-F286L F286L amino_acid_mutation PMID:30916349 F286L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229025A>G/c.856T>C/p.F286L +YKL110C KTI12 8202 kti12-F286S F286S amino_acid_mutation PMID:30916349 F286S False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229024A>G/c.857T>C/p.F286S +YKL110C KTI12 8203 kti12-F93A F93A amino_acid_mutation PMID:30916349 F93A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229603_229604delTTinsGC/c.277_278delTTinsGC/p.F93A +YKL110C KTI12 8204 kti12-G92A G92A amino_acid_mutation PMID:30916349 G92A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229606C>G/c.275G>C/p.G92A +YKL110C KTI12 8205 kti12-H52A H52A amino_acid_mutation PMID:30916349 H52A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229726_229727delCAinsGC/c.154_155delCAinsGC/p.H52A +YKL110C KTI12 8206 kti12-I90A I90A amino_acid_mutation PMID:30916349 I90A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229612_229613delATinsGC/c.268_269delATinsGC/p.I90A +YKL110C KTI12 8207 kti12-I90T I90T amino_acid_mutation PMID:30916349 I90T False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229612A>G/c.269T>C/p.I90T +YKL110C KTI12 8208 kti12-K102A K102A amino_acid_mutation PMID:30916349 K102A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229576_229577delAAinsGC/c.304_305delAAinsGC/p.K102A +YKL110C KTI12 8209 kti12-K125A K125A amino_acid_mutation PMID:30916349 K125A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229997_229998delAAinsGC/c.373_374delAAinsGC/p.K125A +YKL110C KTI12 8210 kti12-K14A K14A amino_acid_mutation PMID:30916349 K14A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.230330_230331delAAinsGC/c.40_41delAAinsGC/p.K14A +YKL110C KTI12 8211 kti12-K14V K14V amino_acid_mutation PMID:32236652 K14V False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.230330_230331delAAinsGT/c.40_41delAAinsGT/p.K14V +YKL110C KTI12 8214 kti12-K91A K91A amino_acid_mutation PMID:30916349 K91A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229609_229610delAAinsGC/c.271_272delAAinsGC/p.K91A +YKL110C KTI12 8215 kti12-N124A N124A amino_acid_mutation PMID:30916349 N124A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229510_229511delAAinsGC/c.370_371delAAinsGC/p.N124A +YKL110C KTI12 8216 kti12-N187L N187L amino_acid_mutation PMID:30916349 N187L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229321_229322delAAinsCT/c.559_560delAAinsCT/p.N187L +YKL110C KTI12 8218 kti12-Q142A Q142A amino_acid_mutation PMID:30916349 Q142A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229456_229457delCAinsGC/c.424_425delCAinsGC/p.Q142A +YKL110C KTI12 8219 kti12-Q96L Q96L amino_acid_mutation PMID:30916349 Q96L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229594T>A/c.287A>T/p.Q96L +YKL110C KTI12 8220 kti12-R143A R143A amino_acid_mutation PMID:30916349 R143A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229943_229944delAGinsGC/c.427_428delAGinsGC/p.R143A +YKL110C KTI12 8221 kti12-R152A,W153A R152A,W153A amino_acid_mutation PMID:30916349 R152A|W153A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229426_229427delCGinsGC/c.454_455delCGinsGC/p.R152A|chrXI:g.229423_229424delTGinsGC/c.457_458delTGinsGC/p.W153A +YKL110C KTI12 8222 kti12-R62A R62A amino_acid_mutation PMID:30916349 R62A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229696_229697delAGinsGC/c.184_185delAGinsGC/p.R62A +YKL110C KTI12 8223 kti12-R62A,R65A R62A,R65A amino_acid_mutation PMID:30916349 R62A|R65A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229696_229697delAGinsGC/c.184_185delAGinsGC/p.R62A|chrXI:g.229687_229688delAGinsGC/c.193_194delAGinsGC/p.R65A +YKL110C KTI12 8224 kti12-R65A R65A amino_acid_mutation PMID:30916349 R65A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229687_229688delAGinsGC/c.193_194delAGinsGC/p.R65A +YKL110C KTI12 8225 kti12-R65G R65G amino_acid_mutation PMID:30916349 R65G False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229688T>C/c.193A>G/p.R65G +YKL110C KTI12 8226 kti12-R94G R94G amino_acid_mutation PMID:30916349 R94G False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229601G>C/c.280C>G/p.R94G +YKL110C KTI12 8227 kti12-S86E S86E amino_acid_mutation PMID:30916349 S86E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.230113_230115delAGCinsGAG/c.256_258delAGCinsGAG/p.S86E +YKL110C KTI12 8228 kti12-S86Q S86Q amino_acid_mutation PMID:30916349 S86Q False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.230113_230115delAGCinsCAA/c.256_258delAGCinsCAA/p.S86Q +YKL110C KTI12 8229 kti12-T15A T15A amino_acid_mutation PMID:30916349 T15A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229838T>C/c.43A>G/p.T15A +YKL110C KTI12 8230 kti12-T15A,D85A T15A,D85A amino_acid_mutation PMID:30916349 T15A|D85A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229838T>C/c.43A>G/p.T15A|chrXI:g.229627T>G/c.254A>C/p.D85A +YKL110C KTI12 8231 kti12-T162A T162A amino_acid_mutation PMID:30916349 T162A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229397T>C/c.484A>G/p.T162A +YKL110C KTI12 8232 kti12-T16A T16A amino_acid_mutation PMID:30916349 T16A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229835T>C/c.46A>G/p.T16A +YKL110C KTI12 8233 kti12-W123A W123A amino_acid_mutation PMID:30916349 W123A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229513_229514delTGinsGC/c.367_368delTGinsGC/p.W123A +YKL110C KTI12 8234 kti12-Y89A Y89A amino_acid_mutation PMID:30916349 Y89A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229615_229616delTAinsGC/c.265_266delTAinsGC/p.Y89A +YKL110C KTI12 8235 kti12-Y95A Y95A amino_acid_mutation PMID:30916349 Y95A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.229597_229598delTAinsGC/c.283_284delTAinsGC/p.Y95A +YKL112W ABF1 8242 abf1-C49Y C49Y amino_acid_mutation PMID:1545789,PMID:18305101 C49Y False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.226715G>A/c.146G>A/p.C49Y +YKL112W ABF1 8243 abf1-P357L P357L amino_acid_mutation PMID:1545789 P357L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.227639C>T/c.1070C>T/p.P357L +YKL112W ABF1 8244 abf1-Q180* Q180* partial_amino_acid_deletion PMID:1545789 Q180* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXI:g.227107C>T/c.538C>T/p.Q180* +YKL112W ABF1 8245 abf1-R420K R420K amino_acid_mutation PMID:1545789 R420K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.227828G>A/c.1259G>A/p.R420K +YKL113C RAD27 8246 rad27-A358* A358* partial_amino_acid_deletion PMID:19596905 A358* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXI:g.224802_224804delGCTinsTAA/c.1072_1074delGCTinsTAA/p.A358* +YKL113C RAD27 8247 rad27-D179A D179A amino_acid_mutation PMID:33782138 D179A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.225340T>G/c.536A>C/p.D179A +YKL113C RAD27 8248 rad27-G67S G67S amino_acid_mutation PMID:18514590 G67S False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.225677C>T/c.199G>A/p.G67S +YKL113C RAD27 8249 rad27-K325* K325* partial_amino_acid_deletion PMID:19596905 K325* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXI:g.224903T>A/c.973A>T/p.K325* +YKL114C APN1 8251 apn1-S350A, S356A S350A, S356A amino_acid_mutation PMID:27017623 S350A|S356A False S350A,S356A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.223407_223408delAGinsGC/c.1048_1049delAGinsGC/p.S350A|chrXI:g.223390A>C/c.1066T>G/p.S356A +YKL125W RRN3 8252 rrn3-S145D S145D amino_acid_mutation PMID:21940764 S145D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.208679_208681delTCGinsGAC/c.433_435delTCGinsGAC/p.S145D +YKL125W RRN3 8253 rrn3-S213P S213P amino_acid_mutation PMID:23962978 S213P False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.208883T>C/c.637T>C/p.S213P +YKL126W YPK1 8254 ypk1-A221E A221E amino_acid_mutation PMID:36870416 A221E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.206368C>A/c.662C>A/p.A221E +YKL126W YPK1 8255 ypk1-D242A D242A amino_acid_mutation PMID:22307609 D242A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.206431A>C/c.725A>C/p.D242A +YKL126W YPK1 8256 ypk1-K376A K376A amino_acid_mutation PMID:10825204,PMID:15820214 K376A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.206832_206833delAAinsGC/c.1126_1127delAAinsGC/p.K376A +YKL126W YPK1 8257 ypk1-K376R K376R amino_acid_mutation PMID:10825204,PMID:20516150 K376R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.206833A>G/c.1127A>G/p.K376R +YKL126W YPK1 8258 ypk1-S51A,S71A S51A,S71A amino_acid_mutation PMID:19966303,PMID:37379203 S51A|S71A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.205857T>G/c.151T>G/p.S51A|chrXI:g.205917T>G/c.211T>G/p.S71A +YKL126W YPK1 8259 ypk1-S644A S644A amino_acid_mutation PMID:28739659 S644A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.207428T>G/c.1930T>G/p.S644A +YKL126W YPK1 8260 ypk1-S644A,T662A S644A,T662A amino_acid_mutation PMID:15470109,PMID:19966303,PMID:28739659,PMID:37379203 S644A|T662A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.207428T>G/c.1930T>G/p.S644A|chrXI:g.207690A>G/c.1984A>G/p.T662A +YKL126W YPK1 8261 ypk1-T502I T502I amino_acid_mutation PMID:35105807 T502I False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.207211C>T/c.1505C>T/p.T502I +YKL126W YPK1 8262 ypk1-T504A T504A amino_acid_mutation PMID:15470109,PMID:19966303,PMID:37379203 T504A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.207216A>G/c.1510A>G/p.T504A +YKL126W YPK1 8263 ypk1-T504D T504D amino_acid_mutation PMID:32318242 T504D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.207216_207217delACinsGA/c.1510_1511delACinsGA/p.T504D +YKL126W YPK1 8264 ypk1-T662A T662A amino_acid_mutation PMID:15820214,PMID:28739659 T662A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.207690A>G/c.1984A>G/p.T662A +YKL127W PGM1 8266 pgm1-D295N D295N amino_acid_mutation PMID:36214454 D295N False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.204423G>A/c.883G>A/p.D295N +YKL127W PGM1 8267 pgm1-G514C G514C amino_acid_mutation PMID:36214454 G514C False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.205080G>T/c.1540G>T/p.G514C +YKL127W PGM1 8268 pgm1-R64C R64C amino_acid_mutation PMID:36214454 R64C False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.203730C>T/c.190C>T/p.R64C +YKL127W PGM1 8269 pgm1-T231A T231A amino_acid_mutation PMID:36214454 T231A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.204231A>G/c.691A>G/p.T231A +YKL127W PGM1 8270 pgm1-T521K T521K amino_acid_mutation PMID:36214454 T521K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.205102C>A/c.1562C>A/p.T521K +YKL130C SHE2 8271 she2-E172A,F176A E172A,F176A amino_acid_mutation PMID:28092367 E172A|F176A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195514T>G/c.515A>C/p.E172A|chrXI:g.195502_195503delTTinsGC/c.526_527delTTinsGC/p.F176A +YKL130C SHE2 8273 she2-S101A S101A amino_acid_mutation PMID:36921931 S101A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195728A>C/c.301T>G/p.S101A +YKL130C SHE2 8274 she2-S101A,T109A S101A,T109A amino_acid_mutation PMID:36921931 S101A|T109A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195728A>C/c.301T>G/p.S101A|chrXI:g.195704T>C/c.325A>G/p.T109A +YKL130C SHE2 8275 she2-S101D S101D amino_acid_mutation PMID:36921931 S101D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195726_195728delTCAinsGAC/c.301_303delTCAinsGAC/p.S101D +YKL130C SHE2 8276 she2-S166D S166D amino_acid_mutation PMID:36921931 S166D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195532_195533delAGinsGA/c.496_497delAGinsGA/p.S166D +YKL130C SHE2 8277 she2-S217A S217A amino_acid_mutation PMID:36921931 S217A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195380A>C/c.649T>G/p.S217A +YKL130C SHE2 8278 she2-S217A,S224A S217A,S224A amino_acid_mutation PMID:36921931 S217A|S224A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195380A>C/c.649T>G/p.S217A|chrXI:g.195358_195359delAGinsGC/c.670_671delAGinsGC/p.S224A +YKL130C SHE2 8279 she2-S217D S217D amino_acid_mutation PMID:36921931 S217D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195379_195380delTCinsGA/c.649_650delTCinsGA/p.S217D +YKL130C SHE2 8280 she2-S217D,S224D S217D,S224D amino_acid_mutation PMID:36921931 S217D|S224D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195379_195380delTCinsGA/c.649_650delTCinsGA/p.S217D|chrXI:g.195358_195359delAGinsGA/c.670_671delAGinsGA/p.S224D +YKL130C SHE2 8281 she2-S224A S224A amino_acid_mutation PMID:36921931 S224A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195358_195359delAGinsGC/c.670_671delAGinsGC/p.S224A +YKL130C SHE2 8282 she2-S224D S224D amino_acid_mutation PMID:36921931 S224D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195358_195359delAGinsGA/c.670_671delAGinsGA/p.S224D +YKL130C SHE2 8283 she2-S2A S2A amino_acid_mutation PMID:36921931 S2A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.196024_196025delAGinsGC/c.4_5delAGinsGC/p.S2A +YKL130C SHE2 8284 she2-S2D S2D amino_acid_mutation PMID:36921931 S2D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.196024_196025delAGinsGA/c.4_5delAGinsGA/p.S2D +YKL130C SHE2 8285 she2-S91A S91A amino_acid_mutation PMID:36921931 S91A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195758A>C/c.271T>G/p.S91A +YKL130C SHE2 8286 she2-S91D S91D amino_acid_mutation PMID:36921931 S91D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195756_195758delTCGinsGAC/c.271_273delTCGinsGAC/p.S91D +YKL130C SHE2 8287 she2-T109A T109A amino_acid_mutation PMID:36921931 T109A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195704T>C/c.325A>G/p.T109A +YKL130C SHE2 8288 she2-T109D T109D amino_acid_mutation PMID:36921931 T109D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195702_195704delACGinsGAC/c.325_327delACGinsGAC/p.T109D +YKL130C SHE2 8289 she2-T47A T47A amino_acid_mutation PMID:36921931 T47A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195890T>C/c.139A>G/p.T47A +YKL130C SHE2 8290 she2-T47D T47D amino_acid_mutation PMID:36921931 T47D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195888_195890delACGinsGAC/c.139_141delACGinsGAC/p.T47D +YKL130C SHE2 8291 she2-Y148F Y148F amino_acid_mutation PMID:36921931 Y148F False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195586T>A/c.443A>T/p.Y148F +YKL130C SHE2 8292 she2-Y65F Y65F amino_acid_mutation PMID:36921931 Y65F False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195835T>A/c.194A>T/p.Y65F +YKL130C SHE2 8293 she2-Y65F,Y148F Y65F,Y148F amino_acid_mutation PMID:36921931 Y65F|Y148F False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195835T>A/c.194A>T/p.Y65F|chrXI:g.195586T>A/c.443A>T/p.Y148F +YKL144C RPC25 8304 rpc25-S100P S100P amino_acid_mutation PMID:15612920 S100P False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.176184A>G/c.298T>C/p.S100P +YKL145W RPT1 8308 rpt1-K256S K256S amino_acid_mutation PMID:17183369,PMID:9724628 K256S False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.174979_174980delAGinsGC/c.767_768delAGinsGC/p.K256S +YKL145W RPT1 8309 rpt1-P96A P96A amino_acid_mutation PMID:33862083 P96A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.174498C>G/c.286C>G/p.P96A +YKL145W RPT1 8310 rpt1-S164A,T166K S164A,T166K amino_acid_mutation PMID:35149681 S164A|T166K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.174702T>G/c.490T>G/p.S164A|chrXI:g.174709C>A/c.497C>A/p.T166K +YKL145W RPT1 8311 rpt1-S164R,T166K S164R,T166K amino_acid_mutation PMID:35149681 S164R|T166K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.174702_174703delTCinsCG/c.490_491delTCinsCG/p.S164R|chrXI:g.174709C>A/c.497C>A/p.T166K +YKL145W RPT1 8312 rpt1-Y283A Y283A amino_acid_mutation PMID:22493437 Y283A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.175059_175060delTAinsGC/c.847_848delTAinsGC/p.Y283A +YKL148C SDH1 8314 sdh1-A447E A447E amino_acid_mutation PMID:28724664 A447E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.169789_169790delCCinsAG/c.1340_1341delCCinsAG/p.A447E +YKL148C SDH1 8315 sdh1-C431F C431F amino_acid_mutation PMID:28724664 C431F False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.169838C>A/c.1292G>T/p.C431F +YKL148C SDH1 8316 sdh1-C431Y C431Y amino_acid_mutation PMID:33232753 C431Y False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.169838C>T/c.1292G>A/p.C431Y +YKL148C SDH1 8317 sdh1-D266G D266G amino_acid_mutation PMID:33232753 D266G False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.170333T>C/c.797A>G/p.D266G +YKL148C SDH1 8318 sdh1-G249C G249C amino_acid_mutation PMID:33232753 G249C False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.170385C>A/c.745G>T/p.G249C +YKL148C SDH1 8319 sdh1-G251R G251R amino_acid_mutation PMID:28724664 G251R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.170379C>G/c.751G>C/p.G251R +YKL148C SDH1 8320 sdh1-G410R G410R amino_acid_mutation PMID:28724664 G410R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.169902C>G/c.1228G>C/p.G410R +YKL148C SDH1 8321 sdh1-G432E G432E amino_acid_mutation PMID:28724664 G432E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.170011_170012delGTinsAG/c.1295_1296delGTinsAG/p.G432E +YKL148C SDH1 8322 sdh1-G64S G64S amino_acid_mutation PMID:33232753 G64S False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.170940C>T/c.190G>A/p.G64S +YKL148C SDH1 8323 sdh1-G97R G97R amino_acid_mutation PMID:28724664 G97R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.170841C>G/c.289G>C/p.G97R +YKL148C SDH1 8324 sdh1-H202Y H202Y amino_acid_mutation PMID:33973343 H202Y False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.170526G>A/c.604C>T/p.H202Y +YKL148C SDH1 8325 sdh1-H287Y H287Y amino_acid_mutation PMID:28724664 H287Y False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.170271G>A/c.859C>T/p.H287Y +YKL148C SDH1 8326 sdh1-H601Y H601Y amino_acid_mutation PMID:28724664 H601Y False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.169329G>A/c.1801C>T/p.H601Y +YKL148C SDH1 8327 sdh1-H90S H90S amino_acid_mutation PMID:28724664 H90S False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.170861_170862delCAinsAG/c.268_269delCAinsAG/p.H90S +YKL148C SDH1 8328 sdh1-R179W R179W amino_acid_mutation PMID:28724664 R179W False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.170593_170595delAGAinsTGG/c.535_537delAGAinsTGG/p.R179W +YKL148C SDH1 8330 sdh1-R303C R303C amino_acid_mutation PMID:28724664 R303C False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.170223G>A/c.907C>T/p.R303C +YKL148C SDH1 8331 sdh1-R444C R444C amino_acid_mutation PMID:28724664 R444C False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.169798_169800delAGAinsTGT/c.1330_1332delAGAinsTGT/p.R444C +YKL148C SDH1 8332 sdh1-R444H R444H amino_acid_mutation PMID:28724664 R444H False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.169798_169800delAGAinsCAT/c.1330_1332delAGAinsCAT/p.R444H +YKL148C SDH1 8333 sdh1-R458W R458W amino_acid_mutation PMID:28724664 R458W False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.169756_169758delCGTinsTGG/c.1372_1374delCGTinsTGG/p.R458W +YKL148C SDH1 8334 sdh1-R547W R547W amino_acid_mutation PMID:7550341 R547W False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.169489_169491delAGAinsTGG/c.1639_1641delAGAinsTGG/p.R547W +YKL148C SDH1 8335 sdh1-R582G R582G amino_acid_mutation PMID:28724664 R582G False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.169386G>C/c.1744C>G/p.R582G +YKL148C SDH1 8336 sdh1-T134M T134M amino_acid_mutation PMID:28724664 T134M False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.170728_170729delCCinsTG/c.401_402delCCinsTG/p.T134M +YKL148C SDH1 8337 sdh1-W112L W112L amino_acid_mutation PMID:33232753 W112L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.170795C>A/c.335G>T/p.W112L +YKL148C SDH1 8338 sdh1-Y399C Y399C amino_acid_mutation PMID:28724664 Y399C False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.169934T>C/c.1196A>G/p.Y399C +YKL152C GPM1 8342 gpm1-H182A H182A amino_acid_mutation PMID:1386023 H182A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.163841_163842delCAinsGC/c.544_545delCAinsGC/p.H182A +YKL154W SRP102 8344 srp102-K51I K51I amino_acid_mutation PMID:9679135 K51I False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.161752A>T/c.152A>T/p.K51I +YKL173W SNU114 8362 snu114-A470R A470R amino_acid_mutation PMID:32333448 A470R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.123924_123925delGCinsCG/c.1408_1409delGCinsCG/p.A470R +YKL173W SNU114 8363 snu114-D271N D271N amino_acid_mutation PMID:12736260 D271N False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.123327G>A/c.811G>A/p.D271N +YKL173W SNU114 8364 snu114-G217E G217E amino_acid_mutation PMID:32333448 G217E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.123166G>A/c.650G>A/p.G217E +YKL173W SNU114 8365 snu114-H218R H218R amino_acid_mutation PMID:32333448 H218R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.123169A>G/c.653A>G/p.H218R +YKL173W SNU114 8366 snu114-R487E R487E amino_acid_mutation PMID:12736260 R487E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.123950_123951delCGinsGA/c.1459_1460delCGinsGA/p.R487E +YKL173W SNU114 8367 snu114-T147I T147I amino_acid_mutation PMID:32333448 T147I False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.122956C>T/c.440C>T/p.T147I +YKL173W SNU114 8368 snu114-V238D V238D amino_acid_mutation PMID:19620389 V238D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.123229_123230delTGinsAC/c.713_714delTGinsAC/p.V238D +YKL178C STE3 8373 ste3-A142D A142D amino_acid_mutation PMID:27150158 A142D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114203G>T/c.425C>A/p.A142D +YKL178C STE3 8374 ste3-C147Y C147Y amino_acid_mutation PMID:27150158 C147Y False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114188C>T/c.440G>A/p.C147Y +YKL178C STE3 8375 ste3-C213R C213R amino_acid_mutation PMID:27150158 C213R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.113991A>G/c.637T>C/p.C213R +YKL178C STE3 8376 ste3-C213Y C213Y amino_acid_mutation PMID:27150158 C213Y False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.113990C>T/c.638G>A/p.C213Y +YKL178C STE3 8377 ste3-G129E G129E amino_acid_mutation PMID:27150158 G129E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114242C>T/c.386G>A/p.G129E +YKL178C STE3 8378 ste3-G146R G146R amino_acid_mutation PMID:27150158 G146R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114192C>G/c.436G>C/p.G146R +YKL178C STE3 8379 ste3-H195Q H195Q amino_acid_mutation PMID:27150158 H195Q False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114043G>T/c.585C>A/p.H195Q +YKL178C STE3 8380 ste3-I167K,S169P I167K,S169P amino_acid_mutation PMID:27150158 I167K|S169P False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114128A>T/c.500T>A/p.I167K|chrXI:g.114123A>G/c.505T>C/p.S169P +YKL178C STE3 8381 ste3-I262T I262T amino_acid_mutation PMID:27150158 I262T False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.113843A>G/c.785T>C/p.I262T +YKL178C STE3 8383 ste3-L121F,G140V,K188M L121F,G140V,K188M amino_acid_mutation PMID:27150158 L121F|G140V|K188M False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114265C>A/c.363G>T/p.L121F|chrXI:g.114209C>A/c.419G>T/p.G140V|chrXI:g.114065T>A/c.563A>T/p.K188M +YKL178C STE3 8384 ste3-L121M,S131P L121M,S131P amino_acid_mutation PMID:27150158 L121M|S131P False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114267A>T/c.361T>A/p.L121M|chrXI:g.114237A>G/c.391T>C/p.S131P +YKL178C STE3 8385 ste3-L150S,N198I L150S,N198I amino_acid_mutation PMID:27150158 L150S|N198I False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114179A>G/c.449T>C/p.L150S|chrXI:g.114035T>A/c.593A>T/p.N198I +YKL178C STE3 8386 ste3-L151M,W168R L151M,W168R amino_acid_mutation PMID:27150158 L151M|W168R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114177A>T/c.451T>A/p.L151M|chrXI:g.114126A>T/c.502T>A/p.W168R +YKL178C STE3 8387 ste3-L209P L209P amino_acid_mutation PMID:27150158 L209P False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114002A>G/c.626T>C/p.L209P +YKL178C STE3 8388 ste3-M126R M126R amino_acid_mutation PMID:27150158 M126R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114251A>C/c.377T>G/p.M126R +YKL178C STE3 8389 ste3-M128R M128R amino_acid_mutation PMID:27150158 M128R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114245A>C/c.383T>G/p.M128R +YKL178C STE3 8390 ste3-M163R M163R amino_acid_mutation PMID:27150158 M163R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114140A>C/c.488T>G/p.M163R +YKL178C STE3 8391 ste3-N149K N149K amino_acid_mutation PMID:27150158 N149K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114181G>C/c.447C>G/p.N149K +YKL178C STE3 8392 ste3-P124L P124L amino_acid_mutation PMID:27150158 P124L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114257G>A/c.371C>T/p.P124L +YKL178C STE3 8393 ste3-P153L P153L amino_acid_mutation PMID:27150158 P153L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114170G>A/c.458C>T/p.P153L +YKL178C STE3 8394 ste3-P153Q,T157I,F212I P153Q,T157I,F212I amino_acid_mutation PMID:27150158 P153Q|T157I|F212I False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114170G>T/c.458C>A/p.P153Q|chrXI:g.114158G>A/c.470C>T/p.T157I|chrXI:g.113994A>T/c.634T>A/p.F212I +YKL178C STE3 8395 ste3-Q148H Q148H amino_acid_mutation PMID:27150158 Q148H False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114184T>A/c.444A>T/p.Q148H +YKL178C STE3 8396 ste3-Q148K,T162I Q148K,T162I amino_acid_mutation PMID:27150158 Q148K|T162I False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114186G>T/c.442C>A/p.Q148K|chrXI:g.114143G>A/c.485C>T/p.T162I +YKL178C STE3 8397 ste3-R143C R143C amino_acid_mutation PMID:27150158 R143C False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114201G>A/c.427C>T/p.R143C +YKL178C STE3 8398 ste3-R208M R208M amino_acid_mutation PMID:27150158 R208M False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114005C>A/c.623G>T/p.R208M +YKL178C STE3 8400 ste3-S272F S272F amino_acid_mutation PMID:27150158 S272F False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.113813G>A/c.815C>T/p.S272F +YKL178C STE3 8401 ste3-S272Y S272Y amino_acid_mutation PMID:27150158 S272Y False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.113813G>T/c.815C>A/p.S272Y +YKL178C STE3 8402 ste3-T157I T157I amino_acid_mutation PMID:27150158 T157I False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114158G>A/c.470C>T/p.T157I +YKL178C STE3 8403 ste3-T158I,G172S T158I,G172S amino_acid_mutation PMID:27150158 T158I|G172S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114155G>A/c.473C>T/p.T158I|chrXI:g.114114C>T/c.514G>A/p.G172S +YKL178C STE3 8404 ste3-T162I,V171M T162I,V171M amino_acid_mutation PMID:27150158 T162I|V171M False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114143G>A/c.485C>T/p.T162I|chrXI:g.114117C>T/c.511G>A/p.V171M +YKL178C STE3 8405 ste3-T197I T197I amino_acid_mutation PMID:27150158 T197I False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114038G>A/c.590C>T/p.T197I +YKL178C STE3 8406 ste3-V127I,A142P V127I,A142P amino_acid_mutation PMID:27150158 V127I|A142P False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114249C>T/c.379G>A/p.V127I|chrXI:g.114204C>G/c.424G>C/p.A142P +YKL178C STE3 8407 ste3-V225D V225D amino_acid_mutation PMID:27150158 V225D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.113954A>T/c.674T>A/p.V225D +YKL181W PRS1 8411 prs1-N380T N380T amino_acid_mutation PMID:31611676 N380T False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.108454A>C/c.1139A>C/p.N380T +YKL182W FAS1 8413 fas1-G588A G588A amino_acid_mutation PMID:35511982 G588A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.102433G>C/c.1763G>C/p.G588A +YKL182W FAS1 8414 fas1-H1720Y H1720Y amino_acid_mutation PMID:31611676 H1720Y False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.105828C>T/c.5158C>T/p.H1720Y +YKL182W FAS1 8415 fas1-R1834K R1834K amino_acid_mutation PMID:28281527,PMID:31867212 R1834K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.106171G>A/c.5501G>A/p.R1834K +YKL184W SPE1 8417 spe1-I393F I393F amino_acid_mutation PMID:31611676 I393F False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.97933A>T/c.1177A>T/p.I393F +YKL195W MIA40 8425 MIA40-F334E F334E amino_acid_mutation PMID:19667201 F334E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.76820_76822delTTTinsGAG/c.1000_1002delTTTinsGAG/p.F334E +YKL203C TOR2 8434 TOR2-M2286T M2286T amino_acid_mutation PMID:29895620 M2286T False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.56503A>G/c.6857T>C/p.M2286T +YKL203C TOR2 8443 tor2-D2298E D2298E amino_acid_mutation PMID:16055732 D2298E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.56466A>C/c.6894T>G/p.D2298E +YKL203C TOR2 8444 tor2-I2290S I2290S amino_acid_mutation PMID:22496512 I2290S False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.56491A>C/c.6869T>G/p.I2290S +YKL203C TOR2 8445 tor2-I2290S,K2293I I2290S,K2293I amino_acid_mutation PMID:22496512 I2290S|K2293I False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.56491A>C/c.6869T>G/p.I2290S|chrXI:g.56482T>A/c.6878A>T/p.K2293I +YKL203C TOR2 8446 tor2-S1975I S1975I amino_acid_mutation PMID:35149760 S1975I False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.57436C>A/c.5924G>T/p.S1975I +YKL203C TOR2 8447 tor2-S1975R S1975R amino_acid_mutation PMID:35149760 S1975R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.57435A>C/c.5925T>G/p.S1975R +YKL203C TOR2 8448 tor2-W2041R W2041R amino_acid_mutation PMID:26700129 W2041R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.57239A>T/c.6121T>A/p.W2041R +YKL203C TOR2 8449 tor2-Y2166F Y2166F amino_acid_mutation PMID:22496512 Y2166F False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.56863T>A/c.6497A>T/p.Y2166F +YKL207W EMC3 8454 emc3-K26L K26L amino_acid_mutation PMID:32494008 K26L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.48269_48270delAAinsCT/c.76_77delAAinsCT/p.K26L +YKL209C STE6 8455 STE6-T1025N T1025N amino_acid_mutation PMID:34044821,PMID:37224386 T1025N False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.43222G>T/c.3074C>A/p.T1025N +YKL209C STE6 8456 ste6-S507N S507N amino_acid_mutation PMID:7517933 S507N False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.44776C>T/c.1520G>A/p.S507N +YKL209C STE6 8457 ste6-S507R S507R amino_acid_mutation PMID:7517933 S507R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.44775A>C/c.1521T>G/p.S507R +YKL210W UBA1 8461 uba1-C600A C600A amino_acid_mutation PMID:35294869 C600A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.40960_40961delTGinsGC/c.1798_1799delTGinsGC/p.C600A +YKL210W UBA1 8462 uba1-W928R W928R amino_acid_mutation PMID:30054382 W928R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.41944T>A/c.2782T>A/p.W928R +YKL212W SAC1 8476 sac1-C392S C392S amino_acid_mutation PMID:20389282,PMID:32693712 C392S False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.35716T>A/c.1174T>A/p.C392S +YKL217W JEN1 8482 jen1-D387A D387A amino_acid_mutation PMID:17710650,PMID:28965784 D387A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.23393A>C/c.1160A>C/p.D387A +YKL217W JEN1 8483 jen1-F270P F270P amino_acid_mutation PMID:21651629,PMID:28965784 F270P False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.23041_23042delTTinsCC/c.808_809delTTinsCC/p.F270P +YKL217W JEN1 8484 jen1-H383K H383K amino_acid_mutation PMID:17710650,PMID:28965784 H383K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.23380_23382delCATinsAAG/c.1147_1149delCATinsAAG/p.H383K +YKL217W JEN1 8485 jen1-R188A R188A amino_acid_mutation PMID:21651629,PMID:28965784 R188A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.22795_22796delCGinsGC/c.562_563delCGinsGC/p.R188A +YKR001C VPS1 8493 vps1-A447T A447T amino_acid_mutation PMID:37060997 A447T False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.441384C>T/c.1339G>A/p.A447T +YKR001C VPS1 8494 vps1-E407K E407K amino_acid_mutation PMID:37060997 E407K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.441504C>T/c.1219G>A/p.E407K +YKR001C VPS1 8495 vps1-E461K E461K amino_acid_mutation PMID:25772449,PMID:26478779 E461K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.441342C>T/c.1381G>A/p.E461K +YKR001C VPS1 8496 vps1-G188S G188S amino_acid_mutation PMID:37060997 G188S False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.442161C>T/c.562G>A/p.G188S +YKR001C VPS1 8497 vps1-G315D G315D amino_acid_mutation PMID:37060997 G315D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.441779C>T/c.944G>A/p.G315D +YKR001C VPS1 8498 vps1-G397R G397R amino_acid_mutation PMID:37060997 G397R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.441534C>G/c.1189G>C/p.G397R +YKR001C VPS1 8499 vps1-G436D G436D amino_acid_mutation PMID:30087125 G436D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.441416C>T/c.1307G>A/p.G436D +YKR001C VPS1 8501 vps1-I401L I401L amino_acid_mutation PMID:34656184 I401L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.441522T>G/c.1201A>C/p.I401L +YKR001C VPS1 8502 vps1-I422G I422G amino_acid_mutation PMID:37060997 I422G False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.441458_441459delATinsGG/c.1264_1265delATinsGG/p.I422G +YKR001C VPS1 8503 vps1-I649K I649K amino_acid_mutation PMID:37060997 I649K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.440776_440777delTTinsAG/c.1946_1947delTTinsAG/p.I649K +YKR001C VPS1 8504 vps1-K42A K42A amino_acid_mutation PMID:30087125,PMID:31981262 K42A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.442598_442599delAAinsGC/c.124_125delAAinsGC/p.K42A +YKR001C VPS1 8505 vps1-K506W K506W amino_acid_mutation PMID:37060997 K506W False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.441206_441207delAAinsTG/c.1516_1517delAAinsTG/p.K506W +YKR001C VPS1 8506 vps1-R298L R298L amino_acid_mutation PMID:37060997 R298L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.441830_441831delAGinsCT/c.892_893delAGinsCT/p.R298L +YKR001C VPS1 8507 vps1-R457E,R458E R457E,R458E amino_acid_mutation PMID:25772449 R457E|R458E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.441353_441354delAGinsGA/c.1369_1370delAGinsGA/p.R457E|chrXI:g.441350_441351delAGinsGA/c.1372_1373delAGinsGA/p.R458E +YKR001C VPS1 8508 vps1-R64G R64G amino_acid_mutation PMID:37060997 R64G False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.442533T>C/c.190A>G/p.R64G +YKR001C VPS1 8509 vps1-R684W R684W amino_acid_mutation PMID:37060997 R684W False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.440671_440673delAGAinsTGG/c.2050_2052delAGAinsTGG/p.R684W +YKR001C VPS1 8510 vps1-S43N S43N amino_acid_mutation PMID:37060997 S43N False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.442594_442596delTCGinsAAC/c.127_129delTCGinsAAC/p.S43N +YKR001C VPS1 8511 vps1-S599D S599D amino_acid_mutation PMID:26711254 S599D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.440927_440928delTCinsGA/c.1795_1796delTCinsGA/p.S599D +YKR001C VPS1 8512 vps1-S599V S599V amino_acid_mutation PMID:26711254 S599V False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.440927_440928delTCinsGT/c.1795_1796delTCinsGT/p.S599V +YKR001C VPS1 8513 vps1-T183Q T183Q amino_acid_mutation PMID:37060997 T183Q False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.442175_442176delACinsCA/c.547_548delACinsCA/p.T183Q +YKR001C VPS1 8514 vps1-T63A T63A amino_acid_mutation PMID:37060997 T63A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.442536T>C/c.187A>G/p.T63A +YKR021W ALY1 8537 aly1-K379R K379R amino_acid_mutation PMID:34562280 K379R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.480369A>G/c.1136A>G/p.K379R +YKR024C DBP7 8544 dbp7-K197A K197A amino_acid_mutation PMID:34686656 K197A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.486783_486784delAAinsGC/c.589_590delAAinsGC/p.K197A +YKR026C GCN3 8549 gcn3-N209Y N209Y amino_acid_mutation PMID:14993275 N209Y False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.489031T>A/c.625A>T/p.N209Y +YKR026C GCN3 8550 gcn3-R148K R148K amino_acid_mutation PMID:32554487 R148K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.489213C>T/c.443G>A/p.R148K +YKR026C GCN3 8551 gcn3-T41K T41K amino_acid_mutation PMID:32554487 T41K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.489534G>T/c.122C>A/p.T41K +YKR031C SPO14 8553 spo14-H774P H774P amino_acid_mutation PMID:27799408 H774P False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.504075T>G/c.2321A>C/p.H774P +YKR035W-A DID2 8555 did2-L199D,L202D L199D,L202D amino_acid_mutation PMID:17928861 L199D|L202D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.508533_508535delCTAinsGAC/c.595_597delCTAinsGAC/p.L199D|chrXI:g.508542_508544delTTGinsGAC/c.604_606delTTGinsGAC/p.L202D +YKR035W-A DID2 8556 did2-R198D R198D amino_acid_mutation PMID:17928861 R198D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.508530_508532delAGAinsGAC/c.592_594delAGAinsGAC/p.R198D +YKR038C KAE1 8562 kae1-C342M C342M amino_acid_mutation PMID:36416748 C342M False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512134_512136delTGTinsATG/c.1024_1026delTGTinsATG/p.C342M +YKR038C KAE1 8563 kae1-D236R D236R amino_acid_mutation PMID:19172740 D236R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512453_512454delGAinsCG/c.706_707delGAinsCG/p.D236R +YKR038C KAE1 8564 kae1-D344A D344A amino_acid_mutation PMID:18951093 D344A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512147T>G/c.1031A>C/p.D344A +YKR038C KAE1 8565 kae1-D344L D344L amino_acid_mutation PMID:36416748 D344L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512147_512148delGAinsCT/c.1030_1031delGAinsCT/p.D344L +YKR038C KAE1 8566 kae1-E213R E213R amino_acid_mutation PMID:18951093 E213R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512522_512523delGAinsAG/c.637_638delGAinsAG/p.E213R +YKR038C KAE1 8567 kae1-E292R E292R amino_acid_mutation PMID:19172740 E292R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512285_512286delGAinsAG/c.874_875delGAinsAG/p.E292R +YKR038C KAE1 8568 kae1-E292R,E295K E292R,E295K amino_acid_mutation PMID:19172740 E292R|E295K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512285_512286delGAinsAG/c.874_875delGAinsAG/p.E292R|chrXI:g.512277C>T/c.883G>A/p.E295K +YKR038C KAE1 8569 kae1-E295K E295K amino_acid_mutation PMID:19172740 E295K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512277C>T/c.883G>A/p.E295K +YKR038C KAE1 8570 kae1-G165E G165E amino_acid_mutation PMID:36416748 G165E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512665_512666delGTinsAG/c.494_495delGTinsAG/p.G165E +YKR038C KAE1 8571 kae1-G166E G166E amino_acid_mutation PMID:36416748 G166E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512663C>T/c.497G>A/p.G166E +YKR038C KAE1 8572 kae1-G190E G190E amino_acid_mutation PMID:18951093 G190E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512590_512591delGTinsAG/c.569_570delGTinsAG/p.G190E +YKR038C KAE1 8573 kae1-G190K G190K amino_acid_mutation PMID:18951093 G190K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512590_512592delGGTinsAAG/c.568_570delGGTinsAAG/p.G190K +YKR038C KAE1 8574 kae1-G310E G310E amino_acid_mutation PMID:36416748 G310E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512230_512231delGCinsAG/c.929_930delGCinsAG/p.G310E +YKR038C KAE1 8575 kae1-H141A H141A amino_acid_mutation PMID:18951093 H141A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512738_512739delCAinsGC/c.421_422delCAinsGC/p.H141A +YKR038C KAE1 8576 kae1-H141A,H145A H141A,H145A amino_acid_mutation PMID:18951093,PMID:21183954 H141A|H145A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512738_512739delCAinsGC/c.421_422delCAinsGC/p.H141A|chrXI:g.512726_512727delCAinsGC/c.433_434delCAinsGC/p.H145A +YKR038C KAE1 8577 kae1-H145A H145A amino_acid_mutation PMID:18951093 H145A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512726_512727delCAinsGC/c.433_434delCAinsGC/p.H145A +YKR038C KAE1 8578 kae1-I123R I123R amino_acid_mutation PMID:18951093 I123R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512791_512792delTCinsGG/c.368_369delTCinsGG/p.I123R +YKR038C KAE1 8579 kae1-I308D I308D amino_acid_mutation PMID:36416748 I308D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512237_512238delATinsGA/c.922_923delATinsGA/p.I308D +YKR038C KAE1 8580 kae1-I308E I308E amino_acid_mutation PMID:36416748 I308E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512236_512238delATCinsGAG/c.922_924delATCinsGAG/p.I308E +YKR038C KAE1 8581 kae1-I308N I308N amino_acid_mutation PMID:36416748 I308N False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512237A>T/c.923T>A/p.I308N +YKR038C KAE1 8582 kae1-I308Q I308Q amino_acid_mutation PMID:36416748 I308Q False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512236_512238delATCinsCAA/c.922_924delATCinsCAA/p.I308Q +YKR038C KAE1 8583 kae1-K27A K27A amino_acid_mutation PMID:18951093,PMID:36416748 K27A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.513080_513081delAAinsGC/c.79_80delAAinsGC/p.K27A +YKR038C KAE1 8584 kae1-K27D K27D amino_acid_mutation PMID:36416748 K27D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.513079_513081delAAAinsGAC/c.79_81delAAAinsGAC/p.K27D +YKR038C KAE1 8585 kae1-K27E K27E amino_acid_mutation PMID:36416748 K27E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.513081T>C/c.79A>G/p.K27E +YKR038C KAE1 8586 kae1-K27L K27L amino_acid_mutation PMID:36416748 K27L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.513080_513081delAAinsCT/c.79_80delAAinsCT/p.K27L +YKR038C KAE1 8587 kae1-K27N K27N amino_acid_mutation PMID:36416748 K27N False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.513079T>G/c.81A>C/p.K27N +YKR038C KAE1 8588 kae1-K27Q K27Q amino_acid_mutation PMID:36416748 K27Q False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.513081T>G/c.79A>C/p.K27Q +YKR038C KAE1 8589 kae1-K27R K27R amino_acid_mutation PMID:36416748 K27R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.513080T>C/c.80A>G/p.K27R +YKR038C KAE1 8590 kae1-N167A N167A amino_acid_mutation PMID:36416748 N167A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512660_512661delAAinsGC/c.499_500delAAinsGC/p.N167A +YKR038C KAE1 8591 kae1-N315Y N315Y amino_acid_mutation PMID:18951093 N315Y False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512217T>A/c.943A>T/p.N315Y +YKR038C KAE1 8592 kae1-N345L N345L amino_acid_mutation PMID:36416748 N345L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512144_512145delAAinsCT/c.1033_1034delAAinsCT/p.N345L +YKR038C KAE1 8593 kae1-Q319A Q319A amino_acid_mutation PMID:36416748 Q319A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512204_512205delCAinsGC/c.955_956delCAinsGC/p.Q319A +YKR038C KAE1 8594 kae1-R126A R126A amino_acid_mutation PMID:18951093 R126A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512783_512784delAGinsGC/c.376_377delAGinsGC/p.R126A +YKR038C KAE1 8595 kae1-R195D R195D amino_acid_mutation PMID:33277478 R195D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512575_512577delAGAinsGAC/c.583_585delAGAinsGAC/p.R195D +YKR038C KAE1 8596 kae1-R198D R198D amino_acid_mutation PMID:33277478 R198D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512566_512568delAGAinsGAC/c.592_594delAGAinsGAC/p.R198D +YKR038C KAE1 8597 kae1-R198L R198L amino_acid_mutation PMID:36416748 R198L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512567_512568delAGinsCT/c.592_593delAGinsCT/p.R198L +YKR038C KAE1 8598 kae1-R376Q R376Q amino_acid_mutation PMID:28272532 R376Q False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512033_512034delAGinsCA/c.1126_1127delAGinsCA/p.R376Q +YKR038C KAE1 8599 kae1-R59A R59A amino_acid_mutation PMID:36416748 R59A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512984_512985delAGinsGC/c.175_176delAGinsGC/p.R59A +YKR038C KAE1 8600 kae1-S164A S164A amino_acid_mutation PMID:36416748 S164A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512669_512670delAGinsGC/c.490_491delAGinsGC/p.S164A +YKR038C KAE1 8601 kae1-T168L T168L amino_acid_mutation PMID:36416748 T168L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512657_512658delACinsCT/c.502_503delACinsCT/p.T168L +YKR038C KAE1 8602 kae1-T168R T168R amino_acid_mutation PMID:36416748 T168R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512657G>C/c.503C>G/p.T168R +YKR038C KAE1 8603 kae1-T369A T369A amino_acid_mutation PMID:18951093 T369A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512055T>C/c.1105A>G/p.T369A +YKR038C KAE1 8604 kae1-T377A T377A amino_acid_mutation PMID:18951093 T377A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512031T>C/c.1129A>G/p.T377A +YKR038C KAE1 8605 kae1-T377E T377E amino_acid_mutation PMID:18951093 T377E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512029_512031delACCinsGAG/c.1129_1131delACCinsGAG/p.T377E +YKR038C KAE1 8606 kae1-V163D V163D amino_acid_mutation PMID:36416748 V163D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512671_512672delTAinsAC/c.488_489delTAinsAC/p.V163D +YKR038C KAE1 8607 kae1-V309D V309D amino_acid_mutation PMID:36416748 V309D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512233_512234delTAinsAC/c.926_927delTAinsAC/p.V309D +YKR038C KAE1 8608 kae1-V309N V309N amino_acid_mutation PMID:36416748 V309N False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512233_512235delGTAinsAAC/c.925_927delGTAinsAAC/p.V309N +YKR038C KAE1 8609 kae1-V309Q V309Q amino_acid_mutation PMID:36416748 V309Q False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512234_512235delGTinsCA/c.925_926delGTinsCA/p.V309Q +YKR038C KAE1 8610 kae1-V312D V312D amino_acid_mutation PMID:36416748 V312D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512243A>T/c.935T>A/p.V312D +YKR038C KAE1 8611 kae1-Y162F Y162F amino_acid_mutation PMID:36416748 Y162F False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512675T>A/c.485A>T/p.Y162F +YKR039W GAP1 8616 gap1-K9R,K16R K9R,K16R amino_acid_mutation PMID:16885415 K9R|K16R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.515088A>G/c.26A>G/p.K9R|chrXI:g.515109A>G/c.47A>G/p.K16R +YKR054C DYN1 8623 dyn1-D2439K D2439K amino_acid_mutation PMID:31364990 D2439K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.540609_540611delGATinsAAG/c.7315_7317delGATinsAAG/p.D2439K +YKR054C DYN1 8624 dyn1-D2868K D2868K amino_acid_mutation PMID:32341548 D2868K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.539322_539324delGATinsAAG/c.8602_8604delGATinsAAG/p.D2868K +YKR054C DYN1 8625 dyn1-E109I E109I amino_acid_mutation PMID:31364990 E109I False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.547600_547601delGAinsAT/c.325_326delGAinsAT/p.E109I +YKR054C DYN1 8626 dyn1-E2488Q E2488Q amino_acid_mutation PMID:34015309,PMID:34994688 E2488Q False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.540464C>G/c.7462G>C/p.E2488Q +YKR054C DYN1 8627 dyn1-E2488Q,E2819Q E2488Q,E2819Q amino_acid_mutation PMID:34015309 E2488Q|E2819Q False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.540464C>G/c.7462G>C/p.E2488Q|chrXI:g.539471C>G/c.8455G>C/p.E2819Q +YKR054C DYN1 8628 dyn1-E2819Q E2819Q amino_acid_mutation PMID:34015309 E2819Q False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.539471C>G/c.8455G>C/p.E2819Q +YKR054C DYN1 8629 dyn1-E545V E545V amino_acid_mutation PMID:31364990 E545V False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.546292T>A/c.1634A>T/p.E545V +YKR054C DYN1 8630 dyn1-G3575E G3575E amino_acid_mutation PMID:35283819 G3575E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.537202C>T/c.10724G>A/p.G3575E +YKR054C DYN1 8631 dyn1-H3639P H3639P amino_acid_mutation PMID:31364990 H3639P False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.537010T>G/c.10916A>C/p.H3639P +YKR054C DYN1 8632 dyn1-I554M I554M amino_acid_mutation PMID:31364990 I554M False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.546264T>C/c.1662A>G/p.I554M +YKR054C DYN1 8633 dyn1-K1475D,D2868K K1475D,D2868K amino_acid_mutation PMID:32341548 K1475D|D2868K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.543501_543503delAAAinsGAC/c.4423_4425delAAAinsGAC/p.K1475D|chrXI:g.539322_539324delGATinsAAG/c.8602_8604delGATinsAAG/p.D2868K +YKR054C DYN1 8634 dyn1-K1475D,K1517A,D2868K K1475D,K1517A,D2868K amino_acid_mutation PMID:32341548 K1475D|K1517A|D2868K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.543501_543503delAAAinsGAC/c.4423_4425delAAAinsGAC/p.K1475D|chrXI:g.543376_543377delAAinsGC/c.4549_4550delAAinsGC/p.K1517A|chrXI:g.539322_539324delGATinsAAG/c.8602_8604delGATinsAAG/p.D2868K +YKR054C DYN1 8635 dyn1-K1475D,K1517D,D2868K K1475D,K1517D,D2868K amino_acid_mutation PMID:32341548 K1475D|K1517D|D2868K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.543501_543503delAAAinsGAC/c.4423_4425delAAAinsGAC/p.K1475D|chrXI:g.543375_543377delAAGinsGAC/c.4549_4551delAAGinsGAC/p.K1517D|chrXI:g.539322_539324delGATinsAAG/c.8602_8604delGATinsAAG/p.D2868K +YKR054C DYN1 8636 dyn1-K1475E K1475E amino_acid_mutation PMID:32341548 K1475E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.543503T>C/c.4423A>G/p.K1475E +YKR054C DYN1 8637 dyn1-K1475E,K1517E K1475E,K1517E amino_acid_mutation PMID:32341548 K1475E|K1517E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.543503T>C/c.4423A>G/p.K1475E|chrXI:g.543377T>C/c.4549A>G/p.K1517E +YKR054C DYN1 8638 dyn1-K1475Q K1475Q amino_acid_mutation PMID:31364990 K1475Q False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.543503T>G/c.4423A>C/p.K1475Q +YKR054C DYN1 8639 dyn1-K1517E K1517E amino_acid_mutation PMID:32341548 K1517E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.543377T>C/c.4549A>G/p.K1517E +YKR054C DYN1 8640 dyn1-K3160Q K3160Q amino_acid_mutation PMID:31364990 K3160Q False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.538448T>G/c.9478A>C/p.K3160Q +YKR054C DYN1 8641 dyn1-K540C K540C amino_acid_mutation PMID:31364990 K540C False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.546306_546308delAAAinsTGT/c.1618_1620delAAAinsTGT/p.K540C +YKR054C DYN1 8642 dyn1-L213I L213I amino_acid_mutation PMID:31364990 L213I False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.547287_547289delTTGinsATC/c.637_639delTTGinsATC/p.L213I +YKR054C DYN1 8643 dyn1-L2557M L2557M amino_acid_mutation PMID:31364990 L2557M False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.540255_540257delCTTinsATG/c.7669_7671delCTTinsATG/p.L2557M +YKR054C DYN1 8644 dyn1-N283R N283R amino_acid_mutation PMID:31364990 N283R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.547077_547078delACinsGG/c.848_849delACinsGG/p.N283R +YKR054C DYN1 8645 dyn1-R1852C R1852C amino_acid_mutation PMID:31364990 R1852C False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.542370_542372delAGGinsTGT/c.5554_5556delAGGinsTGT/p.R1852C +YKR054C DYN1 8646 dyn1-R241L R241L amino_acid_mutation PMID:31364990 R241L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.547204_547205delAGinsCT/c.721_722delAGinsCT/p.R241L +YKR054C DYN1 8647 dyn1-R2543K R2543K amino_acid_mutation PMID:31364990 R2543K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.540298C>T/c.7628G>A/p.R2543K +YKR054C DYN1 8648 dyn1-R3152N R3152N amino_acid_mutation PMID:31364990 R3152N False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.538470_538471delGAinsAC/c.9455_9456delGAinsAC/p.R3152N +YKR054C DYN1 8649 dyn1-R3201N R3201N amino_acid_mutation PMID:31364990 R3201N False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.538323_538324delGGinsAC/c.9602_9603delGGinsAC/p.R3201N +YKR054C DYN1 8650 dyn1-W612C W612C amino_acid_mutation PMID:31364990 W612C False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.546090C>A/c.1836G>T/p.W612C +YKR055W RHO4 8652 rho4-Q131L Q131L amino_acid_mutation PMID:23264647 Q131L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.548607A>T/c.392A>T/p.Q131L +YKR059W TIF1 8654 tif1-A79S A79S amino_acid_mutation PMID:32430798 A79S False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.555221G>T/c.235G>T/p.A79S +YKR059W TIF1 8655 tif1-A97V A97V amino_acid_mutation PMID:26122911 A97V False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.555276C>T/c.290C>T/p.A97V +YKR059W TIF1 8656 tif1-Q186C,G370C Q186C,G370C amino_acid_mutation PMID:35689631 Q186C|G370C False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.555426_555428delCAGinsTGT/c.556_558delCAGinsTGT/p.Q186C|chrXI:g.556094G>T/c.1108G>T/p.G370C +YKR066C CCP1 8675 ccp1-G172S G172S amino_acid_mutation PMID:34362905 G172S False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.566685C>T/c.514G>A/p.G172S +YKR066C CCP1 8676 ccp1-N262K N262K amino_acid_mutation PMID:31611676 N262K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.566413G>C/c.786C>G/p.N262K +YKR071C DRE2 8686 dre2-C252A C252A amino_acid_mutation PMID:27672211 C252A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.575226_575227delTGinsGC/c.754_755delTGinsGC/p.C252A +YKR071C DRE2 8687 dre2-C263A C263A amino_acid_mutation PMID:27672211 C263A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.575193_575194delTGinsGC/c.787_788delTGinsGC/p.C263A +YKR071C DRE2 8688 dre2-C266A C266A amino_acid_mutation PMID:27672211 C266A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.575184_575185delTGinsGC/c.796_797delTGinsGC/p.C266A +YKR071C DRE2 8689 dre2-C268A C268A amino_acid_mutation PMID:27672211 C268A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.575178_575179delTGinsGC/c.802_803delTGinsGC/p.C268A +YKR071C DRE2 8690 dre2-C311A C311A amino_acid_mutation PMID:27672211 C311A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.575049_575050delTGinsGC/c.931_932delTGinsGC/p.C311A +YKR071C DRE2 8691 dre2-C314A C314A amino_acid_mutation PMID:27672211 C314A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.575040_575041delTGinsGC/c.940_941delTGinsGC/p.C314A +YKR071C DRE2 8692 dre2-C322A C322A amino_acid_mutation PMID:27672211 C322A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.575016_575017delTGinsGC/c.964_965delTGinsGC/p.C322A +YKR071C DRE2 8693 dre2-C325A C325A amino_acid_mutation PMID:27672211 C325A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.575007_575008delTGinsGC/c.973_974delTGinsGC/p.C325A +YKR071C DRE2 8694 dre2-F36I,K153STOP F36I,K153STOP amino_acid_deletion_and_mutation PMID:34009341 F36I|K153STOP False F36I,K153* amino_acid_mutation:single_aa|nonsense_mutation:stop_codon_text amino_acid_deletion_and_mutation chrXI:g.575875A>T/c.106T>A/p.F36I|chrXI:g.575524T>A/c.457A>T/p.K153* +YKR072C SIS2 8696 sis2-A385V A385V amino_acid_mutation PMID:36564894 A385V False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.576970G>A/c.1154C>T/p.A385V +YKR072C SIS2 8697 sis2-F97A F97A amino_acid_mutation PMID:35811492 F97A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.577834_577835delTTinsGC/c.289_290delTTinsGC/p.F97A +YKR072C SIS2 8698 sis2-F97Y F97Y amino_acid_mutation PMID:35811492 F97Y False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.577834A>T/c.290T>A/p.F97Y +YKR072C SIS2 8699 sis2-K90E,R91E K90E,R91E amino_acid_mutation PMID:35811492 K90E|R91E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.577856T>C/c.268A>G/p.K90E|chrXI:g.577852_577853delAGinsGA/c.271_272delAGinsGA/p.R91E +YKR072C SIS2 8700 sis2-K90Q,R91Q K90Q,R91Q amino_acid_mutation PMID:35811492 K90Q|R91Q False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.577856T>G/c.268A>C/p.K90Q|chrXI:g.577852_577853delAGinsCA/c.271_272delAGinsCA/p.R91Q +YKR072C SIS2 8701 sis2-Q102A,Q103A,Q104A Q102A,Q103A,Q104A amino_acid_mutation PMID:35811492 Q102A|Q103A|Q104A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.577819_577820delCAinsGC/c.304_305delCAinsGC/p.Q102A|chrXI:g.577816_577817delCAinsGC/c.307_308delCAinsGC/p.Q103A|chrXI:g.577813_577814delCAinsGC/c.310_311delCAinsGC/p.Q104A +YKR072C SIS2 8702 sis2-T302P T302P amino_acid_mutation PMID:36564894 T302P False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.577220T>G/c.904A>C/p.T302P +YKR072C SIS2 8703 sis2-T96A,S98A T96A,S98A amino_acid_mutation PMID:35811492 T96A|S98A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.577838T>C/c.286A>G/p.T96A|chrXI:g.577831_577832delAGinsGC/c.292_293delAGinsGC/p.S98A +YKR072C SIS2 8704 sis2-T96E,F97Y,S98D T96E,F97Y,S98D amino_acid_mutation PMID:35811492 T96E|F97Y|S98D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.577836_577838delACTinsGAG/c.286_288delACTinsGAG/p.T96E|chrXI:g.577834A>T/c.290T>A/p.F97Y|chrXI:g.577831_577832delAGinsGA/c.292_293delAGinsGA/p.S98D +YKR072C SIS2 8705 sis2-T96E,S98D T96E,S98D amino_acid_mutation PMID:35811492 T96E|S98D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.577836_577838delACTinsGAG/c.286_288delACTinsGAG/p.T96E|chrXI:g.577831_577832delAGinsGA/c.292_293delAGinsGA/p.S98D +YKR072C SIS2 8706 sis2-V95A V95A amino_acid_mutation PMID:35811492 V95A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.577840A>G/c.284T>C/p.V95A +YKR072C SIS2 8707 sis2-V95S V95S amino_acid_mutation PMID:35811492 V95S False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.577840_577841delGTinsAG/c.283_284delGTinsAG/p.V95S +YKR072C SIS2 8708 sis2-V95S,T96A,F97A,S98A V95S,T96A,F97A,S98A amino_acid_mutation PMID:35811492 V95S|T96A|F97A|S98A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.577840_577841delGTinsAG/c.283_284delGTinsAG/p.V95S|chrXI:g.577838T>C/c.286A>G/p.T96A|chrXI:g.577834_577835delTTinsGC/c.289_290delTTinsGC/p.F97A|chrXI:g.577831_577832delAGinsGC/c.292_293delAGinsGC/p.S98A +YKR079C TRZ1 8721 trz1-T513I T513I amino_acid_mutation PMID:23849775 T513I False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.587768G>A/c.1538C>T/p.T513I +YKR081C RPF2 8724 rpf2-G145S G145S amino_acid_mutation PMID:35283819 G145S False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.592108C>T/c.433G>A/p.G145S +YKR086W PRP16 8732 prp16-A84V A84V amino_acid_mutation PMID:35283819 A84V False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.600107C>T/c.251C>T/p.A84V +YKR086W PRP16 8733 prp16-D473E D473E amino_acid_mutation PMID:25428373 D473E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.601275T>G/c.1419T>G/p.D473E +YKR086W PRP16 8734 prp16-Q685H Q685H amino_acid_mutation PMID:25428373 Q685H False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.601911A>T/c.2055A>T/p.Q685H +YKR086W PRP16 8735 prp16-R686I R686I amino_acid_mutation PMID:25428373,PMID:33547186 R686I False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.601913G>T/c.2057G>T/p.R686I +YKR088C TVP38 8737 tvp38-E332V E332V amino_acid_mutation PMID:31611676 E332V False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.604424T>A/c.995A>T/p.E332V +YKR095W-A PCC1 8748 pcc1-A83R A83R amino_acid_mutation PMID:18951093 A83R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.626185_626186delGCinsCG/c.247_248delGCinsCG/p.A83R +YKR095W-A PCC1 8749 pcc1-D35R D35R amino_acid_mutation PMID:18951093 D35R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.626041_626042delGAinsCG/c.103_104delGAinsCG/p.D35R +YKR095W-A PCC1 8750 pcc1-R67D R67D amino_acid_mutation PMID:33277478 R67D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.626137_626139delCGAinsGAC/c.199_201delCGAinsGAC/p.R67D +YKR095W-A PCC1 8751 pcc1-T79R T79R amino_acid_mutation PMID:18951093 T79R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.625962_625963delCTinsGG/c.236_237delCTinsGG/p.T79R +YKR101W SIR1 8754 sir1-W251* W251* partial_amino_acid_deletion PMID:33713126 W251* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXI:g.641291G>A/c.752G>A/p.W251* +YKR103W NFT1 8755 nft1-T729M T729M amino_acid_mutation PMID:35283819 T729M False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.655265C>T/c.2186C>T/p.T729M +YLL001W DNM1 8763 DNM1-S42N S42N amino_acid_mutation PMID:9786946 S42N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.148013_148014delTCinsAA/c.124_125delTCinsAA/p.S42N +YLL001W DNM1 8764 DNM1-T62A T62A amino_acid_mutation PMID:9786946 T62A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.148073A>G/c.184A>G/p.T62A +YLL001W DNM1 8773 dnm1-A430D A430D amino_acid_mutation PMID:34157431 A430D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.149178_149179delCGinsAC/c.1289_1290delCGinsAC/p.A430D +YLL001W DNM1 8774 dnm1-C481F C481F amino_acid_mutation PMID:34157431 C481F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.149331G>T/c.1442G>T/p.C481F +YLL001W DNM1 8775 dnm1-G397D G397D amino_acid_mutation PMID:34157431 G397D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.149079G>A/c.1190G>A/p.G397D +YLL001W DNM1 8776 dnm1-G436D G436D amino_acid_mutation PMID:21927001 G436D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.149196G>A/c.1307G>A/p.G436D +YLL001W DNM1 8777 dnm1-K41A K41A amino_acid_mutation PMID:27328748,PMID:31981262,PMID:9786946 K41A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.148010_148011delAAinsGC/c.121_122delAAinsGC/p.K41A +YLL001W DNM1 8778 dnm1-R438C R438C amino_acid_mutation PMID:34157431 R438C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.149201C>T/c.1312C>T/p.R438C +YLL001W DNM1 8779 dnm1-S39G S39G amino_acid_mutation PMID:27328748 S39G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.148004_148005delTCinsGG/c.115_116delTCinsGG/p.S39G +YLL002W RTT109 8780 rtt109-D89A D89A amino_acid_mutation PMID:17272723 D89A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.146556A>C/c.266A>C/p.D89A +YLL002W RTT109 8781 rtt109-K290Q K290Q amino_acid_mutation PMID:23457193,PMID:35977387 K290Q False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.147158A>C/c.868A>C/p.K290Q +YLL003W SFI1 8788 sfi1-N218D,D242A N218D,D242A amino_acid_mutation PMID:33523111 N218D|D242A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.143852A>G/c.652A>G/p.N218D|chrXII:g.143925A>C/c.725A>C/p.D242A +YLL003W SFI1 8789 sfi1-P185T P185T amino_acid_mutation PMID:33523111 P185T False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.143753C>A/c.553C>A/p.P185T +YLL003W SFI1 8790 sfi1-P185T,N218D,D242A P185T,N218D,D242A amino_acid_mutation PMID:33523111 P185T|N218D|D242A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.143753C>A/c.553C>A/p.P185T|chrXII:g.143852A>G/c.652A>G/p.N218D|chrXII:g.143925A>C/c.725A>C/p.D242A +YLL008W DRS1 8801 drs1-Q258A Q258A amino_acid_mutation PMID:16449635 Q258A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.132468_132469delCAinsGC/c.772_773delCAinsGC/p.Q258A +YLL015W BPT1 8805 bpt1-R406G R406G amino_acid_mutation PMID:35181296 R406G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.117647C>G/c.1216C>G/p.R406G +YLL015W BPT1 8806 bpt1-T575G T575G amino_acid_mutation PMID:35181296 T575G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.118154_118155delACinsGG/c.1723_1724delACinsGG/p.T575G +YLL019C KNS1 8810 kns1-D440A D440A amino_acid_mutation PMID:32449834 D440A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.106581T>G/c.1319A>C/p.D440A +YLL026W HSP104 8828 hsp104-A201V A201V amino_acid_mutation PMID:19139266 A201V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89224C>T/c.602C>T/p.A201V +YLL026W HSP104 8829 hsp104-A220T A220T amino_acid_mutation PMID:17367387 A220T False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89280G>A/c.658G>A/p.A220T +YLL026W HSP104 8830 hsp104-A22V A22V amino_acid_mutation PMID:19139266 A22V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.88687C>T/c.65C>T/p.A22V +YLL026W HSP104 8831 hsp104-A298V A298V amino_acid_mutation PMID:19139266 A298V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89515C>T/c.893C>T/p.A298V +YLL026W HSP104 8832 hsp104-A341V A341V amino_acid_mutation PMID:19139266 A341V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89644C>T/c.1022C>T/p.A341V +YLL026W HSP104 8833 hsp104-A37T A37T amino_acid_mutation PMID:16582428 A37T False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.88731G>A/c.109G>A/p.A37T +YLL026W HSP104 8834 hsp104-A392T A392T amino_acid_mutation PMID:19139266 A392T False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89796G>A/c.1174G>A/p.A392T +YLL026W HSP104 8835 hsp104-A430V A430V amino_acid_mutation PMID:19139266 A430V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89911C>T/c.1289C>T/p.A430V +YLL026W HSP104 8836 hsp104-A437W A437W amino_acid_mutation PMID:24439375,PMID:25062688,PMID:35252808 A437W False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89931_89933delGCCinsTGG/c.1309_1311delGCCinsTGG/p.A437W +YLL026W HSP104 8837 hsp104-A448F A448F amino_acid_mutation PMID:34010483 A448F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89964_89965delGCinsTT/c.1342_1343delGCinsTT/p.A448F +YLL026W HSP104 8838 hsp104-A503G A503G amino_acid_mutation PMID:35252808 A503G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90130C>G/c.1508C>G/p.A503G +YLL026W HSP104 8839 hsp104-A503S A503S amino_acid_mutation PMID:25062688,PMID:35252808 A503S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90129G>T/c.1507G>T/p.A503S +YLL026W HSP104 8840 hsp104-A503V A503V amino_acid_mutation PMID:19139266,PMID:24439375,PMID:25062688,PMID:35252808 A503V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90130C>T/c.1508C>T/p.A503V +YLL026W HSP104 8841 hsp104-A503V,E648A A503V,E648A amino_acid_mutation PMID:32155221 A503V|E648A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90130C>T/c.1508C>T/p.A503V|chrXII:g.90565A>C/c.1943A>C/p.E648A +YLL026W HSP104 8842 hsp104-A503V,K649A A503V,K649A amino_acid_mutation PMID:32155221 A503V|K649A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90130C>T/c.1508C>T/p.A503V|chrXII:g.90567_90568delAAinsGC/c.1945_1946delAAinsGC/p.K649A +YLL026W HSP104 8843 hsp104-A503V,Y650A A503V,Y650A amino_acid_mutation PMID:32155221 A503V|Y650A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90130C>T/c.1508C>T/p.A503V|chrXII:g.90570_90571delTAinsGC/c.1948_1949delTAinsGC/p.Y650A +YLL026W HSP104 8844 hsp104-A509D A509D amino_acid_mutation PMID:19139266 A509D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90148C>A/c.1526C>A/p.A509D +YLL026W HSP104 8845 hsp104-A531V A531V amino_acid_mutation PMID:19139266 A531V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90214C>T/c.1592C>T/p.A531V +YLL026W HSP104 8846 hsp104-C209Y C209Y amino_acid_mutation PMID:17367387 C209Y False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89248G>A/c.626G>A/p.C209Y +YLL026W HSP104 8847 hsp104-D108A D108A amino_acid_mutation PMID:19139266 D108A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.88945A>C/c.323A>C/p.D108A +YLL026W HSP104 8848 hsp104-D184N D184N amino_acid_mutation PMID:19139266 D184N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89172G>A/c.550G>A/p.D184N +YLL026W HSP104 8849 hsp104-D184Y D184Y amino_acid_mutation PMID:19139266 D184Y False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89172G>T/c.550G>T/p.D184Y +YLL026W HSP104 8850 hsp104-D484K,F508A D484K,F508A amino_acid_mutation PMID:31026451,PMID:34873058 D484K|F508A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90072_90074delGATinsAAG/c.1450_1452delGATinsAAG/p.D484K|chrXII:g.90144_90145delTTinsGC/c.1522_1523delTTinsGC/p.F508A +YLL026W HSP104 8851 hsp104-D498V D498V amino_acid_mutation PMID:24439375 D498V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90115A>T/c.1493A>T/p.D498V +YLL026W HSP104 8853 hsp104-E285A E285A amino_acid_mutation PMID:19139266 E285A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89476A>C/c.854A>C/p.E285A +YLL026W HSP104 8854 hsp104-F508A F508A amino_acid_mutation PMID:31026451 F508A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90144_90145delTTinsGC/c.1522_1523delTTinsGC/p.F508A +YLL026W HSP104 8855 hsp104-F7A,L15A F7A,L15A amino_acid_mutation PMID:35305079 F7A|L15A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.88641_88642delTTinsGC/c.19_20delTTinsGC/p.F7A|chrXII:g.88665_88666delTTinsGC/c.43_44delTTinsGC/p.L15A +YLL026W HSP104 8856 hsp104-F7A,L15A,L96A,I111A F7A,L15A,L96A,I111A amino_acid_mutation PMID:35305079 F7A|L15A|L96A|I111A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.88641_88642delTTinsGC/c.19_20delTTinsGC/p.F7A|chrXII:g.88665_88666delTTinsGC/c.43_44delTTinsGC/p.L15A|chrXII:g.88908_88909delCTinsGC/c.286_287delCTinsGC/p.L96A|chrXII:g.88953_88954delATinsGC/c.331_332delATinsGC/p.I111A +YLL026W HSP104 8857 hsp104-F7A,L15A,L96A,I116A F7A,L15A,L96A,I116A amino_acid_mutation PMID:35305079 F7A|L15A|L96A|I116A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.88641_88642delTTinsGC/c.19_20delTTinsGC/p.F7A|chrXII:g.88665_88666delTTinsGC/c.43_44delTTinsGC/p.L15A|chrXII:g.88908_88909delCTinsGC/c.286_287delCTinsGC/p.L96A|chrXII:g.88968_88969delATinsGC/c.346_347delATinsGC/p.I116A +YLL026W HSP104 8858 hsp104-G212D G212D amino_acid_mutation PMID:17367387 G212D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89257G>A/c.635G>A/p.G212D +YLL026W HSP104 8859 hsp104-G215V G215V amino_acid_mutation PMID:1896074 G215V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89266G>T/c.644G>T/p.G215V +YLL026W HSP104 8860 hsp104-G217V G217V amino_acid_mutation PMID:19139266 G217V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89272G>T/c.650G>T/p.G217V +YLL026W HSP104 8861 hsp104-G259D G259D amino_acid_mutation PMID:17367387 G259D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89398G>A/c.776G>A/p.G259D +YLL026W HSP104 8862 hsp104-G364N G364N amino_acid_mutation PMID:19139266 G364N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89712_89713delGGinsAA/c.1090_1091delGGinsAA/p.G364N +YLL026W HSP104 8863 hsp104-G617V G617V amino_acid_mutation PMID:1896074 G617V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90472G>T/c.1850G>T/p.G617V +YLL026W HSP104 8864 hsp104-G661D G661D amino_acid_mutation PMID:17367387 G661D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90604G>A/c.1982G>A/p.G661D +YLL026W HSP104 8865 hsp104-H25Y H25Y amino_acid_mutation PMID:16582428 H25Y False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.88695C>T/c.73C>T/p.H25Y +YLL026W HSP104 8866 hsp104-I424F I424F amino_acid_mutation PMID:34010483 I424F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89892A>T/c.1270A>T/p.I424F +YLL026W HSP104 8867 hsp104-I428F I428F amino_acid_mutation PMID:34010483 I428F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89904_89906delATAinsTTT/c.1282_1284delATAinsTTT/p.I428F +YLL026W HSP104 8868 hsp104-I513F I513F amino_acid_mutation PMID:34010483 I513F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90159A>T/c.1537A>T/p.I513F +YLL026W HSP104 8869 hsp104-K20E K20E amino_acid_mutation PMID:19139266 K20E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.88680A>G/c.58A>G/p.K20E +YLL026W HSP104 8870 hsp104-K218T K218T amino_acid_mutation PMID:1896074,PMID:19139266 K218T False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89275A>C/c.653A>C/p.K218T +YLL026W HSP104 8871 hsp104-K620R K620R amino_acid_mutation PMID:1896074 K620R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90481A>G/c.1859A>G/p.K620R +YLL026W HSP104 8872 hsp104-K620T K620T amino_acid_mutation PMID:1896074 K620T False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90481A>C/c.1859A>C/p.K620T +YLL026W HSP104 8873 hsp104-L12A,L15A,L96A,I111A,I116A L12A,L15A,L96A,I111A,I116A amino_acid_mutation PMID:35305079 L12A|L15A|L96A|I111A|I116A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.88656_88657delCTinsGC/c.34_35delCTinsGC/p.L12A|chrXII:g.88665_88666delTTinsGC/c.43_44delTTinsGC/p.L15A|chrXII:g.88908_88909delCTinsGC/c.286_287delCTinsGC/p.L96A|chrXII:g.88953_88954delATinsGC/c.331_332delATinsGC/p.I111A|chrXII:g.88968_88969delATinsGC/c.346_347delATinsGC/p.I116A +YLL026W HSP104 8874 hsp104-L15D,L96R L15D,L96R amino_acid_mutation PMID:35305079 L15D|L96R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.88665_88667delTTGinsGAC/c.43_45delTTGinsGAC/p.L15D|chrXII:g.88909T>G/c.287T>G/p.L96R +YLL026W HSP104 8875 hsp104-L15Q L15Q amino_acid_mutation PMID:19139266 L15Q False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.88665_88666delTTinsCA/c.43_44delTTinsCA/p.L15Q +YLL026W HSP104 8876 hsp104-L414F L414F amino_acid_mutation PMID:34010483 L414F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89864G>T/c.1242G>T/p.L414F +YLL026W HSP104 8877 hsp104-L421F L421F amino_acid_mutation PMID:34010483 L421F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89885G>T/c.1263G>T/p.L421F +YLL026W HSP104 8878 hsp104-L431F L431F amino_acid_mutation PMID:34010483 L431F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89913_89915delCTAinsTTT/c.1291_1293delCTAinsTTT/p.L431F +YLL026W HSP104 8879 hsp104-L445F L445F amino_acid_mutation PMID:34010483 L445F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89957A>T/c.1335A>T/p.L445F +YLL026W HSP104 8880 hsp104-L455F L455F amino_acid_mutation PMID:34010483 L455F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89987G>T/c.1365G>T/p.L455F +YLL026W HSP104 8881 hsp104-L459F L459F amino_acid_mutation PMID:34010483 L459F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89999G>T/c.1377G>T/p.L459F +YLL026W HSP104 8882 hsp104-L462F L462F amino_acid_mutation PMID:34010483 L462F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90006_90008delCTAinsTTT/c.1384_1386delCTAinsTTT/p.L462F +YLL026W HSP104 8883 hsp104-L462R L462R amino_acid_mutation PMID:17367387 L462R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90007T>G/c.1385T>G/p.L462R +YLL026W HSP104 8884 hsp104-L96Q L96Q amino_acid_mutation PMID:19139266 L96Q False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.88909_88910delTTinsAA/c.287_288delTTinsAA/p.L96Q +YLL026W HSP104 8885 hsp104-N539K N539K amino_acid_mutation PMID:24439375,PMID:35252808 N539K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90239T>G/c.1617T>G/p.N539K +YLL026W HSP104 8886 hsp104-P389L P389L amino_acid_mutation PMID:17367387 P389L False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89788C>T/c.1166C>T/p.P389L +YLL026W HSP104 8887 hsp104-P557L P557L amino_acid_mutation PMID:17367387 P557L False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90292C>T/c.1670C>T/p.P557L +YLL026W HSP104 8888 hsp104-S535D S535D amino_acid_mutation PMID:29788207 S535D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90225_90226delTCinsGA/c.1603_1604delTCinsGA/p.S535D +YLL026W HSP104 8889 hsp104-S535E S535E amino_acid_mutation PMID:29788207 S535E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90225_90227delTCCinsGAG/c.1603_1605delTCCinsGAG/p.S535E +YLL026W HSP104 8890 hsp104-S89A S89A amino_acid_mutation PMID:19139266 S89A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.88887_88888delAGinsGC/c.265_266delAGinsGC/p.S89A +YLL026W HSP104 8891 hsp104-T160M T160M amino_acid_mutation PMID:28484020,PMID:33190361,PMID:33857305,PMID:36366434 T160M False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89101C>T/c.479C>T/p.T160M +YLL026W HSP104 8892 hsp104-T317A T317A amino_acid_mutation PMID:19139266 T317A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89571A>G/c.949A>G/p.T317A +YLL026W HSP104 8893 hsp104-T499D T499D amino_acid_mutation PMID:29788207 T499D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90117_90118delACinsGA/c.1495_1496delACinsGA/p.T499D +YLL026W HSP104 8894 hsp104-T499E T499E amino_acid_mutation PMID:29788207 T499E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90117_90119delACTinsGAG/c.1495_1497delACTinsGAG/p.T499E +YLL026W HSP104 8895 hsp104-T499I T499I amino_acid_mutation PMID:19139266 T499I False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90118C>T/c.1496C>T/p.T499I +YLL026W HSP104 8896 hsp104-T8A T8A amino_acid_mutation PMID:19139266 T8A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.88644A>G/c.22A>G/p.T8A +YLL026W HSP104 8897 hsp104-V365I V365I amino_acid_mutation PMID:19139266 V365I False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89715G>A/c.1093G>A/p.V365I +YLL026W HSP104 8898 hsp104-V426L V426L amino_acid_mutation PMID:24439375,PMID:35252808 V426L False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89898G>C/c.1276G>C/p.V426L +YLL026W HSP104 8899 hsp104-Y257A Y257A amino_acid_mutation PMID:19139266,PMID:35177839 Y257A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89391_89392delTAinsGC/c.769_770delTAinsGC/p.Y257A +YLL026W HSP104 8900 hsp104-Y257A,A503V,Y662A Y257A,A503V,Y662A amino_acid_mutation PMID:32155221 Y257A|A503V|Y662A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89391_89392delTAinsGC/c.769_770delTAinsGC/p.Y257A|chrXII:g.90130C>T/c.1508C>T/p.A503V|chrXII:g.90606_90607delTAinsGC/c.1984_1985delTAinsGC/p.Y662A +YLL026W HSP104 8901 hsp104-Y507A Y507A amino_acid_mutation PMID:35177839 Y507A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90141_90142delTAinsGC/c.1519_1520delTAinsGC/p.Y507A +YLL026W HSP104 8902 hsp104-Y507C Y507C amino_acid_mutation PMID:24439375,PMID:25062688 Y507C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90142A>G/c.1520A>G/p.Y507C +YLL026W HSP104 8903 hsp104-Y650A Y650A amino_acid_mutation PMID:32155221 Y650A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.90570_90571delTAinsGC/c.1948_1949delTAinsGC/p.Y650A +YLL028W TPO1 8904 tpo1-S19A S19A amino_acid_mutation PMID:15637075 S19A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.84858T>G/c.55T>G/p.S19A +YLL028W TPO1 8905 tpo1-S19E S19E amino_acid_mutation PMID:15637075 S19E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.84858_84859delTCinsGA/c.55_56delTCinsGA/p.S19E +YLL028W TPO1 8906 tpo1-S342A S342A amino_acid_mutation PMID:15637075 S342A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.85827_85828delAGinsGC/c.1024_1025delAGinsGC/p.S342A +YLL028W TPO1 8907 tpo1-S342E S342E amino_acid_mutation PMID:15637075 S342E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.85827_85829delAGTinsGAG/c.1024_1026delAGTinsGAG/p.S342E +YLL028W TPO1 8908 tpo1-T52A T52A amino_acid_mutation PMID:15637075 T52A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.84957A>G/c.154A>G/p.T52A +YLL028W TPO1 8909 tpo1-T52E T52E amino_acid_mutation PMID:15637075 T52E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.84957_84959delACTinsGAG/c.154_156delACTinsGAG/p.T52E +YLL034C RIX7 8917 RIX7-E634Q E634Q amino_acid_mutation PMID:24312670 E634Q False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.71247C>G/c.1900G>C/p.E634Q +YLL034C RIX7 8918 RIX7-K580A K580A amino_acid_mutation PMID:24312670 K580A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.71408_71409delAAinsGC/c.1738_1739delAAinsGC/p.K580A +YLL039C UBI4 8928 ubi4-A46G A46G amino_acid_mutation PMID:11399765 A46G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65071G>C/c.137C>G/p.A46G +YLL039C UBI4 8929 ubi4-A46S A46S amino_acid_mutation PMID:28214582 A46S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65072C>A/c.136G>T/p.A46S +YLL039C UBI4 8930 ubi4-A46S,I61T A46S,I61T amino_acid_mutation PMID:33662424 A46S|I61T False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65072C>A/c.136G>T/p.A46S|chrXII:g.65026A>G/c.182T>C/p.I61T +YLL039C UBI4 8931 ubi4-A46S,L50P A46S,L50P amino_acid_mutation PMID:33662424 A46S|L50P False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65072C>A/c.136G>T/p.A46S|chrXII:g.65059A>G/c.149T>C/p.L50P +YLL039C UBI4 8932 ubi4-D21A D21A amino_acid_mutation PMID:11399765 D21A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65146T>G/c.62A>C/p.D21A +YLL039C UBI4 8933 ubi4-D32A D32A amino_acid_mutation PMID:11399765 D32A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65113T>G/c.95A>C/p.D32A +YLL039C UBI4 8934 ubi4-D39A D39A amino_acid_mutation PMID:11399765 D39A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65092T>G/c.116A>C/p.D39A +YLL039C UBI4 8935 ubi4-D39A,Q40A,Q41A,R42A D39A,Q40A,Q41A,R42A amino_acid_mutation PMID:11399765 D39A|Q40A|Q41A|R42A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65092T>G/c.116A>C/p.D39A|chrXII:g.65089_65090delCAinsGC/c.118_119delCAinsGC/p.Q40A|chrXII:g.65086_65087delCAinsGC/c.121_122delCAinsGC/p.Q41A|chrXII:g.65083_65084delAGinsGC/c.124_125delAGinsGC/p.R42A +YLL039C UBI4 8936 ubi4-E16A,E18A E16A,E18A amino_acid_mutation PMID:11399765 E16A|E18A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65161T>G/c.47A>C/p.E16A|chrXII:g.65155T>G/c.53A>C/p.E18A +YLL039C UBI4 8937 ubi4-E34A E34A amino_acid_mutation PMID:11399765 E34A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65107T>G/c.101A>C/p.E34A +YLL039C UBI4 8939 ubi4-E64A E64A amino_acid_mutation PMID:11399765 E64A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65017T>G/c.191A>C/p.E64A +YLL039C UBI4 8941 ubi4-F45A F45A amino_acid_mutation PMID:11399765 F45A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65074_65075delTTinsGC/c.133_134delTTinsGC/p.F45A +YLL039C UBI4 8942 ubi4-F4A F4A amino_acid_mutation PMID:11399765 F4A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65197_65198delTTinsGC/c.10_11delTTinsGC/p.F4A +YLL039C UBI4 8943 ubi4-F4Y F4Y amino_acid_mutation PMID:11399765 F4Y False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65197A>T/c.11T>A/p.F4Y +YLL039C UBI4 8944 ubi4-G10A G10A amino_acid_mutation PMID:11399765 G10A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65179C>G/c.29G>C/p.G10A +YLL039C UBI4 8945 ubi4-G35A G35A amino_acid_mutation PMID:11399765 G35A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65104C>G/c.104G>C/p.G35A +YLL039C UBI4 8946 ubi4-G47A G47A amino_acid_mutation PMID:11399765 G47A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65068C>G/c.140G>C/p.G47A +YLL039C UBI4 8947 ubi4-G53A G53A amino_acid_mutation PMID:11399765 G53A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65050C>G/c.158G>C/p.G53A +YLL039C UBI4 8949 ubi4-H68A H68A amino_acid_mutation PMID:11399765 H68A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65005_65006delCAinsGC/c.202_203delCAinsGC/p.H68A +YLL039C UBI4 8950 ubi4-I23A,D24A,N25A I23A,D24A,N25A amino_acid_mutation PMID:11399765 I23A|D24A|N25A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65744_65745delATinsGC/c.67_68delATinsGC/p.I23A|chrXII:g.65137T>G/c.71A>C/p.D24A|chrXII:g.65134_65135delAAinsGC/c.73_74delAAinsGC/p.N25A +YLL039C UBI4 8951 ubi4-I36A I36A amino_acid_mutation PMID:11399765 I36A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65101_65102delATinsGC/c.106_107delATinsGC/p.I36A +YLL039C UBI4 8952 ubi4-I44A I44A amino_acid_mutation PMID:11399765 I44A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65077_65078delATinsGC/c.130_131delATinsGC/p.I44A +YLL039C UBI4 8953 ubi4-I61T I61T amino_acid_mutation PMID:28214582 I61T False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65026A>G/c.182T>C/p.I61T +YLL039C UBI4 8954 ubi4-K11A K11A amino_acid_mutation PMID:11399765 K11A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65176_65177delAAinsGC/c.31_32delAAinsGC/p.K11A +YLL039C UBI4 8955 ubi4-K27A K27A amino_acid_mutation PMID:11399765 K27A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65128_65129delAAinsGC/c.79_80delAAinsGC/p.K27A +YLL039C UBI4 8956 ubi4-K29A K29A amino_acid_mutation PMID:11399765 K29A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65122_65123delAAinsGC/c.85_86delAAinsGC/p.K29A +YLL039C UBI4 8957 ubi4-K33A K33A amino_acid_mutation PMID:11399765 K33A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65110_65111delAAinsGC/c.97_98delAAinsGC/p.K33A +YLL039C UBI4 8958 ubi4-K48A K48A amino_acid_mutation PMID:11399765 K48A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65065_65066delAAinsGC/c.142_143delAAinsGC/p.K48A +YLL039C UBI4 8959 ubi4-K48R K48R amino_acid_mutation PMID:35263628 K48R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65065T>C/c.143A>G/p.K48R +YLL039C UBI4 8960 ubi4-K63A K63A amino_acid_mutation PMID:11399765 K63A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65020_65021delAAinsGC/c.187_188delAAinsGC/p.K63A +YLL039C UBI4 8961 ubi4-K63R K63R amino_acid_mutation PMID:35263628 K63R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65020T>C/c.188A>G/p.K63R +YLL039C UBI4 8962 ubi4-K6A K6A amino_acid_mutation PMID:11399765 K6A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65191_65192delAAinsGC/c.16_17delAAinsGC/p.K6A +YLL039C UBI4 8963 ubi4-L50P L50P amino_acid_mutation PMID:28214582 L50P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65059A>G/c.149T>C/p.L50P +YLL039C UBI4 8964 ubi4-L50P,I61T L50P,I61T amino_acid_mutation PMID:33662424 L50P|I61T False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65059A>G/c.149T>C/p.L50P|chrXII:g.65026A>G/c.182T>C/p.I61T +YLL039C UBI4 8965 ubi4-L71A L71A amino_acid_mutation PMID:11399765 L71A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.64996_64997delCTinsGC/c.211_212delCTinsGC/p.L71A +YLL039C UBI4 8966 ubi4-L73A L73A amino_acid_mutation PMID:11399765 L73A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65594_65595delTTinsGC/c.217_218delTTinsGC/p.L73A +YLL039C UBI4 8967 ubi4-L8A L8A amino_acid_mutation PMID:11399765 L8A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65185_65186delTTinsGC/c.22_23delTTinsGC/p.L8A +YLL039C UBI4 8968 ubi4-N60A N60A amino_acid_mutation PMID:11399765 N60A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65029_65030delAAinsGC/c.178_179delAAinsGC/p.N60A +YLL039C UBI4 8969 ubi4-P37A,P38A P37A,P38A amino_acid_mutation PMID:11399765 P37A|P38A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65099G>C/c.109C>G/p.P37A|chrXII:g.65096G>C/c.112C>G/p.P38A +YLL039C UBI4 8970 ubi4-Q2A Q2A amino_acid_mutation PMID:11399765 Q2A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65203_65204delCAinsGC/c.4_5delCAinsGC/p.Q2A +YLL039C UBI4 8971 ubi4-Q31A Q31A amino_acid_mutation PMID:11399765 Q31A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65116_65117delCAinsGC/c.91_92delCAinsGC/p.Q31A +YLL039C UBI4 8972 ubi4-Q31A,D32A,K33A,E34A Q31A,D32A,K33A,E34A amino_acid_mutation PMID:11399765 Q31A|D32A|K33A|E34A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65116_65117delCAinsGC/c.91_92delCAinsGC/p.Q31A|chrXII:g.65113T>G/c.95A>C/p.D32A|chrXII:g.65110_65111delAAinsGC/c.97_98delAAinsGC/p.K33A|chrXII:g.65107T>G/c.101A>C/p.E34A +YLL039C UBI4 8973 ubi4-Q40A Q40A amino_acid_mutation PMID:11399765 Q40A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65089_65090delCAinsGC/c.118_119delCAinsGC/p.Q40A +YLL039C UBI4 8974 ubi4-Q41A Q41A amino_acid_mutation PMID:11399765 Q41A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65086_65087delCAinsGC/c.121_122delCAinsGC/p.Q41A +YLL039C UBI4 8975 ubi4-Q49A Q49A amino_acid_mutation PMID:11399765 Q49A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65062_65063delCAinsGC/c.145_146delCAinsGC/p.Q49A +YLL039C UBI4 8976 ubi4-Q62A Q62A amino_acid_mutation PMID:11399765 Q62A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65023_65024delCAinsGC/c.184_185delCAinsGC/p.Q62A +YLL039C UBI4 8977 ubi4-R42A R42A amino_acid_mutation PMID:11399765 R42A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65083_65084delAGinsGC/c.124_125delAGinsGC/p.R42A +YLL039C UBI4 8978 ubi4-R72A R72A amino_acid_mutation PMID:11399765 R72A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.64993_64994delAGinsGC/c.214_215delAGinsGC/p.R72A +YLL039C UBI4 8979 ubi4-R74A R74A amino_acid_mutation PMID:11399765 R74A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.64987_64988delAGinsGC/c.220_221delAGinsGC/p.R74A +YLL039C UBI4 8980 ubi4-S19A S19A amino_acid_mutation PMID:11399765 S19A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65153A>C/c.55T>G/p.S19A +YLL039C UBI4 8981 ubi4-S19A,S20A,D21A,T22A S19A,S20A,D21A,T22A amino_acid_mutation PMID:11399765 S19A|S20A|D21A|T22A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65153A>C/c.55T>G/p.S19A|chrXII:g.65150A>C/c.58T>G/p.S20A|chrXII:g.65146T>G/c.62A>C/p.D21A|chrXII:g.65144T>C/c.64A>G/p.T22A +YLL039C UBI4 8982 ubi4-S20A S20A amino_acid_mutation PMID:11399765 S20A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65150A>C/c.58T>G/p.S20A +YLL039C UBI4 8983 ubi4-S20F S20F amino_acid_mutation PMID:28214582 S20F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65149G>A/c.59C>T/p.S20F +YLL039C UBI4 8984 ubi4-S20F,A46S S20F,A46S amino_acid_mutation PMID:33662424 S20F|A46S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65149G>A/c.59C>T/p.S20F|chrXII:g.65072C>A/c.136G>T/p.A46S +YLL039C UBI4 8985 ubi4-S20F,I61T S20F,I61T amino_acid_mutation PMID:33662424 S20F|I61T False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65149G>A/c.59C>T/p.S20F|chrXII:g.65026A>G/c.182T>C/p.I61T +YLL039C UBI4 8986 ubi4-S20F,L50P S20F,L50P amino_acid_mutation PMID:33662424 S20F|L50P False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65149G>A/c.59C>T/p.S20F|chrXII:g.65059A>G/c.149T>C/p.L50P +YLL039C UBI4 8987 ubi4-S28G S28G amino_acid_mutation PMID:11399765 S28G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65125_65126delTCinsGG/c.82_83delTCinsGG/p.S28G +YLL039C UBI4 8988 ubi4-S57A S57A amino_acid_mutation PMID:33074099 S57A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65642_65643delAGinsGC/c.169_170delAGinsGC/p.S57A +YLL039C UBI4 8989 ubi4-S57A,D58A S57A,D58A amino_acid_mutation PMID:11399765 S57A|D58A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65642_65643delAGinsGC/c.169_170delAGinsGC/p.S57A|chrXII:g.65035T>G/c.173A>C/p.D58A +YLL039C UBI4 8990 ubi4-S57D S57D amino_acid_mutation PMID:33074099 S57D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65642_65643delAGinsGA/c.169_170delAGinsGA/p.S57D +YLL039C UBI4 8991 ubi4-S65A S65A amino_acid_mutation PMID:11399765 S65A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65619A>C/c.193T>G/p.S65A +YLL039C UBI4 8992 ubi4-T12A T12A amino_acid_mutation PMID:11399765 T12A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65174T>C/c.34A>G/p.T12A +YLL039C UBI4 8993 ubi4-T14A T14A amino_acid_mutation PMID:11399765 T14A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65168T>C/c.40A>G/p.T14A +YLL039C UBI4 8994 ubi4-T22A T22A amino_acid_mutation PMID:11399765 T22A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65144T>C/c.64A>G/p.T22A +YLL039C UBI4 8995 ubi4-T55A T55A amino_acid_mutation PMID:11399765 T55A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65045T>C/c.163A>G/p.T55A +YLL039C UBI4 8996 ubi4-T66A T66A amino_acid_mutation PMID:11399765 T66A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65012T>C/c.196A>G/p.T66A +YLL039C UBI4 8997 ubi4-T9A T9A amino_acid_mutation PMID:11399765 T9A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65183T>C/c.25A>G/p.T9A +YLL039C UBI4 8998 ubi4-V70A V70A amino_acid_mutation PMID:11399765 V70A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.64999A>G/c.209T>C/p.V70A +YLL039C UBI4 8999 ubi4-Y59A Y59A amino_acid_mutation PMID:11399765 Y59A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.65032_65033delTAinsGC/c.175_176delTAinsGC/p.Y59A +YLL040C VPS13 9000 VPS13-A1512E A1512E amino_acid_mutation PMID:27280386 A1512E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.59111G>T/c.4535C>A/p.A1512E +YLL040C VPS13 9001 VPS13-G1245S G1245S amino_acid_mutation PMID:27280386 G1245S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.59913C>T/c.3733G>A/p.G1245S +YLL040C VPS13 9002 VPS13-G718D G718D amino_acid_mutation PMID:27280386 G718D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.61493C>T/c.2153G>A/p.G718D +YLL040C VPS13 9003 VPS13-G718K G718K amino_acid_mutation PMID:27280386,PMID:34201352 G718K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.61492_61494delGGTinsAAG/c.2152_2154delGGTinsAAG/p.G718K +YLL040C VPS13 9004 VPS13-G820D G820D amino_acid_mutation PMID:12454062,PMID:27280386 G820D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.61187C>T/c.2459G>A/p.G820D +YLL040C VPS13 9005 VPS13-G820R G820R amino_acid_mutation PMID:27280386 G820R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.61188C>G/c.2458G>C/p.G820R +YLL040C VPS13 9006 VPS13-L822F L822F amino_acid_mutation PMID:12454062,PMID:27280386 L822F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.61180C>A/c.2466G>T/p.L822F +YLL040C VPS13 9007 VPS13-L984S L984S amino_acid_mutation PMID:27280386 L984S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.60695A>G/c.2951T>C/p.L984S +YLL040C VPS13 9008 VPS13-N1467H N1467H amino_acid_mutation PMID:27280386 N1467H False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.59247T>G/c.4399A>C/p.N1467H +YLL040C VPS13 9009 VPS13-P268R P268R amino_acid_mutation PMID:27280386 P268R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.62843G>C/c.803C>G/p.P268R +YLL040C VPS13 9010 VPS13-V1210E V1210E amino_acid_mutation PMID:27280386 V1210E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.60017A>T/c.3629T>A/p.V1210E +YLL040C VPS13 9013 vps13-D716H D716H amino_acid_mutation PMID:28481201 D716H False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.61500C>G/c.2146G>C/p.D716H +YLL040C VPS13 9014 vps13-F1881S F1881S amino_acid_mutation PMID:34201352 F1881S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.58004A>G/c.5642T>C/p.F1881S +YLL040C VPS13 9015 vps13-F417P F417P amino_acid_mutation PMID:34201352 F417P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.62396_62397delTTinsCC/c.1249_1250delTTinsCC/p.F417P +YLL040C VPS13 9016 vps13-G2998V G2998V amino_acid_mutation PMID:34201352 G2998V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.54653C>A/c.8993G>T/p.G2998V +YLL040C VPS13 9017 vps13-I2749R I2749R amino_acid_mutation PMID:28334785,PMID:32407779 I2749R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.55399_55400delTTinsGG/c.8246_8247delTTinsGG/p.I2749R +YLL040C VPS13 9018 vps13-L1107P L1107P amino_acid_mutation PMID:34201352 L1107P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.60326_60327delTTinsCC/c.3319_3320delTTinsCC/p.L1107P +YLL040C VPS13 9019 vps13-L2229T L2229T amino_acid_mutation PMID:34201352 L2229T False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.56960_56961delTTinsAC/c.6685_6686delTTinsAC/p.L2229T +YLL040C VPS13 9020 vps13-L66P L66P amino_acid_mutation PMID:34201352 L66P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.63449_63450delTTinsCC/c.196_197delTTinsCC/p.L66P +YLL040C VPS13 9023 vps13-N2216A N2216A amino_acid_mutation PMID:34201352 N2216A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.56999_57000delAAinsGC/c.6646_6647delAAinsGC/p.N2216A +YLL040C VPS13 9024 vps13-N2216S N2216S amino_acid_mutation PMID:34201352 N2216S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.56999T>C/c.6647A>G/p.N2216S +YLL040C VPS13 9025 vps13-N2428A N2428A amino_acid_mutation PMID:34201352 N2428A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.56363_56364delAAinsGC/c.7282_7283delAAinsGC/p.N2428A +YLL040C VPS13 9026 vps13-N2428S N2428S amino_acid_mutation PMID:34201352 N2428S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.56363T>C/c.7283A>G/p.N2428S +YLL040C VPS13 9032 vps13-R3015Q R3015Q amino_acid_mutation PMID:34201352 R3015Q False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.54601_54602delGTinsAA/c.9044_9045delGTinsAA/p.R3015Q +YLL040C VPS13 9033 vps13-W363C W363C amino_acid_mutation PMID:34201352 W363C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.62557C>A/c.1089G>T/p.W363C +YLL040C VPS13 9034 vps13-Y2702C Y2702C amino_acid_mutation PMID:34201352 Y2702C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.55541T>C/c.8105A>G/p.Y2702C +YLL041C SDH2 9037 sdh2-C184Y C184Y amino_acid_mutation PMID:19261679 C184Y False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.53381C>T/c.551G>A/p.C184Y +YLL041C SDH2 9038 sdh2-R235H R235H amino_acid_mutation PMID:25736212 R235H False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.53227_53229delAGAinsCAT/c.703_705delAGAinsCAT/p.R235H +YLL043W FPS1 9041 fps1-N228A N228A amino_acid_mutation PMID:22593571 N228A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.50619_50620delAAinsGC/c.682_683delAAinsGC/p.N228A +YLL043W FPS1 9042 fps1-S181A,S185A S181A,S185A amino_acid_mutation PMID:26274562,PMID:37379203 S181A|S185A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.50478T>G/c.541T>G/p.S181A|chrXII:g.50490_50491delAGinsGC/c.553_554delAGinsGC/p.S185A +YLL043W FPS1 9043 fps1-S181A,S185A,S570A S181A,S185A,S570A amino_acid_mutation PMID:26274562,PMID:37379203 S181A|S185A|S570A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.50478T>G/c.541T>G/p.S181A|chrXII:g.50490_50491delAGinsGC/c.553_554delAGinsGC/p.S185A|chrXII:g.51645T>G/c.1708T>G/p.S570A +YLL043W FPS1 9044 fps1-S537A S537A amino_acid_mutation PMID:17620418,PMID:27607883,PMID:37379203 S537A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.51546T>G/c.1609T>G/p.S537A +YLL043W FPS1 9045 fps1-S537E S537E amino_acid_mutation PMID:17620418,PMID:27607883,PMID:37379203 S537E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.51546_51548delTCTinsGAG/c.1609_1611delTCTinsGAG/p.S537E +YLL043W FPS1 9046 fps1-S570A S570A amino_acid_mutation PMID:26274562,PMID:37379203 S570A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.51645T>G/c.1708T>G/p.S570A +YLL043W FPS1 9047 fps1-T231A T231A amino_acid_mutation PMID:12486125,PMID:16885417,PMID:37379203 T231A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.50628A>G/c.691A>G/p.T231A +YLL043W FPS1 9048 fps1-T231A,S537A T231A,S537A amino_acid_mutation PMID:17620418,PMID:27607883 T231A|S537A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.50628A>G/c.691A>G/p.T231A|chrXII:g.51546T>G/c.1609T>G/p.S537A +YLL043W FPS1 9049 fps1-T231E,S537E T231E,S537E amino_acid_mutation PMID:17620418,PMID:27607883 T231E|S537E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.50628_50629delACinsGA/c.691_692delACinsGA/p.T231E|chrXII:g.51546_51548delTCTinsGAG/c.1609_1611delTCTinsGAG/p.S537E +YLL061W MMP1 9067 mmp1-W537* W537* partial_amino_acid_deletion PMID:31611676 W537* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXII:g.19565G>A/c.1610G>A/p.W537* +YLR005W SSL1 9077 ssl1-C403A C403A amino_acid_mutation PMID:15837426 C403A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.161255_161256delTGinsGC/c.1207_1208delTGinsGC/p.C403A +YLR005W SSL1 9078 ssl1-t242i t242i amino_acid_mutation PMID:21552543,PMID:27708008 t242i False T242I amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.160773C>T/c.725C>T/p.T242I +YLR006C SSK1 9081 ssk1-D554A D554A amino_acid_mutation PMID:35597864 D554A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.162233T>G/c.1661A>C/p.D554A +YLR006C SSK1 9082 ssk1-L357* L357* partial_amino_acid_deletion PMID:31611676 L357* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXII:g.162824A>T/c.1070T>A/p.L357* +YLR007W NSE1 9090 nse1-C274A C274A amino_acid_mutation PMID:17923688 C274A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.165211_165212delTGinsGC/c.820_821delTGinsGC/p.C274A +YLR007W NSE1 9091 nse1-C289A C289A amino_acid_mutation PMID:29119272 C289A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.165256_165257delTGinsGC/c.865_866delTGinsGC/p.C289A +YLR010C TEN1 9109 ten1-D138Y D138Y amino_acid_mutation PMID:20157006 D138Y False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.167391C>A/c.412G>T/p.D138Y +YLR010C TEN1 9110 ten1-R43E R43E amino_acid_mutation PMID:32661422 R43E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.167675_167676delAGinsGA/c.127_128delAGinsGA/p.R43E +YLR025W SNF7 9116 snf7-R52E R52E amino_acid_mutation PMID:34028356 R52E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.194605_194606delAGinsGA/c.154_155delAGinsGA/p.R52E +YLR026C SED5 9118 sed5-D5R,T7A,F10A,V14A D5R,T7A,F10A,V14A amino_acid_mutation PMID:31883188 D5R|T7A|F10A|V14A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.196459_196460delGAinsCG/c.13_14delGAinsCG/p.D5R|chrXII:g.196454T>C/c.19A>G/p.T7A|chrXII:g.196536_196537delTTinsGC/c.28_29delTTinsGC/p.F10A|chrXII:g.196432A>G/c.41T>C/p.V14A +YLR026C SED5 9119 sed5-K18A,K19A,R20A K18A,K19A,R20A amino_acid_mutation PMID:31883188 K18A|K19A|R20A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.196420_196421delAAinsGC/c.52_53delAAinsGC/p.K18A|chrXII:g.196417_196418delAAinsGC/c.55_56delAAinsGC/p.K19A|chrXII:g.196414_196415delAGinsGC/c.58_59delAGinsGC/p.R20A +YLR026C SED5 9120 sed5-L272P L272P amino_acid_mutation PMID:31883188 L272P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.195658A>G/c.815T>C/p.L272P +YLR026C SED5 9121 sed5-L276P L276P amino_acid_mutation PMID:31883188 L276P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.195646A>G/c.827T>C/p.L276P +YLR027C AAT2 9122 aat2-K255E K255E amino_acid_mutation PMID:35621265 K255E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.197323T>C/c.763A>G/p.K255E +YLR027C AAT2 9123 aat2-R387E R387E amino_acid_mutation PMID:35621265 R387E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.196926_196927delAGinsGA/c.1159_1160delAGinsGA/p.R387E +YLR032W RAD5 9132 rad5-C914A,C917A C914A,C917A amino_acid_mutation PMID:28596989 C914A|C917A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.207730_207731delTGinsGC/c.2740_2741delTGinsGC/p.C914A|chrXII:g.207739_207740delTGinsGC/c.2749_2750delTGinsGC/p.C917A +YLR032W RAD5 9133 rad5-C914S C914S amino_acid_mutation PMID:10880451 C914S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.207730T>A/c.2740T>A/p.C914S +YLR032W RAD5 9135 rad5-D681A,E682A D681A,E682A amino_acid_mutation PMID:28596989,PMID:34407997 D681A|E682A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.207032A>C/c.2042A>C/p.D681A|chrXII:g.207035A>C/c.2045A>C/p.E682A +YLR032W RAD5 9137 rad5-E943A E943A amino_acid_mutation PMID:12496280 E943A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.207818A>C/c.2828A>C/p.E943A +YLR032W RAD5 9138 rad5-I791S I791S amino_acid_mutation PMID:18617998 I791S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.207362T>G/c.2372T>G/p.I791S +YLR032W RAD5 9139 rad5-I916A I916A amino_acid_mutation PMID:12496280 I916A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.207736_207737delATinsGC/c.2746_2747delATinsGC/p.I916A +YLR032W RAD5 9143 rad5-N959A N959A amino_acid_mutation PMID:12496280 N959A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.207865_207866delAAinsGC/c.2875_2876delAAinsGC/p.N959A +YLR032W RAD5 9144 rad5-R187E R187E amino_acid_mutation PMID:31350889 R187E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.205549_205550delAGinsGA/c.559_560delAGinsGA/p.R187E +YLR032W RAD5 9147 rad5-Y944A Y944A amino_acid_mutation PMID:12496280 Y944A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.207820_207821delTAinsGC/c.2830_2831delTAinsGC/p.Y944A +YLR035C MLH2 9151 mlh2-D219G D219G amino_acid_mutation PMID:33303966 D219G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.213801T>C/c.656A>G/p.D219G +YLR035C MLH2 9152 mlh2-P332L P332L amino_acid_mutation PMID:33303966 P332L False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.213462G>A/c.995C>T/p.P332L +YLR035C MLH2 9153 mlh2-S16P S16P amino_acid_mutation PMID:33303966 S16P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.214411A>G/c.46T>C/p.S16P +YLR035C MLH2 9161 mlh2-S17P S17P amino_acid_mutation PMID:33303966 S17P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.214407_214408delAGinsCC/c.49_50delAGinsCC/p.S17P +YLR035C MLH2 9162 mlh2-S18P S18P amino_acid_mutation PMID:33303966 S18P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.214405A>G/c.52T>C/p.S18P +YLR035C MLH2 9163 mlh2-V15P V15P amino_acid_mutation PMID:33303966 V15P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.214413_214414delGTinsCC/c.43_44delGTinsCC/p.V15P +YLR038C COX12 9165 cox12-R17C R17C amino_acid_mutation PMID:34937540 R17C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.225122_225124delAGAinsTGT/c.49_51delAGAinsTGT/p.R17C +YLR038C COX12 9166 cox12-R17H R17H amino_acid_mutation PMID:34937540 R17H False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.225122_225124delAGAinsCAT/c.49_51delAGAinsCAT/p.R17H +YLR044C PDC1 9170 pdc1-Y157F Y157F amino_acid_mutation PMID:35304512 Y157F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.233612T>A/c.470A>T/p.Y157F +YLR044C PDC1 9171 pdc1-Y344F Y344F amino_acid_mutation PMID:35304512 Y344F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.233051T>A/c.1031A>T/p.Y344F +YLR045C STU2 9178 stu2-K252Q K252Q amino_acid_mutation PMID:36084134 K252Q False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.236950T>G/c.754A>C/p.K252Q +YLR045C STU2 9179 stu2-K252R K252R amino_acid_mutation PMID:36084134 K252R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.236949T>C/c.755A>G/p.K252R +YLR045C STU2 9180 stu2-K469Q K469Q amino_acid_mutation PMID:36084134 K469Q False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.236299T>G/c.1405A>C/p.K469Q +YLR045C STU2 9181 stu2-K469R K469R amino_acid_mutation PMID:36084134 K469R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.236298T>C/c.1406A>G/p.K469R +YLR045C STU2 9182 stu2-K870Q K870Q amino_acid_mutation PMID:36084134 K870Q False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.235096T>G/c.2608A>C/p.K870Q +YLR045C STU2 9183 stu2-K870R K870R amino_acid_mutation PMID:36084134 K870R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.235095T>C/c.2609A>G/p.K870R +YLR056W ERG3 9191 erg3-A145P A145P amino_acid_mutation PMID:32303542 A145P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.254293G>C/c.433G>C/p.A145P +YLR067C PET309 9201 pet309-K424A K424A amino_acid_mutation PMID:18039654 K424A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.269440_269441delAAinsGC/c.1270_1271delAAinsGC/p.K424A +YLR067C PET309 9202 pet309-R427A R427A amino_acid_mutation PMID:18039654 R427A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.269431_269432delCGinsGC/c.1279_1280delCGinsGC/p.R427A +YLR069C MEF1 9205 mef1-M516R M516R amino_acid_mutation PMID:17160893 M516R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.272369A>C/c.1547T>G/p.M516R +YLR075W RPL10 9210 rpl10-R7L R7L amino_acid_mutation PMID:18824477 R7L False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.282945_282946delAGinsCT/c.19_20delAGinsCT/p.R7L +YLR075W RPL10 9211 rpl10-R7Q R7Q amino_acid_mutation PMID:18824477 R7Q False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.282945_282946delAGinsCA/c.19_20delAGinsCA/p.R7Q +YLR075W RPL10 9212 rpl10-R98S R98S amino_acid_mutation PMID:23263491,PMID:24706786 R98S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.283220A>C/c.294A>C/p.R98S +YLR075W RPL10 9213 rpl10-S104D S104D amino_acid_mutation PMID:28715419 S104D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.283236_283237delTCinsGA/c.310_311delTCinsGA/p.S104D +YLR075W RPL10 9214 rpl10-Y11C Y11C amino_acid_mutation PMID:18824477 Y11C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.282958A>G/c.32A>G/p.Y11C +YLR075W RPL10 9215 rpl10-Y9C Y9C amino_acid_mutation PMID:18824477 Y9C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.282952A>G/c.26A>G/p.Y9C +YLR075W RPL10 9216 rpl10-Y9H Y9H amino_acid_mutation PMID:18824477 Y9H False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.282951T>C/c.25T>C/p.Y9H +YLR078C BOS1 9219 bos1-G176W G176W amino_acid_mutation PMID:28982678 G176W False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.285943_285945delGGCinsTGG/c.526_528delGGCinsTGG/p.G176W +YLR078C BOS1 9220 bos1-R196del R196del amino_acid_insertion_and_mutation PMID:28982678 R196del False R196DEL amino_acid_insertion_and_mutation:multiple_aa amino_acid_insertion_and_mutation chrXII:g.285883_285885delinsAAGCTCGTC/c.586_588delinsGACGAGCTT/p.R196_R196delinsDEL +YLR079W SIC1 9221 sic1-T173A T173A amino_acid_mutation PMID:33730573 T173A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.287336A>G/c.517A>G/p.T173A +YLR081W GAL2 9223 gal2-N376F N376F amino_acid_mutation PMID:35918180,PMID:36248719,PMID:36338133 N376F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.291337_291338delAAinsTT/c.1126_1127delAAinsTT/p.N376F +YLR081W GAL2 9224 gal2-N376Y N376Y amino_acid_mutation PMID:34937866 N376Y False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.291337A>T/c.1126A>T/p.N376Y +YLR081W GAL2 9225 gal2-N376Y,L558S N376Y,L558S amino_acid_mutation PMID:34937866 N376Y|L558S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.291337A>T/c.1126A>T/p.N376Y|chrXII:g.291884T>C/c.1673T>C/p.L558S +YLR081W GAL2 9226 gal2-N376Y,M107K N376Y,M107K amino_acid_mutation PMID:34937866 N376Y|M107K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.291337A>T/c.1126A>T/p.N376Y|chrXII:g.290531T>A/c.320T>A/p.M107K +YLR081W GAL2 9227 gal2-N376Y,M435I N376Y,M435I amino_acid_mutation PMID:34937866 N376Y|M435I False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.291337A>T/c.1126A>T/p.N376Y|chrXII:g.291516G>C/c.1305G>C/p.M435I +YLR081W GAL2 9228 gal2-N376Y,V239L N376Y,V239L amino_acid_mutation PMID:34937866 N376Y|V239L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.291337A>T/c.1126A>T/p.N376Y|chrXII:g.290926G>C/c.715G>C/p.V239L +YLR086W SMC4 9231 smc4-E1352Q E1352Q amino_acid_mutation PMID:34951453 E1352Q False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.306296G>C/c.4054G>C/p.E1352Q +YLR086W SMC4 9232 smc4-Q302L Q302L amino_acid_mutation PMID:34951453 Q302L False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.303147A>T/c.905A>T/p.Q302L +YLR092W SUL2 9238 sul2-A470T A470T amino_acid_mutation PMID:33560525 A470T False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.324951G>A/c.1408G>A/p.A470T +YLR092W SUL2 9239 sul2-L268S L268S amino_acid_mutation PMID:33560525 L268S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.324346T>C/c.803T>C/p.L268S +YLR100W ERG27 9247 erg27-D314A D314A amino_acid_mutation PMID:18555807 D314A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.342750A>C/c.941A>C/p.D314A +YLR100W ERG27 9248 erg27-D75A D75A amino_acid_mutation PMID:18555807 D75A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.342033A>C/c.224A>C/p.D75A +YLR100W ERG27 9249 erg27-D75G,N153D D75G,N153D amino_acid_mutation PMID:18555807 D75G|N153D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.342033A>G/c.224A>G/p.D75G|chrXII:g.342266A>G/c.457A>G/p.N153D +YLR100W ERG27 9250 erg27-F150L F150L amino_acid_mutation PMID:18555807 F150L False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.342257T>C/c.448T>C/p.F150L +YLR100W ERG27 9251 erg27-F246A,F247A F246A,F247A amino_acid_mutation PMID:18555807 F246A|F247A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.342545_342546delTTinsGC/c.736_737delTTinsGC/p.F246A|chrXII:g.342548_342549delTTinsGC/c.739_740delTTinsGC/p.F247A +YLR100W ERG27 9252 erg27-G10A G10A amino_acid_mutation PMID:18555807 G10A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.341838G>C/c.29G>C/p.G10A +YLR100W ERG27 9253 erg27-I111M I111M amino_acid_mutation PMID:18555807 I111M False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.342142A>G/c.333A>G/p.I111M +YLR100W ERG27 9254 erg27-I135V,L148P I135V,L148P amino_acid_mutation PMID:18555807 I135V|L148P False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.342212A>G/c.403A>G/p.I135V|chrXII:g.342252T>C/c.443T>C/p.L148P +YLR100W ERG27 9255 erg27-K206A K206A amino_acid_mutation PMID:18555807 K206A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.342398_342399delAAinsGC/c.616_617delAAinsGC/p.K206A +YLR100W ERG27 9256 erg27-K337E K337E amino_acid_mutation PMID:18555807 K337E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.342791A>G/c.1009A>G/p.K337E +YLR100W ERG27 9257 erg27-L212P L212P amino_acid_mutation PMID:18555807 L212P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.342444T>C/c.635T>C/p.L212P +YLR100W ERG27 9258 erg27-L23P L23P amino_acid_mutation PMID:18555807 L23P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.341877T>C/c.68T>C/p.L23P +YLR100W ERG27 9259 erg27-L42P,D68G,A152T L42P,D68G,A152T amino_acid_mutation PMID:18555807 L42P|D68G|A152T False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.341906_341907delTTinsCC/c.124_125delTTinsCC/p.L42P|chrXII:g.342012A>G/c.203A>G/p.D68G|chrXII:g.342263G>A/c.454G>A/p.A152T +YLR100W ERG27 9260 erg27-M182V M182V amino_acid_mutation PMID:18555807 M182V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.342353A>G/c.544A>G/p.M182V +YLR100W ERG27 9261 erg27-N153L N153L amino_acid_mutation PMID:18555807 N153L False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.342266_342267delAAinsCT/c.457_458delAAinsCT/p.N153L +YLR100W ERG27 9262 erg27-N84S N84S amino_acid_mutation PMID:18555807 N84S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.342060A>G/c.251A>G/p.N84S +YLR100W ERG27 9263 erg27-P166L,S179L P166L,S179L amino_acid_mutation PMID:18555807 P166L|S179L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.342279C>T/c.497C>T/p.P166L|chrXII:g.342345C>T/c.536C>T/p.S179L +YLR100W ERG27 9264 erg27-P232A P232A amino_acid_mutation PMID:18555807 P232A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.342503C>G/c.694C>G/p.P232A +YLR100W ERG27 9265 erg27-Q311STOP Q311STOP partial_amino_acid_deletion PMID:18555807 Q311STOP False Q311* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrXII:g.342740C>T/c.931C>T/p.Q311* +YLR100W ERG27 9266 erg27-Q46R,D54G,M146V,K206E Q46R,D54G,M146V,K206E amino_acid_mutation PMID:18555807 Q46R|D54G|M146V|K206E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.341946A>G/c.137A>G/p.Q46R|chrXII:g.341970A>G/c.161A>G/p.D54G|chrXII:g.342245A>G/c.436A>G/p.M146V|chrXII:g.342398A>G/c.616A>G/p.K206E +YLR100W ERG27 9267 erg27-R32K,S239P R32K,S239P amino_acid_mutation PMID:18555807 R32K|S239P False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.341904G>A/c.95G>A/p.R32K|chrXII:g.342524T>C/c.715T>C/p.S239P +YLR100W ERG27 9268 erg27-R40A R40A amino_acid_mutation PMID:18555807 R40A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.341927_341928delAGinsGC/c.118_119delAGinsGC/p.R40A +YLR100W ERG27 9269 erg27-S13A S13A amino_acid_mutation PMID:18555807 S13A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.341846_341847delAGinsGC/c.37_38delAGinsGC/p.S13A +YLR100W ERG27 9270 erg27-S180C S180C amino_acid_mutation PMID:18555807 S180C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.342347A>T/c.538A>T/p.S180C +YLR100W ERG27 9271 erg27-S183P,F235S S183P,F235S amino_acid_mutation PMID:18555807 S183P|F235S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.342356T>C/c.547T>C/p.S183P|chrXII:g.342513T>C/c.704T>C/p.F235S +YLR100W ERG27 9272 erg27-S189A S189A amino_acid_mutation PMID:18555807 S189A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.342347_342348delAGinsGC/c.565_566delAGinsGC/p.S189A +YLR100W ERG27 9273 erg27-S205P,S237G S205P,S237G amino_acid_mutation PMID:18555807 S205P|S237G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.342422T>C/c.613T>C/p.S205P|chrXII:g.342518A>G/c.709A>G/p.S237G +YLR100W ERG27 9274 erg27-T26I,F160L T26I,F160L amino_acid_mutation PMID:18555807 T26I|F160L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.341886C>T/c.77C>T/p.T26I|chrXII:g.342287T>C/c.478T>C/p.F160L +YLR100W ERG27 9275 erg27-T9A T9A amino_acid_mutation PMID:18555807 T9A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.341834A>G/c.25A>G/p.T9A +YLR100W ERG27 9276 erg27-V140A V140A amino_acid_mutation PMID:18555807 V140A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.342228T>C/c.419T>C/p.V140A +YLR100W ERG27 9277 erg27-Y202F Y202F amino_acid_mutation PMID:18555807 Y202F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.342414A>T/c.605A>T/p.Y202F +YLR103C CDC45 9283 cdc45-R210C R210C amino_acid_mutation PMID:30595439 R210C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.345312_345314delAGAinsTGT/c.628_630delAGAinsTGT/p.R210C +YLR105C SEN2 9286 sen2-H297A H297A amino_acid_mutation PMID:33649230 H297A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.347291_347292delCAinsGC/c.889_890delCAinsGC/p.H297A +YLR113W HOG1 9299 hog1-C156S C156S amino_acid_mutation PMID:31772124 C156S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.372085T>A/c.466T>A/p.C156S +YLR113W HOG1 9300 hog1-C156S,C161S,C205S C156S,C161S,C205S amino_acid_mutation PMID:31772124 C156S|C161S|C205S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.372085T>A/c.466T>A/p.C156S|chrXII:g.372100T>A/c.481T>A/p.C161S|chrXII:g.372232T>A/c.613T>A/p.C205S +YLR113W HOG1 9301 hog1-C156S,C205S C156S,C205S amino_acid_mutation PMID:31772124 C156S|C205S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.372085T>A/c.466T>A/p.C156S|chrXII:g.372232T>A/c.613T>A/p.C205S +YLR113W HOG1 9302 hog1-C161S C161S amino_acid_mutation PMID:31772124 C161S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.372100T>A/c.481T>A/p.C161S +YLR113W HOG1 9303 hog1-C205S C205S amino_acid_mutation PMID:31772124 C205S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.372232T>A/c.613T>A/p.C205S +YLR113W HOG1 9304 hog1-G175D G175D amino_acid_mutation PMID:31611676 G175D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.372143G>A/c.524G>A/p.G175D +YLR113W HOG1 9305 hog1-K52M K52M amino_acid_mutation PMID:32150787 K52M False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.371774A>T/c.155A>T/p.K52M +YLR113W HOG1 9306 hog1-K52R K52R amino_acid_mutation PMID:7523111 K52R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.371774A>G/c.155A>G/p.K52R +YLR113W HOG1 9307 hog1-T174A T174A amino_acid_mutation PMID:7523111 T174A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.372139A>G/c.520A>G/p.T174A +YLR113W HOG1 9308 hog1-T174A,Y176A T174A,Y176A amino_acid_mutation PMID:32150787 T174A|Y176A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.372139A>G/c.520A>G/p.T174A|chrXII:g.372145_372146delTAinsGC/c.526_527delTAinsGC/p.Y176A +YLR113W HOG1 9309 hog1-Y176F Y176F amino_acid_mutation PMID:7523111 Y176F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.372146A>T/c.527A>T/p.Y176F +YLR116W MSL5 9317 msl5-G104R G104R amino_acid_mutation PMID:32732348 G104R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.381131G>C/c.310G>C/p.G104R +YLR120C YPS1 9323 yps1-P280S P280S amino_acid_mutation PMID:35283819 P280S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.387383G>A/c.838C>T/p.P280S +YLR121C YPS3 9324 yps3-D81A,D288A D81A,D288A amino_acid_mutation PMID:35969118 D81A|D288A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.390029T>G/c.242A>C/p.D81A|chrXII:g.389408T>G/c.863A>C/p.D288A +YLR128W DCN1 9328 dcn1-D226A D226A amino_acid_mutation PMID:18206966 D226A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.399300A>C/c.677A>C/p.D226A +YLR131C ACE2 9332 ace2-L70S L70S amino_acid_mutation PMID:19967545 L70S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.406614A>G/c.209T>C/p.L70S +YLR131C ACE2 9333 ace2-R617G R617G amino_acid_mutation PMID:35435209 R617G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.404974T>C/c.1849A>G/p.R617G +YLR131C ACE2 9334 ace2-R669* R669* partial_amino_acid_deletion PMID:35435209 R669* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXII:g.404818T>A/c.2005A>T/p.R669* +YLR136C TIS11 9336 TIS11-S64A,S65A S64A,S65A amino_acid_mutation PMID:35858543 S64A|S65A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.416469A>C/c.190T>G/p.S64A|chrXII:g.416466A>C/c.193T>G/p.S65A +YLR136C TIS11 9337 tis11-C190R C190R amino_acid_mutation PMID:29912874 C190R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.416091A>G/c.568T>C/p.C190R +YLR136C TIS11 9338 tis11-S64A,S65A,C190R S64A,S65A,C190R amino_acid_mutation PMID:35858543 S64A|S65A|C190R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.416469A>C/c.190T>G/p.S64A|chrXII:g.416466A>C/c.193T>G/p.S65A|chrXII:g.416091A>G/c.568T>C/p.C190R +YLR138W NHA1 9339 nha1-D145N D145N amino_acid_mutation PMID:34946993 D145N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.418869G>A/c.433G>A/p.D145N +YLR138W NHA1 9340 nha1-D177N D177N amino_acid_mutation PMID:34946993 D177N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.418965G>A/c.529G>A/p.D177N +YLR138W NHA1 9341 nha1-S481A S481A amino_acid_mutation PMID:34946993 S481A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.419877T>G/c.1441T>G/p.S481A +YLR149C GID11 9351 gid11-Y727D,L729D Y727D,L729D amino_acid_mutation PMID:33974913 Y727D|L729D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.437645A>C/c.2179T>G/p.Y727D|chrXII:g.437637_437639delTTAinsGAC/c.2185_2187delTTAinsGAC/p.L729D +YLR163C MAS1 9371 mas1-I398T I398T amino_acid_mutation PMID:29576218 I398T False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.492062A>G/c.1193T>C/p.I398T +YLR163C MAS1 9372 mas1-R144C R144C amino_acid_mutation PMID:29576218 R144C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.492823_492825delAGGinsTGT/c.430_432delAGGinsTGT/p.R144C +YLR163C MAS1 9373 mas1-R144H R144H amino_acid_mutation PMID:29576218 R144H False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.492823_492825delAGGinsCAT/c.430_432delAGGinsCAT/p.R144H +YLR163C MAS1 9374 mas1-T170P T170P amino_acid_mutation PMID:29576218 T170P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.492747T>G/c.508A>C/p.T170P +YLR163C MAS1 9375 mas1-V146G V146G amino_acid_mutation PMID:29576218 V146G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.492818A>C/c.437T>G/p.V146G +YLR174W IDP2 9383 idp2-R132C R132C amino_acid_mutation PMID:27427385 R132C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.504984_504986delAGAinsTGT/c.394_396delAGAinsTGT/p.R132C +YLR175W CBF5 9385 cbf5-D95A D95A amino_acid_mutation PMID:35489333 D95A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.506417A>C/c.284A>C/p.D95A +YLR178C TFS1 9390 tfs1-P154S P154S amino_acid_mutation PMID:29429618 P154S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.513362G>A/c.460C>T/p.P154S +YLR180W SAM1 9392 sam1-C91Y C91Y amino_acid_mutation PMID:32609300 C91Y False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.515533G>A/c.272G>A/p.C91Y +YLR180W SAM1 9393 sam1-D121N D121N amino_acid_mutation PMID:32609300 D121N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.515622G>A/c.361G>A/p.D121N +YLR180W SAM1 9394 sam1-K252M K252M amino_acid_mutation PMID:32609300 K252M False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.516016A>T/c.755A>T/p.K252M +YLR181C VTA1 9395 vta1-L320E L320E amino_acid_mutation PMID:18194651 L320E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.516712_516713delTTinsGA/c.958_959delTTinsGA/p.L320E +YLR181C VTA1 9396 vta1-Y303A Y303A amino_acid_mutation PMID:18194651 Y303A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.516763_516764delTAinsGC/c.907_908delTAinsGC/p.Y303A +YLR182W SWI6 9402 swi6-C404A C404A amino_acid_mutation PMID:21147769 C404A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.519149_519150delTGinsGC/c.1210_1211delTGinsGC/p.C404A +YLR182W SWI6 9403 swi6-S160A S160A amino_acid_mutation PMID:22037179,PMID:8590795 S160A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.518417T>G/c.478T>G/p.S160A +YLR182W SWI6 9404 swi6-S160D S160D amino_acid_mutation PMID:22037179,PMID:8590795 S160D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.518417_518418delTCinsGA/c.478_479delTCinsGA/p.S160D +YLR188W MDL1 9413 mdl1-D598A D598A amino_acid_mutation PMID:11251115 D598A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.530092A>C/c.1793A>C/p.D598A +YLR188W MDL1 9414 mdl1-G467V G467V amino_acid_mutation PMID:11251115 G467V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.529699G>T/c.1400G>T/p.G467V +YLR188W MDL1 9415 mdl1-S575N S575N amino_acid_mutation PMID:11251115 S575N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.530022_530023delTCinsAA/c.1723_1724delTCinsAA/p.S575N +YLR190W MMR1 9416 mmr1-S414A S414A amino_acid_mutation PMID:35422486 S414A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.536453T>G/c.1240T>G/p.S414A +YLR193C UPS1 9417 ups1-E108D E108D amino_acid_mutation PMID:30850607 E108D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.540213T>G/c.324A>C/p.E108D +YLR193C UPS1 9418 ups1-K58V K58V amino_acid_mutation PMID:30850607 K58V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.540364_540365delAAinsGT/c.172_173delAAinsGT/p.K58V +YLR193C UPS1 9419 ups1-M135K M135K amino_acid_mutation PMID:30850607 M135K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.540133A>T/c.404T>A/p.M135K +YLR193C UPS1 9420 ups1-T76A T76A amino_acid_mutation PMID:30850607 T76A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.540311T>C/c.226A>G/p.T76A +YLR193C UPS1 9421 ups1-T95S T95S amino_acid_mutation PMID:30850607 T95S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.540253G>C/c.284C>G/p.T95S +YLR203C MSS51 9438 mss51-C96S C96S amino_acid_mutation PMID:23217259 C96S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.551675A>T/c.286T>A/p.C96S +YLR206W ENT2 9439 ent2-S187D, S218D S187D, S218D amino_acid_mutation PMID:32694166 S187D|S218D False S187D,S218D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.555136_555137delAGinsGA/c.559_560delAGinsGA/p.S187D|chrXII:g.555229_555230delAGinsGA/c.652_653delAGinsGA/p.S218D +YLR207W HRD3 9440 hrd3-E552C E552C amino_acid_mutation PMID:35970394 E552C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.558441_558443delGAGinsTGT/c.1654_1656delGAGinsTGT/p.E552C +YLR207W HRD3 9441 hrd3-F207C F207C amino_acid_mutation PMID:35970394 F207C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.557407T>G/c.620T>G/p.F207C +YLR207W HRD3 9442 hrd3-F367C F367C amino_acid_mutation PMID:35970394 F367C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.557887T>G/c.1100T>G/p.F367C +YLR207W HRD3 9443 hrd3-H663C H663C amino_acid_mutation PMID:35970394 H663C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.558774_558775delCAinsTG/c.1987_1988delCAinsTG/p.H663C +YLR207W HRD3 9444 hrd3-I519C I519C amino_acid_mutation PMID:35970394 I519C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.558342_558343delATinsTG/c.1555_1556delATinsTG/p.I519C +YLR207W HRD3 9445 hrd3-K223C K223C amino_acid_mutation PMID:35970394 K223C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.557454_557456delAAGinsTGT/c.667_669delAAGinsTGT/p.K223C +YLR207W HRD3 9446 hrd3-K254C K254C amino_acid_mutation PMID:35970394 K254C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.557547_557549delAAAinsTGT/c.760_762delAAAinsTGT/p.K254C +YLR207W HRD3 9447 hrd3-K499C K499C amino_acid_mutation PMID:35970394 K499C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.558282_558284delAAGinsTGT/c.1495_1497delAAGinsTGT/p.K499C +YLR207W HRD3 9448 hrd3-K515C K515C amino_acid_mutation PMID:35970394 K515C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.558330_558332delAAAinsTGT/c.1543_1545delAAAinsTGT/p.K515C +YLR207W HRD3 9449 hrd3-K592C K592C amino_acid_mutation PMID:35970394 K592C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.558561_558563delAAAinsTGT/c.1774_1776delAAAinsTGT/p.K592C +YLR207W HRD3 9450 hrd3-L478C L478C amino_acid_mutation PMID:35970394 L478C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.558220_558221delTGinsGT/c.1433_1434delTGinsGT/p.L478C +YLR207W HRD3 9451 hrd3-L624C L624C amino_acid_mutation PMID:35970394 L624C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.558658_558659delTGinsGT/c.1871_1872delTGinsGT/p.L624C +YLR207W HRD3 9452 hrd3-L802C L802C amino_acid_mutation PMID:35970394 L802C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.559192_559193delTAinsGT/c.2405_2406delTAinsGT/p.L802C +YLR207W HRD3 9453 hrd3-M393C M393C amino_acid_mutation PMID:35970394 M393C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.557964_557966delATGinsTGT/c.1177_1179delATGinsTGT/p.M393C +YLR207W HRD3 9454 hrd3-Q183C Q183C amino_acid_mutation PMID:35970394 Q183C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.557334_557336delCAAinsTGT/c.547_549delCAAinsTGT/p.Q183C +YLR207W HRD3 9455 hrd3-Q444C Q444C amino_acid_mutation PMID:35970394 Q444C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.558057_558059delCAAinsTGT/c.1330_1332delCAAinsTGT/p.Q444C +YLR207W HRD3 9456 hrd3-R270C R270C amino_acid_mutation PMID:35970394 R270C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.557595_557597delAGAinsTGT/c.808_810delAGAinsTGT/p.R270C +YLR207W HRD3 9457 hrd3-V259C V259C amino_acid_mutation PMID:35970394 V259C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.557562_557563delGTinsTG/c.775_776delGTinsTG/p.V259C +YLR207W HRD3 9458 hrd3-Y107C Y107C amino_acid_mutation PMID:35970394 Y107C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.557107A>G/c.320A>G/p.Y107C +YLR207W HRD3 9459 hrd3-Y236C Y236C amino_acid_mutation PMID:35970394 Y236C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.557494A>G/c.707A>G/p.Y236C +YLR207W HRD3 9460 hrd3-Y323C Y323C amino_acid_mutation PMID:35970394 Y323C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.557755A>G/c.968A>G/p.Y323C +YLR207W HRD3 9461 hrd3-Y507C Y507C amino_acid_mutation PMID:35970394 Y507C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.558307A>G/c.1520A>G/p.Y507C +YLR208W SEC13 9463 sec13-G176R G176R amino_acid_mutation PMID:35105807 G176R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.560076G>A/c.526G>A/p.G176R +YLR212C TUB4 9466 tub4-S100E S100E amino_acid_mutation PMID:21573187 S100E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.565982_565984delAGCinsGAG/c.298_300delAGCinsGAG/p.S100E +YLR212C TUB4 9467 tub4-S360D S360D amino_acid_mutation PMID:21700874,PMID:28900268 S360D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.565202_565204delTCGinsGAC/c.1078_1080delTCGinsGAC/p.S360D +YLR212C TUB4 9468 tub4-S74E S74E amino_acid_mutation PMID:21573187 S74E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.566060_566062delAGTinsGAG/c.220_222delAGTinsGAG/p.S74E +YLR212C TUB4 9469 tub4-Y362E Y362E amino_acid_mutation PMID:28900268 Y362E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.565196_565198delTACinsGAG/c.1084_1086delTACinsGAG/p.Y362E +YLR212C TUB4 9470 tub4-Y445D Y445D amino_acid_mutation PMID:11709183,PMID:21552543,PMID:25721128,PMID:27708008,PMID:28900268,PMID:29127738 Y445D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.564949A>C/c.1333T>G/p.Y445D +YLR215C CDC123 9475 cdc123-T274A T274A amino_acid_mutation PMID:15319434 T274A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.571039T>C/c.820A>G/p.T274A +YLR223C IFH1 9482 ifh1-S969A S969A amino_acid_mutation PMID:24035395 S969A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.582586A>C/c.2905T>G/p.S969A +YLR229C CDC42 9523 cdc42-C157R C157R amino_acid_mutation PMID:9422741 C157R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604319A>G/c.469T>C/p.C157R +YLR229C CDC42 9524 cdc42-D118A D118A amino_acid_mutation PMID:9422741 D118A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604435T>G/c.353A>C/p.D118A +YLR229C CDC42 9525 cdc42-D118A, T35A D118A, T35A amino_acid_mutation PMID:9422741 D118A|T35A False D118A,T35A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604435T>G/c.353A>C/p.D118A|chrXII:g.604685T>C/c.103A>G/p.T35A +YLR229C CDC42 9526 cdc42-F37I F37I amino_acid_mutation PMID:16571678 F37I False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604679A>T/c.109T>A/p.F37I +YLR229C CDC42 9527 cdc42-G12V G12V amino_acid_mutation PMID:9422741 G12V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604753C>A/c.35G>T/p.G12V +YLR229C CDC42 9528 cdc42-G12V, C157R G12V, C157R amino_acid_mutation PMID:9422741 G12V|C157R False G12V,C157R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604753C>A/c.35G>T/p.G12V|chrXII:g.604319A>G/c.469T>C/p.C157R +YLR229C CDC42 9530 cdc42-G12V, S86P G12V, S86P amino_acid_mutation PMID:9422741 G12V|S86P False G12V,S86P amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604753C>A/c.35G>T/p.G12V|chrXII:g.604532A>G/c.256T>C/p.S86P +YLR229C CDC42 9531 cdc42-G12V, S89P G12V, S89P amino_acid_mutation PMID:9422741 G12V|S89P False G12V,S89P amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604753C>A/c.35G>T/p.G12V|chrXII:g.604523A>G/c.265T>C/p.S89P +YLR229C CDC42 9532 cdc42-G12V, T35A G12V, T35A amino_acid_mutation PMID:9422741 G12V|T35A False G12V,T35A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604753C>A/c.35G>T/p.G12V|chrXII:g.604685T>C/c.103A>G/p.T35A +YLR229C CDC42 9533 cdc42-K16R K16R amino_acid_mutation PMID:37114947 K16R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604741T>C/c.47A>G/p.K16R +YLR229C CDC42 9534 cdc42-K183A,K184A,K186A,K187A K183A,K184A,K186A,K187A amino_acid_mutation PMID:37114947 K183A|K184A|K186A|K187A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604240_604241delAAinsGC/c.547_548delAAinsGC/p.K183A|chrXII:g.604339_604340delAAinsGC/c.550_551delAAinsGC/p.K184A|chrXII:g.604231_604232delAAinsGC/c.556_557delAAinsGC/p.K186A|chrXII:g.604330_604331delAAinsGC/c.559_560delAAinsGC/p.K187A +YLR229C CDC42 9535 cdc42-Q61L Q61L amino_acid_mutation PMID:34010635 Q61L False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604708T>A/c.182A>T/p.Q61L +YLR229C CDC42 9536 cdc42-R163A,K166A R163A,K166A amino_acid_mutation PMID:37114947 R163A|K166A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604300_604301delCGinsGC/c.487_488delCGinsGC/p.R163A|chrXII:g.604291_604292delAAinsGC/c.496_497delAAinsGC/p.K166A +YLR229C CDC42 9537 cdc42-S71P S71P amino_acid_mutation PMID:16200521 S71P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604577A>G/c.211T>C/p.S71P +YLR229C CDC42 9538 cdc42-S86P S86P amino_acid_mutation PMID:9422741 S86P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604532A>G/c.256T>C/p.S86P +YLR229C CDC42 9539 cdc42-S89P S89P amino_acid_mutation PMID:9422741 S89P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604523A>G/c.265T>C/p.S89P +YLR229C CDC42 9540 cdc42-T17N T17N amino_acid_mutation PMID:34010635 T17N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604737_604738delCGinsAC/c.50_51delCGinsAC/p.T17N +YLR229C CDC42 9541 cdc42-T35A T35A amino_acid_mutation PMID:9422741 T35A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604685T>C/c.103A>G/p.T35A +YLR229C CDC42 9542 cdc42-V36A,A41G V36A,A41G amino_acid_mutation PMID:16571678 V36A|A41G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604681A>G/c.107T>C/p.V36A|chrXII:g.604666G>C/c.122C>G/p.A41G +YLR229C CDC42 9543 cdc42-V36M V36M amino_acid_mutation PMID:16571678 V36M False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604682C>T/c.106G>A/p.V36M +YLR229C CDC42 9544 cdc42-V36T V36T amino_acid_mutation PMID:32079658 V36T False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604681_604682delGTinsAC/c.106_107delGTinsAC/p.V36T +YLR229C CDC42 9545 cdc42-W97R W97R amino_acid_mutation PMID:9178507 W97R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604499A>T/c.289T>A/p.W97R +YLR229C CDC42 9546 cdc42-Y40F Y40F amino_acid_mutation PMID:16200521 Y40F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604669T>A/c.119A>T/p.Y40F +YLR233C EST1 9548 est1-D514A D514A amino_acid_mutation PMID:21220516 D514A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.607984T>G/c.1541A>C/p.D514A +YLR234W TOP3 9549 top3-Y356F Y356F amino_acid_mutation PMID:16899506,PMID:20811460 Y356F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.610849A>T/c.1067A>T/p.Y356F +YLR237W THI7 9553 thi7-A447P A447P amino_acid_mutation PMID:31658248 A447P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.613705G>C/c.1339G>C/p.A447P +YLR237W THI7 9554 thi7-D85G D85G amino_acid_mutation PMID:31658248 D85G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.612620A>G/c.254A>G/p.D85G +YLR237W THI7 9555 thi7-G59R G59R amino_acid_mutation PMID:31658248 G59R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.612541G>C/c.175G>C/p.G59R +YLR237W THI7 9556 thi7-M247I M247I amino_acid_mutation PMID:31658248 M247I False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.613107G>C/c.741G>C/p.M247I +YLR237W THI7 9557 thi7-M399R M399R amino_acid_mutation PMID:31658248 M399R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.613562T>G/c.1196T>G/p.M399R +YLR237W THI7 9558 thi7-N133K N133K amino_acid_mutation PMID:31658248 N133K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.612765C>G/c.399C>G/p.N133K +YLR237W THI7 9559 thi7-N350K N350K amino_acid_mutation PMID:31658248 N350K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.613416C>G/c.1050C>G/p.N350K +YLR237W THI7 9560 thi7-P286Q P286Q amino_acid_mutation PMID:31658248 P286Q False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.613223C>A/c.857C>A/p.P286Q +YLR237W THI7 9561 thi7-V398F V398F amino_acid_mutation PMID:31658248 V398F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.613558G>T/c.1192G>T/p.V398F +YLR239C LIP2 9563 lip2-G172V G172V amino_acid_mutation PMID:33232753 G172V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.616804C>A/c.515G>T/p.G172V +YLR239C LIP2 9564 lip2-G235D G235D amino_acid_mutation PMID:32303542 G235D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.616615C>T/c.704G>A/p.G235D +YLR240W VPS34 9565 VPS34-D591E D591E amino_acid_mutation PMID:30923567 D591E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.619305C>G/c.1773C>G/p.D591E +YLR240W VPS34 9568 vps34-A287D A287D amino_acid_mutation PMID:33237833 A287D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.618392_618393delCAinsAC/c.860_861delCAinsAC/p.A287D +YLR240W VPS34 9569 vps34-D749E D749E amino_acid_mutation PMID:7721937,PMID:8385367 D749E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.619779C>G/c.2247C>G/p.D749E +YLR240W VPS34 9571 vps34-F761Y F761Y amino_acid_mutation PMID:33237833 F761Y False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.619781T>A/c.2282T>A/p.F761Y +YLR240W VPS34 9573 vps34-K759D K759D amino_acid_mutation PMID:33237833 K759D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.619807_619809delAAAinsGAC/c.2275_2277delAAAinsGAC/p.K759D +YLR240W VPS34 9574 vps34-N736K N736K amino_acid_mutation PMID:18533003,PMID:7721937 N736K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.619740C>G/c.2208C>G/p.N736K +YLR240W VPS34 9575 vps34-R283E R283E amino_acid_mutation PMID:33237833 R283E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.618379_618380delAGinsGA/c.847_848delAGinsGA/p.R283E +YLR240W VPS34 9576 vps34-R283E,A287D R283E,A287D amino_acid_mutation PMID:33237833 R283E|A287D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.618379_618380delAGinsGA/c.847_848delAGinsGA/p.R283E|chrXII:g.618392_618393delCAinsAC/c.860_861delCAinsAC/p.A287D +YLR240W VPS34 9577 vps34-Y501C Y501C amino_acid_mutation PMID:33237833 Y501C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.619034A>G/c.1502A>G/p.Y501C +YLR242C ARV1 9580 arv1-C27A C27A amino_acid_mutation PMID:32678853 C27A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.623804_623805delTGinsGC/c.79_80delTGinsGC/p.C27A +YLR242C ARV1 9581 arv1-C3A C3A amino_acid_mutation PMID:32678853 C3A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.623876_623877delTGinsGC/c.7_8delTGinsGC/p.C3A +YLR242C ARV1 9582 arv1-I47A I47A amino_acid_mutation PMID:32678853 I47A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.623744_623745delATinsGC/c.139_140delATinsGC/p.I47A +YLR242C ARV1 9583 arv1-L13A L13A amino_acid_mutation PMID:32678853 L13A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.623846_623847delCTinsGC/c.37_38delCTinsGC/p.L13A +YLR242C ARV1 9584 arv1-N63Q N63Q amino_acid_mutation PMID:32678853 N63Q False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.623775_623777delAATinsCAA/c.187_189delAATinsCAA/p.N63Q +YLR242C ARV1 9585 arv1-Y37A Y37A amino_acid_mutation PMID:32678853 Y37A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.623774_623775delTAinsGC/c.109_110delTAinsGC/p.Y37A +YLR243W GPN3 9592 gpn3-E110K E110K amino_acid_mutation PMID:23324351 E110K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.624530G>A/c.328G>A/p.E110K +YLR244C MAP1 9593 map1-T18I T18I amino_acid_mutation PMID:33973343 T18I False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.626279G>A/c.53C>T/p.T18I +YLR247C IRC20 9594 irc20-C1239A C1239A amino_acid_mutation PMID:24155900,PMID:33330615 C1239A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.629639_629640delTGinsGC/c.3715_3716delTGinsGC/p.C1239A +YLR249W YEF3 9597 yef3-F650S F650S amino_acid_mutation PMID:23962978,PMID:33751052 F650S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.638662T>C/c.1949T>C/p.F650S +YLR249W YEF3 9598 yef3-P915L P915L amino_acid_mutation PMID:16954224 P915L False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.639523C>T/c.2744C>T/p.P915L +YLR251W SYM1 9601 sym1-A168D A168D amino_acid_mutation PMID:30273399 A168D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.641966_641967delCAinsAC/c.503_504delCAinsAC/p.A168D +YLR251W SYM1 9602 sym1-G24W G24W amino_acid_mutation PMID:30273399 G24W False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.641533_641535delGGTinsTGG/c.70_72delGGTinsTGG/p.G24W +YLR251W SYM1 9603 sym1-N172K N172K amino_acid_mutation PMID:16582910,PMID:30273399 N172K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.641979C>G/c.516C>G/p.N172K +YLR251W SYM1 9604 sym1-P104L P104L amino_acid_mutation PMID:30273399 P104L False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.641774C>T/c.311C>T/p.P104L +YLR251W SYM1 9605 sym1-R51Q R51Q amino_acid_mutation PMID:16582910,PMID:30273399 R51Q False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.641614_641615delAGinsCA/c.151_152delAGinsCA/p.R51Q +YLR251W SYM1 9606 sym1-R51W R51W amino_acid_mutation PMID:16582910,PMID:30273399,PMID:34830106 R51W False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.641614A>T/c.151A>T/p.R51W +YLR251W SYM1 9607 sym1-S176F S176F amino_acid_mutation PMID:30273399 S176F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.641990C>T/c.527C>T/p.S176F +YLR253W CQD2 9608 cqd2-A187G A187G amino_acid_mutation PMID:34362905 A187G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.643186C>G/c.560C>G/p.A187G +YLR253W CQD2 9609 cqd2-D344N D344N amino_acid_mutation PMID:34362905 D344N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.643656G>A/c.1030G>A/p.D344N +YLR253W CQD2 9610 cqd2-D372N D372N amino_acid_mutation PMID:34362905 D372N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.643740G>A/c.1114G>A/p.D372N +YLR253W CQD2 9611 cqd2-K125H K125H amino_acid_mutation PMID:34362905 K125H False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.642887_642889delAAAinsCAT/c.373_375delAAAinsCAT/p.K125H +YLR253W CQD2 9612 cqd2-K210R K210R amino_acid_mutation PMID:34362905 K210R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.643255A>G/c.629A>G/p.K210R +YLR253W CQD2 9613 cqd2-Q128A Q128A amino_acid_mutation PMID:34362905 Q128A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.643008_643009delCAinsGC/c.382_383delCAinsGC/p.Q128A +YLR253W CQD2 9614 cqd2-S188A S188A amino_acid_mutation PMID:34362905 S188A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.643188T>G/c.562T>G/p.S188A +YLR259C HSP60 9619 hsp60-A144V A144V amino_acid_mutation PMID:14597775 A144V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.664572G>A/c.431C>T/p.A144V +YLR262C YPT6 9625 ypt6-T24N T24N amino_acid_mutation PMID:24924636 T24N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.668820_668821delCAinsAC/c.71_72delCAinsAC/p.T24N +YLR265C NEJ1 9629 nej1-S298A S298A amino_acid_mutation PMID:34244791 S298A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.674563_674564delAGinsGC/c.892_893delAGinsGC/p.S298A +YLR265C NEJ1 9630 nej1-S298E S298E amino_acid_mutation PMID:34244791 S298E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.674562_674564delAGTinsGAG/c.892_894delAGTinsGAG/p.S298E +YLR270W DCS1 9636 DCS1-Y212STOP Y212STOP partial_amino_acid_deletion PMID:29771304 Y212STOP False Y212* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrXII:g.681821C>A/c.636C>A/p.Y212* +YLR272C YCS4 9641 ycs4-K1048E K1048E amino_acid_mutation PMID:34723504 K1048E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.684061T>C/c.3142A>G/p.K1048E +YLR272C YCS4 9642 ycs4-K1050E K1050E amino_acid_mutation PMID:34723504 K1050E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.684055T>C/c.3148A>G/p.K1050E +YLR272C YCS4 9643 ycs4-K1104E K1104E amino_acid_mutation PMID:34723504 K1104E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.683893T>C/c.3310A>G/p.K1104E +YLR272C YCS4 9644 ycs4-K1108E K1108E amino_acid_mutation PMID:34723504 K1108E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.683881T>C/c.3322A>G/p.K1108E +YLR272C YCS4 9645 ycs4-K1120E K1120E amino_acid_mutation PMID:34723504 K1120E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.683845T>C/c.3358A>G/p.K1120E +YLR273C PIG1 9647 pig1-S631N S631N amino_acid_mutation PMID:35283819 S631N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.689138C>T/c.1892G>A/p.S631N +YLR274W MCM5 9652 mcm5-C183Y C183Y amino_acid_mutation PMID:18660534 C183Y False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.692102G>A/c.548G>A/p.C183Y +YLR274W MCM5 9653 mcm5-R549A R549A amino_acid_mutation PMID:34882090 R549A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.693199_693200delCGinsGC/c.1645_1646delCGinsGC/p.R549A +YLR275W SMD2 9657 smd2-D99A D99A amino_acid_mutation PMID:27974620 D99A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.694763A>C/c.296A>C/p.D99A +YLR275W SMD2 9658 smd2-K59N K59N amino_acid_mutation PMID:31611676 K59N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.694644A>C/c.177A>C/p.K59N +YLR275W SMD2 9659 smd2-N66A N66A amino_acid_mutation PMID:27974620 N66A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.694663_694664delAAinsGC/c.196_197delAAinsGC/p.N66A +YLR275W SMD2 9660 smd2-R49A R49A amino_acid_mutation PMID:27974620 R49A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.694612_694613delAGinsGC/c.145_146delAGinsGC/p.R49A +YLR275W SMD2 9661 smd2-R97K R97K amino_acid_mutation PMID:27974620 R97K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.694757G>A/c.290G>A/p.R97K +YLR277C YSH1 9671 ysh1-L14S L14S amino_acid_mutation PMID:28877480 L14S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.699613A>G/c.41T>C/p.L14S +YLR277C YSH1 9672 ysh1-L439S L439S amino_acid_mutation PMID:28877480 L439S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.698180A>G/c.1316T>C/p.L439S +YLR286C CTS1 9678 cts1-G109D G109D amino_acid_mutation PMID:35435209 G109D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.709811C>T/c.326G>A/p.G109D +YLR291C GCD7 9683 gcd7-164-165 164-165 partial_amino_acid_deletion PMID:20805354 164-165 False partial_amino_acid_deletion:multiple_aa partial_amino_acid_deletion chrXII:g.719033_719038delTACTAG/c.490_495delCTAGTA/p.L164_V165delLV +YLR291C GCD7 9686 gcd7-262-263 262-263 partial_amino_acid_deletion PMID:20805354 262-263 False partial_amino_acid_deletion:multiple_aa partial_amino_acid_deletion chrXII:g.718739_718744delCTAGGG/c.784_789delCCCTAG/p.P262_*263delP* +YLR291C GCD7 9689 gcd7-358-360 358-360 partial_amino_acid_deletion PMID:20805354 358-360 False partial_amino_acid_deletion:multiple_aa partial_amino_acid_deletion chrXII:g.718448_718456delCGGTAATTT/c.1073_1081delAATTACCGA/p.K358_P360delKLP +YLR291C GCD7 9693 gcd7-E239G E239G amino_acid_mutation PMID:14993275,PMID:30115954 E239G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.718747T>C/c.716A>G/p.E239G +YLR291C GCD7 9694 gcd7-G354V G354V amino_acid_mutation PMID:14993275,PMID:30115954 G354V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.718402C>A/c.1061G>T/p.G354V +YLR291C GCD7 9695 gcd7-K300R K300R amino_acid_mutation PMID:14993275,PMID:30115954 K300R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.718564T>C/c.899A>G/p.K300R +YLR291C GCD7 9696 gcd7-V341D V341D amino_acid_mutation PMID:14993275,PMID:30115954 V341D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.718441A>T/c.1022T>A/p.V341D +YLR293C GSP1 9703 gsp1-A183P A183P amino_acid_mutation PMID:31611676 A183P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.720884C>G/c.547G>C/p.A183P +YLR293C GSP1 9704 gsp1-K62E K62E amino_acid_mutation PMID:31372715 K62E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.721247T>C/c.184A>G/p.K62E +YLR293C GSP1 9705 gsp1-p162l p162l amino_acid_mutation PMID:27708008 p162l False P162L amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.720946G>A/c.485C>T/p.P162L +YLR305C STT4 9715 stt4-D1754A D1754A amino_acid_mutation PMID:32303746 D1754A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.738603T>G/c.5261A>C/p.D1754A +YLR305C STT4 9716 stt4-G1782D G1782D amino_acid_mutation PMID:32303746 G1782D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.738519C>T/c.5345G>A/p.G1782D +YLR310C CDC25 9719 CDC25-R1489E R1489E amino_acid_mutation PMID:9047390 R1489E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.752528_752529delAGinsGA/c.4465_4466delAGinsGA/p.R1489E +YLR310C CDC25 9728 cdc25-A1403P A1403P amino_acid_mutation PMID:27939892 A1403P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.752787C>G/c.4207G>C/p.A1403P +YLR310C CDC25 9729 cdc25-E916STOP E916STOP partial_amino_acid_deletion PMID:35749464 E916STOP False E916* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrXII:g.754248C>A/c.2746G>T/p.E916* +YLR310C CDC25 9731 cdc25-I534K I534K amino_acid_mutation PMID:35283819 I534K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.755393A>T/c.1601T>A/p.I534K +YLR310C CDC25 9732 cdc25-N1393T N1393T amino_acid_mutation PMID:26984760 N1393T False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.752816T>G/c.4178A>C/p.N1393T +YLR310C CDC25 9733 cdc25-T1490P T1490P amino_acid_mutation PMID:34502388 T1490P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.752526T>G/c.4468A>C/p.T1490P +YLR310C CDC25 9735 cdc25-W1416C W1416C amino_acid_mutation PMID:26984760 W1416C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.752746C>A/c.4248G>T/p.W1416C +YLR314C CDC3 9749 cdc3-D210G D210G amino_acid_mutation PMID:24398420,PMID:31990274,PMID:34544131,PMID:36870416 D210G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.763509T>C/c.629A>G/p.D210G +YLR314C CDC3 9750 cdc3-G365R G365R amino_acid_mutation PMID:27398993 G365R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.763045C>T/c.1093G>A/p.G365R +YLR318W EST2 9755 est2-A113D A113D amino_acid_mutation PMID:12529422 A113D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.766879C>A/c.338C>A/p.A113D +YLR318W EST2 9756 est2-D530A D530A amino_acid_mutation PMID:34718547 D530A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.768130A>C/c.1589A>C/p.D530A +YLR318W EST2 9757 est2-D670A D670A amino_acid_mutation PMID:34718547 D670A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.768550A>C/c.2009A>C/p.D670A +YLR318W EST2 9758 est2-D671A D671A amino_acid_mutation PMID:34718547 D671A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.768553A>C/c.2012A>C/p.D671A +YLR318W EST2 9759 est2-F143A F143A amino_acid_mutation PMID:12529422 F143A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.766968_766969delTTinsGC/c.427_428delTTinsGC/p.F143A +YLR318W EST2 9760 est2-F286A F286A amino_acid_mutation PMID:12529422 F286A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.767397_767398delTTinsGC/c.856_857delTTinsGC/p.F286A +YLR318W EST2 9761 est2-G112A G112A amino_acid_mutation PMID:12529422 G112A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.766876G>C/c.335G>C/p.G112A +YLR318W EST2 9762 est2-G85A G85A amino_acid_mutation PMID:12529422 G85A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.766795G>C/c.254G>C/p.G85A +YLR318W EST2 9763 est2-L257A L257A amino_acid_mutation PMID:12529422 L257A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.767310_767311delTTinsGC/c.769_770delTTinsGC/p.L257A +YLR318W EST2 9764 est2-L330A L330A amino_acid_mutation PMID:12529422 L330A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.767529_767530delTTinsGC/c.988_989delTTinsGC/p.L330A +YLR318W EST2 9765 est2-L342A L342A amino_acid_mutation PMID:12529422 L342A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.767565_767566delTTinsGC/c.1024_1025delTTinsGC/p.L342A +YLR318W EST2 9766 est2-N305A N305A amino_acid_mutation PMID:12529422 N305A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.767454_767455delAAinsGC/c.913_914delAAinsGC/p.N305A +YLR318W EST2 9767 est2-N80D N80D amino_acid_mutation PMID:12529422 N80D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.766779A>G/c.238A>G/p.N80D +YLR318W EST2 9768 est2-P223A P223A amino_acid_mutation PMID:12529422 P223A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.767208C>G/c.667C>G/p.P223A +YLR318W EST2 9769 est2-P230A P230A amino_acid_mutation PMID:12529422 P230A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.767229C>G/c.688C>G/p.P230A +YLR318W EST2 9770 est2-P296A P296A amino_acid_mutation PMID:12529422 P296A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.767427C>G/c.886C>G/p.P296A +YLR318W EST2 9771 est2-T135A T135A amino_acid_mutation PMID:12529422 T135A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.766944A>G/c.403A>G/p.T135A +YLR318W EST2 9772 est2-W341A W341A amino_acid_mutation PMID:12529422 W341A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.767562_767563delTGinsGC/c.1021_1022delTGinsGC/p.W341A +YLR318W EST2 9773 est2-W348A W348A amino_acid_mutation PMID:12529422 W348A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.767583_767584delTGinsGC/c.1042_1043delTGinsGC/p.W348A +YLR324W PEX30 9784 pex30-S511A S511A amino_acid_mutation PMID:35218395 S511A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.780678_780679delAGinsGC/c.1531_1532delAGinsGC/p.S511A +YLR324W PEX30 9785 pex30-S511D S511D amino_acid_mutation PMID:35218395 S511D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.780678_780679delAGinsGA/c.1531_1532delAGinsGA/p.S511D +YLR324W PEX30 9786 pex30-T60A,S61A T60A,S61A amino_acid_mutation PMID:35218395 T60A|S61A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.779392A>G/c.178A>G/p.T60A|chrXII:g.779395T>G/c.181T>G/p.S61A +YLR324W PEX30 9787 pex30-T60A,S61A,S511A T60A,S61A,S511A amino_acid_mutation PMID:35218395 T60A|S61A|S511A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.779392A>G/c.178A>G/p.T60A|chrXII:g.779395T>G/c.181T>G/p.S61A|chrXII:g.780678_780679delAGinsGC/c.1531_1532delAGinsGC/p.S511A +YLR324W PEX30 9788 pex30-T60D,S61D T60D,S61D amino_acid_mutation PMID:35218395 T60D|S61D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.779392_779393delACinsGA/c.178_179delACinsGA/p.T60D|chrXII:g.779395_779397delTCGinsGAC/c.181_183delTCGinsGAC/p.S61D +YLR324W PEX30 9789 pex30-T60D,S61D,S511D T60D,S61D,S511D amino_acid_mutation PMID:35218395 T60D|S61D|S511D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.779392_779393delACinsGA/c.178_179delACinsGA/p.T60D|chrXII:g.779395_779397delTCGinsGAC/c.181_183delTCGinsGAC/p.S61D|chrXII:g.780678_780679delAGinsGA/c.1531_1532delAGinsGA/p.S511D +YLR328W NMA1 9791 nma1-H181A H181A amino_acid_mutation PMID:33749726 H181A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.785453_785454delCAinsGC/c.541_542delCAinsGC/p.H181A +YLR335W NUP2 9796 nup2-A102P A102P amino_acid_mutation PMID:35302609 A102P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797733G>C/c.304G>C/p.A102P +YLR335W NUP2 9797 nup2-D115G D115G amino_acid_mutation PMID:35302609 D115G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797743A>G/c.344A>G/p.D115G +YLR335W NUP2 9798 nup2-D115V D115V amino_acid_mutation PMID:35302609 D115V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797743A>T/c.344A>T/p.D115V +YLR335W NUP2 9799 nup2-D115Y D115Y amino_acid_mutation PMID:35302609 D115Y False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797742G>T/c.343G>T/p.D115Y +YLR335W NUP2 9800 nup2-F100P F100P amino_acid_mutation PMID:35302609 F100P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797727_797728delTTinsCC/c.298_299delTTinsCC/p.F100P +YLR335W NUP2 9801 nup2-F100S F100S amino_acid_mutation PMID:35302609 F100S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797728T>C/c.299T>C/p.F100S +YLR335W NUP2 9802 nup2-F120Y F120Y amino_acid_mutation PMID:35302609 F120Y False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797788T>A/c.359T>A/p.F120Y +YLR335W NUP2 9803 nup2-K101E K101E amino_acid_mutation PMID:35302609 K101E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797730A>G/c.301A>G/p.K101E +YLR335W NUP2 9804 nup2-K3E,R4D K3E,R4D amino_acid_mutation PMID:32734712 K3E|R4D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797436A>G/c.7A>G/p.K3E|chrXII:g.797439_797441delAGAinsGAC/c.10_12delAGAinsGAC/p.R4D +YLR335W NUP2 9805 nup2-K3E,R4D,R38A,R39A,R46A,R47A K3E,R4D,R38A,R39A,R46A,R47A amino_acid_mutation PMID:32734712 K3E|R4D|R38A|R39A|R46A|R47A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797436A>G/c.7A>G/p.K3E|chrXII:g.797439_797441delAGAinsGAC/c.10_12delAGAinsGAC/p.R4D|chrXII:g.797541_797542delAGinsGC/c.112_113delAGinsGC/p.R38A|chrXII:g.797544_797545delAGinsGC/c.115_116delAGinsGC/p.R39A|chrXII:g.797565_797566delCGinsGC/c.136_137delCGinsGC/p.R46A|chrXII:g.797568_797569delAGinsGC/c.139_140delAGinsGC/p.R47A +YLR335W NUP2 9806 nup2-L116S L116S amino_acid_mutation PMID:35302609 L116S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797776T>C/c.347T>C/p.L116S +YLR335W NUP2 9807 nup2-L119P L119P amino_acid_mutation PMID:35302609 L119P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797755T>C/c.356T>C/p.L119P +YLR335W NUP2 9808 nup2-L93P L93P amino_acid_mutation PMID:35302609 L93P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797707T>C/c.278T>C/p.L93P +YLR335W NUP2 9809 nup2-L96S L96S amino_acid_mutation PMID:35302609 L96S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797716T>C/c.287T>C/p.L96S +YLR335W NUP2 9810 nup2-L98P L98P amino_acid_mutation PMID:35302609 L98P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797722T>C/c.293T>C/p.L98P +YLR335W NUP2 9811 nup2-N97D N97D amino_acid_mutation PMID:35302609 N97D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797718A>G/c.289A>G/p.N97D +YLR335W NUP2 9812 nup2-N97I N97I amino_acid_mutation PMID:35302609 N97I False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797719A>T/c.290A>T/p.N97I +YLR335W NUP2 9813 nup2-N97S N97S amino_acid_mutation PMID:35302609 N97S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797719A>G/c.290A>G/p.N97S +YLR335W NUP2 9814 nup2-N97Y N97Y amino_acid_mutation PMID:35302609 N97Y False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797718A>T/c.289A>T/p.N97Y +YLR335W NUP2 9815 nup2-R117W R117W amino_acid_mutation PMID:35302609 R117W False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797778A>T/c.349A>T/p.R117W +YLR335W NUP2 9816 nup2-R38A,R39A,R46A,R47A R38A,R39A,R46A,R47A amino_acid_mutation PMID:32734712 R38A|R39A|R46A|R47A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797541_797542delAGinsGC/c.112_113delAGinsGC/p.R38A|chrXII:g.797544_797545delAGinsGC/c.115_116delAGinsGC/p.R39A|chrXII:g.797565_797566delCGinsGC/c.136_137delCGinsGC/p.R46A|chrXII:g.797568_797569delAGinsGC/c.139_140delAGinsGC/p.R47A +YLR335W NUP2 9817 nup2-V108D V108D amino_acid_mutation PMID:35302609 V108D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797752T>A/c.323T>A/p.V108D +YLR335W NUP2 9818 nup2-Y123C Y123C amino_acid_mutation PMID:35302609 Y123C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797797A>G/c.368A>G/p.Y123C +YLR335W NUP2 9819 nup2-Y123H Y123H amino_acid_mutation PMID:35302609 Y123H False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797796T>C/c.367T>C/p.Y123H +YLR335W NUP2 9820 nup2-Y126C Y126C amino_acid_mutation PMID:35302609 Y126C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797806A>G/c.377A>G/p.Y126C +YLR335W NUP2 9821 nup2-Y126N Y126N amino_acid_mutation PMID:35302609 Y126N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.797805T>A/c.376T>A/p.Y126N +YLR336C SGD1 9822 sgd1-N343Y N343Y amino_acid_mutation PMID:21576267 N343Y False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.801370T>A/c.1027A>T/p.N343Y +YLR336C SGD1 9823 sgd1-S340Y S340Y amino_acid_mutation PMID:21576267 S340Y False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.801378G>T/c.1019C>A/p.S340Y +YLR342W FKS1 9830 Fks1-D1102A D1102A amino_acid_mutation PMID:22581527 D1102A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.813301A>C/c.3305A>C/p.D1102A +YLR342W FKS1 9831 Fks1-D1197A D1197A amino_acid_mutation PMID:22581527 D1197A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.813586A>C/c.3590A>C/p.D1197A +YLR342W FKS1 9832 Fks1-R319A R319A amino_acid_mutation PMID:22581527 R319A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.810951_810952delAGinsGC/c.955_956delAGinsGC/p.R319A +YLR342W FKS1 9842 fks1-P647A P647A amino_acid_mutation PMID:18443110 P647A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.811935C>G/c.1939C>G/p.P647A +YLR343W GAS2 9843 gas2-D132N D132N amino_acid_mutation PMID:19097997 D132N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.816487G>A/c.394G>A/p.D132N +YLR343W GAS2 9844 gas2-E176Q E176Q amino_acid_mutation PMID:19097997 E176Q False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.816619G>C/c.526G>C/p.E176Q +YLR343W GAS2 9845 gas2-E275Q E275Q amino_acid_mutation PMID:19097997 E275Q False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.816916G>C/c.823G>C/p.E275Q +YLR343W GAS2 9846 gas2-F404A F404A amino_acid_mutation PMID:19097997 F404A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.817303_817304delTTinsGC/c.1210_1211delTTinsGC/p.F404A +YLR343W GAS2 9847 gas2-N175A N175A amino_acid_mutation PMID:19097997 N175A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.816616_816617delAAinsGC/c.523_524delAAinsGC/p.N175A +YLR343W GAS2 9848 gas2-Q62A Q62A amino_acid_mutation PMID:19097997 Q62A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.816277_816278delCAinsGC/c.184_185delCAinsGC/p.Q62A +YLR343W GAS2 9849 gas2-Y107F Y107F amino_acid_mutation PMID:19097997 Y107F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.816413A>T/c.320A>T/p.Y107F +YLR343W GAS2 9850 gas2-Y107Q Y107Q amino_acid_mutation PMID:19097997 Y107Q False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.816412_816414delTATinsCAA/c.319_321delTATinsCAA/p.Y107Q +YLR343W GAS2 9851 gas2-Y244F Y244F amino_acid_mutation PMID:19097997 Y244F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.816824A>T/c.731A>T/p.Y244F +YLR343W GAS2 9852 gas2-Y244Q Y244Q amino_acid_mutation PMID:19097997 Y244Q False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.816823_816825delTACinsCAA/c.730_732delTACinsCAA/p.Y244Q +YLR343W GAS2 9853 gas2-Y307Q Y307Q amino_acid_mutation PMID:19097997 Y307Q False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.817012_817014delTACinsCAA/c.919_921delTACinsCAA/p.Y307Q +YLR343W GAS2 9854 gas2-Y474A Y474A amino_acid_mutation PMID:19097997 Y474A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.817513_817514delTAinsGC/c.1420_1421delTAinsGC/p.Y474A +YLR347C KAP95 9857 kap95-E126K E126K amino_acid_mutation PMID:23962978 E126K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.826038C>T/c.376G>A/p.E126K +YLR347C KAP95 9858 kap95-L63A L63A amino_acid_mutation PMID:23962978 L63A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.826226_826227delCTinsGC/c.187_188delCTinsGC/p.L63A +YLR357W RSC2 9869 rsc2-D461G D461G amino_acid_mutation PMID:15775977 D461G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.842712A>G/c.1382A>G/p.D461G +YLR357W RSC2 9870 rsc2-V457M V457M amino_acid_mutation PMID:15775977 V457M False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.842699G>A/c.1369G>A/p.V457M +YLR361C DCR2 9875 dcr2-N337A N337A amino_acid_mutation PMID:34965437 N337A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.848115_848116delAAinsGC/c.1009_1010delAAinsGC/p.N337A +YLR362W STE11 9879 ste11-A247T A247T amino_acid_mutation PMID:35219341 A247T False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.850604G>A/c.739G>A/p.A247T +YLR368W MDM30 9882 mdm30-G264D G264D amino_acid_mutation PMID:31611676 G264D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.858330G>A/c.791G>A/p.G264D +YLR378C SEC61 9888 Sec61-Y345H Y345H amino_acid_mutation PMID:23044417 Y345H False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876146A>G/c.1033T>C/p.Y345H +YLR378C SEC61 9893 sec61-D168A D168A amino_acid_mutation PMID:17893139 D168A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876676T>G/c.503A>C/p.D168A +YLR378C SEC61 9894 sec61-D61N D61N amino_acid_mutation PMID:17893139 D61N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876998C>T/c.181G>A/p.D61N +YLR378C SEC61 9895 sec61-E382R E382R amino_acid_mutation PMID:17893139 E382R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876034_876035delGAinsAG/c.1144_1145delGAinsAG/p.E382R +YLR378C SEC61 9896 sec61-E460K E460K amino_acid_mutation PMID:17893139 E460K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.875801C>T/c.1378G>A/p.E460K +YLR378C SEC61 9897 sec61-E79G E79G amino_acid_mutation PMID:17893139 E79G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876943T>C/c.236A>G/p.E79G +YLR378C SEC61 9898 sec61-G213D G213D amino_acid_mutation PMID:21737680 G213D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876541C>T/c.638G>A/p.G213D +YLR378C SEC61 9899 sec61-G341E G341E amino_acid_mutation PMID:21737680 G341E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876157C>T/c.1022G>A/p.G341E +YLR378C SEC61 9900 sec61-I86T I86T amino_acid_mutation PMID:17893139 I86T False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876922A>G/c.257T>C/p.I86T +YLR378C SEC61 9901 sec61-I91T I91T amino_acid_mutation PMID:17893139 I91T False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876907A>G/c.272T>C/p.I91T +YLR378C SEC61 9902 sec61-K284E K284E amino_acid_mutation PMID:17893139 K284E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876329T>C/c.850A>G/p.K284E +YLR378C SEC61 9903 sec61-L131P L131P amino_acid_mutation PMID:17893139 L131P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876787A>G/c.392T>C/p.L131P +YLR378C SEC61 9904 sec61-L63N L63N amino_acid_mutation PMID:16822836 L63N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876990_876992delCTGinsAAC/c.187_189delCTGinsAAC/p.L63N +YLR378C SEC61 9905 sec61-L66N L66N amino_acid_mutation PMID:16822836 L66N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876981_876983delCTAinsAAC/c.196_198delCTAinsAAC/p.L66N +YLR378C SEC61 9906 sec61-L70N L70N amino_acid_mutation PMID:16822836 L70N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876969_876971delCTGinsAAC/c.208_210delCTGinsAAC/p.L70N +YLR378C SEC61 9907 sec61-M400K M400K amino_acid_mutation PMID:17893139 M400K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.875980A>T/c.1199T>A/p.M400K +YLR378C SEC61 9908 sec61-M450K M450K amino_acid_mutation PMID:17893139 M450K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.875830A>T/c.1349T>A/p.M450K +YLR378C SEC61 9909 sec61-P200L P200L amino_acid_mutation PMID:17893139 P200L False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876580G>A/c.599C>T/p.P200L +YLR378C SEC61 9910 sec61-P292S P292S amino_acid_mutation PMID:17893139 P292S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876305G>A/c.874C>T/p.P292S +YLR378C SEC61 9911 sec61-Q261R Q261R amino_acid_mutation PMID:17893139 Q261R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876397T>C/c.782A>G/p.Q261R +YLR378C SEC61 9912 sec61-Q93R Q93R amino_acid_mutation PMID:17893139 Q93R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876901T>C/c.278A>G/p.Q93R +YLR378C SEC61 9913 sec61-Q96R Q96R amino_acid_mutation PMID:17893139 Q96R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876892T>C/c.287A>G/p.Q96R +YLR378C SEC61 9914 sec61-R275E,R406E R275E,R406E amino_acid_mutation PMID:31956032 R275E|R406E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876355_876356delAGinsGA/c.823_824delAGinsGA/p.R275E|chrXII:g.875962_875963delAGinsGA/c.1216_1217delAGinsGA/p.R406E +YLR378C SEC61 9915 sec61-R67E R67E amino_acid_mutation PMID:17893139 R67E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876978_876980delCGTinsGAG/c.199_201delCGTinsGAG/p.R67E +YLR378C SEC61 9916 sec61-R74E R74E amino_acid_mutation PMID:17893139 R74E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876957_876959delCGTinsGAG/c.220_222delCGTinsGAG/p.R74E +YLR378C SEC61 9917 sec61-S161T S161T amino_acid_mutation PMID:17893139 S161T False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876698A>T/c.481T>A/p.S161T +YLR378C SEC61 9918 sec61-S2Y S2Y amino_acid_mutation PMID:31017954 S2Y False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.877174G>T/c.5C>A/p.S2Y +YLR378C SEC61 9919 sec61-T185K T185K amino_acid_mutation PMID:17893139 T185K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876625G>T/c.554C>A/p.T185K +YLR378C SEC61 9920 sec61-T379I T379I amino_acid_mutation PMID:17893139 T379I False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876043G>A/c.1136C>T/p.T379I +YLR378C SEC61 9921 sec61-W35R W35R amino_acid_mutation PMID:17893139 W35R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.877076A>T/c.103T>A/p.W35R +YLR383W SMC6 9950 smc6-E1048Q E1048Q amino_acid_mutation PMID:35993814 E1048Q False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.888429G>C/c.3142G>C/p.E1048Q +YLR386W VAC14 9954 vac14-L149R L149R amino_acid_mutation PMID:19037259 L149R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.894073T>G/c.446T>G/p.L149R +YLR398C SKI2 9966 ski2-A351P A351P amino_acid_mutation PMID:35607352 A351P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.917969C>G/c.1051G>C/p.A351P +YLR398C SKI2 9967 ski2-E459K E459K amino_acid_mutation PMID:35607352 E459K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.917645C>T/c.1375G>A/p.E459K +YLR398C SKI2 9968 ski2-G691S G691S amino_acid_mutation PMID:35607352 G691S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.916949C>T/c.2071G>A/p.G691S +YLR398C SKI2 9969 ski2-G943* G943* partial_amino_acid_deletion PMID:35607352 G943* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXII:g.916191_916193delGGTinsTGA/c.2827_2829delGGTinsTGA/p.G943* +YLR398C SKI2 9971 ski2-K1100* K1100* partial_amino_acid_deletion PMID:35607352 K1100* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXII:g.915722T>A/c.3298A>T/p.K1100* +YLR398C SKI2 9972 ski2-N321* N321* partial_amino_acid_deletion PMID:35607352 N321* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXII:g.918057_918059delAACinsTAA/c.961_963delAACinsTAA/p.N321* +YLR398C SKI2 9973 ski2-R504C R504C amino_acid_mutation PMID:35607352 R504C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.917508_917510delAGAinsTGT/c.1510_1512delAGAinsTGT/p.R504C +YLR398C SKI2 9974 ski2-S500* S500* partial_amino_acid_deletion PMID:35607352 S500* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXII:g.917520_917521delCCinsAA/c.1499_1500delCCinsAA/p.S500* +YLR398C SKI2 9975 ski2-V360G V360G amino_acid_mutation PMID:35607352 V360G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.917941A>C/c.1079T>G/p.V360G +YLR398C SKI2 9976 ski2-W487G W487G amino_acid_mutation PMID:35607352 W487G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.917561A>C/c.1459T>G/p.W487G +YLR399C BDF1 9983 bdf1-Y187F Y187F amino_acid_mutation PMID:34056863 Y187F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.921037T>A/c.560A>T/p.Y187F +YLR399C BDF1 9984 bdf1-Y187F,Y354F Y187F,Y354F amino_acid_mutation PMID:28068333,PMID:34056863 Y187F|Y354F False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.921037T>A/c.560A>T/p.Y187F|chrXII:g.920536T>A/c.1061A>T/p.Y354F +YLR399C BDF1 9985 bdf1-Y354F Y354F amino_acid_mutation PMID:34056863 Y354F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.920536T>A/c.1061A>T/p.Y354F +YLR401C DUS3 9987 dus3-C149F C149F amino_acid_mutation PMID:31611676 C149F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.924003C>A/c.446G>T/p.C149F +YLR404W SEI1 9990 sei1-C260L,T266L,T269I C260L,T266L,T269I amino_acid_mutation PMID:35210614 C260L|T266L|T269I False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.929520_929521delTGinsCT/c.778_779delTGinsCT/p.C260L|chrXII:g.929538_929539delACinsCT/c.796_797delACinsCT/p.T266L|chrXII:g.929548C>T/c.806C>T/p.T269I +YLR404W SEI1 9991 sei1-D180A D180A amino_acid_mutation PMID:35210614 D180A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.929281A>C/c.539A>C/p.D180A +YLR404W SEI1 9992 sei1-E172A E172A amino_acid_mutation PMID:35210614 E172A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.929257A>C/c.515A>C/p.E172A +YLR404W SEI1 9993 sei1-E184A E184A amino_acid_mutation PMID:35210614 E184A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.929293A>C/c.551A>C/p.E184A +YLR404W SEI1 9994 sei1-E185A E185A amino_acid_mutation PMID:35210614 E185A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.929296A>C/c.554A>C/p.E185A +YLR404W SEI1 9995 sei1-F255R F255R amino_acid_mutation PMID:35210614 F255R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.929505_929506delTTinsCG/c.763_764delTTinsCG/p.F255R +YLR404W SEI1 9996 sei1-I259K I259K amino_acid_mutation PMID:35210614 I259K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.929481_929482delTCinsAG/c.776_777delTCinsAG/p.I259K +YLR404W SEI1 9997 sei1-M240G M240G amino_acid_mutation PMID:35210614 M240G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.929460_929461delATinsGG/c.718_719delATinsGG/p.M240G +YLR404W SEI1 9998 sei1-Q114A Q114A amino_acid_mutation PMID:35210614 Q114A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.929082_929083delCAinsGC/c.340_341delCAinsGC/p.Q114A +YLR404W SEI1 9999 sei1-Q169A Q169A amino_acid_mutation PMID:35210614 Q169A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.929247_929248delCAinsGC/c.505_506delCAinsGC/p.Q169A +YLR404W SEI1 10000 sei1-Q173A Q173A amino_acid_mutation PMID:35210614 Q173A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.929259_929260delCAinsGC/c.517_518delCAinsGC/p.Q173A +YLR404W SEI1 10001 sei1-R178A R178A amino_acid_mutation PMID:35210614 R178A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.929274_929275delCGinsGC/c.532_533delCGinsGC/p.R178A +YLR404W SEI1 10002 sei1-S167A S167A amino_acid_mutation PMID:35210614 S167A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.929241T>G/c.499T>G/p.S167A +YLR404W SEI1 10003 sei1-S33A S33A amino_acid_mutation PMID:35210614 S33A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.928839T>G/c.97T>G/p.S33A +YLR404W SEI1 10004 sei1-Y248I Y248I amino_acid_mutation PMID:35210614 Y248I False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.929484_929485delTAinsAT/c.742_743delTAinsAT/p.Y248I +YLR404W SEI1 10005 sei1-Y37A Y37A amino_acid_mutation PMID:35210614 Y37A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.928851_928852delTAinsGC/c.109_110delTAinsGC/p.Y37A +YLR404W SEI1 10006 sei1-Y37L,Y41L Y37L,Y41L amino_acid_mutation PMID:34625558 Y37L|Y41L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.928851_928852delTAinsCT/c.109_110delTAinsCT/p.Y37L|chrXII:g.928863_928864delTAinsCT/c.121_122delTAinsCT/p.Y41L +YLR404W SEI1 10007 sei1-Y41A Y41A amino_acid_mutation PMID:35210614 Y41A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.928863_928864delTAinsGC/c.121_122delTAinsGC/p.Y41A +YLR409C UTP21 10016 utp21-S602F S602F amino_acid_mutation PMID:19150991,PMID:33789348 S602F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.935429G>A/c.1805C>T/p.S602F +YLR418C CDC73 10023 cdc73-L181E L181E amino_acid_mutation PMID:34852272 L181E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.957554_957555delTTinsGA/c.541_542delTTinsGA/p.L181E +YLR418C CDC73 10024 cdc73-R172A R172A amino_acid_mutation PMID:34852272 R172A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.957581_957582delCGinsGC/c.514_515delCGinsGC/p.R172A +YLR418C CDC73 10025 cdc73-R182A R182A amino_acid_mutation PMID:34852272 R182A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.957551_957552delCGinsGC/c.544_545delCGinsGC/p.R182A +YLR422W DCK1 10027 dck1-I1242M I1242M amino_acid_mutation PMID:31611676 I1242M False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.969622C>G/c.3726C>G/p.I1242M +YLR423C ATG17 10030 atg17-D247A D247A amino_acid_mutation PMID:32025038 D247A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.972431T>G/c.740A>C/p.D247A +YLR423C ATG17 10031 atg17-P393A P393A amino_acid_mutation PMID:32025038 P393A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.971994G>C/c.1177C>G/p.P393A +YLR430W SEN1 10041 sen1-1089-1929 1089-1929 partial_amino_acid_deletion PMID:27179024 1089-1929 False partial_amino_acid_deletion:multiple_aa partial_amino_acid_deletion chrXII:g.996698_999220del2523/c.3265_5787del2523/p.V1089_E1929del841 +YLR430W SEN1 10044 sen1-C1409Y C1409Y amino_acid_mutation PMID:25116135 C1409Y False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.997659G>A/c.4226G>A/p.C1409Y +YLR430W SEN1 10045 sen1-D1616V D1616V amino_acid_mutation PMID:25116135 D1616V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.998280A>T/c.4847A>T/p.D1616V +YLR430W SEN1 10047 sen1-E1597K E1597K amino_acid_mutation PMID:25116135 E1597K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.998222G>A/c.4789G>A/p.E1597K +YLR430W SEN1 10048 sen1-I1371F I1371F amino_acid_mutation PMID:25116135 I1371F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.997544A>T/c.4111A>T/p.I1371F +YLR430W SEN1 10049 sen1-K1788E K1788E amino_acid_mutation PMID:25116135 K1788E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.998795A>G/c.5362A>G/p.K1788E +YLR430W SEN1 10050 sen1-L1569W L1569W amino_acid_mutation PMID:25116135 L1569W False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.998139_998140delTAinsGG/c.4706_4707delTAinsGG/p.L1569W +YLR430W SEN1 10051 sen1-N1413S N1413S amino_acid_mutation PMID:25116135 N1413S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.997671A>G/c.4238A>G/p.N1413S +YLR430W SEN1 10052 sen1-N1413S,T1568A N1413S,T1568A amino_acid_mutation PMID:28408439 N1413S|T1568A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.997671A>G/c.4238A>G/p.N1413S|chrXII:g.998135A>G/c.4702A>G/p.T1568A +YLR430W SEN1 10053 sen1-P1622L P1622L amino_acid_mutation PMID:25116135 P1622L False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.998298C>T/c.4865C>T/p.P1622L +YLR430W SEN1 10054 sen1-R1641E R1641E amino_acid_mutation PMID:25116135 R1641E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.998354_998355delAGinsGA/c.4921_4922delAGinsGA/p.R1641E +YLR430W SEN1 10055 sen1-R1820Q R1820Q amino_acid_mutation PMID:25116135,PMID:28408439 R1820Q False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.998891_998892delAGinsCA/c.5458_5459delAGinsCA/p.R1820Q +YLR430W SEN1 10056 sen1-T1623E T1623E amino_acid_mutation PMID:35037029 T1623E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.998300_998302delACTinsGAG/c.4867_4869delACTinsGAG/p.T1623E +YLR430W SEN1 10057 sen1-T1623V T1623V amino_acid_mutation PMID:35037029 T1623V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.998300_998301delACinsGT/c.4867_4868delACinsGT/p.T1623V +YLR430W SEN1 10058 sen1-T1779P T1779P amino_acid_mutation PMID:25116135 T1779P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.998768A>C/c.5335A>C/p.T1779P +YLR430W SEN1 10059 sen1-W1166S W1166S amino_acid_mutation PMID:25116135 W1166S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.996930G>C/c.3497G>C/p.W1166S +YLR431C ATG23 10064 atg23-I182A,L189A I182A,L189A amino_acid_mutation PMID:35867625 I182A|L189A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1001159_1001160delATinsGC/c.544_545delATinsGC/p.I182A|chrXII:g.1001282_1001283delCTinsGC/c.565_566delCTinsGC/p.L189A +YLR431C ATG23 10065 atg23-K66E,R67E K66E,R67E amino_acid_mutation PMID:35443167 K66E|R67E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1001508T>C/c.196A>G/p.K66E|chrXII:g.1001504_1001505delAGinsGA/c.199_200delAGinsGA/p.R67E +YLR431C ATG23 10066 atg23-K66E,R67E,K296E K66E,R67E,K296E amino_acid_mutation PMID:35443167 K66E|R67E|K296E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1001508T>C/c.196A>G/p.K66E|chrXII:g.1001504_1001505delAGinsGA/c.199_200delAGinsGA/p.R67E|chrXII:g.1000818T>C/c.886A>G/p.K296E +YLR431C ATG23 10067 atg23-K66E,R67E,R74E,R85E,K296E K66E,R67E,R74E,R85E,K296E amino_acid_mutation PMID:35443167 K66E|R67E|R74E|R85E|K296E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1001508T>C/c.196A>G/p.K66E|chrXII:g.1001504_1001505delAGinsGA/c.199_200delAGinsGA/p.R67E|chrXII:g.1001483_1001484delCGinsGA/c.220_221delCGinsGA/p.R74E|chrXII:g.1001450_1001451delAGinsGA/c.253_254delAGinsGA/p.R85E|chrXII:g.1000818T>C/c.886A>G/p.K296E +YLR431C ATG23 10068 atg23-L171A,I182A,L189A L171A,I182A,L189A amino_acid_mutation PMID:35443167,PMID:35867625 L171A|I182A|L189A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1001192_1001193delTTinsGC/c.511_512delTTinsGC/p.L171A|chrXII:g.1001159_1001160delATinsGC/c.544_545delATinsGC/p.I182A|chrXII:g.1001282_1001283delCTinsGC/c.565_566delCTinsGC/p.L189A +YLR431C ATG23 10069 atg23-R166E,K169E,K176E R166E,K169E,K176E amino_acid_mutation PMID:35443167 R166E|K169E|K176E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1001206_1001208delCGTinsGAG/c.496_498delCGTinsGAG/p.R166E|chrXII:g.1001199T>C/c.505A>G/p.K169E|chrXII:g.1001178T>C/c.526A>G/p.K176E +YLR431C ATG23 10070 atg23-R190E,K193E,K194E R190E,K193E,K194E amino_acid_mutation PMID:35443167 R190E|K193E|K194E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1001135_1001136delAGinsGA/c.568_569delAGinsGA/p.R190E|chrXII:g.1001127T>C/c.577A>G/p.K193E|chrXII:g.1001124T>C/c.580A>G/p.K194E +YLR442C SIR3 10087 sir3-A136V A136V amino_acid_mutation PMID:18794362 A136V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1021845G>A/c.407C>T/p.A136V +YLR442C SIR3 10088 sir3-A181T A181T amino_acid_mutation PMID:18794362 A181T False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1021711C>T/c.541G>A/p.A181T +YLR442C SIR3 10089 sir3-A2Q A2Q amino_acid_mutation PMID:26399229 A2Q False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1022246_1022248delGCTinsCAA/c.4_6delGCTinsCAA/p.A2Q +YLR442C SIR3 10090 sir3-D17G D17G amino_acid_mutation PMID:18794362 D17G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1022202T>C/c.50A>G/p.D17G +YLR442C SIR3 10091 sir3-D205N D205N amino_acid_mutation PMID:20713692 D205N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1021639C>T/c.613G>A/p.D205N +YLR442C SIR3 10092 sir3-D640A D640A amino_acid_mutation PMID:28188183 D640A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1020333T>G/c.1919A>C/p.D640A +YLR442C SIR3 10093 sir3-E137G E137G amino_acid_mutation PMID:18794362 E137G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1021842T>C/c.410A>G/p.E137G +YLR442C SIR3 10094 sir3-E137K E137K amino_acid_mutation PMID:18794362 E137K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1021843C>T/c.409G>A/p.E137K +YLR442C SIR3 10095 sir3-E84K E84K amino_acid_mutation PMID:18794362 E84K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1022002C>T/c.250G>A/p.E84K +YLR442C SIR3 10096 sir3-E95K E95K amino_acid_mutation PMID:18794362 E95K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1021969C>T/c.283G>A/p.E95K +YLR442C SIR3 10097 sir3-K202E K202E amino_acid_mutation PMID:18794362 K202E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1021648T>C/c.604A>G/p.K202E +YLR442C SIR3 10098 sir3-K209N K209N amino_acid_mutation PMID:18794362 K209N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1021625T>G/c.627A>C/p.K209N +YLR442C SIR3 10099 sir3-K209R K209R amino_acid_mutation PMID:18794362 K209R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1021626T>C/c.626A>G/p.K209R +YLR442C SIR3 10100 sir3-K219E K219E amino_acid_mutation PMID:18794362 K219E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1021597T>C/c.655A>G/p.K219E +YLR442C SIR3 10101 sir3-K657A K657A amino_acid_mutation PMID:28188183 K657A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1020282_1020283delAAinsGC/c.1969_1970delAAinsGC/p.K657A +YLR442C SIR3 10102 sir3-K658A K658A amino_acid_mutation PMID:28188183 K658A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1020279_1020280delAAinsGC/c.1972_1973delAAinsGC/p.K658A +YLR442C SIR3 10103 sir3-L738P L738P amino_acid_mutation PMID:18794362 L738P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1020039A>G/c.2213T>C/p.L738P +YLR442C SIR3 10104 sir3-L79I L79I amino_acid_mutation PMID:19079580 L79I False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1022017G>T/c.235C>A/p.L79I +YLR442C SIR3 10105 sir3-L96F L96F amino_acid_mutation PMID:18794362 L96F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1021966G>A/c.286C>T/p.L96F +YLR442C SIR3 10106 sir3-P179L P179L amino_acid_mutation PMID:18794362 P179L False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1021716G>A/c.536C>T/p.P179L +YLR442C SIR3 10107 sir3-P201L P201L amino_acid_mutation PMID:18794362 P201L False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1021650G>A/c.602C>T/p.P201L +YLR442C SIR3 10108 sir3-P898R P898R amino_acid_mutation PMID:10835378 P898R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1019597G>C/c.2693C>G/p.P898R +YLR442C SIR3 10113 sir3-S204P S204P amino_acid_mutation PMID:18794362 S204P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1021642A>G/c.610T>C/p.S204P +YLR442C SIR3 10114 sir3-S212F S212F amino_acid_mutation PMID:18794362 S212F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1021617G>A/c.635C>T/p.S212F +YLR442C SIR3 10115 sir3-S642L S642L amino_acid_mutation PMID:28188183 S642L False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1020327G>A/c.1925C>T/p.S642L +YLR442C SIR3 10116 sir3-S67P S67P amino_acid_mutation PMID:18794362 S67P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1022053A>G/c.199T>C/p.S67P +YLR442C SIR3 10118 sir3-T557I T557I amino_acid_mutation PMID:34817085 T557I False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1020582G>A/c.1670C>T/p.T557I +YLR442C SIR3 10119 sir3-T63A T63A amino_acid_mutation PMID:18794362 T63A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1022065T>C/c.187A>G/p.T63A +YLR442C SIR3 10120 sir3-V196I V196I amino_acid_mutation PMID:18794362 V196I False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1021666C>T/c.586G>A/p.V196I +YLR442C SIR3 10121 sir3-W86G W86G amino_acid_mutation PMID:18794362 W86G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1021996A>C/c.256T>G/p.W86G +YLR442C SIR3 10122 sir3-W93R W93R amino_acid_mutation PMID:18794362 W93R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1021975A>T/c.277T>A/p.W93R +YLR446W NGK1 10124 ngk1-D196A D196A amino_acid_mutation PMID:36216916 D196A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1025800A>C/c.587A>C/p.D196A +YLR446W NGK1 10125 ngk1-D196E D196E amino_acid_mutation PMID:36216916 D196E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1025801T>G/c.588T>G/p.D196E +YLR446W NGK1 10126 ngk1-D196N D196N amino_acid_mutation PMID:36216916 D196N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1025799G>A/c.586G>A/p.D196N +YLR446W NGK1 10127 ngk1-E290A E290A amino_acid_mutation PMID:36216916 E290A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1026082A>C/c.869A>C/p.E290A +YLR446W NGK1 10128 ngk1-K152A K152A amino_acid_mutation PMID:36216916 K152A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1025667_1025668delAAinsGC/c.454_455delAAinsGC/p.K152A +YLR450W HMG2 10136 hmg2-K357R K357R amino_acid_mutation PMID:10545111,PMID:33184059,PMID:36689475 K357R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1033696A>G/c.1070A>G/p.K357R +YLR450W HMG2 10137 hmg2-K6R K6R amino_acid_mutation PMID:10545111,PMID:33184059,PMID:36689475 K6R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1032643A>G/c.17A>G/p.K6R +YLR450W HMG2 10138 hmg2-K6R,K357R K6R,K357R amino_acid_mutation PMID:10545111,PMID:36689475 K6R|K357R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1032643A>G/c.17A>G/p.K6R|chrXII:g.1033696A>G/c.1070A>G/p.K357R +YLR450W HMG2 10139 hmg2-L219F L219F amino_acid_mutation PMID:33184059 L219F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1033283A>T/c.657A>T/p.L219F +YLR450W HMG2 10140 hmg2-S215A S215A amino_acid_mutation PMID:33184059 S215A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1033269T>G/c.643T>G/p.S215A +YLR451W LEU3 10142 leu3-C47S C47S amino_acid_mutation PMID:1945883 C47S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1036231T>A/c.139T>A/p.C47S +YLR451W LEU3 10143 leu3-H50A H50A amino_acid_mutation PMID:1945883 H50A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1036240_1036241delCAinsGC/c.148_149delCAinsGC/p.H50A +YLR451W LEU3 10144 leu3-H50C H50C amino_acid_mutation PMID:1945883 H50C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1036240_1036241delCAinsTG/c.148_149delCAinsTG/p.H50C +YLR451W LEU3 10145 leu3-H50S H50S amino_acid_mutation PMID:1945883 H50S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1036240_1036241delCAinsAG/c.148_149delCAinsAG/p.H50S +YLR451W LEU3 10146 leu3-P56R P56R amino_acid_mutation PMID:1945883 P56R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1036259C>G/c.167C>G/p.P56R +YLR451W LEU3 10147 leu3-W861A W861A amino_acid_mutation PMID:2211632 W861A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1038673_1038674delTGinsGC/c.2581_2582delTGinsGC/p.W861A +YLR451W LEU3 10148 leu3-W864A W864A amino_acid_mutation PMID:2211632 W864A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1038682_1038683delTGinsGC/c.2590_2591delTGinsGC/p.W864A +YLR451W LEU3 10149 leu3-W870A W870A amino_acid_mutation PMID:2211632 W870A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1038700_1038701delTGinsGC/c.2608_2609delTGinsGC/p.W870A +YLR452C SST2 10157 sst2-S539A S539A amino_acid_mutation PMID:35985794 S539A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1039752A>C/c.1615T>G/p.S539A +YLR452C SST2 10158 sst2-S539D S539D amino_acid_mutation PMID:35985794 S539D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1039751_1039752delTCinsGA/c.1615_1616delTCinsGA/p.S539D +YLR453C RIF2 10161 rif2-F8A F8A amino_acid_mutation PMID:31640985 F8A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1042964_1042965delTTinsGC/c.22_23delTTinsGC/p.F8A +YLR453C RIF2 10162 rif2-L44R,V45E,E347R L44R,V45E,E347R amino_acid_mutation PMID:35044907 L44R|V45E|E347R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1042856A>C/c.131T>G/p.L44R|chrXII:g.1042852_1042853delTTinsAG/c.134_135delTTinsAG/p.V45E|chrXII:g.1041947_1041948delGAinsAG/c.1039_1040delGAinsAG/p.E347R +YLR455W PDP3 10163 pdp3-W21A W21A amino_acid_mutation PMID:28903324 W21A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1053689_1053690delTGinsGC/c.61_62delTGinsGC/p.W21A +YML007W YAP1 10183 yap1-C303A C303A amino_acid_mutation PMID:28479370 C303A False amino_acid_mutation:single_aa amino_acid_mutation +YML007W YAP1 10184 yap1-C303A,C310A,C315A C303A,C310A,C315A amino_acid_mutation PMID:28479370 C303A|C310A|C315A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.254754_254755delTGinsGC/c.928_929delTGinsGC/p.C310A +YML007W YAP1 10185 yap1-C310A C310A amino_acid_mutation PMID:28479370 C310A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.254754_254755delTGinsGC/c.928_929delTGinsGC/p.C310A +YML007W YAP1 10186 yap1-C598A C598A amino_acid_mutation PMID:28479370 C598A False amino_acid_mutation:single_aa amino_acid_mutation +YML007W YAP1 10187 yap1-C598A,C620A C598A,C620A amino_acid_mutation PMID:28479370 C598A|C620A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation +YML007W YAP1 10188 yap1-C598A,C629T C598A,C629T amino_acid_mutation PMID:28479370 C598A|C629T False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation +YML007W YAP1 10190 yap1-C629A C629A amino_acid_mutation PMID:28479370 C629A False amino_acid_mutation:single_aa amino_acid_mutation +YML008C ERG6 10192 erg6-C128L C128L amino_acid_mutation PMID:18563465 C128L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.252608_252609delTGinsCT/c.382_383delTGinsCT/p.C128L +YML008C ERG6 10193 erg6-C128S C128S amino_acid_mutation PMID:18563465 C128S False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.252609A>T/c.382T>A/p.C128S +YML008C ERG6 10194 erg6-P133L P133L amino_acid_mutation PMID:18563465 P133L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.252593G>A/c.398C>T/p.P133L +YML008C ERG6 10195 erg6-Y153F Y153F amino_acid_mutation PMID:18563465 Y153F False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.252533T>A/c.458A>T/p.Y153F +YML008C ERG6 10196 erg6-Y153L Y153L amino_acid_mutation PMID:18563465 Y153L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.252533_252534delTAinsCT/c.457_458delTAinsCT/p.Y153L +YML010W SPT5 10205 spt5-C292R C292R amino_acid_mutation PMID:21467039,PMID:36640349 C292R False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.248550T>C/c.874T>C/p.C292R +YML010W SPT5 10207 spt5-S324P,E427K S324P,E427K amino_acid_mutation PMID:21467039,PMID:36640349 S324P|E427K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.248646T>C/c.970T>C/p.S324P|chrXIII:g.248955G>A/c.1279G>A/p.E427K +YML016C PPZ1 10219 PPZ1-G2A G2A amino_acid_mutation PMID:33086699 G2A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.241532C>G/c.5G>C/p.G2A +YML016C PPZ1 10220 ppz1-R451L R451L amino_acid_mutation PMID:8824289 R451L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.240185C>A/c.1352G>T/p.R451L +YML017W PSP2 10221 psp2-T298N T298N amino_acid_mutation PMID:31611676 T298N False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.237842_237843delCAinsAC/c.893_894delCAinsAC/p.T298N +YML023C NSE5 10227 nse5-L247A L247A amino_acid_mutation PMID:27215325 L247A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.227925_227926delCTinsGC/c.739_740delCTinsGC/p.L247A +YML023C NSE5 10228 nse5-L70A L70A amino_acid_mutation PMID:27215325 L70A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.228456_228457delTTinsGC/c.208_209delTTinsGC/p.L70A +YML023C NSE5 10229 nse5-Q109A Q109A amino_acid_mutation PMID:33941673 Q109A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.228339_228340delCAinsGC/c.325_326delCAinsGC/p.Q109A +YML028W TSA1 10241 tsa1-A177S,A178D A177S,A178D amino_acid_mutation PMID:32363077 A177S|A178D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.220666G>T/c.529G>T/p.A177S|chrXIII:g.220670C>A/c.533C>A/p.A178D +YML028W TSA1 10243 tsa1-C171S C171S amino_acid_mutation PMID:24022485,PMID:32662770 C171S False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.220648T>A/c.511T>A/p.C171S +YML028W TSA1 10245 tsa1-C48S C48S amino_acid_mutation PMID:24022485,PMID:32662770 C48S False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.220279T>A/c.142T>A/p.C48S +YML028W TSA1 10246 tsa1-S79E S79E amino_acid_mutation PMID:35234779 S79E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.220372_220374delTCCinsGAG/c.235_237delTCCinsGAG/p.S79E +YML028W TSA1 10247 tsa1-W161F W161F amino_acid_mutation PMID:32363077 W161F False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.220619_220620delGGinsTT/c.482_483delGGinsTT/p.W161F +YML028W TSA1 10248 tsa1-Y190G,F191G Y190G,F191G amino_acid_mutation PMID:32363077 Y190G|F191G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.220705_220706delTAinsGG/c.568_569delTAinsGG/p.Y190G|chrXIII:g.220708_220709delTTinsGG/c.571_572delTTinsGG/p.F191G +YML031W NDC1 10254 ndc1-A290E A290E amino_acid_mutation PMID:24515347 A290E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.215057_215058delCCinsAG/c.869_870delCCinsAG/p.A290E +YML031W NDC1 10256 ndc1-E293A E293A amino_acid_mutation PMID:24515347 E293A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.215066A>C/c.878A>C/p.E293A +YML031W NDC1 10257 ndc1-L562S L562S amino_acid_mutation PMID:24515347 L562S False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.215872_215873delCTinsTC/c.1684_1685delCTinsTC/p.L562S +YML031W NDC1 10258 ndc1-V180G V180G amino_acid_mutation PMID:24515347 V180G False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.214727T>G/c.539T>G/p.V180G +YML031W NDC1 10259 ndc1-V340Q V340Q amino_acid_mutation PMID:24515347 V340Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.215206_215208delGTTinsCAA/c.1018_1020delGTTinsCAA/p.V340Q +YML032C RAD52 10266 rad52-D79N D79N amino_acid_mutation PMID:34207997 D79N False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.213696C>T/c.235G>A/p.D79N +YML032C RAD52 10267 rad52-F173A F173A amino_acid_mutation PMID:20012294 F173A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.213413_213414delTTinsGC/c.517_518delTTinsGC/p.F173A +YML032C RAD52 10268 rad52-F316A,Y376A F316A,Y376A amino_acid_mutation PMID:29078282 F316A|Y376A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.212984_212985delTTinsGC/c.946_947delTTinsGC/p.F316A|chrXIII:g.212804_212805delTAinsGC/c.1126_1127delTAinsGC/p.Y376A +YML032C RAD52 10269 rad52-G107C G107C amino_acid_mutation PMID:25938495 G107C False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.213610_213612delGGGinsTGT/c.319_321delGGGinsTGT/p.G107C +YML032C RAD52 10271 rad52-K159A K159A amino_acid_mutation PMID:20012294 K159A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.213495_213496delAAinsGC/c.475_476delAAinsGC/p.K159A +YML032C RAD52 10273 rad52-L56F L56F amino_acid_mutation PMID:29078282 L56F False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.213765G>A/c.166C>T/p.L56F +YML032C RAD52 10274 rad52-R52W R52W amino_acid_mutation PMID:25938495 R52W False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.213775_213777delAGAinsTGG/c.154_156delAGAinsTGG/p.R52W +YML032C RAD52 10276 rad52-T412A T412A amino_acid_mutation PMID:32083180 T412A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.212697T>C/c.1234A>G/p.T412A +YML032C RAD52 10277 rad52-V129A V129A amino_acid_mutation PMID:34207997 V129A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.213545A>G/c.386T>C/p.V129A +YML032C RAD52 10278 rad52-V95I V95I amino_acid_mutation PMID:34207997 V95I False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.213648C>T/c.283G>A/p.V95I +YML035C AMD1 10285 amd1-D736Y D736Y amino_acid_mutation PMID:23911318 D736Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.206655C>A/c.2206G>T/p.D736Y +YML035C AMD1 10286 amd1-E721D E721D amino_acid_mutation PMID:23911318 E721D False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.206698T>G/c.2163A>C/p.E721D +YML035C AMD1 10288 amd1-R617H R617H amino_acid_mutation PMID:23911318 R617H False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.207010_207012delAGGinsCAT/c.1849_1851delAGGinsCAT/p.R617H +YML035C AMD1 10289 amd1-W495fs W495fs amino_acid_insertion_and_mutation PMID:23911318 W495fs False W495FS amino_acid_insertion_and_mutation:multiple_aa amino_acid_insertion_and_mutation chrXIII:g.207376_207378delinsGCTAAA/c.1483_1485delinsTTTAGC/p.W495_W495delinsFS +YML036W CGI121 10290 cgi121-G96W G96W amino_acid_mutation PMID:33277478 G96W False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.205927_205929delGGAinsTGG/c.286_288delGGAinsTGG/p.G96W +YML036W CGI121 10291 cgi121-I88E I88E amino_acid_mutation PMID:33277478 I88E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.205903_205905delATTinsGAG/c.262_264delATTinsGAG/p.I88E +YML036W CGI121 10292 cgi121-I88E,G96W I88E,G96W amino_acid_mutation PMID:33277478 I88E|G96W False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.205903_205905delATTinsGAG/c.262_264delATTinsGAG/p.I88E|chrXIII:g.205927_205929delGGAinsTGG/c.286_288delGGAinsTGG/p.G96W +YML036W CGI121 10293 cgi121-L172E,I176R L172E,I176R amino_acid_mutation PMID:18951093 L172E|I176R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.206261_206262delTTinsGA/c.514_515delTTinsGA/p.L172E|chrXIII:g.205512T>G/c.527T>G/p.I176R +YML036W CGI121 10294 cgi121-M32E M32E amino_acid_mutation PMID:33277478 M32E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.205735_205736delATinsGA/c.94_95delATinsGA/p.M32E +YML036W CGI121 10295 cgi121-M32E,R72A M32E,R72A amino_acid_mutation PMID:33277478 M32E|R72A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.205735_205736delATinsGA/c.94_95delATinsGA/p.M32E|chrXIII:g.205855_205856delAGinsGC/c.214_215delAGinsGC/p.R72A +YML036W CGI121 10296 cgi121-M32E,R72A,I88E M32E,R72A,I88E amino_acid_mutation PMID:33277478 M32E|R72A|I88E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.205735_205736delATinsGA/c.94_95delATinsGA/p.M32E|chrXIII:g.205855_205856delAGinsGC/c.214_215delAGinsGC/p.R72A|chrXIII:g.205903_205905delATTinsGAG/c.262_264delATTinsGAG/p.I88E +YML036W CGI121 10297 cgi121-M32E,S76E M32E,S76E amino_acid_mutation PMID:33277478 M32E|S76E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.205735_205736delATinsGA/c.94_95delATinsGA/p.M32E|chrXIII:g.205867_205869delTCCinsGAG/c.226_228delTCCinsGAG/p.S76E +YML036W CGI121 10298 cgi121-M32E,S76E,I88E M32E,S76E,I88E amino_acid_mutation PMID:33277478 M32E|S76E|I88E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.205735_205736delATinsGA/c.94_95delATinsGA/p.M32E|chrXIII:g.205867_205869delTCCinsGAG/c.226_228delTCCinsGAG/p.S76E|chrXIII:g.205903_205905delATTinsGAG/c.262_264delATTinsGAG/p.I88E +YML036W CGI121 10299 cgi121-R72A R72A amino_acid_mutation PMID:33277478 R72A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.205855_205856delAGinsGC/c.214_215delAGinsGC/p.R72A +YML036W CGI121 10300 cgi121-S76E S76E amino_acid_mutation PMID:33277478 S76E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.205867_205869delTCCinsGAG/c.226_228delTCCinsGAG/p.S76E +YML050W AIM32 10309 aim32-C213A C213A amino_acid_mutation PMID:30879301 C213A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.173775_173776delTGinsGC/c.637_638delTGinsGC/p.C213A +YML050W AIM32 10310 aim32-C213S C213S amino_acid_mutation PMID:34461091 C213S False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.173775T>A/c.637T>A/p.C213S +YML050W AIM32 10311 aim32-C222A C222A amino_acid_mutation PMID:30879301 C222A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.173802_173803delTGinsGC/c.664_665delTGinsGC/p.C222A +YML050W AIM32 10312 aim32-C222S C222S amino_acid_mutation PMID:34461091 C222S False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.173802T>A/c.664T>A/p.C222S +YML050W AIM32 10313 aim32-C291A C291A amino_acid_mutation PMID:30879301 C291A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.174009_174010delTGinsGC/c.871_872delTGinsGC/p.C291A +YML050W AIM32 10314 aim32-C38A C38A amino_acid_mutation PMID:30879301 C38A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.173250_173251delTGinsGC/c.112_113delTGinsGC/p.C38A +YML050W AIM32 10315 aim32-C40A C40A amino_acid_mutation PMID:30879301 C40A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.173256_173257delTGinsGC/c.118_119delTGinsGC/p.C40A +YML050W AIM32 10317 aim32-H249A H249A amino_acid_mutation PMID:30879301 H249A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.173883_173884delCAinsGC/c.745_746delCAinsGC/p.H249A +YML050W AIM32 10318 aim32-H253A H253A amino_acid_mutation PMID:30879301 H253A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.173895_173896delCAinsGC/c.757_758delCAinsGC/p.H253A +YML051W GAL80 10320 gal80-F120A F120A amino_acid_mutation PMID:34622331 F120A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.171951_171952delTTinsGC/c.358_359delTTinsGC/p.F120A +YML051W GAL80 10321 gal80-K117A K117A amino_acid_mutation PMID:34622331 K117A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.171942_171943delAAinsGC/c.349_350delAAinsGC/p.K117A +YML051W GAL80 10322 gal80-L119A L119A amino_acid_mutation PMID:34622331 L119A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.171948_171949delCTinsGC/c.355_356delCTinsGC/p.L119A +YML051W GAL80 10323 gal80-L125A L125A amino_acid_mutation PMID:34622331 L125A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.171966_171967delCTinsGC/c.373_374delCTinsGC/p.L125A +YML051W GAL80 10325 gal80-V121A V121A amino_acid_mutation PMID:34622331 V121A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.171955T>C/c.362T>C/p.V121A +YML051W GAL80 10326 gal80-W123A W123A amino_acid_mutation PMID:34622331 W123A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.171960_171961delTGinsGC/c.367_368delTGinsGC/p.W123A +YML051W GAL80 10327 gal80-Y118A Y118A amino_acid_mutation PMID:34622331 Y118A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.171945_171946delTAinsGC/c.352_353delTAinsGC/p.Y118A +YML061C PIF1 10335 pif1-K264A K264A amino_acid_mutation PMID:20858222,PMID:35483549 K264A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.150742_150743delAAinsGC/c.790_791delAAinsGC/p.K264A +YML065W ORC1 10345 orc1-K485T K485T amino_acid_mutation PMID:37020028,PMID:9038340 K485T False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.143663A>C/c.1454A>C/p.K485T +YML065W ORC1 10346 orc1-N600A N600A amino_acid_mutation PMID:18393942 N600A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.144007_144008delAAinsGC/c.1798_1799delAAinsGC/p.N600A +YML065W ORC1 10347 orc1-R694A R694A amino_acid_mutation PMID:18393942 R694A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.144289_144290delAGinsGC/c.2080_2081delAGinsGC/p.R694A +YML065W ORC1 10348 orc1-R694E R694E amino_acid_mutation PMID:18393942 R694E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.144289_144290delAGinsGA/c.2080_2081delAGinsGA/p.R694E +YML065W ORC1 10349 orc1-R704E R704E amino_acid_mutation PMID:18393942 R704E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.144319_144320delAGinsGA/c.2110_2111delAGinsGA/p.R704E +YML069W POB3 10359 pob3-E154K E154K amino_acid_mutation PMID:35977387 E154K False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.135959G>A/c.460G>A/p.E154K +YML069W POB3 10360 pob3-L78R L78R amino_acid_mutation PMID:23962978 L78R False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.135732T>G/c.233T>G/p.L78R +YML069W POB3 10361 pob3-Q308K Q308K amino_acid_mutation PMID:21656278,PMID:23390603,PMID:36230893 Q308K False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.136421C>A/c.922C>A/p.Q308K +YML076C WAR1 10365 war1-A640T A640T amino_acid_mutation PMID:18621731 A640T False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.113430C>T/c.1918G>A/p.A640T +YML076C WAR1 10366 war1-K110N K110N amino_acid_mutation PMID:33356165 K110N False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.115018C>G/c.330G>C/p.K110N +YML076C WAR1 10367 war1-K70M K70M amino_acid_mutation PMID:33356165 K70M False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.115138_115139delAAinsTG/c.209_210delAAinsTG/p.K70M +YML076C WAR1 10368 war1-K762R K762R amino_acid_mutation PMID:18621731 K762R False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.113063T>C/c.2285A>G/p.K762R +YML076C WAR1 10369 war1-S368L S368L amino_acid_mutation PMID:18621731 S368L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.114245G>A/c.1103C>T/p.S368L +YML076C WAR1 10370 war1-S703P S703P amino_acid_mutation PMID:18621731 S703P False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.113241A>G/c.2107T>C/p.S703P +YML076C WAR1 10371 war1-Y452C Y452C amino_acid_mutation PMID:18621731 Y452C False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.113993T>C/c.1355A>G/p.Y452C +YML076C WAR1 10372 war1-Y463C Y463C amino_acid_mutation PMID:18621731 Y463C False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.113960T>C/c.1388A>G/p.Y463C +YML079W CFF1 10377 cff1-E44A E44A amino_acid_mutation PMID:33688008 E44A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.110377A>C/c.131A>C/p.E44A +YML085C TUB1 10380 tub1-A422V A422V amino_acid_mutation PMID:7622604 A422V False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.98020G>A/c.1265C>T/p.A422V +YML085C TUB1 10381 tub1-D246Y D246Y amino_acid_mutation PMID:34605051 D246Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.98549C>A/c.736G>T/p.D246Y +YML085C TUB1 10382 tub1-G437R G437R amino_acid_mutation PMID:34379441 G437R False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.97976C>G/c.1309G>C/p.G437R +YML085C TUB1 10384 tub1-N102S N102S amino_acid_mutation PMID:31574570 N102S False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.98980T>C/c.305A>G/p.N102S +YML085C TUB1 10385 tub1-R265C R265C amino_acid_mutation PMID:31574570,PMID:32213119 R265C False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.98490_98492delAGAinsTGT/c.793_795delAGAinsTGT/p.R265C +YML085C TUB1 10386 tub1-R403C R403C amino_acid_mutation PMID:30517687,PMID:34605051 R403C False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.98078G>A/c.1207C>T/p.R403C +YML085C TUB1 10387 tub1-R403H R403H amino_acid_mutation PMID:30517687,PMID:34605051 R403H False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.98077C>T/c.1208G>A/p.R403H +YML085C TUB1 10388 tub1-V410A V410A amino_acid_mutation PMID:35511030 V410A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.98056A>G/c.1229T>C/p.V410A +YML085C TUB1 10389 tub1-V410I V410I amino_acid_mutation PMID:35511030 V410I False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.98057C>T/c.1228G>A/p.V410I +YML103C NUP188 10408 nup188-S326* S326* partial_amino_acid_deletion PMID:31611676 S326* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXIII:g.66573G>T/c.977C>A/p.S326* +YML107C PML39 10415 pml39-C271S C271S amino_acid_mutation PMID:36857168 C271S False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.55459A>T/c.811T>A/p.C271S +YML107C PML39 10416 pml39-C292S C292S amino_acid_mutation PMID:36857168 C292S False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.55396A>T/c.874T>A/p.C292S +YML107C PML39 10417 pml39-W119A W119A amino_acid_mutation PMID:36857168 W119A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.55914_55915delTGinsGC/c.355_356delTGinsGC/p.W119A +YML107C PML39 10418 pml39-Y257A Y257A amino_acid_mutation PMID:36857168 Y257A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.55500_55501delTAinsGC/c.769_770delTAinsGC/p.Y257A +YML111W BUL2 10420 bul2-H114Y H114Y amino_acid_mutation PMID:35942513 H114Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.47281C>T/c.340C>T/p.H114Y +YML111W BUL2 10421 bul2-L883F L883F amino_acid_mutation PMID:35511982 L883F False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.49588C>T/c.2647C>T/p.L883F +YML121W GTR1 10426 gtr1-Q65L Q65L amino_acid_mutation PMID:10388807,PMID:16732272,PMID:23716719,PMID:25046117,PMID:32449834,PMID:32801125,PMID:35158208 Q65L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.27123A>T/c.194A>T/p.Q65L +YML121W GTR1 10427 gtr1-S15G S15G amino_acid_mutation PMID:10388807 S15G False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.26972_26973delTCinsGG/c.43_44delTCinsGG/p.S15G +YML121W GTR1 10428 gtr1-S15V S15V amino_acid_mutation PMID:10388807 S15V False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.26972_26973delTCinsGT/c.43_44delTCinsGT/p.S15V +YML121W GTR1 10429 gtr1-S20L S20L amino_acid_mutation PMID:36047762 S20L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.26988C>T/c.59C>T/p.S20L +YML121W GTR1 10430 gtr1-S20N S20N amino_acid_mutation PMID:10388807,PMID:32801125 S20N False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.26987_26989delTCGinsAAC/c.58_60delTCGinsAAC/p.S20N +YML123C PHO84 10432 pho84-Y179A Y179A amino_acid_mutation PMID:27875295 Y179A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.25265_25266delTAinsGC/c.535_536delTAinsGC/p.Y179A +YML123C PHO84 10433 pho84-Y179G Y179G amino_acid_mutation PMID:27875295 Y179G False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.25265_25266delTAinsGG/c.535_536delTAinsGG/p.Y179G +YML124C TUB3 10434 tub3-V410A V410A amino_acid_mutation PMID:35511030 V410A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.22157A>G/c.1229T>C/p.V410A +YML124C TUB3 10435 tub3-V410I V410I amino_acid_mutation PMID:35511030 V410I False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.22158C>T/c.1228G>A/p.V410I +YMR001C CDC5 10453 cdc5-L158G L158G amino_acid_mutation PMID:18022565 L158G False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.270664_270665delTTinsGG/c.472_473delTTinsGG/p.L158G +YMR001C CDC5 10454 cdc5-L251W L251W amino_acid_mutation PMID:27565373 L251W False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.270385A>C/c.752T>G/p.L251W +YMR001C CDC5 10455 cdc5-S18A S18A amino_acid_mutation PMID:34685541 S18A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.271085A>C/c.52T>G/p.S18A +YMR001C CDC5 10456 cdc5-S630Q S630Q amino_acid_mutation PMID:32099015 S630Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.269247_269249delAGTinsCAA/c.1888_1890delAGTinsCAA/p.S630Q +YMR001C CDC5 10457 cdc5-T238A T238A amino_acid_mutation PMID:27565373 T238A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.270425T>C/c.712A>G/p.T238A +YMR001C CDC5 10458 cdc5-T23A T23A amino_acid_mutation PMID:34685541 T23A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.271070T>C/c.67A>G/p.T23A +YMR001C CDC5 10459 cdc5-T29A T29A amino_acid_mutation PMID:34685541 T29A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.271052T>C/c.85A>G/p.T29A +YMR001C CDC5 10460 cdc5-T70A T70A amino_acid_mutation PMID:34685541 T70A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.270929T>C/c.208A>G/p.T70A +YMR005W TAF4 10467 taf4-W317E W317E amino_acid_mutation PMID:23814059 W317E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.276993_276994delTGinsGA/c.949_950delTGinsGA/p.W317E +YMR019W STB4 10473 stb4-C762Y C762Y amino_acid_mutation PMID:35311587 C762Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.314440G>A/c.2285G>A/p.C762Y +YMR028W TAP42 10479 tap42-G360R G360R amino_acid_mutation PMID:28648781 G360R False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.328559G>A/c.1078G>A/p.G360R +YMR030W RSF1 10480 rsf1-D181G D181G amino_acid_mutation PMID:33973343 D181G False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.331334A>G/c.542A>G/p.D181G +YMR037C MSN2 10489 msn2-S194A S194A amino_acid_mutation PMID:28330760 S194A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.345938A>C/c.580T>G/p.S194A +YMR037C MSN2 10490 msn2-S194A,S638A S194A,S638A amino_acid_mutation PMID:28330760 S194A|S638A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.345938A>C/c.580T>G/p.S194A|chrXIII:g.344606A>C/c.1912T>G/p.S638A +YMR037C MSN2 10491 msn2-S582A S582A amino_acid_mutation PMID:30507007,PMID:35159565 S582A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.344774A>C/c.1744T>G/p.S582A +YMR037C MSN2 10492 msn2-S625A S625A amino_acid_mutation PMID:31087774 S625A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.344645A>C/c.1873T>G/p.S625A +YMR037C MSN2 10493 msn2-S633A S633A amino_acid_mutation PMID:30507007 S633A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.344620_344621delAGinsGC/c.1897_1898delAGinsGC/p.S633A +YMR037C MSN2 10494 msn2-S638A S638A amino_acid_mutation PMID:28330760 S638A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.344606A>C/c.1912T>G/p.S638A +YMR043W MCM1 10503 mcm1-K29E K29E amino_acid_mutation PMID:12509445 K29E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.353955A>G/c.85A>G/p.K29E +YMR043W MCM1 10504 mcm1-L68E L68E amino_acid_mutation PMID:12509445 L68E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.354072_354073delTTinsGA/c.202_203delTTinsGA/p.L68E +YMR043W MCM1 10505 mcm1-P281L P281L amino_acid_mutation PMID:31611676 P281L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.354712C>T/c.842C>T/p.P281L +YMR043W MCM1 10506 mcm1-T35A T35A amino_acid_mutation PMID:16278448 T35A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.353973A>G/c.103A>G/p.T35A +YMR043W MCM1 10507 mcm1-T66E T66E amino_acid_mutation PMID:12509445 T66E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.354066_354067delACinsGA/c.196_197delACinsGA/p.T66E +YMR043W MCM1 10508 mcm1-T71N T71N amino_acid_mutation PMID:31611676 T71N False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.354082C>A/c.212C>A/p.T71N +YMR065W KAR5 10535 kar5-N276D N276D amino_acid_mutation PMID:31611676 N276D False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.400527A>G/c.826A>G/p.N276D +YMR078C CTF18 10547 ctf18-K189A K189A amino_acid_mutation PMID:26987677 K189A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.424163_424164delAAinsGC/c.565_566delAAinsGC/p.K189A +YMR078C CTF18 10548 ctf18-K189E K189E amino_acid_mutation PMID:15964801 K189E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.424164T>C/c.565A>G/p.K189E +YMR078C CTF18 10549 ctf18-K189R K189R amino_acid_mutation PMID:32277910 K189R False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.424163T>C/c.566A>G/p.K189R +YMR079W SEC14 10553 sec14-G266D G266D amino_acid_mutation PMID:23383173 G266D False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.425941G>A/c.797G>A/p.G266D +YMR079W SEC14 10554 sec14-S173I,T175I S173I,T175I amino_acid_mutation PMID:32828847 S173I|T175I False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.425661_425662delTCinsAT/c.517_518delTCinsAT/p.S173I|chrXIII:g.425668C>T/c.524C>T/p.T175I +YMR080C NAM7 10564 nam7-C62Y C62Y amino_acid_mutation PMID:36192133,PMID:8896465 C62Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.429443C>T/c.185G>A/p.C62Y +YMR080C NAM7 10565 nam7-C84S C84S amino_acid_mutation PMID:8816462 C84S False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.429378A>T/c.250T>A/p.C84S +YMR080C NAM7 10566 nam7-DE572AA DE572AA amino_acid_mutation PMID:16777600,PMID:36192133,PMID:8816461 DE572AA False amino_acid_mutation:multiple_aa amino_acid_mutation chrXIII:g.427909_427914delinsTGCTGC/c.1714_1719delinsGCAGCA/p.D572_E573delinsAA +YMR080C NAM7 10567 nam7-K436A K436A amino_acid_mutation PMID:8816461 K436A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.428321_428322delAAinsGC/c.1306_1307delAAinsGC/p.K436A +YMR080C NAM7 10568 nam7-K436D K436D amino_acid_mutation PMID:8816461 K436D False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.428320_428322delAAAinsGAC/c.1306_1308delAAAinsGAC/p.K436D +YMR080C NAM7 10569 nam7-K436E K436E amino_acid_mutation PMID:36192133,PMID:8816461 K436E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.428322T>C/c.1306A>G/p.K436E +YMR080C NAM7 10570 nam7-K436P K436P amino_acid_mutation PMID:8816461 K436P False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.428321_428322delAAinsCC/c.1306_1307delAAinsCC/p.K436P +YMR080C NAM7 10571 nam7-K436Q K436Q amino_acid_mutation PMID:8816461 K436Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.428322T>G/c.1306A>C/p.K436Q +YMR080C NAM7 10572 nam7-RR793AA RR793AA amino_acid_mutation PMID:36192133,PMID:8816461 RR793AA False amino_acid_mutation:multiple_aa amino_acid_mutation chrXIII:g.427246_427251delinsTGCTGC/c.2377_2382delinsGCAGCA/p.R793_R794delinsAA +YMR080C NAM7 10573 nam7-RR793KK RR793KK amino_acid_mutation PMID:8816461 RR793KK False amino_acid_mutation:multiple_aa amino_acid_mutation chrXIII:g.427246_427251delinsCTTCTT/c.2377_2382delinsAAGAAG/p.R793_R794delinsKK +YMR080C NAM7 10574 nam7-TR800AA TR800AA amino_acid_mutation PMID:8816461 TR800AA False amino_acid_mutation:multiple_aa amino_acid_mutation chrXIII:g.427225_427230delinsTGCTGC/c.2398_2403delinsGCAGCA/p.T800_R801delinsAA +YMR098C ATP25 10587 atp25-R574C R574C amino_acid_mutation PMID:34362905 R574C False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.460890G>A/c.1720C>T/p.R574C +YMR104C YPK2 10590 ypk2-D239A D239A amino_acid_mutation PMID:16055732 D239A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.474738T>G/c.716A>C/p.D239A +YMR104C YPK2 10591 ypk2-D239A,K373A D239A,K373A amino_acid_mutation PMID:16055732 D239A|K373A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.474738T>G/c.716A>C/p.D239A|chrXIII:g.474336_474337delAAinsGC/c.1117_1118delAAinsGC/p.K373A +YMR104C YPK2 10592 ypk2-D239A,T501A D239A,T501A amino_acid_mutation PMID:16055732 D239A|T501A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.474738T>G/c.716A>C/p.D239A|chrXIII:g.473953T>C/c.1501A>G/p.T501A +YMR104C YPK2 10593 ypk2-K373A K373A amino_acid_mutation PMID:16055732 K373A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.474336_474337delAAinsGC/c.1117_1118delAAinsGC/p.K373A +YMR104C YPK2 10594 ypk2-S641A S641A amino_acid_mutation PMID:16055732 S641A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.473532_473533delAGinsGC/c.1921_1922delAGinsGC/p.S641A +YMR104C YPK2 10595 ypk2-S641A,T659A S641A,T659A amino_acid_mutation PMID:16055732 S641A|T659A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.473532_473533delAGinsGC/c.1921_1922delAGinsGC/p.S641A|chrXIII:g.473479T>C/c.1975A>G/p.T659A +YMR104C YPK2 10596 ypk2-T501A T501A amino_acid_mutation PMID:16055732 T501A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.473953T>C/c.1501A>G/p.T501A +YMR104C YPK2 10597 ypk2-T659A T659A amino_acid_mutation PMID:16055732 T659A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.473479T>C/c.1975A>G/p.T659A +YMR108W ILV2 10599 ilv2-E139A E139A amino_acid_mutation PMID:29127264 E139A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.484499A>C/c.416A>C/p.E139A +YMR109W MYO5 10601 myo5-S357A S357A amino_acid_mutation PMID:16478726 S357A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.487655T>G/c.1069T>G/p.S357A +YMR109W MYO5 10602 myo5-S357E S357E amino_acid_mutation PMID:16478726 S357E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.487655_487656delTCinsGA/c.1069_1070delTCinsGA/p.S357E +YMR111C EUC1 10603 euc1-K231R K231R amino_acid_mutation PMID:31015336 K231R False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.493101T>C/c.692A>G/p.K231R +YMR116C ASC1 10608 asc1-R38D,K40E R38D,K40E amino_acid_mutation PMID:19114558,PMID:27821475,PMID:28982715 R38D|K40E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.500576_500577delCGinsGA/c.112_113delCGinsGA/p.R38D|chrXIII:g.500571T>C/c.118A>G/p.K40E +YMR117C SPC24 10615 spc24-L160D L160D amino_acid_mutation PMID:23334295 L160D False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.501412_501414delCTAinsGAC/c.478_480delCTAinsGAC/p.L160D +YMR128W ECM16 10618 ecm16-K420A K420A amino_acid_mutation PMID:31188444 K420A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.524953_524954delAAinsGC/c.1258_1259delAAinsGC/p.K420A +YMR128W ECM16 10619 ecm16-K637H K637H amino_acid_mutation PMID:31188444 K637H False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.525604_525606delAAAinsCAT/c.1909_1911delAAAinsCAT/p.K637H +YMR128W ECM16 10620 ecm16-L639P L639P amino_acid_mutation PMID:31188444 L639P False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.525611T>C/c.1916T>C/p.L639P +YMR128W ECM16 10621 ecm16-N570K N570K amino_acid_mutation PMID:31188444 N570K False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.525405C>G/c.1710C>G/p.N570K +YMR137C PSO2 10628 pso2-H611A H611A amino_acid_mutation PMID:32371399,PMID:35482533 H611A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.543132_543133delCAinsGC/c.1831_1832delCAinsGC/p.H611A +YMR137C PSO2 10629 pso2-K196A,K198A,R199A K196A,K198A,R199A amino_acid_mutation PMID:35482533 K196A|K198A|R199A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.544377_544378delAAinsGC/c.586_587delAAinsGC/p.K196A|chrXIII:g.544371_544372delAAinsGC/c.592_593delAAinsGC/p.K198A|chrXIII:g.544368_544369delAGinsGC/c.595_596delAGinsGC/p.R199A +YMR137C PSO2 10630 pso2-R16A,K17A R16A,K17A amino_acid_mutation PMID:35482533 R16A|K17A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.544917_544918delCGinsGC/c.46_47delCGinsGC/p.R16A|chrXIII:g.544914_544915delAAinsGC/c.49_50delAAinsGC/p.K17A +YMR137C PSO2 10631 pso2-R3A,K4A R3A,K4A amino_acid_mutation PMID:35482533 R3A|K4A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.544956_544957delAGinsGC/c.7_8delAGinsGC/p.R3A|chrXIII:g.544953_544954delAAinsGC/c.10_11delAAinsGC/p.K4A +YMR159C ATG16 10654 atg16-F46A F46A amino_acid_mutation PMID:17192262 F46A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.574792_574793delTTinsGC/c.136_137delTTinsGC/p.F46A +YMR159C ATG16 10655 atg16-R35A R35A amino_acid_mutation PMID:17192262 R35A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.574825_574826delCGinsGC/c.103_104delCGinsGC/p.R35A +YMR162C DNF3 10656 dnf3-D566N D566N amino_acid_mutation PMID:32661085 D566N False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.582226C>T/c.1696G>A/p.D566N +YMR162C DNF3 10657 dnf3-E342Q E342Q amino_acid_mutation PMID:32661085 E342Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.582898C>G/c.1024G>C/p.E342Q +YMR165C PAH1 10660 pah1-D398E D398E amino_acid_mutation PMID:17971454 D398E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.591435A>C/c.1194T>G/p.D398E +YMR165C PAH1 10661 pah1-D400E D400E amino_acid_mutation PMID:17971454 D400E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.591429A>C/c.1200T>G/p.D400E +YMR165C PAH1 10662 pah1-G80R G80R amino_acid_mutation PMID:17971454 G80R False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.592391C>T/c.238G>A/p.G80R +YMR165C PAH1 10663 pah1-S602A S602A amino_acid_mutation PMID:35780834 S602A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.590825A>C/c.1804T>G/p.S602A +YMR165C PAH1 10665 pah1-T163A,T164A T163A,T164A amino_acid_mutation PMID:35780834 T163A|T164A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.592142T>C/c.487A>G/p.T163A|chrXIII:g.592139T>C/c.490A>G/p.T164A +YMR165C PAH1 10666 pah1-T163A,T164A,S602A T163A,T164A,S602A amino_acid_mutation PMID:35780834 T163A|T164A|S602A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.592142T>C/c.487A>G/p.T163A|chrXIII:g.592139T>C/c.490A>G/p.T164A|chrXIII:g.590825A>C/c.1804T>G/p.S602A +YMR165C PAH1 10667 pah1-W637A W637A amino_acid_mutation PMID:35026226 W637A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.590719_590720delTGinsGC/c.1909_1910delTGinsGC/p.W637A +YMR167W MLH1 10672 mlh1-A18P A18P amino_acid_mutation PMID:33303966 A18P False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.594937G>C/c.52G>C/p.A18P +YMR167W MLH1 10674 mlh1-I409A I409A amino_acid_mutation PMID:36215471 I409A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.596110_596111delATinsGC/c.1225_1226delATinsGC/p.I409A +YMR167W MLH1 10676 mlh1-R401A R401A amino_acid_mutation PMID:36215471 R401A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.596086_596087delAGinsGC/c.1201_1202delAGinsGC/p.R401A +YMR167W MLH1 10677 mlh1-S240R,L271P,E333K,D678N,P703L,D761G S240R,L271P,E333K,D678N,P703L,D761G amino_acid_mutation PMID:16492773 S240R|L271P|E333K|D678N|P703L|D761G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.595605C>G/c.720C>G/p.S240R|chrXIII:g.595697T>C/c.812T>C/p.L271P|chrXIII:g.595882G>A/c.997G>A/p.E333K|chrXIII:g.596917G>A/c.2032G>A/p.D678N|chrXIII:g.596993C>T/c.2108C>T/p.P703L|chrXIII:g.597167A>G/c.2282A>G/p.D761G +YMR167W MLH1 10678 mlh1-T42A T42A amino_acid_mutation PMID:32772095 T42A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.595009A>G/c.124A>G/p.T42A +YMR172W HOT1 10681 hot1-P107S,H274Y P107S,H274Y amino_acid_mutation PMID:23759206 P107S|H274Y False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.606299C>T/c.319C>T/p.P107S|chrXIII:g.606800C>T/c.820C>T/p.H274Y +YMR186W HSC82 10686 hsc82-A583T A583T amino_acid_mutation PMID:33789348 A583T False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.634101G>A/c.1747G>A/p.A583T +YMR186W HSC82 10687 hsc82-E33A E33A amino_acid_mutation PMID:37120429 E33A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.632313A>C/c.98A>C/p.E33A +YMR186W HSC82 10688 hsc82-G309S G309S amino_acid_mutation PMID:33789348 G309S False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.633279G>A/c.925G>A/p.G309S +YMR186W HSC82 10689 hsc82-G424D G424D amino_acid_mutation PMID:33789348 G424D False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.633625G>A/c.1271G>A/p.G424D +YMR186W HSC82 10690 hsc82-I588A,M589A I588A,M589A amino_acid_mutation PMID:25380751 I588A|M589A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.634116_634117delATinsGC/c.1762_1763delATinsGC/p.I588A|chrXIII:g.634119_634120delATinsGC/c.1765_1766delATinsGC/p.M589A +YMR186W HSC82 10691 hsc82-K102E K102E amino_acid_mutation PMID:33789348 K102E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.632658A>G/c.304A>G/p.K102E +YMR186W HSC82 10692 hsc82-K394E K394E amino_acid_mutation PMID:33789348 K394E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.633534A>G/c.1180A>G/p.K394E +YMR186W HSC82 10693 hsc82-Q380K Q380K amino_acid_mutation PMID:33789348 Q380K False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.633492C>A/c.1138C>A/p.Q380K +YMR186W HSC82 10694 hsc82-R46G R46G amino_acid_mutation PMID:33789348 R46G False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.632490A>G/c.136A>G/p.R46G +YMR186W HSC82 10695 hsc82-S25P S25P amino_acid_mutation PMID:33789348 S25P False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.632288T>C/c.73T>C/p.S25P +YMR186W HSC82 10696 hsc82-S481Y S481Y amino_acid_mutation PMID:33789348 S481Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.633796C>A/c.1442C>A/p.S481Y +YMR186W HSC82 10697 hsc82-T521I T521I amino_acid_mutation PMID:33789348 T521I False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.633916C>T/c.1562C>T/p.T521I +YMR186W HSC82 10698 hsc82-W296A W296A amino_acid_mutation PMID:33789348 W296A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.633240_633241delTGinsGC/c.886_887delTGinsGC/p.W296A +YMR190C SGS1 10704 sgs1-F870L F870L amino_acid_mutation PMID:23129629 F870L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.642651A>G/c.2608T>C/p.F870L +YMR190C SGS1 10705 sgs1-G1115R G1115R amino_acid_mutation PMID:23129629 G1115R False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.641916C>G/c.3343G>C/p.G1115R +YMR190C SGS1 10706 sgs1-G983V G983V amino_acid_mutation PMID:23129629 G983V False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.642311C>A/c.2948G>T/p.G983V +YMR190C SGS1 10707 sgs1-I732T I732T amino_acid_mutation PMID:23129629 I732T False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.643064A>G/c.2195T>C/p.I732T +YMR190C SGS1 10709 sgs1-K621R K621R amino_acid_mutation PMID:27298337 K621R False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.643397T>C/c.1862A>G/p.K621R +YMR190C SGS1 10710 sgs1-K706A K706A amino_acid_mutation PMID:18272435,PMID:33115720,PMID:35483549 K706A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.643142_643143delAAinsGC/c.2116_2117delAAinsGC/p.K706A +YMR190C SGS1 10711 sgs1-K706R K706R amino_acid_mutation PMID:18272435 K706R False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.643142T>C/c.2117A>G/p.K706R +YMR190C SGS1 10712 sgs1-K881L K881L amino_acid_mutation PMID:23129629 K881L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.642617_642618delAAinsCT/c.2641_2642delAAinsCT/p.K881L +YMR190C SGS1 10715 sgs1-P701L P701L amino_acid_mutation PMID:23129629 P701L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.643157G>A/c.2102C>T/p.P701L +YMR190C SGS1 10716 sgs1-R804C R804C amino_acid_mutation PMID:23129629 R804C False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.642849G>A/c.2410C>T/p.R804C +YMR190C SGS1 10717 sgs1-W816R W816R amino_acid_mutation PMID:23129629 W816R False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.642813A>T/c.2446T>A/p.W816R +YMR190C SGS1 10718 sgs1-Y824C Y824C amino_acid_mutation PMID:23129629 Y824C False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.642788T>C/c.2471A>G/p.Y824C +YMR200W ROT1 10733 rot1-S250L S250L amino_acid_mutation PMID:24303792 S250L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.665500C>T/c.749C>T/p.S250L +YMR208W ERG12 10749 erg12-S148A S148A amino_acid_mutation PMID:35541305 S148A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.684908T>G/c.442T>G/p.S148A +YMR208W ERG12 10750 erg12-S148F S148F amino_acid_mutation PMID:35541305 S148F False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.684909_684910delCAinsTT/c.443_444delCAinsTT/p.S148F +YMR208W ERG12 10751 erg12-S148I S148I amino_acid_mutation PMID:35541305 S148I False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.684908_684909delTCinsAT/c.442_443delTCinsAT/p.S148I +YMR208W ERG12 10752 erg12-S148I,V301E S148I,V301E amino_acid_mutation PMID:35541305 S148I|V301E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.684908_684909delTCinsAT/c.442_443delTCinsAT/p.S148I|chrXIII:g.685368T>A/c.902T>A/p.V301E +YMR208W ERG12 10753 erg12-S148L S148L amino_acid_mutation PMID:35541305 S148L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.684909C>T/c.443C>T/p.S148L +YMR208W ERG12 10754 erg12-S148V S148V amino_acid_mutation PMID:35541305 S148V False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.684908_684909delTCinsGT/c.442_443delTCinsGT/p.S148V +YMR208W ERG12 10755 erg12-V13D V13D amino_acid_mutation PMID:35541305 V13D False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.684424T>A/c.38T>A/p.V13D +YMR208W ERG12 10756 erg12-V13D,S148I V13D,S148I amino_acid_mutation PMID:35541305 V13D|S148I False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.684424T>A/c.38T>A/p.V13D|chrXIII:g.684908_684909delTCinsAT/c.442_443delTCinsAT/p.S148I +YMR208W ERG12 10757 erg12-V13D,S148I,V301E V13D,S148I,V301E amino_acid_mutation PMID:35541305 V13D|S148I|V301E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.684424T>A/c.38T>A/p.V13D|chrXIII:g.684908_684909delTCinsAT/c.442_443delTCinsAT/p.S148I|chrXIII:g.685368T>A/c.902T>A/p.V301E +YMR208W ERG12 10758 erg12-V13D,V301E V13D,V301E amino_acid_mutation PMID:35541305 V13D|V301E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.684424T>A/c.38T>A/p.V13D|chrXIII:g.685368T>A/c.902T>A/p.V301E +YMR208W ERG12 10759 erg12-V13E V13E amino_acid_mutation PMID:35541305 V13E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.684424_684425delTCinsAG/c.38_39delTCinsAG/p.V13E +YMR208W ERG12 10760 erg12-V301C V301C amino_acid_mutation PMID:35541305 V301C False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.685367_685369delGTAinsTGT/c.901_903delGTAinsTGT/p.V301C +YMR208W ERG12 10761 erg12-V301E V301E amino_acid_mutation PMID:35541305 V301E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.685368T>A/c.902T>A/p.V301E +YMR208W ERG12 10762 erg12-V301L V301L amino_acid_mutation PMID:35541305 V301L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.685367G>C/c.901G>C/p.V301L +YMR216C SKY1 10772 sky1-K187M K187M amino_acid_mutation PMID:31399582 K187M False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.700480T>A/c.560A>T/p.K187M +YMR218C TRS130 10775 trs130-V95L V95L amino_acid_mutation PMID:29796388 V95L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.706605C>G/c.283G>C/p.V95L +YMR222C FSH2 10788 fsh2-V5I V5I amino_acid_mutation PMID:31611676 V5I False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.716297C>T/c.13G>A/p.V5I +YMR223W UBP8 10789 ubp8-S149T S149T amino_acid_mutation PMID:32303542 S149T False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.717160G>C/c.446G>C/p.S149T +YMR224C MRE11 10793 mre11-A470T A470T amino_acid_mutation PMID:28886051,PMID:30765145 A470T False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.719246C>T/c.1408G>A/p.A470T +YMR224C MRE11 10794 mre11-D16A D16A amino_acid_mutation PMID:16143598 D16A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.720607T>G/c.47A>C/p.D16A +YMR224C MRE11 10795 mre11-D16N D16N amino_acid_mutation PMID:16143598 D16N False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.720608C>T/c.46G>A/p.D16N +YMR224C MRE11 10796 mre11-D56A D56A amino_acid_mutation PMID:16143598,PMID:21060845 D56A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.720487T>G/c.167A>C/p.D56A +YMR224C MRE11 10797 mre11-D56N D56N amino_acid_mutation PMID:16143598,PMID:21060845 D56N False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.720488C>T/c.166G>A/p.D56N +YMR224C MRE11 10798 mre11-D56N,H125N D56N,H125N amino_acid_mutation PMID:16143598 D56N|H125N False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.720488C>T/c.166G>A/p.D56N|chrXIII:g.720281G>T/c.373C>A/p.H125N +YMR224C MRE11 10799 mre11-H125A H125A amino_acid_mutation PMID:16143598 H125A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.720280_720281delCAinsGC/c.373_374delCAinsGC/p.H125A +YMR224C MRE11 10800 mre11-H125N H125N amino_acid_mutation PMID:16143598,PMID:21060845,PMID:21146476,PMID:33086066,PMID:34075539,PMID:34263309,PMID:34543274,PMID:35352941 H125N False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.720281G>T/c.373C>A/p.H125N +YMR224C MRE11 10801 mre11-H213Y H213Y amino_acid_mutation PMID:21060845 H213Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.720017G>A/c.637C>T/p.H213Y +YMR224C MRE11 10802 mre11-H59A H59A amino_acid_mutation PMID:21060845 H59A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.720478_720479delCAinsGC/c.175_176delCAinsGC/p.H59A +YMR224C MRE11 10803 mre11-I114V I114V amino_acid_mutation PMID:34075539 I114V False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.720314T>C/c.340A>G/p.I114V +YMR224C MRE11 10804 mre11-N111D N111D amino_acid_mutation PMID:34075539 N111D False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.720323T>C/c.331A>G/p.N111D +YMR224C MRE11 10805 mre11-P110L P110L amino_acid_mutation PMID:25831494 P110L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.720375G>A/c.329C>T/p.P110L +YMR224C MRE11 10806 mre11-P297S P297S amino_acid_mutation PMID:34075539 P297S False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.719765G>A/c.889C>T/p.P297S +YMR224C MRE11 10807 mre11-R302W R302W amino_acid_mutation PMID:34075539 R302W False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.719750G>A/c.904C>T/p.R302W +YMR224C MRE11 10808 mre11-R390C R390C amino_acid_mutation PMID:34075539 R390C False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.719484_719486delAGAinsTGT/c.1168_1170delAGAinsTGT/p.R390C +YMR224C MRE11 10809 mre11-S269F S269F amino_acid_mutation PMID:34075539 S269F False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.719847_719848delCAinsTT/c.806_807delCAinsTT/p.S269F +YMR227C TAF7 10811 taf7-N147D N147D amino_acid_mutation PMID:35554494 N147D False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.723947T>C/c.439A>G/p.N147D +YMR227C TAF7 10812 taf7-N147G N147G amino_acid_mutation PMID:35554494 N147G False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.723946_723947delAAinsGG/c.439_440delAAinsGG/p.N147G +YMR229C RRP5 10816 rrp5-A98S A98S amino_acid_mutation PMID:31611676 A98S False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.730832C>A/c.292G>T/p.A98S +YMR231W PEP5 10822 pep5-C952G C952G amino_acid_mutation PMID:26307567 C952G False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.736398T>G/c.2854T>G/p.C952G +YMR232W FUS2 10824 fus2-S67A S67A amino_acid_mutation PMID:35454186 S67A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.737124_737125delAGinsGC/c.199_200delAGinsGC/p.S67A +YMR232W FUS2 10825 fus2-S84E S84E amino_acid_mutation PMID:19188495 S84E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.737175_737177delTCTinsGAG/c.250_252delTCTinsGAG/p.S84E +YMR233W TRI1 10827 tri1-K201R,K215R K201R,K215R amino_acid_mutation PMID:17603101 K201R|K215R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.739786A>G/c.602A>G/p.K201R|chrXIII:g.739828A>G/c.644A>G/p.K215R +YMR235C RNA1 10830 rna1-330-407 330-407 partial_amino_acid_deletion PMID:2674676 330-407 False partial_amino_acid_deletion:multiple_aa partial_amino_acid_deletion chrXIII:g.741557_741790del234/c.989_1222del234/p.E330_Q407del78 +YMR235C RNA1 10832 rna1-S116F S116F amino_acid_mutation PMID:23962978 S116F False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.742389G>A/c.347C>T/p.S116F +YMR244C-A COA6 10844 coa6-W26C W26C amino_acid_mutation PMID:24549041 W26C False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.758754C>A/c.78G>T/p.W26C +YMR246W FAA4 10846 faa4-G113R G113R amino_acid_mutation PMID:31611676 G113R False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.760143G>A/c.337G>A/p.G113R +YMR259C TRM732 10851 trm732-G752A G752A amino_acid_mutation PMID:35559166 G752A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.786629C>G/c.2255G>C/p.G752A +YMR259C TRM732 10852 trm732-G752A,L753A,P754A G752A,L753A,P754A amino_acid_mutation PMID:35559166 G752A|L753A|P754A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.786629C>G/c.2255G>C/p.G752A|chrXIII:g.786626_786627delTTinsGC/c.2257_2258delTTinsGC/p.L753A|chrXIII:g.786624G>C/c.2260C>G/p.P754A +YMR259C TRM732 10853 trm732-H975A,G976A H975A,G976A amino_acid_mutation PMID:35559166 H975A|G976A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.785960_785961delCAinsGC/c.2923_2924delCAinsGC/p.H975A|chrXIII:g.785957C>G/c.2927G>C/p.G976A +YMR259C TRM732 10854 trm732-L753A L753A amino_acid_mutation PMID:35559166 L753A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.786626_786627delTTinsGC/c.2257_2258delTTinsGC/p.L753A +YMR259C TRM732 10855 trm732-P754A P754A amino_acid_mutation PMID:35559166 P754A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.786624G>C/c.2260C>G/p.P754A +YMR259C TRM732 10856 trm732-R701A,H702A R701A,H702A amino_acid_mutation PMID:35559166 R701A|H702A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.786782_786783delCGinsGC/c.2101_2102delCGinsGC/p.R701A|chrXIII:g.786779_786780delCAinsGC/c.2104_2105delCAinsGC/p.H702A +YMR259C TRM732 10857 trm732-R748A R748A amino_acid_mutation PMID:35559166 R748A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.786641_786642delAGinsGC/c.2242_2243delAGinsGC/p.R748A +YMR259C TRM732 10858 trm732-R748A,R749A,S750A R748A,R749A,S750A amino_acid_mutation PMID:35559166 R748A|R749A|S750A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.786641_786642delAGinsGC/c.2242_2243delAGinsGC/p.R748A|chrXIII:g.786638_786639delAGinsGC/c.2245_2246delAGinsGC/p.R749A|chrXIII:g.786636A>C/c.2248T>G/p.S750A +YMR259C TRM732 10859 trm732-S750A S750A amino_acid_mutation PMID:35559166 S750A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.786636A>C/c.2248T>G/p.S750A +YMR260C TIF11 10868 tif11-F131A,F133A F131A,F133A amino_acid_mutation PMID:16193068,PMID:17332751 F131A|F133A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.789473_789474delTTinsGC/c.391_392delTTinsGC/p.F131A|chrXIII:g.789442_789443delTTinsGC/c.397_398delTTinsGC/p.F133A +YMR260C TIF11 10875 tif11-K64A K64A amino_acid_mutation PMID:16193068 K64A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.789649_789650delAAinsGC/c.190_191delAAinsGC/p.K64A +YMR260C TIF11 10876 tif11-K67D K67D amino_acid_mutation PMID:16193068 K67D False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.789639_789641delAAGinsGAC/c.199_201delAAGinsGAC/p.K67D +YMR260C TIF11 10885 tif11-Q85A Q85A amino_acid_mutation PMID:16193068 Q85A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.789586_789587delCAinsGC/c.253_254delCAinsGC/p.Q85A +YMR260C TIF11 10886 tif11-R62D R62D amino_acid_mutation PMID:16193068 R62D False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.789654_789656delAGAinsGAC/c.184_186delAGAinsGAC/p.R62D +YMR275C BUL1 10901 bul1-G347R G347R amino_acid_mutation PMID:35942513 G347R False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.817543C>T/c.1039G>A/p.G347R +YMR288W HSH155 10919 hsh155-A784V A784V amino_acid_mutation PMID:31611676 A784V False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.847921C>T/c.2351C>T/p.A784V +YMR288W HSH155 10920 hsh155-D450G D450G amino_acid_mutation PMID:28062854,PMID:28087715 D450G False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.846919A>G/c.1349A>G/p.D450G +YMR288W HSH155 10921 hsh155-E291G E291G amino_acid_mutation PMID:28087715 E291G False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.846442A>G/c.872A>G/p.E291G +YMR288W HSH155 10922 hsh155-E529K E529K amino_acid_mutation PMID:32320410 E529K False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.847155G>A/c.1585G>A/p.E529K +YMR288W HSH155 10923 hsh155-E531K E531K amino_acid_mutation PMID:32320410 E531K False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.847161G>A/c.1591G>A/p.E531K +YMR288W HSH155 10924 hsh155-E571G E571G amino_acid_mutation PMID:32320410 E571G False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.847282A>G/c.1712A>G/p.E571G +YMR288W HSH155 10925 hsh155-H331R H331R amino_acid_mutation PMID:28087715 H331R False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.846562A>G/c.992A>G/p.H331R +YMR288W HSH155 10926 hsh155-I626Q I626Q amino_acid_mutation PMID:32320410 I626Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.847446_847447delATinsCA/c.1876_1877delATinsCA/p.I626Q +YMR288W HSH155 10927 hsh155-K335E K335E amino_acid_mutation PMID:28062854 K335E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.846552A>G/c.1003A>G/p.K335E +YMR288W HSH155 10928 hsh155-K335N K335N amino_acid_mutation PMID:28087715 K335N False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.846554A>C/c.1005A>C/p.K335N +YMR288W HSH155 10929 hsh155-L244P L244P amino_acid_mutation PMID:28087715 L244P False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.846301T>C/c.731T>C/p.L244P +YMR288W HSH155 10930 hsh155-L279R L279R amino_acid_mutation PMID:28087715 L279R False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.846406T>G/c.836T>G/p.L279R +YMR288W HSH155 10931 hsh155-L313S L313S amino_acid_mutation PMID:28087715 L313S False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.846508T>C/c.938T>C/p.L313S +YMR288W HSH155 10932 hsh155-L777N L777N amino_acid_mutation PMID:30639260 L777N False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.847878_847880delTTAinsAAC/c.2329_2331delTTAinsAAC/p.L777N +YMR288W HSH155 10933 hsh155-N747V N747V amino_acid_mutation PMID:30639260 N747V False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.847809_847810delAAinsGT/c.2239_2240delAAinsGT/p.N747V +YMR288W HSH155 10934 hsh155-N747V,L777N N747V,L777N amino_acid_mutation PMID:30639260 N747V|L777N False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.847809_847810delAAinsGT/c.2239_2240delAAinsGT/p.N747V|chrXIII:g.847878_847880delTTAinsAAC/c.2329_2331delTTAinsAAC/p.L777N +YMR288W HSH155 10935 hsh155-R294L R294L amino_acid_mutation PMID:28062854 R294L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.846450_846451delAGinsCT/c.880_881delAGinsCT/p.R294L +YMR288W HSH155 10936 hsh155-V502F V502F amino_acid_mutation PMID:32320410 V502F False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.847074G>T/c.1504G>T/p.V502F +YMR290C HAS1 10939 has1-D196A D196A amino_acid_mutation PMID:16449635 D196A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.851005T>G/c.587A>C/p.D196A +YMR293C HER2 10942 her2-D150R D150R amino_acid_mutation PMID:26780366 D150R False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.856345_856346delGAinsCG/c.448_449delGAinsCG/p.D150R +YMR293C HER2 10943 her2-G128L G128L amino_acid_mutation PMID:26780366 G128L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.856411_856412delGGinsCT/c.382_383delGGinsCT/p.G128L +YMR293C HER2 10944 her2-P397L P397L amino_acid_mutation PMID:30283131 P397L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.855604G>A/c.1190C>T/p.P397L +YMR293C HER2 10945 her2-R156D R156D amino_acid_mutation PMID:26780366 R156D False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.856326_856328delAGGinsGAC/c.466_468delAGGinsGAC/p.R156D +YMR293C HER2 10946 her2-S109V S109V amino_acid_mutation PMID:30283131 S109V False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.856468_856469delTCinsGT/c.325_326delTCinsGT/p.S109V +YMR293C HER2 10947 her2-V155N,R156K,P158H V155N,R156K,P158H amino_acid_mutation PMID:30283131 V155N|R156K|P158H False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.856330_856331delGTinsAA/c.463_464delGTinsAA/p.V155N|chrXIII:g.856327C>T/c.467G>A/p.R156K|chrXIII:g.856321G>T/c.473C>A/p.P158H +YMR301C ATM1 10965 atm1-E598Q E598Q amino_acid_mutation PMID:34936443 E598Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.867836C>G/c.1792G>C/p.E598Q +YMR302C YME2 10976 yme2-D522A D522A amino_acid_mutation PMID:35100666 D522A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.871061T>G/c.1565A>C/p.D522A +YMR302C YME2 10977 yme2-F204A F204A amino_acid_mutation PMID:35100666 F204A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.872015_872016delTTinsGC/c.610_611delTTinsGC/p.F204A +YMR302C YME2 10978 yme2-F204A,Y242A F204A,Y242A amino_acid_mutation PMID:35100666 F204A|Y242A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.872015_872016delTTinsGC/c.610_611delTTinsGC/p.F204A|chrXIII:g.871901_871902delTAinsGC/c.724_725delTAinsGC/p.Y242A +YMR302C YME2 10979 yme2-K393A K393A amino_acid_mutation PMID:35100666 K393A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.871448_871449delAAinsGC/c.1177_1178delAAinsGC/p.K393A +YMR302C YME2 10980 yme2-K393A,D522A K393A,D522A amino_acid_mutation PMID:35100666 K393A|D522A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.871448_871449delAAinsGC/c.1177_1178delAAinsGC/p.K393A|chrXIII:g.871061T>G/c.1565A>C/p.D522A +YMR302C YME2 10981 yme2-R523A R523A amino_acid_mutation PMID:35100666 R523A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.871058_871059delAGinsGC/c.1567_1568delAGinsGC/p.R523A +YMR302C YME2 10982 yme2-R565A R565A amino_acid_mutation PMID:35100666 R565A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.870932_870933delAGinsGC/c.1693_1694delAGinsGC/p.R565A +YMR304W UBP15 10983 ubp15-C214A C214A amino_acid_mutation PMID:33226341 C214A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.875626_875627delTGinsGC/c.640_641delTGinsGC/p.C214A +YMR307W GAS1 10985 gas1-T211A T211A amino_acid_mutation PMID:34915919 T211A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.887633A>G/c.631A>G/p.T211A +YMR308C PSE1 10989 pse1-Q651* Q651* partial_amino_acid_deletion PMID:35435209 Q651* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXIII:g.890271G>A/c.1951C>T/p.Q651* +YNL005C MRP7 11090 mrp7-A28I A28I amino_acid_mutation PMID:37115519 A28I False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.622346_622347delGCinsAT/c.82_83delGCinsAT/p.A28I +YNL005C MRP7 11091 mrp7-A28I,K30E A28I,K30E amino_acid_mutation PMID:37115519 A28I|K30E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.622346_622347delGCinsAT/c.82_83delGCinsAT/p.A28I|chrXIV:g.622341T>C/c.88A>G/p.K30E +YNL005C MRP7 11092 mrp7-K30E K30E amino_acid_mutation PMID:37115519 K30E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.622341T>C/c.88A>G/p.K30E +YNL006W LST8 11096 lst8-G138D G138D amino_acid_mutation PMID:11742997 G138D False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.620479G>A/c.413G>A/p.G138D +YNL006W LST8 11097 lst8-G146E G146E amino_acid_mutation PMID:11742997 G146E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.620503G>A/c.437G>A/p.G146E +YNL006W LST8 11098 lst8-G171D G171D amino_acid_mutation PMID:11742997 G171D False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.620578G>A/c.512G>A/p.G171D +YNL006W LST8 11099 lst8-G181D G181D amino_acid_mutation PMID:11742997 G181D False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.620538_620539delGAinsAC/c.542_543delGAinsAC/p.G181D +YNL006W LST8 11100 lst8-L300S L300S amino_acid_mutation PMID:17095607,PMID:9409822 L300S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.620965T>C/c.899T>C/p.L300S +YNL007C SIS1 11103 sis1-D36N D36N amino_acid_mutation PMID:34849884 D36N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.619460C>T/c.106G>A/p.D36N +YNL007C SIS1 11105 sis1-E50A E50A amino_acid_mutation PMID:25687964 E50A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.619417T>G/c.149A>C/p.E50A +YNL007C SIS1 11106 sis1-E53A E53A amino_acid_mutation PMID:32497100 E53A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.619408T>G/c.158A>C/p.E53A +YNL007C SIS1 11107 sis1-F106L F106L amino_acid_mutation PMID:32427588,PMID:32518113,PMID:35931773 F106L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.619250A>G/c.316T>C/p.F106L +YNL007C SIS1 11108 sis1-F115I F115I amino_acid_mutation PMID:32427588,PMID:32518113,PMID:35931773 F115I False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.619223A>T/c.343T>A/p.F115I +YNL007C SIS1 11109 sis1-H34Q H34Q amino_acid_mutation PMID:33741343 H34Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.619464A>T/c.102T>A/p.H34Q +YNL007C SIS1 11111 sis1-K199A K199A amino_acid_mutation PMID:34849884 K199A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.618970_618971delAAinsGC/c.595_596delAAinsGC/p.K199A +YNL007C SIS1 11112 sis1-N108L N108L amino_acid_mutation PMID:35931773 N108L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.619243_619244delAAinsCT/c.322_323delAAinsCT/p.N108L +YNL007C SIS1 11113 sis1-N56L N56L amino_acid_mutation PMID:32497100 N56L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.619399_619400delAAinsCT/c.166_167delAAinsCT/p.N56L +YNL007C SIS1 11114 sis1-R27Q R27Q amino_acid_mutation PMID:36264506 R27Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.619486_619487delAGinsCA/c.79_80delAGinsCA/p.R27Q +YNL007C SIS1 11115 sis1-S49V S49V amino_acid_mutation PMID:32497100 S49V False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.619420_619421delTCinsGT/c.145_146delTCinsGT/p.S49V +YNL021W HDA1 11128 hda1-H206A H206A amino_acid_mutation PMID:34499735 H206A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.593842_593843delCAinsGC/c.616_617delCAinsGC/p.H206A +YNL022C RCM1 11129 rcm1-C330A C330A amino_acid_mutation PMID:23913415 C330A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.591911_591912delTGinsGC/c.988_989delTGinsGC/p.C330A +YNL022C RCM1 11130 rcm1-C404A C404A amino_acid_mutation PMID:23913415 C404A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.591689_591690delTGinsGC/c.1210_1211delTGinsGC/p.C404A +YNL030W HHF2 11141 hhf2-G100A G100A amino_acid_mutation PMID:34844121 G100A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.577025G>C/c.299G>C/p.G100A +YNL030W HHF2 11142 hhf2-H76Y H76Y amino_acid_mutation PMID:19079580 H76Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.576952C>T/c.226C>T/p.H76Y +YNL030W HHF2 11143 hhf2-K17A K17A amino_acid_mutation PMID:34734806 K17A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.576775_576776delAAinsGC/c.49_50delAAinsGC/p.K17A +YNL030W HHF2 11144 hhf2-K17A,R18A,H19A,R20A,K21A K17A,R18A,H19A,R20A,K21A amino_acid_mutation PMID:34734806 K17A|R18A|H19A|R20A|K21A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.576775_576776delAAinsGC/c.49_50delAAinsGC/p.K17A|chrXIV:g.576778_576779delCGinsGC/c.52_53delCGinsGC/p.R18A|chrXIV:g.576781_576782delCAinsGC/c.55_56delCAinsGC/p.H19A|chrXIV:g.576784_576785delAGinsGC/c.58_59delAGinsGC/p.R20A|chrXIV:g.576787_576788delAAinsGC/c.61_62delAAinsGC/p.K21A +YNL030W HHF2 11145 hhf2-K17Q K17Q amino_acid_mutation PMID:34734806 K17Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.576775A>C/c.49A>C/p.K17Q +YNL030W HHF2 11146 hhf2-K6R,K13R K6R,K13R amino_acid_mutation PMID:18458063 K6R|K13R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.576743A>G/c.17A>G/p.K6R|chrXIV:g.576764A>G/c.38A>G/p.K13R +YNL030W HHF2 11147 hhf2-L23A L23A amino_acid_mutation PMID:35705668 L23A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.576793_576794delCTinsGC/c.67_68delCTinsGC/p.L23A +YNL030W HHF2 11148 hhf2-R18A,R20A R18A,R20A amino_acid_mutation PMID:32245891,PMID:34734806 R18A|R20A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.576778_576779delCGinsGC/c.52_53delCGinsGC/p.R18A|chrXIV:g.576784_576785delAGinsGC/c.58_59delAGinsGC/p.R20A +YNL030W HHF2 11149 hhf2-R20A R20A amino_acid_mutation PMID:35705668 R20A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.576784_576785delAGinsGC/c.58_59delAGinsGC/p.R20A +YNL030W HHF2 11150 hhf2-R36A R36A amino_acid_mutation PMID:35705668 R36A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.576832_576833delAGinsGC/c.106_107delAGinsGC/p.R36A +YNL031C HHT2 11154 hht2-A48S A48S amino_acid_mutation PMID:27672091 A48S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575909C>A/c.142G>T/p.A48S +YNL031C HHT2 11155 hht2-D78G D78G amino_acid_mutation PMID:19079580 D78G False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575818T>C/c.233A>G/p.D78G +YNL031C HHT2 11156 hht2-D78N D78N amino_acid_mutation PMID:19079580 D78N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575819C>T/c.232G>A/p.D78N +YNL031C HHT2 11157 hht2-E51A E51A amino_acid_mutation PMID:27672091 E51A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575899T>G/c.152A>C/p.E51A +YNL031C HHT2 11158 hht2-E95A E95A amino_acid_mutation PMID:35705668 E95A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575767T>G/c.284A>C/p.E95A +YNL031C HHT2 11159 hht2-G13A G13A amino_acid_mutation PMID:35705668 G13A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.576013C>G/c.38G>C/p.G13A +YNL031C HHT2 11160 hht2-G35L G35L amino_acid_mutation PMID:35567477 G35L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575947_575948delGGinsCT/c.103_104delGGinsCT/p.G35L +YNL031C HHT2 11161 hht2-G35R G35R amino_acid_mutation PMID:35567477 G35R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575948C>G/c.103G>C/p.G35R +YNL031C HHT2 11162 hht2-G35V G35V amino_acid_mutation PMID:35567477 G35V False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575947C>A/c.104G>T/p.G35V +YNL031C HHT2 11163 hht2-G35W G35W amino_acid_mutation PMID:35567477 G35W False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575946_575948delGGTinsTGG/c.103_105delGGTinsTGG/p.G35W +YNL031C HHT2 11164 hht2-G45A G45A amino_acid_mutation PMID:27672091 G45A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575917C>G/c.134G>C/p.G45A +YNL031C HHT2 11165 hht2-H40A H40A amino_acid_mutation PMID:27672091 H40A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575932_575933delCAinsGC/c.118_119delCAinsGC/p.H40A +YNL031C HHT2 11166 hht2-K15A K15A amino_acid_mutation PMID:35866610 K15A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.576023_576024delAAinsGC/c.43_44delAAinsGC/p.K15A +YNL031C HHT2 11167 hht2-K15Q K15Q amino_acid_mutation PMID:35866610 K15Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.576024T>G/c.43A>C/p.K15Q +YNL031C HHT2 11168 hht2-K24A K24A amino_acid_mutation PMID:35866610 K24A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575996_575997delAAinsGC/c.70_71delAAinsGC/p.K24A +YNL031C HHT2 11169 hht2-K24Q K24Q amino_acid_mutation PMID:35866610 K24Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575997T>G/c.70A>C/p.K24Q +YNL031C HHT2 11171 hht2-K37A K37A amino_acid_mutation PMID:27672091,PMID:35263330 K37A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575941_575942delAAinsGC/c.109_110delAAinsGC/p.K37A +YNL031C HHT2 11172 hht2-K37M K37M amino_acid_mutation PMID:35567477 K37M False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575941T>A/c.110A>T/p.K37M +YNL031C HHT2 11173 hht2-K38A K38A amino_acid_mutation PMID:27672091 K38A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575938_575939delAAinsGC/c.112_113delAAinsGC/p.K38A +YNL031C HHT2 11174 hht2-K43A K43A amino_acid_mutation PMID:21685365 K43A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575923_575924delAAinsGC/c.127_128delAAinsGC/p.K43A +YNL031C HHT2 11175 hht2-K57A K57A amino_acid_mutation PMID:22553361 K57A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575881_575882delAAinsGC/c.169_170delAAinsGC/p.K57A +YNL031C HHT2 11176 hht2-K57E K57E amino_acid_mutation PMID:19796999 K57E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575882T>C/c.169A>G/p.K57E +YNL031C HHT2 11177 hht2-K57Q K57Q amino_acid_mutation PMID:27672091 K57Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575882T>G/c.169A>C/p.K57Q +YNL031C HHT2 11178 hht2-K57R K57R amino_acid_mutation PMID:18577595 K57R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575881T>C/c.170A>G/p.K57R +YNL031C HHT2 11179 hht2-L49A L49A amino_acid_mutation PMID:27672091 L49A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575905_575906delTTinsGC/c.145_146delTTinsGC/p.L49A +YNL031C HHT2 11180 hht2-L61A L61A amino_acid_mutation PMID:25711831 L61A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575869_575870delCTinsGC/c.181_182delCTinsGC/p.L61A +YNL031C HHT2 11181 hht2-L61D L61D amino_acid_mutation PMID:25711831 L61D False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575868_575870delCTGinsGAC/c.181_183delCTGinsGAC/p.L61D +YNL031C HHT2 11182 hht2-L61E L61E amino_acid_mutation PMID:25711831 L61E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575869_575870delCTinsGA/c.181_182delCTinsGA/p.L61E +YNL031C HHT2 11183 hht2-L61G L61G amino_acid_mutation PMID:25711831 L61G False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575869_575870delCTinsGG/c.181_182delCTinsGG/p.L61G +YNL031C HHT2 11184 hht2-L61H L61H amino_acid_mutation PMID:25711831 L61H False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575868_575869delTGinsAT/c.182_183delTGinsAT/p.L61H +YNL031C HHT2 11185 hht2-L61I L61I amino_acid_mutation PMID:25711831 L61I False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575868_575870delCTGinsATC/c.181_183delCTGinsATC/p.L61I +YNL031C HHT2 11186 hht2-L61K L61K amino_acid_mutation PMID:25711831 L61K False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575869_575870delCTinsAA/c.181_182delCTinsAA/p.L61K +YNL031C HHT2 11187 hht2-L61N L61N amino_acid_mutation PMID:25711831 L61N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575868_575870delCTGinsAAC/c.181_183delCTGinsAAC/p.L61N +YNL031C HHT2 11188 hht2-L61P L61P amino_acid_mutation PMID:25711831 L61P False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575869A>G/c.182T>C/p.L61P +YNL031C HHT2 11189 hht2-L61Q L61Q amino_acid_mutation PMID:25711831 L61Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575869A>T/c.182T>A/p.L61Q +YNL031C HHT2 11190 hht2-L61R L61R amino_acid_mutation PMID:25711831 L61R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575869A>C/c.182T>G/p.L61R +YNL031C HHT2 11191 hht2-L61S L61S amino_acid_mutation PMID:25711831 L61S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575869_575870delCTinsTC/c.181_182delCTinsTC/p.L61S +YNL031C HHT2 11192 hht2-L61T L61T amino_acid_mutation PMID:25711831 L61T False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575869_575870delCTinsAC/c.181_182delCTinsAC/p.L61T +YNL031C HHT2 11193 hht2-L61V L61V amino_acid_mutation PMID:25711831 L61V False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575870G>C/c.181C>G/p.L61V +YNL031C HHT2 11194 hht2-L61W L61W amino_acid_mutation PMID:25711831 L61W False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575869_575870delCTinsTG/c.181_182delCTinsTG/p.L61W +YNL031C HHT2 11195 hht2-L61Y L61Y amino_acid_mutation PMID:25711831 L61Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575868_575870delCTGinsTAT/c.181_183delCTGinsTAT/p.L61Y +YNL031C HHT2 11196 hht2-P39A P39A amino_acid_mutation PMID:27672091 P39A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575936G>C/c.115C>G/p.P39A +YNL031C HHT2 11197 hht2-P44A P44A amino_acid_mutation PMID:27672091 P44A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575921G>C/c.130C>G/p.P44A +YNL031C HHT2 11198 hht2-R41A R41A amino_acid_mutation PMID:27672091 R41A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575929_575930delAGinsGC/c.121_122delAGinsGC/p.R41A +YNL031C HHT2 11199 hht2-R50A R50A amino_acid_mutation PMID:27672091 R50A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575918_575919delAGinsGC/c.148_149delAGinsGC/p.R50A +YNL031C HHT2 11200 hht2-R54A R54A amino_acid_mutation PMID:27672091 R54A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575890_575891delAGinsGC/c.160_161delAGinsGC/p.R54A +YNL031C HHT2 11201 hht2-S11A S11A amino_acid_mutation PMID:35704464 S11A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.576020A>C/c.31T>G/p.S11A +YNL031C HHT2 11202 hht2-T46A T46A amino_acid_mutation PMID:27672091 T46A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575915T>C/c.136A>G/p.T46A +YNL031C HHT2 11203 hht2-V47A V47A amino_acid_mutation PMID:27672091,PMID:35705668 V47A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575911A>G/c.140T>C/p.V47A +YNL031C HHT2 11204 hht2-Y42A Y42A amino_acid_mutation PMID:27672091 Y42A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575926_575927delTAinsGC/c.124_125delTAinsGC/p.Y42A +YNL032W SIW14 11206 siw14-C214S C214S amino_acid_mutation PMID:26828065,PMID:31848224 C214S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.575145T>A/c.640T>A/p.C214S +YNL053W MSG5 11223 msg5-C319A C319A amino_acid_mutation PMID:14703512 C319A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.530896_530897delTGinsGC/c.955_956delTGinsGC/p.C319A +YNL061W NOP2 11231 nop2-C478A C478A amino_acid_mutation PMID:23913415 C478A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.511971_511972delTGinsGC/c.1432_1433delTGinsGC/p.C478A +YNL064C YDJ1 11237 ydj1-A30T A30T amino_acid_mutation PMID:28766406 A30T False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.507010C>T/c.88G>A/p.A30T +YNL064C YDJ1 11238 ydj1-C406S C406S amino_acid_mutation PMID:1527016,PMID:30452489 C406S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.505882A>T/c.1216T>A/p.C406S +YNL064C YDJ1 11239 ydj1-D36N D36N amino_acid_mutation PMID:30452489 D36N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.506992C>T/c.106G>A/p.D36N +YNL064C YDJ1 11240 ydj1-F47A F47A amino_acid_mutation PMID:28766406 F47A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.506958_506959delTTinsGC/c.139_140delTTinsGC/p.F47A +YNL064C YDJ1 11241 ydj1-F47Y F47Y amino_acid_mutation PMID:28766406 F47Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.506958A>T/c.140T>A/p.F47Y +YNL064C YDJ1 11242 ydj1-H34Q H34Q amino_acid_mutation PMID:33741343 H34Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.506996A>T/c.102T>A/p.H34Q +YNL064C YDJ1 11243 ydj1-Y26A Y26A amino_acid_mutation PMID:28766406 Y26A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.507021_507022delTAinsGC/c.76_77delTAinsGC/p.Y26A +YNL065W AQR1 11244 aqr1-Q149A Q149A amino_acid_mutation PMID:34887841 Q149A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.504168_504169delCAinsGC/c.445_446delCAinsGC/p.Q149A +YNL065W AQR1 11245 aqr1-Q238A Q238A amino_acid_mutation PMID:34887841 Q238A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.504435_504436delCAinsGC/c.712_713delCAinsGC/p.Q238A +YNL065W AQR1 11246 aqr1-R504A R504A amino_acid_mutation PMID:34887841 R504A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.505233_505234delAGinsGC/c.1510_1511delAGinsGC/p.R504A +YNL072W RNH201 11253 rnh201-G42S G42S amino_acid_mutation PMID:30975634 G42S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.490440G>A/c.124G>A/p.G42S +YNL072W RNH201 11254 rnh201-P45D,Y219A P45D,Y219A amino_acid_mutation PMID:23355612,PMID:27791008,PMID:28268090,PMID:28325498,PMID:31775053 P45D|Y219A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.490449_490450delCCinsGA/c.133_134delCCinsGA/p.P45D|chrXIV:g.490971_490972delTAinsGC/c.655_656delTAinsGC/p.Y219A +YNL082W PMS1 11267 pms1-A99V A99V amino_acid_mutation PMID:34552065 A99V False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.473686C>T/c.296C>T/p.A99V +YNL082W PMS1 11269 pms1-E707K E707K amino_acid_mutation PMID:18833189 E707K False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.475509G>A/c.2119G>A/p.E707K +YNL082W PMS1 11271 pms1-Q723A Q723A amino_acid_mutation PMID:28439008 Q723A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.475557_475558delCAinsGC/c.2167_2168delCAinsGC/p.Q723A +YNL082W PMS1 11272 pms1-R818K R818K amino_acid_mutation PMID:28404772 R818K False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.475843G>A/c.2453G>A/p.R818K +YNL082W PMS1 11273 pms1-S17P S17P amino_acid_mutation PMID:33303966 S17P False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.473439T>C/c.49T>C/p.S17P +YNL085W MKT1 11279 mkt1-D30G D30G amino_acid_mutation PMID:16273108 D30G False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.467219A>G/c.89A>G/p.D30G +YNL088W TOP2 11298 top2-A484P A484P amino_acid_mutation PMID:18723844 A484P False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459153G>C/c.1450G>C/p.A484P +YNL088W TOP2 11300 top2-F1025Y,R1128G F1025Y,R1128G amino_acid_mutation PMID:33046655,PMID:35058360 F1025Y|R1128G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.460777T>A/c.3074T>A/p.F1025Y|chrXIV:g.461085A>G/c.3382A>G/p.R1128G +YNL088W TOP2 11301 top2-F711I F711I amino_acid_mutation PMID:18723844 F711I False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459834T>A/c.2131T>A/p.F711I +YNL088W TOP2 11302 top2-G606S G606S amino_acid_mutation PMID:31409799 G606S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459519_459521delGGGinsAGC/c.1816_1818delGGGinsAGC/p.G606S +YNL088W TOP2 11303 top2-G737I G737I amino_acid_mutation PMID:18723844 G737I False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459912_459913delGGinsAT/c.2209_2210delGGinsAT/p.G737I +YNL088W TOP2 11304 top2-G737K G737K amino_acid_mutation PMID:18723844 G737K False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459912_459914delGGTinsAAG/c.2209_2211delGGTinsAAG/p.G737K +YNL088W TOP2 11305 top2-G737V G737V amino_acid_mutation PMID:18723844 G737V False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459913G>T/c.2210G>T/p.G737V +YNL088W TOP2 11306 top2-G737Y G737Y amino_acid_mutation PMID:18723844 G737Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459912_459913delGGinsTA/c.2209_2210delGGinsTA/p.G737Y +YNL088W TOP2 11308 top2-H735Q H735Q amino_acid_mutation PMID:18723844 H735Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459908C>A/c.2205C>A/p.H735Q +YNL088W TOP2 11309 top2-K477A K477A amino_acid_mutation PMID:8137294 K477A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459132_459133delAAinsGC/c.1429_1430delAAinsGC/p.K477A +YNL088W TOP2 11310 top2-K720N K720N amino_acid_mutation PMID:35058360 K720N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459863A>C/c.2160A>C/p.K720N +YNL088W TOP2 11311 top2-L1052I L1052I amino_acid_mutation PMID:18723844 L1052I False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.460857C>A/c.3154C>A/p.L1052I +YNL088W TOP2 11313 top2-L474A,L479P L474A,L479P amino_acid_mutation PMID:8137294 L474A|L479P False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459123_459124delCTinsGC/c.1420_1421delCTinsGC/p.L474A|chrXIV:g.459139T>C/c.1436T>C/p.L479P +YNL088W TOP2 11314 top2-L474A,R475G L474A,R475G amino_acid_mutation PMID:8063712,PMID:8137294 L474A|R475G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459123_459124delCTinsGC/c.1420_1421delCTinsGC/p.L474A|chrXIV:g.459126C>G/c.1423C>G/p.R475G +YNL088W TOP2 11315 top2-L557del L557del amino_acid_insertion_and_mutation PMID:31409799 L557del False L557DEL amino_acid_insertion_and_mutation:multiple_aa amino_acid_insertion_and_mutation chrXIV:g.459372_459374delinsGACGAGCTT/c.1669_1671delinsGACGAGCTT/p.L557_L557delinsDEL +YNL088W TOP2 11316 top2-L787S L787S amino_acid_mutation PMID:18723844 L787S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.460063T>C/c.2360T>C/p.L787S +YNL088W TOP2 11317 top2-P473A P473A amino_acid_mutation PMID:18723844 P473A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459120C>G/c.1417C>G/p.P473A +YNL088W TOP2 11319 top2-P473E P473E amino_acid_mutation PMID:18723844 P473E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459120_459121delCCinsGA/c.1417_1418delCCinsGA/p.P473E +YNL088W TOP2 11320 top2-P473F P473F amino_acid_mutation PMID:18723844 P473F False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459120_459122delCCAinsTTT/c.1417_1419delCCAinsTTT/p.P473F +YNL088W TOP2 11321 top2-P473I P473I amino_acid_mutation PMID:18723844 P473I False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459120_459121delCCinsAT/c.1417_1418delCCinsAT/p.P473I +YNL088W TOP2 11322 top2-P473K P473K amino_acid_mutation PMID:18723844 P473K False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459120_459121delCCinsAA/c.1417_1418delCCinsAA/p.P473K +YNL088W TOP2 11323 top2-P473L P473L amino_acid_mutation PMID:18723844 P473L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459121C>T/c.1418C>T/p.P473L +YNL088W TOP2 11324 top2-P473S P473S amino_acid_mutation PMID:18723844 P473S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459120C>T/c.1417C>T/p.P473S +YNL088W TOP2 11325 top2-P473Y P473Y amino_acid_mutation PMID:18723844 P473Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459120_459122delCCAinsTAT/c.1417_1419delCCAinsTAT/p.P473Y +YNL088W TOP2 11326 top2-R475K R475K amino_acid_mutation PMID:8137294 R475K False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459126_459128delCGTinsAAG/c.1423_1425delCGTinsAAG/p.R475K +YNL088W TOP2 11327 top2-S455L S455L amino_acid_mutation PMID:31409799 S455L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459067C>T/c.1364C>T/p.S455L +YNL088W TOP2 11328 top2-S740W S740W amino_acid_mutation PMID:12888496 S740W False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459922_459923delCAinsGG/c.2219_2220delCAinsGG/p.S740W +YNL088W TOP2 11329 top2-T744P T744P amino_acid_mutation PMID:18723844 T744P False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.459933A>C/c.2230A>C/p.T744P +YNL098C RAS2 11342 RAS2-G18A, G19V G18A, G19V amino_acid_mutation PMID:9524122 G18A|G19V False G18A,G19V amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.440518C>G/c.53G>C/p.G18A|chrXIV:g.440515C>A/c.56G>T/p.G19V +YNL098C RAS2 11349 ras2-E130Stop E130Stop partial_amino_acid_deletion PMID:27939892 E130Stop False E130* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrXIV:g.440183C>A/c.388G>T/p.E130* +YNL098C RAS2 11350 ras2-E70G E70G amino_acid_mutation PMID:29429618 E70G False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.440362T>C/c.209A>G/p.E70G +YNL098C RAS2 11351 ras2-G17C G17C amino_acid_mutation PMID:27939892 G17C False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.440522C>A/c.49G>T/p.G17C +YNL098C RAS2 11352 ras2-G19V G19V amino_acid_mutation PMID:32662770,PMID:33202661 G19V False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.440515C>A/c.56G>T/p.G19V +YNL098C RAS2 11353 ras2-G22A G22A amino_acid_mutation PMID:33202661 G22A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.440506C>G/c.65G>C/p.G22A +YNL098C RAS2 11354 ras2-K23N K23N amino_acid_mutation PMID:27939892 K23N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.440502T>G/c.69A>C/p.K23N +YNL098C RAS2 11355 ras2-S72Y S72Y amino_acid_mutation PMID:29429618 S72Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.440356G>T/c.215C>A/p.S72Y +YNL102W POL1 11370 pol1-L868M L868M amino_acid_mutation PMID:31311768,PMID:34551434 L868M False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.432688T>A/c.2602T>A/p.L868M +YNL102W POL1 11371 pol1-Y869A Y869A amino_acid_mutation PMID:34551434,PMID:34849819 Y869A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.432691_432692delTAinsGC/c.2605_2606delTAinsGC/p.Y869A +YNL104C LEU4 11375 leu4-A551D A551D amino_acid_mutation PMID:35333283 A551D False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.425103G>T/c.1652C>A/p.A551D +YNL104C LEU4 11376 leu4-A551V A551V amino_acid_mutation PMID:35333283 A551V False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.425103G>A/c.1652C>T/p.A551V +YNL104C LEU4 11377 leu4-G516S G516S amino_acid_mutation PMID:31231421,PMID:35315123 G516S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.425394_425396delGGGinsAGC/c.1546_1548delGGGinsAGC/p.G516S +YNL104C LEU4 11378 leu4-H541R H541R amino_acid_mutation PMID:35022416 H541R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.425133T>C/c.1622A>G/p.H541R +YNL104C LEU4 11379 leu4-S520P S520P amino_acid_mutation PMID:35333283 S520P False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.425197A>G/c.1558T>C/p.S520P +YNL104C LEU4 11380 leu4-S542F S542F amino_acid_mutation PMID:35333283 S542F False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.425130G>A/c.1625C>T/p.S542F +YNL104C LEU4 11381 leu4-T590I T590I amino_acid_mutation PMID:35022416 T590I False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.424986G>A/c.1769C>T/p.T590I +YNL104C LEU4 11382 leu4-V584E V584E amino_acid_mutation PMID:35022416 V584E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.425004A>T/c.1751T>A/p.V584E +YNL104C LEU4 11383 leu4-Y485N Y485N amino_acid_mutation PMID:35022416 Y485N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.425302A>T/c.1453T>A/p.Y485N +YNL104C LEU4 11384 leu4-Y538N Y538N amino_acid_mutation PMID:35022416 Y538N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.425143A>T/c.1612T>A/p.Y538N +YNL107W YAF9 11386 yaf9-W89A W89A amino_acid_mutation PMID:34819351 W89A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.420362_420363delTGinsGC/c.265_266delTGinsGC/p.W89A +YNL112W DBP2 11394 dbp2-S213A S213A amino_acid_mutation PMID:31611676 S213A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.414275T>G/c.637T>G/p.S213A +YNL113W RPC19 11397 rpc19-G73D G73D amino_acid_mutation PMID:8516295 G73D False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.412988_412989delGAinsAC/c.218_219delGAinsAC/p.G73D +YNL113W RPC19 11398 rpc19-T71I T71I amino_acid_mutation PMID:28973381 T71I False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.412982_412983delCGinsTC/c.212_213delCGinsTC/p.T71I +YNL116W DMA2 11400 dma2-C451A C451A amino_acid_mutation PMID:23442799,PMID:33933452 C451A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.409691_409692delTGinsGC/c.1351_1352delTGinsGC/p.C451A +YNL116W DMA2 11401 dma2-R299A R299A amino_acid_mutation PMID:23442799,PMID:33933452 R299A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.409235_409236delCGinsGC/c.895_896delCGinsGC/p.R299A +YNL118C DCP2 11404 dcp2-S137E S137E amino_acid_mutation PMID:20513766 S137E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.405154_405156delTCTinsGAG/c.409_411delTCTinsGAG/p.S137E +YNL119W NCS2 11406 ncs2-H71L H71L amino_acid_mutation PMID:35511982,PMID:37462076 H71L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.401251A>T/c.212A>T/p.H71L +YNL132W KRE33 11421 kre33-H545A H545A amino_acid_mutation PMID:25653167,PMID:28542199 H545A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.376953_376954delCAinsGC/c.1633_1634delCAinsGC/p.H545A +YNL132W KRE33 11422 kre33-K289A K289A amino_acid_mutation PMID:25653167,PMID:28542199 K289A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.376185_376186delAAinsGC/c.865_866delAAinsGC/p.K289A +YNL132W KRE33 11423 kre33-R637A R637A amino_acid_mutation PMID:25653167 R637A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.377229_377230delAGinsGC/c.1909_1910delAGinsGC/p.R637A +YNL135C FPR1 11437 fpr1-Q61s Q61s amino_acid_mutation PMID:35149760 Q61s False Q61S amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.372045_372046delCAinsTC/c.181_182delCAinsTC/p.Q61S +YNL135C FPR1 11438 fpr1-Y33* Y33* partial_amino_acid_deletion PMID:35149760 Y33* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXIV:g.372128G>T/c.99C>A/p.Y33* +YNL142W MEP2 11447 mep2-D186A D186A amino_acid_mutation PMID:18434596 D186A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.358009A>C/c.557A>C/p.D186A +YNL142W MEP2 11448 mep2-H194A H194A amino_acid_mutation PMID:18434596 H194A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.358032_358033delCAinsGC/c.580_581delCAinsGC/p.H194A +YNL142W MEP2 11449 mep2-H194A,H348A H194A,H348A amino_acid_mutation PMID:35196127 H194A|H348A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.358032_358033delCAinsGC/c.580_581delCAinsGC/p.H194A|chrXIV:g.358494_358495delCAinsGC/c.1042_1043delCAinsGC/p.H348A +YNL142W MEP2 11450 mep2-H194E H194E amino_acid_mutation PMID:35196127 H194E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.358032_358034delCATinsGAG/c.580_582delCATinsGAG/p.H194E +YNL142W MEP2 11451 mep2-H194E,H348E H194E,H348E amino_acid_mutation PMID:35196127 H194E|H348E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.358032_358034delCATinsGAG/c.580_582delCATinsGAG/p.H194E|chrXIV:g.358494_358496delCATinsGAG/c.1042_1044delCATinsGAG/p.H348E +YNL142W MEP2 11452 mep2-H348A H348A amino_acid_mutation PMID:18434596 H348A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.358494_358495delCAinsGC/c.1042_1043delCAinsGC/p.H348A +YNL142W MEP2 11453 mep2-H348E H348E amino_acid_mutation PMID:35196127 H348E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.358494_358496delCATinsGAG/c.1042_1044delCATinsGAG/p.H348E +YNL152W INN1 11462 inn1-K31R K31R amino_acid_mutation PMID:22956544 K31R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.346404A>G/c.92A>G/p.K31R +YNL157W IGO1 11465 igo1-S64A S64A amino_acid_mutation PMID:20471941 S64A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.340541_340542delAGinsGC/c.190_191delAGinsGC/p.S64A +YNL161W CBK1 11470 CBK1-S745F S745F amino_acid_mutation PMID:19967545 S745F False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.334830C>T/c.2234C>T/p.S745F +YNL161W CBK1 11471 cbk1-L750S L750S amino_acid_mutation PMID:19967545 L750S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.334845T>C/c.2249T>C/p.L750S +YNL161W CBK1 11472 cbk1-S570A S570A amino_acid_mutation PMID:19546315 S570A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.334304T>G/c.1708T>G/p.S570A +YNL161W CBK1 11473 cbk1-S745Y S745Y amino_acid_mutation PMID:19967545 S745Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.334830C>A/c.2234C>A/p.S745Y +YNL161W CBK1 11474 cbk1-T571I T571I amino_acid_mutation PMID:19967545 T571I False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.334308C>T/c.1712C>T/p.T571I +YNL161W CBK1 11475 cbk1-T743A T743A amino_acid_mutation PMID:19967545 T743A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.334823A>G/c.2227A>G/p.T743A +YNL163C RIA1 11497 ria1-L910K L910K amino_acid_mutation PMID:36009035 L910K False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.327345_327346delCTinsAA/c.2728_2729delCTinsAA/p.L910K +YNL163C RIA1 11498 ria1-P151L P151L amino_acid_mutation PMID:36009035 P151L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.329622G>A/c.452C>T/p.P151L +YNL163C RIA1 11499 ria1-R1086Q R1086Q amino_acid_mutation PMID:36009035 R1086Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.326817_326818delAGinsCA/c.3256_3257delAGinsCA/p.R1086Q +YNL163C RIA1 11500 ria1-T657M T657M amino_acid_mutation PMID:36009035 T657M False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.328104G>A/c.1970C>T/p.T657M +YNL169C PSD1 11504 psd1-E429G E429G amino_acid_mutation PMID:28606933 E429G False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.316695T>C/c.1286A>G/p.E429G +YNL169C PSD1 11505 psd1-F397L F397L amino_acid_mutation PMID:28606933 F397L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.316483A>G/c.1189T>C/p.F397L +YNL169C PSD1 11507 psd1-K356R K356R amino_acid_mutation PMID:28606933 K356R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.316605T>C/c.1067A>G/p.K356R +YNL169C PSD1 11508 psd1-M448T M448T amino_acid_mutation PMID:28606933 M448T False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.316329A>G/c.1343T>C/p.M448T +YNL178W RPS3 11511 RPS3-K108N K108N amino_acid_mutation PMID:34916334 K108N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.303003A>C/c.324A>C/p.K108N +YNL178W RPS3 11512 RPS3-S104Y S104Y amino_acid_mutation PMID:34916334 S104Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.302990C>A/c.311C>A/p.S104Y +YNL180C RHO5 11514 rho5-G10S G10S amino_acid_mutation PMID:35511982 G10S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.300622C>T/c.28G>A/p.G10S +YNL180C RHO5 11515 rho5-G12V G12V amino_acid_mutation PMID:18216266,PMID:30670610 G12V False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.300615C>A/c.35G>T/p.G12V +YNL180C RHO5 11516 rho5-K16N K16N amino_acid_mutation PMID:18216266 K16N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.300602T>G/c.48A>C/p.K16N +YNL180C RHO5 11517 rho5-Q91H Q91H amino_acid_mutation PMID:12118069,PMID:18621925 Q91H False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.300377C>A/c.273G>T/p.Q91H +YNL189W SRP1 11542 srp1-E402Q E402Q amino_acid_mutation PMID:18984568 E402Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.285463G>C/c.1204G>C/p.E402Q +YNL197C WHI3 11550 whi3-F586A F586A amino_acid_mutation PMID:11290704 F586A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.267837_267838delTTinsGC/c.1756_1757delTTinsGC/p.F586A +YNL197C WHI3 11551 whi3-S568A S568A amino_acid_mutation PMID:23471970 S568A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.267892A>C/c.1702T>G/p.S568A +YNL197C WHI3 11552 whi3-S568D S568D amino_acid_mutation PMID:23471970 S568D False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.267890_267892delTCAinsGAC/c.1702_1704delTCAinsGAC/p.S568D +YNL197C WHI3 11553 whi3-Y541A Y541A amino_acid_mutation PMID:11290704 Y541A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.267972_267973delTAinsGC/c.1621_1622delTAinsGC/p.Y541A +YNL207W RIO2 11560 RIO2-D253A D253A amino_acid_mutation PMID:24948609 D253A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.255992A>C/c.758A>C/p.D253A +YNL207W RIO2 11562 rio2-K105E K105E amino_acid_mutation PMID:34135123 K105E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.255665A>G/c.313A>G/p.K105E +YNL218W MGS1 11579 mgs1-P392T P392T amino_acid_mutation PMID:32303542 P392T False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.239411C>A/c.1174C>A/p.P392T +YNL221C POP1 11588 pop1-W256M W256M amino_acid_mutation PMID:16618965 W256M False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.232929_232930delTGinsAT/c.766_767delTGinsAT/p.W256M +YNL229C URE2 11596 URE2-G182fs G182fs amino_acid_insertion_and_mutation PMID:34643787 G182fs False G182FS amino_acid_insertion_and_mutation:multiple_aa amino_acid_insertion_and_mutation chrXIV:g.219656_219658delinsGCTAAA/c.544_546delinsTTTAGC/p.G182_G182delinsFS +YNL244C SUI1 11614 sui1-G107E G107E amino_acid_mutation PMID:19751744 G107E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.187177C>T/c.320G>A/p.G107E +YNL244C SUI1 11615 sui1-G107K G107K amino_acid_mutation PMID:19751744 G107K False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.187177_187178delGGinsAA/c.319_320delGGinsAA/p.G107K +YNL244C SUI1 11616 sui1-G107R G107R amino_acid_mutation PMID:19751744 G107R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.187178C>T/c.319G>A/p.G107R +YNL244C SUI1 11617 sui1-G107S G107S amino_acid_mutation PMID:19751744 G107S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.187176_187178delGGGinsAGC/c.319_321delGGGinsAGC/p.G107S +YNL244C SUI1 11619 sui1-R85S R85S amino_acid_mutation PMID:19751744 R85S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.187340T>G/c.255A>C/p.R85S +YNL246W VPS75 11622 vps75-K260G, K261G K260G, K261G amino_acid_mutation PMID:21463458 K260G|K261G False K260G,K261G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.186332_186333delAAinsGG/c.778_779delAAinsGG/p.K260G|chrXIV:g.186335_186336delAAinsGG/c.781_782delAAinsGG/p.K261G +YNL250W RAD50 11630 rad50-E1042A E1042A amino_acid_mutation PMID:33378670 E1042A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.178534A>C/c.3125A>C/p.E1042A +YNL250W RAD50 11631 rad50-E1042K E1042K amino_acid_mutation PMID:33378670 E1042K False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.178533G>A/c.3124G>A/p.E1042K +YNL250W RAD50 11634 rad50-E1235K E1235K amino_acid_mutation PMID:32187176 E1235K False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.179112G>A/c.3703G>A/p.E1235K +YNL250W RAD50 11635 rad50-K6A K6A amino_acid_mutation PMID:33980827 K6A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.175425_175426delAAinsGC/c.16_17delAAinsGC/p.K6A +YNL250W RAD50 11636 rad50-K81E K81E amino_acid_mutation PMID:33980827 K81E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.175650A>G/c.241A>G/p.K81E +YNL250W RAD50 11637 rad50-N121A N121A amino_acid_mutation PMID:35501303 N121A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.175770_175771delAAinsGC/c.361_362delAAinsGC/p.N121A +YNL250W RAD50 11638 rad50-R1217C R1217C amino_acid_mutation PMID:32187176 R1217C False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.179058_179060delAGGinsTGT/c.3649_3651delAGGinsTGT/p.R1217C +YNL250W RAD50 11639 rad50-R520H,T853I R520H,T853I amino_acid_mutation PMID:32882183 R520H|T853I False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.176968G>A/c.1559G>A/p.R520H|chrXIV:g.177967C>T/c.2558C>T/p.T853I +YNL250W RAD50 11640 rad50-R520H,T853I,D575G R520H,T853I,D575G amino_acid_mutation PMID:32882183 R520H|T853I|D575G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.176968G>A/c.1559G>A/p.R520H|chrXIV:g.177967C>T/c.2558C>T/p.T853I|chrXIV:g.177133A>G/c.1724A>G/p.D575G +YNL250W RAD50 11642 rad50-T568A T568A amino_acid_mutation PMID:27017623 T568A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.177111A>G/c.1702A>G/p.T568A +YNL251C NRD1 11654 nrd1-I213R I213R amino_acid_mutation PMID:35022249 I213R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.173678A>C/c.638T>G/p.I213R +YNL251C NRD1 11655 nrd1-K335E K335E amino_acid_mutation PMID:35022249 K335E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.173313T>C/c.1003A>G/p.K335E +YNL251C NRD1 11656 nrd1-L209R L209R amino_acid_mutation PMID:35022249 L209R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.173690A>C/c.626T>G/p.L209R +YNL251C NRD1 11657 nrd1-L216R L216R amino_acid_mutation PMID:35022249 L216R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.173669A>C/c.647T>G/p.L216R +YNL262W POL2 11682 pol2-A979V A979V amino_acid_mutation PMID:29352080 A979V False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.151147C>T/c.2936C>T/p.A979V +YNL262W POL2 11683 pol2-C2181S C2181S amino_acid_mutation PMID:34019669 C2181S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.154752T>A/c.6541T>A/p.C2181S +YNL262W POL2 11684 pol2-C665S,C668S C665S,C668S amino_acid_mutation PMID:34559527 C665S|C668S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.150204T>A/c.1993T>A/p.C665S|chrXIV:g.150213T>A/c.2002T>A/p.C668S +YNL262W POL2 11685 pol2-C665S,C677S C665S,C677S amino_acid_mutation PMID:34019669 C665S|C677S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.150204T>A/c.1993T>A/p.C665S|chrXIV:g.150240T>A/c.2029T>A/p.C677S +YNL262W POL2 11686 pol2-C677S C677S amino_acid_mutation PMID:34019669 C677S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.150240T>A/c.2029T>A/p.C677S +YNL262W POL2 11687 pol2-C763S C763S amino_acid_mutation PMID:34019669 C763S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.150498T>A/c.2287T>A/p.C763S +YNL262W POL2 11688 pol2-D1757N D1757N amino_acid_mutation PMID:29352080 D1757N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.153480G>A/c.5269G>A/p.D1757N +YNL262W POL2 11689 pol2-D290V D290V amino_acid_mutation PMID:29352080,PMID:35822874 D290V False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.149080A>T/c.869A>T/p.D290V +YNL262W POL2 11690 pol2-D640A D640A amino_acid_mutation PMID:32341532 D640A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.150130A>C/c.1919A>C/p.D640A +YNL262W POL2 11693 pol2-F139L F139L amino_acid_mutation PMID:29352080 F139L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.148626T>C/c.415T>C/p.F139L +YNL262W POL2 11694 pol2-F382S F382S amino_acid_mutation PMID:29352080,PMID:35822874 F382S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.149356T>C/c.1145T>C/p.F382S +YNL262W POL2 11695 pol2-K571R K571R amino_acid_mutation PMID:31765407 K571R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.149923A>G/c.1712A>G/p.K571R +YNL262W POL2 11696 pol2-L439V L439V amino_acid_mutation PMID:29352080,PMID:33764464,PMID:35822874 L439V False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.149526T>G/c.1315T>G/p.L439V +YNL262W POL2 11697 pol2-M644G M644G amino_acid_mutation PMID:20729855,PMID:28325498,PMID:31311768,PMID:33764464,PMID:34407997,PMID:34551434,PMID:36198268,PMID:36533450 M644G False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.150141_150142delATinsGG/c.1930_1931delATinsGG/p.M644G +YNL262W POL2 11698 pol2-M644L M644L amino_acid_mutation PMID:20729855,PMID:32187369 M644L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.150141A>C/c.1930A>C/p.M644L +YNL262W POL2 11699 pol2-N378K N378K amino_acid_mutation PMID:35037018 N378K False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.149345T>G/c.1134T>G/p.N378K +YNL262W POL2 11700 pol2-N378K,D290A,E292A N378K,D290A,E292A amino_acid_mutation PMID:35037018 N378K|D290A|E292A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.149345T>G/c.1134T>G/p.N378K|chrXIV:g.149080A>C/c.869A>C/p.D290A|chrXIV:g.149086A>C/c.875A>C/p.E292A +YNL262W POL2 11701 pol2-P301H P301H amino_acid_mutation PMID:29352080 P301H False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.149113_149114delCGinsAT/c.902_903delCGinsAT/p.P301H +YNL262W POL2 11702 pol2-P301R P301R amino_acid_mutation PMID:24525744,PMID:30670691,PMID:30670696,PMID:32513814,PMID:33764464 P301R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.149113C>G/c.902C>G/p.P301R +YNL262W POL2 11703 pol2-P451R P451R amino_acid_mutation PMID:29352080 P451R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.149563C>G/c.1352C>G/p.P451R +YNL262W POL2 11704 pol2-R252H R252H amino_acid_mutation PMID:29352080 R252H False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.148966_148967delGAinsAT/c.755_756delGAinsAT/p.R252H +YNL262W POL2 11705 pol2-R778W R778W amino_acid_mutation PMID:29352080 R778W False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.150543_150545delCGTinsTGG/c.2332_2334delCGTinsTGG/p.R778W +YNL262W POL2 11707 pol2-S474F S474F amino_acid_mutation PMID:29352080,PMID:35822874 S474F False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.149632C>T/c.1421C>T/p.S474F +YNL262W POL2 11708 pol2-V426L V426L amino_acid_mutation PMID:29352080,PMID:35822874 V426L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.149487G>C/c.1276G>C/p.V426L +YNL262W POL2 11709 pol2-Y473F Y473F amino_acid_mutation PMID:35037018 Y473F False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.149629A>T/c.1418A>T/p.Y473F +YNL262W POL2 11710 pol2-Y473F,D290A,E292A Y473F,D290A,E292A amino_acid_mutation PMID:35037018 Y473F|D290A|E292A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.149629A>T/c.1418A>T/p.Y473F|chrXIV:g.149080A>C/c.869A>C/p.D290A|chrXIV:g.149086A>C/c.875A>C/p.E292A +YNL264C PDR17 11713 pdr17-E237A,K269A E237A,K269A amino_acid_mutation PMID:31302248 E237A|K269A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.145906T>G/c.710A>C/p.E237A|chrXIV:g.145810_145811delAAinsGC/c.805_806delAAinsGC/p.K269A +YNL264C PDR17 11714 pdr17-T266D,K269A T266D,K269A amino_acid_mutation PMID:32303746 T266D|K269A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.145819_145820delACinsGA/c.796_797delACinsGA/p.T266D|chrXIV:g.145810_145811delAAinsGC/c.805_806delAAinsGC/p.K269A +YNL264C PDR17 11715 pdr17-T266W,K269A T266W,K269A amino_acid_mutation PMID:32303746 T266W|K269A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.145818_145820delACTinsTGG/c.796_798delACTinsTGG/p.T266W|chrXIV:g.145810_145811delAAinsGC/c.805_806delAAinsGC/p.K269A +YNL265C IST1 11717 ist1-E74A E74A amino_acid_mutation PMID:26515066,PMID:36125415 E74A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.144956T>G/c.221A>C/p.E74A +YNL265C IST1 11718 ist1-K135A K135A amino_acid_mutation PMID:26515066,PMID:36125415 K135A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.144773_144774delAAinsGC/c.403_404delAAinsGC/p.K135A +YNL265C IST1 11719 ist1-K52D K52D amino_acid_mutation PMID:26515066,PMID:36125415 K52D False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.145021_145023delAAGinsGAC/c.154_156delAAGinsGAC/p.K52D +YNL271C BNI1 11741 bni1-S1819A,S1820A S1819A,S1820A amino_acid_mutation PMID:15923184,PMID:35134079 S1819A|S1820A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.129929A>C/c.5455T>G/p.S1819A|chrXIV:g.129926A>C/c.5458T>G/p.S1820A +YNL273W TOF1 11750 tof1-S379A, S626A S379A, S626A amino_acid_mutation PMID:27017623 S379A|S626A False S379A,S626A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.124017_124018delAGinsGC/c.1135_1136delAGinsGC/p.S379A|chrXIV:g.124758T>G/c.1876T>G/p.S626A +YNL275W BOR1 11757 bor1-D347A D347A amino_acid_mutation PMID:27601653,PMID:36837738 D347A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.120307A>C/c.1040A>C/p.D347A +YNL275W BOR1 11758 bor1-D347E D347E amino_acid_mutation PMID:36837738 D347E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.120308T>G/c.1041T>G/p.D347E +YNL275W BOR1 11759 bor1-D347N D347N amino_acid_mutation PMID:36837738 D347N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.120306G>A/c.1039G>A/p.D347N +YNL275W BOR1 11760 bor1-D371Y D371Y amino_acid_mutation PMID:36837738 D371Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.120378G>T/c.1111G>T/p.D371Y +YNL275W BOR1 11761 bor1-G135R G135R amino_acid_mutation PMID:36837738 G135R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.119670G>C/c.403G>C/p.G135R +YNL275W BOR1 11762 bor1-G458R G458R amino_acid_mutation PMID:36837738 G458R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.120639G>C/c.1372G>C/p.G458R +YNL275W BOR1 11763 bor1-N391A N391A amino_acid_mutation PMID:27601653 N391A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.120438_120439delAAinsGC/c.1171_1172delAAinsGC/p.N391A +YNL275W BOR1 11764 bor1-N96A N96A amino_acid_mutation PMID:36837738 N96A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.119553_119554delAAinsGC/c.286_287delAAinsGC/p.N96A +YNL275W BOR1 11765 bor1-Q396A Q396A amino_acid_mutation PMID:27601653 Q396A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.120453_120454delCAinsGC/c.1186_1187delCAinsGC/p.Q396A +YNL275W BOR1 11766 bor1-R420Q R420Q amino_acid_mutation PMID:36837738 R420Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.120525_120526delAGinsCA/c.1258_1259delAGinsCA/p.R420Q +YNL275W BOR1 11767 bor1-T145A T145A amino_acid_mutation PMID:27601653 T145A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.119700A>G/c.433A>G/p.T145A +YNL275W BOR1 11768 bor1-T422R T422R amino_acid_mutation PMID:36837738 T422R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.120532C>G/c.1265C>G/p.T422R +YNL275W BOR1 11769 bor1-Y212A Y212A amino_acid_mutation PMID:36837738 Y212A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.119901_119902delTAinsGC/c.634_635delTAinsGC/p.Y212A +YNL275W BOR1 11770 bor1-Y212F Y212F amino_acid_mutation PMID:36837738 Y212F False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.119902A>T/c.635A>T/p.Y212F +YNL279W PRM1 11774 prm1-P645S P645S amino_acid_mutation PMID:31611676 P645S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.112849C>T/c.1933C>T/p.P645S +YNL286W CUS2 11780 cus2-M71I M71I amino_acid_mutation PMID:31611676 M71I False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.95435G>C/c.213G>C/p.M71I +YNL287W SEC21 11784 sec21-S96L S96L amino_acid_mutation PMID:28235825 S96L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.92280C>T/c.287C>T/p.S96L +YNL291C MID1 11791 mid1-D216A, D218A D216A, D218A amino_acid_mutation PMID:29042437 D216A|D218A False D216A,D218A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.85169T>G/c.647A>C/p.D216A|chrXIV:g.85163T>G/c.653A>C/p.D218A +YNL291C MID1 11792 mid1-D218N D218N amino_acid_mutation PMID:29042437 D218N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.85164C>T/c.652G>A/p.D218N +YNL291C MID1 11793 mid1-D218Q D218Q amino_acid_mutation PMID:29042437 D218Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.85162_85164delGATinsCAA/c.652_654delGATinsCAA/p.D218Q +YNL293W MSB3 11794 msb3-R282K R282K amino_acid_mutation PMID:22593206 R282K False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.81484G>A/c.845G>A/p.R282K +YNL298W CLA4 11796 cla4-S186A S186A amino_acid_mutation PMID:35454186 S186A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.69470T>G/c.556T>G/p.S186A +YNL298W CLA4 11797 cla4-S186A,S425A S186A,S425A amino_acid_mutation PMID:35454186 S186A|S425A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.69470T>G/c.556T>G/p.S186A|chrXIV:g.70187T>G/c.1273T>G/p.S425A +YNL298W CLA4 11798 cla4-S186E S186E amino_acid_mutation PMID:35454186 S186E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.69470_69472delTCTinsGAG/c.556_558delTCTinsGAG/p.S186E +YNL298W CLA4 11799 cla4-S186E,S425E S186E,S425E amino_acid_mutation PMID:35454186 S186E|S425E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.69470_69472delTCTinsGAG/c.556_558delTCTinsGAG/p.S186E|chrXIV:g.70187_70188delTCinsGA/c.1273_1274delTCinsGA/p.S425E +YNL298W CLA4 11800 cla4-S351A S351A amino_acid_mutation PMID:35454186 S351A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.69965T>G/c.1051T>G/p.S351A +YNL298W CLA4 11801 cla4-S425E S425E amino_acid_mutation PMID:35454186 S425E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.70187_70188delTCinsGA/c.1273_1274delTCinsGA/p.S425E +YNL304W YPT11 11806 ypt11-M1I M1I amino_acid_mutation PMID:23427260 M1I False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.60299G>C/c.3G>C/p.M1I +YNL304W YPT11 11807 ypt11-Q232L Q232L amino_acid_mutation PMID:23427260 Q232L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.60991A>T/c.695A>T/p.Q232L +YNL304W YPT11 11808 ypt11-S158A S158A amino_acid_mutation PMID:23427260 S158A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.60768_60769delAGinsGC/c.472_473delAGinsGC/p.S158A +YNL304W YPT11 11809 ypt11-S158A,S159A S158A,S159A amino_acid_mutation PMID:23427260 S158A|S159A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.60768_60769delAGinsGC/c.472_473delAGinsGC/p.S158A|chrXIV:g.60771T>G/c.475T>G/p.S159A +YNL304W YPT11 11810 ypt11-S77A,S79A,S80A,S158A,S159A S77A,S79A,S80A,S158A,S159A amino_acid_mutation PMID:23427260 S77A|S79A|S80A|S158A|S159A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.60525T>G/c.229T>G/p.S77A|chrXIV:g.60531_60532delAGinsGC/c.235_236delAGinsGC/p.S79A|chrXIV:g.60534_60535delAGinsGC/c.238_239delAGinsGC/p.S80A|chrXIV:g.60768_60769delAGinsGC/c.472_473delAGinsGC/p.S158A|chrXIV:g.60771T>G/c.475T>G/p.S159A +YNL304W YPT11 11811 ypt11-S8A S8A amino_acid_mutation PMID:23427260 S8A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.60318T>G/c.22T>G/p.S8A +YNL304W YPT11 11812 ypt11-S8A,S158A,S159A S8A,S158A,S159A amino_acid_mutation PMID:23427260 S8A|S158A|S159A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.60318T>G/c.22T>G/p.S8A|chrXIV:g.60768_60769delAGinsGC/c.472_473delAGinsGC/p.S158A|chrXIV:g.60771T>G/c.475T>G/p.S159A +YNL304W YPT11 11813 ypt11-S8A,S77A,S79A,S80A,S158A,S159A S8A,S77A,S79A,S80A,S158A,S159A amino_acid_mutation PMID:23427260 S8A|S77A|S79A|S80A|S158A|S159A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.60318T>G/c.22T>G/p.S8A|chrXIV:g.60525T>G/c.229T>G/p.S77A|chrXIV:g.60531_60532delAGinsGC/c.235_236delAGinsGC/p.S79A|chrXIV:g.60534_60535delAGinsGC/c.238_239delAGinsGC/p.S80A|chrXIV:g.60768_60769delAGinsGC/c.472_473delAGinsGC/p.S158A|chrXIV:g.60771T>G/c.475T>G/p.S159A +YNL304W YPT11 11814 ypt11-T104N T104N amino_acid_mutation PMID:23427260 T104N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.60607_60608delCAinsAC/c.311_312delCAinsAC/p.T104N +YNL307C MCK1 11818 mck1-D164A D164A amino_acid_mutation PMID:11877433,PMID:22918234,PMID:36321416 D164A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.57083T>G/c.491A>C/p.D164A +YNL307C MCK1 11819 mck1-Y199A Y199A amino_acid_mutation PMID:34663920 Y199A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.56978_56979delTAinsGC/c.595_596delTAinsGC/p.Y199A +YNL312W RFA2 11826 rfa2-K199R K199R amino_acid_mutation PMID:33748714 K199R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.48990A>G/c.596A>G/p.K199R +YNL323W LEM3 11835 lem3-K134* K134* partial_amino_acid_deletion PMID:35149760 K134* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXIV:g.32343A>T/c.400A>T/p.K134* +YNL323W LEM3 11836 lem3-Y107* Y107* partial_amino_acid_deletion PMID:35149760 Y107* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXIV:g.32264C>A/c.321C>A/p.Y107* +YNL325C FIG4 11838 fig4-I59T I59T amino_acid_mutation PMID:17572665 I59T False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.31203A>G/c.176T>C/p.I59T +YNL327W EGT2 11839 egt2-P874R P874R amino_acid_mutation PMID:31611676 P874R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.26668C>G/c.2621C>G/p.P874R +YNL329C PEX6 11840 Pex6-E832A E832A amino_acid_mutation PMID:35404228 E832A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.20139T>G/c.2495A>C/p.E832A +YNL330C RPD3 11841 rpd3-H150A H150A amino_acid_mutation PMID:31729385 H150A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.18854_18855delCAinsGC/c.448_449delCAinsGC/p.H150A +YNR001C CIT1 11842 cit1-S462A S462A amino_acid_mutation PMID:28076776 S462A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.629678A>C/c.1384T>G/p.S462A +YNR001C CIT1 11843 cit1-S462E S462E amino_acid_mutation PMID:28076776 S462E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.629677_629678delTCinsGA/c.1384_1385delTCinsGA/p.S462E +YNR002C ATO2 11844 ATO2-G258D G258D amino_acid_mutation PMID:17233767 G258D False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.633084C>T/c.773G>A/p.G258D +YNR002C ATO2 11845 ATO2-L74Q L74Q amino_acid_mutation PMID:17233767 L74Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.633636A>T/c.221T>A/p.L74Q +YNR002C ATO2 11849 ato2-L218S L218S amino_acid_mutation PMID:34042971 L218S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.633204A>G/c.653T>C/p.L218S +YNR003C RPC34 11851 rpc34-D167H D167H amino_acid_mutation PMID:1400451 D167H False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.634799C>G/c.499G>C/p.D167H +YNR003C RPC34 11852 rpc34-E89K E89K amino_acid_mutation PMID:1400451 E89K False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.635033C>T/c.265G>A/p.E89K +YNR007C ATG3 11861 atg3-C234A C234A amino_acid_mutation PMID:11100732 C234A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.639414_639415delTGinsGC/c.700_701delTGinsGC/p.C234A +YNR011C PRP2 11866 prp2-Q548E Q548E amino_acid_mutation PMID:24442613,PMID:28416677 Q548E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.645309G>C/c.1642C>G/p.Q548E +YNR011C PRP2 11867 prp2-Q548N Q548N amino_acid_mutation PMID:33547186 Q548N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.645307_645309delCAGinsAAC/c.1642_1644delCAGinsAAC/p.Q548N +YNR016C ACC1 11877 acc1-N1446H N1446H amino_acid_mutation PMID:34520050 N1446H False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.657039T>G/c.4336A>C/p.N1446H +YNR016C ACC1 11878 acc1-S1157A S1157A amino_acid_mutation PMID:24803522,PMID:25078432,PMID:28294288,PMID:31209110,PMID:35608294,PMID:36409888 S1157A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.657906A>C/c.3469T>G/p.S1157A +YNR016C ACC1 11879 acc1-S659A,S1157A S659A,S1157A amino_acid_mutation PMID:24803522,PMID:26344106,PMID:36534476,PMID:36890537,PMID:37031180,PMID:37076829 S659A|S1157A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.659400A>C/c.1975T>G/p.S659A|chrXIV:g.657906A>C/c.3469T>G/p.S1157A +YNR017W TIM23 11882 tim23-D167A D167A amino_acid_mutation PMID:37344598 D167A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663412A>C/c.500A>C/p.D167A +YNR017W TIM23 11883 tim23-D167N D167N amino_acid_mutation PMID:37344598 D167N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663411G>A/c.499G>A/p.D167N +YNR017W TIM23 11884 tim23-D167R D167R amino_acid_mutation PMID:37344598 D167R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663411_663412delGAinsCG/c.499_500delGAinsCG/p.D167R +YNR017W TIM23 11885 tim23-D95N D95N amino_acid_mutation PMID:37344598 D95N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663195G>A/c.283G>A/p.D95N +YNR017W TIM23 11886 tim23-D96A D96A amino_acid_mutation PMID:37344598 D96A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663199A>C/c.287A>C/p.D96A +YNR017W TIM23 11887 tim23-D96A,D167A D96A,D167A amino_acid_mutation PMID:37344598 D96A|D167A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663199A>C/c.287A>C/p.D96A|chrXIV:g.663412A>C/c.500A>C/p.D167A +YNR017W TIM23 11888 tim23-D96N D96N amino_acid_mutation PMID:37344598 D96N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663198G>A/c.286G>A/p.D96N +YNR017W TIM23 11889 tim23-D96N,N160A,N163A D96N,N160A,N163A amino_acid_mutation PMID:37344598 D96N|N160A|N163A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663198G>A/c.286G>A/p.D96N|chrXIV:g.663390_663391delAAinsGC/c.478_479delAAinsGC/p.N160A|chrXIV:g.663399_663400delAAinsGC/c.487_488delAAinsGC/p.N163A +YNR017W TIM23 11890 tim23-D96R D96R amino_acid_mutation PMID:37344598 D96R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663198_663199delGAinsCG/c.286_287delGAinsCG/p.D96R +YNR017W TIM23 11891 tim23-G102L G102L amino_acid_mutation PMID:25765297 G102L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663216_663217delGGinsCT/c.304_305delGGinsCT/p.G102L +YNR017W TIM23 11892 tim23-G112L G112L amino_acid_mutation PMID:25765297 G112L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663246_663247delGGinsCT/c.334_335delGGinsCT/p.G112L +YNR017W TIM23 11893 tim23-G116L G116L amino_acid_mutation PMID:25765297 G116L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663258_663259delGGinsCT/c.346_347delGGinsCT/p.G116L +YNR017W TIM23 11894 tim23-G145L G145L amino_acid_mutation PMID:25765297,PMID:30697167 G145L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663345_663346delGGinsCT/c.433_434delGGinsCT/p.G145L +YNR017W TIM23 11895 tim23-G149L G149L amino_acid_mutation PMID:25765297 G149L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663357_663358delGGinsCT/c.445_446delGGinsCT/p.G149L +YNR017W TIM23 11896 tim23-G153L G153L amino_acid_mutation PMID:25765297 G153L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663369_663370delGGinsCT/c.457_458delGGinsCT/p.G153L +YNR017W TIM23 11897 tim23-N160A,N163A N160A,N163A amino_acid_mutation PMID:37344598 N160A|N163A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663390_663391delAAinsGC/c.478_479delAAinsGC/p.N160A|chrXIV:g.663399_663400delAAinsGC/c.487_488delAAinsGC/p.N163A +YNR020C ATP23 11904 atp23-E168Q E168Q amino_acid_mutation PMID:17135288 E168Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.667721C>G/c.502G>C/p.E168Q +YNR020C ATP23 11905 atp23-H167A H167A amino_acid_mutation PMID:17135288 H167A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.667723_667724delCAinsGC/c.499_500delCAinsGC/p.H167A +YNR020C ATP23 11906 atp23-H171A H171A amino_acid_mutation PMID:17135288 H171A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.667711_667712delCAinsGC/c.511_512delCAinsGC/p.H171A +YNR026C SEC12 11913 sec12-D71A D71A amino_acid_mutation PMID:33831355 D71A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.674478T>G/c.212A>C/p.D71A +YNR032C-A HUB1 11919 hub1-D22A D22A amino_acid_mutation PMID:35098049 D22A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.687400T>G/c.65A>C/p.D22A +YNR032C-A HUB1 11920 hub1-H63L H63L amino_acid_mutation PMID:35098049 H63L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.687277T>A/c.188A>T/p.H63L +YNR033W ABZ1 11923 abz1-R581K R581K amino_acid_mutation PMID:31611676 R581K False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.689376G>A/c.1742G>A/p.R581K +YNR033W ABZ1 11924 abz1-R593H R593H amino_acid_mutation PMID:32303542 R593H False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.689412G>A/c.1778G>A/p.R593H +YNR038W DBP6 11950 dbp6-Q201A Q201A amino_acid_mutation PMID:16449635 Q201A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.696195_696196delCAinsGC/c.601_602delCAinsGC/p.Q201A +YNR041C COQ2 11955 coq2-Y258C Y258C amino_acid_mutation PMID:17374725 Y258C False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.700887T>C/c.773A>G/p.Y258C +YNR043W MVD1 11957 mvd1-I35K I35K amino_acid_mutation PMID:19349972 I35K False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.701998T>A/c.104T>A/p.I35K +YNR043W MVD1 11958 mvd1-L79P L79P amino_acid_mutation PMID:9244250 L79P False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.702130T>C/c.236T>C/p.L79P +YNR047W FPK1 11964 fpk1-E366* E366* partial_amino_acid_deletion PMID:31611676 E366* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXIV:g.709618G>T/c.1096G>T/p.E366* +YNR047W FPK1 11965 fpk1-E566* E566* partial_amino_acid_deletion PMID:31611676 E566* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXIV:g.710218G>T/c.1696G>T/p.E566* +YNR047W FPK1 11967 fpk1-G505V G505V amino_acid_mutation PMID:31611676 G505V False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.710036G>T/c.1514G>T/p.G505V +YNR047W FPK1 11969 fpk1-I618S I618S amino_acid_mutation PMID:31611676 I618S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.710375T>G/c.1853T>G/p.I618S +YNR047W FPK1 11970 fpk1-Q494* Q494* partial_amino_acid_deletion PMID:31611676 Q494* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXIV:g.710002C>T/c.1480C>T/p.Q494* +YNR047W FPK1 11971 fpk1-S227* S227* partial_amino_acid_deletion PMID:31611676 S227* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXIV:g.709202C>A/c.680C>A/p.S227* +YNR047W FPK1 11972 fpk1-S331* S331* partial_amino_acid_deletion PMID:31611676 S331* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXIV:g.709514C>A/c.992C>A/p.S331* +YNR047W FPK1 11973 fpk1-S565Y S565Y amino_acid_mutation PMID:31611676 S565Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.710216C>A/c.1694C>A/p.S565Y +YNR047W FPK1 11975 fpk1-W701L W701L amino_acid_mutation PMID:31611676 W701L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.710624G>T/c.2102G>T/p.W701L +YNR055C HOL1 11986 hol1-1,101 1,101 partial_amino_acid_deletion PMID:2405251 1|101 False partial_amino_acid_deletion:single_aa|partial_amino_acid_deletion:single_aa partial_amino_acid_deletion chrXIV:g.730642_730644delTTA/c.1_3delTAA/p.*1del*|chrXIV:g.730343_730345delATT/c.301_303delATA/p.I101delI +YNR076W PAU6 11997 pau6-M52I M52I amino_acid_mutation PMID:33973343 M52I False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.782073G>C/c.156G>C/p.M52I +YNR076W PAU6 11998 pau6-M52L M52L amino_acid_mutation PMID:33973343 M52L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.782071A>C/c.154A>C/p.M52L +YNR076W PAU6 11999 pau6-M52T M52T amino_acid_mutation PMID:33973343 M52T False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.782072T>C/c.155T>C/p.M52T +YOL005C RPB11 12007 rpb11-E108K E108K amino_acid_mutation PMID:16537912 E108K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.315854C>T/c.322G>A/p.E108K +YOL005C RPB11 12008 rpb11-L111A L111A amino_acid_mutation PMID:15987790 L111A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.315844_315845delCTinsGC/c.331_332delCTinsGC/p.L111A +YOL006C TOP1 12014 top1-E669* E669* partial_amino_acid_deletion PMID:35149760 E669* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXV:g.313383C>A/c.2005G>T/p.E669* +YOL006C TOP1 12015 top1-G297C G297C amino_acid_mutation PMID:35149760 G297C False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.314499C>A/c.889G>T/p.G297C +YOL006C TOP1 12016 top1-G721D G721D amino_acid_mutation PMID:18056711 G721D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.313226C>T/c.2162G>A/p.G721D +YOL006C TOP1 12017 top1-G721E G721E amino_acid_mutation PMID:18056711 G721E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.313225_313226delGCinsAG/c.2162_2163delGCinsAG/p.G721E +YOL006C TOP1 12018 top1-G721F G721F amino_acid_mutation PMID:18056711 G721F False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.313226_313227delGGinsTT/c.2161_2162delGGinsTT/p.G721F +YOL006C TOP1 12019 top1-G721L G721L amino_acid_mutation PMID:18056711 G721L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.313226_313227delGGinsCT/c.2161_2162delGGinsCT/p.G721L +YOL006C TOP1 12020 top1-G721N G721N amino_acid_mutation PMID:18056711 G721N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.313226_313227delGGinsAA/c.2161_2162delGGinsAA/p.G721N +YOL006C TOP1 12021 top1-G721Q G721Q amino_acid_mutation PMID:18056711 G721Q False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.313225_313227delGGCinsCAA/c.2161_2163delGGCinsCAA/p.G721Q +YOL006C TOP1 12022 top1-G721V G721V amino_acid_mutation PMID:18056711 G721V False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.313226C>A/c.2162G>T/p.G721V +YOL006C TOP1 12023 top1-K65R,K91R,K92R K65R,K91R,K92R amino_acid_mutation PMID:17603101 K65R|K91R|K92R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.315194T>C/c.194A>G/p.K65R|chrXV:g.315116T>C/c.272A>G/p.K91R|chrXV:g.315113T>C/c.275A>G/p.K92R +YOL006C TOP1 12024 top1-L720E L720E amino_acid_mutation PMID:18056711 L720E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.313229_313230delCTinsGA/c.2158_2159delCTinsGA/p.L720E +YOL006C TOP1 12025 top1-L720Q L720Q amino_acid_mutation PMID:18056711 L720Q False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.313229A>T/c.2159T>A/p.L720Q +YOL006C TOP1 12026 top1-N726L N726L amino_acid_mutation PMID:8226741 N726L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.313211_313212delAAinsCT/c.2176_2177delAAinsCT/p.N726L +YOL006C TOP1 12027 top1-S733E S733E amino_acid_mutation PMID:35291312 S733E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.313352_313354delAGTinsGAG/c.2197_2199delAGTinsGAG/p.S733E +YOL006C TOP1 12028 top1-T722A T722A amino_acid_mutation PMID:21173034,PMID:31636207 T722A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.313387T>C/c.2164A>G/p.T722A +YOL006C TOP1 12029 top1-Y727F Y727F amino_acid_mutation PMID:35291312 Y727F False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.313208T>A/c.2180A>T/p.Y727F +YOL006C TOP1 12030 top1-Y740Stop Y740Stop partial_amino_acid_deletion PMID:35291312 Y740Stop False Y740* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrXV:g.313168A>T/c.2220T>A/p.Y740* +YOL013C HRD1 12041 hrd1-C168R C168R amino_acid_mutation PMID:35041076 C168R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.302534A>G/c.502T>C/p.C168R +YOL013C HRD1 12042 hrd1-C399S C399S amino_acid_mutation PMID:10218484,PMID:31713515,PMID:32891886 C399S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.301841A>T/c.1195T>A/p.C399S +YOL013C HRD1 12043 hrd1-F293C F293C amino_acid_mutation PMID:35970394 F293C False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.302158A>C/c.878T>G/p.F293C +YOL013C HRD1 12044 hrd1-F88C F88C amino_acid_mutation PMID:35970394 F88C False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.302773A>C/c.263T>G/p.F88C +YOL013C HRD1 12045 hrd1-I164T I164T amino_acid_mutation PMID:35041076 I164T False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.302696A>G/c.491T>C/p.I164T +YOL013C HRD1 12046 hrd1-I164T,L185P,L201P I164T,L185P,L201P amino_acid_mutation PMID:35041076 I164T|L185P|L201P False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.302696A>G/c.491T>C/p.I164T|chrXV:g.302482A>G/c.554T>C/p.L185P|chrXV:g.302585A>G/c.602T>C/p.L201P +YOL013C HRD1 12047 hrd1-I53C I53C amino_acid_mutation PMID:35970394 I53C False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.302877_302879delATAinsTGT/c.157_159delATAinsTGT/p.I53C +YOL013C HRD1 12048 hrd1-I91C I91C amino_acid_mutation PMID:35970394 I91C False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.302763_302765delATAinsTGT/c.271_273delATAinsTGT/p.I91C +YOL013C HRD1 12049 hrd1-L10S,V229A L10S,V229A amino_acid_mutation PMID:35041076 L10S|V229A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.303007A>G/c.29T>C/p.L10S|chrXV:g.302350A>G/c.686T>C/p.V229A +YOL013C HRD1 12050 hrd1-L154P L154P amino_acid_mutation PMID:35041076 L154P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.302575A>G/c.461T>C/p.L154P +YOL013C HRD1 12051 hrd1-L154P,C168R L154P,C168R amino_acid_mutation PMID:35041076 L154P|C168R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.302575A>G/c.461T>C/p.L154P|chrXV:g.302534A>G/c.502T>C/p.C168R +YOL013C HRD1 12052 hrd1-L185P L185P amino_acid_mutation PMID:35041076 L185P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.302482A>G/c.554T>C/p.L185P +YOL013C HRD1 12053 hrd1-L201P L201P amino_acid_mutation PMID:35041076 L201P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.302585A>G/c.602T>C/p.L201P +YOL013C HRD1 12054 hrd1-L51R L51R amino_acid_mutation PMID:35041076 L51R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.302884_302885delTTinsAG/c.151_152delTTinsAG/p.L51R +YOL013C HRD1 12055 hrd1-L62R L62R amino_acid_mutation PMID:35041076 L62R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.302851A>C/c.185T>G/p.L62R +YOL013C HRD1 12056 hrd1-M297C M297C amino_acid_mutation PMID:35970394 M297C False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.302145_302147delATGinsTGT/c.889_891delATGinsTGT/p.M297C +YOL013C HRD1 12057 hrd1-Q312C Q312C amino_acid_mutation PMID:35970394 Q312C False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.302100_302102delCAAinsTGT/c.934_936delCAAinsTGT/p.Q312C +YOL013C HRD1 12058 hrd1-S184C S184C amino_acid_mutation PMID:35970394 S184C False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.302485G>C/c.551C>G/p.S184C +YOL013C HRD1 12059 hrd1-S98C S98C amino_acid_mutation PMID:35970394 S98C False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.302894G>C/c.293C>G/p.S98C +YOL013C HRD1 12060 hrd1-V155C V155C amino_acid_mutation PMID:35970394 V155C False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.302571_302573delGTAinsTGT/c.463_465delGTAinsTGT/p.V155C +YOL013C HRD1 12061 hrd1-V15C V15C amino_acid_mutation PMID:35970394 V15C False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.302992_302993delGTinsTG/c.43_44delGTinsTG/p.V15C +YOL013C HRD1 12062 hrd1-V229A V229A amino_acid_mutation PMID:35041076 V229A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.302350A>G/c.686T>C/p.V229A +YOL013C HRD1 12063 hrd1-W305C W305C amino_acid_mutation PMID:35970394 W305C False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.302121C>A/c.915G>T/p.W305C +YOL016C CMK2 12066 cmk2-K76A K76A amino_acid_mutation PMID:30665402 K76A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.295894_295895delAAinsGC/c.226_227delAAinsGC/p.K76A +YOL020W TAT2 12070 tat2-D563N D563N amino_acid_mutation PMID:15064981,PMID:35031272 D563N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.287858G>A/c.1687G>A/p.D563N +YOL020W TAT2 12071 tat2-D70R D70R amino_acid_mutation PMID:35031272 D70R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.286379_286380delGAinsCG/c.208_209delGAinsCG/p.D70R +YOL020W TAT2 12072 tat2-D74R D74R amino_acid_mutation PMID:35031272 D74R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.286391_286392delGAinsCG/c.220_221delGAinsCG/p.D74R +YOL020W TAT2 12073 tat2-E27F E27F amino_acid_mutation PMID:15064981,PMID:35031272 E27F False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.286250_286252delGAAinsTTT/c.79_81delGAAinsTTT/p.E27F +YOL020W TAT2 12074 tat2-E570K E570K amino_acid_mutation PMID:15064981,PMID:35031272 E570K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.287879G>A/c.1708G>A/p.E570K +YOL020W TAT2 12075 tat2-F73R F73R amino_acid_mutation PMID:35031272 F73R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.286388_286389delTTinsCG/c.217_218delTTinsCG/p.F73R +YOL020W TAT2 12076 tat2-G71R G71R amino_acid_mutation PMID:35031272 G71R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.286382G>C/c.211G>C/p.G71R +YOL020W TAT2 12077 tat2-I285T I285T amino_acid_mutation PMID:30660361,PMID:35031272 I285T False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.286878T>C/c.854T>C/p.I285T +YOL020W TAT2 12078 tat2-I285V I285V amino_acid_mutation PMID:30660361,PMID:35031272 I285V False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.286877A>G/c.853A>G/p.I285V +YOL020W TAT2 12079 tat2-S72R S72R amino_acid_mutation PMID:35031272 S72R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.286385_286386delTCinsAG/c.214_215delTCinsAG/p.S72R +YOL020W TAT2 12080 tat2-S76R S76R amino_acid_mutation PMID:35031272 S76R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.286399T>G/c.228T>G/p.S76R +YOL021C DIS3 12092 dis3-A588P A588P amino_acid_mutation PMID:24150935 A588P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.283665C>G/c.1762G>C/p.A588P +YOL021C DIS3 12093 dis3-C47S,C52S,C55S C47S,C52S,C55S amino_acid_mutation PMID:19060898 C47S|C52S|C55S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.285288A>T/c.139T>A/p.C47S|chrXV:g.285273A>T/c.154T>A/p.C52S|chrXV:g.285264A>T/c.163T>A/p.C55S +YOL021C DIS3 12094 dis3-D171N D171N amino_acid_mutation PMID:19060886 D171N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.284916C>T/c.511G>A/p.D171N +YOL021C DIS3 12095 dis3-D171N,D551N D171N,D551N amino_acid_mutation PMID:19060886 D171N|D551N False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.284916C>T/c.511G>A/p.D171N|chrXV:g.283776C>T/c.1651G>A/p.D551N +YOL021C DIS3 12096 dis3-D198N D198N amino_acid_mutation PMID:19060886 D198N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.284835C>T/c.592G>A/p.D198N +YOL021C DIS3 12097 dis3-D551N D551N amino_acid_mutation PMID:17173052,PMID:19129231,PMID:30724665,PMID:33439673 D551N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.283776C>T/c.1651G>A/p.D551N +YOL021C DIS3 12098 dis3-D91N, E120Q, D171N, D198N D91N, E120Q, D171N, D198N amino_acid_mutation PMID:19129231 D91N|E120Q|D171N|D198N False D91N,E120Q,D171N,D198N amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.285156C>T/c.271G>A/p.D91N|chrXV:g.285069C>G/c.358G>C/p.E120Q|chrXV:g.284916C>T/c.511G>A/p.D171N|chrXV:g.284835C>T/c.592G>A/p.D198N +YOL021C DIS3 12099 dis3-E729K E729K amino_acid_mutation PMID:30724665 E729K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.283242C>T/c.2185G>A/p.E729K +YOL021C DIS3 12100 dis3-G833R G833R amino_acid_mutation PMID:24150935 G833R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.282930C>G/c.2497G>C/p.G833R +YOL021C DIS3 12101 dis3-R847K R847K amino_acid_mutation PMID:24150935 R847K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.282887C>T/c.2540G>A/p.R847K +YOL021C DIS3 12102 dis3-V568G V568G amino_acid_mutation PMID:24150935 V568G False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.283724A>C/c.1703T>G/p.V568G +YOL034W SMC5 12122 smc5-E1015Q E1015Q amino_acid_mutation PMID:35993814 E1015Q False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.262965G>C/c.3043G>C/p.E1015Q +YOL034W SMC5 12123 smc5-Q758K Q758K amino_acid_mutation PMID:31301239 Q758K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.262194C>A/c.2272C>A/p.Q758K +YOL040C RPS15 12129 rps15-1-134 1-134 partial_amino_acid_deletion PMID:35438042 1-134 False partial_amino_acid_deletion:multiple_aa partial_amino_acid_deletion chrXV:g.253228_253629del402/c.1_402del402/p.I1_G134del134 +YOL040C RPS15 12130 rps15-1-135 1-135 partial_amino_acid_deletion PMID:35438042 1-135 False partial_amino_acid_deletion:multiple_aa partial_amino_acid_deletion chrXV:g.253225_253629del405/c.4_408del405/p.V2_I136del135 +YOL040C RPS15 12131 rps15-1-141 1-141 partial_amino_acid_deletion PMID:35438042 1-141 False partial_amino_acid_deletion:multiple_aa partial_amino_acid_deletion chrXV:g.253209_253631del423/c.1_423del423/p.I1_H141del141 +YOL040C RPS15 12135 rps15-F102L F102L amino_acid_mutation PMID:35438042 F102L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.253274A>G/c.304T>C/p.F102L +YOL040C RPS15 12136 rps15-F102L,F138S F102L,F138S amino_acid_mutation PMID:35438042 F102L|F138S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.253274A>G/c.304T>C/p.F102L|chrXV:g.253165A>G/c.413T>C/p.F138S +YOL040C RPS15 12137 rps15-F138S F138S amino_acid_mutation PMID:35438042 F138S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.253165A>G/c.413T>C/p.F138S +YOL040C RPS15 12138 rps15-H79A H79A amino_acid_mutation PMID:35438042 H79A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.253342_253343delCAinsGC/c.235_236delCAinsGC/p.H79A +YOL040C RPS15 12139 rps15-R77A R77A amino_acid_mutation PMID:35438042 R77A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.253348_253349delAGinsGC/c.229_230delAGinsGC/p.R77A +YOL040C RPS15 12140 rps15-R77A,H79A R77A,H79A amino_acid_mutation PMID:35438042 R77A|H79A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.253348_253349delAGinsGC/c.229_230delAGinsGC/p.R77A|chrXV:g.253342_253343delCAinsGC/c.235_236delCAinsGC/p.H79A +YOL040C RPS15 12141 rps15-R77A,T78A,H79A R77A,T78A,H79A amino_acid_mutation PMID:35438042 R77A|T78A|H79A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.253348_253349delAGinsGC/c.229_230delAGinsGC/p.R77A|chrXV:g.253346T>C/c.232A>G/p.T78A|chrXV:g.253342_253343delCAinsGC/c.235_236delCAinsGC/p.H79A +YOL040C RPS15 12143 rps15-T78A T78A amino_acid_mutation PMID:35438042 T78A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.253346T>C/c.232A>G/p.T78A +YOL051W GAL11 12148 gal11-Q383stop Q383stop partial_amino_acid_deletion PMID:32303542 Q383stop False Q383* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrXV:g.236086C>T/c.1147C>T/p.Q383* +YOL051W GAL11 12149 gal11-R84K R84K amino_acid_mutation PMID:35369708 R84K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.235190G>A/c.251G>A/p.R84K +YOL051W GAL11 12150 gal11-V27N V27N amino_acid_mutation PMID:33356165 V27N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.235018_235020delGTGinsAAC/c.79_81delGTGinsAAC/p.V27N +YOL051W GAL11 12151 gal11-V76R V76R amino_acid_mutation PMID:35369708 V76R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.235165_235166delGTinsCG/c.226_227delGTinsCG/p.V76R +YOL051W GAL11 12152 gal11-V76R,R84K V76R,R84K amino_acid_mutation PMID:35369708 V76R|R84K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.235165_235166delGTinsCG/c.226_227delGTinsCG/p.V76R|chrXV:g.235190G>A/c.251G>A/p.R84K +YOL052C SPE2 12153 spe2-A278T A278T amino_acid_mutation PMID:32303542 A278T False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.232805C>T/c.832G>A/p.A278T +YOL061W PRS5 12155 prs5-S364A,S367A,S369A S364A,S367A,S369A amino_acid_mutation PMID:27744273 S364A|S367A|S369A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.213333T>G/c.1090T>G/p.S364A|chrXV:g.213342T>G/c.1099T>G/p.S367A|chrXV:g.213348T>G/c.1105T>G/p.S369A +YOL081W IRA2 12172 ira2- I1507V I1507V amino_acid_mutation PMID:34791209 I1507V False I1507V amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.175588A>G/c.4519A>G/p.I1507V +YOL081W IRA2 12174 ira2-A345T A345T amino_acid_mutation PMID:34791209 A345T False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.172102G>A/c.1033G>A/p.A345T +YOL081W IRA2 12175 ira2-C1826F C1826F amino_acid_mutation PMID:29429618 C1826F False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.176546G>T/c.5477G>T/p.C1826F +YOL081W IRA2 12176 ira2-D1537G D1537G amino_acid_mutation PMID:29429618 D1537G False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.175679A>G/c.4610A>G/p.D1537G +YOL081W IRA2 12177 ira2-F2000V,P2364S F2000V,P2364S amino_acid_mutation PMID:34791209 F2000V|P2364S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.177067T>G/c.5998T>G/p.F2000V|chrXV:g.178159C>T/c.7090C>T/p.P2364S +YOL081W IRA2 12178 ira2-F56L F56L amino_acid_mutation PMID:29429618 F56L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.171235T>C/c.166T>C/p.F56L +YOL081W IRA2 12179 ira2-I2277S I2277S amino_acid_mutation PMID:29429618 I2277S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.177899T>G/c.6830T>G/p.I2277S +YOL081W IRA2 12180 ira2-L1135F L1135F amino_acid_mutation PMID:34791209 L1135F False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.174472C>T/c.3403C>T/p.L1135F +YOL081W IRA2 12181 ira2-L1726F L1726F amino_acid_mutation PMID:29429618 L1726F False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.176247G>T/c.5178G>T/p.L1726F +YOL081W IRA2 12182 ira2-N201S N201S amino_acid_mutation PMID:34791209 N201S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.171671A>G/c.602A>G/p.N201S +YOL081W IRA2 12183 ira2-Q2465R Q2465R amino_acid_mutation PMID:31611676 Q2465R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.178463A>G/c.7394A>G/p.Q2465R +YOL081W IRA2 12184 ira2-R1379I R1379I amino_acid_mutation PMID:29429618 R1379I False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.175205G>T/c.4136G>T/p.R1379I +YOL081W IRA2 12185 ira2-R1897I R1897I amino_acid_mutation PMID:29429618 R1897I False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.176759G>T/c.5690G>T/p.R1897I +YOL081W IRA2 12186 ira2-S999* S999* partial_amino_acid_deletion PMID:29429618 S999* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXV:g.174065C>A/c.2996C>A/p.S999* +YOL081W IRA2 12187 ira2-Y302H Y302H amino_acid_mutation PMID:34791209 Y302H False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.171973T>C/c.904T>C/p.Y302H +YOL084W PHM7 12193 phm7-S827R S827R amino_acid_mutation PMID:35527251 S827R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.164836C>G/c.2481C>G/p.S827R +YOL086C ADH1 12195 adh1-H45R H45R amino_acid_mutation PMID:34878214 H45R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.160461T>C/c.134A>G/p.H45R +YOL087C DUF1 12199 duf1-Q722STOP Q722STOP partial_amino_acid_deletion PMID:35283819 Q722STOP False Q722* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrXV:g.156474G>A/c.2164C>T/p.Q722* +YOL089C HAL9 12200 hal9-E921K E921K amino_acid_mutation PMID:31611676 E921K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.150730C>T/c.2761G>A/p.E921K +YOL090W MSH2 12201 msh2-A627P A627P amino_acid_mutation PMID:33848333 A627P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149260G>C/c.1879G>C/p.A627P +YOL090W MSH2 12202 msh2-A708P A708P amino_acid_mutation PMID:33848333 A708P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149503G>C/c.2122G>C/p.A708P +YOL090W MSH2 12203 msh2-A708V A708V amino_acid_mutation PMID:33848333 A708V False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149504C>T/c.2123C>T/p.A708V +YOL090W MSH2 12204 msh2-A719E A719E amino_acid_mutation PMID:33848333 A719E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149537_149538delCTinsAG/c.2156_2157delCTinsAG/p.A719E +YOL090W MSH2 12205 msh2-C195R C195R amino_acid_mutation PMID:20176959 C195R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.147964T>C/c.583T>C/p.C195R +YOL090W MSH2 12206 msh2-C712R C712R amino_acid_mutation PMID:33848333 C712R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149515T>C/c.2134T>C/p.C712R +YOL090W MSH2 12207 msh2-C712Y C712Y amino_acid_mutation PMID:33848333 C712Y False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149516G>A/c.2135G>A/p.C712Y +YOL090W MSH2 12209 msh2-D49V D49V amino_acid_mutation PMID:20176959 D49V False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.147527A>T/c.146A>T/p.D49V +YOL090W MSH2 12210 msh2-D524Y D524Y amino_acid_mutation PMID:33793773 D524Y False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.148951G>T/c.1570G>T/p.D524Y +YOL090W MSH2 12211 msh2-E662K E662K amino_acid_mutation PMID:33848333 E662K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149327G>A/c.1984G>A/p.E662K +YOL090W MSH2 12212 msh2-G122S G122S amino_acid_mutation PMID:20176959 G122S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.147745_147747delGGGinsAGC/c.364_366delGGGinsAGC/p.G122S +YOL090W MSH2 12213 msh2-G350V G350V amino_acid_mutation PMID:33848333 G350V False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.148430G>T/c.1049G>T/p.G350V +YOL090W MSH2 12214 msh2-G688C G688C amino_acid_mutation PMID:33848333 G688C False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149443_149445delGGAinsTGT/c.2062_2064delGGAinsTGT/p.G688C +YOL090W MSH2 12215 msh2-G688D G688D amino_acid_mutation PMID:33848333 G688D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149444_149445delGAinsAC/c.2063_2064delGAinsAC/p.G688D +YOL090W MSH2 12216 msh2-G688R G688R amino_acid_mutation PMID:33848333 G688R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149443G>A/c.2062G>A/p.G688R +YOL090W MSH2 12217 msh2-G693A G693A amino_acid_mutation PMID:18833189 G693A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149459G>C/c.2078G>C/p.G693A +YOL090W MSH2 12218 msh2-G702E G702E amino_acid_mutation PMID:33848333 G702E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149486_149487delGTinsAG/c.2105_2106delGTinsAG/p.G702E +YOL090W MSH2 12219 msh2-G702W G702W amino_acid_mutation PMID:33848333 G702W False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149485_149487delGGTinsTGG/c.2104_2106delGGTinsTGG/p.G702W +YOL090W MSH2 12220 msh2-G711E G711E amino_acid_mutation PMID:33848333 G711E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149513_149514delGTinsAG/c.2132_2133delGTinsAG/p.G711E +YOL090W MSH2 12221 msh2-G711W G711W amino_acid_mutation PMID:33848333 G711W False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149512_149514delGGTinsTGG/c.2131_2133delGGTinsTGG/p.G711W +YOL090W MSH2 12222 msh2-G780R G780R amino_acid_mutation PMID:33848333 G780R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149719G>C/c.2338G>C/p.G780R +YOL090W MSH2 12223 msh2-G780V G780V amino_acid_mutation PMID:33848333 G780V False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149720G>T/c.2339G>T/p.G780V +YOL090W MSH2 12224 msh2-G855D G855D amino_acid_mutation PMID:19834615 G855D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149945G>A/c.2564G>A/p.G855D +YOL090W MSH2 12225 msh2-G855E G855E amino_acid_mutation PMID:33848333 G855E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149945_149946delGTinsAG/c.2564_2565delGTinsAG/p.G855E +YOL090W MSH2 12226 msh2-G855R G855R amino_acid_mutation PMID:33848333 G855R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149944G>C/c.2563G>C/p.G855R +YOL090W MSH2 12227 msh2-H802D H802D amino_acid_mutation PMID:33848333 H802D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149785C>G/c.2404C>G/p.H802D +YOL090W MSH2 12228 msh2-H802Y H802Y amino_acid_mutation PMID:33848333 H802Y False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149785C>T/c.2404C>T/p.H802Y +YOL090W MSH2 12229 msh2-I34E I34E amino_acid_mutation PMID:20176959 I34E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.147481_147483delATTinsGAG/c.100_102delATTinsGAG/p.I34E +YOL090W MSH2 12230 msh2-K466N K466N amino_acid_mutation PMID:33848333 K466N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.148779A>C/c.1398A>C/p.K466N +YOL090W MSH2 12231 msh2-K564A K564A amino_acid_mutation PMID:33793773 K564A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149071_149072delAAinsGC/c.1690_1691delAAinsGC/p.K564A +YOL090W MSH2 12232 msh2-K694E K694E amino_acid_mutation PMID:33848333 K694E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149461A>G/c.2080A>G/p.K694E +YOL090W MSH2 12233 msh2-L183P L183P amino_acid_mutation PMID:20176959 L183P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.147929T>C/c.548T>C/p.L183P +YOL090W MSH2 12234 msh2-L305R L305R amino_acid_mutation PMID:33848333 L305R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.148295T>G/c.914T>G/p.L305R +YOL090W MSH2 12235 msh2-L574S L574S amino_acid_mutation PMID:19834615 L574S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149102T>C/c.1721T>C/p.L574S +YOL090W MSH2 12236 msh2-L584P L584P amino_acid_mutation PMID:19834615 L584P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149132T>C/c.1751T>C/p.L584P +YOL090W MSH2 12237 msh2-M691R M691R amino_acid_mutation PMID:33848333 M691R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149453T>G/c.2072T>G/p.M691R +YOL090W MSH2 12238 msh2-M691V M691V amino_acid_mutation PMID:33848333 M691V False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149452A>G/c.2071A>G/p.M691V +YOL090W MSH2 12239 msh2-N690D N690D amino_acid_mutation PMID:33848333 N690D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149449A>G/c.2068A>G/p.N690D +YOL090W MSH2 12240 msh2-P361A P361A amino_acid_mutation PMID:33848333 P361A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.148462C>G/c.1081C>G/p.P361A +YOL090W MSH2 12241 msh2-P361S P361S amino_acid_mutation PMID:33848333 P361S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.148462C>T/c.1081C>T/p.P361S +YOL090W MSH2 12242 msh2-P640A P640A amino_acid_mutation PMID:32772095 P640A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149299C>G/c.1918C>G/p.P640A +YOL090W MSH2 12243 msh2-P640Q P640Q amino_acid_mutation PMID:33848333 P640Q False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149300_149301delCCinsAA/c.1919_1920delCCinsAA/p.P640Q +YOL090W MSH2 12244 msh2-P689R P689R amino_acid_mutation PMID:33848333 P689R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149447C>G/c.2066C>G/p.P689R +YOL090W MSH2 12245 msh2-P715S P715S amino_acid_mutation PMID:33848333 P715S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149524C>T/c.2143C>T/p.P715S +YOL090W MSH2 12246 msh2-Q700E Q700E amino_acid_mutation PMID:33848333 Q700E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149479C>G/c.2098C>G/p.Q700E +YOL090W MSH2 12247 msh2-Q709E Q709E amino_acid_mutation PMID:33848333 Q709E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149506C>G/c.2125C>G/p.Q709E +YOL090W MSH2 12248 msh2-R371K R371K amino_acid_mutation PMID:33848333 R371K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.148493G>A/c.1112G>A/p.R371K +YOL090W MSH2 12249 msh2-R542C R542C amino_acid_mutation PMID:33848333 R542C False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149005_149007delAGGinsTGT/c.1624_1626delAGGinsTGT/p.R542C +YOL090W MSH2 12250 msh2-R542H R542H amino_acid_mutation PMID:33848333 R542H False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149005_149007delAGGinsCAT/c.1624_1626delAGGinsCAT/p.R542H +YOL090W MSH2 12251 msh2-R542L R542L amino_acid_mutation PMID:33848333 R542L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149005_149006delAGinsCT/c.1624_1625delAGinsCT/p.R542L +YOL090W MSH2 12252 msh2-R542P R542P amino_acid_mutation PMID:33793773 R542P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149005_149006delAGinsCC/c.1624_1625delAGinsCC/p.R542P +YOL090W MSH2 12253 msh2-R639P R639P amino_acid_mutation PMID:33848333 R639P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149296_149297delAGinsCC/c.1915_1916delAGinsCC/p.R639P +YOL090W MSH2 12254 msh2-R639Q R639Q amino_acid_mutation PMID:33848333 R639Q False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149296_149297delAGinsCA/c.1915_1916delAGinsCA/p.R639Q +YOL090W MSH2 12255 msh2-R699P R699P amino_acid_mutation PMID:33848333 R699P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149476_149477delAGinsCC/c.2095_2096delAGinsCC/p.R699P +YOL090W MSH2 12256 msh2-R730Q R730Q amino_acid_mutation PMID:33848333 R730Q False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149569_149570delAGinsCA/c.2188_2189delAGinsCA/p.R730Q +YOL090W MSH2 12257 msh2-S561P S561P amino_acid_mutation PMID:19834615 S561P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149062T>C/c.1681T>C/p.S561P +YOL090W MSH2 12258 msh2-S695L S695L amino_acid_mutation PMID:33848333 S695L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149464_149465delTCinsCT/c.2083_2084delTCinsCT/p.S695L +YOL090W MSH2 12259 msh2-S695P S695P amino_acid_mutation PMID:33848333 S695P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149464T>C/c.2083T>C/p.S695P +YOL090W MSH2 12260 msh2-T687P T687P amino_acid_mutation PMID:33848333 T687P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149440A>C/c.2059A>C/p.T687P +YOL090W MSH2 12261 msh2-T696R T696R amino_acid_mutation PMID:33848333 T696R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149468_149469delCTinsGG/c.2087_2088delCTinsGG/p.T696R +YOL090W MSH2 12262 msh2-T743M T743M amino_acid_mutation PMID:33848333 T743M False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149609_149610delCAinsTG/c.2228_2229delCAinsTG/p.T743M +YOL090W MSH2 12263 msh2-T743R T743R amino_acid_mutation PMID:33848333 T743R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149609C>G/c.2228C>G/p.T743R +YOL090W MSH2 12264 msh2-V714L V714L amino_acid_mutation PMID:33848333 V714L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.149521G>C/c.2140G>C/p.V714L +YOL090W MSH2 12265 msh2-Y43D Y43D amino_acid_mutation PMID:33848333 Y43D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.147508T>G/c.127T>G/p.Y43D +YOL092W YPQ1 12266 ypq1-L70D L70D amino_acid_mutation PMID:33351099 L70D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.144411_144413delTTGinsGAC/c.208_210delTTGinsGAC/p.L70D +YOL092W YPQ1 12267 ypq1-M73D M73D amino_acid_mutation PMID:33351099 M73D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.144420_144422delATGinsGAC/c.217_219delATGinsGAC/p.M73D +YOL092W YPQ1 12268 ypq1-S14D S14D amino_acid_mutation PMID:33351099 S14D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.144243_144244delAGinsGA/c.40_41delAGinsGA/p.S14D +YOL105C WSC3 12278 wsc3-S297R S297R amino_acid_mutation PMID:31611676 S297R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.114918G>C/c.891C>G/p.S297R +YOL115W PAP2 12285 trf4-K552A K552A amino_acid_mutation PMID:17983848 K552A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.103128_103129delAAinsGC/c.1654_1655delAAinsGC/p.K552A +YOL123W HRP1 12287 HRP1-P531A P531A amino_acid_mutation PMID:18343812 P531A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.89434C>G/c.1591C>G/p.P531A +YOL123W HRP1 12289 HRP1-Y532V Y532V amino_acid_mutation PMID:18343812 Y532V False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.89437_89438delTAinsGT/c.1594_1595delTAinsGT/p.Y532V +YOL139C CDC33 12304 cdc33-E72G E72G amino_acid_mutation PMID:23962978,PMID:35587152 E72G False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.60810T>C/c.215A>G/p.E72G +YOL142W RRP40 12305 rrp40-G8A G8A amino_acid_mutation PMID:27777260 G8A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.55580G>C/c.23G>C/p.G8A +YOL142W RRP40 12306 rrp40-S87A S87A amino_acid_mutation PMID:27777260 S87A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.55816T>G/c.259T>G/p.S87A +YOL142W RRP40 12307 rrp40-W195R W195R amino_acid_mutation PMID:27777260 W195R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.56140T>A/c.583T>A/p.W195R +YOL146W PSF3 12312 psf3-D8G D8G amino_acid_mutation PMID:35603789 D8G False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.48886A>G/c.23A>G/p.D8G +YOL146W PSF3 12313 psf3-D8N D8N amino_acid_mutation PMID:35603789 D8N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.48885G>A/c.22G>A/p.D8N +YOL152W FRE7 12320 fre7-P148R P148R amino_acid_mutation PMID:31611676 P148R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.41190C>G/c.443C>G/p.P148R +YOR001W RRP6 12330 rrp6-D457A D457A amino_acid_mutation PMID:16882719 D457A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.328201A>C/c.1370A>C/p.D457A +YOR001W RRP6 12331 rrp6-K574E K574E amino_acid_mutation PMID:35283819 K574E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.328506A>G/c.1720A>G/p.K574E +YOR001W RRP6 12332 rrp6-Q133A,N142A Q133A,N142A amino_acid_mutation PMID:16882719 Q133A|N142A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.327228_327229delCAinsGC/c.397_398delCAinsGC/p.Q133A|chrXV:g.327255_327256delAAinsGC/c.424_425delAAinsGC/p.N142A +YOR001W RRP6 12333 rrp6-Y361A Y361A amino_acid_mutation PMID:16882719 Y361A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.327912_327913delTAinsGC/c.1081_1082delTAinsGC/p.Y361A +YOR004W UTP23 12339 utp23-C102A C102A amino_acid_mutation PMID:24152547 C102A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.333895_333896delTGinsGC/c.304_305delTGinsGC/p.C102A +YOR004W UTP23 12340 utp23-C64A C64A amino_acid_mutation PMID:24152547 C64A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.333781_333782delTGinsGC/c.190_191delTGinsGC/p.C64A +YOR004W UTP23 12341 utp23-C89A C89A amino_acid_mutation PMID:24152547 C89A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.333856_333857delTGinsGC/c.265_266delTGinsGC/p.C89A +YOR004W UTP23 12342 utp23-K4D,R5D K4D,R5D amino_acid_mutation PMID:24152547 K4D|R5D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.333570_333572delAAGinsGAC/c.10_12delAAGinsGAC/p.K4D|chrXV:g.333573_333574delCGinsGA/c.13_14delCGinsGA/p.R5D +YOR004W UTP23 12343 utp23-K7D K7D amino_acid_mutation PMID:24152547 K7D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.333610_333612delAAGinsGAC/c.19_21delAAGinsGAC/p.K7D +YOR004W UTP23 12345 utp23-R10D R10D amino_acid_mutation PMID:24152547 R10D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.333619_333621delAGGinsGAC/c.28_30delAGGinsGAC/p.R10D +YOR005C DNL4 12348 dnl4-K466A K466A amino_acid_mutation PMID:34263309 K466A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.335947_335948delAAinsGC/c.1396_1397delAAinsGC/p.K466A +YOR006C TSR3 12349 tsr3-R60A,K65A,R131A R60A,K65A,R131A amino_acid_mutation PMID:27084949 R60A|K65A|R131A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.338443_338444delAGinsGC/c.178_179delAGinsGC/p.R60A|chrXV:g.338428_338429delAAinsGC/c.193_194delAAinsGC/p.K65A|chrXV:g.338230_338231delAGinsGC/c.391_392delAGinsGC/p.R131A +YOR008C SLG1 12359 slg1-Y303A Y303A amino_acid_mutation PMID:37379203 Y303A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.341507_341508delTAinsGC/c.907_908delTAinsGC/p.Y303A +YOR011W AUS1 12361 aus1-K788A K788A amino_acid_mutation PMID:31830308 K788A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.352040_352041delAAinsGC/c.2362_2363delAAinsGC/p.K788A +YOR033C EXO1 12377 exo1-D173A D173A amino_acid_mutation PMID:17602897 D173A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.394007T>G/c.518A>C/p.D173A +YOR033C EXO1 12378 exo1-FF447AA FF447AA amino_acid_mutation PMID:17602897 FF447AA False amino_acid_mutation:multiple_aa amino_acid_mutation chrXV:g.393181_393186delinsTGCTGC/c.1339_1344delinsGCAGCA/p.F447_F448delinsAA +YOR033C EXO1 12381 exo1-T52S T52S amino_acid_mutation PMID:32772095 T52S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.394370G>C/c.155C>G/p.T52S +YOR042W CUE5 12386 cue5-P377S P377S amino_acid_mutation PMID:32303542 P377S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.409442C>T/c.1129C>T/p.P377S +YOR043W WHI2 12388 whi2-E442* E442* partial_amino_acid_deletion PMID:34946185 E442* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXV:g.412193G>T/c.1324G>T/p.E442* +YOR043W WHI2 12389 whi2-L262S L262S amino_acid_mutation PMID:35511982 L262S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.411654T>C/c.785T>C/p.L262S +YOR046C DBP5 12390 DBP5-R426Q R426Q amino_acid_mutation PMID:21576265 R426Q False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.414631_414632delAGinsCA/c.1276_1277delAGinsCA/p.R426Q +YOR046C DBP5 12395 dbp5-E473K E473K amino_acid_mutation PMID:19805289 E473K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.414491C>T/c.1417G>A/p.E473K +YOR046C DBP5 12396 dbp5-K382E K382E amino_acid_mutation PMID:19805289 K382E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.414764T>C/c.1144A>G/p.K382E +YOR046C DBP5 12397 dbp5-L12A L12A amino_acid_mutation PMID:31453808 L12A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.415873_415874delCTinsGC/c.34_35delCTinsGC/p.L12A +YOR046C DBP5 12398 dbp5-R369G R369G amino_acid_mutation PMID:33002012 R369G False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.414803T>C/c.1105A>G/p.R369G +YOR046C DBP5 12399 dbp5-R423A R423A amino_acid_mutation PMID:31453808 R423A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.414640_414641delAGinsGC/c.1267_1268delAGinsGC/p.R423A +YOR057W SGT1 12410 Sgt1-L31P L31P amino_acid_mutation PMID:19073600 L31P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.432277T>C/c.92T>C/p.L31P +YOR063W RPL3 12430 rpl3-E227V,I282T,T382S E227V,I282T,T382S amino_acid_mutation PMID:16314511 E227V|I282T|T382S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.445365A>T/c.680A>T/p.E227V|chrXV:g.445530T>C/c.845T>C/p.I282T|chrXV:g.445830C>G/c.1145C>G/p.T382S +YOR063W RPL3 12431 rpl3-F67L,I282T F67L,I282T amino_acid_mutation PMID:16314511 F67L|I282T False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.444884T>C/c.199T>C/p.F67L|chrXV:g.445530T>C/c.845T>C/p.I282T +YOR063W RPL3 12432 rpl3-G15C,I282T G15C,I282T amino_acid_mutation PMID:16314511 G15C|I282T False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.444728G>T/c.43G>T/p.G15C|chrXV:g.445530T>C/c.845T>C/p.I282T +YOR063W RPL3 12433 rpl3-H273Q,I282T,K333E H273Q,I282T,K333E amino_acid_mutation PMID:16314511 H273Q|I282T|K333E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.445504T>A/c.819T>A/p.H273Q|chrXV:g.445530T>C/c.845T>C/p.I282T|chrXV:g.445101A>G/c.997A>G/p.K333E +YOR063W RPL3 12434 rpl3-I282T I282T amino_acid_mutation PMID:24603549 I282T False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.445530T>C/c.845T>C/p.I282T +YOR063W RPL3 12435 rpl3-I282T,D299G I282T,D299G amino_acid_mutation PMID:16314511 I282T|D299G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.445530T>C/c.845T>C/p.I282T|chrXV:g.445581A>G/c.896A>G/p.D299G +YOR063W RPL3 12436 rpl3-I282T,E316V I282T,E316V amino_acid_mutation PMID:16314511 I282T|E316V False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.445530T>C/c.845T>C/p.I282T|chrXV:g.445632A>T/c.947A>T/p.E316V +YOR063W RPL3 12437 rpl3-I282T,K367M I282T,K367M amino_acid_mutation PMID:16314511 I282T|K367M False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.445530T>C/c.845T>C/p.I282T|chrXV:g.445204_445205delAAinsTG/c.1100_1101delAAinsTG/p.K367M +YOR063W RPL3 12438 rpl3-I282T,L387F I282T,L387F amino_acid_mutation PMID:16314511 I282T|L387F False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.445530T>C/c.845T>C/p.I282T|chrXV:g.445846G>T/c.1161G>T/p.L387F +YOR063W RPL3 12439 rpl3-I282T,T382S I282T,T382S amino_acid_mutation PMID:16314511 I282T|T382S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.445530T>C/c.845T>C/p.I282T|chrXV:g.445830C>G/c.1145C>G/p.T382S +YOR063W RPL3 12440 rpl3-I282T,Y343N I282T,Y343N amino_acid_mutation PMID:16314511 I282T|Y343N False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.445530T>C/c.845T>C/p.I282T|chrXV:g.445712T>A/c.1027T>A/p.Y343N +YOR063W RPL3 12441 rpl3-K120N,I282T K120N,I282T amino_acid_mutation PMID:16314511 K120N|I282T False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.445045G>C/c.360G>C/p.K120N|chrXV:g.445530T>C/c.845T>C/p.I282T +YOR063W RPL3 12442 rpl3-K201E,N212S,A267S,I282T,L387F K201E,N212S,A267S,I282T,L387F amino_acid_mutation PMID:16314511 K201E|N212S|A267S|I282T|L387F False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.444705A>G/c.601A>G/p.K201E|chrXV:g.445320A>G/c.635A>G/p.N212S|chrXV:g.445484G>T/c.799G>T/p.A267S|chrXV:g.445530T>C/c.845T>C/p.I282T|chrXV:g.445846G>T/c.1161G>T/p.L387F +YOR063W RPL3 12443 rpl3-K30E K30E amino_acid_mutation PMID:24603549 K30E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.444773A>G/c.88A>G/p.K30E +YOR063W RPL3 12444 rpl3-K66E,I282T,R348G,R369S K66E,I282T,R348G,R369S amino_acid_mutation PMID:16314511 K66E|I282T|R348G|R369S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.444881A>G/c.196A>G/p.K66E|chrXV:g.445530T>C/c.845T>C/p.I282T|chrXV:g.445727A>G/c.1042A>G/p.R348G|chrXV:g.445211G>C/c.1107G>C/p.R369S +YOR063W RPL3 12445 rpl3-L171W,I282T L171W,I282T amino_acid_mutation PMID:16314511 L171W|I282T False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.445197T>G/c.512T>G/p.L171W|chrXV:g.445530T>C/c.845T>C/p.I282T +YOR063W RPL3 12446 rpl3-L17S,H259L,I282T L17S,H259L,I282T amino_acid_mutation PMID:16314511 L17S|H259L|I282T False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.444735T>C/c.50T>C/p.L17S|chrXV:g.445461A>T/c.776A>T/p.H259L|chrXV:g.445530T>C/c.845T>C/p.I282T +YOR063W RPL3 12447 rpl3-P18S,G141R,I282T,L387F P18S,G141R,I282T,L387F amino_acid_mutation PMID:16314511 P18S|G141R|I282T|L387F False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.444737C>T/c.52C>T/p.P18S|chrXV:g.445106G>C/c.421G>C/p.G141R|chrXV:g.445530T>C/c.845T>C/p.I282T|chrXV:g.445846G>T/c.1161G>T/p.L387F +YOR063W RPL3 12448 rpl3-P257T P257T amino_acid_mutation PMID:24603549 P257T False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.445454C>A/c.769C>A/p.P257T +YOR063W RPL3 12449 rpl3-Q371H Q371H amino_acid_mutation PMID:24603549 Q371H False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.445798A>T/c.1113A>T/p.Q371H +YOR063W RPL3 12451 rpl3-R196L,I282T,F298I R196L,I282T,F298I amino_acid_mutation PMID:16314511 R196L|I282T|F298I False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.445272G>T/c.587G>T/p.R196L|chrXV:g.445530T>C/c.845T>C/p.I282T|chrXV:g.445577T>A/c.892T>A/p.F298I +YOR063W RPL3 12452 rpl3-T54A,L99F,I282T T54A,L99F,I282T amino_acid_mutation PMID:16314511 T54A|L99F|I282T False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.444845A>G/c.160A>G/p.T54A|chrXV:g.444982G>T/c.297G>T/p.L99F|chrXV:g.445530T>C/c.845T>C/p.I282T +YOR063W RPL3 12454 rpl3-V76I,L171W,I282T V76I,L171W,I282T amino_acid_mutation PMID:16314511 V76I|L171W|I282T False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.444911G>A/c.226G>A/p.V76I|chrXV:g.445197T>G/c.512T>G/p.L171W|chrXV:g.445530T>C/c.845T>C/p.I282T +YOR063W RPL3 12455 rpl3-V90A,W122G,I282T,L338S V90A,W122G,I282T,L338S amino_acid_mutation PMID:16314511 V90A|W122G|I282T|L338S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.444954T>C/c.269T>C/p.V90A|chrXV:g.445049T>G/c.364T>G/p.W122G|chrXV:g.445530T>C/c.845T>C/p.I282T|chrXV:g.445117T>C/c.1013T>C/p.L338S +YOR063W RPL3 12456 rpl3-W255C W255C amino_acid_mutation PMID:24603549,PMID:33330942 W255C False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.445450G>T/c.765G>T/p.W255C +YOR063W RPL3 12457 rpl3-W255C,P257T W255C,P257T amino_acid_mutation PMID:24603549 W255C|P257T False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.445450G>T/c.765G>T/p.W255C|chrXV:g.445454C>A/c.769C>A/p.P257T +YOR073W SGO1 12463 sgo1-N51I N51I amino_acid_mutation PMID:32810145 N51I False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.464922A>T/c.152A>T/p.N51I +YOR087W YVC1 12493 yvc1-C17A C17A amino_acid_mutation PMID:27708136 C17A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.487755_487756delTGinsGC/c.49_50delTGinsGC/p.C17A +YOR087W YVC1 12494 yvc1-C343A C343A amino_acid_mutation PMID:27708136 C343A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.488733_488734delTGinsGC/c.1027_1028delTGinsGC/p.C343A +YOR087W YVC1 12495 yvc1-F247L F247L amino_acid_mutation PMID:18042709 F247L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.488445T>C/c.739T>C/p.F247L +YOR087W YVC1 12496 yvc1-F380L F380L amino_acid_mutation PMID:18042709 F380L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.488844T>C/c.1138T>C/p.F380L +YOR087W YVC1 12497 yvc1-S297W S297W amino_acid_mutation PMID:18042709 S297W False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.488596C>G/c.890C>G/p.S297W +YOR087W YVC1 12498 yvc1-Y458H Y458H amino_acid_mutation PMID:18042709 Y458H False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.489078T>C/c.1372T>C/p.Y458H +YOR087W YVC1 12499 yvc1-Y473C Y473C amino_acid_mutation PMID:18042709 Y473C False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.489124A>G/c.1418A>G/p.Y473C +YOR087W YVC1 12500 yvc1-Y473H Y473H amino_acid_mutation PMID:18042709 Y473H False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.489123T>C/c.1417T>C/p.Y473H +YOR089C VPS21 12501 vps21-Q66L Q66L amino_acid_mutation PMID:10359603,PMID:22899724 Q66L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.490632T>A/c.197A>T/p.Q66L +YOR089C VPS21 12502 vps21-S21N S21N amino_acid_mutation PMID:31754649 S21N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.490766_490768delTCGinsAAC/c.61_63delTCGinsAAC/p.S21N +YOR093C CMR2 12503 cmr2-L554S L554S amino_acid_mutation PMID:31611676 L554S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.500792A>G/c.1661T>C/p.L554S +YOR101W RAS1 12510 ras1-N245I N245I amino_acid_mutation PMID:31611676 N245I False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.515977A>T/c.734A>T/p.N245I +YOR116C RPO31 12530 rpo31-Q658K,G686E Q658K,G686E amino_acid_mutation PMID:33148458 Q658K|G686E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.542174G>T/c.1972C>A/p.Q658K|chrXV:g.542088_542089delGCinsAG/c.2057_2058delGCinsAG/p.G686E +YOR116C RPO31 12531 rpo31-R683G,G686E R683G,G686E amino_acid_mutation PMID:33148458 R683G|G686E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.542099T>C/c.2047A>G/p.R683G|chrXV:g.542088_542089delGCinsAG/c.2057_2058delGCinsAG/p.G686E +YOR116C RPO31 12532 rpo31-Y685K Y685K amino_acid_mutation PMID:33148458 Y685K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.542091_542093delTACinsAAG/c.2053_2055delTACinsAAG/p.Y685K +YOR116C RPO31 12533 rpo31-Y685K,G686E Y685K,G686E amino_acid_mutation PMID:33148458 Y685K|G686E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.542091_542093delTACinsAAG/c.2053_2055delTACinsAAG/p.Y685K|chrXV:g.542088_542089delGCinsAG/c.2057_2058delGCinsAG/p.G686E +YOR117W RPT5 12537 rpt5-K228S K228S amino_acid_mutation PMID:9724628 K228S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.545711_545712delAAinsGC/c.683_684delAAinsGC/p.K228S +YOR117W RPT5 12538 rpt5-P76A P76A amino_acid_mutation PMID:33862083 P76A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.545254C>G/c.226C>G/p.P76A +YOR119C RIO1 12541 RIO1-D244A D244A amino_acid_mutation PMID:24948609 D244A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.549516T>G/c.731A>C/p.D244A +YOR119C RIO1 12542 RIO1-D261A D261A amino_acid_mutation PMID:24948609 D261A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.549465T>G/c.782A>C/p.D261A +YOR119C RIO1 12546 rio1-D244E D244E amino_acid_mutation PMID:11972772 D244E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.549515A>C/c.732T>G/p.D244E +YOR119C RIO1 12547 rio1-D244N D244N amino_acid_mutation PMID:11972772 D244N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.549517C>T/c.730G>A/p.D244N +YOR119C RIO1 12548 rio1-K125R K125R amino_acid_mutation PMID:11972772 K125R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.549873T>C/c.374A>G/p.K125R +YOR120W GCY1 12549 gcy1-A181E A181E amino_acid_mutation PMID:32729986 A181E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.551655C>A/c.542C>A/p.A181E +YOR120W GCY1 12550 gcy1-Y56F Y56F amino_acid_mutation PMID:32729986 Y56F False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.551280A>T/c.167A>T/p.Y56F +YOR124C UBP2 12556 ubp2-C745S C745S amino_acid_mutation PMID:32240951 C745S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.556410A>T/c.2233T>A/p.C745S +YOR124C UBP2 12557 ubp2-C745V C745V amino_acid_mutation PMID:35770973 C745V False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.556409_556410delTGinsGT/c.2233_2234delTGinsGT/p.C745V +YOR125C CAT5 12580 cat5-E194K E194K amino_acid_mutation PMID:16624818 E194K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.559152C>T/c.580G>A/p.E194K +YOR125C CAT5 12581 cat5-I69N I69N amino_acid_mutation PMID:37392700 I69N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.559526A>T/c.206T>A/p.I69N +YOR125C CAT5 12582 cat5-K108M,L116P K108M,L116P amino_acid_mutation PMID:37392700 K108M|L116P False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.559408_559409delAAinsTG/c.323_324delAAinsTG/p.K108M|chrXV:g.559385_559386delTTinsCC/c.346_347delTTinsCC/p.L116P +YOR125C CAT5 12583 cat5-R112W R112W amino_acid_mutation PMID:37392700 R112W False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.559398T>A/c.334A>T/p.R112W +YOR125C CAT5 12584 cat5-R57Q R57Q amino_acid_mutation PMID:37392700 R57Q False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.559561_559562delGTinsAA/c.170_171delGTinsAA/p.R57Q +YOR125C CAT5 12585 cat5-V146E V146E amino_acid_mutation PMID:37392700 V146E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.559294_559295delTCinsAG/c.437_438delTCinsAG/p.V146E +YOR125C CAT5 12586 cat5-Y154C Y154C amino_acid_mutation PMID:37392700 Y154C False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.559271T>C/c.461A>G/p.Y154C +YOR127W RGA1 12590 rga1-C40S,C98S C40S,C98S amino_acid_mutation PMID:29074565 C40S|C98S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.561287T>A/c.118T>A/p.C40S|chrXV:g.561461T>A/c.292T>A/p.C98S +YOR128C ADE2 12593 ade2-A469T A469T amino_acid_mutation PMID:34015926 A469T False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.564787C>T/c.1405G>A/p.A469T +YOR132W VPS17 12595 vps17-S437L S437L amino_acid_mutation PMID:31611676 S437L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.574484C>T/c.1310C>T/p.S437L +YOR140W SFL1 12601 sfl1-Q320stop Q320stop partial_amino_acid_deletion PMID:22844449 Q320stop False Q320* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrXV:g.587938C>T/c.958C>T/p.Q320* +YOR143C THI80 12603 thi80-L90P L90P amino_acid_mutation PMID:24778186 L90P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.602074A>G/c.269T>C/p.L90P +YOR144C ELG1 12605 elg1-T386D,T387D T386D,T387D amino_acid_mutation PMID:28108661,PMID:35708277 T386D|T387D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.603936_603937delACinsGA/c.1156_1157delACinsGA/p.T386D|chrXV:g.603932_603934delACAinsGAC/c.1159_1161delACAinsGAC/p.T387D +YOR151C RPB2 12621 rpb2-D106G D106G amino_acid_mutation PMID:23390594 D106G False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.616355T>C/c.317A>G/p.D106G +YOR151C RPB2 12622 rpb2-D279G D279G amino_acid_mutation PMID:23390594 D279G False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.615836T>C/c.836A>G/p.D279G +YOR151C RPB2 12623 rpb2-D66N D66N amino_acid_mutation PMID:23390594 D66N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.616476C>T/c.196G>A/p.D66N +YOR151C RPB2 12624 rpb2-D837E D837E amino_acid_mutation PMID:21761155 D837E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.614161A>C/c.2511T>G/p.D837E +YOR151C RPB2 12626 rpb2-E245G E245G amino_acid_mutation PMID:23390594 E245G False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.615938T>C/c.734A>G/p.E245G +YOR151C RPB2 12627 rpb2-E437K E437K amino_acid_mutation PMID:23390594 E437K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.615363C>T/c.1309G>A/p.E437K +YOR151C RPB2 12628 rpb2-E438G E438G amino_acid_mutation PMID:23390594 E438G False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.615359T>C/c.1313A>G/p.E438G +YOR151C RPB2 12629 rpb2-E80D E80D amino_acid_mutation PMID:23390594 E80D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.616432T>G/c.240A>C/p.E80D +YOR151C RPB2 12630 rpb2-E836A E836A amino_acid_mutation PMID:21761155 E836A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.614165T>G/c.2507A>C/p.E836A +YOR151C RPB2 12631 rpb2-F421L F421L amino_acid_mutation PMID:23390594 F421L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.615411A>G/c.1261T>C/p.F421L +YOR151C RPB2 12632 rpb2-F557S F557S amino_acid_mutation PMID:23390594 F557S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.615291A>G/c.1670T>C/p.F557S +YOR151C RPB2 12633 rpb2-F581L F581L amino_acid_mutation PMID:23390594 F581L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.614931A>G/c.1741T>C/p.F581L +YOR151C RPB2 12634 rpb2-G107D G107D amino_acid_mutation PMID:23390594 G107D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.616352C>T/c.320G>A/p.G107D +YOR151C RPB2 12635 rpb2-G127D G127D amino_acid_mutation PMID:23390594 G127D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.616292C>T/c.380G>A/p.G127D +YOR151C RPB2 12636 rpb2-H518Q H518Q amino_acid_mutation PMID:23390594 H518Q False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.615118A>T/c.1554T>A/p.H518Q +YOR151C RPB2 12637 rpb2-H572Y H572Y amino_acid_mutation PMID:23390594 H572Y False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.614958G>A/c.1714C>T/p.H572Y +YOR151C RPB2 12638 rpb2-H648P H648P amino_acid_mutation PMID:23390594 H648P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.614729T>G/c.1943A>C/p.H648P +YOR151C RPB2 12639 rpb2-I205V I205V amino_acid_mutation PMID:23390594 I205V False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.616059T>C/c.613A>G/p.I205V +YOR151C RPB2 12640 rpb2-I343T I343T amino_acid_mutation PMID:23390594 I343T False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.615644A>G/c.1028T>C/p.I343T +YOR151C RPB2 12641 rpb2-I669T I669T amino_acid_mutation PMID:23390594 I669T False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.614666A>G/c.2006T>C/p.I669T +YOR151C RPB2 12642 rpb2-K148R K148R amino_acid_mutation PMID:23390594 K148R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.616229T>C/c.443A>G/p.K148R +YOR151C RPB2 12643 rpb2-K537R K537R amino_acid_mutation PMID:23390594 K537R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.615062T>C/c.1610A>G/p.K537R +YOR151C RPB2 12644 rpb2-L603S L603S amino_acid_mutation PMID:23390594 L603S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.614864A>G/c.1808T>C/p.L603S +YOR151C RPB2 12645 rpb2-L74W L74W amino_acid_mutation PMID:23390594 L74W False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.616451A>C/c.221T>G/p.L74W +YOR151C RPB2 12646 rpb2-M432T M432T amino_acid_mutation PMID:23390594 M432T False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.615377A>G/c.1295T>C/p.M432T +YOR151C RPB2 12647 rpb2-N206Y N206Y amino_acid_mutation PMID:23390594 N206Y False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.616056T>A/c.616A>T/p.N206Y +YOR151C RPB2 12648 rpb2-N484D N484D amino_acid_mutation PMID:23390594 N484D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.615222T>C/c.1450A>G/p.N484D +YOR151C RPB2 12649 rpb2-N583D N583D amino_acid_mutation PMID:23390594 N583D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.614925T>C/c.1747A>G/p.N583D +YOR151C RPB2 12650 rpb2-N592S N592S amino_acid_mutation PMID:23390594 N592S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.614897T>C/c.1775A>G/p.N592S +YOR151C RPB2 12651 rpb2-Q46R Q46R amino_acid_mutation PMID:23390594 Q46R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.616535T>C/c.137A>G/p.Q46R +YOR151C RPB2 12652 rpb2-R605G R605G amino_acid_mutation PMID:23390594 R605G False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.614859T>C/c.1813A>G/p.R605G +YOR151C RPB2 12653 rpb2-S2P S2P amino_acid_mutation PMID:23390594 S2P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.616668A>G/c.4T>C/p.S2P +YOR151C RPB2 12654 rpb2-S45L S45L amino_acid_mutation PMID:23390594 S45L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.616538G>A/c.134C>T/p.S45L +YOR151C RPB2 12655 rpb2-T339A T339A amino_acid_mutation PMID:23390594 T339A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.615657T>C/c.1015A>G/p.T339A +YOR151C RPB2 12656 rpb2-T491I T491I amino_acid_mutation PMID:23390594 T491I False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.615200G>A/c.1472C>T/p.T491I +YOR151C RPB2 12657 rpb2-T500A T500A amino_acid_mutation PMID:23390594 T500A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.615174T>C/c.1498A>G/p.T500A +YOR151C RPB2 12658 rpb2-T527A T527A amino_acid_mutation PMID:23390594 T527A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.615093T>C/c.1579A>G/p.T527A +YOR151C RPB2 12659 rpb2-V225E V225E amino_acid_mutation PMID:23390594 V225E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.615998A>T/c.674T>A/p.V225E +YOR151C RPB2 12660 rpb2-V225M V225M amino_acid_mutation PMID:23390594 V225M False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.615999C>T/c.673G>A/p.V225M +YOR151C RPB2 12661 rpb2-V547A V547A amino_acid_mutation PMID:23390594 V547A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.615032A>G/c.1640T>C/p.V547A +YOR151C RPB2 12662 rpb2-W31R W31R amino_acid_mutation PMID:23390594 W31R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.616581A>T/c.91T>A/p.W31R +YOR151C RPB2 12663 rpb2-Y190C Y190C amino_acid_mutation PMID:23390594 Y190C False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.616103T>C/c.569A>G/p.Y190C +YOR151C RPB2 12664 rpb2-Y57F Y57F amino_acid_mutation PMID:23390594 Y57F False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.616502T>A/c.170A>T/p.Y57F +YOR152C ATG40 12665 atg40-F107A,E112A F107A,E112A amino_acid_mutation PMID:35101986 F107A|E112A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.617969_617970delTTinsGC/c.319_320delTTinsGC/p.F107A|chrXV:g.617954T>G/c.335A>C/p.E112A +YOR152C ATG40 12666 atg40-F233A,E237A F233A,E237A amino_acid_mutation PMID:35101986 F233A|E237A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.617591_617592delTTinsGC/c.697_698delTTinsGC/p.F233A|chrXV:g.617579T>G/c.710A>C/p.E237A +YOR152C ATG40 12667 atg40-F34A F34A amino_acid_mutation PMID:35101986 F34A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.618188_618189delTTinsGC/c.100_101delTTinsGC/p.F34A +YOR153W PDR5 12668 pdr5-A666G A666G amino_acid_mutation PMID:31294884 A666G False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.621836C>G/c.1997C>G/p.A666G +YOR153W PDR5 12669 pdr5-A670S A670S amino_acid_mutation PMID:31728740 A670S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.621847G>T/c.2008G>T/p.A670S +YOR153W PDR5 12670 pdr5-C199A C199A amino_acid_mutation PMID:18356296 C199A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.620434_620435delTGinsGC/c.595_596delTGinsGC/p.C199A +YOR153W PDR5 12671 pdr5-C793F C793F amino_acid_mutation PMID:24333836 C793F False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.622217G>T/c.2378G>T/p.C793F +YOR153W PDR5 12672 pdr5-E1036Q E1036Q amino_acid_mutation PMID:18356296,PMID:35671830 E1036Q False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.622945G>C/c.3106G>C/p.E1036Q +YOR153W PDR5 12673 pdr5-F562I F562I amino_acid_mutation PMID:35435209 F562I False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.621523T>A/c.1684T>A/p.F562I +YOR153W PDR5 12674 pdr5-G312A G312A amino_acid_mutation PMID:31757931 G312A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.620774G>C/c.935G>C/p.G312A +YOR153W PDR5 12675 pdr5-H1068A H1068A amino_acid_mutation PMID:18356296 H1068A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.623041_623042delCAinsGC/c.3202_3203delCAinsGC/p.H1068A +YOR153W PDR5 12676 pdr5-K911A K911A amino_acid_mutation PMID:18356296 K911A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.622570_622571delAAinsGC/c.2731_2732delAAinsGC/p.K911A +YOR153W PDR5 12677 pdr5-Q1253A Q1253A amino_acid_mutation PMID:21034832 Q1253A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.623596_623597delCAinsGC/c.3757_3758delCAinsGC/p.Q1253A +YOR153W PDR5 12678 pdr5-S1230L S1230L amino_acid_mutation PMID:24333836 S1230L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.623528C>T/c.3689C>T/p.S1230L +YOR153W PDR5 12679 pdr5-S837A S837A amino_acid_mutation PMID:31757931 S837A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.622348_622349delAGinsGC/c.2509_2510delAGinsGC/p.S837A +YOR153W PDR5 12680 pdr5-S837A, S854A S837A, S854A amino_acid_mutation PMID:31757931 S837A|S854A False S837A,S854A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.622348_622349delAGinsGC/c.2509_2510delAGinsGC/p.S837A|chrXV:g.622399T>G/c.2560T>G/p.S854A +YOR153W PDR5 12681 pdr5-S840A S840A amino_acid_mutation PMID:31757931 S840A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.622357T>G/c.2518T>G/p.S840A +YOR153W PDR5 12682 pdr5-S841A S841A amino_acid_mutation PMID:31757931 S841A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.622360_622361delAGinsGC/c.2521_2522delAGinsGC/p.S841A +YOR153W PDR5 12683 pdr5-S849A S849A amino_acid_mutation PMID:31757931 S849A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.622384_622385delAGinsGC/c.2545_2546delAGinsGC/p.S849A +YOR153W PDR5 12684 pdr5-S850A S850A amino_acid_mutation PMID:31757931 S850A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.622387T>G/c.2548T>G/p.S850A +YOR153W PDR5 12685 pdr5-S854A S854A amino_acid_mutation PMID:31757931 S854A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.622399T>G/c.2560T>G/p.S854A +YOR153W PDR5 12686 pdr5-T1213A T1213A amino_acid_mutation PMID:21034832 T1213A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.623476A>G/c.3637A>G/p.T1213A +YOR156C NFI1 12687 nfi1-A569D A569D amino_acid_mutation PMID:34787675 A569D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.628834_628835delCGinsAC/c.1706_1707delCGinsAC/p.A569D +YOR156C NFI1 12688 nfi1-I472A,I473A I472A,I473A amino_acid_mutation PMID:34787675 I472A|I473A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.629126_629127delATinsGC/c.1414_1415delATinsGC/p.I472A|chrXV:g.629123_629124delATinsGC/c.1417_1418delATinsGC/p.I473A +YOR156C NFI1 12689 nfi1-K52E K52E amino_acid_mutation PMID:34585421 K52E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.630387T>C/c.154A>G/p.K52E +YOR156C NFI1 12690 nfi1-K56E K56E amino_acid_mutation PMID:34585421 K56E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.630375T>C/c.166A>G/p.K56E +YOR156C NFI1 12691 nfi1-K65A,K66A K65A,K66A amino_acid_mutation PMID:34585421 K65A|K66A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.630347_630348delAAinsGC/c.193_194delAAinsGC/p.K65A|chrXV:g.630344_630345delAAinsGC/c.196_197delAAinsGC/p.K66A +YOR156C NFI1 12692 nfi1-K65E,K66E K65E,K66E amino_acid_mutation PMID:34585421 K65E|K66E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.630348T>C/c.193A>G/p.K65E|chrXV:g.630345T>C/c.196A>G/p.K66E +YOR156C NFI1 12693 nfi1-S522A S522A amino_acid_mutation PMID:34787675 S522A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.629148A>C/c.1564T>G/p.S522A +YOR156C NFI1 12694 nfi1-S527A S527A amino_acid_mutation PMID:34787675 S527A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.628962A>C/c.1579T>G/p.S527A +YOR156C NFI1 12695 nfi1-S674A S674A amino_acid_mutation PMID:34787675 S674A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.628521A>C/c.2020T>G/p.S674A +YOR156C NFI1 12696 nfi1-V720A,V721A V720A,V721A amino_acid_mutation PMID:34787675 V720A|V721A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.628382A>G/c.2159T>C/p.V720A|chrXV:g.628379A>G/c.2162T>C/p.V721A +YOR157C PUP1 12700 pup1-K58E K58E amino_acid_mutation PMID:32916113 K58E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.631580T>C/c.172A>G/p.K58E +YOR157C PUP1 12701 pup1-T30A T30A amino_acid_mutation PMID:12940990,PMID:37364618,PMID:9312134 T30A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.631664T>C/c.88A>G/p.T30A +YOR159C SME1 12705 sme1-K83A K83A amino_acid_mutation PMID:27974620 K83A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.633390_633391delAAinsGC/c.247_248delAAinsGC/p.K83A +YOR162C YRR1 12712 YRR1-L611F L611F amino_acid_mutation PMID:35149760 L611F False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.640160C>A/c.1833G>T/p.L611F +YOR162C YRR1 12713 yrr1-I756A I756A amino_acid_mutation PMID:24532717,PMID:36899374 I756A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.639726_639727delATinsGC/c.2266_2267delATinsGC/p.I756A +YOR162C YRR1 12714 yrr1-I775A I775A amino_acid_mutation PMID:24532717,PMID:36899374 I775A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.639669_639670delATinsGC/c.2323_2324delATinsGC/p.I775A +YOR162C YRR1 12715 yrr1-I775E I775E amino_acid_mutation PMID:29208650 I775E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.639668_639670delATCinsGAG/c.2323_2325delATCinsGAG/p.I775E +YOR162C YRR1 12716 yrr1-P582T P582T amino_acid_mutation PMID:34772931 P582T False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.640249G>T/c.1744C>A/p.P582T +YOR162C YRR1 12717 yrr1-S155A S155A amino_acid_mutation PMID:36899374 S155A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641530A>C/c.463T>G/p.S155A +YOR162C YRR1 12718 yrr1-S176A S176A amino_acid_mutation PMID:36899374 S176A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641467A>C/c.526T>G/p.S176A +YOR162C YRR1 12719 yrr1-S186A S186A amino_acid_mutation PMID:36899374 S186A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641437A>C/c.556T>G/p.S186A +YOR162C YRR1 12720 yrr1-S745A S745A amino_acid_mutation PMID:36899374 S745A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.639759_639760delAGinsGC/c.2233_2234delAGinsGC/p.S745A +YOR162C YRR1 12721 yrr1-T180A T180A amino_acid_mutation PMID:36899374 T180A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641455T>C/c.538A>G/p.T180A +YOR162C YRR1 12722 yrr1-T185A T185A amino_acid_mutation PMID:36899374 T185A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641440T>C/c.553A>G/p.T185A +YOR162C YRR1 12723 yrr1-T185E T185E amino_acid_mutation PMID:36899374 T185E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641438_641440delACTinsGAG/c.553_555delACTinsGAG/p.T185E +YOR162C YRR1 12724 yrr1-T223K T223K amino_acid_mutation PMID:34772931 T223K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641325G>T/c.668C>A/p.T223K +YOR162C YRR1 12725 yrr1-T38A T38A amino_acid_mutation PMID:36899374 T38A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641881T>C/c.112A>G/p.T38A +YOR162C YRR1 12726 yrr1-T610A T610A amino_acid_mutation PMID:36899374 T610A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.640165T>C/c.1828A>G/p.T610A +YOR162C YRR1 12727 yrr1-Y134A Y134A amino_acid_mutation PMID:36899374 Y134A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641592_641593delTAinsGC/c.400_401delTAinsGC/p.Y134A +YOR162C YRR1 12728 yrr1-Y134A,T185A Y134A,T185A amino_acid_mutation PMID:36899374 Y134A|T185A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641592_641593delTAinsGC/c.400_401delTAinsGC/p.Y134A|chrXV:g.641440T>C/c.553A>G/p.T185A +YOR162C YRR1 12729 yrr1-Y134E Y134E amino_acid_mutation PMID:36899374 Y134E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641591_641593delTACinsGAG/c.400_402delTACinsGAG/p.Y134E +YOR162C YRR1 12730 yrr1-Y134E,T185E Y134E,T185E amino_acid_mutation PMID:36899374 Y134E|T185E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641591_641593delTACinsGAG/c.400_402delTACinsGAG/p.Y134E|chrXV:g.641438_641440delACTinsGAG/c.553_555delACTinsGAG/p.T185E +YOR166C SWT1 12731 swt1-D135N D135N amino_acid_mutation PMID:19127978 D135N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.648100C>T/c.403G>A/p.D135N +YOR171C LCB4 12737 lcb4-P235S P235S amino_acid_mutation PMID:31611676 P235S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.653182G>A/c.703C>T/p.P235S +YOR181W LAS17 12747 las17-S554A S554A amino_acid_mutation PMID:33958621 S554A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.677598T>G/c.1660T>G/p.S554A +YOR181W LAS17 12748 las17-S554D S554D amino_acid_mutation PMID:33958621 S554D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.677598_677600delTCAinsGAC/c.1660_1662delTCAinsGAC/p.S554D +YOR187W TUF1 12753 tuf1-R328Q R328Q amino_acid_mutation PMID:17160893 R328Q False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.685011_685012delAGinsCA/c.982_983delAGinsCA/p.R328Q +YOR195W SLK19 12763 slk19-D782H D782H amino_acid_mutation PMID:31611676 D782H False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.715209G>C/c.2344G>C/p.D782H +YOR198C BFR1 12771 bfr1-S315C S315C amino_acid_mutation PMID:31611676 S315C False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.719123T>A/c.943A>T/p.S315C +YOR204W DED1 12777 ded1-F56A,F57A F56A,F57A amino_acid_mutation PMID:32469309 F56A|F57A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.723076_723077delTTinsGC/c.166_167delTTinsGC/p.F56A|chrXV:g.723079_723080delTTinsGC/c.169_170delTTinsGC/p.F57A +YOR204W DED1 12778 ded1-G28A G28A amino_acid_mutation PMID:32469309 G28A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.722993G>C/c.83G>C/p.G28A +YOR204W DED1 12780 ded1-R27A R27A amino_acid_mutation PMID:32469309 R27A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.722989_722990delAGinsGC/c.79_80delAGinsGC/p.R27A +YOR204W DED1 12781 ded1-R51A R51A amino_acid_mutation PMID:32469309 R51A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.723042_723043delCGinsGC/c.151_152delCGinsGC/p.R51A +YOR204W DED1 12782 ded1-R545K R545K amino_acid_mutation PMID:33856219 R545K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.724544G>A/c.1634G>A/p.R545K +YOR204W DED1 12783 ded1-R62A R62A amino_acid_mutation PMID:32469309 R62A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.723094_723095delCGinsGC/c.184_185delCGinsGC/p.R62A +YOR204W DED1 12784 ded1-R83A R83A amino_acid_mutation PMID:32469309 R83A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.723157_723158delCGinsGC/c.247_248delCGinsGC/p.R83A +YOR204W DED1 12785 ded1-S539A,S543A S539A,S543A amino_acid_mutation PMID:33856219 S539A|S543A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.724525_724526delAGinsGC/c.1615_1616delAGinsGC/p.S539A|chrXV:g.724518T>G/c.1627T>G/p.S543A +YOR204W DED1 12786 ded1-S539A,S543A,R545K S539A,S543A,R545K amino_acid_mutation PMID:33856219 S539A|S543A|R545K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.724525_724526delAGinsGC/c.1615_1616delAGinsGC/p.S539A|chrXV:g.724518T>G/c.1627T>G/p.S543A|chrXV:g.724544G>A/c.1634G>A/p.R545K +YOR204W DED1 12787 ded1-W88A W88A amino_acid_mutation PMID:32469309 W88A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.723172_723173delTGinsGC/c.262_263delTGinsGC/p.W88A +YOR204W DED1 12788 ded1-Y21A Y21A amino_acid_mutation PMID:32469309 Y21A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.722971_722972delTAinsGC/c.61_62delTAinsGC/p.Y21A +YOR204W DED1 12789 ded1-Y65A Y65A amino_acid_mutation PMID:32469309 Y65A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.723103_723104delTAinsGC/c.193_194delTAinsGC/p.Y65A +YOR204W DED1 12790 ded1-f144c f144c amino_acid_mutation PMID:27708008 f144c False F144C amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.723341T>G/c.431T>G/p.F144C +YOR207C RET1 12796 ret1-G1007A G1007A amino_acid_mutation PMID:17785443,PMID:30760101,PMID:34298922 G1007A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.730438C>G/c.3020G>C/p.G1007A +YOR208W PTP2 12797 ptp2-C666S C666S amino_acid_mutation PMID:10817757 C666S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.735920T>A/c.1996T>A/p.C666S +YOR209C NPT1 12798 npt1-H232A H232A amino_acid_mutation PMID:33749726 H232A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.737032_737033delCAinsGC/c.694_695delCAinsGC/p.H232A +YOR210W RPB10 12801 rpb10-K59E K59E amino_acid_mutation PMID:10085073 K59E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.738494A>G/c.175A>G/p.K59E +YOR211C MGM1 12803 mgm1-C709S C709S amino_acid_mutation PMID:32041880 C709S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739445A>T/c.2125T>A/p.C709S +YOR211C MGM1 12804 mgm1-D360A D360A amino_acid_mutation PMID:32041880 D360A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.740491T>G/c.1079A>C/p.D360A +YOR211C MGM1 12805 mgm1-D528K D528K amino_acid_mutation PMID:32041880 D528K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739986_739988delGACinsAAG/c.1582_1584delGACinsAAG/p.D528K +YOR211C MGM1 12806 mgm1-D542K D542K amino_acid_mutation PMID:32041880 D542K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739944_739946delGATinsAAG/c.1624_1626delGATinsAAG/p.D542K +YOR211C MGM1 12807 mgm1-D597K D597K amino_acid_mutation PMID:32041880 D597K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739986_739988delGACinsAAG/c.1789_1791delGACinsAAG/p.D597K +YOR211C MGM1 12808 mgm1-D652K D652K amino_acid_mutation PMID:32041880 D652K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739821_739823delGATinsAAG/c.1954_1956delGATinsAAG/p.D652K +YOR211C MGM1 12810 mgm1-E115A E115A amino_acid_mutation PMID:31764998 E115A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.741226T>G/c.344A>C/p.E115A +YOR211C MGM1 12811 mgm1-E751A E751A amino_acid_mutation PMID:32041880 E751A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739318T>G/c.2252A>C/p.E751A +YOR211C MGM1 12812 mgm1-E809A E809A amino_acid_mutation PMID:32041880 E809A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739144T>G/c.2426A>C/p.E809A +YOR211C MGM1 12813 mgm1-F814D F814D amino_acid_mutation PMID:32041880 F814D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739129_739130delTTinsGA/c.2440_2441delTTinsGA/p.F814D +YOR211C MGM1 12814 mgm1-G239D G239D amino_acid_mutation PMID:32041880 G239D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.740854C>T/c.716G>A/p.G239D +YOR211C MGM1 12815 mgm1-I541D I541D amino_acid_mutation PMID:32041880 I541D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739947_739949delATAinsGAC/c.1621_1623delATAinsGAC/p.I541D +YOR211C MGM1 12816 mgm1-I820A I820A amino_acid_mutation PMID:32041880 I820A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739111_739112delATinsGC/c.2458_2459delATinsGC/p.I820A +YOR211C MGM1 12817 mgm1-K238D K238D amino_acid_mutation PMID:32041880 K238D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.740856_740858delAAAinsGAC/c.712_714delAAAinsGAC/p.K238D +YOR211C MGM1 12818 mgm1-K468A,K487A K468A,K487A amino_acid_mutation PMID:32041880 K468A|K487A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.740167_740168delAAinsGC/c.1402_1403delAAinsGC/p.K468A|chrXV:g.740110_740111delAAinsGC/c.1459_1460delAAinsGC/p.K487A +YOR211C MGM1 12819 mgm1-K468E,K487D K468E,K487D amino_acid_mutation PMID:32041880 K468E|K487D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.740168T>C/c.1402A>G/p.K468E|chrXV:g.740109_740111delAAAinsGAC/c.1459_1461delAAAinsGAC/p.K487D +YOR211C MGM1 12820 mgm1-K549A K549A amino_acid_mutation PMID:32041880 K549A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739924_739925delAAinsGC/c.1645_1646delAAinsGC/p.K549A +YOR211C MGM1 12821 mgm1-L367D L367D amino_acid_mutation PMID:32041880 L367D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.740469_740471delTTGinsGAC/c.1099_1101delTTGinsGAC/p.L367D +YOR211C MGM1 12822 mgm1-L653D L653D amino_acid_mutation PMID:32041880 L653D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739612_739613delCTinsGA/c.1957_1958delCTinsGA/p.L653D +YOR211C MGM1 12823 mgm1-L826D L826D amino_acid_mutation PMID:32041880 L826D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739092_739094delTTAinsGAC/c.2476_2478delTTAinsGAC/p.L826D +YOR211C MGM1 12824 mgm1-L829D L829D amino_acid_mutation PMID:32041880 L829D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739083_739085delTTGinsGAC/c.2485_2487delTTGinsGAC/p.L829D +YOR211C MGM1 12825 mgm1-N539D,K863D N539D,K863D amino_acid_mutation PMID:32041880 N539D|K863D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739955T>C/c.1615A>G/p.N539D|chrXV:g.738981_738983delAAAinsGAC/c.2587_2589delAAAinsGAC/p.K863D +YOR211C MGM1 12826 mgm1-N710L N710L amino_acid_mutation PMID:32041880 N710L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739441_739442delAAinsCT/c.2128_2129delAAinsCT/p.N710L +YOR211C MGM1 12827 mgm1-Q219R Q219R amino_acid_mutation PMID:32041880 Q219R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.740914T>C/c.656A>G/p.Q219R +YOR211C MGM1 12828 mgm1-R712A R712A amino_acid_mutation PMID:32041880 R712A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739435_739436delAGinsGC/c.2134_2135delAGinsGC/p.R712A +YOR211C MGM1 12831 mgm1-R853A R853A amino_acid_mutation PMID:32041880 R853A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739012_739013delAGinsGC/c.2557_2558delAGinsGC/p.R853A +YOR211C MGM1 12832 mgm1-S220A S220A amino_acid_mutation PMID:32041880 S220A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.740912A>C/c.658T>G/p.S220A +YOR211C MGM1 12833 mgm1-S397A S397A amino_acid_mutation PMID:32041880 S397A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.740380_740381delAGinsGC/c.1189_1190delAGinsGC/p.S397A +YOR211C MGM1 12835 mgm1-V324D V324D amino_acid_mutation PMID:32041880 V324D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.740598_740599delTGinsAC/c.971_972delTGinsAC/p.V324D +YOR211C MGM1 12836 mgm1-V720A V720A amino_acid_mutation PMID:32041880 V720A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739411A>G/c.2159T>C/p.V720A +YOR211C MGM1 12837 mgm1-VL765AA VL765AA amino_acid_mutation PMID:32041880 VL765AA False amino_acid_mutation:multiple_aa amino_acid_mutation chrXV:g.739272_739277delinsTGCTGC/c.2293_2298delinsGCAGCA/p.V765_L766delinsAA +YOR211C MGM1 12838 mgm1-Y477A Y477A amino_acid_mutation PMID:32041880 Y477A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.740140_740141delTAinsGC/c.1429_1430delTAinsGC/p.Y477A +YOR211C MGM1 12839 mgm1-Y816A Y816A amino_acid_mutation PMID:32041880 Y816A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739123_739124delTAinsGC/c.2446_2447delTAinsGC/p.Y816A +YOR212W STE4 12842 STE4-A405V A405V amino_acid_mutation PMID:12660244,PMID:19820940 A405V False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.744123C>T/c.1214C>T/p.A405V +YOR212W STE4 12843 Ste4-D62H D62H amino_acid_mutation PMID:7896092 D62H False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.743093G>C/c.184G>C/p.D62H +YOR212W STE4 12845 ste4-A56P A56P amino_acid_mutation PMID:7896092 A56P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.743075G>C/c.166G>C/p.A56P +YOR212W STE4 12846 ste4-A63S A63S amino_acid_mutation PMID:7896092 A63S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.743096G>T/c.187G>T/p.A63S +YOR212W STE4 12848 ste4-D62N D62N amino_acid_mutation PMID:1464311,PMID:7896092 D62N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.743093G>A/c.184G>A/p.D62N +YOR212W STE4 12849 ste4-D62N,A63T D62N,A63T amino_acid_mutation PMID:7896092 D62N|A63T False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.743093G>A/c.184G>A/p.D62N|chrXV:g.743096G>A/c.187G>A/p.A63T +YOR212W STE4 12851 ste4-G124D G124D amino_acid_mutation PMID:8164677 G124D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.743280G>A/c.371G>A/p.G124D +YOR212W STE4 12852 ste4-I176N I176N amino_acid_mutation PMID:1464310 I176N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.743436T>A/c.527T>A/p.I176N +YOR212W STE4 12853 ste4-K340R K340R amino_acid_mutation PMID:21685393 K340R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.743928A>G/c.1019A>G/p.K340R +YOR212W STE4 12854 ste4-K55E K55E amino_acid_mutation PMID:1464310 K55E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.743072A>G/c.163A>G/p.K55E +YOR212W STE4 12855 ste4-K59E K59E amino_acid_mutation PMID:1464310 K59E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.743084A>G/c.175A>G/p.K59E +YOR212W STE4 12856 ste4-N157H,S175P N157H,S175P amino_acid_mutation PMID:1464310 N157H|S175P False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.743378A>C/c.469A>C/p.N157H|chrXV:g.743432T>C/c.523T>C/p.S175P +YOR212W STE4 12857 ste4-Q52K,K55N Q52K,K55N amino_acid_mutation PMID:1464310 Q52K|K55N False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.743063C>A/c.154C>A/p.Q52K|chrXV:g.743074A>C/c.165A>C/p.K55N +YOR212W STE4 12858 ste4-Q52R,A56V Q52R,A56V amino_acid_mutation PMID:1464310 Q52R|A56V False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.743064A>G/c.155A>G/p.Q52R|chrXV:g.743076C>T/c.167C>T/p.A56V +YOR212W STE4 12859 ste4-T318A,T320A,T322A,S335A T318A,T320A,T322A,S335A amino_acid_mutation PMID:33975981 T318A|T320A|T322A|S335A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.743861A>G/c.952A>G/p.T318A|chrXV:g.743867A>G/c.958A>G/p.T320A|chrXV:g.743873A>G/c.964A>G/p.T322A|chrXV:g.743912T>G/c.1003T>G/p.S335A +YOR212W STE4 12860 ste4-V173G V173G amino_acid_mutation PMID:1464310 V173G False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.743427T>G/c.518T>G/p.V173G +YOR212W STE4 12861 ste4-W136G W136G amino_acid_mutation PMID:8164677 W136G False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.743315T>G/c.406T>G/p.W136G +YOR212W STE4 12862 ste4-W136G,S151C W136G,S151C amino_acid_mutation PMID:8164677 W136G|S151C False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.743315T>G/c.406T>G/p.W136G|chrXV:g.743360A>T/c.451A>T/p.S151C +YOR212W STE4 12863 ste4-W136R W136R amino_acid_mutation PMID:8164677 W136R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.743315T>A/c.406T>A/p.W136R +YOR212W STE4 12864 ste4-W136R,L138F W136R,L138F amino_acid_mutation PMID:8164677 W136R|L138F False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.743315T>A/c.406T>A/p.W136R|chrXV:g.743321C>T/c.412C>T/p.L138F +YOR217W RFC1 12874 rfc1-F582A F582A amino_acid_mutation PMID:35179493 F582A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.751044_751045delTTinsGC/c.1744_1745delTTinsGC/p.F582A +YOR217W RFC1 12875 rfc1-W638G W638G amino_acid_mutation PMID:35179493 W638G False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.751212T>G/c.1912T>G/p.W638G +YOR224C RPB8 12879 rpb8-L122D L122D amino_acid_mutation PMID:11486042 L122D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.760900_760902delTTAinsGAC/c.364_366delTTAinsGAC/p.L122D +YOR231W MKK1 12882 MKK1-S386P S386P amino_acid_mutation PMID:21143561 S386P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.773756T>C/c.1156T>C/p.S386P +YOR232W MGE1 12886 mge1-H167L H167L amino_acid_mutation PMID:27977164 H167L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.775072A>T/c.500A>T/p.H167L +YOR232W MGE1 12888 mge1-M155L M155L amino_acid_mutation PMID:23345595 M155L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.775035A>C/c.463A>C/p.M155L +YOR243C PUS7 12893 pus7-D256A D256A amino_acid_mutation PMID:35058356 D256A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.791492T>G/c.767A>C/p.D256A +YOR243C PUS7 12894 pus7-E71A E71A amino_acid_mutation PMID:35058356 E71A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.792030T>G/c.212A>C/p.E71A +YOR243C PUS7 12895 pus7-F307A F307A amino_acid_mutation PMID:35058356 F307A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.791322_791323delTTinsGC/c.919_920delTTinsGC/p.F307A +YOR243C PUS7 12896 pus7-F307Y F307Y amino_acid_mutation PMID:35058356 F307Y False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.791322A>T/c.920T>A/p.F307Y +YOR243C PUS7 12897 pus7-F67A F67A amino_acid_mutation PMID:35058356 F67A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.792042_792043delTTinsGC/c.199_200delTTinsGC/p.F67A +YOR243C PUS7 12898 pus7-H161A H161A amino_acid_mutation PMID:35058356 H161A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.791760_791761delCAinsGC/c.481_482delCAinsGC/p.H161A +YOR243C PUS7 12899 pus7-K61A K61A amino_acid_mutation PMID:35058356 K61A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.792060_792061delAAinsGC/c.181_182delAAinsGC/p.K61A +YOR243C PUS7 12900 pus7-N305A N305A amino_acid_mutation PMID:35058356 N305A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.791328_791329delAAinsGC/c.913_914delAAinsGC/p.N305A +YOR243C PUS7 12901 pus7-Q111P Q111P amino_acid_mutation PMID:31611676 Q111P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.791910T>G/c.332A>C/p.Q111P +YOR244W ESA1 12909 esa1-E65A E65A amino_acid_mutation PMID:15964809 E65A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.792724A>C/c.194A>C/p.E65A +YOR244W ESA1 12910 esa1-E65L E65L amino_acid_mutation PMID:15964809 E65L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.792723_792724delGAinsCT/c.193_194delGAinsCT/p.E65L +YOR244W ESA1 12911 esa1-L254P L254P amino_acid_mutation PMID:10082517,PMID:15353583,PMID:19822662,PMID:20952395,PMID:23962978,PMID:33253187 L254P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.793291T>C/c.761T>C/p.L254P +YOR244W ESA1 12913 esa1-L327S L327S amino_acid_mutation PMID:34014972 L327S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.793510T>C/c.980T>C/p.L327S +YOR244W ESA1 12914 esa1-R36A R36A amino_acid_mutation PMID:15964809 R36A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.792636_792637delCGinsGC/c.106_107delCGinsGC/p.R36A +YOR244W ESA1 12915 esa1-R36A, Y59A R36A, Y59A amino_acid_mutation PMID:15964809 R36A|Y59A False R36A,Y59A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.792636_792637delCGinsGC/c.106_107delCGinsGC/p.R36A|chrXV:g.792705_792706delTAinsGC/c.175_176delTAinsGC/p.Y59A +YOR244W ESA1 12917 esa1-Y56A Y56A amino_acid_mutation PMID:15964809 Y56A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.792696_792697delTAinsGC/c.166_167delTAinsGC/p.Y56A +YOR250C CLP1 12922 clp1-D161A D161A amino_acid_mutation PMID:18648070 D161A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.801826T>G/c.482A>C/p.D161A +YOR250C CLP1 12923 clp1-K136A,T137A K136A,T137A amino_acid_mutation PMID:18648070,PMID:34232857 K136A|T137A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.801901_801902delAAinsGC/c.406_407delAAinsGC/p.K136A|chrXV:g.801899T>C/c.409A>G/p.T137A +YOR251C TUM1 12925 tum1-C259S C259S amino_acid_mutation PMID:19151091 C259S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.802690A>T/c.775T>A/p.C259S +YOR262W GPN2 12956 gpn2-D82N D82N amino_acid_mutation PMID:31611676 D82N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.817535G>A/c.244G>A/p.D82N +YOR262W GPN2 12957 gpn2-E112K E112K amino_acid_mutation PMID:23324351 E112K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.817625G>A/c.334G>A/p.E112K +YOR270C VPH1 12968 vph1-F236C F236C amino_acid_mutation PMID:31611676 F236C False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.829868A>C/c.707T>G/p.F236C +YOR270C VPH1 12969 vph1-R735E R735E amino_acid_mutation PMID:11592980 R735E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.828370_828372delCGTinsGAG/c.2203_2205delCGTinsGAG/p.R735E +YOR270C VPH1 12970 vph1-R735K R735K amino_acid_mutation PMID:11592980 R735K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.828370_828372delCGTinsAAG/c.2203_2205delCGTinsAAG/p.R735K +YOR270C VPH1 12971 vph1-R735N R735N amino_acid_mutation PMID:11592980 R735N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.828371_828372delCGinsAA/c.2203_2204delCGinsAA/p.R735N +YOR270C VPH1 12972 vph1-R735Q R735Q amino_acid_mutation PMID:11592980,PMID:29791245 R735Q False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.828370_828371delGTinsAA/c.2204_2205delGTinsAA/p.R735Q +YOR270C VPH1 12973 vph1-R799A R799A amino_acid_mutation PMID:11592980 R799A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.828179_828180delCGinsGC/c.2395_2396delCGinsGC/p.R799A +YOR270C VPH1 12974 vph1-R799L R799L amino_acid_mutation PMID:11592980 R799L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.828179C>A/c.2396G>T/p.R799L +YOR272W YTM1 12979 ytm1-E80A E80A amino_acid_mutation PMID:20542003 E80A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.833051A>C/c.239A>C/p.E80A +YOR285W RDL1 12986 rdl1-C98S C98S amino_acid_mutation PMID:33922196 C98S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.849926T>A/c.292T>A/p.C98S +YOR286W RDL2 12987 rdl2-K108A K108A amino_acid_mutation PMID:34679660 K108A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.850601_850602delAAinsGC/c.322_323delAAinsGC/p.K108A +YOR286W RDL2 12988 rdl2-R111I R111I amino_acid_mutation PMID:34679660 R111I False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.850611G>T/c.332G>T/p.R111I +YOR290C SNF2 13010 snf2-D1093A D1093A amino_acid_mutation PMID:8871545 D1093A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.856981T>G/c.3278A>C/p.D1093A +YOR290C SNF2 13011 snf2-D894A,E895A D894A,E895A amino_acid_mutation PMID:8871545 D894A|E895A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.857578T>G/c.2681A>C/p.D894A|chrXV:g.857575T>G/c.2684A>C/p.E895A +YOR290C SNF2 13012 snf2-D894E,E895Q D894E,E895Q amino_acid_mutation PMID:8871545 D894E|E895Q False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.857577A>C/c.2682T>G/p.D894E|chrXV:g.857576C>G/c.2683G>C/p.E895Q +YOR290C SNF2 13013 snf2-G1166A G1166A amino_acid_mutation PMID:8871545 G1166A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.856762C>G/c.3497G>C/p.G1166A +YOR290C SNF2 13014 snf2-H1061A H1061A amino_acid_mutation PMID:8871545 H1061A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.857077_857078delCAinsGC/c.3181_3182delCAinsGC/p.H1061A +YOR290C SNF2 13015 snf2-K1088A K1088A amino_acid_mutation PMID:8871545 K1088A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.856996_856997delAAinsGC/c.3262_3263delAAinsGC/p.K1088A +YOR290C SNF2 13017 snf2-K798A K798A amino_acid_mutation PMID:8871545 K798A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.857866_857867delAAinsGC/c.2392_2393delAAinsGC/p.K798A +YOR290C SNF2 13018 snf2-P824A P824A amino_acid_mutation PMID:15988005,PMID:8871545 P824A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.857789G>C/c.2470C>G/p.P824A +YOR290C SNF2 13019 snf2-P932A P932A amino_acid_mutation PMID:15988005,PMID:8871545 P932A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.857465G>C/c.2794C>G/p.P932A +YOR290C SNF2 13020 snf2-R1164A R1164A amino_acid_mutation PMID:15988005,PMID:8871545 R1164A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.856768_856769delAGinsGC/c.3490_3491delAGinsGC/p.R1164A +YOR290C SNF2 13021 snf2-R1196K R1196K amino_acid_mutation PMID:15988005,PMID:8871545 R1196K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.856672C>T/c.3587G>A/p.R1196K +YOR290C SNF2 13022 snf2-R994A R994A amino_acid_mutation PMID:8871545 R994A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.857278_857279delCGinsGC/c.2980_2981delCGinsGC/p.R994A +YOR290C SNF2 13023 snf2-W1185A W1185A amino_acid_mutation PMID:8871545 W1185A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.856705_856706delTGinsGC/c.3553_3554delTGinsGC/p.W1185A +YOR290C SNF2 13024 snf2-W935A W935A amino_acid_mutation PMID:15988005,PMID:8871545 W935A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.857455_857456delTGinsGC/c.2803_2804delTGinsGC/p.W935A +YOR291W YPK9 13028 ypk9-D781N D781N amino_acid_mutation PMID:29505581 D781N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.863515G>A/c.2341G>A/p.D781N +YOR291W YPK9 13029 ypk9-P974R P974R amino_acid_mutation PMID:31611676 P974R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.864095C>G/c.2921C>G/p.P974R +YOR298C-A MBF1 13046 mbf1-D112A D112A amino_acid_mutation PMID:32729986 D112A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.877351T>G/c.335A>C/p.D112A +YOR298C-A MBF1 13047 mbf1-P148L P148L amino_acid_mutation PMID:32729986 P148L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.877243G>A/c.443C>T/p.P148L +YOR298C-A MBF1 13048 mbf1-R89K R89K amino_acid_mutation PMID:34916334 R89K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.877420C>T/c.266G>A/p.R89K +YOR304W ISW2 13049 isw2-K215R K215R amino_acid_mutation PMID:34313223 K215R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.885157A>G/c.644A>G/p.K215R +YOR311C DGK1 13054 dgk1-D177A D177A amino_acid_mutation PMID:18458076 D177A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.899399T>G/c.530A>C/p.D177A +YOR311C DGK1 13055 dgk1-G184A G184A amino_acid_mutation PMID:18458076 G184A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.899378C>G/c.551G>C/p.G184A +YOR311C DGK1 13056 dgk1-K77A K77A amino_acid_mutation PMID:18458076 K77A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.899699_899700delAAinsGC/c.229_230delAAinsGC/p.K77A +YOR311C DGK1 13057 dgk1-R76A R76A amino_acid_mutation PMID:18458076 R76A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.899702_899703delCGinsGC/c.226_227delCGinsGC/p.R76A +YOR316C COT1 13061 cot1-F245L F245L amino_acid_mutation PMID:31611676 F245L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.906823A>G/c.733T>C/p.F245L +YOR317W FAA1 13064 faa1-W139* W139* partial_amino_acid_deletion PMID:34362905 W139* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXV:g.909758G>A/c.416G>A/p.W139* +YOR322C LDB19 13072 ldb19-K486R K486R amino_acid_mutation PMID:35770973 K486R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.919606T>C/c.1457A>G/p.K486R +YOR326W MYO2 13081 myo2-D1297N D1297N amino_acid_mutation PMID:32916113 D1297N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.929609G>A/c.3889G>A/p.D1297N +YOR326W MYO2 13082 myo2-F1334A F1334A amino_acid_mutation PMID:31358968 F1334A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.929720_929721delTTinsGC/c.4000_4001delTTinsGC/p.F1334A +YOR326W MYO2 13083 myo2-K1444A K1444A amino_acid_mutation PMID:16437158 K1444A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.930050_930051delAAinsGC/c.4330_4331delAAinsGC/p.K1444A +YOR326W MYO2 13084 myo2-L1411R L1411R amino_acid_mutation PMID:16437158 L1411R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.929952T>G/c.4232T>G/p.L1411R +YOR326W MYO2 13085 myo2-L1411S L1411S amino_acid_mutation PMID:16437158 L1411S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.929951_929952delCTinsAG/c.4231_4232delCTinsAG/p.L1411S +YOR326W MYO2 13086 myo2-N1304D N1304D amino_acid_mutation PMID:35166010 N1304D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.929630A>G/c.3910A>G/p.N1304D +YOR326W MYO2 13087 myo2-Q1447R Q1447R amino_acid_mutation PMID:16437158 Q1447R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.930060A>G/c.4340A>G/p.Q1447R +YOR326W MYO2 13088 myo2-R1419A R1419A amino_acid_mutation PMID:33656555 R1419A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.929975_929976delAGinsGC/c.4255_4256delAGinsGC/p.R1419A +YOR326W MYO2 13089 myo2-R1419D R1419D amino_acid_mutation PMID:33656555,PMID:37160881 R1419D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.929975_929977delAGAinsGAC/c.4255_4257delAGAinsGAC/p.R1419D +YOR326W MYO2 13090 myo2-Y1415E Y1415E amino_acid_mutation PMID:16437158 Y1415E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.929963_929965delTACinsGAG/c.4243_4245delTACinsGAG/p.Y1415E +YOR326W MYO2 13091 myo2-Y1415R Y1415R amino_acid_mutation PMID:16437158 Y1415R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.929963_929964delTAinsCG/c.4243_4244delTAinsCG/p.Y1415R +YOR328W PDR10 13092 pdr10-K1561R K1561R amino_acid_mutation PMID:31611676 K1561R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.936484A>G/c.4682A>G/p.K1561R +YOR330C MIP1 13105 MIP1-R745H R745H amino_acid_mutation PMID:16368709,PMID:37470284 R745H False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.941152C>T/c.2234G>A/p.R745H +YOR330C MIP1 13106 mip1-A256T A256T amino_acid_mutation PMID:22114710 A256T False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.942620C>T/c.766G>A/p.A256T +YOR330C MIP1 13108 mip1-A692T A692T amino_acid_mutation PMID:17980715,PMID:37470284 A692T False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.941312C>T/c.2074G>A/p.A692T +YOR330C MIP1 13109 mip1-A692T,E900G A692T,E900G amino_acid_mutation PMID:17980715,PMID:37470284 A692T|E900G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.941312C>T/c.2074G>A/p.A692T|chrXV:g.940687T>C/c.2699A>G/p.E900G +YOR330C MIP1 13110 mip1-C261R C261R amino_acid_mutation PMID:20883824 C261R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.942605A>G/c.781T>C/p.C261R +YOR330C MIP1 13111 mip1-D941N D941N amino_acid_mutation PMID:32234506,PMID:37470284 D941N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.940565C>T/c.2821G>A/p.D941N +YOR330C MIP1 13112 mip1-D953N D953N amino_acid_mutation PMID:32234506,PMID:37470284 D953N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.940529C>T/c.2857G>A/p.D953N +YOR330C MIP1 13113 mip1-E900G E900G amino_acid_mutation PMID:17980715,PMID:37470284 E900G False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.940687T>C/c.2699A>G/p.E900G +YOR330C MIP1 13114 mip1-G259R G259R amino_acid_mutation PMID:20883824 G259R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.942611C>T/c.775G>A/p.G259R +YOR330C MIP1 13115 mip1-G651S G651S amino_acid_mutation PMID:17980715,PMID:34830106 G651S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.941435C>T/c.1951G>A/p.G651S +YOR330C MIP1 13116 mip1-G807R G807R amino_acid_mutation PMID:17980715,PMID:37470284 G807R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.940967C>G/c.2419G>C/p.G807R +YOR330C MIP1 13117 mip1-H734Y H734Y amino_acid_mutation PMID:17980715,PMID:37470284 H734Y False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.941186G>A/c.2200C>T/p.H734Y +YOR330C MIP1 13118 mip1-I942T I942T amino_acid_mutation PMID:32234506,PMID:37470284 I942T False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.940561A>G/c.2825T>C/p.I942T +YOR330C MIP1 13119 mip1-K948A K948A amino_acid_mutation PMID:32234506 K948A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.940543_940544delAAinsGC/c.2842_2843delAAinsGC/p.K948A +YOR330C MIP1 13120 mip1-K948N K948N amino_acid_mutation PMID:32234506,PMID:37470284 K948N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.940542T>G/c.2844A>C/p.K948N +YOR330C MIP1 13121 mip1-K948R K948R amino_acid_mutation PMID:32234506,PMID:37470284 K948R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.940543T>C/c.2843A>G/p.K948R +YOR330C MIP1 13122 mip1-L260R L260R amino_acid_mutation PMID:16368709,PMID:37470284 L260R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.942607A>C/c.779T>G/p.L260R +YOR330C MIP1 13123 mip1-P207L P207L amino_acid_mutation PMID:25462018 P207L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.942766G>A/c.620C>T/p.P207L +YOR330C MIP1 13124 mip1-Q264H Q264H amino_acid_mutation PMID:25340760 Q264H False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.942594T>A/c.792A>T/p.Q264H +YOR330C MIP1 13125 mip1-R265C R265C amino_acid_mutation PMID:26077851 R265C False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.942593G>A/c.793C>T/p.R265C +YOR330C MIP1 13126 mip1-R672* R672* partial_amino_acid_deletion PMID:26077851 R672* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXV:g.941371_941372delAGinsTA/c.2014_2015delAGinsTA/p.R672* +YOR330C MIP1 13127 mip1-R770E R770E amino_acid_mutation PMID:26077851 R770E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.941077_941078delAGinsGA/c.2308_2309delAGinsGA/p.R770E +YOR330C MIP1 13129 mip1-V863A V863A amino_acid_mutation PMID:26077851 V863A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.940798A>G/c.2588T>C/p.V863A +YOR330C MIP1 13130 mip1-V945R V945R amino_acid_mutation PMID:32234506,PMID:37470284 V945R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.940552_940553delGTinsCG/c.2833_2834delGTinsCG/p.V945R +YOR335C ALA1 13140 ala1-C719A C719A amino_acid_mutation PMID:34500470 C719A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.946954_946955delTGinsGC/c.2155_2156delTGinsGC/p.C719A +YOR335C ALA1 13141 ala1-F102del F102del amino_acid_insertion_and_mutation PMID:31705293 F102del False F102DEL amino_acid_insertion_and_mutation:multiple_aa amino_acid_insertion_and_mutation chrXV:g.948804_948806delinsAAGCTCGTC/c.304_306delinsGACGAGCTT/p.F102_F102delinsDEL +YOR335C ALA1 13142 ala1-G106R G106R amino_acid_mutation PMID:25904691 G106R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.948794C>G/c.316G>C/p.G106R +YOR335C ALA1 13143 ala1-G906D G906D amino_acid_mutation PMID:34500470 G906D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.946393C>T/c.2717G>A/p.G906D +YOR335C ALA1 13144 ala1-R330W R330W amino_acid_mutation PMID:30124830 R330W False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.948120_948122delCGCinsTGG/c.988_990delCGCinsTGG/p.R330W +YOR335C ALA1 13145 ala1-S623L S623L amino_acid_mutation PMID:30124830 S623L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.947242_947243delTCinsCT/c.1867_1868delTCinsCT/p.S623L +YOR335C ALA1 13146 ala1-V306M V306M amino_acid_mutation PMID:31705293 V306M False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.948192_948194delGTCinsATG/c.916_918delGTCinsATG/p.V306M +YOR341W RPA190 13151 RPA190-L1262P L1262P amino_acid_mutation PMID:31136569 L1262P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.964771T>C/c.3785T>C/p.L1262P +YOR341W RPA190 13152 RPA190-N863T N863T amino_acid_mutation PMID:31136569 N863T False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.963574A>C/c.2588A>C/p.N863T +YOR341W RPA190 13153 RPA190-S1259L S1259L amino_acid_mutation PMID:31136569 S1259L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.964762C>T/c.3776C>T/p.S1259L +YOR341W RPA190 13155 rpa190-G728D G728D amino_acid_mutation PMID:23962978 G728D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.963169G>A/c.2183G>A/p.G728D +YOR346W REV1 13161 rev1-G193R G193R amino_acid_mutation PMID:23240687 G193R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.982404G>A/c.577G>A/p.G193R +YOR346W REV1 13162 rev1-L821A L821A amino_acid_mutation PMID:20159559 L821A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.984288_984289delCTinsGC/c.2461_2462delCTinsGC/p.L821A +YOR346W REV1 13164 rev1-R518A R518A amino_acid_mutation PMID:32998951 R518A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.983379_983380delAGinsGC/c.1552_1553delAGinsGC/p.R518A +YOR347C PYK2 13165 pyk2-R430G R430G amino_acid_mutation PMID:31611676 R430G False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.985175T>C/c.1288A>G/p.R430G +YOR360C PDE2 13173 pde2-A399V A399V amino_acid_mutation PMID:29429618 A399V False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1013626G>A/c.1196C>T/p.A399V +YOR360C PDE2 13174 pde2-A415V A415V amino_acid_mutation PMID:29429618 A415V False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1013578G>A/c.1244C>T/p.A415V +YOR360C PDE2 13175 pde2-E421A E421A amino_acid_mutation PMID:29429618 E421A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1013560T>G/c.1262A>C/p.E421A +YOR360C PDE2 13176 pde2-L380* L380* partial_amino_acid_deletion PMID:29429618 L380* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXV:g.1013928_1013929delCTinsTA/c.1138_1139delCTinsTA/p.L380* +YOR360C PDE2 13177 pde2-L456* L456* partial_amino_acid_deletion PMID:29429618 L456* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXV:g.1013699_1013701delCTCinsTAA/c.1366_1368delCTCinsTAA/p.L456* +YOR360C PDE2 13178 pde2-Y446* Y446* partial_amino_acid_deletion PMID:29429618 Y446* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXV:g.1013484G>T/c.1338C>A/p.Y446* +YOR368W RAD17 13185 rad17-I137S I137S amino_acid_mutation PMID:31611676 I137S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1027252T>G/c.410T>G/p.I137S +YOR369C RPS12 13186 rps12-G77D G77D amino_acid_mutation PMID:35384721 G77D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1028396C>T/c.230G>A/p.G77D +YOR370C MRS6 13191 mrs6-G53E G53E amino_acid_mutation PMID:19776008 G53E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1030837C>T/c.158G>A/p.G53E +YOR371C GPB1 13192 gpb1-G867R G867R amino_acid_mutation PMID:31611676 G867R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1031584C>T/c.2599G>A/p.G867R +YOR371C GPB1 13193 gpb1-P601S P601S amino_acid_mutation PMID:29429618 P601S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1032382G>A/c.1801C>T/p.P601S +YOR371C GPB1 13194 gpb1-Y39* Y39* partial_amino_acid_deletion PMID:29429618 Y39* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXV:g.1034066G>T/c.117C>A/p.Y39* +YOR372C NDD1 13203 ndd1-S47A S47A amino_acid_mutation PMID:34818519 S47A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1036332_1036333delAGinsGC/c.139_140delAGinsGC/p.S47A +YOR372C NDD1 13204 ndd1-S85A S85A amino_acid_mutation PMID:17122856 S85A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1036219A>C/c.253T>G/p.S85A +YOR372C NDD1 13205 ndd1-T57A T57A amino_acid_mutation PMID:34818519 T57A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1036303T>C/c.169A>G/p.T57A +YOR373W NUD1 13217 nud1-A308T A308T amino_acid_mutation PMID:35011608 A308T False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1037755G>A/c.922G>A/p.A308T +YOR373W NUD1 13219 nud1-G585E G585E amino_acid_mutation PMID:15313466,PMID:18058101 G585E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1038587G>A/c.1754G>A/p.G585E +YOR373W NUD1 13220 nud1-S53A,S63A,T78A S53A,S63A,T78A amino_acid_mutation PMID:23579499,PMID:35011608 S53A|S63A|T78A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1036990T>G/c.157T>G/p.S53A|chrXV:g.1037020T>G/c.187T>G/p.S63A|chrXV:g.1037065A>G/c.232A>G/p.T78A +YOR373W NUD1 13221 nud1-T78A T78A amino_acid_mutation PMID:23579499,PMID:35011608 T78A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1037065A>G/c.232A>G/p.T78A +YOR374W ALD4 13222 ald4-C324A C324A amino_acid_mutation PMID:32295831 C324A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1040809_1040810delTGinsGC/c.970_971delTGinsGC/p.C324A +YOR374W ALD4 13223 ald4-E290K E290K amino_acid_mutation PMID:32295831 E290K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1040707G>A/c.868G>A/p.E290K +YOR374W ALD4 13224 ald4-N192D N192D amino_acid_mutation PMID:32295831 N192D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1040413A>G/c.574A>G/p.N192D +YOR374W ALD4 13225 ald4-S269A S269A amino_acid_mutation PMID:32295831 S269A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1040644T>G/c.805T>G/p.S269A +YOR377W ATF1 13227 atf1-D195N D195N amino_acid_mutation PMID:28160314 D195N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1046808G>A/c.583G>A/p.D195N +YOR377W ATF1 13228 atf1-H191A H191A amino_acid_mutation PMID:28160314 H191A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1046796_1046797delCAinsGC/c.571_572delCAinsGC/p.H191A +YOR383C FIT3 13230 fit3-H32Q H32Q amino_acid_mutation PMID:35219341 H32Q False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1060960A>T/c.96T>A/p.H32Q +YPL002C SNF8 13236 SNF8-E148* E148* partial_amino_acid_deletion PMID:30154260 E148* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXVI:g.553887C>A/c.442G>T/p.E148* +YPL005W AEP3 13237 aep3-Y305N Y305N amino_acid_mutation PMID:19843529 Y305N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.549398T>A/c.913T>A/p.Y305N +YPL006W NCR1 13238 NCR1-Y718D Y718D amino_acid_mutation PMID:14970192 Y718D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.546782T>G/c.2152T>G/p.Y718D +YPL006W NCR1 13239 ncr1-G998R G998R amino_acid_mutation PMID:31611676 G998R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.547622G>A/c.2992G>A/p.G998R +YPL008W CHL1 13242 chl1-K48R K48R amino_acid_mutation PMID:33782138 K48R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.539527A>G/c.143A>G/p.K48R +YPL008W CHL1 13243 chl1-Q20A Q20A amino_acid_mutation PMID:33782138 Q20A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.539442_539443delCAinsGC/c.58_59delCAinsGC/p.Q20A +YPL009C RQC2 13244 rqc2-D98Y D98Y amino_acid_mutation PMID:32934225 D98Y False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.538645C>A/c.292G>T/p.D98Y +YPL009C RQC2 13245 rqc2-K534G K534G amino_acid_mutation PMID:32934225 K534G False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.537336_537337delAAinsGG/c.1600_1601delAAinsGG/p.K534G +YPL009C RQC2 13246 rqc2-R88S R88S amino_acid_mutation PMID:32934225 R88S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.538673_538675delCGGinsAGC/c.262_264delCGGinsAGC/p.R88S +YPL014W CIP1 13255 cip1-R337K R337K amino_acid_mutation PMID:35283819 R337K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.528556G>A/c.1010G>A/p.R337K +YPL014W CIP1 13256 cip1-T135A,T156A,S237A,T319A,T321A,S345A T135A,T156A,S237A,T319A,T321A,S345A amino_acid_mutation PMID:35653562 T135A|T156A|S237A|T319A|T321A|S345A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.527949A>G/c.403A>G/p.T135A|chrXVI:g.528012A>G/c.466A>G/p.T156A|chrXVI:g.528255T>G/c.709T>G/p.S237A|chrXVI:g.528501A>G/c.955A>G/p.T319A|chrXVI:g.528507A>G/c.961A>G/p.T321A|chrXVI:g.528579T>G/c.1033T>G/p.S345A +YPL014W CIP1 13257 cip1-T65A,T69A,T73A T65A,T69A,T73A amino_acid_mutation PMID:35653562 T65A|T69A|T73A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.527739A>G/c.193A>G/p.T65A|chrXVI:g.527635A>G/c.205A>G/p.T69A|chrXVI:g.527763A>G/c.217A>G/p.T73A +YPL014W CIP1 13258 cip1-T65A,T69A,T73A,T135A,T156A,S237A,T319A,T321A,S345A T65A,T69A,T73A,T135A,T156A,S237A,T319A,T321A,S345A amino_acid_mutation PMID:35653562 T65A|T69A|T73A|T135A|T156A|S237A|T319A|T321A|S345A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.527739A>G/c.193A>G/p.T65A|chrXVI:g.527635A>G/c.205A>G/p.T69A|chrXVI:g.527763A>G/c.217A>G/p.T73A|chrXVI:g.527949A>G/c.403A>G/p.T135A|chrXVI:g.528012A>G/c.466A>G/p.T156A|chrXVI:g.528255T>G/c.709T>G/p.S237A|chrXVI:g.528501A>G/c.955A>G/p.T319A|chrXVI:g.528507A>G/c.961A>G/p.T321A|chrXVI:g.528579T>G/c.1033T>G/p.S345A +YPL015C HST2 13260 hst2-L102F L102F amino_acid_mutation PMID:32303542 L102F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.526578C>A/c.306G>T/p.L102F +YPL016W SWI1 13267 swi1-A1270G A1270G amino_acid_mutation PMID:31611676 A1270G False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.524822C>G/c.3809C>G/p.A1270G +YPL017C IRC15 13268 irc15-L73F L73F amino_acid_mutation PMID:35283819 L73F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.520017G>A/c.217C>T/p.L73F +YPL019C VTC3 13275 vtc3-K698E K698E amino_acid_mutation PMID:37066886 K698E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.514927T>C/c.2092A>G/p.K698E +YPL019C VTC3 13276 vtc3-L765D L765D amino_acid_mutation PMID:37066886 L765D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.514725_514726delCTinsGA/c.2293_2294delCTinsGA/p.L765D +YPL019C VTC3 13277 vtc3-L774D L774D amino_acid_mutation PMID:37066886 L774D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.514697_514699delTTGinsGAC/c.2320_2322delTTGinsGAC/p.L774D +YPL019C VTC3 13278 vtc3-R223E R223E amino_acid_mutation PMID:37066886 R223E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.516351_516352delAGinsGA/c.667_668delAGinsGA/p.R223E +YPL019C VTC3 13279 vtc3-R226E R226E amino_acid_mutation PMID:37066886 R226E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.516342_516343delAGinsGA/c.676_677delAGinsGA/p.R226E +YPL019C VTC3 13280 vtc3-R705E R705E amino_acid_mutation PMID:37066886 R705E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.515152_515153delAGinsGA/c.2113_2114delAGinsGA/p.R705E +YPL019C VTC3 13281 vtc3-V699D V699D amino_acid_mutation PMID:37066886 V699D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.514923A>T/c.2096T>A/p.V699D +YPL020C ULP1 13286 ulp1-A418P A418P amino_acid_mutation PMID:36870416 A418P False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.512927C>G/c.1252G>C/p.A418P +YPL020C ULP1 13287 ulp1-I615N I615N amino_acid_mutation PMID:15169880,PMID:36720466 I615N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.512335A>T/c.1844T>A/p.I615N +YPL020C ULP1 13288 ulp1-K352E K352E amino_acid_mutation PMID:34787675 K352E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.513125T>C/c.1054A>G/p.K352E +YPL020C ULP1 13289 ulp1-K352E,Y583H K352E,Y583H amino_acid_mutation PMID:34787675 K352E|Y583H False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.513125T>C/c.1054A>G/p.K352E|chrXVI:g.512562A>G/c.1747T>C/p.Y583H +YPL020C ULP1 13291 ulp1-S513P S513P amino_acid_mutation PMID:36870416 S513P False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.512642A>G/c.1537T>C/p.S513P +YPL022W RAD1 13303 rad1-R218A R218A amino_acid_mutation PMID:29660012 R218A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.507348_507349delAGinsGC/c.652_653delAGinsGC/p.R218A +YPL024W RMI1 13306 rmi1-R237W R237W amino_acid_mutation PMID:32772095 R237W False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.504225A>T/c.709A>T/p.R237W +YPL026C SKS1 13308 sks1-K39R K39R amino_acid_mutation PMID:18417610 K39R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.502068T>C/c.116A>G/p.K39R +YPL029W SUV3 13311 suv3-V272L V272L amino_acid_mutation PMID:32449921 V272L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.496319G>C/c.814G>C/p.V272L +YPL031C PHO85 13313 pho85-C124R C124R amino_acid_mutation PMID:7565699 C124R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492566A>G/c.370T>C/p.C124R +YPL031C PHO85 13314 pho85-D133N D133N amino_acid_mutation PMID:7565699 D133N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492539C>T/c.397G>A/p.D133N +YPL031C PHO85 13315 pho85-D151N D151N amino_acid_mutation PMID:7565699 D151N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492485C>T/c.451G>A/p.D151N +YPL031C PHO85 13316 pho85-D178G D178G amino_acid_mutation PMID:7565699 D178G False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492403T>C/c.533A>G/p.D178G +YPL031C PHO85 13317 pho85-D191G D191G amino_acid_mutation PMID:7565699 D191G False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492364T>C/c.572A>G/p.D191G +YPL031C PHO85 13318 pho85-D214K D214K amino_acid_mutation PMID:7565699 D214K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492294_492296delGACinsAAG/c.640_642delGACinsAAG/p.D214K +YPL031C PHO85 13319 pho85-D41G D41G amino_acid_mutation PMID:7565699 D41G False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492814T>C/c.122A>G/p.D41G +YPL031C PHO85 13320 pho85-E11R E11R amino_acid_mutation PMID:7565699 E11R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492904_492905delGAinsAG/c.31_32delGAinsAG/p.E11R +YPL031C PHO85 13321 pho85-E168K E168K amino_acid_mutation PMID:7565699 E168K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492434C>T/c.502G>A/p.E168K +YPL031C PHO85 13322 pho85-E53R E53R amino_acid_mutation PMID:7565699 E53R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492778_492779delGAinsAG/c.157_158delGAinsAG/p.E53R +YPL031C PHO85 13323 pho85-E59R E59R amino_acid_mutation PMID:7565699 E59R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492760_492761delGAinsAG/c.175_176delGAinsAG/p.E59R +YPL031C PHO85 13324 pho85-E63L E63L amino_acid_mutation PMID:7565699 E63L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492748_492749delGAinsCT/c.187_188delGAinsCT/p.E63L +YPL031C PHO85 13325 pho85-E75K E75K amino_acid_mutation PMID:7565699 E75K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492713C>T/c.223G>A/p.E75K +YPL031C PHO85 13326 pho85-G14R G14R amino_acid_mutation PMID:7565699 G14R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492896C>G/c.40G>C/p.G14R +YPL031C PHO85 13327 pho85-G16D G16D amino_acid_mutation PMID:7565699 G16D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492889C>T/c.47G>A/p.G16D +YPL031C PHO85 13328 pho85-G196R G196R amino_acid_mutation PMID:7565699 G196R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492488C>G/c.586G>C/p.G196R +YPL031C PHO85 13329 pho85-G24R G24R amino_acid_mutation PMID:7565699 G24R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492866C>T/c.70G>A/p.G24R +YPL031C PHO85 13330 pho85-K128E K128E amino_acid_mutation PMID:7565699 K128E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492554T>C/c.382A>G/p.K128E +YPL031C PHO85 13331 pho85-K12E K12E amino_acid_mutation PMID:7565699 K12E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492902T>C/c.34A>G/p.K12E +YPL031C PHO85 13332 pho85-K148E K148E amino_acid_mutation PMID:7565699 K148E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492494T>C/c.442A>G/p.K148E +YPL031C PHO85 13333 pho85-K241D K241D amino_acid_mutation PMID:7565699 K241D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492213_492215delAAAinsGAC/c.721_723delAAAinsGAC/p.K241D +YPL031C PHO85 13334 pho85-K36D K36D amino_acid_mutation PMID:7565699 K36D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492828_492830delAAAinsGAC/c.106_108delAAAinsGAC/p.K36D +YPL031C PHO85 13335 pho85-K61E K61E amino_acid_mutation PMID:7565699 K61E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492755T>C/c.181A>G/p.K61E +YPL031C PHO85 13336 pho85-K90E K90E amino_acid_mutation PMID:7565699 K90E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492668T>C/c.268A>G/p.K90E +YPL031C PHO85 13337 pho85-K91E K91E amino_acid_mutation PMID:7565699 K91E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492665T>C/c.271A>G/p.K91E +YPL031C PHO85 13338 pho85-N15D N15D amino_acid_mutation PMID:7565699 N15D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492893T>C/c.43A>G/p.N15D +YPL031C PHO85 13339 pho85-N163R N163R amino_acid_mutation PMID:7565699 N163R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492447_492448delACinsGG/c.488_489delACinsGG/p.N163R +YPL031C PHO85 13340 pho85-N243K N243K amino_acid_mutation PMID:7565699 N243K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492207G>C/c.729C>G/p.N243K +YPL031C PHO85 13341 pho85-P161S P161S amino_acid_mutation PMID:7565699 P161S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492455G>A/c.481C>T/p.P161S +YPL031C PHO85 13342 pho85-P250R P250R amino_acid_mutation PMID:7565699 P250R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492187G>C/c.749C>G/p.P250R +YPL031C PHO85 13343 pho85-Q247P Q247P amino_acid_mutation PMID:7565699 Q247P False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492196T>G/c.740A>C/p.Q247P +YPL031C PHO85 13344 pho85-R132H R132H amino_acid_mutation PMID:7565699 R132H False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492541C>T/c.395G>A/p.R132H +YPL031C PHO85 13345 pho85-R156G R156G amino_acid_mutation PMID:7565699 R156G False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492470G>C/c.466C>G/p.R156G +YPL031C PHO85 13346 pho85-S166A S166A amino_acid_mutation PMID:7565699 S166A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492440A>C/c.496T>G/p.S166A +YPL031C PHO85 13347 pho85-S166D S166D amino_acid_mutation PMID:7565699 S166D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492438_492440delTCAinsGAC/c.496_498delTCAinsGAC/p.S166D +YPL031C PHO85 13348 pho85-S166E S166E amino_acid_mutation PMID:7565699 S166E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492439_492440delTCinsGA/c.496_497delTCinsGA/p.S166E +YPL031C PHO85 13349 pho85-S167H S167H amino_acid_mutation PMID:7565699 S167H False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492436_492437delAGinsCA/c.499_500delAGinsCA/p.S167H +YPL031C PHO85 13350 pho85-T164A T164A amino_acid_mutation PMID:7565699 T164A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492446T>C/c.490A>G/p.T164A +YPL031C PHO85 13351 pho85-Y18A Y18A amino_acid_mutation PMID:7565699 Y18A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492883_492884delTAinsGC/c.52_53delTAinsGC/p.Y18A +YPL031C PHO85 13352 pho85-Y18F Y18F amino_acid_mutation PMID:7565699 Y18F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.492883T>A/c.53A>T/p.Y18F +YPL057C SUR1 13362 sur1-N224Q N224Q amino_acid_mutation PMID:35713525 N224Q False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.452386_452388delAACinsCAA/c.670_672delAACinsCAA/p.N224Q +YPL064C CWC27 13367 cwc27-D87E D87E amino_acid_mutation PMID:31611676 D87E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.429356A>C/c.261T>G/p.D87E +YPL065W VPS28 13368 vps28-L40D,Y44D L40D,Y44D amino_acid_mutation PMID:16615894 L40D|Y44D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.428015_428016delCTinsGA/c.118_119delCTinsGA/p.L40D|chrXVI:g.428056T>G/c.130T>G/p.Y44D +YPL082C MOT1 13385 mot1-K101R,K109R K101R,K109R amino_acid_mutation PMID:19139279 K101R|K109R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.403782T>C/c.302A>G/p.K101R|chrXVI:g.403758T>C/c.326A>G/p.K109R +YPL085W SEC16 13396 sec16-L1089P L1089P amino_acid_mutation PMID:22675024,PMID:31851588 L1089P False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.390332T>C/c.3266T>C/p.L1089P +YPL091W GLR1 13405 glr1-M17L M17L amino_acid_mutation PMID:15641941 M17L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.375550A>C/c.49A>C/p.M17L +YPL093W NOG1 13414 nog1-D220A D220A amino_acid_mutation PMID:17443350 D220A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.371636A>C/c.659A>C/p.D220A +YPL093W NOG1 13415 nog1-D226A D226A amino_acid_mutation PMID:17443350 D226A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.371654A>C/c.677A>C/p.D226A +YPL093W NOG1 13416 nog1-F199S F199S amino_acid_mutation PMID:17443350 F199S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.371573T>C/c.596T>C/p.F199S +YPL093W NOG1 13417 nog1-G179A G179A amino_acid_mutation PMID:17443350 G179A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.371513G>C/c.536G>C/p.G179A +YPL093W NOG1 13418 nog1-I224Q I224Q amino_acid_mutation PMID:17443350 I224Q False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.371647_371649delATCinsCAA/c.670_672delATCinsCAA/p.I224Q +YPL093W NOG1 13419 nog1-P176V P176V amino_acid_mutation PMID:17443350 P176V False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.371503_371504delCCinsGT/c.526_527delCCinsGT/p.P176V +YPL093W NOG1 13420 nog1-S181N S181N amino_acid_mutation PMID:17443350 S181N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.371518_371519delTCinsAA/c.541_542delTCinsAA/p.S181N +YPL093W NOG1 13421 nog1-T200A T200A amino_acid_mutation PMID:17443350 T200A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.371575A>G/c.598A>G/p.T200A +YPL093W NOG1 13422 nog1-T201A T201A amino_acid_mutation PMID:17443350 T201A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.371482A>G/c.601A>G/p.T201A +YPL096W PNG1 13431 png1-H218Y H218Y amino_acid_mutation PMID:16401726 H218Y False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.367578C>T/c.652C>T/p.H218Y +YPL104W MSD1 13435 msd1-E259K E259K amino_acid_mutation PMID:35820270 E259K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.356474G>A/c.775G>A/p.E259K +YPL104W MSD1 13436 msd1-Q137V Q137V amino_acid_mutation PMID:35820270 Q137V False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.356108_356109delCAinsGT/c.409_410delCAinsGT/p.Q137V +YPL106C SSE1 13437 SSE1-Q368P Q368P amino_acid_mutation PMID:17923091 Q368P False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.351173T>G/c.1103A>C/p.Q368P +YPL106C SSE1 13438 SSE1-S487V S487V amino_acid_mutation PMID:17923091 S487V False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.350816_350817delTCinsGT/c.1459_1460delTCinsGT/p.S487V +YPL106C SSE1 13440 sse1-G233D G233D amino_acid_mutation PMID:32966159 G233D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.351578C>T/c.698G>A/p.G233D +YPL106C SSE1 13441 sse1-G616D G616D amino_acid_mutation PMID:23797105 G616D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.350429C>T/c.1847G>A/p.G616D +YPL106C SSE1 13442 sse1-K69Q K69Q amino_acid_mutation PMID:32966159 K69Q False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.352144T>G/c.205A>C/p.K69Q +YPL109C CQD1 13445 cqd1-D412N D412N amino_acid_mutation PMID:34362905 D412N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.346156C>T/c.1234G>A/p.D412N +YPL109C CQD1 13446 cqd1-D477N D477N amino_acid_mutation PMID:34362905 D477N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.346043C>T/c.1429G>A/p.D477N +YPL109C CQD1 13447 cqd1-E330A E330A amino_acid_mutation PMID:37073556 E330A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.346401T>G/c.989A>C/p.E330A +YPL109C CQD1 13448 cqd1-G241A G241A amino_acid_mutation PMID:34362905 G241A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.346668C>G/c.722G>C/p.G241A +YPL109C CQD1 13449 cqd1-K178H K178H amino_acid_mutation PMID:34362905 K178H False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.346856_346858delAAAinsCAT/c.532_534delAAAinsCAT/p.K178H +YPL109C CQD1 13450 cqd1-K275R K275R amino_acid_mutation PMID:34362905 K275R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.346566T>C/c.824A>G/p.K275R +YPL109C CQD1 13451 cqd1-Q181A Q181A amino_acid_mutation PMID:34362905 Q181A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.346848_346849delCAinsGC/c.541_542delCAinsGC/p.Q181A +YPL109C CQD1 13452 cqd1-S242A S242A amino_acid_mutation PMID:34362905 S242A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.346666A>C/c.724T>G/p.S242A +YPL109C CQD1 13453 cqd1-W301* W301* partial_amino_acid_deletion PMID:34362905 W301* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXVI:g.346488C>T/c.902G>A/p.W301* +YPL115C BEM3 13456 bem3-R950G R950G amino_acid_mutation PMID:17914457 R950G False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.332639T>C/c.2848A>G/p.R950G +YPL117C IDI1 13462 idi1-W256C W256C amino_acid_mutation PMID:29712558 W256C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.327963C>A/c.768G>T/p.W256C +YPL117C IDI1 13463 idi1-Y195F Y195F amino_acid_mutation PMID:29712558 Y195F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.328147T>A/c.584A>T/p.Y195F +YPL121C MEI5 13468 mei5-N72S N72S amino_acid_mutation PMID:31611676 N72S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.321416T>C/c.215A>G/p.N72S +YPL122C TFB2 13471 tfb2-D439A,E447A,R450A D439A,E447A,R450A amino_acid_mutation PMID:36041630 D439A|E447A|R450A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.319452T>G/c.1316A>C/p.D439A|chrXVI:g.319428T>G/c.1340A>C/p.E447A|chrXVI:g.319419_319420delAGinsGC/c.1348_1349delAGinsGC/p.R450A +YPL122C TFB2 13472 tfb2-E342F E342F amino_acid_mutation PMID:36041630 E342F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.319742_319744delGAAinsTTT/c.1024_1026delGAAinsTTT/p.E342F +YPL122C TFB2 13473 tfb2-E342R E342R amino_acid_mutation PMID:36041630 E342R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.319743_319744delGAinsAG/c.1024_1025delGAinsAG/p.E342R +YPL122C TFB2 13474 tfb2-E342R,K346E E342R,K346E amino_acid_mutation PMID:36041630 E342R|K346E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.319743_319744delGAinsAG/c.1024_1025delGAinsAG/p.E342R|chrXVI:g.319732T>C/c.1036A>G/p.K346E +YPL122C TFB2 13475 tfb2-E463D E463D amino_acid_mutation PMID:31611676 E463D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.319379C>G/c.1389G>C/p.E463D +YPL122C TFB2 13476 tfb2-I347A,Y348A,S349A,Y350A I347A,Y348A,S349A,Y350A amino_acid_mutation PMID:36041630 I347A|Y348A|S349A|Y350A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.319728_319729delATinsGC/c.1039_1040delATinsGC/p.I347A|chrXVI:g.319725_319726delTAinsGC/c.1042_1043delTAinsGC/p.Y348A|chrXVI:g.319723A>C/c.1045T>G/p.S349A|chrXVI:g.319719_319720delTAinsGC/c.1048_1049delTAinsGC/p.Y350A +YPL122C TFB2 13478 tfb2-L360A,S361A,L362A,F363A L360A,S361A,L362A,F363A amino_acid_mutation PMID:36041630 L360A|S361A|L362A|F363A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.319689_319690delTTinsGC/c.1078_1079delTTinsGC/p.L360A|chrXVI:g.319687A>C/c.1081T>G/p.S361A|chrXVI:g.319683_319684delCTinsGC/c.1084_1085delCTinsGC/p.L362A|chrXVI:g.319680_319681delTTinsGC/c.1087_1088delTTinsGC/p.F363A +YPL122C TFB2 13479 tfb2-R369A,F370A R369A,F370A amino_acid_mutation PMID:36041630 R369A|F370A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.319662_319663delAGinsGC/c.1105_1106delAGinsGC/p.R369A|chrXVI:g.319659_319660delTTinsGC/c.1108_1109delTTinsGC/p.F370A +YPL122C TFB2 13480 tfb2-Y399A,L400A Y399A,L400A amino_acid_mutation PMID:36041630 Y399A|L400A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.319572_319573delTAinsGC/c.1195_1196delTAinsGC/p.Y399A|chrXVI:g.319569_319570delCTinsGC/c.1198_1199delCTinsGC/p.L400A +YPL124W SPC29 13492 spc29-T240A T240A amino_acid_mutation PMID:19269975 T240A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.317472A>G/c.718A>G/p.T240A +YPL124W SPC29 13493 spc29-T240D T240D amino_acid_mutation PMID:19269975 T240D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.317472_317474delACGinsGAC/c.718_720delACGinsGAC/p.T240D +YPL125W KAP120 13495 kap120-D850G D850G amino_acid_mutation PMID:32303542 D850G False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.315936A>G/c.2549A>G/p.D850G +YPL125W KAP120 13496 kap120-L582S L582S amino_acid_mutation PMID:32303542 L582S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.315132T>C/c.1745T>C/p.L582S +YPL127C HHO1 13501 hho1-S141A S141A amino_acid_mutation PMID:31821952 S141A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.309183_309184delAGinsGC/c.421_422delAGinsGC/p.S141A +YPL127C HHO1 13502 hho1-S141E S141E amino_acid_mutation PMID:31821952 S141E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.309182_309184delAGTinsGAG/c.421_423delAGTinsGAG/p.S141E +YPL127C HHO1 13503 hho1-S173A S173A amino_acid_mutation PMID:31821952 S173A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.309115A>C/c.517T>G/p.S173A +YPL127C HHO1 13504 hho1-S173E S173E amino_acid_mutation PMID:31821952 S173E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.309114_309115delTCinsGA/c.517_518delTCinsGA/p.S173E +YPL127C HHO1 13505 hho1-S174A S174A amino_acid_mutation PMID:31821952 S174A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.309085A>C/c.520T>G/p.S174A +YPL127C HHO1 13506 hho1-S174E S174E amino_acid_mutation PMID:31821952 S174E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.309084_309085delTCinsGA/c.520_521delTCinsGA/p.S174E +YPL127C HHO1 13507 hho1-S65A S65A amino_acid_mutation PMID:31821952 S65A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.309411_309412delAGinsGC/c.193_194delAGinsGC/p.S65A +YPL127C HHO1 13508 hho1-S65E S65E amino_acid_mutation PMID:31821952 S65E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.309410_309412delAGTinsGAG/c.193_195delAGTinsGAG/p.S65E +YPL127C HHO1 13509 hho1-T10A T10A amino_acid_mutation PMID:31821952 T10A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.309577T>C/c.28A>G/p.T10A +YPL127C HHO1 13510 hho1-T10E T10E amino_acid_mutation PMID:31821952 T10E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.309575_309577delACCinsGAG/c.28_30delACCinsGAG/p.T10E +YPL129W TAF14 13521 taf14-K149D,R150D,R151D,K161D,K163D,R164D,K166D K149D,R150D,R151D,K161D,K163D,R164D,K166D amino_acid_mutation PMID:35676274 K149D|R150D|R151D|K161D|K163D|R164D|K166D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.305847_305849delAAAinsGAC/c.445_447delAAAinsGAC/p.K149D|chrXVI:g.305850_305852delAGAinsGAC/c.448_450delAGAinsGAC/p.R150D|chrXVI:g.305853_305855delAGGinsGAC/c.451_453delAGGinsGAC/p.R151D|chrXVI:g.305883_305885delAAGinsGAC/c.481_483delAAGinsGAC/p.K161D|chrXVI:g.305889_305891delAAGinsGAC/c.487_489delAAGinsGAC/p.K163D|chrXVI:g.305892_305894delAGAinsGAC/c.490_492delAGAinsGAC/p.R164D|chrXVI:g.305898_305900delAAGinsGAC/c.496_498delAAGinsGAC/p.K166D +YPL129W TAF14 13522 taf14-K149E,R150E,R151E K149E,R150E,R151E amino_acid_mutation PMID:35676274 K149E|R150E|R151E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.305847A>G/c.445A>G/p.K149E|chrXVI:g.305850_305851delAGinsGA/c.448_449delAGinsGA/p.R150E|chrXVI:g.305853_305854delAGinsGA/c.451_452delAGinsGA/p.R151E +YPL129W TAF14 13523 taf14-K161E,K163E,R164E,K166E K161E,K163E,R164E,K166E amino_acid_mutation PMID:35676274 K161E|K163E|R164E|K166E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.305883A>G/c.481A>G/p.K161E|chrXVI:g.305889A>G/c.487A>G/p.K163E|chrXVI:g.305892_305893delAGinsGA/c.490_491delAGinsGA/p.R164E|chrXVI:g.305898A>G/c.496A>G/p.K166E +YPL129W TAF14 13524 taf14-W81A W81A amino_acid_mutation PMID:32460824,PMID:35676274 W81A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.305643_305644delTGinsGC/c.241_242delTGinsGC/p.W81A +YPL131W RPL5 13534 rpl5-E257A E257A amino_acid_mutation PMID:10673025 E257A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.303890A>C/c.770A>C/p.E257A +YPL131W RPL5 13535 rpl5-E257C E257C amino_acid_mutation PMID:10673025 E257C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.303889_303891delGAAinsTGT/c.769_771delGAAinsTGT/p.E257C +YPL131W RPL5 13537 rpl5-E257G E257G amino_acid_mutation PMID:10673025 E257G False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.303890A>G/c.770A>G/p.E257G +YPL131W RPL5 13538 rpl5-E257V E257V amino_acid_mutation PMID:10673025 E257V False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.303890A>T/c.770A>T/p.E257V +YPL131W RPL5 13539 rpl5-E257W E257W amino_acid_mutation PMID:10673025 E257W False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.303889_303891delGAAinsTGG/c.769_771delGAAinsTGG/p.E257W +YPL131W RPL5 13542 rpl5-K27E K27E amino_acid_mutation PMID:17565370 K27E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.303199A>G/c.79A>G/p.K27E +YPL132W COX11 13545 cox11-C111A C111A amino_acid_mutation PMID:17430883 C111A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.302046_302047delTGinsGC/c.331_332delTGinsGC/p.C111A +YPL132W COX11 13546 cox11-C208A C208A amino_acid_mutation PMID:34919594 C208A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.302337_302338delTGinsGC/c.622_623delTGinsGC/p.C208A +YPL132W COX11 13547 cox11-C210A C210A amino_acid_mutation PMID:34919594 C210A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.302343_302344delTGinsGC/c.628_629delTGinsGC/p.C210A +YPL133C RDS2 13552 rds2-H251D H251D amino_acid_mutation PMID:21515583 H251D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.300478G>C/c.751C>G/p.H251D +YPL133C RDS2 13553 rds2-T169A T169A amino_acid_mutation PMID:21515583 T169A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.300724T>C/c.505A>G/p.T169A +YPL135W ISU1 13554 isu1-G60D G60D amino_acid_mutation PMID:14741370 G60D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.297731G>A/c.179G>A/p.G60D +YPL135W ISU1 13555 isu1-G97V G97V amino_acid_mutation PMID:29079705 G97V False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.297287G>T/c.290G>T/p.G97V +YPL135W ISU1 13556 isu1-M106I M106I amino_acid_mutation PMID:24433162 M106I False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.297870G>C/c.318G>C/p.M106I +YPL144W POC4 13576 poc4-S7I S7I amino_acid_mutation PMID:32303542 S7I False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.280499G>T/c.20G>T/p.S7I +YPL145C KES1 13577 kes1-A169C A169C amino_acid_mutation PMID:20008566 A169C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.279194_279195delGCinsTG/c.505_506delGCinsTG/p.A169C +YPL145C KES1 13578 kes1-D191C D191C amino_acid_mutation PMID:20008566 D191C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.279128_279129delGAinsTG/c.571_572delGAinsTG/p.D191C +YPL145C KES1 13580 kes1-E117A E117A amino_acid_mutation PMID:16136145 E117A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.279350T>G/c.350A>C/p.E117A +YPL145C KES1 13581 kes1-E261C E261C amino_acid_mutation PMID:20008566 E261C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.278917_278919delGAAinsTGT/c.781_783delGAAinsTGT/p.E261C +YPL145C KES1 13582 kes1-E284C E284C amino_acid_mutation PMID:20008566 E284C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.278848_278850delGAAinsTGT/c.850_852delGAAinsTGT/p.E284C +YPL145C KES1 13583 kes1-E306C E306C amino_acid_mutation PMID:35247338 E306C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.278782_278784delGAGinsTGT/c.916_918delGAGinsTGT/p.E306C +YPL145C KES1 13584 kes1-E341C E341C amino_acid_mutation PMID:35247338 E341C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.278677_278679delGAAinsTGT/c.1021_1023delGAAinsTGT/p.E341C +YPL145C KES1 13585 kes1-E373C E373C amino_acid_mutation PMID:35247338 E373C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.278581_278583delGAAinsTGT/c.1117_1119delGAAinsTGT/p.E373C +YPL145C KES1 13586 kes1-E412C E412C amino_acid_mutation PMID:20008566 E412C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.278464_278466delGAGinsTGT/c.1234_1236delGAGinsTGT/p.E412C +YPL145C KES1 13587 kes1-E428C E428C amino_acid_mutation PMID:35247338 E428C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.278416_278418delGAAinsTGT/c.1282_1284delGAAinsTGT/p.E428C +YPL145C KES1 13588 kes1-G241C G241C amino_acid_mutation PMID:20008566 G241C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.278979C>A/c.721G>T/p.G241C +YPL145C KES1 13589 kes1-H144C H144C amino_acid_mutation PMID:35247338 H144C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.279269_279270delCAinsTG/c.430_431delCAinsTG/p.H144C +YPL145C KES1 13590 kes1-K126C K126C amino_acid_mutation PMID:35247338 K126C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.279322_279324delAAAinsTGT/c.376_378delAAAinsTGT/p.K126C +YPL145C KES1 13591 kes1-N330C N330C amino_acid_mutation PMID:20008566 N330C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.278711_278712delAAinsTG/c.988_989delAAinsTG/p.N330C +YPL145C KES1 13592 kes1-N63C N63C amino_acid_mutation PMID:35247338 N63C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.279768_279769delAAinsTG/c.187_188delAAinsTG/p.N63C +YPL145C KES1 13593 kes1-S174C S174C amino_acid_mutation PMID:20008566 S174C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.279179G>C/c.521C>G/p.S174C +YPL145C KES1 13594 kes1-S389C S389C amino_acid_mutation PMID:35247338 S389C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.278534G>C/c.1166C>G/p.S389C +YPL145C KES1 13595 kes1-S76C S76C amino_acid_mutation PMID:35247338 S76C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.279472_279473delCAinsGT/c.227_228delCAinsGT/p.S76C +YPL145C KES1 13596 kes1-S8C S8C amino_acid_mutation PMID:20008566 S8C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.279677G>C/c.23C>G/p.S8C +YPL145C KES1 13597 kes1-Y97F Y97F amino_acid_mutation PMID:16136145 Y97F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.279410T>A/c.290A>T/p.Y97F +YPL149W ATG5 13601 atg5-E141D E141D amino_acid_mutation PMID:26812546 E141D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.271732A>C/c.423A>C/p.E141D +YPL149W ATG5 13602 atg5-K149R K149R amino_acid_mutation PMID:9759731 K149R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.271755A>G/c.446A>G/p.K149R +YPL153C RAD53 13614 rad53-A225S A225S amino_acid_mutation PMID:24815189 A225S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.263708C>A/c.673G>T/p.A225S +YPL153C RAD53 13615 rad53-D339A D339A amino_acid_mutation PMID:24815189,PMID:28648781 D339A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.263177T>G/c.1016A>C/p.D339A +YPL153C RAD53 13617 rad53-H88Y H88Y amino_acid_mutation PMID:26584331 H88Y False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.263931G>A/c.262C>T/p.H88Y +YPL153C RAD53 13618 rad53-K227A K227A amino_acid_mutation PMID:18302321,PMID:24302356,PMID:28648781,PMID:33086066 K227A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.263513_263514delAAinsGC/c.679_680delAAinsGC/p.K227A +YPL153C RAD53 13619 rad53-K227A,D339A K227A,D339A amino_acid_mutation PMID:34836487 K227A|D339A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.263513_263514delAAinsGC/c.679_680delAAinsGC/p.K227A|chrXVI:g.263177T>G/c.1016A>C/p.D339A +YPL153C RAD53 13620 rad53-R605A R605A amino_acid_mutation PMID:18302321 R605A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.262379_262380delAGinsGC/c.1813_1814delAGinsGC/p.R605A +YPL153C RAD53 13621 rad53-R70A R70A amino_acid_mutation PMID:18302321 R70A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.263984_263985delAGinsGC/c.208_209delAGinsGC/p.R70A +YPL153C RAD53 13622 rad53-R70A,R605A R70A,R605A amino_acid_mutation PMID:18302321 R70A|R605A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.263984_263985delAGinsGC/c.208_209delAGinsGC/p.R70A|chrXVI:g.262379_262380delAGinsGC/c.1813_1814delAGinsGC/p.R605A +YPL153C RAD53 13623 rad53-S175A S175A amino_acid_mutation PMID:34836487 S175A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.263670A>C/c.523T>G/p.S175A +YPL153C RAD53 13624 rad53-T354A T354A amino_acid_mutation PMID:24815189 T354A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.263133T>C/c.1060A>G/p.T354A +YPL155C KIP2 13627 kip2-G374A G374A amino_acid_mutation PMID:31490122,PMID:37093124 G374A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.258216C>G/c.1121G>C/p.G374A +YPL160W CDC60 13633 cdc60-D418R D418R amino_acid_mutation PMID:22424774 D418R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.248241_248242delGAinsCG/c.1252_1253delGAinsCG/p.D418R +YPL160W CDC60 13634 cdc60-M493R M493R amino_acid_mutation PMID:35149760 M493R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.248467T>G/c.1478T>G/p.M493R +YPL160W CDC60 13635 cdc60-R316T R316T amino_acid_mutation PMID:35149760 R316T False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.247936G>C/c.947G>C/p.R316T +YPL160W CDC60 13636 cdc60-S414F S414F amino_acid_mutation PMID:22424774 S414F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.248230C>T/c.1241C>T/p.S414F +YPL160W CDC60 13637 cdc60-V400D V400D amino_acid_mutation PMID:35149760 V400D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.248188T>A/c.1199T>A/p.V400D +YPL160W CDC60 13638 cdc60-V400F V400F amino_acid_mutation PMID:35149760 V400F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.248187G>T/c.1198G>T/p.V400F +YPL164C MLH3 13699 mlh3-C695L,F699W,A702P, S707T,V709R,P710H C695L,F699W,A702P, S707T,V709R,P710H amino_acid_mutation PMID:33871573 C695L|F699W|A702P|S707T|V709R|P710H False C695L,F699W,A702P,S707T,V709R,P710H amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.239414_239415delTGinsCT/c.2083_2084delTGinsCT/p.C695L|chrXVI:g.239401_239402delTCinsGG/c.2096_2097delTCinsGG/p.F699W|chrXVI:g.239394C>G/c.2104G>C/p.A702P|chrXVI:g.239379A>T/c.2119T>A/p.S707T|chrXVI:g.239372_239373delGTinsAG/c.2125_2126delGTinsAG/p.V709R|chrXVI:g.239369G>T/c.2129C>A/p.P710H +YPL164C MLH3 13700 mlh3-D500N D500N amino_acid_mutation PMID:33871573 D500N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.240000C>T/c.1498G>A/p.D500N +YPL164C MLH3 13701 mlh3-D523N D523N amino_acid_mutation PMID:18505871 D523N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.239931C>T/c.1567G>A/p.D523N +YPL164C MLH3 13702 mlh3-D523N,E529K D523N,E529K amino_acid_mutation PMID:18505871 D523N|E529K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.239931C>T/c.1567G>A/p.D523N|chrXVI:g.239913C>T/c.1585G>A/p.E529K +YPL164C MLH3 13703 mlh3-D678K D678K amino_acid_mutation PMID:33871573 D678K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.239464_239466delGATinsAAG/c.2032_2034delGATinsAAG/p.D678K +YPL164C MLH3 13704 mlh3-E529K E529K amino_acid_mutation PMID:18505871 E529K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.239913C>T/c.1585G>A/p.E529K +YPL164C MLH3 13705 mlh3-K17T,A20Q,S24D,R30K,Q34D K17T,A20Q,S24D,R30K,Q34D amino_acid_mutation PMID:33871573 K17T|A20Q|S24D|R30K|Q34D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.241448T>G/c.50A>C/p.K17T|chrXVI:g.241439_241440delGCinsCA/c.58_59delGCinsCA/p.A20Q|chrXVI:g.241426_241428delTCGinsGAC/c.70_72delTCGinsGAC/p.S24D|chrXVI:g.241409C>T/c.89G>A/p.R30K|chrXVI:g.241396_241398delCAAinsGAC/c.100_102delCAAinsGAC/p.Q34D +YPL164C MLH3 13706 mlh3-K502G K502G amino_acid_mutation PMID:33871573 K502G False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.239993_239994delAAinsGG/c.1504_1505delAAinsGG/p.K502G +YPL164C MLH3 13707 mlh3-R530K R530K amino_acid_mutation PMID:33871573 R530K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.239909C>T/c.1589G>A/p.R530K +YPL164C MLH3 13708 mlh3-R530K,R532N R530K,R532N amino_acid_mutation PMID:33871573 R530K|R532N False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.239909C>T/c.1589G>A/p.R530K|chrXVI:g.239902_239903delGAinsAC/c.1595_1596delGAinsAC/p.R532N +YPL164C MLH3 13709 mlh3-R532N R532N amino_acid_mutation PMID:33871573 R532N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.239902_239903delGAinsAC/c.1595_1596delGAinsAC/p.R532N +YPL164C MLH3 13710 mlh3-V660K,N666A,F676I,D678K V660K,N666A,F676I,D678K amino_acid_mutation PMID:33871573 V660K|N666A|F676I|D678K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.239518_239520delGTCinsAAG/c.1978_1980delGTCinsAAG/p.V660K|chrXVI:g.239501_239502delAAinsGC/c.1996_1997delAAinsGC/p.N666A|chrXVI:g.239472A>T/c.2026T>A/p.F676I|chrXVI:g.239464_239466delGATinsAAG/c.2032_2034delGATinsAAG/p.D678K +YPL164C MLH3 13711 mlh3-Y493M,N497G,V499F,D500N,K502G Y493M,N497G,V499F,D500N,K502G amino_acid_mutation PMID:33871573 Y493M|N497G|V499F|D500N|K502G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.240019_240021delTATinsATG/c.1477_1479delTATinsATG/p.Y493M|chrXVI:g.240008_240009delAAinsGG/c.1489_1490delAAinsGG/p.N497G|chrXVI:g.240001_240003delGTAinsTTT/c.1495_1497delGTAinsTTT/p.V499F|chrXVI:g.240000C>T/c.1498G>A/p.D500N|chrXVI:g.239993_239994delAAinsGG/c.1504_1505delAAinsGG/p.K502G +YPL167C REV3 13715 rev3-K1061A K1061A amino_acid_mutation PMID:18263611 K1061A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.233926_233927delAAinsGC/c.3181_3182delAAinsGC/p.K1061A +YPL167C REV3 13716 rev3-K1086A K1086A amino_acid_mutation PMID:18263611 K1086A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.233851_233852delAAinsGC/c.3256_3257delAAinsGC/p.K1086A +YPL167C REV3 13717 rev3-L979F L979F amino_acid_mutation PMID:17715002,PMID:22965922,PMID:32882183 L979F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.234171C>A/c.2937G>T/p.L979F +YPL167C REV3 13718 rev3-L979G L979G amino_acid_mutation PMID:17715002 L979G False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.234172_234173delTTinsGG/c.2935_2936delTTinsGG/p.L979G +YPL167C REV3 13719 rev3-L979K L979K amino_acid_mutation PMID:17715002 L979K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.234172_234173delTTinsAA/c.2935_2936delTTinsAA/p.L979K +YPL167C REV3 13720 rev3-L979M L979M amino_acid_mutation PMID:17715002 L979M False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.234173A>T/c.2935T>A/p.L979M +YPL167C REV3 13721 rev3-L979N L979N amino_acid_mutation PMID:17715002 L979N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.234171_234173delTTGinsAAC/c.2935_2937delTTGinsAAC/p.L979N +YPL167C REV3 13722 rev3-L979V L979V amino_acid_mutation PMID:17715002 L979V False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.234173A>C/c.2935T>G/p.L979V +YPL167C REV3 13723 rev3-R1057A R1057A amino_acid_mutation PMID:18263611 R1057A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.233938_233939delAGinsGC/c.3169_3170delAGinsGC/p.R1057A +YPL167C REV3 13724 rev3-S1192R S1192R amino_acid_mutation PMID:33474647 S1192R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.233532G>C/c.3576C>G/p.S1192R +YPL170W DAP1 13729 dap1-D91G D91G amino_acid_mutation PMID:15713626 D91G False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.228585A>G/c.272A>G/p.D91G +YPL172C COX10 13732 cox10-H317A H317A amino_acid_mutation PMID:19841065 H317A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.224792_224793delCAinsGC/c.949_950delCAinsGC/p.H317A +YPL172C COX10 13733 cox10-N196D N196D amino_acid_mutation PMID:19841065 N196D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.225156T>C/c.586A>G/p.N196D +YPL172C COX10 13734 cox10-N196K N196K amino_acid_mutation PMID:19841065 N196K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.225154G>C/c.588C>G/p.N196K +YPL172C COX10 13735 cox10-N196K,H317A N196K,H317A amino_acid_mutation PMID:19841065 N196K|H317A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.225154G>C/c.588C>G/p.N196K|chrXVI:g.224792_224793delCAinsGC/c.949_950delCAinsGC/p.H317A +YPL172C COX10 13736 cox10-R212A,R216A R212A,R216A amino_acid_mutation PMID:19841065 R212A|R216A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.225107_225108delAGinsGC/c.634_635delAGinsGC/p.R212A|chrXVI:g.225095_225096delAGinsGC/c.646_647delAGinsGC/p.R216A +YPL175W SPT14 13739 spt14-H106Y H106Y amino_acid_mutation PMID:32636417 H106Y False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.219045C>T/c.316C>T/p.H106Y +YPL175W SPT14 13740 spt14-V76F V76F amino_acid_mutation PMID:32636417 V76F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.218955G>T/c.226G>T/p.V76F +YPL178W CBC2 13744 cbc2-Y24A Y24A amino_acid_mutation PMID:23002122,PMID:27974620 Y24A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.212227_212228delTAinsGC/c.70_71delTAinsGC/p.Y24A +YPL183C RTT10 13746 rtt10-S833L S833L amino_acid_mutation PMID:35283819 S833L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.200039G>A/c.2498C>T/p.S833L +YPL183C RTT10 13747 rtt10-T790K T790K amino_acid_mutation PMID:31611676 T790K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.200168G>T/c.2369C>A/p.T790K +YPL190C NAB3 13750 nab3-E58D E58D amino_acid_mutation PMID:31611676 E58D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.187552T>G/c.174A>C/p.E58D +YPL190C NAB3 13751 nab3-F371L,P374L F371L,P374L amino_acid_mutation PMID:18591258,PMID:21552543,PMID:23962978,PMID:27708008,PMID:31960028 F371L|P374L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.186701A>G/c.1111T>C/p.F371L|chrXVI:g.186605G>A/c.1121C>T/p.P374L +YPL190C NAB3 13752 nab3-K363A K363A amino_acid_mutation PMID:31960028 K363A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.186638_186639delAAinsGC/c.1087_1088delAAinsGC/p.K363A +YPL190C NAB3 13753 nab3-K363R K363R amino_acid_mutation PMID:31960028 K363R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.186638T>C/c.1088A>G/p.K363R +YPL193W RSA1 13758 rsa1-W245A W245A amino_acid_mutation PMID:24234454 W245A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.182135_182136delTGinsGC/c.733_734delTGinsGC/p.W245A +YPL194W DDC1 13761 ddc1-T602A T602A amino_acid_mutation PMID:33086066 T602A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.181080A>G/c.1804A>G/p.T602A +YPL203W TPK2 13769 tpk2-K99R K99R amino_acid_mutation PMID:18417610 K99R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.166551A>G/c.296A>G/p.K99R +YPL204W HRR25 13775 hrr25-E52D E52D amino_acid_mutation PMID:28432100,PMID:32317286 E52D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.164431G>C/c.156G>C/p.E52D +YPL204W HRR25 13776 hrr25-K38A K38A amino_acid_mutation PMID:9920934 K38A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.164199_164200delAAinsGC/c.112_113delAAinsGC/p.K38A +YPL209C IPL1 13783 ipl1-K133R K133R amino_acid_mutation PMID:34861183 K133R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.157196T>C/c.398A>G/p.K133R +YPL212C PUS1 13786 pus1-C181S C181S amino_acid_mutation PMID:29796388 C181S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.152609A>T/c.541T>A/p.C181S +YPL215W CBP3 13787 cbp3-1-120 1-120 partial_amino_acid_deletion PMID:31537648 1-120 False partial_amino_acid_deletion:multiple_aa partial_amino_acid_deletion chrXVI:g.146825_147184del360/c.1_360del360/p.L1_*120del120 +YPL215W CBP3 13788 cbp3-120–335 120–335 partial_amino_acid_deletion PMID:31537648 120–335 False 120-335 partial_amino_acid_deletion:multiple_aa partial_amino_acid_deletion chrXVI:g.147182_147829del648/c.358_1005del648/p.*120_E335del216 +YPL215W CBP3 13789 cbp3-145–335 145–335 partial_amino_acid_deletion PMID:31537648 145–335 False 145-335 partial_amino_acid_deletion:multiple_aa partial_amino_acid_deletion chrXVI:g.147257_147829del573/c.433_1005del573/p.D145_E335del191 +YPL218W SAR1 13794 sar1-D32G D32G amino_acid_mutation PMID:27101143 D32G False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.138931A>G/c.95A>G/p.D32G +YPL218W SAR1 13796 sar1-E112K E112K amino_acid_mutation PMID:20477992 E112K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.139170G>A/c.334G>A/p.E112K +YPL231W FAS2 13809 FAS2-G1250S G1250S amino_acid_mutation PMID:25787154,PMID:34073778,PMID:37317248 G1250S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.112399G>A/c.3748G>A/p.G1250S +YPL231W FAS2 13817 fas2-F1279Y F1279Y amino_acid_mutation PMID:32219854,PMID:35676064 F1279Y False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.112487T>A/c.3836T>A/p.F1279Y +YPL231W FAS2 13819 fas2-M1251S M1251S amino_acid_mutation PMID:32219854 M1251S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.112403_112404delTGinsGC/c.3752_3753delTGinsGC/p.M1251S +YPL231W FAS2 13820 fas2-V1254K V1254K amino_acid_mutation PMID:32219854 V1254K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.112411_112413delGTTinsAAG/c.3760_3762delGTTinsAAG/p.V1254K +YPL231W FAS2 13821 fas2-V1254W V1254W amino_acid_mutation PMID:32219854 V1254W False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.112411_112413delGTTinsTGG/c.3760_3762delGTTinsTGG/p.V1254W +YPL234C VMA11 13826 vma11-E145L E145L amino_acid_mutation PMID:31941791,PMID:35469063 E145L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.105007_105008delGAinsCT/c.433_434delGAinsCT/p.E145L +YPL235W RVB2 13835 rvb2-K81R K81R amino_acid_mutation PMID:11604509 K81R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.103473A>G/c.242A>G/p.K81R +YPL237W SUI3 13839 sui3-G155S G155S amino_acid_mutation PMID:31611676 G155S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.100958G>A/c.463G>A/p.G155S +YPL240C HSP82 13850 hsp82-A131T A131T amino_acid_mutation PMID:32565117 A131T False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.98235C>T/c.391G>A/p.A131T +YPL240C HSP82 13851 hsp82-A152V A152V amino_acid_mutation PMID:32565117 A152V False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.98171G>A/c.455C>T/p.A152V +YPL240C HSP82 13852 hsp82-A587T A587T amino_acid_mutation PMID:14622256,PMID:7791797 A587T False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.96867C>T/c.1759G>A/p.A587T +YPL240C HSP82 13853 hsp82-D79N D79N amino_acid_mutation PMID:27068472 D79N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.98391C>T/c.235G>A/p.D79N +YPL240C HSP82 13854 hsp82-E33A E33A amino_acid_mutation PMID:37120429 E33A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.98528T>G/c.98A>C/p.E33A +YPL240C HSP82 13855 hsp82-E33A,K98A E33A,K98A amino_acid_mutation PMID:37120429 E33A|K98A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.98528T>G/c.98A>C/p.E33A|chrXVI:g.98455_98456delAAinsGC/c.292_293delAAinsGC/p.K98A +YPL240C HSP82 13856 hsp82-E381K E381K amino_acid_mutation PMID:17923092,PMID:7791797 E381K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.97485C>T/c.1141G>A/p.E381K +YPL240C HSP82 13858 hsp82-G313N G313N amino_acid_mutation PMID:17237519 G313N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.97688_97689delGGinsAA/c.937_938delGGinsAA/p.G313N +YPL240C HSP82 13859 hsp82-G313S G313S amino_acid_mutation PMID:17923092,PMID:7791797 G313S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.97689C>T/c.937G>A/p.G313S +YPL240C HSP82 13860 hsp82-G81S G81S amino_acid_mutation PMID:16487343 G81S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.98385C>T/c.241G>A/p.G81S +YPL240C HSP82 13861 hsp82-I578F I578F amino_acid_mutation PMID:19889838 I578F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.96894T>A/c.1732A>T/p.I578F +YPL240C HSP82 13862 hsp82-K594E K594E amino_acid_mutation PMID:32139682 K594E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.96846T>C/c.1780A>G/p.K594E +YPL240C HSP82 13863 hsp82-K98A K98A amino_acid_mutation PMID:37120429 K98A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.98455_98456delAAinsGC/c.292_293delAAinsGC/p.K98A +YPL240C HSP82 13864 hsp82-S485A S485A amino_acid_mutation PMID:22365831,PMID:32920053,PMID:37068581 S485A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.97173A>C/c.1453T>G/p.S485A +YPL240C HSP82 13865 hsp82-S485D S485D amino_acid_mutation PMID:22365831,PMID:32920053 S485D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.97172_97173delTCinsGA/c.1453_1454delTCinsGA/p.S485D +YPL240C HSP82 13866 hsp82-S604D S604D amino_acid_mutation PMID:32920053 S604D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.96815_96816delTCinsGA/c.1810_1811delTCinsGA/p.S604D +YPL240C HSP82 13867 hsp82-S619D S619D amino_acid_mutation PMID:32920053 S619D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.96891_96893delTCAinsGAC/c.1855_1857delTCAinsGAC/p.S619D +YPL240C HSP82 13868 hsp82-T22I T22I amino_acid_mutation PMID:16487343,PMID:7791797 T22I False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.98561G>A/c.65C>T/p.T22I +YPL242C IQG1 13883 iqg1-L1256I L1256I amino_acid_mutation PMID:31611676 L1256I False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.91344G>T/c.3766C>A/p.L1256I +YPL242C IQG1 13884 iqg1-S571N S571N amino_acid_mutation PMID:33749796 S571N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.93398C>T/c.1712G>A/p.S571N +YPL248C GAL4 13889 gal4-C14Y C14Y amino_acid_mutation PMID:3065140,PMID:3550810 C14Y False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.82316C>T/c.41G>A/p.C14Y +YPL248C GAL4 13890 gal4-C38G C38G amino_acid_mutation PMID:3065140,PMID:3550810 C38G False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.82245A>C/c.112T>G/p.C38G +YPL248C GAL4 13891 gal4-F869S F869S amino_acid_mutation PMID:2205838 F869S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.79751A>G/c.2606T>C/p.F869S +YPL248C GAL4 13892 gal4-F869Y F869Y amino_acid_mutation PMID:2205838 F869Y False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.79751A>T/c.2606T>A/p.F869Y +YPL248C GAL4 13893 gal4-I294M I294M amino_acid_mutation PMID:33220863 I294M False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.81475T>C/c.882A>G/p.I294M +YPL248C GAL4 13894 gal4-I407V I407V amino_acid_mutation PMID:33220863 I407V False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.81138T>C/c.1219A>G/p.I407V +YPL248C GAL4 13896 gal4-K17E K17E amino_acid_mutation PMID:3065140,PMID:3550810 K17E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.82308T>C/c.49A>G/p.K17E +YPL248C GAL4 13898 gal4-K43R K43R amino_acid_mutation PMID:33220863 K43R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.82229T>C/c.128A>G/p.K43R +YPL248C GAL4 13899 gal4-K459R K459R amino_acid_mutation PMID:33220863 K459R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.80981T>C/c.1376A>G/p.K459R +YPL248C GAL4 13901 gal4-L19P L19P amino_acid_mutation PMID:3065140,PMID:3550810 L19P False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.82301A>G/c.56T>C/p.L19P +YPL248C GAL4 13902 gal4-L32P L32P amino_acid_mutation PMID:3065140,PMID:3550810 L32P False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.82262A>G/c.95T>C/p.L32P +YPL248C GAL4 13903 gal4-L331P L331P amino_acid_mutation PMID:3065140,PMID:3550810 L331P False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.81365A>G/c.992T>C/p.L331P +YPL248C GAL4 13905 gal4-L868P L868P amino_acid_mutation PMID:2187743 L868P False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.79754A>G/c.2603T>C/p.L868P +YPL248C GAL4 13907 gal4-N857D N857D amino_acid_mutation PMID:2205838 N857D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.79788T>C/c.2569A>G/p.N857D +YPL248C GAL4 13908 gal4-N857Y N857Y amino_acid_mutation PMID:2205838 N857Y False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.79788T>A/c.2569A>T/p.N857Y +YPL248C GAL4 13909 gal4-P26L P26L amino_acid_mutation PMID:3550810 P26L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.82280G>A/c.77C>T/p.P26L +YPL248C GAL4 13910 gal4-P26S P26S amino_acid_mutation PMID:3065140 P26S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.82281G>A/c.76C>T/p.P26S +YPL248C GAL4 13911 gal4-P42F P42F amino_acid_mutation PMID:3065140 P42F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.82232_82233delCCinsTT/c.124_125delCCinsTT/p.P42F +YPL248C GAL4 13912 gal4-P42L P42L amino_acid_mutation PMID:3550810 P42L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.82232G>A/c.125C>T/p.P42L +YPL248C GAL4 13913 gal4-P42S P42S amino_acid_mutation PMID:3065140,PMID:3550810 P42S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.82233G>A/c.124C>T/p.P42S +YPL248C GAL4 13914 gal4-P48L P48L amino_acid_mutation PMID:3065140,PMID:3550810 P48L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.82214G>A/c.143C>T/p.P48L +YPL248C GAL4 13915 gal4-P48T P48T amino_acid_mutation PMID:3065140,PMID:3550810 P48T False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.82215G>T/c.142C>A/p.P48T +YPL248C GAL4 13921 gal4-R15Q R15Q amino_acid_mutation PMID:3065140 R15Q False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.82313C>T/c.44G>A/p.R15Q +YPL248C GAL4 13923 gal4-R51S R51S amino_acid_mutation PMID:3065140 R51S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.82204C>G/c.153G>C/p.R51S +YPL248C GAL4 13926 gal4-S22F S22F amino_acid_mutation PMID:3550810 S22F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.82292G>A/c.65C>T/p.S22F +YPL248C GAL4 13927 gal4-S322F S322F amino_acid_mutation PMID:3065140,PMID:3550810 S322F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.81392G>A/c.965C>T/p.S322F +YPL248C GAL4 13928 gal4-S352F S352F amino_acid_mutation PMID:3065140,PMID:3550810 S352F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.81302G>A/c.1055C>T/p.S352F +YPL248C GAL4 13930 gal4-S41F S41F amino_acid_mutation PMID:3065140,PMID:3550810 S41F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.82235G>A/c.122C>T/p.S41F +YPL248C GAL4 13931 gal4-S47F S47F amino_acid_mutation PMID:3065140,PMID:3550810 S47F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.82217G>A/c.140C>T/p.S47F +YPL248C GAL4 13932 gal4-S511P S511P amino_acid_mutation PMID:3065140 S511P False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.80826A>G/c.1531T>C/p.S511P +YPL248C GAL4 13933 gal4-S699A S699A amino_acid_mutation PMID:34849833 S699A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.80262A>C/c.2095T>G/p.S699A +YPL248C GAL4 13934 gal4-S6P S6P amino_acid_mutation PMID:33220863 S6P False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.82341A>G/c.16T>C/p.S6P +YPL248C GAL4 13935 gal4-S801P S801P amino_acid_mutation PMID:33220863 S801P False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.79956A>G/c.2401T>C/p.S801P +YPL248C GAL4 13936 gal4-T406A T406A amino_acid_mutation PMID:33220863 T406A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.81141T>C/c.1216A>G/p.T406A +YPL248C GAL4 13937 gal4-T406A,V413A T406A,V413A amino_acid_mutation PMID:33220863 T406A|V413A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.81141T>C/c.1216A>G/p.T406A|chrXVI:g.81119A>G/c.1238T>C/p.V413A +YPL248C GAL4 13938 gal4-T50I T50I amino_acid_mutation PMID:3065140,PMID:3550810 T50I False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.82208G>A/c.149C>T/p.T50I +YPL248C GAL4 13939 gal4-T858A T858A amino_acid_mutation PMID:2205838 T858A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.79785T>C/c.2572A>G/p.T858A +YPL248C GAL4 13940 gal4-T859I T859I amino_acid_mutation PMID:2187743 T859I False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.79781G>A/c.2576C>T/p.T859I +YPL248C GAL4 13941 gal4-V413A V413A amino_acid_mutation PMID:33220863 V413A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.81119A>G/c.1238T>C/p.V413A +YPL248C GAL4 13942 gal4-V57M V57M amino_acid_mutation PMID:3065140 V57M False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.82188C>T/c.169G>A/p.V57M +YPL248C GAL4 13943 gal4-V586A V586A amino_acid_mutation PMID:33220863 V586A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.80600A>G/c.1757T>C/p.V586A +YPL248C GAL4 13944 gal4-V864E V864E amino_acid_mutation PMID:2187743 V864E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.79766A>T/c.2591T>A/p.V864E +YPL252C YAH1 13954 yah1-L142V L142V amino_acid_mutation PMID:28867595 L142V False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.73458G>C/c.424C>G/p.L142V +YPL256C CLN2 13964 cln2-S441A S441A amino_acid_mutation PMID:36870416 S441A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.65294A>C/c.1321T>G/p.S441A +YPL262W FUM1 13967 fum1-A294V A294V amino_acid_mutation PMID:34656184 A294V False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.48216C>T/c.881C>T/p.A294V +YPL262W FUM1 13968 fum1-H154R H154R amino_acid_mutation PMID:33058874 H154R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.47796A>G/c.461A>G/p.H154R +YPL262W FUM1 13969 fum1-M432I M432I amino_acid_mutation PMID:34656184 M432I False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.48631G>C/c.1296G>C/p.M432I +YPL262W FUM1 13970 fum1-S124D S124D amino_acid_mutation PMID:33058874 S124D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.47705_47706delTCinsGA/c.370_371delTCinsGA/p.S124D +YPL262W FUM1 13971 fum1-S128D S128D amino_acid_mutation PMID:33058874 S128D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.47717_47718delTCinsGA/c.382_383delTCinsGA/p.S128D +YPL262W FUM1 13972 fum1-T122E T122E amino_acid_mutation PMID:33058874 T122E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.47699_47700delACinsGA/c.364_365delACinsGA/p.T122E +YPL262W FUM1 13973 fum1-T126E T126E amino_acid_mutation PMID:33058874 T126E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.47711_47713delACCinsGAG/c.376_378delACCinsGAG/p.T126E +YPL262W FUM1 13974 fum1-T218M T218M amino_acid_mutation PMID:34656184 T218M False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.47988C>T/c.653C>T/p.T218M +YPL263C KEL3 13975 kel3-D489N D489N amino_acid_mutation PMID:31611676 D489N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.45042C>T/c.1465G>A/p.D489N +YPL266W DIM1 13978 dim1-D87E D87E amino_acid_mutation PMID:33691096 D87E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.39381T>G/c.261T>G/p.D87E +YPL266W DIM1 13979 dim1-E85D E85D amino_acid_mutation PMID:33691096 E85D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.39375A>C/c.255A>C/p.E85D +YPL268W PLC1 13981 plc1-G781D G781D amino_acid_mutation PMID:8383328 G781D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.37577G>A/c.2342G>A/p.G781D +YPL268W PLC1 13982 plc1-H395A H395A amino_acid_mutation PMID:15485855 H395A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.36418_36419delCAinsGC/c.1183_1184delCAinsGC/p.H395A +YPL268W PLC1 13983 plc1-H395A,N396A H395A,N396A amino_acid_mutation PMID:15485855 H395A|N396A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.36418_36419delCAinsGC/c.1183_1184delCAinsGC/p.H395A|chrXVI:g.36421_36422delAAinsGC/c.1186_1187delAAinsGC/p.N396A +YPL268W PLC1 13984 plc1-N396A N396A amino_acid_mutation PMID:15485855 N396A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.36421_36422delAAinsGC/c.1186_1187delAAinsGC/p.N396A +YPL269W KAR9 13987 kar9-L304P L304P amino_acid_mutation PMID:18832349 L304P False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.33923T>C/c.911T>C/p.L304P +YPL269W KAR9 13988 kar9-S197E S197E amino_acid_mutation PMID:34237274 S197E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.33601_33603delTCCinsGAG/c.589_591delTCCinsGAG/p.S197E +YPL269W KAR9 13989 kar9-S197E,T202E,S229E S197E,T202E,S229E amino_acid_mutation PMID:34237274 S197E|T202E|S229E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.33601_33603delTCCinsGAG/c.589_591delTCCinsGAG/p.S197E|chrXVI:g.33616_33618delACTinsGAG/c.604_606delACTinsGAG/p.T202E|chrXVI:g.33697_33699delTCTinsGAG/c.685_687delTCTinsGAG/p.S229E +YPL271W ATP15 13991 atp15-Y11C Y11C amino_acid_mutation PMID:25954304 Y11C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.30110A>G/c.32A>G/p.Y11C +YPR008W HAA1 14010 haa1-S135F S135F amino_acid_mutation PMID:28068993 S135F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.573421C>T/c.404C>T/p.S135F +YPR008W HAA1 14012 haa1-S506N S506N amino_acid_mutation PMID:26740819 S506N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.574534G>A/c.1517G>A/p.S506N +YPR010C RPA135 14013 RPA135-F301S F301S amino_acid_mutation PMID:31136569,PMID:34765647 F301S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.580295A>G/c.902T>C/p.F301S +YPR010C RPA135 14014 RPA135-Y252H Y252H amino_acid_mutation PMID:31136569 Y252H False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.580443A>G/c.754T>C/p.Y252H +YPR010C RPA135 14015 rpa135-D299G D299G amino_acid_mutation PMID:31136569 D299G False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.580301T>C/c.896A>G/p.D299G +YPR010C RPA135 14016 rpa135-D784G D784G amino_acid_mutation PMID:17466624 D784G False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.578846T>C/c.2351A>G/p.D784G +YPR016C TIF6 14019 TIF6-A195T A195T amino_acid_mutation PMID:19797079 A195T False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.592487C>T/c.583G>A/p.A195T +YPR016C TIF6 14020 TIF6-E12Q E12Q amino_acid_mutation PMID:19797079 E12Q False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.593036C>G/c.34G>C/p.E12Q +YPR020W ATP20 14042 atp20-R107A R107A amino_acid_mutation PMID:30093404 R107A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.600188_600189delAGinsGC/c.319_320delAGinsGC/p.R107A +YPR032W SRO7 14049 sro7-N914K,S942F N914K,S942F amino_acid_mutation PMID:25404740 N914K|S942F False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.636864T>G/c.2742T>G/p.N914K|chrXVI:g.636947C>T/c.2825C>T/p.S942F +YPR032W SRO7 14050 sro7-R189D,R222D R189D,R222D amino_acid_mutation PMID:25404740 R189D|R222D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.634687_634689delAGGinsGAC/c.565_567delAGGinsGAC/p.R189D|chrXVI:g.634786_634788delAGAinsGAC/c.664_666delAGAinsGAC/p.R222D +YPR033C HTS1 14052 hts1-S370N S370N amino_acid_mutation PMID:29235198 S370N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.637911_637912delTCinsAA/c.1108_1109delTCinsAA/p.S370N +YPR033C HTS1 14054 hts1-Y331C Y331C amino_acid_mutation PMID:29235198 Y331C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.638028T>C/c.992A>G/p.Y331C +YPR034W ARP7 14055 arp7-E411K E411K amino_acid_mutation PMID:23962978 E411K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.640755G>A/c.1231G>A/p.E411K +YPR041W TIF5 14059 tif5-G31R G31R amino_acid_mutation PMID:28385532 G31R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.648794G>C/c.91G>C/p.G31R +YPR041W TIF5 14060 tif5-L295P L295P amino_acid_mutation PMID:15964804 L295P False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.649480T>C/c.884T>C/p.L295P +YPR041W TIF5 14062 tif5-W391F W391F amino_acid_mutation PMID:20485439 W391F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.649875_649876delGGinsTT/c.1172_1173delGGinsTT/p.W391F +YPR045C THP3 14067 thp3-K392E K392E amino_acid_mutation PMID:35904806 K392E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.655379T>C/c.1174A>G/p.K392E +YPR045C THP3 14068 thp3-K448E K448E amino_acid_mutation PMID:35904806 K448E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.655269T>C/c.1342A>G/p.K448E +YPR045C THP3 14069 thp3-R451E R451E amino_acid_mutation PMID:35904806 R451E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.655201_655202delAGinsGA/c.1351_1352delAGinsGA/p.R451E +YPR045C THP3 14070 thp3-R451E,K462E R451E,K462E amino_acid_mutation PMID:35904806 R451E|K462E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.655201_655202delAGinsGA/c.1351_1352delAGinsGA/p.R451E|chrXVI:g.655169T>C/c.1384A>G/p.K462E +YPR049C ATG11 14078 atg11-I562A I562A amino_acid_mutation PMID:35118068 I562A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.662989_662990delATinsGC/c.1684_1685delATinsGC/p.I562A +YPR049C ATG11 14079 atg11-I562E I562E amino_acid_mutation PMID:35118068 I562E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.662988_662990delATTinsGAG/c.1684_1686delATTinsGAG/p.I562E +YPR049C ATG11 14080 atg11-I562Q I562Q amino_acid_mutation PMID:35118068 I562Q False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.662988_662990delATTinsCAA/c.1684_1686delATTinsCAA/p.I562Q +YPR049C ATG11 14081 atg11-I569E I569E amino_acid_mutation PMID:31971848,PMID:35118068 I569E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.662967_662969delATTinsGAG/c.1705_1707delATTinsGAG/p.I569E +YPR049C ATG11 14082 atg11-Y565A Y565A amino_acid_mutation PMID:35118068 Y565A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.662980_662981delTAinsGC/c.1693_1694delTAinsGC/p.Y565A +YPR049C ATG11 14083 atg11-Y565E Y565E amino_acid_mutation PMID:35118068 Y565E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.662979_662981delTATinsGAG/c.1693_1695delTATinsGAG/p.Y565E +YPR049C ATG11 14084 atg11-Y565Q Y565Q amino_acid_mutation PMID:35118068 Y565Q False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.662979_662981delTATinsCAA/c.1693_1695delTATinsCAA/p.Y565Q +YPR054W SMK1 14091 smk1-T207A T207A amino_acid_mutation PMID:11739722 T207A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.666898A>G/c.619A>G/p.T207A +YPR054W SMK1 14092 smk1-T207A,Y209F T207A,Y209F amino_acid_mutation PMID:11739722 T207A|Y209F False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.666898A>G/c.619A>G/p.T207A|chrXVI:g.666905A>T/c.626A>T/p.Y209F +YPR054W SMK1 14093 smk1-T207D,Y209D T207D,Y209D amino_acid_mutation PMID:11739722 T207D|Y209D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.666898_666899delACinsGA/c.619_620delACinsGA/p.T207D|chrXVI:g.666904T>G/c.625T>G/p.Y209D +YPR054W SMK1 14094 smk1-T207E,Y209E T207E,Y209E amino_acid_mutation PMID:11739722 T207E|Y209E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.666898_666900delACCinsGAG/c.619_621delACCinsGAG/p.T207E|chrXVI:g.666904_666906delTACinsGAG/c.625_627delTACinsGAG/p.Y209E +YPR054W SMK1 14095 smk1-Y209F Y209F amino_acid_mutation PMID:11739722 Y209F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.666905A>T/c.626A>T/p.Y209F +YPR060C ARO7 14106 aro7-E246A E246A amino_acid_mutation PMID:29127264 E246A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.674895T>G/c.737A>C/p.E246A +YPR060C ARO7 14107 aro7-G141S G141S amino_acid_mutation PMID:18372204,PMID:26344106,PMID:32550099,PMID:32990403,PMID:34689412,PMID:35107250,PMID:36534476,PMID:36890537,PMID:37450901 G141S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.675211C>T/c.421G>A/p.G141S +YPR060C ARO7 14108 aro7-I225T,T226I I225T,T226I amino_acid_mutation PMID:35259366 I225T|T226I False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.674958A>G/c.674T>C/p.I225T|chrXVI:g.674955G>A/c.677C>T/p.T226I +YPR060C ARO7 14109 aro7-L205S L205S amino_acid_mutation PMID:32303542 L205S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.675018A>G/c.614T>C/p.L205S +YPR080W TEF1 14116 tef1-S289D S289D amino_acid_mutation PMID:34293820 S289D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.701458_701459delTCinsGA/c.865_866delTCinsGA/p.S289D +YPR080W TEF1 14117 tef1-S394A S394A amino_acid_mutation PMID:34293820 S394A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.701773T>G/c.1180T>G/p.S394A +YPR080W TEF1 14118 tef1-S394D S394D amino_acid_mutation PMID:34293820 S394D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.701773_701774delTCinsGA/c.1180_1181delTCinsGA/p.S394D +YPR080W TEF1 14119 tef1-S53A S53A amino_acid_mutation PMID:34293820 S53A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.700750T>G/c.157T>G/p.S53A +YPR080W TEF1 14120 tef1-T430A T430A amino_acid_mutation PMID:34293820 T430A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.701881A>G/c.1288A>G/p.T430A +YPR080W TEF1 14121 tef1-T82D T82D amino_acid_mutation PMID:34293820 T82D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.700837_700838delACinsGA/c.244_245delACinsGA/p.T82D +YPR086W SUA7 14135 sua7-D42R D42R amino_acid_mutation PMID:10733531 D42R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.710224_710225delGAinsCG/c.124_125delGAinsCG/p.D42R +YPR086W SUA7 14136 sua7-E26N E26N amino_acid_mutation PMID:10733531 E26N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.710176_710178delGAGinsAAC/c.76_78delGAGinsAAC/p.E26N +YPR086W SUA7 14137 sua7-E26R E26R amino_acid_mutation PMID:10733531 E26R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.710176_710177delGAinsAG/c.76_77delGAinsAG/p.E26R +YPR086W SUA7 14138 sua7-E62K E62K amino_acid_mutation PMID:1547497 E62K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.710284G>A/c.184G>A/p.E62K +YPR086W SUA7 14139 sua7-L136P L136P amino_acid_mutation PMID:27688401 L136P False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.710507T>C/c.407T>C/p.L136P +YPR086W SUA7 14140 sua7-L50A L50A amino_acid_mutation PMID:10733531 L50A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.710248_710249delCTinsGC/c.148_149delCTinsGC/p.L50A +YPR086W SUA7 14141 sua7-L50E L50E amino_acid_mutation PMID:10733531 L50E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.710248_710249delCTinsGA/c.148_149delCTinsGA/p.L50E +YPR086W SUA7 14142 sua7-V44A V44A amino_acid_mutation PMID:10733531 V44A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.710231T>C/c.131T>C/p.V44A +YPR086W SUA7 14143 sua7-V44E V44E amino_acid_mutation PMID:10733531 V44E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.710231T>A/c.131T>A/p.V44E +YPR086W SUA7 14144 sua7-V51A V51A amino_acid_mutation PMID:10733531 V51A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.710252T>C/c.152T>C/p.V51A +YPR086W SUA7 14145 sua7-V51E V51E amino_acid_mutation PMID:10733531 V51E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.710252T>A/c.152T>A/p.V51E +YPR086W SUA7 14146 sua7-c149r c149r amino_acid_mutation PMID:27708008 c149r False C149R amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.710545T>C/c.445T>C/p.C149R +YPR088C SRP54 14149 srp54-G234E G234E amino_acid_mutation PMID:33053321 G234E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.712327_712328delGTinsAG/c.701_702delGTinsAG/p.G234E +YPR088C SRP54 14150 srp54-S125del S125del amino_acid_insertion_and_mutation PMID:33053321 S125del False S125DEL amino_acid_insertion_and_mutation:multiple_aa amino_acid_insertion_and_mutation chrXVI:g.712654_712656delinsAAGCTCGTC/c.373_375delinsGACGAGCTT/p.S125_S125delinsDEL +YPR088C SRP54 14151 srp54-T123A T123A amino_acid_mutation PMID:33053321 T123A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.712662T>C/c.367A>G/p.T123A +YPR103W PRE2 14167 pre2-K108R K108R amino_acid_mutation PMID:12940990,PMID:37364618 K108R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.732671A>G/c.323A>G/p.K108R +YPR103W PRE2 14168 pre2-T76A T76A amino_acid_mutation PMID:32916113 T76A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.732574A>G/c.226A>G/p.T76A +YPR103W PRE2 14169 pre2-v214a v214a amino_acid_mutation PMID:27708008 v214a False V214A amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.732989T>C/c.641T>C/p.V214A +YPR106W ISR1 14176 isr1-D280A D280A amino_acid_mutation PMID:32579556 D280A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.740899A>C/c.839A>C/p.D280A +YPR108W RPN7 14189 rpn7-D123C D123C amino_acid_mutation PMID:30067984 D123C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.742820_742821delGAinsTG/c.367_368delGAinsTG/p.D123C +YPR110C RPC40 14192 rpc40-R69C R69C amino_acid_mutation PMID:8516295 R69C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.746631G>A/c.205C>T/p.R69C +YPR110C RPC40 14193 rpc40-V78R V78R amino_acid_mutation PMID:23962978 V78R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.746603_746604delGTinsAG/c.232_233delGTinsAG/p.V78R +YPR124W CTR1 14206 ctr1-M260A M260A amino_acid_mutation PMID:17645432 M260A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.786985_786986delATinsGC/c.778_779delATinsGC/p.M260A +YPR124W CTR1 14207 ctr1-S303T S303T amino_acid_mutation PMID:31611676 S303T False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.787115G>C/c.908G>C/p.S303T +YPR129W SCD6 14211 scd6-S256A S256A amino_acid_mutation PMID:33566094 S256A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.793452T>G/c.766T>G/p.S256A +YPR129W SCD6 14212 scd6-S256A,S280A,S287A S256A,S280A,S287A amino_acid_mutation PMID:33566094 S256A|S280A|S287A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.793452T>G/c.766T>G/p.S256A|chrXVI:g.793524T>G/c.838T>G/p.S280A|chrXVI:g.793545T>G/c.859T>G/p.S287A +YPR129W SCD6 14213 scd6-S256D,S280D,S287D S256D,S280D,S287D amino_acid_mutation PMID:33566094 S256D|S280D|S287D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.793452_793453delTCinsGA/c.766_767delTCinsGA/p.S256D|chrXVI:g.793524_793525delTCinsGA/c.838_839delTCinsGA/p.S280D|chrXVI:g.793545_793546delTCinsGA/c.859_860delTCinsGA/p.S287D +YPR129W SCD6 14214 scd6-S280A S280A amino_acid_mutation PMID:33566094 S280A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.793524T>G/c.838T>G/p.S280A +YPR129W SCD6 14215 scd6-S287A S287A amino_acid_mutation PMID:33566094 S287A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.793545T>G/c.859T>G/p.S287A +YPR131C NAT3 14217 nat3-H77A H77A amino_acid_mutation PMID:37331807 H77A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.794269_794270delCAinsGC/c.229_230delCAinsGC/p.H77A +YPR133C SPN1 14221 spn1-D172G D172G amino_acid_mutation PMID:20875428 D172G False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.796696T>C/c.515A>G/p.D172G +YPR133C SPN1 14222 spn1-F267E F267E amino_acid_mutation PMID:21094070 F267E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.796410_796412delTTTinsGAG/c.799_801delTTTinsGAG/p.F267E +YPR133C SPN1 14223 spn1-K192N K192N amino_acid_mutation PMID:23962978,PMID:29300974 K192N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.796635C>G/c.576G>C/p.K192N +YPR134W MSS18 14225 mss18-G260R G260R amino_acid_mutation PMID:31611676 G260R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.798828G>A/c.778G>A/p.G260R +YPR135W CTF4 14227 ctf4-S143F S143F amino_acid_mutation PMID:20381454 S143F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.799661C>T/c.428C>T/p.S143F +YPR135W CTF4 14228 ctf4-T401A, T411A T401A, T411A amino_acid_mutation PMID:27017623 T401A|T411A False T401A,T411A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.800372A>G/c.1201A>G/p.T401A|chrXVI:g.800464A>G/c.1231A>G/p.T411A +YPR145W ASN1 14231 asn1-A6E A6E amino_acid_mutation PMID:33916846 A6E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.822636_822637delCCinsAG/c.17_18delCCinsAG/p.A6E +YPR145W ASN1 14232 asn1-R344A R344A amino_acid_mutation PMID:33347445 R344A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.823525_823526delCGinsGC/c.1030_1031delCGinsGC/p.R344A +YPR159W KRE6 14250 kre6-A521T A521T amino_acid_mutation PMID:35435209 A521T False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.859143G>A/c.1561G>A/p.A521T +YPR159W KRE6 14251 kre6-S453L S453L amino_acid_mutation PMID:35435209 S453L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.858940C>T/c.1358C>T/p.S453L +YPR161C SGV1 14274 sgv1-W267stop W267stop partial_amino_acid_deletion PMID:35166010 W267stop False W267* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrXVI:g.865623C>T/c.800G>A/p.W267* +YPR162C ORC4 14278 orc4-F485A,Y486A F485A,Y486A amino_acid_mutation PMID:33056978 F485A|Y486A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.866851_866852delTTinsGC/c.1453_1454delTTinsGC/p.F485A|chrXVI:g.866848_866849delTAinsGC/c.1456_1457delTAinsGC/p.Y486A +YPR162C ORC4 14279 orc4-F485I F485I amino_acid_mutation PMID:33056978 F485I False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.866852A>T/c.1453T>A/p.F485I +YPR162C ORC4 14280 orc4-F485I,Y486Q F485I,Y486Q amino_acid_mutation PMID:33056978 F485I|Y486Q False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.866852A>T/c.1453T>A/p.F485I|chrXVI:g.866847_866849delTACinsCAA/c.1456_1458delTACinsCAA/p.Y486Q +YPR162C ORC4 14281 orc4-F485Y,Y486F F485Y,Y486F amino_acid_mutation PMID:33056978 F485Y|Y486F False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.866851A>T/c.1454T>A/p.F485Y|chrXVI:g.866848T>A/c.1457A>T/p.Y486F +YPR162C ORC4 14283 orc4-N489A N489A amino_acid_mutation PMID:33056978 N489A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.866839_866840delAAinsGC/c.1465_1466delAAinsGC/p.N489A +YPR162C ORC4 14284 orc4-N489W N489W amino_acid_mutation PMID:33056978 N489W False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.866838_866840delAATinsTGG/c.1465_1467delAATinsTGG/p.N489W +YPR162C ORC4 14285 orc4-R478A R478A amino_acid_mutation PMID:33056978 R478A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.866872_866873delAGinsGC/c.1432_1433delAGinsGC/p.R478A +YPR162C ORC4 14286 orc4-R478K R478K amino_acid_mutation PMID:33056978 R478K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.866872C>T/c.1433G>A/p.R478K +YPR162C ORC4 14287 orc4-Y232C Y232C amino_acid_mutation PMID:21358631,PMID:29036220 Y232C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.867610T>C/c.695A>G/p.Y232C +YPR162C ORC4 14288 orc4-Y486Q Y486Q amino_acid_mutation PMID:33056978 Y486Q False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.866847_866849delTACinsCAA/c.1456_1458delTACinsCAA/p.Y486Q +YPR165W RHO1 14299 rho1-C206S C206S amino_acid_mutation PMID:8195291 C206S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.875983T>A/c.616T>A/p.C206S +YPR165W RHO1 14300 rho1-C25A C25A amino_acid_mutation PMID:19339687 C25A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.874979_874980delTGinsGC/c.73_74delTGinsGC/p.C25A +YPR165W RHO1 14301 rho1-F35L F35L amino_acid_mutation PMID:19339687,PMID:37379203 F35L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.875470T>C/c.103T>C/p.F35L +YPR165W RHO1 14302 rho1-G19V G19V amino_acid_mutation PMID:12399379,PMID:19339687 G19V False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.875423G>T/c.56G>T/p.G19V +YPR165W RHO1 14303 rho1-Q68H Q68H amino_acid_mutation PMID:10508863,PMID:19339687,PMID:37379203 Q68H False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.875571A>T/c.204A>T/p.Q68H +YPR165W RHO1 14304 rho1-Q68L Q68L amino_acid_mutation PMID:12399379 Q68L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.875570A>T/c.203A>T/p.Q68L +YPR173C VPS4 14318 vps4-D283V D283V amino_acid_mutation PMID:32255230 D283V False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.886990T>A/c.848A>T/p.D283V +YPR173C VPS4 14319 vps4-E233Q E233Q amino_acid_mutation PMID:16505166,PMID:18266866,PMID:32255230 E233Q False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.887173C>G/c.697G>C/p.E233Q +YPR174C CSA1 14327 csa1-F195A F195A amino_acid_mutation PMID:32553169 F195A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.888125_888126delTTinsGC/c.583_584delTTinsGC/p.F195A +YPR174C CSA1 14328 csa1-G192A G192A amino_acid_mutation PMID:32553169 G192A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.888134C>G/c.575G>C/p.G192A +YPR174C CSA1 14329 csa1-K191A K191A amino_acid_mutation PMID:32553169 K191A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.888137_888138delAAinsGC/c.571_572delAAinsGC/p.K191A +YPR174C CSA1 14330 csa1-K198A K198A amino_acid_mutation PMID:32553169 K198A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.888116_888117delAAinsGC/c.592_593delAAinsGC/p.K198A +YPR174C CSA1 14331 csa1-N194A N194A amino_acid_mutation PMID:32553169 N194A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.888128_888129delAAinsGC/c.580_581delAAinsGC/p.N194A +YPR174C CSA1 14332 csa1-P189A P189A amino_acid_mutation PMID:32553169 P189A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.888144G>C/c.565C>G/p.P189A +YPR174C CSA1 14333 csa1-P190A P190A amino_acid_mutation PMID:32553169 P190A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.888141G>C/c.568C>G/p.P190A +YPR174C CSA1 14334 csa1-P193A P193A amino_acid_mutation PMID:32553169 P193A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.888132G>C/c.577C>G/p.P193A +YPR174C CSA1 14335 csa1-Y196A Y196A amino_acid_mutation PMID:32553169 Y196A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.888122_888123delTAinsGC/c.586_587delTAinsGC/p.Y196A +YPR181C SEC23 14364 sec23-S310F S310F amino_acid_mutation PMID:35105807 S310F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.898739G>A/c.929C>T/p.S310F +YPR182W SMX3 14367 smx3-F33A F33A amino_acid_mutation PMID:27974620 F33A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.900290_900291delTTinsGC/c.97_98delTTinsGC/p.F33A +YPR182W SMX3 14368 smx3-K32A K32A amino_acid_mutation PMID:27974620 K32A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.900287_900288delAAinsGC/c.94_95delAAinsGC/p.K32A +YPR182W SMX3 14369 smx3-R74K R74K amino_acid_mutation PMID:27974620 R74K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.900413_900415delCGCinsAAG/c.220_222delCGCinsAAG/p.R74K +YPR183W DPM1 14373 dpm1-P198L P198L amino_acid_mutation PMID:31611676 P198L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.901347C>T/c.593C>T/p.P198L +YPR185W ATG13 14375 ATG13-D651R,Q666R,P667R D651R,Q666R,P667R amino_acid_mutation PMID:31352862 D651R|Q666R|P667R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.909168_909169delGAinsCG/c.1951_1952delGAinsCG/p.D651R|chrXVI:g.909214A>G/c.1997A>G/p.Q666R|chrXVI:g.909217C>G/c.2000C>G/p.P667R +YPR185W ATG13 14376 ATG13-F641E,I645E,K683E,H685E,K686E F641E,I645E,K683E,H685E,K686E amino_acid_mutation PMID:31352862 F641E|I645E|K683E|H685E|K686E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.909138_909140delTTCinsGAG/c.1921_1923delTTCinsGAG/p.F641E|chrXVI:g.909150_909151delATinsGA/c.1933_1934delATinsGA/p.I645E|chrXVI:g.909264A>G/c.2047A>G/p.K683E|chrXVI:g.909270_909272delCATinsGAG/c.2053_2055delCATinsGAG/p.H685E|chrXVI:g.909273A>G/c.2056A>G/p.K686E +YPR185W ATG13 14377 ATG13-F641G,I645G F641G,I645G amino_acid_mutation PMID:31352862 F641G|I645G False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.909138_909139delTTinsGG/c.1921_1922delTTinsGG/p.F641G|chrXVI:g.909150_909151delATinsGG/c.1933_1934delATinsGG/p.I645G +YPR185W ATG13 14379 atg13-F375A F375A amino_acid_mutation PMID:32025038 F375A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.908340_908341delTTinsGC/c.1123_1124delTTinsGC/p.F375A +YPR185W ATG13 14380 atg13-F430A F430A amino_acid_mutation PMID:32025038 F430A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.908505_908506delTTinsGC/c.1288_1289delTTinsGC/p.F430A +YPR185W ATG13 14381 atg13-S129A,S348A,S454A,S535A,S541A,S646A S129A,S348A,S454A,S535A,S541A,S646A amino_acid_mutation PMID:35238874 S129A|S348A|S454A|S535A|S541A|S646A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.907602T>G/c.385T>G/p.S129A|chrXVI:g.908259T>G/c.1042T>G/p.S348A|chrXVI:g.908577_908578delAGinsGC/c.1360_1361delAGinsGC/p.S454A|chrXVI:g.908820T>G/c.1603T>G/p.S535A|chrXVI:g.908838T>G/c.1621T>G/p.S541A|chrXVI:g.909153T>G/c.1936T>G/p.S646A +YPR185W ATG13 14382 atg13-S129A,S454A S129A,S454A amino_acid_mutation PMID:35238874 S129A|S454A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.907602T>G/c.385T>G/p.S129A|chrXVI:g.908577_908578delAGinsGC/c.1360_1361delAGinsGC/p.S454A +YPR187W RPO26 14390 rpo26-Q100R Q100R amino_acid_mutation PMID:12697831 Q100R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.911631A>G/c.299A>G/p.Q100R +YPR201W ARR3 14435 arr3-C333S C333S amino_acid_mutation PMID:35139143 C333S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940918T>A/c.997T>A/p.C333S +YPR201W ARR3 14436 arr3-D34A D34A amino_acid_mutation PMID:26123064 D34A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940022A>C/c.101A>C/p.D34A +YPR201W ARR3 14437 arr3-E353A E353A amino_acid_mutation PMID:37224717 E353A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940979A>C/c.1058A>C/p.E353A +YPR201W ARR3 14438 arr3-E353D E353D amino_acid_mutation PMID:37224717 E353D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940980A>C/c.1059A>C/p.E353D +YPR201W ARR3 14439 arr3-E353K E353K amino_acid_mutation PMID:37224717 E353K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940978G>A/c.1057G>A/p.E353K +YPR201W ARR3 14440 arr3-E353L E353L amino_acid_mutation PMID:37224717 E353L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940978_940979delGAinsCT/c.1057_1058delGAinsCT/p.E353L +YPR201W ARR3 14441 arr3-E353Q E353Q amino_acid_mutation PMID:37224717 E353Q False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940978G>C/c.1057G>C/p.E353Q +YPR201W ARR3 14442 arr3-I152A I152A amino_acid_mutation PMID:37224717 I152A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940375_940376delATinsGC/c.454_455delATinsGC/p.I152A +YPR201W ARR3 14443 arr3-I152S I152S amino_acid_mutation PMID:37224717 I152S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940376T>G/c.455T>G/p.I152S +YPR201W ARR3 14444 arr3-L156A L156A amino_acid_mutation PMID:37224717 L156A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940387_940388delCTinsGC/c.466_467delCTinsGC/p.L156A +YPR201W ARR3 14445 arr3-L156F L156F amino_acid_mutation PMID:37224717 L156F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940387_940389delCTAinsTTT/c.466_468delCTAinsTTT/p.L156F +YPR201W ARR3 14446 arr3-N117A N117A amino_acid_mutation PMID:26123064 N117A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940270_940271delAAinsGC/c.349_350delAAinsGC/p.N117A +YPR201W ARR3 14447 arr3-P377L P377L amino_acid_mutation PMID:37224717 P377L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.941051C>T/c.1130C>T/p.P377L +YPR201W ARR3 14448 arr3-Q180A Q180A amino_acid_mutation PMID:37224717 Q180A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940459_940460delCAinsGC/c.538_539delCAinsGC/p.Q180A +YPR201W ARR3 14449 arr3-Q180D Q180D amino_acid_mutation PMID:37224717 Q180D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940459_940461delCAGinsGAC/c.538_540delCAGinsGAC/p.Q180D +YPR201W ARR3 14450 arr3-Q180K Q180K amino_acid_mutation PMID:37224717 Q180K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940459C>A/c.538C>A/p.Q180K +YPR201W ARR3 14451 arr3-Q180L Q180L amino_acid_mutation PMID:37224717 Q180L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940460A>T/c.539A>T/p.Q180L +YPR201W ARR3 14452 arr3-Q180N Q180N amino_acid_mutation PMID:37224717 Q180N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940459_940461delCAGinsAAC/c.538_540delCAGinsAAC/p.Q180N +YPR201W ARR3 14453 arr3-R150A R150A amino_acid_mutation PMID:26123064 R150A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940369_940370delAGinsGC/c.448_449delAGinsGC/p.R150A +YPR201W ARR3 14454 arr3-R150P R150P amino_acid_mutation PMID:37224717 R150P False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940369_940370delAGinsCC/c.448_449delAGinsCC/p.R150P +YPR201W ARR3 14455 arr3-V155A V155A amino_acid_mutation PMID:37224717 V155A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940385T>C/c.464T>C/p.V155A +YPR201W ARR3 14456 arr3-V155C V155C amino_acid_mutation PMID:37224717 V155C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940384_940386delGTGinsTGT/c.463_465delGTGinsTGT/p.V155C +YPR201W ARR3 14457 arr3-V155D V155D amino_acid_mutation PMID:37224717 V155D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940385_940386delTGinsAC/c.464_465delTGinsAC/p.V155D +YPR201W ARR3 14458 arr3-V155K V155K amino_acid_mutation PMID:37224717 V155K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940384_940385delGTinsAA/c.463_464delGTinsAA/p.V155K +YPR201W ARR3 14459 arr3-V155L V155L amino_acid_mutation PMID:37224717 V155L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940384G>C/c.463G>C/p.V155L +YPR201W ARR3 14460 arr3-V173A V173A amino_acid_mutation PMID:37224717 V173A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940439T>C/c.518T>C/p.V173A +YPR201W ARR3 14461 arr3-V173C V173C amino_acid_mutation PMID:37224717 V173C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940438_940439delGTinsTG/c.517_518delGTinsTG/p.V173C +YPR201W ARR3 14462 arr3-V173D V173D amino_acid_mutation PMID:37224717 V173D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940439T>A/c.518T>A/p.V173D +YPR201W ARR3 14463 arr3-V173K V173K amino_acid_mutation PMID:37224717 V173K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940438_940440delGTTinsAAG/c.517_519delGTTinsAAG/p.V173K +YPR201W ARR3 14464 arr3-V173L V173L amino_acid_mutation PMID:37224717 V173L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940438G>C/c.517G>C/p.V173L +YPR201W ARR3 14465 arr3-W130A W130A amino_acid_mutation PMID:26123064 W130A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940309_940310delTGinsGC/c.388_389delTGinsGC/p.W130A diff --git a/results/sgd/description_semicolon/allele_auto_fix.tsv b/results/sgd/description_semicolon/allele_auto_fix.tsv new file mode 100644 index 0000000..a1474c5 --- /dev/null +++ b/results/sgd/description_semicolon/allele_auto_fix.tsv @@ -0,0 +1,6 @@ +systematic_id allele_id allele_name allele_description allele_type change_description_to change_name_to change_type_to auto_fix_comment sequence_error solution_index allele_parts rules_applied reference +YNL304W 11804 ypt11-G40D G40D amino_acid_dummy G102D ypt11-G102D amino_acid_mutation old_coords_fix, revision 051111: G40 G40D amino_acid_mutation:single_aa PMID:12391144,PMID:18595704 +YNL304W 11805 ypt11-I144N I144N amino_acid_dummy I206N ypt11-I206N amino_acid_mutation old_coords_fix, revision 051111: I144 I144N amino_acid_mutation:single_aa PMID:12391144 +YNL304W 11815 ypt11-V246D V246D amino_acid_dummy V308D ypt11-V308D amino_acid_mutation old_coords_fix, revision 051111: V246 V246D amino_acid_mutation:single_aa PMID:12391144 +YOL086C 12198 adh1-TMB3000 V58T, S109P, L116S, Q147E, I151V, Y294C amino_acid_dummy V59T,S110P,L117S,Q148E,I152V,Y295C amino_acid_mutation multi_shift_fix V58|S109|L116|Q147|I151|Y294 V58T|S109P|L116S|Q147E|I151V|Y294C amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa PMID:18302314 +YPR161C 14270 sgv1-35 S45G, F70L, I147T, I200T, E316G, I387T, K470R, V482A, K522R amino_acid_dummy S46G,F71L,I148T,I201T,E317G,I388T,K471R,V483A,K523R amino_acid_mutation multi_shift_fix S45|F70|I147|I200|E316|I387|K470|V482|K522 S45G|F70L|I147T|I200T|E316G|I387T|K470R|V482A|K522R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa PMID:12972617,PMID:21552543,PMID:27708008 diff --git a/results/sgd/description_semicolon/allele_description_semicolon_transvar.tsv b/results/sgd/description_semicolon/allele_description_semicolon_transvar.tsv new file mode 100644 index 0000000..49c9d32 --- /dev/null +++ b/results/sgd/description_semicolon/allele_description_semicolon_transvar.tsv @@ -0,0 +1,1944 @@ +systematic_id gene_name allele_id allele_name allele_description allele_type reference allele_parts needs_fixing change_description_to rules_applied pattern_error invalid_error sequence_error change_type_to transvar_coordinates +Q0085 ATP6 29 atp6-L247R L247R amino_acid_mutation PMID:20056103,PMID:30414414 L247R False amino_acid_mutation:single_aa amino_acid_mutation chrmt:g.29225_29226delTTinsAG/c.739_740delTTinsAG/p.L247R +YAL005C SSA1 87 SSA1-21 L483W amino_acid_mutation PMID:21379326 L483W False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.139984A>C/c.1448T>G/p.L483W +YAL005C SSA1 89 ssa1-45 P418L amino_acid_mutation PMID:16413483,PMID:21625512 P418L False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.140179G>A/c.1253C>T/p.P418L +YAL005C SSA1 94 ssa1-C264D C264D amino_acid_mutation PMID:36030825 C264D False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.140894_140895delTGinsGA/c.790_791delTGinsGA/p.C264D +YAL005C SSA1 95 ssa1-C264D,C303D C264D, C303D amino_acid_mutation PMID:22809627,PMID:36030825 C264D|C303D False C264D,C303D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.140894_140895delTGinsGA/c.790_791delTGinsGA/p.C264D|chrI:g.140524_140525delTGinsGA/c.907_908delTGinsGA/p.C303D +YAL005C SSA1 96 ssa1-C264S C264S amino_acid_mutation PMID:22809627,PMID:36030825 C264S False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.140895A>T/c.790T>A/p.C264S +YAL005C SSA1 97 ssa1-C264S,C303S C264S, C303S amino_acid_mutation PMID:22809627,PMID:36030825 C264S|C303S False C264S,C303S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.140895A>T/c.790T>A/p.C264S|chrI:g.140525A>T/c.907T>A/p.C303S +YAL005C SSA1 98 ssa1-C303D C303D amino_acid_mutation PMID:36030825 C303D False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.140524_140525delTGinsGA/c.907_908delTGinsGA/p.C303D +YAL005C SSA1 99 ssa1-C303S C303S amino_acid_mutation PMID:22809627,PMID:36030825 C303S False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.140525A>T/c.907T>A/p.C303S +YAL020C ATS1 129 ats1-(kti13-1) W229C amino_acid_mutation PMID:18466297 W229C False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.113929C>A/c.687G>T/p.W229C +YAL029C MYO4 144 myo4-(F1056R, I1057R) F1056R, I1057R amino_acid_mutation PMID:20439999 F1056R|I1057R False F1056R,I1057R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.89104_89105delTTinsCG/c.3166_3167delTTinsCG/p.F1056R|chrI:g.89100_89101delTTinsGG/c.3170_3171delTTinsGG/p.I1057R +YAL029C MYO4 145 myo4-(W1325D, Y1329D) W1325D, Y1329D amino_acid_mutation PMID:20439999 W1325D|Y1329D False W1325D,Y1329D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.88296_88298delTGGinsGAC/c.3973_3975delTGGinsGAC/p.W1325D|chrI:g.88286A>C/c.3985T>G/p.Y1329D +YAL034W-A MTW1 151 mtw1-1 G64E amino_acid_mutation PMID:10761928,PMID:32878900 G64E False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.79908G>A/c.191G>A/p.G64E +YAL040C CLN3 183 CLN3-(DAF1-1) Y398* partial_amino_acid_deletion PMID:3062366 Y398* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion +YAL040C CLN3 184 CLN3-(WHI1-1) Q404* partial_amino_acid_deletion PMID:2907481 Q404* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion +YAL040C CLN3 185 CLN3-1 Q404* partial_amino_acid_deletion PMID:11290704,PMID:17596521,PMID:1832338,PMID:2907481 Q404* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion +YAL041W CDC24 202 cdc24-m1 S189F amino_acid_mutation PMID:33689470,PMID:35454091,PMID:9428768 S189F False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.63405C>T/c.566C>T/p.S189F +YAR002W NUP60 252 nup60-K467N K467N amino_acid_mutation PMID:35735140 K467N False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.153657A>C/c.1401A>C/p.K467N +YAR002W NUP60 253 nup60-K467R K467R amino_acid_mutation PMID:35373738,PMID:35735140 K467R False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.153656A>G/c.1400A>G/p.K467R +YAR007C RFA1 260 rfa1-CCAA C505A, C508A amino_acid_mutation PMID:34764291,PMID:9819409 C505A|C508A False C505A,C508A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.157106_157107delTGinsGC/c.1513_1514delTGinsGC/p.C505A|chrI:g.157176_157177delTGinsGC/c.1522_1523delTGinsGC/p.C508A +YAR007C RFA1 266 rfa1-G77E G77E amino_acid_mutation PMID:29358048,PMID:35086935,PMID:37166686 G77E False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.158389_158390delGTinsAG/c.230_231delGTinsAG/p.G77E +YAR007C RFA1 274 rfa1-SKYD S191K, Y193D amino_acid_mutation PMID:34764291 S191K|Y193D False S191K,Y193D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.158047_158049delTCTinsAAG/c.571_573delTCTinsAAG/p.S191K|chrI:g.158043A>C/c.577T>G/p.Y193D +YAR007C RFA1 275 rfa1-SSL F11S, I14S, F15L amino_acid_mutation PMID:34764291 F11S|I14S|F15L False F11S,I14S,F15L amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.158588A>G/c.32T>C/p.F11S|chrI:g.158579A>C/c.41T>G/p.I14S|chrI:g.158577A>G/c.43T>C/p.F15L +YAR007C RFA1 300 rfa1-zm1 K494A amino_acid_mutation PMID:33602817 K494A False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.157139_157140delAAinsGC/c.1480_1481delAAinsGC/p.K494A +YAR007C RFA1 301 rfa1-zm2 N492D, K493R, K494R amino_acid_mutation PMID:33602817 N492D|K493R|K494R False N492D,K493R,K494R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrI:g.157146T>C/c.1474A>G/p.N492D|chrI:g.157142T>C/c.1478A>G/p.K493R|chrI:g.157139T>C/c.1481A>G/p.K494R +YAR019C CDC15 312 cdc15-as1 L99G amino_acid_mutation PMID:11101520,PMID:32385287,PMID:33481703,PMID:36196991 L99G False amino_acid_mutation:single_aa amino_acid_mutation chrI:g.174840_174841delCTinsGG/c.295_296delCTinsGG/p.L99G +YBL005W PDR3 333 pdr3-18 G834S amino_acid_mutation PMID:20146400 G834S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.219969G>A/c.2500G>A/p.G834S +YBL005W PDR3 335 pdr3-7 G253E amino_acid_mutation PMID:20146400 G253E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.218227G>A/c.758G>A/p.G253E +YBL007C SLA1 342 sla1-AAA L803A, L804A, D805A amino_acid_mutation PMID:20150898 L803A|L804A|D805A False L803A,L804A,D805A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.213959_213960delTTinsGC/c.2407_2408delTTinsGC/p.L803A|chrII:g.213956_213957delTTinsGC/c.2410_2411delTTinsGC/p.L804A|chrII:g.213953T>G/c.2414A>C/p.D805A +YBL016W FUS3 354 fus3-1 E192K amino_acid_mutation PMID:2406028 E192K False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.193024G>A/c.574G>A/p.E192K +YBL019W APN2 386 apn2-Cat(D222N,E59Q) E59Q, D222N amino_acid_mutation PMID:36198268 E59Q|D222N False E59Q,D222N amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.184527G>C/c.175G>C/p.E59Q|chrII:g.185016G>A/c.664G>A/p.D222N +YBL019W APN2 387 apn2-R205E R205E amino_acid_mutation PMID:36198268 R205E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.184965_184966delAGinsGA/c.613_614delAGinsGA/p.R205E +YBL019W APN2 388 apn2-R208E R208E amino_acid_mutation PMID:36198268 R208E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.184974_184975delCGinsGA/c.622_623delCGinsGA/p.R208E +YBL019W APN2 389 apn2-Y33E Y33E amino_acid_mutation PMID:36198268 Y33E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.184449_184451delTATinsGAG/c.97_99delTATinsGAG/p.Y33E +YBL022C PIM1 420 pim1-S1015A S1015A amino_acid_mutation PMID:37331598,PMID:9405361 S1015A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.178233A>C/c.3043T>G/p.S1015A +YBL023C MCM2 425 mcm2-3A Y79A, Y82A, Y91A amino_acid_mutation PMID:31451562,PMID:31613222 Y79A|Y82A|Y91A False Y79A,Y82A,Y91A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.177291_177292delTAinsGC/c.235_236delTAinsGC/p.Y79A|chrII:g.177282_177283delTAinsGC/c.244_245delTAinsGC/p.Y82A|chrII:g.177255_177256delTAinsGC/c.271_272delTAinsGC/p.Y91A +YBL032W HEK2 458 hek2-(khd1-MUT) T352A, T355A, S358A, S360A, S362A, S381A amino_acid_mutation PMID:17588515 T352A|T355A|S358A|S360A|S362A|S381A False T352A,T355A,S358A,S360A,S362A,S381A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.161237A>G/c.1054A>G/p.T352A|chrII:g.161246A>G/c.1063A>G/p.T355A|chrII:g.161255T>G/c.1072T>G/p.S358A|chrII:g.161261T>G/c.1078T>G/p.S360A|chrII:g.161267T>G/c.1084T>G/p.S362A|chrII:g.161324T>G/c.1141T>G/p.S381A +YBL033C RIB1 459 rib1-C148S C148S amino_acid_mutation PMID:32265460 C148S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.159252A>T/c.442T>A/p.C148S +YBL033C RIB1 460 rib1-C159S C159S amino_acid_mutation PMID:32265460 C159S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.159219A>T/c.475T>A/p.C159S +YBL033C RIB1 461 rib1-C161S C161S amino_acid_mutation PMID:32265460 C161S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.159213A>T/c.481T>A/p.C161S +YBL064C PRX1 532 prx1-C91A C91A amino_acid_mutation PMID:31389622 C91A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.100885_100886delTGinsGC/c.271_272delTGinsGC/p.C91A +YBL064C PRX1 533 prx1-P233stop P233stop partial_amino_acid_deletion PMID:31389622,PMID:37258762 P233stop False P233* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrII:g.100458_100460delCCTinsTAA/c.697_699delCCTinsTAA/p.P233* +YBL071W-A KTI11 545 kti11-(KTI5) C27S amino_acid_mutation PMID:18755837 C27S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.90056T>A/c.79T>A/p.C27S +YBL078C ATG8 566 atg8-L55W,T56A,V61W,R65A L55W, T56A, V61W, R65A amino_acid_mutation PMID:34095778 L55W|T56A|V61W|R65A False L55W,T56A,V61W,R65A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.80567_80569delCTTinsTGG/c.163_165delCTTinsTGG/p.L55W|chrII:g.80566T>C/c.166A>G/p.T56A|chrII:g.80549_80551delGTTinsTGG/c.181_183delGTTinsTGG/p.V61W|chrII:g.80538_80539delAGinsGC/c.193_194delAGinsGC/p.R65A +YBL078C ATG8 567 atg8-P85L,P86L P85L, P86L amino_acid_mutation PMID:34095778 P85L|P86L False P85L,P86L amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.80478G>A/c.254C>T/p.P85L|chrII:g.80519G>A/c.257C>T/p.P86L +YBL078C ATG8 569 atg8-R65A,P85L,P86L R65A, P85L, P86L amino_acid_mutation PMID:34095778 R65A|P85L|P86L False R65A,P85L,P86L amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.80538_80539delAGinsGC/c.193_194delAGinsGC/p.R65A|chrII:g.80478G>A/c.254C>T/p.P85L|chrII:g.80519G>A/c.257C>T/p.P86L +YBL084C CDC27 584 cdc27-663 G613D amino_acid_mutation PMID:7925276 G613D False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.67607_67608delGAinsAC/c.1838_1839delGAinsAC/p.G613D +YBL088C TEL1 592 tel1-hy184 F1752I, D1985N, E2133K, R2735G, E2737V amino_acid_mutation PMID:17954565 F1752I|D1985N|E2133K|R2735G|E2737V False F1752I,D1985N,E2133K,R2735G,E2737V amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.54129A>T/c.5254T>A/p.F1752I|chrII:g.53430C>T/c.5953G>A/p.D1985N|chrII:g.52986C>T/c.6397G>A/p.E2133K|chrII:g.51180T>C/c.8203A>G/p.R2735G|chrII:g.51173T>A/c.8210A>T/p.E2737V +YBL088C TEL1 593 tel1-hy385 N2692D amino_acid_mutation PMID:17954565 N2692D False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.51309T>C/c.8074A>G/p.N2692D +YBL088C TEL1 594 tel1-hy394 I1765V, K1879N, N2004S, R2675G amino_acid_mutation PMID:17954565 I1765V|K1879N|N2004S|R2675G False I1765V,K1879N,N2004S,R2675G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.54090T>C/c.5293A>G/p.I1765V|chrII:g.53746T>G/c.5637A>C/p.K1879N|chrII:g.53372T>C/c.6011A>G/p.N2004S|chrII:g.51360T>C/c.8023A>G/p.R2675G +YBL088C TEL1 595 tel1-hy544 F2576V amino_acid_mutation PMID:17954565 F2576V False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.51657A>C/c.7726T>G/p.F2576V +YBL088C TEL1 596 tel1-hy628 N2185H, G2252C amino_acid_mutation PMID:17954565 N2185H|G2252C False N2185H,G2252C amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.52830T>G/c.6553A>C/p.N2185H|chrII:g.52629C>A/c.6754G>T/p.G2252C +YBL088C TEL1 597 tel1-hy680 Q2764H amino_acid_mutation PMID:17954565 Q2764H False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.51091T>A/c.8292A>T/p.Q2764H +YBL088C TEL1 598 tel1-hy909 A2287V, I2336T, K2751R amino_acid_mutation PMID:17954565,PMID:31645360 A2287V|I2336T|K2751R False A2287V,I2336T,K2751R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.52523G>A/c.6860C>T/p.A2287V|chrII:g.52376A>G/c.7007T>C/p.I2336T|chrII:g.51131T>C/c.8252A>G/p.K2751R +YBL099W ATP1 604 ATP1-75 N102I amino_acid_mutation PMID:17492370 N102I False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.37357A>T/c.305A>T/p.N102I +YBL105C PKC1 621 PKC1* R398A,R405A,K406A amino_acid_mutation PMID:30478248 R398A|R405A|K406A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.16504_16505delCGinsGC/c.1192_1193delCGinsGC/p.R398A|chrII:g.16483_16484delAGinsGC/c.1213_1214delAGinsGC/p.R405A|chrII:g.16480_16481delAAinsGC/c.1216_1217delAAinsGC/p.K406A +YBL105C PKC1 622 PKC1-A398,A405,A406 R398A, R405A, K406A amino_acid_mutation PMID:10625705 R398A|R405A|K406A False R398A,R405A,K406A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.16504_16505delCGinsGC/c.1192_1193delCGinsGC/p.R398A|chrII:g.16483_16484delAGinsGC/c.1213_1214delAGinsGC/p.R405A|chrII:g.16480_16481delAAinsGC/c.1216_1217delAAinsGC/p.K406A +YBL105C PKC1 623 PKC1-R398P R398P amino_acid_mutation PMID:30586320,PMID:32184286,PMID:33508381,PMID:37379203,PMID:8846785 R398P False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.16504C>G/c.1193G>C/p.R398P +YBL105C PKC1 628 pkc1-4C/S C442S, C445S, C512S, C515S amino_acid_mutation PMID:28065784,PMID:9395299 C442S|C445S|C512S|C515S False C442S,C445S,C512S,C515S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.16373A>T/c.1324T>A/p.C442S|chrII:g.16364A>T/c.1333T>A/p.C445S|chrII:g.16163A>T/c.1534T>A/p.C512S|chrII:g.16420A>T/c.1543T>A/p.C515S +YBR002C RER2 645 rer2-2 S209N amino_acid_mutation PMID:8367481,PMID:9858571 S209N False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.241943C>T/c.626G>A/p.S209N +YBR038W CHS2 777 GAL-Chs2p(4S-A)-YFP S14A, S60A, S69A, S100A amino_acid_mutation PMID:19713768 S14A|S60A|S69A|S100A False S14A,S60A,S69A,S100A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.311937T>G/c.40T>G/p.S14A|chrII:g.312075T>G/c.178T>G/p.S60A|chrII:g.312102T>G/c.205T>G/p.S69A|chrII:g.312195T>G/c.298T>G/p.S100A +YBR039W ATP3 784 ATP3-1 T297A amino_acid_mutation PMID:17492370 T297A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.316463A>G/c.889A>G/p.T297A|chrII:g.316463A>G/c.889A>G/p.T297A +YBR039W ATP3 785 ATP3-5 T297A amino_acid_mutation PMID:12006643,PMID:17492370,PMID:21131528 T297A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.316463A>G/c.889A>G/p.T297A|chrII:g.316463A>G/c.889A>G/p.T297A +YBR060C ORC2 804 orc2-1 P603L amino_acid_mutation PMID:16716188,PMID:18845545,PMID:21552543,PMID:23390603,PMID:24336748,PMID:25721128,PMID:27708008,PMID:34544143,PMID:7774008,PMID:8266071,PMID:9744871 P603L False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.360707G>A/c.1808C>T/p.P603L +YBR060C ORC2 808 orc2-5d S188D amino_acid_mutation PMID:19068484 S188D False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.361951_361953delTCGinsGAC/c.562_564delTCGinsGAC/p.S188D +YBR060C ORC2 810 orc2-K406R K406R amino_acid_mutation PMID:35926881 K406R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.361298T>C/c.1217A>G/p.K406R +YBR060C ORC2 811 orc2-K406R,K419R,K434R,K592R K406R, K419R, K434R, K592R amino_acid_mutation PMID:35926881 K406R|K419R|K434R|K592R False K406R,K419R,K434R,K592R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.361298T>C/c.1217A>G/p.K406R|chrII:g.361259T>C/c.1256A>G/p.K419R|chrII:g.361214T>C/c.1301A>G/p.K434R|chrII:g.360864T>C/c.1775A>G/p.K592R +YBR060C ORC2 812 orc2-K419R K419R amino_acid_mutation PMID:35926881 K419R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.361259T>C/c.1256A>G/p.K419R +YBR060C ORC2 813 orc2-K434R K434R amino_acid_mutation PMID:35926881 K434R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.361214T>C/c.1301A>G/p.K434R +YBR060C ORC2 814 orc2-K592R K592R amino_acid_mutation PMID:35926881 K592R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.360864T>C/c.1775A>G/p.K592R +YBR088C POL30 860 pol30-104 A251V amino_acid_mutation PMID:18245822,PMID:23624835 A251V False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425015G>A/c.752C>T/p.A251V +YBR088C POL30 865 pol30-6 D41A, D42A amino_acid_mutation PMID:31451562 D41A|D42A False D41A,D42A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425645T>G/c.122A>C/p.D41A|chrII:g.425642T>G/c.125A>C/p.D42A +YBR088C POL30 866 pol30-79 L126A, I128A amino_acid_mutation PMID:31451562 L126A|I128A False L126A,I128A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425390_425391delTTinsGC/c.376_377delTTinsGC/p.L126A|chrII:g.425427_425428delATinsGC/c.382_383delATinsGC/p.I128A +YBR088C POL30 867 pol30-8 R61A, D63A amino_acid_mutation PMID:31451562 R61A|D63A False R61A,D63A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.425585_425586delAGinsGC/c.181_182delAGinsGC/p.R61A|chrII:g.425579T>G/c.188A>C/p.D63A +YBR102C EXO84 913 exo84-2 R636P, S637* amino_acid_deletion_and_mutation PMID:11425851 R636P|S637* False R636P,S637* amino_acid_mutation:single_aa|nonsense_mutation:stop_codon_star amino_acid_deletion_and_mutation chrII:g.445417_445418delAGinsCC/c.1906_1907delAGinsCC/p.R636P|chrII:g.445413_445414delCTinsAA/c.1910_1911delCTinsAA/p.S637* +YBR135W CKS1 1011 cks1-35 F8L, D36G, I79V, V145A amino_acid_mutation PMID:21552543,PMID:23390603,PMID:27708008,PMID:8491379 F8L|D36G|I79V|V145A False F8L,D36G,I79V,V145A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.504875T>C/c.22T>C/p.F8L|chrII:g.504960A>G/c.107A>G/p.D36G|chrII:g.505088A>G/c.235A>G/p.I79V|chrII:g.505287T>C/c.434T>C/p.V145A +YBR135W CKS1 1014 cks1-R33W/S82E/R102A R33E, S82E, R102A amino_acid_mutation PMID:21993622 R33E|S82E|R102A False R33E,S82E,R102A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.504950_504951delCGinsGA/c.97_98delCGinsGA/p.R33E|chrII:g.505097_505099delTCTinsGAG/c.244_246delTCTinsGAG/p.S82E|chrII:g.505157_505158delAGinsGC/c.304_305delAGinsGC/p.R102A +YBR135W CKS1 1015 cks1-ts42 R18G, M45T, M50T, T80A, E86D, K101R, Q132R amino_acid_mutation PMID:8491379 R18G|M45T|M50T|T80A|E86D|K101R|Q132R False R18G,M45T,M50T,T80A,E86D,K101R,Q132R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.504905A>G/c.52A>G/p.R18G|chrII:g.504987T>C/c.134T>C/p.M45T|chrII:g.505002T>C/c.149T>C/p.M50T|chrII:g.505091A>G/c.238A>G/p.T80A|chrII:g.505111A>C/c.258A>C/p.E86D|chrII:g.505155A>G/c.302A>G/p.K101R|chrII:g.505248A>G/c.395A>G/p.Q132R +YBR136W MEC1 1018 mec1-100 F1179S, N1700S amino_acid_mutation PMID:34531325,PMID:34569643,PMID:35778827 F1179S|N1700S False F1179S,N1700S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.509203T>C/c.3536T>C/p.F1179S|chrII:g.510766A>G/c.5099A>G/p.N1700S +YBR151W APD1 1102 apd1-C110A C110A amino_acid_mutation PMID:30879301 C110A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545355_545356delTGinsGC/c.328_329delTGinsGC/p.C110A +YBR151W APD1 1103 apd1-C128A C128A amino_acid_mutation PMID:30879301 C128A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545409_545410delTGinsGC/c.382_383delTGinsGC/p.C128A +YBR151W APD1 1104 apd1-C207A C207A amino_acid_mutation PMID:30879301 C207A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545646_545647delTGinsGC/c.619_620delTGinsGC/p.C207A +YBR151W APD1 1105 apd1-C216A C216A amino_acid_mutation PMID:30879301 C216A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545673_545674delTGinsGC/c.646_647delTGinsGC/p.C216A +YBR151W APD1 1106 apd1-C309A C309A amino_acid_mutation PMID:30879301 C309A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545952_545953delTGinsGC/c.925_926delTGinsGC/p.C309A +YBR151W APD1 1107 apd1-C33A C33A amino_acid_mutation PMID:30879301 C33A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545124_545125delTGinsGC/c.97_98delTGinsGC/p.C33A +YBR151W APD1 1108 apd1-C44A C44A amino_acid_mutation PMID:30879301 C44A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545157_545158delTGinsGC/c.130_131delTGinsGC/p.C44A +YBR151W APD1 1109 apd1-C48A C48A amino_acid_mutation PMID:30879301 C48A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545169_545170delTGinsGC/c.142_143delTGinsGC/p.C48A +YBR151W APD1 1110 apd1-C95A C95A amino_acid_mutation PMID:30879301 C95A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545310_545311delTGinsGC/c.283_284delTGinsGC/p.C95A +YBR151W APD1 1111 apd1-H255A H255A amino_acid_mutation PMID:30879301 H255A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545790_545791delCAinsGC/c.763_764delCAinsGC/p.H255A +YBR151W APD1 1112 apd1-H255A/H259A H255A, H259A amino_acid_mutation PMID:30879301 H255A|H259A False H255A,H259A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545790_545791delCAinsGC/c.763_764delCAinsGC/p.H255A|chrII:g.545802_545803delCAinsGC/c.775_776delCAinsGC/p.H259A +YBR151W APD1 1113 apd1-H255C H255C amino_acid_mutation PMID:30879301 H255C False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545790_545791delCAinsTG/c.763_764delCAinsTG/p.H255C +YBR151W APD1 1114 apd1-H255C/H259C H255C, H259C amino_acid_mutation PMID:30879301 H255C|H259C False H255C,H259C amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545790_545791delCAinsTG/c.763_764delCAinsTG/p.H255C|chrII:g.545802_545803delCAinsTG/c.775_776delCAinsTG/p.H259C +YBR151W APD1 1115 apd1-H259C H259C amino_acid_mutation PMID:30879301 H259C False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.545802_545803delCAinsTG/c.775_776delCAinsTG/p.H259C +YBR151W APD1 1116 apd1-W316STOP W316* partial_amino_acid_deletion PMID:30879301 W316* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrII:g.545974G>A/c.947G>A/p.W316* +YBR160W CDC28 1143 CDC28-dn1 D154N amino_acid_mutation PMID:3288995 D154N False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.560390G>A/c.460G>A/p.D154N +YBR160W CDC28 1144 CDC28-dn2 P164S amino_acid_mutation PMID:3288995 P164S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.560567C>T/c.490C>T/p.P164S +YBR160W CDC28 1145 CDC28-w34 Y23H, L61I, H130Y amino_acid_mutation PMID:24374311 Y23H|L61I|H130Y False Y23H,L61I,H130Y amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.560144T>C/c.67T>C/p.Y23H|chrII:g.560258T>A/c.181T>A/p.L61I|chrII:g.560465C>T/c.388C>T/p.H130Y +YBR160W CDC28 1146 CDC28-w38 I56L, K209E amino_acid_mutation PMID:24374311 I56L|K209E False I56L,K209E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.560243A>C/c.166A>C/p.I56L|chrII:g.560702A>G/c.625A>G/p.K209E +YBR160W CDC28 1147 CDC28-w4 K24R, D80N, R97G, S213G amino_acid_mutation PMID:24374311 K24R|D80N|R97G|S213G False K24R,D80N,R97G,S213G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.560148A>G/c.71A>G/p.K24R|chrII:g.560315G>A/c.238G>A/p.D80N|chrII:g.560366A>G/c.289A>G/p.R97G|chrII:g.560714A>G/c.637A>G/p.S213G +YBR160W CDC28 1148 CDC28-w6 S2G, S46G, K96T, K187N, K274R amino_acid_mutation PMID:24374311 S2G|S46G|K96T|K187N|K274R False S2G,S46G,K96T,K187N,K274R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.560081A>G/c.4A>G/p.S2G|chrII:g.560213A>G/c.136A>G/p.S46G|chrII:g.560364A>C/c.287A>C/p.K96T|chrII:g.560491A>C/c.561A>C/p.K187N|chrII:g.560898A>G/c.821A>G/p.K274R +YBR160W CDC28 1149 CDC28-w7 S46C, K96I, Q251L amino_acid_mutation PMID:24374311 S46C|K96I|Q251L False S46C,K96I,Q251L amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.560213A>T/c.136A>T/p.S46C|chrII:g.560364A>T/c.287A>T/p.K96I|chrII:g.560829A>T/c.752A>T/p.Q251L +YBR160W CDC28 1150 CDC28-w8 K223N, R288G amino_acid_mutation PMID:24374311 K223N|R288G False K223N,R288G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.560746G>C/c.669G>C/p.K223N|chrII:g.560939A>G/c.862A>G/p.R288G +YBR160W CDC28 1153 cdc28-10 G268D amino_acid_mutation PMID:3540606 G268D False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.560880G>A/c.803G>A/p.G268D +YBR160W CDC28 1154 cdc28-127 C127Y amino_acid_mutation PMID:9891070 C127Y False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.560457G>A/c.380G>A/p.C127Y +YBR160W CDC28 1155 cdc28-13 R283Q amino_acid_mutation PMID:10704371,PMID:12050115,PMID:21552543,PMID:23962978,PMID:27708008,PMID:28839131,PMID:32878900,PMID:33480968,PMID:34114567,PMID:3540606,PMID:8670805 R283Q False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.560925G>A/c.848G>A/p.R283Q +YBR160W CDC28 1157 cdc28-1N P250L amino_acid_mutation PMID:1849457,PMID:3540606,PMID:7045699,PMID:8816438 P250L False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.560826C>T/c.749C>T/p.P250L +YBR160W CDC28 1158 cdc28-4 H128Y amino_acid_mutation PMID:19068484,PMID:19150427,PMID:23390603,PMID:23962978,PMID:27708008,PMID:32385287,PMID:3540606 H128Y False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.560459C>T/c.382C>T/p.H128Y|chrII:g.560459C>T/c.382C>T/p.H128Y +YBR160W CDC28 1159 cdc28-6 H128Y amino_acid_mutation PMID:1849457,PMID:7045699 H128Y False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.560459C>T/c.382C>T/p.H128Y|chrII:g.560459C>T/c.382C>T/p.H128Y +YBR160W CDC28 1160 cdc28-8 H292Y amino_acid_mutation PMID:3540606 H292Y False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.560951C>T/c.874C>T/p.H292Y +YBR160W CDC28 1161 cdc28-9 C121Y amino_acid_mutation PMID:3540606 C121Y False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.560439G>A/c.362G>A/p.C121Y +YBR160W CDC28 1162 cdc28-AF T18A, Y19F amino_acid_mutation PMID:26040289 T18A|Y19F False T18A,Y19F amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.560129A>G/c.52A>G/p.T18A|chrII:g.560133A>T/c.56A>T/p.Y19F +YBR160W CDC28 1166 cdc28-Y19F Y19F amino_acid_mutation PMID:26634277 Y19F False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.560133A>T/c.56A>T/p.Y19F +YBR160W CDC28 1167 cdc28-as1 F88G amino_acid_mutation PMID:12050115,PMID:19520826,PMID:24413167,PMID:26040289,PMID:27203179,PMID:32083180,PMID:33399537,PMID:33772579 F88G False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.560339_560340delTTinsGG/c.262_263delTTinsGG/p.F88G +YBR172C SMY2 1188 smy2-Y234A Y234A amino_acid_mutation PMID:19571182,PMID:36288698 Y234A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.580672_580673delTAinsGC/c.700_701delTAinsGC/p.Y234A +YBR179C FZO1 1194 fzo1-1 K538I, N543I, P553Q amino_acid_mutation PMID:9786948 K538I|N543I|P553Q False K538I,N543I,P553Q amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.587502T>A/c.1613A>T/p.K538I|chrII:g.587487T>A/c.1628A>T/p.N543I|chrII:g.587457G>T/c.1658C>A/p.P553Q +YBR179C FZO1 1197 fzo1-K200A K200A amino_acid_mutation PMID:9786948 K200A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.588516_588517delAAinsGC/c.598_599delAAinsGC/p.K200A +YBR179C FZO1 1198 fzo1-K371A K371A amino_acid_mutation PMID:9786948 K371A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.588003_588004delAAinsGC/c.1111_1112delAAinsGC/p.K371A +YBR179C FZO1 1217 fzo1-S201N S201N amino_acid_mutation PMID:9786948 S201N False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.588512_588514delTCAinsAAC/c.601_603delTCAinsAAC/p.S201N +YBR179C FZO1 1218 fzo1-T221A T221A amino_acid_mutation PMID:31740565,PMID:9786948 T221A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.588454T>C/c.661A>G/p.T221A +YBR223C TDP1 1291 tdp1-H432R H432R amino_acid_mutation PMID:27551064 H432R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.669003T>C/c.1295A>G/p.H432R +YBR234C ARC40 1297 arc40-118 E227A,R228A amino_acid_mutation PMID:20071330 E227A|R228A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.685913T>G/c.680A>C/p.E227A|chrII:g.685910_685911delAGinsGC/c.682_683delAGinsGC/p.R228A +YBR234C ARC40 1298 arc40-141 R129A amino_acid_mutation PMID:20071330 R129A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.686207_686208delAGinsGC/c.385_386delAGinsGC/p.R129A +YBR252W DUT1 1322 dut1-1 G82S amino_acid_mutation PMID:16617146,PMID:31647103 G82S False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.722836G>A/c.244G>A/p.G82S +YBR254C TRS20 1328 trs20-1 F5S, W53R amino_acid_mutation PMID:19416478,PMID:23049729 F5S|W53R False F5S,W53R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.724250A>G/c.14T>C/p.F5S|chrII:g.724107A>T/c.157T>A/p.W53R +YBR260C RGD1 1339 rgd1-R508A R508A amino_acid_mutation PMID:33508381 R508A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.733117_733118delAGinsGC/c.1522_1523delAGinsGC/p.R508A +YBR260C RGD1 1340 rgd1-S148A S148A amino_acid_mutation PMID:33508381 S148A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.734197_734198delAGinsGC/c.442_443delAGinsGC/p.S148A +YBR260C RGD1 1341 rgd1-S148E S148E amino_acid_mutation PMID:33508381 S148E False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.734196_734198delAGCinsGAG/c.442_444delAGCinsGAG/p.S148E +YBR275C RIF1 1356 rif1-RVxF,SILK V116R, F118R, I147R, L148R, R149A amino_acid_mutation PMID:24685139,PMID:32597753 V116R|F118R|I147R|L148R|R149A False V116R,F118R,I147R,L148R,R149A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.756760_756761delGTinsAG/c.346_347delGTinsAG/p.V116R|chrII:g.756754_756755delTTinsCG/c.352_353delTTinsCG/p.F118R|chrII:g.756666_756667delTTinsGG/c.440_441delTTinsGG/p.I147R|chrII:g.756664_756665delTTinsAG/c.442_443delTTinsAG/p.L148R|chrII:g.756661_756662delAGinsGC/c.445_446delAGinsGC/p.R149A +YBR275C RIF1 1358 rif1-hook K437E, K563E, K570E amino_acid_mutation PMID:28604726,PMID:32597753 K437E|K563E|K570E False K437E,K563E,K570E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.755798T>C/c.1309A>G/p.K437E|chrII:g.755420T>C/c.1687A>G/p.K563E|chrII:g.755399T>C/c.1708A>G/p.K570E +YBR275C RIF1 1359 rif1-pp1bs K114A, V116A, F118A, I147A, L148A, R149A amino_acid_mutation PMID:32597753 K114A|V116A|F118A|I147A|L148A|R149A False K114A,V116A,F118A,I147A,L148A,R149A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.756766_756767delAAinsGC/c.340_341delAAinsGC/p.K114A|chrII:g.756760A>G/c.347T>C/p.V116A|chrII:g.756754_756755delTTinsGC/c.352_353delTTinsGC/p.F118A|chrII:g.756667_756668delATinsGC/c.439_440delATinsGC/p.I147A|chrII:g.756664_756665delTTinsGC/c.442_443delTTinsGC/p.L148A|chrII:g.756661_756662delAGinsGC/c.445_446delAGinsGC/p.R149A +YBR279W PAF1 1362 paf1-2M Q41D I48K amino_acid_mutation PMID:34852272 Q41D|I48K False Q41D,I48K amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrII:g.761377_761379delCAAinsGAC/c.121_123delCAAinsGAC/p.Q41D|chrII:g.761399_761400delTCinsAG/c.143_144delTCinsAG/p.I48K +YBR290W BSD2 1375 Bsd2-STS210/17/24 S210A amino_acid_mutation PMID:17429078 S210A False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.783218T>G/c.628T>G/p.S210A +YBR294W SUL1 1377 sul1-G380R G380R amino_acid_mutation PMID:33560525 G380R False amino_acid_mutation:single_aa amino_acid_mutation chrII:g.790372G>A/c.1138G>A/p.G380R +YCL029C BIK1 1458 bik1-S419 C419S amino_acid_mutation PMID:7559759 C419S False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.68667A>T/c.1255T>A/p.C419S +YCL032W STE50 1463 ste50-H275P H275P amino_acid_mutation PMID:30650049 H275P False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64264A>C/c.824A>C/p.H275P +YCL032W STE50 1464 ste50-H275R H275R amino_acid_mutation PMID:30650049 H275R False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64264A>G/c.824A>G/p.H275R +YCL032W STE50 1465 ste50-I289T I289T amino_acid_mutation PMID:30650049 I289T False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64306T>C/c.866T>C/p.I289T +YCL032W STE50 1466 ste50-I289V,R323G I289V, R323G amino_acid_mutation PMID:30650049 I289V|R323G False I289V,R323G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64305A>G/c.865A>G/p.I289V|chrIII:g.64407A>G/c.967A>G/p.R323G +YCL032W STE50 1467 ste50-I320K I320K amino_acid_mutation PMID:19846660,PMID:30650049 I320K False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64399_64400delTTinsAG/c.959_960delTTinsAG/p.I320K +YCL032W STE50 1468 ste50-K260E,C290S,P304S K260E, C290S, P304S amino_acid_mutation PMID:30650049 K260E|C290S|P304S False K260E,C290S,P304S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64218A>G/c.778A>G/p.K260E|chrIII:g.64308T>A/c.868T>A/p.C290S|chrIII:g.64350C>T/c.910C>T/p.P304S +YCL032W STE50 1469 ste50-K260N,I307K K260N, I307K amino_acid_mutation PMID:30650049 K260N|I307K False K260N,I307K amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64220A>C/c.780A>C/p.K260N|chrIII:g.64360T>A/c.920T>A/p.I307K +YCL032W STE50 1470 ste50-L277S L277S amino_acid_mutation PMID:30650049 L277S False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64270T>C/c.830T>C/p.L277S +YCL032W STE50 1471 ste50-L300V,I307K L300V, I307K amino_acid_mutation PMID:30650049 L300V|I307K False L300V,I307K amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64338T>G/c.898T>G/p.L300V|chrIII:g.64360T>A/c.920T>A/p.I307K +YCL032W STE50 1472 ste50-L322S L322S amino_acid_mutation PMID:30650049 L322S False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64405T>C/c.965T>C/p.L322S +YCL032W STE50 1473 ste50-R274S,H275Y R274S, H275Y amino_acid_mutation PMID:30650049 R274S|H275Y False R274S,H275Y amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.63888A>C/c.822A>C/p.R274S|chrIII:g.64263C>T/c.823C>T/p.H275Y +YCL032W STE50 1474 ste50-R283G,Q294L R283G, Q294L amino_acid_mutation PMID:30650049 R283G|Q294L False R283G,Q294L amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64287A>G/c.847A>G/p.R283G|chrIII:g.63947A>T/c.881A>T/p.Q294L +YCL032W STE50 1475 ste50-R296G R296G amino_acid_mutation PMID:30650049,PMID:36538537 R296G False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.64326A>G/c.886A>G/p.R296G +YCL043C PDI1 1483 pdi1-1 L313P amino_acid_mutation PMID:21700223 L313P False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.49284A>G/c.938T>C/p.L313P +YCL055W KAR4 1492 kar4-A157P A157P amino_acid_mutation PMID:36930734 A157P False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28397G>C/c.469G>C/p.A157P +YCL055W KAR4 1494 kar4-A85P A85P amino_acid_mutation PMID:36930734 A85P False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28181G>C/c.253G>C/p.A85P +YCL055W KAR4 1495 kar4-C127Y C127Y amino_acid_mutation PMID:36930734 C127Y False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28308G>A/c.380G>A/p.C127Y +YCL055W KAR4 1496 kar4-E183K E183K amino_acid_mutation PMID:36930734 E183K False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28475G>A/c.547G>A/p.E183K +YCL055W KAR4 1497 kar4-E260G E260G amino_acid_mutation PMID:36930734 E260G False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28707A>G/c.779A>G/p.E260G +YCL055W KAR4 1498 kar4-E260K E260K amino_acid_mutation PMID:36930734 E260K False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28706G>A/c.778G>A/p.E260K +YCL055W KAR4 1499 kar4-F186S F186S amino_acid_mutation PMID:36930734 F186S False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28485T>C/c.557T>C/p.F186S +YCL055W KAR4 1500 kar4-G126A G126A amino_acid_mutation PMID:36930734 G126A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28305G>C/c.377G>C/p.G126A +YCL055W KAR4 1501 kar4-G287D G287D amino_acid_mutation PMID:36930734 G287D False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28788G>A/c.860G>A/p.G287D +YCL055W KAR4 1502 kar4-H213Y H213Y amino_acid_mutation PMID:36930734 H213Y False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28565C>T/c.637C>T/p.H213Y +YCL055W KAR4 1503 kar4-L255F L255F amino_acid_mutation PMID:36930734 L255F False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28693G>T/c.765G>T/p.L255F +YCL055W KAR4 1504 kar4-M207R M207R amino_acid_mutation PMID:36930734 M207R False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28548T>G/c.620T>G/p.M207R +YCL055W KAR4 1505 kar4-P273L P273L amino_acid_mutation PMID:36930734 P273L False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28746C>T/c.818C>T/p.P273L +YCL055W KAR4 1506 kar4-P293L P293L amino_acid_mutation PMID:36930734 P293L False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28770C>T/c.878C>T/p.P293L +YCL055W KAR4 1507 kar4-T264P T264P amino_acid_mutation PMID:36930734 T264P False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28718A>C/c.790A>C/p.T264P +YCL055W KAR4 1508 kar4-W156G W156G amino_acid_mutation PMID:36930734 W156G False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28394T>G/c.466T>G/p.W156G +YCL055W KAR4 1509 kar4-W212R W212R amino_acid_mutation PMID:36930734 W212R False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.28562T>A/c.634T>A/p.W212R +YCL061C MRC1 1517 mrc1-3A T169A, S215A, S229A amino_acid_mutation PMID:23178807 T169A|S215A|S229A False T169A,S215A,S229A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.21602T>C/c.505A>G/p.T169A|chrIII:g.21464A>C/c.643T>G/p.S215A|chrIII:g.21421_21422delAGinsGC/c.685_686delAGinsGC/p.S229A +YCL061C MRC1 1518 mrc1-8D S911D, S918D, S920D, T952D, S957D, T996D, S997D, S1006D amino_acid_mutation PMID:34387546,PMID:37166686 S911D|S918D|S920D|T952D|S957D|T996D|S997D|S1006D False S911D,S918D,S920D,T952D,S957D,T996D,S997D,S1006D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.19375_19376delTCinsGA/c.2731_2732delTCinsGA/p.S911D|chrIII:g.19354_19355delAGinsGA/c.2752_2753delAGinsGA/p.S918D|chrIII:g.19348_19349delTCinsGA/c.2758_2759delTCinsGA/p.S920D|chrIII:g.19252_19253delACinsGA/c.2854_2855delACinsGA/p.T952D|chrIII:g.19237_19238delAGinsGA/c.2869_2870delAGinsGA/p.S957D|chrIII:g.19119_19121delACAinsGAC/c.2986_2988delACAinsGAC/p.T996D|chrIII:g.19116_19118delTCAinsGAC/c.2989_2991delTCAinsGAC/p.S997D|chrIII:g.19089_19091delTCAinsGAC/c.3016_3018delTCAinsGAC/p.S1006D +YCR002C CDC10 1533 cdc10-1 D182N amino_acid_mutation PMID:21824003,PMID:27708008,PMID:4950437 D182N False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.117805C>T/c.544G>A/p.D182N +YCR002C CDC10 1535 cdc10-11 G179D amino_acid_mutation PMID:24398420,PMID:9884239 G179D False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.117813C>T/c.536G>A/p.G179D +YCR002C CDC10 1536 cdc10-2 G100E amino_acid_mutation PMID:17248617,PMID:24398420,PMID:27708008 G100E False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.118050C>T/c.299G>A/p.G100E|chrIII:g.118050C>T/c.299G>A/p.G100E +YCR002C CDC10 1537 cdc10-3 G100E amino_acid_mutation PMID:17248617,PMID:24398420,PMID:4950437 G100E False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.118050C>T/c.299G>A/p.G100E|chrIII:g.118050C>T/c.299G>A/p.G100E +YCR002C CDC10 1538 cdc10-4 G100E, V115A, S317N amino_acid_mutation PMID:17248617,PMID:24398420,PMID:27708008,PMID:32579428 G100E|V115A|S317N False G100E,V115A,S317N amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.118050C>T/c.299G>A/p.G100E|chrIII:g.118005A>G/c.344T>C/p.V115A|chrIII:g.117399C>T/c.950G>A/p.S317N +YCR002C CDC10 1539 cdc10-5 P3S, G44D amino_acid_mutation PMID:17248617,PMID:24398420 P3S|G44D False P3S,G44D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.118342G>A/c.7C>T/p.P3S|chrIII:g.118218C>T/c.131G>A/p.G44D +YCR010C ADY2 1552 ADY2-(YCR010C-G259D) G259D amino_acid_mutation PMID:17233767 G259D False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.132349C>T/c.776G>A/p.G259D +YCR010C ADY2 1553 ADY2-(YCR010C-L75Q) L75Q amino_acid_mutation PMID:17233767 L75Q False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.132901_132902delTTinsCA/c.223_224delTTinsCA/p.L75Q +YCR014C POL4 1595 pol4-D367E D367E amino_acid_mutation PMID:10438542,PMID:37070185 D367E False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.139833G>C/c.1101C>G/p.D367E +YCR035C RRP43 1608 rrp43-1 V212A amino_acid_mutation PMID:12364597 V212A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.192384A>G/c.635T>C/p.V212A +YCR042C TAF2 1627 taf2-ts6 D848K,E850K amino_acid_mutation PMID:27587401 D848K|E850K False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.202854_202856delGATinsAAG/c.2542_2544delGATinsAAG/p.D848K|chrIII:g.202850C>T/c.2548G>A/p.E850K +YCR084C TUP1 1674 tup1-C700R C700R amino_acid_mutation PMID:34849878 C700R False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.260355A>G/c.2098T>C/p.C700R +YCR084C TUP1 1675 tup1-D597N D597N amino_acid_mutation PMID:34849878 D597N False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.260664C>T/c.1789G>A/p.D597N +YCR084C TUP1 1677 tup1-H575Y H575Y amino_acid_mutation PMID:31167839,PMID:34849878 H575Y False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.260730G>A/c.1723C>T/p.H575Y +YCR084C TUP1 1678 tup1-L565P L565P amino_acid_mutation PMID:34849878 L565P False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.260759A>G/c.1694T>C/p.L565P +YCR084C TUP1 1679 tup1-N673D N673D amino_acid_mutation PMID:34849878 N673D False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.260436T>C/c.2017A>G/p.N673D +YCR084C TUP1 1682 tup1-S649F S649F amino_acid_mutation PMID:34849878 S649F False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.260507G>A/c.1946C>T/p.S649F +YCR088W ABP1 1685 abp1-W569A W569A amino_acid_mutation PMID:11668184 W569A False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.266772_266773delTGinsGC/c.1705_1706delTGinsGC/p.W569A +YCR093W CDC39 1701 cdc39-(not1-1) W1753R amino_acid_mutation PMID:16275785 W1753R False amino_acid_mutation:single_aa amino_acid_mutation chrIII:g.285373T>A/c.5257T>A/p.W1753R +YDL003W MCD1 1724 mcd1-73 S525N amino_acid_mutation PMID:15383284,PMID:26175450,PMID:27708008,PMID:36196991,PMID:37178128,PMID:9335333 S525N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.446256G>A/c.1574G>A/p.S525N +YDL007W RPT2 1740 rpt2RF K229R, S241F amino_acid_mutation PMID:18174173,PMID:20008553,PMID:21931558 K229R|S241F False K229R,S241F amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.438732A>G/c.686A>G/p.K229R|chrIV:g.438768C>T/c.722C>T/p.S241F +YDL014W NOP1 1747 nop1-2 D186G, D223N, D263G amino_acid_mutation PMID:23962978,PMID:27708008,PMID:8431947 D186G|D223N|D263G False D186G,D223N,D263G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.427920A>G/c.557A>G/p.D186G|chrIV:g.428030G>A/c.667G>A/p.D223N|chrIV:g.428151A>G/c.788A>G/p.D263G +YDL014W NOP1 1748 nop1-3 V87D, E103G, A175V, P219S amino_acid_mutation PMID:27708008,PMID:8431947 V87D|E103G|A175V|P219S False V87D,E103G,A175V,P219S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.427623T>A/c.260T>A/p.V87D|chrIV:g.427671A>G/c.308A>G/p.E103G|chrIV:g.427887C>T/c.524C>T/p.A175V|chrIV:g.428018C>T/c.655C>T/p.P219S +YDL014W NOP1 1749 nop1-4 A245V amino_acid_mutation PMID:35385737,PMID:8431947 A245V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.428097C>T/c.734C>T/p.A245V +YDL014W NOP1 1750 nop1-5 K138E, S257P, T284A amino_acid_mutation PMID:8431947 K138E|S257P|T284A False K138E,S257P,T284A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.427775A>G/c.412A>G/p.K138E|chrIV:g.428132T>C/c.769T>C/p.S257P|chrIV:g.428213A>G/c.850A>G/p.T284A +YDL014W NOP1 1751 nop1-7 E198G amino_acid_mutation PMID:8431947 E198G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.427956A>G/c.593A>G/p.E198G +YDL015C TSC13 1754 tsc13-1 Q81K amino_acid_mutation PMID:11113186,PMID:15817474,PMID:15958487 Q81K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.426694G>T/c.241C>A/p.Q81K +YDL028C MPS1 1778 mps1-1 C696Y amino_acid_mutation PMID:12486115,PMID:1869587,PMID:19269975,PMID:23962978,PMID:27708008,PMID:32878900,PMID:9529376 C696Y False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.401381C>T/c.2087G>A/p.C696Y +YDL028C MPS1 1781 mps1-3796 E517K amino_acid_mutation PMID:23962978,PMID:27708008,PMID:9529376 E517K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.401743C>T/c.1549G>A/p.E517K +YDL028C MPS1 1782 mps1-412 E546K amino_acid_mutation PMID:9529376 E546K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.401656C>T/c.1636G>A/p.E546K +YDL028C MPS1 1784 mps1-6 C642Y amino_acid_mutation PMID:23390603,PMID:9529376 C642Y False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.401367C>T/c.1925G>A/p.C642Y +YDL028C MPS1 1786 mps1-as1 M516G amino_acid_mutation PMID:18060784 M516G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.401745_401746delATinsGG/c.1546_1547delATinsGG/p.M516G +YDL028C MPS1 1787 mps1–1237 P608S amino_acid_mutation PMID:9529376 P608S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.401470G>A/c.1822C>T/p.P608S +YDL028C MPS1 1788 mps1–737 E486K amino_acid_mutation PMID:9529376 E486K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.401836C>T/c.1456G>A/p.E486K +YDL029W ARP2 1789 arp2-1 H330L amino_acid_mutation PMID:10749918,PMID:11248049,PMID:17118118,PMID:8698808 H330L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.400451A>T/c.989A>T/p.H330L +YDL029W ARP2 1792 arp2-7 F203Y, F127S amino_acid_mutation PMID:19962315 F203Y|F127S False F203Y,F127S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.400070T>A/c.608T>A/p.F203Y|chrIV:g.399842T>C/c.380T>C/p.F127S +YDL042C SIR2 1808 sir2-276 S276C amino_acid_mutation PMID:18845844 S276C False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.377619G>C/c.827C>G/p.S276C +YDL044C MTF2 1817 mtf2-(pet-ts3504) S309P amino_acid_mutation PMID:2124681 S309P False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.374365A>G/c.925T>C/p.S309P +YDL047W SIT4 1822 sit4-102 E38K amino_acid_mutation PMID:14551259,PMID:1668092,PMID:1848673,PMID:19223769 E38K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.369882G>A/c.112G>A/p.E38K +YDL064W UBC9 1846 ubc9-1 P69S amino_acid_mutation PMID:20351217,PMID:20504900,PMID:31015336,PMID:36720466,PMID:7800043,PMID:8824207 P69S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.337801C>T/c.205C>T/p.P69S +YDL064W UBC9 1847 ubc9-10 P123L amino_acid_mutation PMID:15817450,PMID:35926881 P123L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.337964C>T/c.368C>T/p.P123L +YDL064W UBC9 1848 ubc9-2 Y68L amino_acid_mutation PMID:19150434,PMID:21552543,PMID:27708008,PMID:8824207 Y68L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.337798_337799delTAinsCT/c.202_203delTAinsCT/p.Y68L +YDL064W UBC9 1852 ubc9-A133E A133E amino_acid_mutation PMID:36870416 A133E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.337994C>A/c.398C>A/p.A133E +YDL074C BRE1 1862 bre1-6A L516A, L518A, D520A, D522A, L524A, L525A amino_acid_mutation PMID:33602814 L516A|L518A|D520A|D522A|L524A|L525A False L516A,L518A,D520A,D522A,L524A,L525A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.324603_324604delCTinsGC/c.1546_1547delCTinsGC/p.L516A|chrIV:g.324597_324598delTTinsGC/c.1552_1553delTTinsGC/p.L518A|chrIV:g.324591T>G/c.1559A>C/p.D520A|chrIV:g.324585T>G/c.1565A>C/p.D522A|chrIV:g.324579_324580delTTinsGC/c.1570_1571delTTinsGC/p.L524A|chrIV:g.324576_324577delCTinsGC/c.1573_1574delCTinsGC/p.L525A +YDL074C BRE1 1864 bre1-K31D K31D amino_acid_mutation PMID:36912886 K31D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.326057_326059delAAAinsGAC/c.91_93delAAAinsGAC/p.K31D +YDL074C BRE1 1865 bre1-Q23A Q23A amino_acid_mutation PMID:36912886 Q23A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.326082_326083delCAinsGC/c.67_68delCAinsGC/p.Q23A +YDL074C BRE1 1866 bre1-Q30A Q30A amino_acid_mutation PMID:36912886 Q30A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.326061_326062delCAinsGC/c.88_89delCAinsGC/p.Q30A +YDL074C BRE1 1867 bre1-Q30A,K31D Q30A, K31D amino_acid_mutation PMID:36912886 Q30A|K31D False Q30A,K31D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.326061_326062delCAinsGC/c.88_89delCAinsGC/p.Q30A|chrIV:g.326057_326059delAAAinsGAC/c.91_93delAAAinsGAC/p.K31D +YDL074C BRE1 1868 bre1-R36E R36E amino_acid_mutation PMID:36912886 R36E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.326043_326044delAGinsGA/c.106_107delAGinsGA/p.R36E +YDL074C BRE1 1869 bre1-R36E,R42E R36E, R42E amino_acid_mutation PMID:36912886 R36E|R42E False R36E,R42E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.326043_326044delAGinsGA/c.106_107delAGinsGA/p.R36E|chrIV:g.326025_326026delAGinsGA/c.124_125delAGinsGA/p.R42E +YDL074C BRE1 1870 bre1-R42E R42E amino_acid_mutation PMID:36912886 R42E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.326025_326026delAGinsGA/c.124_125delAGinsGA/p.R42E +YDL100C GET3 1900 get3-D57E D57E amino_acid_mutation PMID:23203805,PMID:25242142 D57E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.283006A>C/c.171T>G/p.D57E +YDL100C GET3 1903 get3-K31A K31A amino_acid_mutation PMID:20015340,PMID:35839781 K31A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.283121_283122delAAinsGC/c.91_92delAAinsGC/p.K31A +YDL101C DUN1 1904 dun1-D328A D328A amino_acid_mutation PMID:26970775 D328A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.280866T>G/c.983A>C/p.D328A +YDL101C DUN1 1905 dun1-K100A/R102A K100A, R102A amino_acid_mutation PMID:26970775 K100A|R102A False K100A,R102A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.281550_281551delAAinsGC/c.298_299delAAinsGC/p.K100A|chrIV:g.281544_281545delAGinsGC/c.304_305delAGinsGC/p.R102A +YDL101C DUN1 1906 dun1-R60A R60A amino_acid_mutation PMID:26970775 R60A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.281670_281671delAGinsGC/c.178_179delAGinsGC/p.R60A +YDL101C DUN1 1907 dun1-T380A T380A amino_acid_mutation PMID:26970775 T380A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.280711T>C/c.1138A>G/p.T380A +YDL102W POL3 1909 pol3-01 D321A, E323A amino_acid_mutation PMID:15601866,PMID:33398111,PMID:36833317,PMID:8385605 D321A|E323A False D321A,E323A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.277833A>C/c.962A>C/p.D321A|chrIV:g.277839A>C/c.968A>C/p.E323A +YDL102W POL3 1913 pol3-11 C1069S amino_acid_mutation PMID:7862092 C1069S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.280076T>A/c.3205T>A/p.C1069S +YDL102W POL3 1914 pol3-12 S268F amino_acid_mutation PMID:7862092 S268F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.277674C>T/c.803C>T/p.S268F +YDL102W POL3 1915 pol3-13 C1074S amino_acid_mutation PMID:34009341,PMID:9258670 C1074S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.280091T>A/c.3220T>A/p.C1074S +YDL102W POL3 1917 pol3-15 R542C amino_acid_mutation PMID:7862092 R542C False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278495C>T/c.1624C>T/p.R542C +YDL102W POL3 1919 pol3-20 T655I amino_acid_mutation PMID:7862092 T655I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278835C>T/c.1964C>T/p.T655I +YDL102W POL3 1920 pol3-5DV D520V amino_acid_mutation PMID:15601866,PMID:36533450 D520V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.278430A>T/c.1559A>T/p.D520V +YDL104C QRI7 1960 qri7-R207D R207D amino_acid_mutation PMID:33277478 R207D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.274256_274258delAGAinsGAC/c.619_621delAGAinsGAC/p.R207D +YDL126C CDC48 1996 cdc48-4 F62S, D324G, K500M, M621V, A632T, E677K, A761T amino_acid_mutation PMID:21441928,PMID:33172985,PMID:35234920 F62S|D324G|K500M|M621V|A632T|E677K|A761T False F62S,D324G,K500M,M621V,A632T,E677K,A761T amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.238480A>G/c.185T>C/p.F62S|chrIV:g.237694T>C/c.971A>G/p.D324G|chrIV:g.237166T>A/c.1499A>T/p.K500M|chrIV:g.236804T>C/c.1861A>G/p.M621V|chrIV:g.236771C>T/c.1894G>A/p.A632T|chrIV:g.236636C>T/c.2029G>A/p.E677K|chrIV:g.236384C>T/c.2281G>A/p.A761T +YDL126C CDC48 2002 cdc48-S565G S565G amino_acid_mutation PMID:16822868,PMID:21070972,PMID:9348289 S565G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.236971_236972delTCinsGG/c.1693_1694delTCinsGG/p.S565G +YDL126C CDC48 2004 cdc48-ts T413R amino_acid_mutation PMID:20206597 T413R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.237427G>C/c.1238C>G/p.T413R +YDL140C RPO21 2049 rpo21-(rpb1-K1487R) K1487R amino_acid_mutation PMID:19384408 K1487R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.206102T>C/c.4460A>G/p.K1487R +YDL140C RPO21 2056 rpo21-36 C67S,C70S amino_acid_mutation PMID:18676807 C67S|C70S False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.210363A>T/c.199T>A/p.C67S|chrIV:g.210354A>T/c.208T>A/p.C70S +YDL140C RPO21 2075 rpo21-K330R K330R amino_acid_mutation PMID:17418786,PMID:36288698 K330R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.209573T>C/c.989A>G/p.K330R +YDL140C RPO21 2076 rpo21-K695R K695R amino_acid_mutation PMID:17418786 K695R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.208478T>C/c.2084A>G/p.K695R +YDL143W CCT4 2085 cct4-1 G345D amino_acid_mutation PMID:10604479,PMID:18272176,PMID:18680526,PMID:23390603,PMID:25721128,PMID:27708008,PMID:7916461,PMID:8243992,PMID:8771707 G345D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.201029G>A/c.1034G>A/p.G345D +YDL160C DHH1 2129 dhh1-D195A D195A amino_acid_mutation PMID:28455591,PMID:32989641 D195A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.171347T>G/c.584A>C/p.D195A +YDL160C DHH1 2132 dhh1-K96R K96R amino_acid_mutation PMID:28455591,PMID:32989641 K96R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.171644T>C/c.287A>G/p.K96R +YDL160C DHH1 2133 dhh1-Q73A Q73A amino_acid_mutation PMID:28455591,PMID:32989641 Q73A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.171713_171714delCAinsGC/c.217_218delCAinsGC/p.Q73A +YDL160C DHH1 2134 dhh1-R370A R370A amino_acid_mutation PMID:32989641 R370A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.170822_170823delCGinsGC/c.1108_1109delCGinsGC/p.R370A +YDL160C DHH1 2135 dhh1-S14A S14A amino_acid_mutation PMID:32989641 S14A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.171890_171891delAGinsGC/c.40_41delAGinsGC/p.S14A +YDL160C DHH1 2136 dhh1-S14E S14E amino_acid_mutation PMID:32989641 S14E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.171889_171891delAGTinsGAG/c.40_42delAGTinsGAG/p.S14E +YDL160C DHH1 2137 dhh1-T10A T10A amino_acid_mutation PMID:32989641 T10A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.171903T>C/c.28A>G/p.T10A +YDL160C DHH1 2138 dhh1-T10E T10E amino_acid_mutation PMID:32989641 T10E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.171901_171903delACTinsGAG/c.28_30delACTinsGAG/p.T10E +YDL160C DHH1 2139 dhh1-T16A T16A amino_acid_mutation PMID:32989641 T16A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.171885T>C/c.46A>G/p.T16A +YDL160C DHH1 2140 dhh1-T16E T16E amino_acid_mutation PMID:32989641 T16E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.171884_171885delACinsGA/c.46_47delACinsGA/p.T16E +YDL192W ARF1 2170 arf1-11 K38T, E132D, L173S amino_acid_mutation PMID:11160834,PMID:20956596,PMID:37400497 K38T|E132D|L173S False K38T,E132D,L173S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.116433A>C/c.113A>C/p.K38T|chrIV:g.116670G>C/c.396G>C/p.E132D|chrIV:g.116838T>C/c.518T>C/p.L173S +YDL192W ARF1 2171 arf1-12 K38T amino_acid_mutation PMID:11160834 K38T False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.116433A>C/c.113A>C/p.K38T|chrIV:g.116433A>C/c.113A>C/p.K38T +YDL192W ARF1 2172 arf1-13 L173S amino_acid_mutation PMID:11160834 L173S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.116838T>C/c.518T>C/p.L173S|chrIV:g.116838T>C/c.518T>C/p.L173S +YDL192W ARF1 2173 arf1-14 F51I amino_acid_mutation PMID:11160834 F51I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.116471T>A/c.151T>A/p.F51I +YDL192W ARF1 2174 arf1-15 L25P amino_acid_mutation PMID:11160834 L25P False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.116394T>C/c.74T>C/p.L25P +YDL192W ARF1 2175 arf1-16 E41V, D129E amino_acid_mutation PMID:11160834,PMID:20956596 E41V|D129E False E41V,D129E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.116442A>T/c.122A>T/p.E41V|chrIV:g.116707T>G/c.387T>G/p.D129E +YDL192W ARF1 2176 arf1-17 E41V amino_acid_mutation PMID:11160834 E41V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.116442A>T/c.122A>T/p.E41V +YDL192W ARF1 2177 arf1-18 H80P amino_acid_mutation PMID:11160834,PMID:20956596 H80P False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.116559A>C/c.239A>C/p.H80P +YDL192W ARF1 2178 arf1-K38T K38T amino_acid_mutation PMID:37400497 K38T False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.116433A>C/c.113A>C/p.K38T|chrIV:g.116433A>C/c.113A>C/p.K38T +YDL192W ARF1 2179 arf1-K38T,E132D K38T, E132D amino_acid_mutation PMID:37400497 K38T|E132D False K38T,E132D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.116433A>C/c.113A>C/p.K38T|chrIV:g.116670G>C/c.396G>C/p.E132D +YDL192W ARF1 2180 arf1-L173S L173S amino_acid_mutation PMID:37400497 L173S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.116838T>C/c.518T>C/p.L173S|chrIV:g.116838T>C/c.518T>C/p.L173S +YDL192W ARF1 2181 arf1-Q71L Q71L amino_acid_mutation PMID:33788577,PMID:37400497 Q71L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.116532A>T/c.212A>T/p.Q71L +YDL192W ARF1 2182 arf1-T31N T31N amino_acid_mutation PMID:37400497 T31N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.116412C>A/c.92C>A/p.T31N +YDL194W SNF3 2185 SNF3-1 R229K amino_acid_mutation PMID:17586499 R229K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.112265G>A/c.686G>A/p.R229K +YDL220C CDC13 2250 cdc13-1 P371S amino_acid_mutation PMID:18828915,PMID:18948753,PMID:22377634,PMID:27708008,PMID:27834202,PMID:32661422,PMID:33126043,PMID:35044907,PMID:35776120,PMID:37078607,PMID:3894160,PMID:4599956,PMID:6223209,PMID:7565765,PMID:8824190,PMID:9042864 P371S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63908G>A/c.1111C>T/p.P371S +YDL220C CDC13 2258 cdc13-2est E252K amino_acid_mutation PMID:34751785,PMID:8824190 E252K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.64265C>T/c.754G>A/p.E252K +YDL220C CDC13 2263 cdc13-D546G D546G amino_acid_mutation PMID:22377634 D546G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63382T>C/c.1637A>G/p.D546G +YDL220C CDC13 2269 cdc13-F547A F547A amino_acid_mutation PMID:22377634 F547A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63379_63380delTTinsGC/c.1639_1640delTTinsGC/p.F547A +YDL220C CDC13 2270 cdc13-F683L F683L amino_acid_mutation PMID:22377634 F683L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.62972A>G/c.2047T>C/p.F683L +YDL220C CDC13 2271 cdc13-F684A F684A amino_acid_mutation PMID:22377634 F684A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.62968_62969delTTinsGC/c.2050_2051delTTinsGC/p.F684A +YDL220C CDC13 2272 cdc13-F684S F684S amino_acid_mutation PMID:22377634,PMID:32287268 F684S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.62968A>G/c.2051T>C/p.F684S +YDL220C CDC13 2273 cdc13-G614V G614V amino_acid_mutation PMID:22377634 G614V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63178C>A/c.1841G>T/p.G614V +YDL220C CDC13 2278 cdc13-L529Q L529Q amino_acid_mutation PMID:22377634 L529Q False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63433A>T/c.1586T>A/p.L529Q +YDL220C CDC13 2279 cdc13-N609A N609A amino_acid_mutation PMID:22377634 N609A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63193_63194delAAinsGC/c.1825_1826delAAinsGC/p.N609A +YDL220C CDC13 2280 cdc13-S249A S249A amino_acid_mutation PMID:25387524 S249A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.64274A>C/c.745T>G/p.S249A +YDL220C CDC13 2281 cdc13-S255A S255A amino_acid_mutation PMID:25387524 S255A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.64256A>C/c.763T>G/p.S255A +YDL220C CDC13 2282 cdc13-S314A S314A amino_acid_mutation PMID:25387524 S314A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.64078_64079delAGinsGC/c.940_941delAGinsGC/p.S314A +YDL220C CDC13 2283 cdc13-S531F S531F amino_acid_mutation PMID:22377634 S531F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63427G>A/c.1592C>T/p.S531F +YDL220C CDC13 2284 cdc13-S56F S56F amino_acid_mutation PMID:22377634 S56F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.64852G>A/c.167C>T/p.S56F +YDL220C CDC13 2285 cdc13-S611L S611L amino_acid_mutation PMID:22377634 S611L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63187G>A/c.1832C>T/p.S611L +YDL220C CDC13 2289 cdc13-V530G V530G amino_acid_mutation PMID:22377634 V530G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63430A>C/c.1589T>G/p.V530G +YDL220C CDC13 2290 cdc13-V543F V543F amino_acid_mutation PMID:22377634 V543F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63392C>A/c.1627G>T/p.V543F +YDL220C CDC13 2293 cdc13-Y561A Y561A amino_acid_mutation PMID:30249661 Y561A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.63337_63338delTAinsGC/c.1681_1682delTAinsGC/p.Y561A +YDR002W YRB1 2316 yrb1-1 E182D, F187S amino_acid_mutation PMID:7489726 E182D|F187S False E182D,F187S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.453590A>C/c.546A>C/p.E182D|chrIV:g.453604T>C/c.560T>C/p.F187S +YDR002W YRB1 2317 yrb1-2 L93P amino_acid_mutation PMID:7489726 L93P False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.453322T>C/c.278T>C/p.L93P +YDR013W PSF1 2329 psf1-100 V161A, F162A, I163A, D164A amino_acid_mutation PMID:24628792,PMID:33322195 V161A|F162A|I163A|D164A False V161A,F162A,I163A,D164A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.473638T>C/c.482T>C/p.V161A|chrIV:g.473640_473641delTTinsGC/c.484_485delTTinsGC/p.F162A|chrIV:g.473643_473644delATinsGC/c.487_488delATinsGC/p.I163A|chrIV:g.473647A>C/c.491A>C/p.D164A +YDR080W VPS41 2459 vps41 S-A S367A, S368A, S371A, S372A amino_acid_mutation PMID:19193765 S367A|S368A|S371A|S372A False S367A,S368A,S371A,S372A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.605106T>G/c.1099T>G/p.S367A|chrIV:g.605109_605110delAGinsGC/c.1102_1103delAGinsGC/p.S368A|chrIV:g.605118T>G/c.1111T>G/p.S371A|chrIV:g.605121_605122delAGinsGC/c.1114_1115delAGinsGC/p.S372A +YDR080W VPS41 2460 vps41 S-D S367E, S368E, S371E, S372E amino_acid_mutation PMID:19193765 S367E|S368E|S371E|S372E False S367E,S368E,S371E,S372E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.605106_605108delTCTinsGAG/c.1099_1101delTCTinsGAG/p.S367E|chrIV:g.605109_605111delAGTinsGAG/c.1102_1104delAGTinsGAG/p.S368E|chrIV:g.605118_605119delTCinsGA/c.1111_1112delTCinsGA/p.S371E|chrIV:g.605121_605123delAGTinsGAG/c.1114_1116delAGTinsGAG/p.S372E +YDR082W STN1 2468 stn1-13 T101S, D134V, T203A, I209V, S393R, M416T amino_acid_mutation PMID:11230140,PMID:11429610,PMID:22377634,PMID:24336748,PMID:25721128,PMID:27708008,PMID:9042864 T101S|D134V|T203A|I209V|S393R|M416T False T101S,D134V,T203A,I209V,S393R,M416T amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.610742C>G/c.302C>G/p.T101S|chrIV:g.610841A>T/c.401A>T/p.D134V|chrIV:g.611047A>G/c.607A>G/p.T203A|chrIV:g.610949A>G/c.625A>G/p.I209V|chrIV:g.611619T>G/c.1179T>G/p.S393R|chrIV:g.611687T>C/c.1247T>C/p.M416T +YDR082W STN1 2469 stn1-154 D99E, E461G, Q479R amino_acid_mutation PMID:11230140 D99E|E461G|Q479R False D99E,E461G,Q479R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.610737T>G/c.297T>G/p.D99E|chrIV:g.611822A>G/c.1382A>G/p.E461G|chrIV:g.611760A>G/c.1436A>G/p.Q479R +YDR082W STN1 2470 stn1-63 D99E amino_acid_mutation PMID:19172739,PMID:22377634 D99E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.610737T>G/c.297T>G/p.D99E +YDR082W STN1 2473 stn1-I73A I73A amino_acid_mutation PMID:22377634 I73A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.610657_610658delATinsGC/c.217_218delATinsGC/p.I73A +YDR082W STN1 2474 stn1-I73S I73S amino_acid_mutation PMID:22377634 I73S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.610658_610659delTAinsGC/c.218_219delTAinsGC/p.I73S +YDR086C SSS1 2482 sss1pK5T5 A37S, K38T, K41T, K45T, K49T, K52T amino_acid_mutation PMID:21355855 A37S|K38T|K41T|K45T|K49T|K52T False A37S,K38T,K41T,K45T,K49T,K52T amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.617062C>A/c.109G>T/p.A37S|chrIV:g.617058T>G/c.113A>C/p.K38T|chrIV:g.617049T>G/c.122A>C/p.K41T|chrIV:g.617037T>G/c.134A>C/p.K45T|chrIV:g.617025T>G/c.146A>C/p.K49T|chrIV:g.617058T>G/c.155A>C/p.K52T +YDR086C SSS1 2483 sss1pYG G65Y, Y66G amino_acid_mutation PMID:21355855 G65Y|Y66G False G65Y,Y66G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.616977_616978delGGinsTA/c.193_194delGGinsTA/p.G65Y|chrIV:g.616974_616975delTAinsGG/c.196_197delTAinsGG/p.Y66G +YDR110W FOB1 2537 fob1-(hrm1-1) C246R amino_acid_mutation PMID:10230397 C246R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.676837T>C/c.736T>C/p.C246R +YDR110W FOB1 2538 fob1-AAA S467A, S468A, S519A amino_acid_mutation PMID:26951198 S467A|S468A|S519A False S467A,S468A,S519A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.677500T>G/c.1399T>G/p.S467A|chrIV:g.677503T>G/c.1402T>G/p.S468A|chrIV:g.677656T>G/c.1555T>G/p.S519A +YDR123C INO2 2553 ino2-L119A L119A amino_acid_mutation PMID:15819625,PMID:34617598 L119A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.699113_699114delTTinsGC/c.355_356delTTinsGC/p.L119A +YDR129C SAC6 2556 sac6-102 S423F amino_acid_mutation PMID:27068241 S423F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.714001G>A/c.1268C>T/p.S423F +YDR129C SAC6 2558 sac6-T103A T103A amino_acid_mutation PMID:27068241 T103A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.714962T>C/c.307A>G/p.T103A +YDR129C SAC6 2559 sac6-T103E T103E amino_acid_mutation PMID:27068241 T103E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.714960_714962delACCinsGAG/c.307_309delACCinsGAG/p.T103E +YDR130C FIN1 2560 FIN1-5A S36A, S54A, T68A, S117A, S148A amino_acid_mutation PMID:17173039,PMID:19948764,PMID:34033659 S36A|S54A|T68A|S117A|S148A False S36A,S54A,T68A,S117A,S148A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.716517A>C/c.106T>G/p.S36A|chrIV:g.716463A>C/c.160T>G/p.S54A|chrIV:g.716421T>C/c.202A>G/p.T68A|chrIV:g.716302A>C/c.349T>G/p.S117A|chrIV:g.716181A>C/c.442T>G/p.S148A +YDR141C DOP1 2580 dop1-2 L156P, F411S, I504S, N514D amino_acid_mutation PMID:16301316 L156P|F411S|I504S|N514D False L156P,F411S,I504S,N514D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.739531A>G/c.467T>C/p.L156P|chrIV:g.738766A>G/c.1232T>C/p.F411S|chrIV:g.738486_738487delTAinsGC/c.1511_1512delTAinsGC/p.I504S|chrIV:g.738458T>C/c.1540A>G/p.N514D +YDR145W TAF12 2590 taf12-(taf68-9) W486stop partial_amino_acid_deletion PMID:10751405,PMID:11561287 W486stop False W486* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrIV:g.748194G>A/c.1457G>A/p.W486* +YDR150W NUM1 2604 num1-D315A D315A amino_acid_mutation PMID:34985939 D315A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.756571A>C/c.944A>C/p.D315A +YDR160W SSY1 2615 SSY1-102 T382K amino_acid_mutation PMID:18307103 T382K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.777307C>A/c.1145C>A/p.T382K +YDR160W SSY1 2616 SSY1-137 F333S amino_acid_mutation PMID:18307103 F333S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.777160T>C/c.998T>C/p.F333S +YDR167W TAF10 2627 taf10-(taf25ts) G101E amino_acid_mutation PMID:10383379 G101E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.789750G>A/c.302G>A/p.G101E +YDR168W CDC37 2639 cdc37-S14A S14A amino_acid_mutation PMID:17220467,PMID:19399909,PMID:36260391 S14A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.790367T>G/c.40T>G/p.S14A +YDR168W CDC37 2640 cdc37-S14E S14E amino_acid_mutation PMID:17220467 S14E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.790367_790368delTCinsGA/c.40_41delTCinsGA/p.S14E +YDR168W CDC37 2641 cdc37-S17A S17A amino_acid_mutation PMID:17220467 S17A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.790322T>G/c.49T>G/p.S17A +YDR168W CDC37 2642 cdc37-S17E S17E amino_acid_mutation PMID:17220467 S17E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.790322_790323delTCinsGA/c.49_50delTCinsGA/p.S17E +YDR170C SEC7 2649 sec7-12 I615N amino_acid_mutation PMID:15930122 I615N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.800379A>T/c.1844T>A/p.I615N +YDR170C SEC7 2650 sec7-18 V636D L744S N839D amino_acid_mutation PMID:15930122 V636D|L744S|N839D False V636D,L744S,N839D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.800316A>T/c.1907T>A/p.V636D|chrIV:g.799992A>G/c.2231T>C/p.L744S|chrIV:g.799708T>C/c.2515A>G/p.N839D +YDR180W SCC2 2702 scc2-4 E534K amino_acid_mutation PMID:18708580,PMID:21347277,PMID:21552543,PMID:26176819,PMID:27708008,PMID:36509793,PMID:9335333,PMID:9990856 E534K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.822894G>A/c.1600G>A/p.E534K +YDR180W SCC2 2705 scc2-D730V D730V amino_acid_mutation PMID:19948494 D730V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.823483A>T/c.2189A>T/p.D730V +YDR180W SCC2 2708 scc2-G1242R G1242R amino_acid_mutation PMID:19948494 G1242R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.825018G>C/c.3724G>C/p.G1242R +YDR180W SCC2 2714 scc2-R716L R716L amino_acid_mutation PMID:19948494 R716L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.823440_823441delAGinsCT/c.2146_2147delAGinsCT/p.R716L +YDR182W CDC1 2727 cdc1-304 H323N amino_acid_mutation PMID:11285273 H323N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.828548C>A/c.967C>A/p.H323N +YDR182W CDC1 2728 cdc1-310 L356F amino_acid_mutation PMID:18332110,PMID:33112703 L356F False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.828647C>T/c.1066C>T/p.L356F +YDR182W CDC1 2729 cdc1-314 T377I amino_acid_mutation PMID:18332110,PMID:25165136,PMID:33112703 T377I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.828711C>T/c.1130C>T/p.T377I +YDR188W CCT6 2734 cct6-1 K9A, G88A, D89A, G90A, T91A, T92A amino_acid_mutation PMID:9409825 K9A|G88A|D89A|G90A|T91A|T92A False K9A,G88A,D89A,G90A,T91A,T92A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836445_836446delAAinsGC/c.25_26delAAinsGC/p.K9A|chrIV:g.836683G>C/c.263G>C/p.G88A|chrIV:g.836686A>C/c.266A>C/p.D89A|chrIV:g.836689G>C/c.269G>C/p.G90A|chrIV:g.836691A>G/c.271A>G/p.T91A|chrIV:g.836694A>G/c.274A>G/p.T92A +YDR188W CCT6 2736 cct6-11 G41E amino_acid_mutation PMID:9409825 G41E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836542_836543delGCinsAG/c.122_123delGCinsAG/p.G41E +YDR188W CCT6 2737 cct6-12 L37A, G38A, K40A, G41A amino_acid_mutation PMID:9409825 L37A|G38A|K40A|G41A False L37A,G38A,K40A,G41A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836529_836530delTTinsGC/c.109_110delTTinsGC/p.L37A|chrIV:g.836044G>C/c.113G>C/p.G38A|chrIV:g.836538_836539delAAinsGC/c.118_119delAAinsGC/p.K40A|chrIV:g.836542G>C/c.122G>C/p.G41A +YDR188W CCT6 2738 cct6-13 L43R amino_acid_mutation PMID:9409825 L43R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836548T>G/c.128T>G/p.L43R +YDR188W CCT6 2739 cct6-14 G59R amino_acid_mutation PMID:9409825 G59R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836595G>C/c.175G>C/p.G59R +YDR188W CCT6 2740 cct6-18 L55A, T56A, K57A, D58A, G59A amino_acid_mutation PMID:18680526,PMID:23390603,PMID:27708008,PMID:9409825 L55A|T56A|K57A|D58A|G59A False L55A,T56A,K57A,D58A,G59A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836583_836584delCTinsGC/c.163_164delCTinsGC/p.L55A|chrIV:g.836586A>G/c.166A>G/p.T56A|chrIV:g.836589_836590delAAinsGC/c.169_170delAAinsGC/p.K57A|chrIV:g.836593A>C/c.173A>C/p.D58A|chrIV:g.836596G>C/c.176G>C/p.G59A +YDR188W CCT6 2742 cct6-19 G90E amino_acid_mutation PMID:9409825 G90E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836689G>A/c.269G>A/p.G90E +YDR188W CCT6 2744 cct6-20 D89E amino_acid_mutation PMID:9409825 D89E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836687T>G/c.267T>G/p.D89E +YDR188W CCT6 2745 cct6-21 V61E amino_acid_mutation PMID:9409825 V61E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836602T>A/c.182T>A/p.V61E +YDR188W CCT6 2746 cct6-24 G88A, D89A, G90A, T91A, T92A amino_acid_mutation PMID:9409825 G88A|D89A|G90A|T91A|T92A False G88A,D89A,G90A,T91A,T92A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836683G>C/c.263G>C/p.G88A|chrIV:g.836686A>C/c.266A>C/p.D89A|chrIV:g.836689G>C/c.269G>C/p.G90A|chrIV:g.836691A>G/c.271A>G/p.T91A|chrIV:g.836694A>G/c.274A>G/p.T92A +YDR188W CCT6 2748 cct6-26 K127A amino_acid_mutation PMID:9409825 K127A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836799_836800delAAinsGC/c.379_380delAAinsGC/p.K127A +YDR188W CCT6 2749 cct6-27 R126A, K127A, E128A amino_acid_mutation PMID:9409825 R126A|K127A|E128A False R126A,K127A,E128A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836796_836797delCGinsGC/c.376_377delCGinsGC/p.R126A|chrIV:g.836799_836800delAAinsGC/c.379_380delAAinsGC/p.K127A|chrIV:g.836314A>C/c.383A>C/p.E128A +YDR188W CCT6 2750 cct6-28 L133E amino_acid_mutation PMID:9409825 L133E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836817_836818delTTinsGA/c.397_398delTTinsGA/p.L133E +YDR188W CCT6 2751 cct6-29 K137A, K140A amino_acid_mutation PMID:9409825 K137A|K140A False K137A,K140A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836829_836830delAAinsGC/c.409_410delAAinsGC/p.K137A|chrIV:g.836838_836839delAAinsGC/c.418_419delAAinsGC/p.K140A +YDR188W CCT6 2752 cct6-3 L19S amino_acid_mutation PMID:9409825 L19S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836476T>C/c.56T>C/p.L19S +YDR188W CCT6 2753 cct6-30 R147A amino_acid_mutation PMID:9409825 R147A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836859_836860delAGinsGC/c.439_440delAGinsGC/p.R147A +YDR188W CCT6 2754 cct6-31 L151E amino_acid_mutation PMID:9409825 L151E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836871_836872delCTinsGA/c.451_452delCTinsGA/p.L151E +YDR188W CCT6 2755 cct6-32 R155K amino_acid_mutation PMID:9409825 R155K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836395G>A/c.464G>A/p.R155K +YDR188W CCT6 2756 cct6-33 S157A amino_acid_mutation PMID:9409825 S157A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836889T>G/c.469T>G/p.S157A +YDR188W CCT6 2757 cct6-34 S157E amino_acid_mutation PMID:9409825 S157E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836889_836890delTCinsGA/c.469_470delTCinsGA/p.S157E +YDR188W CCT6 2758 cct6-35 D176R amino_acid_mutation PMID:9409825 D176R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836946_836947delGAinsCG/c.526_527delGAinsCG/p.D176R +YDR188W CCT6 2759 cct6-36 D176R, R396A, D397A amino_acid_mutation PMID:9409825 D176R|R396A|D397A False D176R,R396A,D397A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836946_836947delGAinsCG/c.526_527delGAinsCG/p.D176R|chrIV:g.837606_837607delAGinsGC/c.1186_1187delAGinsGC/p.R396A|chrIV:g.837610A>C/c.1190A>C/p.D397A +YDR188W CCT6 2760 cct6-37 V178R amino_acid_mutation PMID:9409825 V178R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836952_836953delGTinsAG/c.532_533delGTinsAG/p.V178R +YDR188W CCT6 2761 cct6-38 V178R, R396A, D397A amino_acid_mutation PMID:9409825 V178R|R396A|D397A False V178R,R396A,D397A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836952_836953delGTinsAG/c.532_533delGTinsAG/p.V178R|chrIV:g.837606_837607delAGinsGC/c.1186_1187delAGinsGC/p.R396A|chrIV:g.837610A>C/c.1190A>C/p.D397A +YDR188W CCT6 2762 cct6-39 A186S amino_acid_mutation PMID:9409825 A186S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836976G>T/c.556G>T/p.A186S +YDR188W CCT6 2763 cct6-4 S31D amino_acid_mutation PMID:9409825 S31D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836511_836512delTCinsGA/c.91_92delTCinsGA/p.S31D +YDR188W CCT6 2764 cct6-40 A186S, D187R amino_acid_mutation PMID:9409825 A186S|D187R False A186S,D187R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836976G>T/c.556G>T/p.A186S|chrIV:g.836979_836980delGAinsCG/c.559_560delGAinsCG/p.D187R +YDR188W CCT6 2765 cct6-41 A186S, C376S amino_acid_mutation PMID:9409825 A186S|C376S False A186S,C376S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836976G>T/c.556G>T/p.A186S|chrIV:g.837546T>A/c.1126T>A/p.C376S +YDR188W CCT6 2766 cct6-42 A186S, T377S amino_acid_mutation PMID:9409825 A186S|T377S False A186S,T377S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836976G>T/c.556G>T/p.A186S|chrIV:g.837550C>G/c.1130C>G/p.T377S +YDR188W CCT6 2767 cct6-43 A186S, D187R, C376S amino_acid_mutation PMID:9409825 A186S|D187R|C376S False A186S,D187R,C376S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836976G>T/c.556G>T/p.A186S|chrIV:g.836979_836980delGAinsCG/c.559_560delGAinsCG/p.D187R|chrIV:g.837546T>A/c.1126T>A/p.C376S +YDR188W CCT6 2768 cct6-44 A186S, D187R, T377S amino_acid_mutation PMID:9409825 A186S|D187R|T377S False A186S,D187R,T377S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836976G>T/c.556G>T/p.A186S|chrIV:g.836979_836980delGAinsCG/c.559_560delGAinsCG/p.D187R|chrIV:g.837550C>G/c.1130C>G/p.T377S +YDR188W CCT6 2769 cct6-45 A186S, D187R, C376S, T377S amino_acid_mutation PMID:9409825 A186S|D187R|C376S|T377S False A186S,D187R,C376S,T377S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836976G>T/c.556G>T/p.A186S|chrIV:g.836979_836980delGAinsCG/c.559_560delGAinsCG/p.D187R|chrIV:g.837546T>A/c.1126T>A/p.C376S|chrIV:g.837550C>G/c.1130C>G/p.T377S +YDR188W CCT6 2770 cct6-46 A186S, C376S, T377S amino_acid_mutation PMID:9409825 A186S|C376S|T377S False A186S,C376S,T377S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836976G>T/c.556G>T/p.A186S|chrIV:g.837546T>A/c.1126T>A/p.C376S|chrIV:g.837550C>G/c.1130C>G/p.T377S +YDR188W CCT6 2771 cct6-47 D187R amino_acid_mutation PMID:9409825 D187R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836979_836980delGAinsCG/c.559_560delGAinsCG/p.D187R +YDR188W CCT6 2772 cct6-48 D187R, C376S amino_acid_mutation PMID:9409825 D187R|C376S False D187R,C376S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836979_836980delGAinsCG/c.559_560delGAinsCG/p.D187R|chrIV:g.837546T>A/c.1126T>A/p.C376S +YDR188W CCT6 2773 cct6-49 D187R, T377S amino_acid_mutation PMID:9409825 D187R|T377S False D187R,T377S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836979_836980delGAinsCG/c.559_560delGAinsCG/p.D187R|chrIV:g.837550C>G/c.1130C>G/p.T377S +YDR188W CCT6 2774 cct6-5 G38S amino_acid_mutation PMID:9409825 G38S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836043G>A/c.112G>A/p.G38S +YDR188W CCT6 2775 cct6-50 D190G amino_acid_mutation PMID:9409825 D190G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836989A>G/c.569A>G/p.D190G +YDR188W CCT6 2776 cct6-51 M197E amino_acid_mutation PMID:9409825 M197E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837009_837010delATinsGA/c.589_590delATinsGA/p.M197E +YDR188W CCT6 2777 cct6-52 S203E amino_acid_mutation PMID:9409825 S203E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837027_837029delTCTinsGAG/c.607_609delTCTinsGAG/p.S203E +YDR188W CCT6 2778 cct6-53 K205A amino_acid_mutation PMID:9409825 K205A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837033_837034delAAinsGC/c.613_614delAAinsGC/p.K205A +YDR188W CCT6 2779 cct6-54 F209E amino_acid_mutation PMID:9409825 F209E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837045_837047delTTTinsGAG/c.625_627delTTTinsGAG/p.F209E +YDR188W CCT6 2780 cct6-55 I210E amino_acid_mutation PMID:9409825 I210E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837048_837050delATTinsGAG/c.628_630delATTinsGAG/p.I210E +YDR188W CCT6 2781 cct6-56 L213D amino_acid_mutation PMID:9409825 L213D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837057_837059delTTGinsGAC/c.637_639delTTGinsGAC/p.L213D +YDR188W CCT6 2782 cct6-57 H221G amino_acid_mutation PMID:9409825 H221G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837081_837082delCAinsGG/c.661_662delCAinsGG/p.H221G +YDR188W CCT6 2783 cct6-58 R220A, H221A, D223A amino_acid_mutation PMID:9409825 R220A|H221A|D223A False R220A,H221A,D223A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837078_837079delAGinsGC/c.658_659delAGinsGC/p.R220A|chrIV:g.837081_837082delCAinsGC/c.661_662delCAinsGC/p.H221A|chrIV:g.837088A>C/c.668A>C/p.D223A +YDR188W CCT6 2785 cct6-60 L236E amino_acid_mutation PMID:9409825 L236E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837126_837127delTTinsGA/c.706_707delTTinsGA/p.L236E +YDR188W CCT6 2786 cct6-61 L240R amino_acid_mutation PMID:9409825 L240R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837138_837139delTTinsAG/c.718_719delTTinsAG/p.L240R +YDR188W CCT6 2787 cct6-62 E241A amino_acid_mutation PMID:9409825 E241A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837142A>C/c.722A>C/p.E241A +YDR188W CCT6 2788 cct6-63 E241A, E243A, E246A amino_acid_mutation PMID:9409825 E241A|E243A|E246A False E241A,E243A,E246A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837142A>C/c.722A>C/p.E241A|chrIV:g.837148A>C/c.728A>C/p.E243A|chrIV:g.837157A>C/c.737A>C/p.E246A +YDR188W CCT6 2789 cct6-64 E241A, E243A, K244A, E246A amino_acid_mutation PMID:9409825 E241A|E243A|K244A|E246A False E241A,E243A,K244A,E246A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837142A>C/c.722A>C/p.E241A|chrIV:g.837148A>C/c.728A>C/p.E243A|chrIV:g.837150_837151delAAinsGC/c.730_731delAAinsGC/p.K244A|chrIV:g.837157A>C/c.737A>C/p.E246A +YDR188W CCT6 2790 cct6-65 E243A amino_acid_mutation PMID:9409825 E243A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837148A>C/c.728A>C/p.E243A +YDR188W CCT6 2791 cct6-66 K244A amino_acid_mutation PMID:9409825 K244A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837150_837151delAAinsGC/c.730_731delAAinsGC/p.K244A +YDR188W CCT6 2792 cct6-67 K244A, E246A amino_acid_mutation PMID:9409825 K244A|E246A False K244A,E246A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837150_837151delAAinsGC/c.730_731delAAinsGC/p.K244A|chrIV:g.837157A>C/c.737A>C/p.E246A +YDR188W CCT6 2793 cct6-68 K244E, E246K amino_acid_mutation PMID:9409825 K244E|E246K False K244E,E246K amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837150A>G/c.730A>G/p.K244E|chrIV:g.837156G>A/c.736G>A/p.E246K +YDR188W CCT6 2795 cct6-70 F251K amino_acid_mutation PMID:9409825 F251K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837171_837173delTTCinsAAG/c.751_753delTTCinsAAG/p.F251K +YDR188W CCT6 2796 cct6-71 L262E amino_acid_mutation PMID:9409825 L262E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837204_837205delTTinsGA/c.784_785delTTinsGA/p.L262E +YDR188W CCT6 2797 cct6-72 K268A amino_acid_mutation PMID:9409825 K268A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837222_837223delAAinsGC/c.802_803delAAinsGC/p.K268A +YDR188W CCT6 2798 cct6-73 E266A, R267A, K268A amino_acid_mutation PMID:9409825 E266A|R267A|K268A False E266A,R267A,K268A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837217A>C/c.797A>C/p.E266A|chrIV:g.837219_837220delAGinsGC/c.799_800delAGinsGC/p.R267A|chrIV:g.837222_837223delAAinsGC/c.802_803delAAinsGC/p.K268A +YDR188W CCT6 2799 cct6-74 K273A, K275A, K276A amino_acid_mutation PMID:9409825 K273A|K275A|K276A False K273A,K275A,K276A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837237_837238delAAinsGC/c.817_818delAAinsGC/p.K273A|chrIV:g.837243_837244delAAinsGC/c.823_824delAAinsGC/p.K275A|chrIV:g.837246_837247delAAinsGC/c.826_827delAAinsGC/p.K276A +YDR188W CCT6 2800 cct6-75 K281A amino_acid_mutation PMID:9409825 K281A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837261_837262delAAinsGC/c.841_842delAAinsGC/p.K281A +YDR188W CCT6 2801 cct6-76 D288A amino_acid_mutation PMID:9409825 D288A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837283A>C/c.863A>C/p.D288A +YDR188W CCT6 2802 cct6-77 K291A amino_acid_mutation PMID:9409825 K291A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837291_837292delAAinsGC/c.871_872delAAinsGC/p.K291A +YDR188W CCT6 2803 cct6-78 F309E amino_acid_mutation PMID:9409825 F309E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837345_837347delTTTinsGAG/c.925_927delTTTinsGAG/p.F309E +YDR188W CCT6 2804 cct6-79 K311V amino_acid_mutation PMID:9409825 K311V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837351_837352delAAinsGT/c.931_932delAAinsGT/p.K311V +YDR188W CCT6 2805 cct6-80 I314E amino_acid_mutation PMID:9409825 I314E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837360_837362delATCinsGAG/c.940_942delATCinsGAG/p.I314E +YDR188W CCT6 2806 cct6-81 R318A, R319A, K321A, R322A, R323A amino_acid_mutation PMID:9409825 R318A|R319A|K321A|R322A|R323A False R318A,R319A,K321A,R322A,R323A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.836883_836884delCGinsGC/c.952_953delCGinsGC/p.R318A|chrIV:g.837375_837376delAGinsGC/c.955_956delAGinsGC/p.R319A|chrIV:g.837381_837382delAAinsGC/c.961_962delAAinsGC/p.K321A|chrIV:g.837384_837385delAGinsGC/c.964_965delAGinsGC/p.R322A|chrIV:g.837387_837388delCGinsGC/c.967_968delCGinsGC/p.R323A +YDR188W CCT6 2807 cct6-82 E326S amino_acid_mutation PMID:9409825 E326S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837396_837397delGAinsTC/c.976_977delGAinsTC/p.E326S +YDR188W CCT6 2808 cct6-83 L343E amino_acid_mutation PMID:9409825 L343E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837447_837448delTTinsGA/c.1027_1028delTTinsGA/p.L343E +YDR188W CCT6 2809 cct6-84 E361A, E362A, K363A amino_acid_mutation PMID:9409825 E361A|E362A|K363A False E361A,E362A,K363A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837502A>C/c.1082A>C/p.E361A|chrIV:g.837505A>C/c.1085A>C/p.E362A|chrIV:g.837507_837508delAAinsGC/c.1087_1088delAAinsGC/p.K363A +YDR188W CCT6 2810 cct6-85 V367E amino_acid_mutation PMID:18680526,PMID:9409825 V367E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837520_837521delTTinsAG/c.1100_1101delTTinsAG/p.V367E +YDR188W CCT6 2811 cct6-86 C376S amino_acid_mutation PMID:9409825 C376S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837546T>A/c.1126T>A/p.C376S +YDR188W CCT6 2812 cct6-87 C376S, T377S amino_acid_mutation PMID:9409825 C376S|T377S False C376S,T377S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837546T>A/c.1126T>A/p.C376S|chrIV:g.837550C>G/c.1130C>G/p.T377S +YDR188W CCT6 2813 cct6-88 T377S amino_acid_mutation PMID:9409825 T377S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837550C>G/c.1130C>G/p.T377S +YDR188W CCT6 2814 cct6-89 K392I amino_acid_mutation PMID:9409825 K392I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837106_837107delAGinsTC/c.1175_1176delAGinsTC/p.K392I +YDR188W CCT6 2815 cct6-90 R396A, D397A amino_acid_mutation PMID:9409825 R396A|D397A False R396A,D397A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837606_837607delAGinsGC/c.1186_1187delAGinsGC/p.R396A|chrIV:g.837610A>C/c.1190A>C/p.D397A +YDR188W CCT6 2816 cct6-91 V405E amino_acid_mutation PMID:9409825 V405E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837634_837635delTTinsAG/c.1214_1215delTTinsAG/p.V405E +YDR188W CCT6 2817 cct6-92 D408L amino_acid_mutation PMID:9409825 D408L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837642_837643delGAinsCT/c.1222_1223delGAinsCT/p.D408L +YDR188W CCT6 2818 cct6-93 K407A, D408A, K409A amino_acid_mutation PMID:18680526,PMID:9409825 K407A|D408A|K409A False K407A,D408A,K409A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837150_837151delAAinsGC/c.1219_1220delAAinsGC/p.K407A|chrIV:g.837643A>C/c.1223A>C/p.D408A|chrIV:g.837645_837646delAAinsGC/c.1225_1226delAAinsGC/p.K409A +YDR188W CCT6 2819 cct6-94 G414E amino_acid_mutation PMID:9409825 G414E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837661_837662delGCinsAG/c.1241_1242delGCinsAG/p.G414E +YDR188W CCT6 2820 cct6-95 G416D amino_acid_mutation PMID:9409825 G416D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837667G>A/c.1247G>A/p.G416D +YDR188W CCT6 2821 cct6-96 G416E amino_acid_mutation PMID:9409825 G416E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837667_837668delGTinsAG/c.1247_1248delGTinsAG/p.G416E +YDR188W CCT6 2822 cct6-97 G414A, G416A amino_acid_mutation PMID:9409825 G414A|G416A False G414A,G416A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837661G>C/c.1241G>C/p.G414A|chrIV:g.837667G>C/c.1247G>C/p.G416A +YDR188W CCT6 2823 cct6-98 G438L amino_acid_mutation PMID:9409825 G438L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837732_837733delGGinsCT/c.1312_1313delGGinsCT/p.G438L +YDR188W CCT6 2824 cct6-99 D465A, D468A amino_acid_mutation PMID:9409825 D465A|D468A False D465A,D468A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.837325A>C/c.1394A>C/p.D465A|chrIV:g.837823A>C/c.1403A>C/p.D468A +YDR189W SLY1 2825 sly1-1 R266K amino_acid_mutation PMID:15958490 R266K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.839188G>A/c.797G>A/p.R266K +YDR189W SLY1 2826 sly1-2 D59A amino_acid_mutation PMID:15958490 D59A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.838519A>C/c.176A>C/p.D59A +YDR189W SLY1 2827 sly1-3 I153K amino_acid_mutation PMID:15958490 I153K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.838849_838850delTCinsAG/c.458_459delTCinsAG/p.I153K +YDR189W SLY1 2828 sly1-4 H276A amino_acid_mutation PMID:15958490 H276A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.839217_839218delCAinsGC/c.826_827delCAinsGC/p.H276A +YDR189W SLY1 2829 sly1-5 R452A amino_acid_mutation PMID:15958490 R452A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.839745_839746delAGinsGC/c.1354_1355delAGinsGC/p.R452A +YDR189W SLY1 2830 sly1-6 E618A amino_acid_mutation PMID:15958490 E618A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.840244A>C/c.1853A>C/p.E618A +YDR196C CAB5 2838 cab5-R146C R146C amino_acid_mutation PMID:24360804 R146C False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.850562_850564delAGAinsTGT/c.436_438delAGAinsTGT/p.R146C +YDR204W COQ4 2843 coq4-1 E226K amino_acid_mutation PMID:19022396 E226K False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.858812G>A/c.676G>A/p.E226K +YDR212W TCP1 2869 tcp1-(cct1-5) R26I amino_acid_mutation PMID:9380710 R26I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.887307_887308delCGinsAT/c.76_77delCGinsAT/p.R26I +YDR212W TCP1 2874 tcp1α-245 G48E amino_acid_mutation PMID:7908441,PMID:9409825 G48E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.887374G>A/c.143G>A/p.G48E +YDR213W UPC2 2875 upc2-1 G888D amino_acid_mutation PMID:3059715,PMID:32311084,PMID:32564734,PMID:35792326,PMID:36557185,PMID:9696767 G888D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.892413G>A/c.2663G>A/p.G888D +YDR217C RAD9 2877 rad9-(ofm14) W1064Ter amino_acid_insertion_and_mutation PMID:17720931 W1064Ter False W1064TER amino_acid_insertion_and_mutation:multiple_aa amino_acid_insertion_and_mutation chrIV:g.900289_900291delinsCCTCTCTGT/c.3190_3192delinsACAGAGAGG/p.W1064_W1064delinsTER +YDR228C PCF11 2934 pcf11-13 D68A, S69A, I70A amino_acid_mutation PMID:12727883 D68A|S69A|I70A False D68A,S69A,I70A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.923604T>G/c.203A>C/p.D68A|chrIV:g.923602A>C/c.205T>G/p.S69A|chrIV:g.923598_923599delATinsGC/c.208_209delATinsGC/p.I70A +YDR228C PCF11 2935 pcf11-2 E232G, D280G, C424R, S538G, F562S, S579P amino_acid_mutation PMID:11713271,PMID:23962978,PMID:27708008,PMID:34232857,PMID:34664673,PMID:9032237 E232G|D280G|C424R|S538G|F562S|S579P False E232G,D280G,C424R,S538G,F562S,S579P amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.923112T>C/c.695A>G/p.E232G|chrIV:g.922968T>C/c.839A>G/p.D280G|chrIV:g.922537A>G/c.1270T>C/p.C424R|chrIV:g.922195T>C/c.1612A>G/p.S538G|chrIV:g.922122A>G/c.1685T>C/p.F562S|chrIV:g.922072A>G/c.1735T>C/p.S579P +YDR228C PCF11 2936 pcf11-9 A66D amino_acid_mutation PMID:12727883 A66D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.923610G>T/c.197C>A/p.A66D +YDR244W PEX5 2956 pex5-S121A S121A amino_acid_mutation PMID:36122347 S121A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.950923T>G/c.361T>G/p.S121A +YDR244W PEX5 2957 pex5-S121D S121D amino_acid_mutation PMID:36122347 S121D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.950923_950925delTCAinsGAC/c.361_363delTCAinsGAC/p.S121D +YDR244W PEX5 2958 pex5-S172,S174,S180,S189,S192A S172A, S174A, S180A, S189A, S192A amino_acid_mutation PMID:36122347 S172A|S174A|S180A|S189A|S192A False S172A,S174A,S180A,S189A,S192A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.951076_951077delAGinsGC/c.514_515delAGinsGC/p.S172A|chrIV:g.951082_951083delAGinsGC/c.520_521delAGinsGC/p.S174A|chrIV:g.951100T>G/c.538T>G/p.S180A|chrIV:g.951127T>G/c.565T>G/p.S189A|chrIV:g.951136T>G/c.574T>G/p.S192A +YDR244W PEX5 2959 pex5-S172,S174,S180,S189,S192D S172D, S174D, S180D, S189D, S192D amino_acid_mutation PMID:36122347 S172D|S174D|S180D|S189D|S192D False S172D,S174D,S180D,S189D,S192D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.951076_951077delAGinsGA/c.514_515delAGinsGA/p.S172D|chrIV:g.951082_951083delAGinsGA/c.520_521delAGinsGA/p.S174D|chrIV:g.951100_951102delTCGinsGAC/c.538_540delTCGinsGAC/p.S180D|chrIV:g.951127_951128delTCinsGA/c.565_566delTCinsGA/p.S189D|chrIV:g.951136_951137delTCinsGA/c.574_575delTCinsGA/p.S192D +YDR244W PEX5 2960 pex5-S216,232A S216A, S232A amino_acid_mutation PMID:36122347 S216A|S232A False S216A,S232A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.951208T>G/c.646T>G/p.S216A|chrIV:g.951256_951257delAGinsGC/c.694_695delAGinsGC/p.S232A +YDR244W PEX5 2961 pex5-S216,232D S216D, S232D amino_acid_mutation PMID:36122347 S216D|S232D False S216D,S232D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.951208_951210delTCAinsGAC/c.646_648delTCAinsGAC/p.S216D|chrIV:g.951256_951257delAGinsGA/c.694_695delAGinsGA/p.S232D +YDR244W PEX5 2962 pex5-S216A S216A amino_acid_mutation PMID:36122347 S216A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.951208T>G/c.646T>G/p.S216A +YDR244W PEX5 2963 pex5-S216D S216D amino_acid_mutation PMID:36122347 S216D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.951208_951210delTCAinsGAC/c.646_648delTCAinsGAC/p.S216D +YDR244W PEX5 2964 pex5-S232A S232A amino_acid_mutation PMID:36122347 S232A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.951256_951257delAGinsGC/c.694_695delAGinsGC/p.S232A +YDR244W PEX5 2965 pex5-S232D S232D amino_acid_mutation PMID:36122347 S232D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.951256_951257delAGinsGA/c.694_695delAGinsGA/p.S232D +YDR244W PEX5 2966 pex5-S255,S263,S274A S255A, S263A, S274A amino_acid_mutation PMID:36122347 S255A|S263A|S274A False S255A,S263A,S274A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.951325T>G/c.763T>G/p.S255A|chrIV:g.951349_951350delAGinsGC/c.787_788delAGinsGC/p.S263A|chrIV:g.951382T>G/c.820T>G/p.S274A +YDR244W PEX5 2967 pex5-S255,S263,S274D S255D, S263D, S274D amino_acid_mutation PMID:36122347 S255D|S263D|S274D False S255D,S263D,S274D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.951325_951326delTCinsGA/c.763_764delTCinsGA/p.S255D|chrIV:g.951349_951350delAGinsGA/c.787_788delAGinsGA/p.S263D|chrIV:g.951382_951383delTCinsGA/c.820_821delTCinsGA/p.S274D +YDR244W PEX5 2968 pex5-S330A S330A amino_acid_mutation PMID:36122347 S330A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.951550_951551delAGinsGC/c.988_989delAGinsGC/p.S330A +YDR244W PEX5 2969 pex5-S330D S330D amino_acid_mutation PMID:36122347 S330D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.951550_951551delAGinsGA/c.988_989delAGinsGA/p.S330D +YDR244W PEX5 2970 pex5-S507,523A S507A, S523A amino_acid_mutation PMID:36122347 S507A|S523A False S507A,S523A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.952081T>G/c.1519T>G/p.S507A|chrIV:g.952129T>G/c.1567T>G/p.S523A +YDR244W PEX5 2971 pex5-S507,523D S507D, S523D amino_acid_mutation PMID:36122347 S507D|S523D False S507D,S523D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.952081_952083delTCAinsGAC/c.1519_1521delTCAinsGAC/p.S507D|chrIV:g.952129_952130delTCinsGA/c.1567_1568delTCinsGA/p.S523D +YDR244W PEX5 2972 pex5-S568A S568A amino_acid_mutation PMID:36122347 S568A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.952264T>G/c.1702T>G/p.S568A +YDR244W PEX5 2973 pex5-S568D S568D amino_acid_mutation PMID:36122347 S568D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.952264_952265delTCinsGA/c.1702_1703delTCinsGA/p.S568D +YDR244W PEX5 2974 pex5-S611A S611A amino_acid_mutation PMID:36122347 S611A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.952393T>G/c.1831T>G/p.S611A +YDR244W PEX5 2975 pex5-S611D S611D amino_acid_mutation PMID:36122347 S611D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.952393_952395delTCGinsGAC/c.1831_1833delTCGinsGAC/p.S611D +YDR244W PEX5 2976 pex5-S7A S7A amino_acid_mutation PMID:36122347 S7A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.950581T>G/c.19T>G/p.S7A +YDR244W PEX5 2977 pex5-S7D S25A amino_acid_mutation PMID:36122347 S25A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.950606_950607delAGinsGC/c.73_74delAGinsGC/p.S25A +YDR285W ZIP1 3011 zip1-4LA L643A, L650A, L657A, L664A amino_acid_mutation PMID:17435220 L643A|L650A|L657A|L664A False L643A,L650A,L657A,L664A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1034362_1034363delCTinsGC/c.1927_1928delCTinsGC/p.L643A|chrIV:g.1034383_1034384delCTinsGC/c.1948_1949delCTinsGC/p.L650A|chrIV:g.1034404_1034405delCTinsGC/c.1969_1970delCTinsGC/p.L657A|chrIV:g.1034425_1034426delTTinsGC/c.1990_1991delTTinsGC/p.L664A +YDR289C RTT103 3020 rtt103-R108N R108N amino_acid_mutation PMID:20818393,PMID:36974034 R108N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1039186_1039187delGAinsAC/c.323_324delGAinsAC/p.R108N +YDR291W HRQ1 3021 hrq1-7KR K164R, K219R, K221R, K366R, K839R, K872R, K938R amino_acid_mutation PMID:36126066 K164R|K219R|K221R|K366R|K839R|K872R|K938R False K164R,K219R,K221R,K366R,K839R,K872R,K938R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1040218A>G/c.491A>G/p.K164R|chrIV:g.1040383A>G/c.656A>G/p.K219R|chrIV:g.1040389A>G/c.662A>G/p.K221R|chrIV:g.1040824A>G/c.1097A>G/p.K366R|chrIV:g.1042243A>G/c.2516A>G/p.K839R|chrIV:g.1042342A>G/c.2615A>G/p.K872R|chrIV:g.1042540A>G/c.2813A>G/p.K938R +YDR296W MHR1 3032 mhr1-1 G172D amino_acid_mutation PMID:12198175 G172D False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1055726G>A/c.515G>A/p.G172D +YDR300C PRO1 3041 pro1-D156A D156A amino_acid_mutation PMID:27442630 D156A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1062325T>G/c.467A>C/p.D156A +YDR300C PRO1 3046 pro1-Q79H Q79H amino_acid_mutation PMID:32748014,PMID:34576795 Q79H False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1062625C>A/c.237G>T/p.Q79H +YDR301W CFT1 3052 cft1-(yhh1-3) L302P, N716S, N762S, Y766C, K933R, D1070E, N1136D amino_acid_mutation PMID:12145212,PMID:19324962,PMID:34232857 L302P|N716S|N762S|Y766C|K933R|D1070E|N1136D False L302P,N716S,N762S,Y766C,K933R,D1070E,N1136D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1064256T>C/c.905T>C/p.L302P|chrIV:g.1065498A>G/c.2147A>G/p.N716S|chrIV:g.1065636A>G/c.2285A>G/p.N762S|chrIV:g.1065648A>G/c.2297A>G/p.Y766C|chrIV:g.1066149A>G/c.2798A>G/p.K933R|chrIV:g.1066561T>G/c.3210T>G/p.D1070E|chrIV:g.1066757A>G/c.3406A>G/p.N1136D +YDR310C SUM1 3067 sum1-1 T988I amino_acid_mutation PMID:18268008 T988I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1081354G>A/c.2963C>T/p.T988I +YDR310C SUM1 3070 sum1-i T306A amino_acid_mutation PMID:20385771 T306A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1083401T>C/c.916A>G/p.T306A +YDR322C-A TIM11 3080 tim11-eG15L G15L amino_acid_mutation PMID:12694201 G15L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1112250_1112251delGGinsCT/c.43_44delGGinsCT/p.G15L +YDR322C-A TIM11 3081 tim11-eG19L G19L amino_acid_mutation PMID:12694201 G19L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1112238_1112239delGGinsCT/c.55_56delGGinsCT/p.G19L +YDR325W YCG1 3088 Ycg1p-K977A K977A amino_acid_mutation PMID:27463097 K977A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1120054_1120055delAAinsGC/c.2929_2930delAAinsGC/p.K977A +YDR325W YCG1 3089 Ycg1p-R978A R978A amino_acid_mutation PMID:27463097 R978A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1120057_1120058delAGinsGC/c.2932_2933delAGinsGC/p.R978A +YDR328C SKP1 3095 skp1-11 G160E, R167K amino_acid_mutation PMID:19858292,PMID:19910927,PMID:8706131 G160E|R167K False G160E,R167K amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1125606_1125607delGCinsAG/c.479_480delGCinsAG/p.G160E|chrIV:g.1125519C>T/c.500G>A/p.R167K +YDR328C SKP1 3096 skp1-12 L8G amino_acid_mutation PMID:16735578,PMID:19942853,PMID:30273335,PMID:8706131 L8G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1125996_1125997delCTinsGG/c.22_23delCTinsGG/p.L8G +YDR328C SKP1 3097 skp1-3 I172N amino_acid_mutation PMID:25721128,PMID:8706132 I172N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1125504A>T/c.515T>A/p.I172N +YDR328C SKP1 3098 skp1-4 L146S amino_acid_mutation PMID:35294869,PMID:8706132 L146S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1125582A>G/c.437T>C/p.L146S +YDR329C PEX3 3100 pex3-1 V81E, N178D, N188I, N242D, N247Y, F353I amino_acid_mutation PMID:19948495 V81E|N178D|N188I|N242D|N247Y|F353I False V81E,N178D,N188I,N242D,N247Y,F353I amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1127354A>T/c.242T>A/p.V81E|chrIV:g.1127064T>C/c.532A>G/p.N178D|chrIV:g.1127033T>A/c.563A>T/p.N188I|chrIV:g.1126872T>C/c.724A>G/p.N242D|chrIV:g.1126857T>A/c.739A>T/p.N247Y|chrIV:g.1126539A>T/c.1057T>A/p.F353I +YDR345C HXT3 3125 HXT3-23 G175S amino_acid_mutation PMID:9447989 G175S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1164138C>T/c.523G>A/p.G175S +YDR356W SPC110 3131 spc110-36A,91A S36A, S91A amino_acid_mutation PMID:17213332 S36A|S91A False S36A,S91A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1186212T>G/c.106T>G/p.S36A|chrIV:g.1186377_1186378delAGinsGC/c.271_272delAGinsGC/p.S91A +YDR356W SPC110 3132 spc110-91A S91A amino_acid_mutation PMID:17213332 S91A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1186377_1186378delAGinsGC/c.271_272delAGinsGC/p.S91A +YDR356W SPC110 3133 spc110-S11A S11A amino_acid_mutation PMID:36259662 S11A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1186137_1186138delAGinsGC/c.31_32delAGinsGC/p.S11A +YDR356W SPC110 3134 spc110-S11A,S36A S11A, S36A amino_acid_mutation PMID:36259662 S11A|S36A False S11A,S36A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1186137_1186138delAGinsGC/c.31_32delAGinsGC/p.S11A|chrIV:g.1186212T>G/c.106T>G/p.S36A +YDR356W SPC110 3135 spc110-S36A S36A amino_acid_mutation PMID:17213332,PMID:36259662 S36A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1186212T>G/c.106T>G/p.S36A +YDR364C CDC40 3142 cdc40-1 K239* partial_amino_acid_deletion PMID:359409,PMID:3916722,PMID:7753021 K239* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrIV:g.1203496T>A/c.715A>T/p.K239* +YDR367W KEI1 3148 kei1-1 F103I amino_acid_mutation PMID:19726565 F103I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1213255T>A/c.307T>A/p.F103I +YDR390C UBA2 3187 uba2-101 G147V amino_acid_mutation PMID:30192228 G147V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1256408C>A/c.440G>T/p.G147V +YDR390C UBA2 3190 uba2-R484M R484M amino_acid_mutation PMID:36870416 R484M False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1255397C>A/c.1451G>T/p.R484M +YDR394W RPT3 3216 rpt3R K219R amino_acid_mutation PMID:21931558 K219R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1262336A>G/c.656A>G/p.K219R +YDR432W NPL3 3330 npl3-48 S230P amino_acid_mutation PMID:25823586 S230P False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1329470T>C/c.688T>C/p.S230P +YDR448W ADA2 3345 ada2-RLR R211S, L212A, R215A amino_acid_mutation PMID:18950642 R211S|L212A|R215A False R211S,L212A,R215A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1356697A>C/c.633A>C/p.R211S|chrIV:g.1356662_1356663delTTinsGC/c.634_635delTTinsGC/p.L212A|chrIV:g.1356707_1356708delAGinsGC/c.643_644delAGinsGC/p.R215A +YDR470C UGO1 3407 ugo1-1 S76P, D153G, D263G, I314T, K448R amino_acid_mutation PMID:19237599 S76P|D153G|D263G|I314T|K448R False S76P,D153G,D263G,I314T,K448R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1400989A>G/c.226T>C/p.S76P|chrIV:g.1400757T>C/c.458A>G/p.D153G|chrIV:g.1400427T>C/c.788A>G/p.D263G|chrIV:g.1400274A>G/c.941T>C/p.I314T|chrIV:g.1399872T>C/c.1343A>G/p.K448R +YDR470C UGO1 3408 ugo1-4 I112T, T154A, I262M, N420Y amino_acid_mutation PMID:19237599 I112T|T154A|I262M|N420Y False I112T,T154A,I262M,N420Y amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1400880A>G/c.335T>C/p.I112T|chrIV:g.1400755T>C/c.460A>G/p.T154A|chrIV:g.1400429T>C/c.786A>G/p.I262M|chrIV:g.1399957T>A/c.1258A>T/p.N420Y +YDR477W SNF1 3417 Snf1as I132G amino_acid_mutation PMID:22761425 I132G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1412766_1412767delATinsGG/c.394_395delATinsGG/p.I132G +YDR477W SNF1 3425 snf1-G53R G53R amino_acid_mutation PMID:16980405,PMID:17586499,PMID:2557546,PMID:29643469,PMID:32673313 G53R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1412529G>A/c.157G>A/p.G53R +YDR477W SNF1 3433 snf1-S214A S214A amino_acid_mutation PMID:27524664 S214A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1413012T>G/c.640T>G/p.S214A +YDR477W SNF1 3434 snf1-S214E S214E amino_acid_mutation PMID:27524664 S214E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1413012_1413014delTCTinsGAG/c.640_642delTCTinsGAG/p.S214E +YDR477W SNF1 3438 snf1-T210A T210A amino_acid_mutation PMID:16980405,PMID:23472170,PMID:25116136,PMID:27524664 T210A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1413000A>G/c.628A>G/p.T210A +YDR477W SNF1 3442 snf1-T210E T210E amino_acid_mutation PMID:27524664 T210E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1413000_1413002delACTinsGAG/c.628_630delACTinsGAG/p.T210E +YDR507C GIN4 3477 gin4-Δ13P S389A, S430A, S431A, S460A, T462A, S465A, T539A, S540A, S617A, S639A, S683A, S750A, S453delta amino_acid_insertion_and_mutation PMID:16861226 S389A|S430A|S431A|S460A|T462A|S465A|T539A|S540A|S617A|S639A|S683A|S750A|S453delta False S389A,S430A,S431A,S460A,T462A,S465A,T539A,S540A,S617A,S639A,S683A,S750A,S453DELTA amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_insertion_and_mutation:multiple_aa amino_acid_insertion_and_mutation chrIV:g.1464622A>C/c.1165T>G/p.S389A|chrIV:g.1464499A>C/c.1288T>G/p.S430A|chrIV:g.1464495_1464496delAGinsGC/c.1291_1292delAGinsGC/p.S431A|chrIV:g.1464409A>C/c.1378T>G/p.S460A|chrIV:g.1464403T>C/c.1384A>G/p.T462A|chrIV:g.1464394A>C/c.1393T>G/p.S465A|chrIV:g.1464172T>C/c.1615A>G/p.T539A|chrIV:g.1464168_1464169delAGinsGC/c.1618_1619delAGinsGC/p.S540A|chrIV:g.1463937_1463938delAGinsGC/c.1849_1850delAGinsGC/p.S617A|chrIV:g.1463872A>C/c.1915T>G/p.S639A|chrIV:g.1463739_1463740delAGinsGC/c.2047_2048delAGinsGC/p.S683A|chrIV:g.1463539A>C/c.2248T>G/p.S750A|chrIV:g.1464428_1464430delinsTGCTGTAAGCTCGTC/c.1357_1359delinsGACGAGCTTACAGCA/p.S453_S453delinsDELTA +YDR508C GNP1 3479 GNP1-W239L W239L amino_acid_mutation PMID:12709439 W239L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1467729C>A/c.716G>T/p.W239L +YDR510W SMT3 3481 smt3-101 K40E amino_acid_mutation PMID:30192228 K40E False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1469517A>G/c.118A>G/p.K40E +YDR510W SMT3 3482 smt3-102 F37L amino_acid_mutation PMID:30192228 F37L False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1469508T>C/c.109T>C/p.F37L +YDR510W SMT3 3483 smt3-201 D68H amino_acid_mutation PMID:30192228 D68H False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1469601G>C/c.202G>C/p.D68H +YDR510W SMT3 3484 smt3-202 R46M amino_acid_mutation PMID:30192228 R46M False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1469536_1469537delGAinsTG/c.137_138delGAinsTG/p.R46M +YDR510W SMT3 3487 smt3-K11/15/19R K11R, K15R, K19R amino_acid_mutation PMID:20543865 K11R|K15R|K19R False K11R,K15R,K19R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1469431A>G/c.32A>G/p.K11R|chrIV:g.1469443A>G/c.44A>G/p.K15R|chrIV:g.1468724A>G/c.56A>G/p.K19R +YDR531W CAB1 3502 cab1-A299V A299V amino_acid_mutation PMID:33396642 A299V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499127C>T/c.896C>T/p.A299V +YDR531W CAB1 3503 cab1-A352T A352T amino_acid_mutation PMID:33396642 A352T False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499285G>A/c.1054G>A/p.A352T +YDR531W CAB1 3505 cab1-D213N D213N amino_acid_mutation PMID:33396642 D213N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498868G>A/c.637G>A/p.D213N +YDR531W CAB1 3506 cab1-D24A D24A amino_acid_mutation PMID:36167065 D24A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498302A>C/c.71A>C/p.D24A +YDR531W CAB1 3507 cab1-D24G D24G amino_acid_mutation PMID:33396642 D24G False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498302A>G/c.71A>G/p.D24G +YDR531W CAB1 3508 cab1-E105A E105A amino_acid_mutation PMID:36167065 E105A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498545A>C/c.314A>C/p.E105A +YDR531W CAB1 3510 cab1-F330A F330A amino_acid_mutation PMID:36167065 F330A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499219_1499220delTTinsGC/c.988_989delTTinsGC/p.F330A +YDR531W CAB1 3511 cab1-G26V G26V amino_acid_mutation PMID:33396642 G26V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498308G>T/c.77G>T/p.G26V +YDR531W CAB1 3512 cab1-G311R G311R amino_acid_mutation PMID:33396642 G311R False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499162G>A/c.931G>A/p.G311R +YDR531W CAB1 3513 cab1-G351A G351A amino_acid_mutation PMID:36167065 G351A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499283G>C/c.1052G>C/p.G351A +YDR531W CAB1 3514 cab1-G351S G351S amino_acid_mutation PMID:19266201,PMID:31409644,PMID:34491400,PMID:36613877 G351S False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499282G>A/c.1051G>A/p.G351S +YDR531W CAB1 3515 cab1-I287T I287T amino_acid_mutation PMID:33396642 I287T False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498982T>C/c.860T>C/p.I287T +YDR531W CAB1 3516 cab1-I291T I291T amino_acid_mutation PMID:33396642,PMID:36613877 I291T False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499103T>C/c.872T>C/p.I291T +YDR531W CAB1 3517 cab1-I294V I294V amino_acid_mutation PMID:33396642 I294V False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499111A>G/c.880A>G/p.I294V +YDR531W CAB1 3518 cab1-L179P L179P amino_acid_mutation PMID:33396642 L179P False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498767T>C/c.536T>C/p.L179P +YDR531W CAB1 3519 cab1-N290A N290A amino_acid_mutation PMID:36167065 N290A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499099_1499100delAAinsGC/c.868_869delAAinsGC/p.N290A +YDR531W CAB1 3520 cab1-N290I N290I amino_acid_mutation PMID:33396642,PMID:36613877 N290I False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499100A>T/c.869A>T/p.N290I +YDR531W CAB1 3521 cab1-Q195A Q195A amino_acid_mutation PMID:36167065 Q195A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498814_1498815delCAinsGC/c.583_584delCAinsGC/p.Q195A +YDR531W CAB1 3522 cab1-Q293A Q293A amino_acid_mutation PMID:36167065 Q293A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499108_1499109delCAinsGC/c.877_878delCAinsGC/p.Q293A +YDR531W CAB1 3523 cab1-R173A R173A amino_acid_mutation PMID:36167065 R173A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498748_1498749delAGinsGC/c.517_518delAGinsGC/p.R173A +YDR531W CAB1 3524 cab1-S158A S158A amino_acid_mutation PMID:36167065 S158A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498703T>G/c.472T>G/p.S158A +YDR531W CAB1 3525 cab1-S237N S237N amino_acid_mutation PMID:33396642 S237N False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498940_1498942delTCAinsAAC/c.709_711delTCAinsAAC/p.S237N +YDR531W CAB1 3526 cab1-T46A T46A amino_acid_mutation PMID:36167065 T46A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498367A>G/c.136A>G/p.T46A +YDR531W CAB1 3527 cab1-W185A W185A amino_acid_mutation PMID:36167065 W185A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498784_1498785delTGinsGC/c.553_554delTGinsGC/p.W185A +YDR531W CAB1 3528 cab1-W331A W331A amino_acid_mutation PMID:36167065 W331A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499222_1499223delTGinsGC/c.991_992delTGinsGC/p.W331A +YDR531W CAB1 3530 cab1-Y197A Y197A amino_acid_mutation PMID:36167065 Y197A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498820_1498821delTAinsGC/c.589_590delTAinsGC/p.Y197A +YDR531W CAB1 3531 cab1-Y220A Y220A amino_acid_mutation PMID:36167065 Y220A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1498889_1498890delTAinsGC/c.658_659delTAinsGC/p.Y220A +YDR531W CAB1 3532 cab1-Y313A Y313A amino_acid_mutation PMID:36167065 Y313A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499168_1499169delTAinsGC/c.937_938delTAinsGC/p.Y313A +YDR531W CAB1 3533 cab1-Y326A Y326A amino_acid_mutation PMID:36167065 Y326A False amino_acid_mutation:single_aa amino_acid_mutation chrIV:g.1499207_1499208delTAinsGC/c.976_977delTAinsGC/p.Y326A +YEL019C MMS21 3583 mms21-RING C200A, H202A amino_acid_mutation PMID:17923688 C200A|H202A False C200A,H202A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.120703_120704delTGinsGC/c.598_599delTGinsGC/p.C200A|chrV:g.120697_120698delCAinsGC/c.604_605delCAinsGC/p.H202A +YEL019C MMS21 3589 mms21-sp C200S, H202A amino_acid_mutation PMID:21138837 C200S|H202A False C200S,H202A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.120704A>T/c.598T>A/p.C200S|chrV:g.120697_120698delCAinsGC/c.604_605delCAinsGC/p.H202A +YEL020W-A TIM9 3597 tim9-1 G71R amino_acid_mutation PMID:12923659 G71R False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.117421G>A/c.211G>A/p.G71R +YEL020W-A TIM9 3598 tim9-19 E52G amino_acid_mutation PMID:12656987 E52G False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.117365A>G/c.155A>G/p.E52G +YEL020W-A TIM9 3599 tim9-3 V40A, S60P amino_acid_mutation PMID:12656987 V40A|S60P False V40A,S60P amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.117329T>C/c.119T>C/p.V40A|chrV:g.117388T>C/c.178T>C/p.S60P +YEL022W GEA2 3621 gea2-28 E464G, F481L amino_acid_mutation PMID:15930122 E464G|F481L False E464G,F481L amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.112811A>G/c.1391A>G/p.E464G|chrV:g.112861T>C/c.1441T>C/p.F481L +YEL022W GEA2 3622 gea2-60 F477S amino_acid_mutation PMID:15930122 F477S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.112850T>C/c.1430T>C/p.F477S +YEL022W GEA2 3623 gea2-610 D485G amino_acid_mutation PMID:15930122 D485G False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.112874A>G/c.1454A>G/p.D485G +YEL022W GEA2 3624 gea2-74 I466V, S467P amino_acid_mutation PMID:15930122 I466V|S467P False I466V,S467P amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.112816A>G/c.1396A>G/p.I466V|chrV:g.112819T>C/c.1399T>C/p.S467P +YEL031W SPF1 3644 spf1-1 G815S amino_acid_mutation PMID:10361284 G815S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.92700G>A/c.2443G>A/p.G815S +YEL032W MCM3 3647 mcm3-1 G246E amino_acid_mutation PMID:2233713,PMID:23390603,PMID:23962978,PMID:25721128,PMID:27708008,PMID:34544143,PMID:8224843 G246E False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.87673G>A/c.737G>A/p.G246E +YEL034W HYP2 3650 hyp2-(tif51A-1) P83S amino_acid_mutation PMID:24923804 P83S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.85922C>T/c.247C>T/p.P83S +YEL050C RML2 3667 rml2-H343Q H343Q amino_acid_mutation PMID:9079633 H343Q False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.59823A>T/c.1029T>A/p.H343Q +YER009W NTF2 3731 ntf2-1 M83T amino_acid_mutation PMID:8702493 M83T False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.172362T>C/c.248T>C/p.M83T +YER009W NTF2 3732 ntf2-2 D91G amino_acid_mutation PMID:8702493 D91G False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.172386A>G/c.272A>G/p.D91G +YER020W GPA2 3757 GPA2-2 G132V amino_acid_mutation PMID:9384580 G132V False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.195562G>T/c.395G>T/p.G132V +YER020W GPA2 3758 GPA2-3 G299A amino_acid_mutation PMID:9384580 G299A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.195935G>C/c.896G>C/p.G299A +YER022W SRB4 3772 srb4ts L21S, N24I, L124M, S226P, M313I, E460G, E583G, F649S amino_acid_mutation PMID:16263706 L21S|N24I|L124M|S226P|M313I|E460G|E583G|F649S False L21S,N24I,L124M,S226P,M313I,E460G,E583G,F649S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.198873T>C/c.62T>C/p.L21S|chrV:g.198882A>T/c.71A>T/p.N24I|chrV:g.199181T>A/c.370T>A/p.L124M|chrV:g.199487T>C/c.676T>C/p.S226P|chrV:g.199750G>C/c.939G>C/p.M313I|chrV:g.200154A>G/c.1379A>G/p.E460G|chrV:g.200559A>G/c.1748A>G/p.E583G|chrV:g.200757T>C/c.1946T>C/p.F649S +YER043C SAH1 3809 sah1-1 T279I amino_acid_mutation PMID:19270382 T279I False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.236386G>A/c.836C>T/p.T279I +YER046W SPO73 3819 spo73AAA R119A, K121A, K123A amino_acid_mutation PMID:27303688 R119A|K121A|K123A False R119A,K121A,K123A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.242868_242869delAGinsGC/c.355_356delAGinsGC/p.R119A|chrV:g.243540_243541delAAinsGC/c.361_362delAAinsGC/p.K121A|chrV:g.243546_243547delAAinsGC/c.367_368delAAinsGC/p.K123A +YER048W-A ISD11 3821 isd11-1 F4V, K45E, N57D, R71G, M78K, V86E amino_acid_mutation PMID:16341089 F4V|K45E|N57D|R71G|M78K|V86E False F4V,K45E,N57D,R71G,M78K,V86E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.250727T>G/c.10T>G/p.F4V|chrV:g.250850A>G/c.133A>G/p.K45E|chrV:g.250805A>G/c.169A>G/p.N57D|chrV:g.250847A>G/c.211A>G/p.R71G|chrV:g.250950T>A/c.233T>A/p.M78K|chrV:g.250974T>A/c.257T>A/p.V86E +YER068W MOT2 3840 mot2-rr I64A,G167A,F202A,C244A amino_acid_mutation PMID:35675778 I64A|G167A|F202A|C244A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.293239_293240delATinsGC/c.190_191delATinsGC/p.I64A|chrV:g.293549G>C/c.500G>C/p.G167A|chrV:g.293653_293654delTTinsGC/c.604_605delTTinsGC/p.F202A|chrV:g.293779_293780delTGinsGC/c.730_731delTGinsGC/p.C244A +YER069W ARG56 3844 arg56-T340I T340I amino_acid_mutation PMID:32805427 T340I False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.296428C>T/c.1019C>T/p.T340I +YER072W VTC1 3883 vtc1-K24E K24E amino_acid_mutation PMID:37066886 K24E False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.302875A>G/c.70A>G/p.K24E +YER072W VTC1 3884 vtc1-R31E R31E amino_acid_mutation PMID:37066886 R31E False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.302896_302898delCGTinsGAG/c.91_93delCGTinsGAG/p.R31E +YER083C GET2 3894 get2-E220C E220C amino_acid_mutation PMID:28877464 E220C False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.326372_326374delGAAinsTGT/c.658_660delGAAinsTGT/p.E220C +YER083C GET2 3895 get2-K150A,K157A K150A, K157A amino_acid_mutation PMID:32910895,PMID:36640319 K150A|K157A False K150A,K157A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.326583_326584delAAinsGC/c.448_449delAAinsGC/p.K150A|chrV:g.326562_326563delAAinsGC/c.469_470delAAinsGC/p.K157A +YER083C GET2 3896 get2-S28C S28C amino_acid_mutation PMID:28877464 S28C False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.326949G>C/c.83C>G/p.S28C +YER093C TSC11 3921 tsc11-tsB1 Y370H, F419L, H500L amino_acid_mutation PMID:15809876 Y370H|F419L|H500L False Y370H,F419L,H500L amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.346505A>G/c.1108T>C/p.Y370H|chrV:g.346358A>G/c.1255T>C/p.F419L|chrV:g.346114T>A/c.1499A>T/p.H500L +YER093C TSC11 3922 tsc11-tsB2 L357P, Y422H, E466V, F568L, L577P, E638G amino_acid_mutation PMID:15809876 L357P|Y422H|E466V|F568L|L577P|E638G False L357P,Y422H,E466V,F568L,L577P,E638G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.346543A>G/c.1070T>C/p.L357P|chrV:g.346349A>G/c.1264T>C/p.Y422H|chrV:g.346216T>A/c.1397A>T/p.E466V|chrV:g.345911A>G/c.1702T>C/p.F568L|chrV:g.345883A>G/c.1730T>C/p.L577P|chrV:g.345700T>C/c.1913A>G/p.E638G +YER093C TSC11 3923 tsc11-tsC1 K808T, F820S, K865E, F904V amino_acid_mutation PMID:15809876 K808T|F820S|K865E|F904V False K808T,F820S,K865E,F904V amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.345190T>G/c.2423A>C/p.K808T|chrV:g.345154A>G/c.2459T>C/p.F820S|chrV:g.345020T>C/c.2593A>G/p.K865E|chrV:g.344903A>C/c.2710T>G/p.F904V +YER093C TSC11 3924 tsc11-tsD1 I1008T, E1076G, K1079G, F1101S, N1142D, I1159V, I1267K, E1274G, D1276G, N1352D, N1367D amino_acid_mutation PMID:15809876 I1008T|E1076G|K1079G|F1101S|N1142D|I1159V|I1267K|E1274G|D1276G|N1352D|N1367D False I1008T,E1076G,K1079G,F1101S,N1142D,I1159V,I1267K,E1274G,D1276G,N1352D,N1367D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.344590A>G/c.3023T>C/p.I1008T|chrV:g.344386T>C/c.3227A>G/p.E1076G|chrV:g.344377_344378delAAinsGG/c.3235_3236delAAinsGG/p.K1079G|chrV:g.344311A>G/c.3302T>C/p.F1101S|chrV:g.344189T>C/c.3424A>G/p.N1142D|chrV:g.344138T>C/c.3475A>G/p.I1159V|chrV:g.343813A>T/c.3800T>A/p.I1267K|chrV:g.343792T>C/c.3821A>G/p.E1274G|chrV:g.343786T>C/c.3827A>G/p.D1276G|chrV:g.343559T>C/c.4054A>G/p.N1352D|chrV:g.343514T>C/c.4099A>G/p.N1367D +YER101C AST2 3949 ast2-V427F V427F amino_acid_mutation PMID:36870416 V427F False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.360516C>A/c.1279G>T/p.V427F +YER118C SHO1 3968 SHO1-P120L P120L amino_acid_mutation PMID:18591427,PMID:34347092 P120L False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.398697G>A/c.359C>T/p.P120L +YER133W GLC7 4025 glc7-5 F226L amino_acid_mutation PMID:11801737,PMID:34232857 F226L False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.433695T>C/c.676T>C/p.F226L +YER143W DDI1 4071 ddi1-D220N D220N amino_acid_mutation PMID:32193351 D220N False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.456976G>A/c.658G>A/p.D220N +YER148W SPT15 4083 spt15-(TBPEB-N69S) N69S amino_acid_mutation PMID:12419230 N69S False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.465508A>G/c.206A>G/p.N69S +YER148W SPT15 4085 spt15-300 F177S,Y195H,K218R amino_acid_mutation PMID:17158319 F177S|Y195H|K218R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.465832T>C/c.530T>C/p.F177S|chrV:g.465885T>C/c.583T>C/p.Y195H|chrV:g.465955A>G/c.653A>G/p.K218R +YER148W SPT15 4101 spt15-M3 S42N, C78R, S163P, I212N amino_acid_mutation PMID:21437883,PMID:28168313 S42N|C78R|S163P|I212N False S42N,C78R,S163P,I212N amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.465427G>A/c.125G>A/p.S42N|chrV:g.465534T>C/c.232T>C/p.C78R|chrV:g.465789T>C/c.487T>C/p.S163P|chrV:g.465937T>A/c.635T>A/p.I212N +YER148W SPT15 4102 spt15-M4 F10S, M197K amino_acid_mutation PMID:21437883 F10S|M197K False F10S,M197K amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.465331T>C/c.29T>C/p.F10S|chrV:g.465892T>A/c.590T>A/p.M197K +YER148W SPT15 4103 spt15-M5 K15T, W26C, G192D amino_acid_mutation PMID:21437883 K15T|W26C|G192D False K15T,W26C,G192D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.465346A>C/c.44A>C/p.K15T|chrV:g.465380G>T/c.78G>T/p.W26C|chrV:g.465877G>A/c.575G>A/p.G192D +YER148W SPT15 4108 spt15-m2 L76V, L175S amino_acid_mutation PMID:21437883 L76V|L175S False L76V,L175S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.465528T>G/c.226T>G/p.L76V|chrV:g.465826T>C/c.524T>C/p.L175S +YER155C BEM2 4122 bem2-R2003A R2003A amino_acid_mutation PMID:35887509 R2003A False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.476841_476842delAGinsGC/c.6007_6008delAGinsGC/p.R2003A +YER171W RAD3 4156 rad3-1 E236K amino_acid_mutation PMID:2174856,PMID:3885009 E236K False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.527787G>A/c.706G>A/p.E236K +YER171W RAD3 4161 rad3-2 G461R amino_acid_mutation PMID:2174856,PMID:25500814,PMID:2840336,PMID:3100912,PMID:3885009,PMID:3897851,PMID:6361496,PMID:6752694,PMID:7026973,PMID:80746 G461R False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.528462G>A/c.1381G>A/p.G461R +YER171W RAD3 4162 rad3-20 G47D amino_acid_mutation PMID:2174856,PMID:3023877 G47D False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.527221G>A/c.140G>A/p.G47D +YER171W RAD3 4163 rad3-21 K48E amino_acid_mutation PMID:2174856,PMID:3023877 K48E False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.527223A>G/c.142A>G/p.K48E +YER171W RAD3 4164 rad3-22 A596V amino_acid_mutation PMID:3023877 A596V False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.528868C>T/c.1787C>T/p.A596V +YER171W RAD3 4165 rad3-23 G595E,A596V amino_acid_mutation PMID:3023877 G595E|A596V False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.528865G>A/c.1784G>A/p.G595E|chrV:g.528868C>T/c.1787C>T/p.A596V +YER171W RAD3 4166 rad3-24 G604R amino_acid_mutation PMID:2174856,PMID:3023877 G604R False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.528891G>A/c.1810G>A/p.G604R +YER171W RAD3 4167 rad3-25 E548K amino_acid_mutation PMID:2174856,PMID:3023877 E548K False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.528723G>A/c.1642G>A/p.E548K +YER171W RAD3 4168 rad3-26 T462I, S464L amino_acid_mutation PMID:2174856,PMID:3023877 T462I|S464L False T462I,S464L amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.528466C>T/c.1385C>T/p.T462I|chrV:g.528472C>T/c.1391C>T/p.S464L +YER171W RAD3 4170 rad3-28 S543L, R594C amino_acid_mutation PMID:2174856,PMID:3023877 S543L|R594C False S543L,R594C amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrV:g.528709C>T/c.1628C>T/p.S543L|chrV:g.528861C>T/c.1780C>T/p.R594C +YER171W RAD3 4171 rad3-29 W554stop partial_amino_acid_deletion PMID:3023877 W554stop False W554* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrV:g.528742G>A/c.1661G>A/p.W554* +YER171W RAD3 4172 rad3-30 W564stop partial_amino_acid_deletion PMID:3023877 W564stop False W564* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrV:g.528772G>A/c.1691G>A/p.W564* +YER171W RAD3 4174 rad3-32 S209F amino_acid_mutation PMID:2174856 S209F False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.527707C>T/c.626C>T/p.S209F +YER171W RAD3 4180 rad3-ts1 S73F amino_acid_mutation PMID:2174856 S73F False amino_acid_mutation:single_aa amino_acid_mutation chrV:g.527299C>T/c.218C>T/p.S73F +YFL005W SEC4 4266 SEC4N34 S34N amino_acid_mutation PMID:15772160 S34N False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.130433_130435delTCAinsAAC/c.100_102delTCAinsAAC/p.S34N +YFL008W SMC1 4277 smc1-E508A E508A amino_acid_mutation PMID:19948494 E508A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.120951A>C/c.1523A>C/p.E508A +YFL008W SMC1 4282 smc1-Y300F Y300F amino_acid_mutation PMID:8276886 Y300F False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.120327A>T/c.899A>T/p.Y300F +YFL009W CDC4 4284 cdc4-12 G434S, D442G amino_acid_mutation PMID:10409741 G434S|D442G False G434S,D442G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.117444G>A/c.1300G>A/p.G434S|chrVI:g.117469A>G/c.1325A>G/p.D442G +YFL024C EPL1 4303 epl1-15 Q84STOP partial_amino_acid_deletion PMID:12782659 Q84STOP False Q84* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVI:g.90096G>A/c.250C>T/p.Q84* +YFL026W STE2 4481 ste2-V196A,S219L V196A, S219L amino_acid_mutation PMID:27150158 V196A|S219L False V196A,S219L amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83166T>C/c.587T>C/p.V196A|chrVI:g.83235C>T/c.656C>T/p.S219L +YFL026W STE2 4483 ste2-V223I,V257D V223I, V257D amino_acid_mutation PMID:27150158 V223I|V257D False V223I,V257D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.83246G>A/c.667G>A/p.V223I|chrVI:g.83349T>A/c.770T>A/p.V257D +YFL029C CAK1 4507 cak1-K31R K31R amino_acid_mutation PMID:9135146 K31R False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.79070T>C/c.92A>G/p.K31R +YFL039C ACT1 4591 act1-101 D363A, E364A amino_acid_mutation PMID:11156976,PMID:1427032,PMID:15254266,PMID:16221887,PMID:27708008,PMID:32426863,PMID:8167410 D363A|E364A False D363A,E364A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53300T>G/c.1088A>C/p.D363A|chrVI:g.53297T>G/c.1091A>C/p.E364A +YFL039C ACT1 4592 act1-102 K359A, E361A amino_acid_mutation PMID:1427032 K359A|E361A False K359A,E361A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53312_53313delAAinsGC/c.1075_1076delAAinsGC/p.K359A|chrVI:g.53306T>G/c.1082A>C/p.E361A +YFL039C ACT1 4593 act1-103 E334A, R335A, K336A amino_acid_mutation PMID:1427032 E334A|R335A|K336A False E334A,R335A,K336A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53387T>G/c.1001A>C/p.E334A|chrVI:g.53384_53385delAGinsGC/c.1003_1004delAGinsGC/p.R335A|chrVI:g.53381_53382delAAinsGC/c.1006_1007delAAinsGC/p.K336A +YFL039C ACT1 4594 act1-104 K315A, E316A amino_acid_mutation PMID:1427032 K315A|E316A False K315A,E316A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53444_53445delAAinsGC/c.943_944delAAinsGC/p.K315A|chrVI:g.53441T>G/c.947A>C/p.E316A +YFL039C ACT1 4595 act1-105 E311A, R312A amino_acid_mutation PMID:1427032,PMID:27708008,PMID:34544143 E311A|R312A False E311A,R312A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53456T>G/c.932A>C/p.E311A|chrVI:g.53453_53454delAGinsGC/c.934_935delAGinsGC/p.R312A +YFL039C ACT1 4596 act1-106 R290A, K291A, E292A amino_acid_mutation PMID:1427032 R290A|K291A|E292A False R290A,K291A,E292A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53519_53520delCGinsGC/c.868_869delCGinsGC/p.R290A|chrVI:g.53516_53517delAAinsGC/c.871_872delAAinsGC/p.K291A|chrVI:g.53513T>G/c.875A>C/p.E292A +YFL039C ACT1 4597 act1-107 D286A, D288A amino_acid_mutation PMID:1427032,PMID:20215471 D286A|D288A False D286A,D288A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53531T>G/c.857A>C/p.D286A|chrVI:g.53525T>G/c.863A>C/p.D288A +YFL039C ACT1 4598 act1-108 R256A, E259A amino_acid_mutation PMID:1427032,PMID:20215471,PMID:27708008,PMID:32997990,PMID:8167410 R256A|E259A False R256A,E259A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53621_53622delAGinsGC/c.766_767delAGinsGC/p.R256A|chrVI:g.53612T>G/c.776A>C/p.E259A +YFL039C ACT1 4599 act1-109 E253A, R254A amino_acid_mutation PMID:1427032 E253A|R254A False E253A,R254A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53630T>G/c.758A>C/p.E253A|chrVI:g.53627_53628delAGinsGC/c.760_761delAGinsGC/p.R254A +YFL039C ACT1 4600 act1-110 E237A, K238A amino_acid_mutation PMID:1427032 E237A|K238A False E237A,K238A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53678T>G/c.710A>C/p.E237A|chrVI:g.53675_53676delAAinsGC/c.712_713delAAinsGC/p.K238A +YFL039C ACT1 4601 act1-111 D222A, E224A, E226A amino_acid_mutation PMID:1427032,PMID:16221887,PMID:27708008,PMID:34096057,PMID:34544143,PMID:8167410 D222A|E224A|E226A False D222A,E224A,E226A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53723T>G/c.665A>C/p.D222A|chrVI:g.53717T>G/c.671A>C/p.E224A|chrVI:g.53711T>G/c.677A>C/p.E226A +YFL039C ACT1 4602 act1-112 K213A, E214A, K215A amino_acid_mutation PMID:1427032,PMID:27708008 K213A|E214A|K215A False K213A,E214A,K215A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53750_53751delAAinsGC/c.637_638delAAinsGC/p.K213A|chrVI:g.53747T>G/c.641A>C/p.E214A|chrVI:g.53744_53745delAAinsGC/c.643_644delAAinsGC/p.K215A +YFL039C ACT1 4603 act1-113 R210A, D211A amino_acid_mutation PMID:1427032,PMID:34096057,PMID:8167410 R210A|D211A False R210A,D211A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53759_53760delCGinsGC/c.628_629delCGinsGC/p.R210A|chrVI:g.53756T>G/c.632A>C/p.D211A +YFL039C ACT1 4604 act1-114 E205A, R206A, E207A amino_acid_mutation PMID:1427032 E205A|R206A|E207A False E205A,R206A,E207A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53774T>G/c.614A>C/p.E205A|chrVI:g.53771_53772delAGinsGC/c.616_617delAGinsGC/p.R206A|chrVI:g.53768T>G/c.620A>C/p.E207A +YFL039C ACT1 4605 act1-115 E195A, R196A amino_acid_mutation PMID:1427032 E195A|R196A False E195A,R196A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53804T>G/c.584A>C/p.E195A|chrVI:g.53801_53802delCGinsGC/c.586_587delCGinsGC/p.R196A +YFL039C ACT1 4606 act1-116 D187A, K191A amino_acid_mutation PMID:1427032 D187A|K191A False D187A,K191A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53828T>G/c.560A>C/p.D187A|chrVI:g.53816_53817delAAinsGC/c.571_572delAAinsGC/p.K191A +YFL039C ACT1 4607 act1-117 R183A, D184A amino_acid_mutation PMID:1427032 R183A|D184A False R183A,D184A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53840_53841delAGinsGC/c.547_548delAGinsGC/p.R183A|chrVI:g.53837T>G/c.551A>C/p.D184A +YFL039C ACT1 4609 act1-119 R116A, E117A, K118A amino_acid_mutation PMID:10594004,PMID:1427032,PMID:21552543,PMID:27708008,PMID:34096057,PMID:8167410 R116A|E117A|K118A False R116A,E117A,K118A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.54041_54042delAGinsGC/c.346_347delAGinsGC/p.R116A|chrVI:g.54038T>G/c.350A>C/p.E117A|chrVI:g.54035_54036delAAinsGC/c.352_353delAAinsGC/p.K118A +YFL039C ACT1 4610 act1-120 E99A, E100A amino_acid_mutation PMID:1427032,PMID:27708008,PMID:32426863,PMID:34096057,PMID:8167410 E99A|E100A False E99A,E100A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.54092T>G/c.296A>C/p.E99A|chrVI:g.54089T>G/c.299A>C/p.E100A +YFL039C ACT1 4611 act1-121 E83A, K84A amino_acid_mutation PMID:1427032,PMID:16221887,PMID:27708008,PMID:8167410 E83A|K84A False E83A,K84A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.54140T>G/c.248A>C/p.E83A|chrVI:g.54137_54138delAAinsGC/c.250_251delAAinsGC/p.K84A +YFL039C ACT1 4612 act1-122 D80A, D81A amino_acid_mutation PMID:1427032,PMID:27708008 D80A|D81A False D80A,D81A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.54149T>G/c.239A>C/p.D80A|chrVI:g.54146T>G/c.242A>C/p.D81A +YFL039C ACT1 4613 act1-123 R68A, E72A amino_acid_mutation PMID:1427032 R68A|E72A False R68A,E72A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.54185_54186delCGinsGC/c.202_203delCGinsGC/p.R68A|chrVI:g.54173T>G/c.215A>C/p.E72A +YFL039C ACT1 4614 act1-124 D56A, E57A amino_acid_mutation PMID:1427032,PMID:27708008,PMID:34096057,PMID:8167410 D56A|E57A False D56A,E57A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.54221T>G/c.167A>C/p.D56A|chrVI:g.54218T>G/c.170A>C/p.E57A +YFL039C ACT1 4615 act1-125 K50A, D51A amino_acid_mutation PMID:1427032,PMID:27708008,PMID:8167410 K50A|D51A False K50A,D51A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.54239_54240delAAinsGC/c.148_149delAAinsGC/p.K50A|chrVI:g.54752T>G/c.152A>C/p.D51A +YFL039C ACT1 4616 act1-126 K326A, K328A amino_acid_mutation PMID:1427032 K326A|K328A False K326A,K328A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53411_53412delAAinsGC/c.976_977delAAinsGC/p.K326A|chrVI:g.53405_53406delAAinsGC/c.982_983delAAinsGC/p.K328A +YFL039C ACT1 4617 act1-127 E270A, D275A amino_acid_mutation PMID:1427032,PMID:20215471 E270A|D275A False E270A,D275A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53579T>G/c.809A>C/p.E270A|chrVI:g.53564T>G/c.824A>C/p.D275A +YFL039C ACT1 4618 act1-128 E241A, D244A amino_acid_mutation PMID:1427032,PMID:20215471 E241A|D244A False E241A,D244A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53666T>G/c.722A>C/p.E241A|chrVI:g.53657T>G/c.731A>C/p.D244A +YFL039C ACT1 4619 act1-129 R177A, D179A amino_acid_mutation PMID:1427032,PMID:27708008,PMID:32426863,PMID:34544143,PMID:8167410 R177A|D179A False R177A,D179A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53858_53859delAGinsGC/c.529_530delAGinsGC/p.R177A|chrVI:g.53852T>G/c.536A>C/p.D179A +YFL039C ACT1 4621 act1-131 K61A, R62A amino_acid_mutation PMID:1427032 K61A|R62A False K61A,R62A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.54206_54207delAAinsGC/c.181_182delAAinsGC/p.K61A|chrVI:g.54203_54204delAGinsGC/c.184_185delAGinsGC/p.R62A +YFL039C ACT1 4622 act1-132 R37A, R39A amino_acid_mutation PMID:1427032,PMID:27708008,PMID:33751052,PMID:8167410 R37A|R39A False R37A,R39A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.54278_54279delAGinsGC/c.109_110delAGinsGC/p.R37A|chrVI:g.54272_54273delAGinsGC/c.115_116delAGinsGC/p.R39A +YFL039C ACT1 4623 act1-133 D24A, D25A amino_acid_mutation PMID:1427032,PMID:16221887,PMID:23390603,PMID:27708008,PMID:34096057,PMID:8167410 D24A|D25A False D24A,D25A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.54317T>G/c.71A>C/p.D24A|chrVI:g.54314T>G/c.74A>C/p.D25A +YFL039C ACT1 4624 act1-134 D11A amino_acid_mutation PMID:1427032 D11A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.54356T>G/c.32A>C/p.D11A +YFL039C ACT1 4625 act1-135 E4A amino_acid_mutation PMID:1427032 E4A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.54377T>G/c.11A>C/p.E4A +YFL039C ACT1 4626 act1-136 D2A amino_acid_mutation PMID:1427032,PMID:20215471,PMID:23390603,PMID:27708008,PMID:8167410 D2A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.54692T>G/c.5A>C/p.D2A +YFL039C ACT1 4628 act1-157 D157E amino_acid_mutation PMID:15254266 D157E False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53917A>C/c.471T>G/p.D157E +YFL039C ACT1 4631 act1-20 G48V amino_acid_mutation PMID:11156976,PMID:34096057 G48V False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.54245C>A/c.143G>T/p.G48V +YFL039C ACT1 4633 act1-4 E259V amino_acid_mutation PMID:11156976,PMID:1427032,PMID:23390603,PMID:27708008,PMID:34096057,PMID:35587152 E259V False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.53612T>A/c.776A>T/p.E259V +YFR002W NIC96 4668 nic96-1 L260P, P332L amino_acid_mutation PMID:16118201,PMID:7828598,PMID:8682854 L260P|P332L False L260P,P332L amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.150794T>C/c.779T>C/p.L260P|chrVI:g.151010C>T/c.995C>T/p.P332L +YFR002W NIC96 4669 nic96-FFF F136E,F139E,F159E amino_acid_mutation PMID:35679425 F136E|F139E|F159E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.150421_150423delTTTinsGAG/c.406_408delTTTinsGAG/p.F136E|chrVI:g.150430_150432delTTTinsGAG/c.415_417delTTTinsGAG/p.F139E|chrVI:g.150490_150492delTTTinsGAG/c.475_477delTTTinsGAG/p.F159E +YFR004W RPN11 4680 rpn11-C116A C116A amino_acid_mutation PMID:12370088,PMID:31487956 C116A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.153738_153739delTGinsGC/c.346_347delTGinsGC/p.C116A +YFR004W RPN11 4682 rpn11-D116S C116S amino_acid_mutation PMID:31487956 C116S False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.153738T>A/c.346T>A/p.C116S +YFR004W RPN11 4683 rpn11-D122A D122A amino_acid_mutation PMID:12370088,PMID:31487956 D122A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.153757A>C/c.365A>C/p.D122A +YFR004W RPN11 4684 rpn11-H111A H111A amino_acid_mutation PMID:12370088,PMID:31487956 H111A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.153723_153724delCAinsGC/c.331_332delCAinsGC/p.H111A +YFR004W RPN11 4685 rpn11-S119A S119A amino_acid_mutation PMID:12370088,PMID:31487956 S119A False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.153747T>G/c.355T>G/p.S119A +YFR019W FAB1 4697 fab1-20 G2213E amino_acid_mutation PMID:12795693 G2213E False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.191139G>A/c.6638G>A/p.G2213E +YFR019W FAB1 4699 fab1-D2134R D2134R amino_acid_mutation PMID:9763421,PMID:9865702 D2134R False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.190901_190902delGAinsCG/c.6400_6401delGAinsCG/p.D2134R +YFR019W FAB1 4701 fab1-G2042/2045V G2042V, G2045V amino_acid_mutation PMID:9763421,PMID:9865702 G2042V|G2045V False G2042V,G2045V amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.190626G>T/c.6125G>T/p.G2042V|chrVI:g.190635G>T/c.6134G>T/p.G2045V +YFR027W ECO1 4714 eco1-1 G211D amino_acid_mutation PMID:18653893,PMID:21552543,PMID:27708008,PMID:32476470,PMID:32878900,PMID:9990856 G211D False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.208083G>A/c.632G>A/p.G211D +YFR027W ECO1 4715 eco1-H53Y H53Y amino_acid_mutation PMID:20703090 H53Y False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.207608C>T/c.157C>T/p.H53Y +YFR027W ECO1 4716 eco1-R222G,K223G R222G, K223G amino_acid_mutation PMID:11864574,PMID:20703090 R222G|K223G False R222G,K223G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.208043A>G/c.664A>G/p.R222G|chrVI:g.208118_208119delAAinsGG/c.667_668delAAinsGG/p.K223G +YFR027W ECO1 4717 eco1-W216G W216G amino_acid_mutation PMID:19948494,PMID:20797861,PMID:22719263 W216G False amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.208025T>G/c.646T>G/p.W216G +YFR028C CDC14 4733 cdc14-hm P433A, K435A amino_acid_mutation PMID:36876065 P433A|K435A False P433A,K435A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVI:g.208772G>C/c.1297C>G/p.P433A|chrVI:g.208765_208766delAAinsGC/c.1303_1304delAAinsGC/p.K435A +YGL001C ERG26 4790 erg26-R39K R39K amino_acid_mutation PMID:26456460 R39K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.496387C>T/c.116G>A/p.R39K +YGL003C CDH1 4791 cdh1-M11 T12A, S16A, S42A, T157A, S169A, T173A, T176A, S227A, S239A, S418A, S436A amino_acid_mutation PMID:19387440 T12A|S16A|S42A|T157A|S169A|T173A|T176A|S227A|S239A|S418A|S436A False T12A,S16A,S42A,T157A,S169A,T173A,T176A,S227A,S239A,S418A,S436A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.494141T>C/c.34A>G/p.T12A|chrVII:g.494129A>C/c.46T>G/p.S16A|chrVII:g.494051A>C/c.124T>G/p.S42A|chrVII:g.493781T>C/c.469A>G/p.T157A|chrVII:g.493670A>C/c.505T>G/p.S169A|chrVII:g.493658T>C/c.517A>G/p.T173A|chrVII:g.493649T>C/c.526A>G/p.T176A|chrVII:g.493496A>C/c.679T>G/p.S227A|chrVII:g.493460A>C/c.715T>G/p.S239A|chrVII:g.492923A>C/c.1252T>G/p.S418A|chrVII:g.492869A>C/c.1306T>G/p.S436A|chrVII:g.494141T>C/c.34A>G/p.T12A|chrVII:g.494129A>C/c.46T>G/p.S16A|chrVII:g.494051A>C/c.124T>G/p.S42A|chrVII:g.493781T>C/c.469A>G/p.T157A|chrVII:g.493670A>C/c.505T>G/p.S169A|chrVII:g.493658T>C/c.517A>G/p.T173A|chrVII:g.493649T>C/c.526A>G/p.T176A|chrVII:g.493496A>C/c.679T>G/p.S227A|chrVII:g.493460A>C/c.715T>G/p.S239A|chrVII:g.492923A>C/c.1252T>G/p.S418A|chrVII:g.492869A>C/c.1306T>G/p.S436A +YGL003C CDH1 4792 cdh1-m11a T12A, S16A, S42A, T157A, S169A, T173A, T176A, S227A, S239A, S418A, S436A amino_acid_mutation PMID:18500339 T12A|S16A|S42A|T157A|S169A|T173A|T176A|S227A|S239A|S418A|S436A False T12A,S16A,S42A,T157A,S169A,T173A,T176A,S227A,S239A,S418A,S436A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.494141T>C/c.34A>G/p.T12A|chrVII:g.494129A>C/c.46T>G/p.S16A|chrVII:g.494051A>C/c.124T>G/p.S42A|chrVII:g.493781T>C/c.469A>G/p.T157A|chrVII:g.493670A>C/c.505T>G/p.S169A|chrVII:g.493658T>C/c.517A>G/p.T173A|chrVII:g.493649T>C/c.526A>G/p.T176A|chrVII:g.493496A>C/c.679T>G/p.S227A|chrVII:g.493460A>C/c.715T>G/p.S239A|chrVII:g.492923A>C/c.1252T>G/p.S418A|chrVII:g.492869A>C/c.1306T>G/p.S436A|chrVII:g.494141T>C/c.34A>G/p.T12A|chrVII:g.494129A>C/c.46T>G/p.S16A|chrVII:g.494051A>C/c.124T>G/p.S42A|chrVII:g.493781T>C/c.469A>G/p.T157A|chrVII:g.493670A>C/c.505T>G/p.S169A|chrVII:g.493658T>C/c.517A>G/p.T173A|chrVII:g.493649T>C/c.526A>G/p.T176A|chrVII:g.493496A>C/c.679T>G/p.S227A|chrVII:g.493460A>C/c.715T>G/p.S239A|chrVII:g.492923A>C/c.1252T>G/p.S418A|chrVII:g.492869A>C/c.1306T>G/p.S436A +YGL003C CDH1 4793 cdh1-m4A S16A, S42A, T157A, T173A amino_acid_mutation PMID:18500339 S16A|S42A|T157A|T173A False S16A,S42A,T157A,T173A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.494129A>C/c.46T>G/p.S16A|chrVII:g.494051A>C/c.124T>G/p.S42A|chrVII:g.493781T>C/c.469A>G/p.T157A|chrVII:g.493658T>C/c.517A>G/p.T173A +YGL008C PMA1 4798 pma1-(kti10) Q125K, Q357R amino_acid_mutation PMID:15104597 Q125K|Q357R False Q125K,Q357R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.482294G>T/c.373C>A/p.Q125K|chrVII:g.481597T>C/c.1070A>G/p.Q357R +YGL008C PMA1 4801 pma1-105 S368F amino_acid_mutation PMID:25190112,PMID:2532214,PMID:2963211,PMID:35216480 S368F False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.481564G>A/c.1103C>T/p.S368F +YGL008C PMA1 4802 pma1-210 E129Q amino_acid_mutation PMID:2901955 E129Q False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.482282C>G/c.385G>C/p.E129Q +YGL008C PMA1 4803 pma1-211 E129L amino_acid_mutation PMID:2901955 E129L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.482281_482282delGAinsCT/c.385_386delGAinsCT/p.E129L +YGL008C PMA1 4804 pma1-212 D200N amino_acid_mutation PMID:2901955 D200N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.482069C>T/c.598G>A/p.D200N +YGL008C PMA1 4805 pma1-213 E233Q amino_acid_mutation PMID:2901955 E233Q False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.481970C>G/c.697G>C/p.E233Q +YGL008C PMA1 4806 pma1-214 R271T amino_acid_mutation PMID:2901955 R271T False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.481855C>G/c.812G>C/p.R271T +YGL008C PMA1 4807 pma1-215 P335A amino_acid_mutation PMID:2901955 P335A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.481664G>C/c.1003C>G/p.P335A +YGL008C PMA1 4808 pma1-216 D378N amino_acid_mutation PMID:2901955 D378N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.481535C>T/c.1132G>A/p.D378N +YGL008C PMA1 4809 pma1-217 D378E amino_acid_mutation PMID:2901955 D378E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.481533G>C/c.1134C>G/p.D378E +YGL008C PMA1 4810 pma1-218 D378T amino_acid_mutation PMID:2901955 D378T False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.481534_481535delGAinsAC/c.1132_1133delGAinsAC/p.D378T +YGL008C PMA1 4811 pma1-219 K474G amino_acid_mutation PMID:2901955 K474G False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.481246_481247delAAinsGG/c.1420_1421delAAinsGG/p.K474G +YGL008C PMA1 4812 pma1-220 D534N amino_acid_mutation PMID:2901955 D534N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.481067C>T/c.1600G>A/p.D534N +YGL008C PMA1 4813 pma1-221 D560N amino_acid_mutation PMID:2901955 D560N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480989C>T/c.1678G>A/p.D560N +YGL008C PMA1 4814 pma1-222 D638N amino_acid_mutation PMID:2901955 D638N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480755C>T/c.1912G>A/p.D638N +YGL008C PMA1 4815 pma1-223 N848D amino_acid_mutation PMID:2901955 N848D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.480125T>C/c.2542A>G/p.N848D +YGL008C PMA1 4818 pma1-7 P434A, G789S amino_acid_mutation PMID:16921548 P434A|G789S False P434A,G789S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.481367G>C/c.1300C>G/p.P434A|chrVII:g.480539_480541delGGAinsAGC/c.2365_2367delGGAinsAGC/p.G789S +YGL018C JAC1 4871 jac1-LLLDDEQY L105A, L106A, L109A, D110A, D113A, E114A, Q117A, Y163A amino_acid_mutation PMID:22306468 L105A|L106A|L109A|D110A|D113A|E114A|Q117A|Y163A False L105A,L106A,L109A,D110A,D113A,E114A,Q117A,Y163A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.459351_459352delCTinsGC/c.313_314delCTinsGC/p.L105A|chrVII:g.459348_459349delTTinsGC/c.316_317delTTinsGC/p.L106A|chrVII:g.459339_459340delCTinsGC/c.325_326delCTinsGC/p.L109A|chrVII:g.459388T>G/c.329A>C/p.D110A|chrVII:g.459327T>G/c.338A>C/p.D113A|chrVII:g.459324T>G/c.341A>C/p.E114A|chrVII:g.459367_459368delCAinsGC/c.349_350delCAinsGC/p.Q117A|chrVII:g.459177_459178delTAinsGC/c.487_488delTAinsGC/p.Y163A +YGL018C JAC1 4872 jac1-LLY L105A, L109A, Y163A amino_acid_mutation PMID:22306468 L105A|L109A|Y163A False L105A,L109A,Y163A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.459351_459352delCTinsGC/c.313_314delCTinsGC/p.L105A|chrVII:g.459339_459340delCTinsGC/c.325_326delCTinsGC/p.L109A|chrVII:g.459177_459178delTAinsGC/c.487_488delTAinsGC/p.Y163A +YGL020C GET1 4873 get1-A95C A95C amino_acid_mutation PMID:28877464 A95C False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.457587_457588delGCinsTG/c.283_284delGCinsTG/p.A95C +YGL020C GET1 4874 get1-S77C S77C amino_acid_mutation PMID:28877464 S77C False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.457640_457641delCGinsGT/c.230_231delCGinsGT/p.S77C +YGL022W STT3 4877 stt3-3 T85I amino_acid_mutation PMID:7588624 T85I False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.452657C>T/c.254C>T/p.T85I +YGL023C PIB2 4906 pib2-2 P337S amino_acid_mutation PMID:29698392 P337S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.451096G>A/c.1009C>T/p.P337S +YGL023C PIB2 4914 pib2-L340A L340A amino_acid_mutation PMID:34535752 L340A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.451086_451087delCTinsGC/c.1018_1019delCTinsGC/p.L340A +YGL023C PIB2 4919 pib2-R341A R341A amino_acid_mutation PMID:34535752 R341A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.451083_451084delAGinsGC/c.1021_1022delAGinsGC/p.R341A +YGL044C RNA15 4953 rna15-1 L214P amino_acid_mutation PMID:19324962,PMID:34232857 L214P False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.416396A>G/c.641T>C/p.L214P +YGL048C RPT6 4960 rpt6-1 K183E, G184D amino_acid_mutation PMID:10503546,PMID:18644121,PMID:25721128,PMID:27708008,PMID:36167807,PMID:37331598,PMID:8247132 K183E|G184D False K183E,G184D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.410740T>C/c.547A>G/p.K183E|chrVII:g.410736C>T/c.551G>A/p.G184D +YGL058W RAD6 4995 rad6-A126F A126F amino_acid_mutation PMID:36162503 A126F False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394361_394362delGCinsTT/c.376_377delGCinsTT/p.A126F +YGL058W RAD6 4996 rad6-A126T A126T amino_acid_mutation PMID:10803884,PMID:36162503 A126T False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394361G>A/c.376G>A/p.A126T +YGL058W RAD6 4997 rad6-C88A C88A amino_acid_mutation PMID:2157209,PMID:36162503,PMID:9343433 C88A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394247_394248delTGinsGC/c.262_263delTGinsGC/p.C88A +YGL058W RAD6 4998 rad6-C88S C88S amino_acid_mutation PMID:1658333,PMID:35638611,PMID:9343433 C88S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394247T>A/c.262T>A/p.C88S +YGL058W RAD6 4999 rad6-C88V C88V amino_acid_mutation PMID:2157209 C88V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394247_394248delTGinsGT/c.262_263delTGinsGT/p.C88V +YGL058W RAD6 5001 rad6-E49K E49K amino_acid_mutation PMID:10803884 E49K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394130G>A/c.145G>A/p.E49K +YGL058W RAD6 5007 rad6-P43L P43L amino_acid_mutation PMID:10803884 P43L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394113C>T/c.128C>T/p.P43L +YGL058W RAD6 5008 rad6-P4L,A5V P4L, A5V amino_acid_mutation PMID:10803884 P4L|A5V False P4L,A5V amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.393996C>T/c.11C>T/p.P4L|chrVII:g.393999C>T/c.14C>T/p.A5V +YGL058W RAD6 5009 rad6-P98L P98L amino_acid_mutation PMID:10803884 P98L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.394278C>T/c.293C>T/p.P98L +YGL075C MPS2 5043 mps2-1 E39K amino_acid_mutation PMID:10397772,PMID:1869587,PMID:23390603,PMID:33332348 E39K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.367974C>T/c.115G>A/p.E39K +YGL093W SPC105 5067 spc105-RASA V76A, F78A amino_acid_mutation PMID:21640906,PMID:32479259,PMID:34861183,PMID:37018287 V76A|F78A False V76A,F78A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.335112T>C/c.227T>C/p.V76A|chrVII:g.335117_335118delTTinsGC/c.232_233delTTinsGC/p.F78A +YGL093W SPC105 5068 spc105-RVAF S77A amino_acid_mutation PMID:21640906,PMID:37018287 S77A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.335114T>G/c.229T>G/p.S77A +YGL097W SRM1 5078 srm1-(prp20-2) G457E amino_acid_mutation PMID:1865879 G457E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.323151G>A/c.1370G>A/p.G457E +YGL113W SLD3 5094 Sld3-2A T600A, S622A amino_acid_mutation PMID:17167415 T600A|S622A False T600A,S622A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.297729A>G/c.1798A>G/p.T600A|chrVII:g.297795T>G/c.1864T>G/p.S622A +YGL113W SLD3 5095 Sld3-A600 T600A amino_acid_mutation PMID:17167415 T600A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.297729A>G/c.1798A>G/p.T600A +YGL116W CDC20 5127 cdc20-2 G360S amino_acid_mutation PMID:21552543,PMID:23962978,PMID:27708008,PMID:32878900,PMID:34544143 G360S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.290886G>A/c.1078G>A/p.G360S +YGL116W CDC20 5128 cdc20-3 E494K amino_acid_mutation PMID:23962978,PMID:25025567,PMID:27708008,PMID:32878900,PMID:34544143,PMID:9482731 E494K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.291288G>A/c.1480G>A/p.E494K +YGL120C PRP43 5149 prp43-1 G395E amino_acid_mutation PMID:9342317 G395E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.282754C>T/c.1184G>A/p.G395E +YGL120C PRP43 5152 prp43-dn1 G194D amino_acid_mutation PMID:9342317 G194D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.283357C>T/c.581G>A/p.G194D +YGL120C PRP43 5153 prp43-dn2 S247L amino_acid_mutation PMID:9342317 S247L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.283198_283199delTCinsCT/c.739_740delTCinsCT/p.S247L +YGL123W RPS2 5207 rps2-S238A S238A amino_acid_mutation PMID:17545469 S238A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.278328T>G/c.712T>G/p.S238A +YGL125W MET13 5220 met13-m1 R344A, T345A amino_acid_mutation PMID:32934008 R344A|T345A False R344A,T345A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.273549_273550delAGinsGC/c.1030_1031delAGinsGC/p.R344A|chrVII:g.273366A>G/c.1033A>G/p.T345A +YGL125W MET13 5221 met13-m2 R357A, S361A amino_acid_mutation PMID:32934008 R357A|S361A False R357A,S361A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.273588_273589delAGinsGC/c.1069_1070delAGinsGC/p.R357A|chrVII:g.273600T>G/c.1081T>G/p.S361A +YGL125W MET13 5223 met13-m5 T519A, W520A amino_acid_mutation PMID:32934008 T519A|W520A False T519A,W520A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.274074A>G/c.1555A>G/p.T519A|chrVII:g.274077_274078delTGinsGC/c.1558_1559delTGinsGC/p.W520A +YGL130W CEG1 5231 ceg1-12 C354Y amino_acid_mutation PMID:8718687 C354Y False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.267205G>A/c.1061G>A/p.C354Y +YGL130W CEG1 5234 ceg1-63 D152N amino_acid_mutation PMID:15226422,PMID:8718687 D152N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.266598G>A/c.454G>A/p.D152N +YGL137W SEC27 5242 sec27-1 G688D amino_acid_mutation PMID:14699056,PMID:17101773,PMID:1869587,PMID:22761830,PMID:23962978,PMID:27068463,PMID:27708008,PMID:31883188,PMID:32673164,PMID:7929113 G688D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.251907_251908delGGinsAC/c.2063_2064delGGinsAC/p.G688D +YGL142C GPI10 5246 gpi10-2 G469Q amino_acid_mutation PMID:25625920 G469Q False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.236714_236715delGGinsCA/c.1405_1406delGGinsCA/p.G469Q +YGL175C SAE2 5286 sae2-(5A) S73A,T90A,S249A,T279A,S289A amino_acid_mutation PMID:18042458 S73A|T90A|S249A|T279A|S289A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.174106A>C/c.217T>G/p.S73A|chrVII:g.174055T>C/c.268A>G/p.T90A|chrVII:g.173578A>C/c.745T>G/p.S249A|chrVII:g.173488T>C/c.835A>G/p.T279A|chrVII:g.173458A>C/c.865T>G/p.S289A +YGL175C SAE2 5298 sae2-2A3A S134A, S249A, S267A, S278A, T279A amino_acid_mutation PMID:24344201 S134A|S249A|S267A|S278A|T279A False S134A,S249A,S267A,S278A,T279A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.173923A>C/c.400T>G/p.S134A|chrVII:g.173578A>C/c.745T>G/p.S249A|chrVII:g.173524A>C/c.799T>G/p.S267A|chrVII:g.173491A>C/c.832T>G/p.S278A|chrVII:g.173488T>C/c.835A>G/p.T279A +YGL175C SAE2 5301 sae2-5D S73D,T90D,S249D,T279D,S289D amino_acid_mutation PMID:18042458 S73D|T90D|S249D|T279D|S289D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.174105_174106delTCinsGA/c.217_218delTCinsGA/p.S73D|chrVII:g.174054_174055delACinsGA/c.268_269delACinsGA/p.T90D|chrVII:g.173576_173578delTCGinsGAC/c.745_747delTCGinsGAC/p.S249D|chrVII:g.173487_173488delACinsGA/c.835_836delACinsGA/p.T279D|chrVII:g.173457_173458delTCinsGA/c.865_866delTCinsGA/p.S289D +YGL175C SAE2 5307 sae2-QQ K239Q, K266Q amino_acid_mutation PMID:24344201 K239Q|K266Q False K239Q,K266Q amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.173608T>G/c.715A>C/p.K239Q|chrVII:g.173527T>G/c.796A>C/p.K266Q +YGL180W ATG1 5319 atg1-D211A D211A amino_acid_mutation PMID:33536246,PMID:9224897 D211A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.160696A>C/c.632A>C/p.D211A +YGL206C CHC1 5353 chc1-1 S75P amino_acid_mutation PMID:19458198 S75P False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.107282A>G/c.223T>C/p.S75P +YGL206C CHC1 5354 chc1-2 V37A, H289R amino_acid_mutation PMID:19458198 V37A|H289R False V37A,H289R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.107395A>G/c.110T>C/p.V37A|chrVII:g.106639T>C/c.866A>G/p.H289R +YGL206C CHC1 5355 chc1-3 S75P, V201A, S338P amino_acid_mutation PMID:19458198 S75P|V201A|S338P False S75P,V201A,S338P amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.107282A>G/c.223T>C/p.S75P|chrVII:g.106903A>G/c.602T>C/p.V201A|chrVII:g.106493A>G/c.1012T>C/p.S338P +YGL206C CHC1 5356 chc1-4 L14P, H317R amino_acid_mutation PMID:19458198 L14P|H317R False L14P,H317R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.107464A>G/c.41T>C/p.L14P|chrVII:g.106555T>C/c.950A>G/p.H317R +YGL206C CHC1 5357 chc1-box F26W, I79S, Q89M amino_acid_mutation PMID:19458198 F26W|I79S|Q89M False F26W,I79S,Q89M amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.107427_107428delTCinsGG/c.77_78delTCinsGG/p.F26W|chrVII:g.107269A>C/c.236T>G/p.I79S|chrVII:g.107239_107240delCAinsAT/c.265_266delCAinsAT/p.Q89M +YGL207W SPT16 5362 spt16-121 N363S, E763G amino_acid_mutation PMID:19727824 N363S|E763G False N363S,E763G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.100056A>G/c.1088A>G/p.N363S|chrVII:g.101256A>G/c.2288A>G/p.E763G +YGL207W SPT16 5363 spt16-197 G132D amino_acid_mutation PMID:1922073,PMID:23689130 G132D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.99363G>A/c.395G>A/p.G132D +YGL244W RTF1 5507 rtf1-3M L532D V547D F554D amino_acid_mutation PMID:34852272 L532D|V547D|F554D False L532D,V547D,F554D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.43091_43093delCTAinsGAC/c.1594_1596delCTAinsGAC/p.L532D|chrVII:g.43137T>A/c.1640T>A/p.V547D|chrVII:g.43157_43158delTTinsGA/c.1660_1661delTTinsGA/p.F554D +YGL245W GUS1 5508 gus1-3 F56L, F63L, M287I, D296G, I630T, K662E amino_acid_mutation PMID:18439903,PMID:36096201,PMID:37160881 F56L|F63L|M287I|D296G|I630T|K662E False F56L,F63L,M287I,D296G,I630T,K662E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.39188T>C/c.166T>C/p.F56L|chrVII:g.39209T>C/c.187T>C/p.F63L|chrVII:g.39883G>C/c.861G>C/p.M287I|chrVII:g.39909A>G/c.887A>G/p.D296G|chrVII:g.40911T>C/c.1889T>C/p.I630T|chrVII:g.41006A>G/c.1984A>G/p.K662E +YGL247W BRR6 5511 brr6-1 R110K amino_acid_mutation PMID:20016074,PMID:26432634 R110K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.37261G>A/c.329G>A/p.R110K +YGL247W BRR6 5513 brr6-4S C96S, C105S, C118S, C124S amino_acid_mutation PMID:29439116 C96S|C105S|C118S|C124S False C96S,C105S,C118S,C124S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.37218T>A/c.286T>A/p.C96S|chrVII:g.37245T>A/c.313T>A/p.C105S|chrVII:g.37284T>A/c.352T>A/p.C118S|chrVII:g.37302T>A/c.370T>A/p.C124S +YGL247W BRR6 5515 brr6-Y100H Y100H amino_acid_mutation PMID:34549174 Y100H False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.37230T>C/c.298T>C/p.Y100H +YGL253W HXK2 5549 hxk2-188 R382T,R383P,E386Q amino_acid_mutation PMID:2685571 R382T|R383P|E386Q False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.25079G>C/c.1145G>C/p.R382T|chrVII:g.25082G>C/c.1148G>C/p.R383P|chrVII:g.25090G>C/c.1156G>C/p.E386Q +YGL253W HXK2 5550 hxk2-200 R391S amino_acid_mutation PMID:2685571 R391S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.25107A>C/c.1173A>C/p.R391S +YGL253W HXK2 5551 hxk2-201 Y220H amino_acid_mutation PMID:2685571,PMID:2685572 Y220H False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24592T>C/c.658T>C/p.Y220H +YGL253W HXK2 5570 hxk2-95 E78C amino_acid_mutation PMID:2685571,PMID:2685572 E78C False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.24166_24168delGAAinsTGT/c.232_234delGAAinsTGT/p.E78C +YGL254W FZF1 5622 fzf1-C14S C14S amino_acid_mutation PMID:34245655 C14S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.22343T>A/c.40T>A/p.C14S +YGL254W FZF1 5623 fzf1-C157S C157S amino_acid_mutation PMID:34245655 C157S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.22772T>A/c.469T>A/p.C157S +YGL254W FZF1 5625 fzf1-C162S C162S amino_acid_mutation PMID:34245655 C162S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.22772T>A/c.484T>A/p.C162S +YGL254W FZF1 5626 fzf1-C19S C19S amino_acid_mutation PMID:34245655 C19S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.22343T>A/c.55T>A/p.C19S +YGL254W FZF1 5627 fzf1-C248S C248S amino_acid_mutation PMID:34245655 C248S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.23045T>A/c.742T>A/p.C248S +YGL254W FZF1 5628 fzf1-C253S C253S amino_acid_mutation PMID:34245655 C253S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.23045T>A/c.757T>A/p.C253S +YGR032W GSC2 5688 gsc2-1 I660K amino_acid_mutation PMID:11800269 I660K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.550242T>A/c.1979T>A/p.I660K +YGR048W UFD1 5706 ufd1-1 V94D amino_acid_mutation PMID:11598205,PMID:11740563,PMID:18812321,PMID:19015277,PMID:20206597,PMID:22045814,PMID:23358411,PMID:7615550 V94D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.590106T>A/c.281T>A/p.V94D +YGR063C SPT4 5722 spt4-138 C10Y amino_acid_mutation PMID:8649393,PMID:8649394 C10Y False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.617796C>T/c.29G>A/p.C10Y +YGR082W TOM20 5745 tom20-(mas20-ΔTPR) F117A,Y118A amino_acid_mutation PMID:8635455 F117A|Y118A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.644392_644393delTTinsGC/c.349_350delTTinsGC/p.F117A|chrVII:g.644395_644396delTAinsGC/c.352_353delTAinsGC/p.Y118A +YGR099W TEL2 5771 tel2-1 S129N amino_acid_mutation PMID:18334620,PMID:19029808,PMID:3513174,PMID:8649421 S129N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.688284G>A/c.386G>A/p.S129N +YGR113W DAM1 5795 dam1-DDD S257D, S265D, S292D amino_acid_mutation PMID:19023403 S257D|S265D|S292D False S257D,S265D,S292D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.719578_719580delTCGinsGAC/c.769_771delTCGinsGAC/p.S257D|chrVII:g.719685_719686delAGinsGA/c.793_794delAGinsGA/p.S265D|chrVII:g.719766_719768delTCAinsGAC/c.874_876delTCAinsGAC/p.S292D +YGR116W SPT6 5801 spt6-50 K1274stop partial_amino_acid_deletion PMID:36924499,PMID:9450930 K1274stop False K1274* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVII:g.724228A>T/c.3820A>T/p.K1274* +YGR116W SPT6 5804 spt6-F249K F249K amino_acid_mutation PMID:21094070 F249K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.721153_721155delTTTinsAAG/c.745_747delTTTinsAAG/p.F249K +YGR116W SPT6 5817 spt6-YW Y255A, W257A amino_acid_mutation PMID:21057455,PMID:33888559,PMID:36924499 Y255A|W257A False Y255A,W257A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.721171_721172delTAinsGC/c.763_764delTAinsGC/p.Y255A|chrVII:g.721177_721178delTGinsGC/c.769_770delTGinsGC/p.W257A +YGR152C RSR1 5886 rsr1-asn16 K16N amino_acid_mutation PMID:1547504 K16N False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.795445T>G/c.48A>C/p.K16N +YGR152C RSR1 5887 rsr1-val12 G12V amino_acid_mutation PMID:9744878 G12V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.795458C>A/c.35G>T/p.G12V +YGR155W CYS4 5891 cys4-S289D S289D amino_acid_mutation PMID:22438835 S289D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.799407_799408delTCinsGA/c.865_866delTCinsGA/p.S289D +YGR162W TIF4631 5904 TIF4631-(eIF4G1-1) V648G, E796G, L823S amino_acid_mutation PMID:34352092 V648G|E796G|L823S False V648G,E796G,L823S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.826001T>G/c.1943T>G/p.V648G|chrVII:g.826445A>G/c.2387A>G/p.E796G|chrVII:g.826526T>C/c.2468T>C/p.L823S +YGR162W TIF4631 5905 TIF4631-(eIF4G1-459) L457A, L458A amino_acid_mutation PMID:34352092 L457A|L458A False L457A,L458A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.825427_825428delTTinsGC/c.1369_1370delTTinsGC/p.L457A|chrVII:g.825430_825431delCTinsGC/c.1372_1373delCTinsGC/p.L458A +YGR162W TIF4631 5906 TIF4631-(eIF4G1-8) R509I, K527R, R537S, V648D amino_acid_mutation PMID:34352092 R509I|K527R|R537S|V648D False R509I,K527R,R537S,V648D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.825584G>T/c.1526G>T/p.R509I|chrVII:g.825638A>G/c.1580A>G/p.K527R|chrVII:g.825669G>C/c.1611G>C/p.R537S|chrVII:g.826001_826002delTGinsAC/c.1943_1944delTGinsAC/p.V648D +YGR172C YIP1 5934 yip1-2 G175E amino_acid_mutation PMID:19383723 G175E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.843068C>T/c.524G>A/p.G175E +YGR186W TFG1 5961 tfg1-2 K695E, K699E amino_acid_mutation PMID:11003641 K695E|K699E False K695E,K699E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.869856A>G/c.2083A>G/p.K695E|chrVII:g.869868A>G/c.2095A>G/p.K699E +YGR195W SKI6 5982 rrp41-1 L198W, L232Q amino_acid_mutation PMID:16652390 L198W|L232Q False L198W,L232Q amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.889374_889375delCTinsTG/c.592_593delCTinsTG/p.L198W|chrVII:g.889476_889477delTTinsCA/c.694_695delTTinsCA/p.L232Q +YGR217W CCH1 6029 cch1-2 P1228L amino_acid_mutation PMID:23475949 P1228L False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.928378C>T/c.3683C>T/p.P1228L +YGR233C PHO81 6051 PHO81-R701S-(VAC6-1) R701S amino_acid_mutation PMID:20923977 R701S False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.956108C>G/c.2103G>C/p.R701S +YGR235C MIC26 6052 mic26-I127T I127T amino_acid_mutation PMID:32439808 I127T False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.961682A>G/c.380T>C/p.I127T +YGR241C YAP1802 6056 yap1802-∆Ub F207A, E208A amino_acid_mutation PMID:34821552 F207A|E208A False F207A,E208A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.975962_975963delTTinsGC/c.619_620delTTinsGC/p.F207A|chrVII:g.975959T>G/c.623A>C/p.E208A +YGR245C SDA1 6057 sda1-1 M257T, I403N, E567V, Q622P amino_acid_mutation PMID:10704371 M257T|I403N|E567V|Q622P False M257T,I403N,E567V,Q622P amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.981299A>G/c.770T>C/p.M257T|chrVII:g.980861A>T/c.1208T>A/p.I403N|chrVII:g.980369T>A/c.1700A>T/p.E567V|chrVII:g.980204T>G/c.1865A>C/p.Q622P +YGR252W GCN5 6080 gcn5-E173H E173H amino_acid_mutation PMID:16287868,PMID:19099397,PMID:27672091,PMID:31699900 E173H False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.997324_997326delGAAinsCAT/c.517_519delGAAinsCAT/p.E173H +YGR252W GCN5 6081 gcn5-E173Q E173Q amino_acid_mutation PMID:10373413 E173Q False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.997324G>C/c.517G>C/p.E173Q +YGR252W GCN5 6082 gcn5-F221A F221A amino_acid_mutation PMID:22558379,PMID:27672091 F221A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.997529_997530delTTinsGC/c.661_662delTTinsGC/p.F221A +YGR252W GCN5 6084 gcn5-TSTY/4A T203A, S204A, T211A, Y212A amino_acid_mutation PMID:19841091 T203A|S204A|T211A|Y212A False T203A,S204A,T211A,Y212A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.997475A>G/c.607A>G/p.T203A|chrVII:g.997478T>G/c.610T>G/p.S204A|chrVII:g.997499A>G/c.631A>G/p.T211A|chrVII:g.997502_997503delTAinsGC/c.634_635delTAinsGC/p.Y212A +YGR252W GCN5 6085 gcn5-TY/2A T211A, Y212A amino_acid_mutation PMID:19841091 T211A|Y212A False T211A,Y212A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.997499A>G/c.631A>G/p.T211A|chrVII:g.997502_997503delTAinsGC/c.634_635delTAinsGC/p.Y212A +YGR262C BUD32 6101 bud32-D161A D161A amino_acid_mutation PMID:12023889,PMID:14519092,PMID:18951093,PMID:21183954 D161A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017278T>G/c.482A>C/p.D161A +YGR262C BUD32 6102 bud32-D161R D161R amino_acid_mutation PMID:18951093,PMID:36416748 D161R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017278_1017279delGAinsCG/c.481_482delGAinsCG/p.D161R +YGR262C BUD32 6103 bud32-D182A D182A amino_acid_mutation PMID:18951093 D182A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017215T>G/c.545A>C/p.D182A +YGR262C BUD32 6104 bud32-D182A,R204E D182A, R204E amino_acid_mutation PMID:18951093 D182A|R204E False D182A,R204E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017215T>G/c.545A>C/p.D182A|chrVII:g.1017149_1017150delAGinsGA/c.610_611delAGinsGA/p.R204E +YGR262C BUD32 6105 bud32-D182A,V201Y D182A,V201Y amino_acid_mutation PMID:18951093 D182A|V201Y False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017215T>G/c.545A>C/p.D182A|chrVII:g.1017158_1017159delGTinsTA/c.601_602delGTinsTA/p.V201Y +YGR262C BUD32 6106 bud32-D198A D198A amino_acid_mutation PMID:12023889 D198A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017167T>G/c.593A>C/p.D198A +YGR262C BUD32 6107 bud32-E193A E193A amino_acid_mutation PMID:12023889 E193A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017182T>G/c.578A>C/p.E193A +YGR262C BUD32 6108 bud32-E193R E193R amino_acid_mutation PMID:33277478 E193R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017182_1017183delGAinsAG/c.577_578delGAinsAG/p.E193R +YGR262C BUD32 6109 bud32-E76A E76A amino_acid_mutation PMID:12023889,PMID:18951093 E76A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017533T>G/c.227A>C/p.E76A +YGR262C BUD32 6110 bud32-G25V G25V amino_acid_mutation PMID:12023889,PMID:14519092 G25V False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017686C>A/c.74G>T/p.G25V +YGR262C BUD32 6111 bud32-K48A K48A amino_acid_mutation PMID:12023889 K48A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017617_1017618delAAinsGC/c.142_143delAAinsGC/p.K48A +YGR262C BUD32 6112 bud32-K52A K52A amino_acid_mutation PMID:12023889,PMID:14519092,PMID:18951093,PMID:19021767,PMID:36416748 K52A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017605_1017606delAAinsGC/c.154_155delAAinsGC/p.K52A +YGR262C BUD32 6113 bud32-K52A,R204E K52A, R204E amino_acid_mutation PMID:18951093 K52A|R204E False K52A,R204E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017605_1017606delAAinsGC/c.154_155delAAinsGC/p.K52A|chrVII:g.1017149_1017150delAGinsGA/c.610_611delAGinsGA/p.R204E +YGR262C BUD32 6114 bud32-K52A,V201Y K52A, V201Y amino_acid_mutation PMID:18951093 K52A|V201Y False K52A,V201Y amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017605_1017606delAAinsGC/c.154_155delAAinsGC/p.K52A|chrVII:g.1017158_1017159delGTinsTA/c.601_602delGTinsTA/p.V201Y +YGR262C BUD32 6115 bud32-K57A K57A amino_acid_mutation PMID:12023889 K57A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017590_1017591delAAinsGC/c.169_170delAAinsGC/p.K57A +YGR262C BUD32 6116 bud32-K57E K57E amino_acid_mutation PMID:18951093 K57E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017591T>C/c.169A>G/p.K57E +YGR262C BUD32 6117 bud32-K57E,R60E K57E, R60E amino_acid_mutation PMID:19172740 K57E|R60E False K57E,R60E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017591T>C/c.169A>G/p.K57E|chrVII:g.1017581_1017582delAGinsGA/c.178_179delAGinsGA/p.R60E +YGR262C BUD32 6118 bud32-K57E,R72E K57E, R72E amino_acid_mutation PMID:18951093 K57E|R72E False K57E,R72E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017591T>C/c.169A>G/p.K57E|chrVII:g.1017544_1017546delCGTinsGAG/c.214_216delCGTinsGAG/p.R72E +YGR262C BUD32 6119 bud32-N166A N166A amino_acid_mutation PMID:18951093 N166A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017263_1017264delAAinsGC/c.496_497delAAinsGC/p.N166A +YGR262C BUD32 6120 bud32-N166A,D182A N166A, D182A amino_acid_mutation PMID:18951093 N166A|D182A False N166A,D182A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017263_1017264delAAinsGC/c.496_497delAAinsGC/p.N166A|chrVII:g.1017215T>G/c.545A>C/p.D182A +YGR262C BUD32 6121 bud32-N166A,R204E N166A, R204E amino_acid_mutation PMID:18951093 N166A|R204E False N166A,R204E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017263_1017264delAAinsGC/c.496_497delAAinsGC/p.N166A|chrVII:g.1017149_1017150delAGinsGA/c.610_611delAGinsGA/p.R204E +YGR262C BUD32 6122 bud32-N166A,V201Y N166A, V201Y amino_acid_mutation PMID:18951093 N166A|V201Y False N166A,V201Y amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017263_1017264delAAinsGC/c.496_497delAAinsGC/p.N166A|chrVII:g.1017158_1017159delGTinsTA/c.601_602delGTinsTA/p.V201Y +YGR262C BUD32 6123 bud32-R204E R204E amino_acid_mutation PMID:19172740 R204E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017149_1017150delAGinsGA/c.610_611delAGinsGA/p.R204E +YGR262C BUD32 6124 bud32-R255A R255A amino_acid_mutation PMID:12023889 R255A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1016996_1016997delCGinsGC/c.763_764delCGinsGC/p.R255A +YGR262C BUD32 6125 bud32-R72E R72E amino_acid_mutation PMID:19172740 R72E False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017544_1017546delCGTinsGAG/c.214_216delCGTinsGAG/p.R72E +YGR262C BUD32 6126 bud32-R78D R78D amino_acid_mutation PMID:33277478 R78D False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017527_1017528delCGinsGA/c.232_233delCGinsGA/p.R78D +YGR262C BUD32 6127 bud32-S189R S189R amino_acid_mutation PMID:33277478 S189R False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017194_1017195delTCinsAG/c.565_566delTCinsAG/p.S189R +YGR262C BUD32 6128 bud32-S258A S258A amino_acid_mutation PMID:23620299 S258A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1016987_1016988delAGinsGC/c.772_773delAGinsGC/p.S258A +YGR262C BUD32 6129 bud32-T163A T163A amino_acid_mutation PMID:12023889 T163A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017273T>C/c.487A>G/p.T163A +YGR262C BUD32 6130 bud32-T163K T163K amino_acid_mutation PMID:12023889 T163K False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017272G>T/c.488C>A/p.T163K +YGR262C BUD32 6131 bud32-V201Y V201Y amino_acid_mutation PMID:18951093 V201Y False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1017158_1017159delGTinsTA/c.601_602delGTinsTA/p.V201Y +YGR270W YTA7 6139 yta7-13A S11A, T67A, S94A, T212A, S230A, S241A, S259A, S285A, S369A, S304A, S370A, T380A, T445A amino_acid_mutation PMID:22156209 S11A|T67A|S94A|T212A|S230A|S241A|S259A|S285A|S369A|S304A|S370A|T380A|T445A False S11A,T67A,S94A,T212A,S230A,S241A,S259A,S285A,S369A,S304A,S370A,T380A,T445A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1027400_1027401delAGinsGC/c.31_32delAGinsGC/p.S11A|chrVII:g.1027568A>G/c.199A>G/p.T67A|chrVII:g.1027649T>G/c.280T>G/p.S94A|chrVII:g.1028003A>G/c.634A>G/p.T212A|chrVII:g.1028057T>G/c.688T>G/p.S230A|chrVII:g.1028090_1028091delAGinsGC/c.721_722delAGinsGC/p.S241A|chrVII:g.1028144_1028145delAGinsGC/c.775_776delAGinsGC/p.S259A|chrVII:g.1028222_1028223delAGinsGC/c.853_854delAGinsGC/p.S285A|chrVII:g.1028474T>G/c.1105T>G/p.S369A|chrVII:g.1028279T>G/c.910T>G/p.S304A|chrVII:g.1028477T>G/c.1108T>G/p.S370A|chrVII:g.1028507A>G/c.1138A>G/p.T380A|chrVII:g.1028702A>G/c.1333A>G/p.T445A +YGR270W YTA7 6140 yta7-6A S11A, S230A, S241A, S285A, S369A, S370A amino_acid_mutation PMID:22156209 S11A|S230A|S241A|S285A|S369A|S370A False S11A,S230A,S241A,S285A,S369A,S370A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1027400_1027401delAGinsGC/c.31_32delAGinsGC/p.S11A|chrVII:g.1028057T>G/c.688T>G/p.S230A|chrVII:g.1028090_1028091delAGinsGC/c.721_722delAGinsGC/p.S241A|chrVII:g.1028222_1028223delAGinsGC/c.853_854delAGinsGC/p.S285A|chrVII:g.1028474T>G/c.1105T>G/p.S369A|chrVII:g.1028477T>G/c.1108T>G/p.S370A +YGR270W YTA7 6141 yta7-7A T67A, S94A, T212A, S259A, S304A, T380A, T445A amino_acid_mutation PMID:22156209 T67A|S94A|T212A|S259A|S304A|T380A|T445A False T67A,S94A,T212A,S259A,S304A,T380A,T445A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1027568A>G/c.199A>G/p.T67A|chrVII:g.1027649T>G/c.280T>G/p.S94A|chrVII:g.1028003A>G/c.634A>G/p.T212A|chrVII:g.1028144_1028145delAGinsGC/c.775_776delAGinsGC/p.S259A|chrVII:g.1028279T>G/c.910T>G/p.S304A|chrVII:g.1028507A>G/c.1138A>G/p.T380A|chrVII:g.1028702A>G/c.1333A>G/p.T445A +YGR270W YTA7 6142 yta7-K460A K460A amino_acid_mutation PMID:22156209,PMID:34471130 K460A False amino_acid_mutation:single_aa amino_acid_mutation chrVII:g.1028747_1028748delAAinsGC/c.1378_1379delAAinsGC/p.K460A +YHL002W HSE1 6199 hse1Δrsp5 P446A, P447A, P448A amino_acid_mutation PMID:31956026 P446A|P447A|P448A False P446A,P447A,P448A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.103947C>G/c.1336C>G/p.P446A|chrVIII:g.103903C>G/c.1339C>G/p.P447A|chrVIII:g.103953C>G/c.1342C>G/p.P448A +YHL022C SPO11 6217 spo11-1 I154T amino_acid_mutation PMID:16816949,PMID:3891509,PMID:4552504 I154T False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.63697A>G/c.461T>C/p.I154T +YHL022C SPO11 6218 spo11-13 I372N amino_acid_mutation PMID:16816949 I372N False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.63043A>T/c.1115T>A/p.I372N +YHL022C SPO11 6220 spo11-17 K383stop partial_amino_acid_deletion PMID:16816949 K383stop False K383* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrVIII:g.63011T>A/c.1147A>T/p.K383* +YHL022C SPO11 6221 spo11-2 L115W, T265A amino_acid_mutation PMID:16816949 L115W|T265A False L115W,T265A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.63814A>C/c.344T>G/p.L115W|chrVIII:g.63365T>C/c.793A>G/p.T265A +YHL022C SPO11 6222 spo11-204 E4V, V176A amino_acid_mutation PMID:16816949 E4V|V176A False E4V,V176A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.64147T>A/c.11A>T/p.E4V|chrVIII:g.63631A>G/c.527T>C/p.V176A +YHL022C SPO11 6223 spo11-4 L115S, T265A amino_acid_mutation PMID:16816949 L115S|T265A False L115S,T265A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.63814A>G/c.344T>C/p.L115S|chrVIII:g.63365T>C/c.793A>G/p.T265A +YHL022C SPO11 6224 spo11-71 I67T, N94S amino_acid_mutation PMID:16816949 I67T|N94S False I67T,N94S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.63958A>G/c.200T>C/p.I67T|chrVIII:g.63877T>C/c.281A>G/p.N94S +YHL022C SPO11 6225 spo11-8 F71S, K278E amino_acid_mutation PMID:16816949 F71S|K278E False F71S,K278E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.63946A>G/c.212T>C/p.F71S|chrVIII:g.63326T>C/c.832A>G/p.K278E +YHL022C SPO11 6233 spo11-Y135F Y135F amino_acid_mutation PMID:32152049,PMID:34433891,PMID:34951404,PMID:36271494,PMID:37018287,PMID:9121560 Y135F False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.63754T>A/c.404A>T/p.Y135F +YHR005C-A TIM10 6277 tim10*4 E51A, E53A, K56A, E58A amino_acid_mutation PMID:17618651 E51A|E53A|K56A|E58A False E51A,E53A,K56A,E58A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.115750T>G/c.152A>C/p.E51A|chrVIII:g.115744T>G/c.158A>C/p.E53A|chrVIII:g.115775_115776delAAinsGC/c.166_167delAAinsGC/p.K56A|chrVIII:g.115729T>G/c.173A>C/p.E58A +YHR013C ARD1 6287 ard1-E26Q E26Q amino_acid_mutation PMID:26296886 E26Q False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.131371C>G/c.76G>C/p.E26Q +YHR024C MAS2 6307 mas2-10 K472* partial_amino_acid_deletion PMID:27708008,PMID:3061808,PMID:37331598 K472* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrVIII:g.157779T>A/c.1414A>T/p.K472* +YHR030C SLT2 6313 slt2-(mpk1-K83A) K83A amino_acid_mutation PMID:35887509 K83A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.170097_170098delAAinsGC/c.247_248delAAinsGC/p.K83A +YHR030C SLT2 6314 slt2-(mpk1-R196A) R196A amino_acid_mutation PMID:35887509 R196A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.169758_169759delAGinsGC/c.586_587delAGinsGC/p.R196A +YHR030C SLT2 6317 slt2-E54 K54E amino_acid_mutation PMID:8232202 K54E False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.170185T>C/c.160A>G/p.K54E +YHR030C SLT2 6318 slt2-F54 K54F amino_acid_mutation PMID:8232202 K54F False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.170183_170185delAAGinsTTT/c.160_162delAAGinsTTT/p.K54F +YHR030C SLT2 6319 slt2-R54 K54R amino_acid_mutation PMID:36693698,PMID:8232202 K54R False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.170184T>C/c.161A>G/p.K54R +YHR030C SLT2 6331 slt2-as E108G amino_acid_mutation PMID:26786099,PMID:37042757 E108G False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.170022T>C/c.323A>G/p.E108G +YHR031C RRM3 6334 rrm3-FFAA F41A, F42A amino_acid_mutation PMID:12239216,PMID:36350688 F41A|F42A False F41A,F42A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.172849_172850delTTinsGC/c.121_122delTTinsGC/p.F41A|chrVIII:g.172846_172847delTTinsGC/c.124_125delTTinsGC/p.F42A +YHR031C RRM3 6335 rrm3-FFDD F41D, F42D amino_acid_mutation PMID:12239216 F41D|F42D False F41D,F42D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.172849_172850delTTinsGA/c.121_122delTTinsGA/p.F41D|chrVIII:g.172846_172847delTTinsGA/c.124_125delTTinsGA/p.F42D +YHR031C RRM3 6336 rrm3-K260A K260A amino_acid_mutation PMID:10693764,PMID:36350688,PMID:36533450 K260A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.172233_172234delAAinsGC/c.778_779delAAinsGC/p.K260A +YHR031C RRM3 6337 rrm3-K260R K260R amino_acid_mutation PMID:10693764 K260R False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.172233T>C/c.779A>G/p.K260R +YHR036W BRL1 6348 brl1-4S C343S, C352S, C365S, C371S amino_acid_mutation PMID:29439116 C343S|C352S|C365S|C371S False C343S,C352S,C365S,C371S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181371T>A/c.1027T>A/p.C343S|chrVIII:g.181398T>A/c.1054T>A/p.C352S|chrVIII:g.181437T>A/c.1093T>A/p.C365S|chrVIII:g.181455T>A/c.1111T>A/p.C371S +YHR036W BRL1 6349 brl1-A360D A360D amino_acid_mutation PMID:35293775 A360D False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181423C>A/c.1079C>A/p.A360D +YHR036W BRL1 6350 brl1-C343Y C343Y amino_acid_mutation PMID:35293775 C343Y False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181372G>A/c.1028G>A/p.C343Y +YHR036W BRL1 6351 brl1-C365S,C371S C365S, C371S amino_acid_mutation PMID:35293775 C365S|C371S False C365S,C371S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181437T>A/c.1093T>A/p.C365S|chrVIII:g.181455T>A/c.1111T>A/p.C371S +YHR036W BRL1 6354 brl1-CSSC C352S, C365S amino_acid_mutation PMID:29439116 C352S|C365S False C352S,C365S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181398T>A/c.1054T>A/p.C352S|chrVIII:g.181437T>A/c.1093T>A/p.C365S +YHR036W BRL1 6357 brl1-F391E F391E amino_acid_mutation PMID:35293775 F391E False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181515_181517delTTCinsGAG/c.1171_1173delTTCinsGAG/p.F391E +YHR036W BRL1 6358 brl1-F391P F391P amino_acid_mutation PMID:35293775 F391P False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181515_181516delTTinsCC/c.1171_1172delTTinsCC/p.F391P +YHR036W BRL1 6361 brl1-L402E L402E amino_acid_mutation PMID:35293775 L402E False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181548_181549delTTinsGA/c.1204_1205delTTinsGA/p.L402E +YHR036W BRL1 6362 brl1-N353D N353D amino_acid_mutation PMID:35293775 N353D False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181401A>G/c.1057A>G/p.N353D +YHR036W BRL1 6363 brl1-P356G P356G amino_acid_mutation PMID:35293775 P356G False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181410_181411delCCinsGG/c.1066_1067delCCinsGG/p.P356G +YHR036W BRL1 6364 brl1-SCCS C343S, C371S amino_acid_mutation PMID:29439116 C343S|C371S False C343S,C371S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181371T>A/c.1027T>A/p.C343S|chrVIII:g.181455T>A/c.1111T>A/p.C371S +YHR036W BRL1 6365 brl1-SCSC C343S, C365S amino_acid_mutation PMID:29439116 C343S|C365S False C343S,C365S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181371T>A/c.1027T>A/p.C343S|chrVIII:g.181437T>A/c.1093T>A/p.C365S +YHR036W BRL1 6366 brl1-T355A T355A amino_acid_mutation PMID:35293775 T355A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181407A>G/c.1063A>G/p.T355A +YHR036W BRL1 6367 brl1-W368Y W368Y amino_acid_mutation PMID:35293775 W368Y False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181447_181448delGGinsAT/c.1103_1104delGGinsAT/p.W368Y +YHR036W BRL1 6368 brl1-Y347H Y347H amino_acid_mutation PMID:34549174,PMID:35293775 Y347H False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.181383T>C/c.1039T>C/p.Y347H +YHR038W RRF1 6372 rrf1-L209P L209P amino_acid_mutation PMID:12853640 L209P False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.184691T>C/c.626T>C/p.L209P +YHR069C RRP4 6399 rrp4-G226D G226D amino_acid_mutation PMID:34162742,PMID:36861343 G226D False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.233981_233982delGAinsAC/c.677_678delGAinsAC/p.G226D +YHR069C RRP4 6400 rrp4-G58V G58V amino_acid_mutation PMID:34162742 G58V False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.234486C>A/c.173G>T/p.G58V +YHR079C IRE1 6419 IRE1C L745A, D828A amino_acid_mutation PMID:19015277 L745A|D828A False L745A,D828A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.259358_259359delTTinsGC/c.2233_2234delTTinsGC/p.L745A|chrVIII:g.259109T>G/c.2483A>C/p.D828A +YHR079C IRE1 6423 ire1-K702A K702A amino_acid_mutation PMID:26966233 K702A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.259487_259488delAAinsGC/c.2104_2105delAAinsGC/p.K702A +YHR079C IRE1 6424 ire1-KR K992D,H1044D,Y1059R amino_acid_mutation PMID:33904404 K992D|H1044D|Y1059R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.258616_258618delAAAinsGAC/c.2974_2976delAAAinsGAC/p.K992D|chrVIII:g.258462G>C/c.3130C>G/p.H1044D|chrVIII:g.258416_258417delTAinsCG/c.3175_3176delTAinsCG/p.Y1059R +YHR086W NAM8 6448 nam8-L140F L140F amino_acid_mutation PMID:36870416 L140F False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.278572A>T/c.420A>T/p.L140F +YHR099W TRA1 6462 tra1-L3733A L3733A amino_acid_mutation PMID:18950642,PMID:20635087,PMID:22439631 L3733A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.313957_313958delTTinsGC/c.11197_11198delTTinsGC/p.L3733A +YHR099W TRA1 6472 tra1Q3 R3389Q, R3390Q, R3456Q amino_acid_mutation PMID:29626083,PMID:36315064 R3389Q|R3390Q|R3456Q False R3389Q,R3390Q,R3456Q amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.312925_312926delAGinsCA/c.10165_10166delAGinsCA/p.R3389Q|chrVIII:g.312929_312930delGTinsAA/c.10169_10170delGTinsAA/p.R3390Q|chrVIII:g.313127_313128delGTinsAA/c.10367_10368delGTinsAA/p.R3456Q +YHR107C CDC12 6476 cdc12-1 G247E amino_acid_mutation PMID:11082046,PMID:12665577,PMID:24398420,PMID:27708008,PMID:4950437,PMID:8320260 G247E False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.327297C>T/c.740G>A/p.G247E +YHR107C CDC12 6480 cdc12-G268R G268R amino_acid_mutation PMID:24398420,PMID:31990274 G268R False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.327235C>T/c.802G>A/p.G268R +YHR115C DMA1 6485 dma1-C345A C345A amino_acid_mutation PMID:33933452 C345A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.340326_340327delTGinsGC/c.1033_1034delTGinsGC/p.C345A +YHR115C DMA1 6486 dma1-R199A R199A amino_acid_mutation PMID:33933452 R199A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.340764_340765delAGinsGC/c.595_596delAGinsGC/p.R199A +YHR119W SET1 6494 SET1D-G990A G990A amino_acid_mutation PMID:15775977 G990A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.349011G>C/c.2969G>C/p.G990A +YHR119W SET1 6495 SET1D-G990E G990E amino_acid_mutation PMID:15775977 G990E False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.349011G>A/c.2969G>A/p.G990E +YHR119W SET1 6496 SET1D-G990K G990K amino_acid_mutation PMID:15775977 G990K False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.349010_349011delGGinsAA/c.2968_2969delGGinsAA/p.G990K +YHR119W SET1 6497 SET1D-L777F,E896K L777F, E896K amino_acid_mutation PMID:15775977 L777F|E896K False L777F,E896K amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.348373A>T/c.2331A>T/p.L777F|chrVIII:g.348728G>A/c.2686G>A/p.E896K +YHR119W SET1 6498 SET1D-R483W,A613T R483W, A613T amino_acid_mutation PMID:15775977 R483W|A613T False R483W,A613T amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.347489C>T/c.1447C>T/p.R483W|chrVIII:g.347879G>A/c.1837G>A/p.A613T +YHR119W SET1 6499 SET1D-R483W,G990E R483W, G990E amino_acid_mutation PMID:15775977 R483W|G990E False R483W,G990E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.347489C>T/c.1447C>T/p.R483W|chrVIII:g.349011G>A/c.2969G>A/p.G990E +YHR119W SET1 6500 SET1D-S104A,R483W S104A, R483W amino_acid_mutation PMID:15775977 S104A|R483W False S104A,R483W amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.346352T>G/c.310T>G/p.S104A|chrVIII:g.347489C>T/c.1447C>T/p.R483W +YHR119W SET1 6501 set1-C1019A C1019A amino_acid_mutation PMID:15775977,PMID:36416860 C1019A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.349097_349098delTGinsGC/c.3055_3056delTGinsGC/p.C1019A +YHR119W SET1 6504 set1-G951S G951S amino_acid_mutation PMID:15775977,PMID:36416860,PMID:9398665 G951S False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.348893G>A/c.2851G>A/p.G951S +YHR119W SET1 6505 set1-H1017K H1017K amino_acid_mutation PMID:15775977,PMID:36416860 H1017K False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.349091_349093delCATinsAAG/c.3049_3051delCATinsAAG/p.H1017K +YHR119W SET1 6506 set1-H422A H422A amino_acid_mutation PMID:16787775,PMID:36416860 H422A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.347306_347307delCAinsGC/c.1264_1265delCAinsGC/p.H422A +YHR119W SET1 6510 set1-Y271A,F272A Y271A,F272A amino_acid_mutation PMID:16787775 Y271A|F272A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.346853_346854delTAinsGC/c.811_812delTAinsGC/p.Y271A|chrVIII:g.346856_346857delTTinsGC/c.814_815delTTinsGC/p.F272A +YHR161C YAP1801 6600 yap1801-∆Ub F213A, E214S amino_acid_mutation PMID:34821552 F213A|E214S False F213A,E214S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.421649_421650delTTinsGC/c.637_638delTTinsGC/p.F213A|chrVIII:g.421646_421647delGAinsTC/c.640_641delGAinsTC/p.E214S +YHR164C DNA2 6603 dna2-1 P504S amino_acid_mutation PMID:10748138,PMID:12024027,PMID:16537895,PMID:18514590,PMID:25721128,PMID:7592912,PMID:7644470 P504S False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.427669G>A/c.1510C>T/p.P504S +YHR164C DNA2 6605 dna2-21 Q551E amino_acid_mutation PMID:10908349 Q551E False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.427528G>C/c.1651C>G/p.Q551E +YHR164C DNA2 6606 dna2-22 K680A amino_acid_mutation PMID:10908349,PMID:20007605 K680A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.427140_427141delAAinsGC/c.2038_2039delAAinsGC/p.K680A +YHR164C DNA2 6607 dna2-23 D505N amino_acid_mutation PMID:10908349 D505N False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.427666C>T/c.1513G>A/p.D505N +YHR164C DNA2 6608 dna2-24 H547A amino_acid_mutation PMID:10908349,PMID:32638513 H547A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.427539_427540delCAinsGC/c.1639_1640delCAinsGC/p.H547A +YHR164C DNA2 6609 dna2-25 D640N, E642Q, E643Q amino_acid_mutation PMID:10908349 D640N|E642Q|E643Q False D640N,E642Q,E643Q amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.427261C>T/c.1918G>A/p.D640N|chrVIII:g.427255C>G/c.1924G>C/p.E642Q|chrVIII:g.427252C>G/c.1927G>C/p.E643Q +YHR164C DNA2 6610 dna2-26 R521E amino_acid_mutation PMID:10908349 R521E False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.427617_427618delAGinsGA/c.1561_1562delAGinsGA/p.R521E +YHR164C DNA2 6612 dna2-5A K41A, R42A, K43A, K44A, K45A amino_acid_mutation PMID:32638513 K41A|R42A|K43A|K44A|K45A False K41A,R42A,K43A,K44A,K45A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.429057_429058delAAinsGC/c.121_122delAAinsGC/p.K41A|chrVIII:g.429054_429055delAGinsGC/c.124_125delAGinsGC/p.R42A|chrVIII:g.429051_429052delAAinsGC/c.127_128delAAinsGC/p.K43A|chrVIII:g.429048_429049delAAinsGC/c.130_131delAAinsGC/p.K44A|chrVIII:g.429045_429046delAAinsGC/c.133_134delAAinsGC/p.K45A +YHR164C DNA2 6613 dna2-6K K21A, K33A, K60A, K93A, K103A, K247A amino_acid_mutation PMID:31098407 K21A|K33A|K60A|K93A|K103A|K247A False K21A,K33A,K60A,K93A,K103A,K247A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.429117_429118delAAinsGC/c.61_62delAAinsGC/p.K21A|chrVIII:g.429081_429082delAAinsGC/c.97_98delAAinsGC/p.K33A|chrVIII:g.429000_429001delAAinsGC/c.178_179delAAinsGC/p.K60A|chrVIII:g.428901_428902delAAinsGC/c.277_278delAAinsGC/p.K93A|chrVIII:g.428871_428872delAAinsGC/c.307_308delAAinsGC/p.K103A|chrVIII:g.428439_428440delAAinsGC/c.739_740delAAinsGC/p.K247A +YHR164C DNA2 6615 dna2-D657A D657A amino_acid_mutation PMID:10748138,PMID:10908349,PMID:32638513 D657A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.427209T>G/c.1970A>C/p.D657A +YHR164C DNA2 6616 dna2-E640A D640A, I641A, E642A, E643A amino_acid_mutation PMID:10748138 D640A|I641A|E642A|E643A False D640A,I641A,E642A,E643A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.427260T>G/c.1919A>C/p.D640A|chrVIII:g.427257_427258delATinsGC/c.1921_1922delATinsGC/p.I641A|chrVIII:g.427254T>G/c.1925A>C/p.E642A|chrVIII:g.427251T>G/c.1928A>C/p.E643A +YHR164C DNA2 6617 dna2-E675A E675A amino_acid_mutation PMID:10748138,PMID:26584331,PMID:31098407 E675A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.427155T>G/c.2024A>C/p.E675A +YHR164C DNA2 6618 dna2-K1080E K1080E amino_acid_mutation PMID:10748138,PMID:20007605,PMID:28336516,PMID:28468907,PMID:32638513,PMID:7592912 K1080E False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.425941T>C/c.3238A>G/p.K1080E +YHR164C DNA2 6620 dna2-WY-AA Y130A, W128A amino_acid_mutation PMID:23355394 Y130A|W128A False Y130A,W128A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.428790_428791delTAinsGC/c.388_389delTAinsGC/p.Y130A|chrVIII:g.428796_428797delTGinsGC/c.382_383delTGinsGC/p.W128A +YHR164C DNA2 6621 dna2-Y693A Y693A amino_acid_mutation PMID:10748138 Y693A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.427101_427102delTAinsGC/c.2077_2078delTAinsGC/p.Y693A +YHR166C CDC23 6654 cdc23-4 T94M amino_acid_mutation PMID:21552543,PMID:27708008,PMID:34544143,PMID:37364618 T94M False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.438770G>A/c.281C>T/p.T94M +YHR170W NMD3 6656 nmd3-2 M141V, D255V, F318L, I328M, K413T, E440G, F449L, N464S, E479D, D498G, D501G amino_acid_mutation PMID:11313466 M141V|D255V|F318L|I328M|K413T|E440G|F449L|N464S|E479D|D498G|D501G False M141V,D255V,F318L,I328M,K413T,E440G,F449L,N464S,E479D,D498G,D501G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.444248A>G/c.421A>G/p.M141V|chrVIII:g.444591A>T/c.764A>T/p.D255V|chrVIII:g.444779T>C/c.952T>C/p.F318L|chrVIII:g.444811A>G/c.984A>G/p.I328M|chrVIII:g.445047A>C/c.1238A>C/p.K413T|chrVIII:g.445146A>G/c.1319A>G/p.E440G|chrVIII:g.445172T>C/c.1345T>C/p.F449L|chrVIII:g.445218A>G/c.1391A>G/p.N464S|chrVIII:g.445264A>C/c.1437A>C/p.E479D|chrVIII:g.445320A>G/c.1493A>G/p.D498G|chrVIII:g.445329A>G/c.1502A>G/p.D501G +YHR198C AIM18 6727 aim18-R123A R123A amino_acid_mutation PMID:36739946 R123A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.496913_496914delAGinsGC/c.367_368delAGinsGC/p.R123A +YHR199C AIM46 6728 aim46-R107A R107A amino_acid_mutation PMID:36739946 R107A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.498103_498104delCGinsGC/c.319_320delCGinsGC/p.R107A +YHR204W MNL1 6732 mnl1-(htm1-D279N) D279N amino_acid_mutation PMID:19124653,PMID:27053108 D279N False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.507153G>A/c.835G>A/p.D279N +YHR204W MNL1 6733 mnl1-(htm1-E222Q) E222Q amino_acid_mutation PMID:19124653 E222Q False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.506982G>C/c.664G>C/p.E222Q +YHR204W MNL1 6734 mnl1-(htm1-F632L) F632L amino_acid_mutation PMID:27053108 F632L False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.508212T>C/c.1894T>C/p.F632L +YHR205W SCH9 6736 sch9-2DE3 T723D, S726D, T737E, S758E, S765E amino_acid_mutation PMID:17560372,PMID:24514902 T723D|S726D|T737E|S758E|S765E False T723D,S726D,T737E,S758E,S765E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.511529_511530delACinsGA/c.2167_2168delACinsGA/p.T723D|chrVIII:g.511538_511539delTCinsGA/c.2176_2177delTCinsGA/p.S726D|chrVIII:g.511571_511573delACCinsGAG/c.2209_2211delACCinsGAG/p.T737E|chrVIII:g.511634_511635delTCinsGA/c.2272_2273delTCinsGA/p.S758E|chrVIII:g.511655_511657delTCCinsGAG/c.2293_2295delTCCinsGAG/p.S765E +YHR205W SCH9 6739 sch9-3E T737E, S758E, S765E amino_acid_mutation PMID:17560372,PMID:34713806 T737E|S758E|S765E False T737E,S758E,S765E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.511571_511573delACCinsGAG/c.2209_2211delACCinsGAG/p.T737E|chrVIII:g.511634_511635delTCinsGA/c.2272_2273delTCinsGA/p.S758E|chrVIII:g.511655_511657delTCCinsGAG/c.2293_2295delTCCinsGAG/p.S765E +YHR205W SCH9 6740 sch9-5A T723A, S726A, T737A, S758A, S765A amino_acid_mutation PMID:17560372,PMID:24514902 T723A|S726A|T737A|S758A|S765A False T723A,S726A,T737A,S758A,S765A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.511529A>G/c.2167A>G/p.T723A|chrVIII:g.511538T>G/c.2176T>G/p.S726A|chrVIII:g.511571A>G/c.2209A>G/p.T737A|chrVIII:g.511634T>G/c.2272T>G/p.S758A|chrVIII:g.511655T>G/c.2293T>G/p.S765A +YHR205W SCH9 6745 sch9-T570A T570A amino_acid_mutation PMID:15470109,PMID:32318242 T570A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.511070A>G/c.1708A>G/p.T570A +YHR205W SCH9 6746 sch9-T737A T737A amino_acid_mutation PMID:15470109,PMID:34695378 T737A False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.511571A>G/c.2209A>G/p.T737A +YHR205W SCH9 6750 sch9as T492G amino_acid_mutation PMID:15466158,PMID:19684113 T492G False amino_acid_mutation:single_aa amino_acid_mutation chrVIII:g.510836_510837delACinsGG/c.1474_1475delACinsGG/p.T492G +YIL002C INP51 6767 inp51-D788A D788A amino_acid_mutation PMID:9565610 D788A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.351069T>G/c.2363A>C/p.D788A +YIL026C IRR1 6814 irr1-(scc3-D712A) D712A amino_acid_mutation PMID:33404730 D712A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.305795T>G/c.2135A>C/p.D712A +YIL026C IRR1 6815 irr1-(scc3-D713A) D713A amino_acid_mutation PMID:33404730 D713A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.305792T>G/c.2138A>C/p.D713A +YIL026C IRR1 6816 irr1-(scc3-E704A) E704A amino_acid_mutation PMID:33404730 E704A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.305819T>G/c.2111A>C/p.E704A +YIL026C IRR1 6818 irr1-(scc3-E720A) E720A amino_acid_mutation PMID:33404730 E720A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.305771T>G/c.2159A>C/p.E720A +YIL026C IRR1 6821 irr1-(scc3-S705A) S705A amino_acid_mutation PMID:33404730 S705A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.305816_305817delAGinsGC/c.2113_2114delAGinsGC/p.S705A +YIL026C IRR1 6822 irr1-(scc3-W714A) W714A amino_acid_mutation PMID:33404730 W714A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.305789_305790delTGinsGC/c.2140_2141delTGinsGC/p.W714A +YIL031W ULP2 6835 ulp2-101 C451F amino_acid_mutation PMID:30192228 C451F False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.293984G>T/c.1352G>T/p.C451F +YIL031W ULP2 6836 ulp2-C624A C624A amino_acid_mutation PMID:27585592 C624A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.294502_294503delTGinsGC/c.1870_1871delTGinsGC/p.C624A +YIL106W MOB1 6952 mob1-34 I15V, C161W, C179L, N280S amino_acid_mutation PMID:9436989 I15V|C161W|C179L|N280S False I15V,C161W,C179L,N280S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.166542A>G/c.43A>G/p.I15V|chrIX:g.166982C>G/c.483C>G/p.C161W|chrIX:g.167034_167035delTGinsCT/c.535_536delTGinsCT/p.C179L|chrIX:g.167338A>G/c.839A>G/p.N280S +YIL106W MOB1 6953 mob1-46 I15V, C161W, N280S amino_acid_mutation PMID:9436989 I15V|C161W|N280S False I15V,C161W,N280S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.166542A>G/c.43A>G/p.I15V|chrIX:g.166982C>G/c.483C>G/p.C161W|chrIX:g.167338A>G/c.839A>G/p.N280S +YIL106W MOB1 6956 mob1-67 H261Q amino_acid_mutation PMID:36321416,PMID:9436989 H261Q False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.167282T>A/c.783T>A/p.H261Q +YIL106W MOB1 6957 mob1-77 N65I, E151K amino_acid_mutation PMID:11564880,PMID:35011608,PMID:9436989 N65I|E151K False N65I,E151K amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.166693A>T/c.194A>T/p.N65I|chrIX:g.166950G>A/c.451G>A/p.E151K +YIL106W MOB1 6958 mob1-83 L196P, P211L amino_acid_mutation PMID:11564880,PMID:9436989 L196P|P211L False L196P,P211L amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.167086T>C/c.587T>C/p.L196P|chrIX:g.167131C>T/c.632C>T/p.P211L +YIL106W MOB1 6959 mob1-95 L157P, A158I amino_acid_mutation PMID:9436989 L157P|A158I False L157P,A158I amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.166969T>C/c.470T>C/p.L157P|chrIX:g.166971_166973delGCGinsATC/c.472_474delGCGinsATC/p.A158I +YIL109C SEC24 6961 Sec24-B1 R230A amino_acid_mutation PMID:17615300 R230A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.159477_159478delCGinsGC/c.688_689delCGinsGC/p.R230A +YIL109C SEC24 6962 sec24-13 Q112STOP partial_amino_acid_deletion PMID:10753972 Q112STOP False Q112* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrIX:g.159832G>A/c.334C>T/p.Q112* +YIL109C SEC24 6969 sec24-m11 E504A, D505A amino_acid_mutation PMID:22157747 E504A|D505A False E504A,D505A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.158655T>G/c.1511A>C/p.E504A|chrIX:g.158652T>G/c.1514A>C/p.D505A +YIL118W RHO3 6983 rho3-Ala-131 D131A amino_acid_mutation PMID:8852836 D131A False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.140143A>C/c.392A>C/p.D131A +YIL118W RHO3 6984 rho3-C40 Y40C amino_acid_mutation PMID:10588647 Y40C False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.139870A>G/c.119A>G/p.Y40C +YIL118W RHO3 6988 rho3-V51 E51V amino_acid_mutation PMID:10588647,PMID:15192110 E51V False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.139903A>T/c.152A>T/p.E51V +YIL129C TAO3 7028 tao3-E1493Q E1493Q amino_acid_mutation PMID:16273108 E1493Q False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.108761C>G/c.4477G>C/p.E1493Q +YIL142W CCT2 7044 cct2-5 G41E amino_acid_mutation PMID:9409825 G41E False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.83423G>A/c.122G>A/p.G41E +YIL144W NDC80 7086 ndc80-1 Q2L, S73N, K122R, H313R, N321S, E389V, E429D, T473S, I490V, D556G, K613I, H648R, I658T amino_acid_mutation PMID:22870406,PMID:22908312,PMID:26906737,PMID:9585415 Q2L|S73N|K122R|H313R|N321S|E389V|E429D|T473S|I490V|D556G|K613I|H648R|I658T False Q2L,S73N,K122R,H313R,N321S,E389V,E429D,T473S,I490V,D556G,K613I,H648R,I658T amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.78078A>T/c.5A>T/p.Q2L|chrIX:g.78291G>A/c.218G>A/p.S73N|chrIX:g.78438A>G/c.365A>G/p.K122R|chrIX:g.79011A>G/c.938A>G/p.H313R|chrIX:g.79035A>G/c.962A>G/p.N321S|chrIX:g.79239A>T/c.1166A>T/p.E389V|chrIX:g.79360A>C/c.1287A>C/p.E429D|chrIX:g.79491C>G/c.1418C>G/p.T473S|chrIX:g.79541A>G/c.1468A>G/p.I490V|chrIX:g.79740A>G/c.1667A>G/p.D556G|chrIX:g.79911A>T/c.1838A>T/p.K613I|chrIX:g.80016A>G/c.1943A>G/p.H648R|chrIX:g.80046T>C/c.1973T>C/p.I658T +YIL144W NDC80 7088 ndc80-121 Y465C, I469Q amino_acid_mutation PMID:25230952 Y465C|I469Q False Y465C,I469Q amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.79467A>G/c.1394A>G/p.Y465C|chrIX:g.79478_79479delATinsCA/c.1405_1406delATinsCA/p.I469Q +YIL144W NDC80 7089 ndc80-125 Y465C, I469Q, N564I amino_acid_mutation PMID:25230952 Y465C|I469Q|N564I False Y465C,I469Q,N564I amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.79467A>G/c.1394A>G/p.Y465C|chrIX:g.79478_79479delATinsCA/c.1405_1406delATinsCA/p.I469Q|chrIX:g.79764A>T/c.1691A>T/p.N564I +YIL144W NDC80 7090 ndc80-126 N564I amino_acid_mutation PMID:25230952 N564I False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.79764A>T/c.1691A>T/p.N564I +YIL147C SLN1 7098 sln1-(nrp2-3) P1196L amino_acid_mutation PMID:9148959 P1196L False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.69867G>A/c.3587C>T/p.P1196L +YIR002C MPH1 7129 mph1-DE D209N, E210Q amino_acid_mutation PMID:21138837 D209N|E210Q False D209N,E210Q amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.359772C>T/c.625G>A/p.D209N|chrIX:g.359769C>G/c.628G>C/p.E210Q +YIR011C STS1 7146 sts1-2 C194Y amino_acid_mutation PMID:21075847,PMID:27566164,PMID:32147457 C194Y False amino_acid_mutation:single_aa amino_acid_mutation chrIX:g.377666C>T/c.581G>A/p.C194Y +YJL012C VTC4 7229 vtc4-K200A K200A amino_acid_mutation PMID:19390046,PMID:37066886 K200A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412801_412802delAAinsGC/c.598_599delAAinsGC/p.K200A +YJL012C VTC4 7230 vtc4-K256E K256E amino_acid_mutation PMID:37066886 K256E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412634T>C/c.766A>G/p.K256E +YJL012C VTC4 7231 vtc4-K281A K281A amino_acid_mutation PMID:37066886 K281A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412558_412559delAAinsGC/c.841_842delAAinsGC/p.K281A +YJL012C VTC4 7232 vtc4-K291E K291E amino_acid_mutation PMID:37066886 K291E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412529T>C/c.871A>G/p.K291E +YJL012C VTC4 7233 vtc4-K294E K294E amino_acid_mutation PMID:37066886 K294E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412520T>C/c.880A>G/p.K294E +YJL012C VTC4 7234 vtc4-K428E K428E amino_acid_mutation PMID:37066886 K428E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412118T>C/c.1282A>G/p.K428E +YJL012C VTC4 7235 vtc4-K455E K455E amino_acid_mutation PMID:37066886 K455E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412037T>C/c.1363A>G/p.K455E +YJL012C VTC4 7236 vtc4-K458A K458A amino_acid_mutation PMID:37066886 K458A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412027_412028delAAinsGC/c.1372_1373delAAinsGC/p.K458A +YJL012C VTC4 7237 vtc4-K458I K458I amino_acid_mutation PMID:37066886 K458I False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412026_412027delAGinsTC/c.1373_1374delAGinsTC/p.K458I +YJL012C VTC4 7238 vtc4-K458L K458L amino_acid_mutation PMID:19390046,PMID:37066886 K458L False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412027_412028delAAinsCT/c.1372_1373delAAinsCT/p.K458L +YJL012C VTC4 7239 vtc4-K622E K622E amino_acid_mutation PMID:37066886 K622E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.411536T>C/c.1864A>G/p.K622E +YJL012C VTC4 7240 vtc4-P621D P621D amino_acid_mutation PMID:37066886 P621D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.411537_411539delCCAinsGAC/c.1861_1863delCCAinsGAC/p.P621D +YJL012C VTC4 7241 vtc4-R196E R196E amino_acid_mutation PMID:37066886 R196E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412813_412814delAGinsGA/c.586_587delAGinsGA/p.R196E +YJL012C VTC4 7242 vtc4-R253E R253E amino_acid_mutation PMID:37066886 R253E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412642_412643delAGinsGA/c.757_758delAGinsGA/p.R253E +YJL012C VTC4 7243 vtc4-R264A R264A amino_acid_mutation PMID:19390046,PMID:27252384,PMID:37066886 R264A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412609_412610delAGinsGC/c.790_791delAGinsGC/p.R264A +YJL012C VTC4 7244 vtc4-R264A,R266A R264A, R266A amino_acid_mutation PMID:19390046 R264A|R266A False R264A,R266A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412609_412610delAGinsGC/c.790_791delAGinsGC/p.R264A|chrX:g.412603_412604delAGinsGC/c.796_797delAGinsGC/p.R266A +YJL012C VTC4 7245 vtc4-R266A R266A amino_acid_mutation PMID:19390046,PMID:37066886 R266A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412603_412604delAGinsGC/c.796_797delAGinsGC/p.R266A +YJL012C VTC4 7246 vtc4-R361A R361A amino_acid_mutation PMID:37066886 R361A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412318_412319delAGinsGC/c.1081_1082delAGinsGC/p.R361A +YJL012C VTC4 7247 vtc4-R373E R373E amino_acid_mutation PMID:37066886 R373E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412281_412283delCGTinsGAG/c.1117_1119delCGTinsGAG/p.R373E +YJL012C VTC4 7248 vtc4-R618E R618E amino_acid_mutation PMID:37066886 R618E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.411546_411548delCGTinsGAG/c.1852_1854delCGTinsGAG/p.R618E +YJL012C VTC4 7249 vtc4-R629E R629E amino_acid_mutation PMID:37066886 R629E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.411514_411515delAGinsGA/c.1885_1886delAGinsGA/p.R629E +YJL012C VTC4 7250 vtc4-S457A S457A amino_acid_mutation PMID:19390046,PMID:37066886 S457A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412031A>C/c.1369T>G/p.S457A +YJL012C VTC4 7251 vtc4-W287D W287D amino_acid_mutation PMID:37066886 W287D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412539_412541delTGGinsGAC/c.859_861delTGGinsGAC/p.W287D +YJL012C VTC4 7252 vtc4-Y359F Y359F amino_acid_mutation PMID:19390046,PMID:37066886 Y359F False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.412324T>A/c.1076A>T/p.Y359F +YJL013C MAD3 7255 mad3-1 E382K amino_acid_mutation PMID:10704439,PMID:1651172 E382K False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.409897C>T/c.1144G>A/p.E382K +YJL019W MPS3 7269 mps3-(nep98-7) N597K amino_acid_mutation PMID:12493774 N597K False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.404687C>G/c.1791C>G/p.N597K +YJL019W MPS3 7271 mps3-1 S472N amino_acid_mutation PMID:12486115,PMID:23390603,PMID:23962978,PMID:33332348 S472N False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.404311G>A/c.1415G>A/p.S472N +YJL019W MPS3 7274 mps3-A540D A540D amino_acid_mutation PMID:16923827,PMID:23275891,PMID:33332348 A540D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.404515_404516delCAinsAC/c.1619_1620delCAinsAC/p.A540D +YJL019W MPS3 7276 mps3-F592S F592S amino_acid_mutation PMID:16923827,PMID:30625036 F592S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.404671T>C/c.1775T>C/p.F592S +YJL019W MPS3 7277 mps3-Q572L,Q573L Q572L,Q573L amino_acid_mutation PMID:16923827 Q572L|Q573L False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.404611A>T/c.1715A>T/p.Q572L|chrX:g.404614A>T/c.1718A>T/p.Q573L +YJL019W MPS3 7280 mps3-W477A W477A amino_acid_mutation PMID:16923827,PMID:33332348 W477A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.404325_404326delTGinsGC/c.1429_1430delTGinsGC/p.W477A +YJL019W MPS3 7281 mps3-W487A W487A amino_acid_mutation PMID:16923827 W487A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.404355_404356delTGinsGC/c.1459_1460delTGinsGC/p.W487A +YJL019W MPS3 7282 mps3-Y502H Y502H amino_acid_mutation PMID:16923827 Y502H False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.404400T>C/c.1504T>C/p.Y502H +YJL034W KAR2 7315 kar2-159 G417S amino_acid_mutation PMID:2190988,PMID:23962978,PMID:27708008,PMID:34544143 G417S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.382575G>A/c.1249G>A/p.G417S +YJL039C NUP192 7323 nup192-LAF L1525E,A1610E,Y1679E amino_acid_mutation PMID:35679425 L1525E|A1610E|Y1679E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.369226_369227delTTinsGA/c.4573_4574delTTinsGA/p.L1525E|chrX:g.368970_368971delCTinsAG/c.4829_4830delCTinsAG/p.A1610E|chrX:g.368763_368765delTATinsGAG/c.5035_5037delTATinsGAG/p.Y1679E +YJL039C NUP192 7324 nup192-LAF+LIFH L1525E,A1610E,Y1679E,I1053E,E1057R,F1106E,E1107R, amino_acid_mutation PMID:35679425 L1525E|A1610E|Y1679E|I1053E|E1057R|F1106E|E1107R False L1525E,A1610E,Y1679E,I1053E,E1057R,F1106E,E1107R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.369226_369227delTTinsGA/c.4573_4574delTTinsGA/p.L1525E|chrX:g.368970_368971delCTinsAG/c.4829_4830delCTinsAG/p.A1610E|chrX:g.368763_368765delTATinsGAG/c.5035_5037delTATinsGAG/p.Y1679E|chrX:g.370642_370643delATinsGA/c.3157_3158delATinsGA/p.I1053E|chrX:g.370630_370631delGAinsAG/c.3169_3170delGAinsAG/p.E1057R|chrX:g.370482_370484delTTTinsGAG/c.3316_3318delTTTinsGAG/p.F1106E|chrX:g.370480_370481delGAinsAG/c.3319_3320delGAinsAG/p.E1107R +YJL039C NUP192 7325 nup192-LIFH I1053E,E1057R,F1106E,E1107R amino_acid_mutation PMID:35679425 I1053E|E1057R|F1106E|E1107R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.370642_370643delATinsGA/c.3157_3158delATinsGA/p.I1053E|chrX:g.370630_370631delGAinsAG/c.3169_3170delGAinsAG/p.E1057R|chrX:g.370482_370484delTTTinsGAG/c.3316_3318delTTTinsGAG/p.F1106E|chrX:g.370480_370481delGAinsAG/c.3319_3320delGAinsAG/p.E1107R +YJL050W MTR4 7343 mtr4-E277K E277K amino_acid_mutation PMID:35607352 E277K False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.343350G>A/c.829G>A/p.E277K +YJL050W MTR4 7345 mtr4-R322C R322C amino_acid_mutation PMID:35607352 R322C False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.343485C>T/c.964C>T/p.R322C +YJL050W MTR4 7347 mtr4-W305G W305G amino_acid_mutation PMID:35607352 W305G False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.343434T>G/c.913T>G/p.W305G +YJL074C SMC3 7382 smc3-K112A K112A amino_acid_mutation PMID:18614053 K112A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.302515_302516delAAinsGC/c.334_335delAAinsGC/p.K112A +YJL074C SMC3 7383 smc3-K112A,K113A K112A, K113A amino_acid_mutation PMID:18614053 K112A|K113A False K112A,K113A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.302515_302516delAAinsGC/c.334_335delAAinsGC/p.K112A|chrX:g.302512_302513delAAinsGC/c.337_338delAAinsGC/p.K113A +YJL074C SMC3 7384 smc3-K112R K112R amino_acid_mutation PMID:18614053,PMID:18653893,PMID:18653894 K112R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.302515T>C/c.335A>G/p.K112R +YJL074C SMC3 7386 smc3-K112R,K113R K112R, K113R amino_acid_mutation PMID:18614053,PMID:18653893,PMID:18653894,PMID:19328069,PMID:35710835 K112R|K113R False K112R,K113R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.302515T>C/c.335A>G/p.K112R|chrX:g.302512T>C/c.338A>G/p.K113R +YJL074C SMC3 7387 smc3-K113A K113A amino_acid_mutation PMID:18614053 K113A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.302512_302513delAAinsGC/c.337_338delAAinsGC/p.K113A +YJL074C SMC3 7388 smc3-K113N K113N amino_acid_mutation PMID:18653893 K113N False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.302511C>G/c.339G>C/p.K113N +YJL074C SMC3 7389 smc3-K113R K113R amino_acid_mutation PMID:18614053,PMID:18653893,PMID:18653894 K113R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.302512T>C/c.338A>G/p.K113R +YJL076W NET1 7394 net1-6cdk T62A, S166A, T212A, S252A, T297A, T304A amino_acid_mutation PMID:26090959 T62A|S166A|T212A|S252A|T297A|T304A False T62A,S166A,T212A,S252A,T297A,T304A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.295428A>G/c.184A>G/p.T62A|chrX:g.295740T>G/c.496T>G/p.S166A|chrX:g.295878A>G/c.634A>G/p.T212A|chrX:g.295998T>G/c.754T>G/p.S252A|chrX:g.296133A>G/c.889A>G/p.T297A|chrX:g.296117A>G/c.910A>G/p.T304A +YJL076W NET1 7395 net1-T62A,S385A T62A, S385A amino_acid_mutation PMID:32265285 T62A|S385A False T62A,S385A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.295428A>G/c.184A>G/p.T62A|chrX:g.296397_296398delAGinsGC/c.1153_1154delAGinsGC/p.S385A +YJL081C ARP4 7398 arp4-1 L420R amino_acid_mutation PMID:8598290 L420R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.284013_284014delTTinsAG/c.1258_1259delTTinsAG/p.L420R +YJL081C ARP4 7399 arp4-12 G455S amino_acid_mutation PMID:10911987,PMID:15610740 G455S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.283909C>T/c.1363G>A/p.G455S +YJL081C ARP4 7400 arp4-2 C155F amino_acid_mutation PMID:8598290 C155F False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.284808C>A/c.464G>T/p.C155F +YJL081C ARP4 7401 arp4-26 G187R amino_acid_mutation PMID:10911987,PMID:15610740,PMID:34359924,PMID:36078161 G187R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.284713C>T/c.559G>A/p.G187R +YJL081C ARP4 7402 arp4-3 C155Y amino_acid_mutation PMID:15610740,PMID:8598290 C155Y False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.284808C>T/c.464G>A/p.C155Y +YJL081C ARP4 7403 arp4-5 C137R amino_acid_mutation PMID:8598290 C137R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.284863A>G/c.409T>C/p.C137R +YJL081C ARP4 7404 arp4-6 L454P amino_acid_mutation PMID:8598290 L454P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.283911A>G/c.1361T>C/p.L454P +YJL081C ARP4 7406 arp4-S23A/D159A S23A, D159A amino_acid_mutation PMID:17452364 S23A|D159A False S23A,D159A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.285205A>C/c.67T>G/p.S23A|chrX:g.284796T>G/c.476A>C/p.D159A +YJL085W EXO70 7410 exo70-113 N79K, Y327* amino_acid_deletion_and_mutation PMID:19955214 N79K|Y327* False N79K,Y327* amino_acid_mutation:single_aa|nonsense_mutation:stop_codon_star amino_acid_deletion_and_mutation chrX:g.273063C>G/c.237C>G/p.N79K|chrX:g.273807T>A/c.981T>A/p.Y327* +YJL085W EXO70 7411 exo70-188 S305G, T523P, L621I amino_acid_mutation PMID:19955214 S305G|T523P|L621I False S305G,T523P,L621I amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.273739A>G/c.913A>G/p.S305G|chrX:g.274393A>C/c.1567A>C/p.T523P|chrX:g.274687T>A/c.1861T>A/p.L621I +YJL085W EXO70 7414 exo70-2941 K548A, R550A, K551A, R595A, K597A amino_acid_mutation PMID:17717527 K548A|R550A|K551A|R595A|K597A False K548A,R550A,K551A,R595A,K597A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.274468_274469delAAinsGC/c.1642_1643delAAinsGC/p.K548A|chrX:g.274474_274475delAGinsGC/c.1648_1649delAGinsGC/p.R550A|chrX:g.274477_274478delAAinsGC/c.1651_1652delAAinsGC/p.K551A|chrX:g.274609_274610delAGinsGC/c.1783_1784delAGinsGC/p.R595A|chrX:g.274615_274616delAAinsGC/c.1789_1790delAAinsGC/p.K597A +YJL085W EXO70 7415 exo70-35 R591A, R595A, K597A amino_acid_mutation PMID:17339375 R591A|R595A|K597A False R591A,R595A,K597A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.274597_274598delAGinsGC/c.1771_1772delAGinsGC/p.R591A|chrX:g.274609_274610delAGinsGC/c.1783_1784delAGinsGC/p.R595A|chrX:g.274615_274616delAAinsGC/c.1789_1790delAAinsGC/p.K597A +YJL088W ARG3 7422 arg3-R69G R69G amino_acid_mutation PMID:34544143 R69G False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.269003A>G/c.205A>G/p.R69G +YJL090C DPB11 7428 dpb11-PF P3A, F4A amino_acid_mutation PMID:21130053 P3A|F4A False P3A,F4A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.265045G>C/c.7C>G/p.P3A|chrX:g.265041_265042delTTinsGC/c.10_11delTTinsGC/p.F4A +YJL091C GWT1 7433 gwt1-10 K8E amino_acid_mutation PMID:16361252 K8E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.262531T>C/c.22A>G/p.K8E +YJL106W IME2 7457 ime2-DFGx L231S amino_acid_mutation PMID:25310241 L231S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.222081T>C/c.692T>C/p.L231S +YJL111W CCT7 7461 cct7-G412E G412E amino_acid_mutation PMID:34047865 G412E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.209111_209112delGTinsAG/c.1235_1236delGTinsAG/p.G412E +YJL112W MDV1 7465 mdv1-N544R N544R amino_acid_mutation PMID:16272155 N544R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.206935_206936delATinsGG/c.1631_1632delATinsGG/p.N544R +YJL128C PBS2 7481 PBS2DD S514D, T518D amino_acid_mutation PMID:19477922 S514D|T518D False S514D,T518D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.178563_178564delTCinsGA/c.1540_1541delTCinsGA/p.S514D|chrX:g.178551_178552delACinsGA/c.1552_1553delACinsGA/p.T518D +YJL128C PBS2 7484 pbs2-S508A,S514D,T518D S508A,S514D,T518D amino_acid_mutation PMID:12506122 S508A|S514D|T518D False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.178582A>C/c.1522T>G/p.S508A|chrX:g.178563_178564delTCinsGA/c.1540_1541delTCinsGA/p.S514D|chrX:g.178551_178552delACinsGA/c.1552_1553delACinsGA/p.T518D +YJL143W TIM17 7516 tim17-4 C10R amino_acid_mutation PMID:31907035 C10R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147128T>C/c.28T>C/p.C10R +YJL143W TIM17 7517 tim17-5 P42L, R109G, S115P amino_acid_mutation PMID:31907035 P42L|R109G|S115P False P42L,R109G,S115P amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147225C>T/c.125C>T/p.P42L|chrX:g.147425A>G/c.325A>G/p.R109G|chrX:g.147443T>C/c.343T>C/p.S115P +YJL143W TIM17 7519 tim17-AA C10A, C77A amino_acid_mutation PMID:27502485 C10A|C77A False C10A,C77A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147128_147129delTGinsGC/c.28_29delTGinsGC/p.C10A|chrX:g.147329_147330delTGinsGC/c.229_230delTGinsGC/p.C77A +YJL143W TIM17 7520 tim17-D17N D17N amino_acid_mutation PMID:37344598 D17N False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147149G>A/c.49G>A/p.D17N +YJL143W TIM17 7521 tim17-D17N,D76N D17N, D76N amino_acid_mutation PMID:37344598 D17N|D76N False D17N,D76N amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147149G>A/c.49G>A/p.D17N|chrX:g.147326G>A/c.226G>A/p.D76N +YJL143W TIM17 7522 tim17-D17N,D76N,E126Q D17N, D76N, E126Q amino_acid_mutation PMID:37344598 D17N|D76N|E126Q False D17N,D76N,E126Q amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147149G>A/c.49G>A/p.D17N|chrX:g.147326G>A/c.226G>A/p.D76N|chrX:g.147476G>C/c.376G>C/p.E126Q +YJL143W TIM17 7523 tim17-D17N,E126Q D17N, E126Q amino_acid_mutation PMID:37344598 D17N|E126Q False D17N,E126Q amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147149G>A/c.49G>A/p.D17N|chrX:g.147476G>C/c.376G>C/p.E126Q +YJL143W TIM17 7524 tim17-D17R D17R amino_acid_mutation PMID:37344598 D17R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147149_147150delGAinsCG/c.49_50delGAinsCG/p.D17R +YJL143W TIM17 7525 tim17-D76N D76N amino_acid_mutation PMID:37344598 D76N False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147326G>A/c.226G>A/p.D76N +YJL143W TIM17 7526 tim17-D76N,E126Q D76N, E126Q amino_acid_mutation PMID:37344598 D76N|E126Q False D76N,E126Q amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147326G>A/c.226G>A/p.D76N|chrX:g.147476G>C/c.376G>C/p.E126Q +YJL143W TIM17 7527 tim17-D76R D76R amino_acid_mutation PMID:37344598 D76R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147326_147327delGAinsCG/c.226_227delGAinsCG/p.D76R +YJL143W TIM17 7528 tim17-E126Q E126Q amino_acid_mutation PMID:37344598 E126Q False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147476G>C/c.376G>C/p.E126Q +YJL143W TIM17 7529 tim17-E126R E126R amino_acid_mutation PMID:37344598 E126R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147476_147477delGAinsAG/c.376_377delGAinsAG/p.E126R +YJL143W TIM17 7530 tim17-F65N F65N amino_acid_mutation PMID:37344598 F65N False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147293_147294delTTinsAA/c.193_194delTTinsAA/p.F65N +YJL143W TIM17 7531 tim17-F65V F65V amino_acid_mutation PMID:37344598 F65V False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147293T>G/c.193T>G/p.F65V +YJL143W TIM17 7532 tim17-F65V,F72V F65V, F72V amino_acid_mutation PMID:37344598 F65V|F72V False F65V,F72V amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147293T>G/c.193T>G/p.F65V|chrX:g.147314T>G/c.214T>G/p.F72V +YJL143W TIM17 7533 tim17-F72N F72N amino_acid_mutation PMID:37344598 F72N False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147314_147315delTTinsAA/c.214_215delTTinsAA/p.F72N +YJL143W TIM17 7534 tim17-F72V F72V amino_acid_mutation PMID:37344598 F72V False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147314T>G/c.214T>G/p.F72V +YJL143W TIM17 7535 tim17-W68N W68N amino_acid_mutation PMID:37344598 W68N False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147302_147304delTGGinsAAC/c.202_204delTGGinsAAC/p.W68N +YJL143W TIM17 7536 tim17-W68V W68V amino_acid_mutation PMID:37344598 W68V False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147302_147303delTGinsGT/c.202_203delTGinsGT/p.W68V +YJL143W TIM17 7537 tim17-W68V,F72V W68V, F72V amino_acid_mutation PMID:37344598 W68V|F72V False W68V,F72V amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.147302_147303delTGinsGT/c.202_203delTGinsGT/p.W68V|chrX:g.147314T>G/c.214T>G/p.F72V +YJL145W SFH5 7542 sfh5-E204A,K236A E204A, K236A amino_acid_mutation PMID:19477927 E204A|K236A False E204A,K236A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.145770A>C/c.611A>C/p.E204A|chrX:g.145865_145866delAAinsGC/c.706_707delAAinsGC/p.K236A +YJL167W ERG20 7575 erg20-F96C F96C amino_acid_mutation PMID:25446975,PMID:36972300 F96C False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.105300T>G/c.287T>G/p.F96C +YJL194W CDC6 7607 cdc6-DE(223,224)AA D223A, E224A amino_acid_mutation PMID:9892652 D223A|E224A False D223A,E224A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.70005A>C/c.668A>C/p.D223A|chrX:g.70008A>C/c.671A>C/p.E224A +YJL194W CDC6 7608 cdc6-K114A K114A amino_acid_mutation PMID:9892652 K114A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.69677_69678delAAinsGC/c.340_341delAAinsGC/p.K114A +YJL194W CDC6 7609 cdc6-K114E K114E amino_acid_mutation PMID:36321416,PMID:8930895,PMID:9892652 K114E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.69677A>G/c.340A>G/p.K114E +YJL194W CDC6 7610 cdc6-K114R K114R amino_acid_mutation PMID:9892652 K114R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.69678A>G/c.341A>G/p.K114R +YJL194W CDC6 7614 cdc6-lxf L47A, F49A amino_acid_mutation PMID:31101497,PMID:36321416 L47A|F49A False L47A,F49A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.69450_69451delTTinsGC/c.139_140delTTinsGC/p.L47A|chrX:g.69482_69483delTTinsGC/c.145_146delTTinsGC/p.F49A +YJR006W POL31 7651 pol31-(hys2-1) G170D amino_acid_mutation PMID:7567461 G170D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.449709_449710delGGinsAC/c.509_510delGGinsAC/p.G170D +YJR006W POL31 7656 pol31-K358E K358E amino_acid_mutation PMID:16949354,PMID:36833317,PMID:9258670 K358E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.450273A>G/c.1072A>G/p.K358E +YJR007W SUI2 7662 sui2-1 P14S amino_acid_mutation PMID:2179049,PMID:2678106 P14S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.451059C>T/c.40C>T/p.P14S +YJR017C ESS1 7685 ess1-A144T A144T amino_acid_mutation PMID:10899126 A144T False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466604C>T/c.430G>A/p.A144T +YJR017C ESS1 7686 ess1-C120R C120R amino_acid_mutation PMID:10899126 C120R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466676A>G/c.358T>C/p.C120R +YJR017C ESS1 7687 ess1-C62R C62R amino_acid_mutation PMID:10899126 C62R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466850A>G/c.184T>C/p.C62R +YJR017C ESS1 7688 ess1-D102Y D102Y amino_acid_mutation PMID:10899126 D102Y False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466730C>A/c.304G>T/p.D102Y +YJR017C ESS1 7689 ess1-F110S F110S amino_acid_mutation PMID:10899126 F110S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466705A>G/c.329T>C/p.F110S +YJR017C ESS1 7690 ess1-G127D G127D amino_acid_mutation PMID:10899126,PMID:37050909,PMID:9867817 G127D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466654C>T/c.380G>A/p.G127D +YJR017C ESS1 7691 ess1-G162S G162S amino_acid_mutation PMID:9867817 G162S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466550C>T/c.484G>A/p.G162S +YJR017C ESS1 7692 ess1-G43V G43V amino_acid_mutation PMID:10899126 G43V False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466906C>A/c.128G>T/p.G43V +YJR017C ESS1 7693 ess1-H164R H164R amino_acid_mutation PMID:10899126,PMID:15166139,PMID:16410768,PMID:19332564,PMID:22778132,PMID:25721128,PMID:27708008,PMID:34975936 H164R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466543T>C/c.491A>G/p.H164R +YJR017C ESS1 7694 ess1-H64P H64P amino_acid_mutation PMID:10899126 H64P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466843T>G/c.191A>C/p.H64P +YJR017C ESS1 7695 ess1-K51E K51E amino_acid_mutation PMID:10899126 K51E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466883T>C/c.151A>G/p.K51E +YJR017C ESS1 7696 ess1-L66P L66P amino_acid_mutation PMID:10899126 L66P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466837A>G/c.197T>C/p.L66P +YJR017C ESS1 7697 ess1-L94P L94P amino_acid_mutation PMID:10899126,PMID:37050909 L94P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466753A>G/c.281T>C/p.L94P +YJR017C ESS1 7698 ess1-S118L S118L amino_acid_mutation PMID:10899126 S118L False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466681G>A/c.353C>T/p.S118L +YJR017C ESS1 7699 ess1-S122P S122P amino_acid_mutation PMID:10899126 S122P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466670A>G/c.364T>C/p.S122P +YJR017C ESS1 7700 ess1-S77P S77P amino_acid_mutation PMID:10899126 S77P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466805A>G/c.229T>C/p.S77P +YJR017C ESS1 7701 ess1-S7P S7P amino_acid_mutation PMID:10899126 S7P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.467015A>G/c.19T>C/p.S7P +YJR017C ESS1 7702 ess1-T96P T96P amino_acid_mutation PMID:10899126 T96P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466748T>G/c.286A>C/p.T96P +YJR017C ESS1 7703 ess1-W15R W15R amino_acid_mutation PMID:10899126 W15R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.466991A>T/c.43T>A/p.W15R +YJR017C ESS1 7704 ess1-a G43* partial_amino_acid_deletion PMID:2648698 G43* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrX:g.466905_466907delGGCinsTGA/c.127_129delGGCinsTGA/p.G43* +YJR045C SSC1 7736 ssc1-E392K E392K amino_acid_mutation PMID:35252210 E392K False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.520429C>T/c.1174G>A/p.E392K +YJR045C SSC1 7737 ssc1-G365S G365S amino_acid_mutation PMID:35252210 G365S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.520510C>T/c.1093G>A/p.G365S +YJR045C SSC1 7739 ssc1-Q554K Q554K amino_acid_mutation PMID:35252210 Q554K False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.519943G>T/c.1660C>A/p.Q554K +YJR045C SSC1 7741 ssc1-S177L S177L amino_acid_mutation PMID:35252210 S177L False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.521073_521074delTCinsCT/c.529_530delTCinsCT/p.S177L +YJR045C SSC1 7742 ssc1-T516K T516K amino_acid_mutation PMID:35252210 T516K False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.520056G>T/c.1547C>A/p.T516K +YJR045C SSC1 7744 ssc1-V189P V189P amino_acid_mutation PMID:35252210 V189P False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.521037_521038delGTinsCC/c.565_566delGTinsCC/p.V189P +YJR059W PTK2 7763 ptk2-(spt1) G375D amino_acid_mutation PMID:9920864 G375D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.546910G>A/c.1124G>A/p.G375D +YJR063W RPA12 7773 rpa12-DE-AA D105A,E106A amino_acid_mutation PMID:35341765 D105A|E106A False D105A,E106A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.555508A>C/c.314A>C/p.D105A|chrX:g.555464A>C/c.317A>C/p.E106A +YJR066W TOR1 7789 TOR1-1 S1972R amino_acid_mutation PMID:1715094,PMID:31649143,PMID:35293776,PMID:8186460 S1972R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R +YJR066W TOR1 7791 TOR1-I1954S I1954S amino_acid_mutation PMID:26510498 I1954S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565276T>G/c.5861T>G/p.I1954S +YJR066W TOR1 7794 tor1-(drr1-1) S1972R amino_acid_mutation PMID:8413204 S1972R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R +YJR066W TOR1 7795 tor1-(drr1-18) S1972R amino_acid_mutation PMID:8413204 S1972R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R +YJR066W TOR1 7796 tor1-(drr1-19) S1972R amino_acid_mutation PMID:8413204 S1972R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R +YJR066W TOR1 7797 tor1-(drr1-27) S1972N amino_acid_mutation PMID:8413204 S1972N False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565330G>A/c.5915G>A/p.S1972N +YJR066W TOR1 7798 tor1-(drr1-49) S1972R amino_acid_mutation PMID:8413204 S1972R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R +YJR066W TOR1 7799 tor1-(drr1-7) S1972R amino_acid_mutation PMID:8413204 S1972R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R|chrX:g.565331C>G/c.5916C>G/p.S1972R +YJR066W TOR1 7800 tor1-A1927E A1927E amino_acid_mutation PMID:26510498 A1927E False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565195C>A/c.5780C>A/p.A1927E +YJR066W TOR1 7802 tor1-A1957V A1957V amino_acid_mutation PMID:16923813,PMID:26510498,PMID:32801125 A1957V False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565285C>T/c.5870C>T/p.A1957V +YJR066W TOR1 7804 tor1-I1954V I1954V amino_acid_mutation PMID:16923813,PMID:32801125 I1954V False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565275A>G/c.5860A>G/p.I1954V +YJR066W TOR1 7807 tor1-L2271V L2271V amino_acid_mutation PMID:26510498 L2271V False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.566226C>G/c.6811C>G/p.L2271V +YJR066W TOR1 7808 tor1-S1972A S1972A amino_acid_mutation PMID:8654975 S1972A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565329_565330delAGinsGC/c.5914_5915delAGinsGC/p.S1972A +YJR066W TOR1 7809 tor1-S1972D S1972D amino_acid_mutation PMID:8654975 S1972D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565329_565330delAGinsGA/c.5914_5915delAGinsGA/p.S1972D +YJR066W TOR1 7810 tor1-S1972T S1972T amino_acid_mutation PMID:8654975 S1972T False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565330G>C/c.5915G>C/p.S1972T +YJR066W TOR1 7811 tor1-W2176R W2176R amino_acid_mutation PMID:16923813,PMID:32801125 W2176R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.565941T>A/c.6526T>A/p.W2176R +YJR068W RFC2 7815 rfc2R K71R amino_acid_mutation PMID:11549622 K71R False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.567854A>G/c.212A>G/p.K71R +YJR072C NPA3 7816 npa3-(gpn1-E112K) E112K amino_acid_mutation PMID:23324351 E112K False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.571791C>T/c.334G>A/p.E112K +YJR076C CDC11 7828 cdc11-3 G29D amino_acid_mutation PMID:17248617,PMID:18541672,PMID:24398420,PMID:27708008 G29D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.576516C>T/c.86G>A/p.G29D +YJR076C CDC11 7829 cdc11-4 S31F, S100P amino_acid_mutation PMID:17248617,PMID:24398420,PMID:27708008 S31F|S100P False S31F,S100P amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.576510G>A/c.92C>T/p.S31F|chrX:g.576304A>G/c.298T>C/p.S100P +YJR076C CDC11 7830 cdc11-5 G34D amino_acid_mutation PMID:17248617,PMID:23390603,PMID:24398420,PMID:27708008 G34D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.576501C>T/c.101G>A/p.G34D +YJR086W STE18 7841 ste18-A1 R34T, R43W amino_acid_mutation PMID:1297344 R34T|R43W False R34T,R43W amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.586168G>C/c.101G>C/p.R34T|chrX:g.586194A>T/c.127A>T/p.R43W +YJR086W STE18 7842 ste18-C107S C107S amino_acid_mutation PMID:7982577 C107S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.586386T>A/c.319T>A/p.C107S +YJR089W BIR1 7846 bir1-9xA S383A, S395A, S552A, S587A, S667A, T684A, S688A, T735A, T747A amino_acid_mutation PMID:16381814 S383A|S395A|S552A|S587A|S667A|T684A|S688A|T735A|T747A False S383A,S395A,S552A,S587A,S667A,T684A,S688A,T735A,T747A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.588864T>G/c.1147T>G/p.S383A|chrX:g.588900T>G/c.1183T>G/p.S395A|chrX:g.589371T>G/c.1654T>G/p.S552A|chrX:g.589476T>G/c.1759T>G/p.S587A|chrX:g.589716T>G/c.1999T>G/p.S667A|chrX:g.589767A>G/c.2050A>G/p.T684A|chrX:g.589779_589780delAGinsGC/c.2062_2063delAGinsGC/p.S688A|chrX:g.589920A>G/c.2203A>G/p.T735A|chrX:g.589956A>G/c.2239A>G/p.T747A +YJR104C SOD1 7876 sod1-H47Q H47Q amino_acid_mutation PMID:27656112 H47Q False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.622874G>T/c.141C>A/p.H47Q +YJR119C JHD2 7904 jhd2-S321A S321A amino_acid_mutation PMID:36167807 S321A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.645530A>C/c.961T>G/p.S321A +YJR119C JHD2 7905 jhd2-S321A,S340A S321A, S340A amino_acid_mutation PMID:36167807 S321A|S340A False S321A,S340A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.645530A>C/c.961T>G/p.S321A|chrX:g.645473A>C/c.1018T>G/p.S340A +YJR119C JHD2 7906 jhd2-S321D S321D amino_acid_mutation PMID:36167807 S321D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.645529_645530delTCinsGA/c.961_962delTCinsGA/p.S321D +YJR119C JHD2 7907 jhd2-S321D,S340D S321D, S340D amino_acid_mutation PMID:36167807 S321D|S340D False S321D,S340D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.645529_645530delTCinsGA/c.961_962delTCinsGA/p.S321D|chrX:g.645471_645473delTCAinsGAC/c.1018_1020delTCAinsGAC/p.S340D +YJR119C JHD2 7908 jhd2-S340A S340A amino_acid_mutation PMID:35183557,PMID:36167807 S340A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.645473A>C/c.1018T>G/p.S340A +YJR119C JHD2 7909 jhd2-S340D S340D amino_acid_mutation PMID:35183557,PMID:36167807 S340D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.645471_645473delTCAinsGAC/c.1018_1020delTCAinsGAC/p.S340D +YJR121W ATP2 7915 atp2-G325A V109I amino_acid_mutation PMID:12242224 V109I False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.647931G>A/c.325G>A/p.V109I +YJR121W ATP2 7917 atp2-L125A,L318A L125A, L318A amino_acid_mutation PMID:36030696 L125A|L318A False L125A,L318A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.647743_647744delTTinsGC/c.373_374delTTinsGC/p.L125A|chrX:g.648558_648559delTTinsGC/c.952_953delTTinsGC/p.L318A +YJR121W ATP2 7918 atp2-T124A,T317A T124A, T317A amino_acid_mutation PMID:36030696 T124A|T317A False T124A,T317A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrX:g.647976A>G/c.370A>G/p.T124A|chrX:g.648555A>G/c.949A>G/p.T317A +YJR121W ATP2 7919 atp2-T124D T124D amino_acid_mutation PMID:29719209,PMID:36030696 T124D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.647976_647977delACinsGA/c.370_371delACinsGA/p.T124D +YJR121W ATP2 7921 atp2-T317A T317A amino_acid_mutation PMID:29719209 T317A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.648555A>G/c.949A>G/p.T317A +YJR121W ATP2 7922 atp2-T317D T317D amino_acid_mutation PMID:29719209,PMID:36030696 T317D False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.648555_648556delACinsGA/c.949_950delACinsGA/p.T317D +YJR136C TTI2 7929 tti2-Q276* Q276* partial_amino_acid_deletion PMID:27172216 Q276* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrX:g.677881G>A/c.826C>T/p.Q276* +YJR137C MET5 7933 ecm17-E1356K E1356K amino_acid_mutation PMID:19236486 E1356K False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.679220C>T/c.4066G>A/p.E1356K +YJR138W IML1 7935 iml1-R943A R943A amino_acid_mutation PMID:23716719,PMID:36289347 R943A False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.687393_687394delCGinsGC/c.2827_2828delCGinsGC/p.R943A +YJR151C DAN4 7959 dan4-P216S P216S amino_acid_mutation PMID:36870416 P216S False amino_acid_mutation:single_aa amino_acid_mutation chrX:g.715095G>A/c.646C>T/p.P216S +YKL003C MRP17 7977 mrp17-1 E4Q amino_acid_mutation PMID:1279374 E4Q False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.437483C>G/c.10G>C/p.E4Q +YKL004W AUR1 7982 AUR1-(ABR1) L137F, H157Y amino_acid_mutation PMID:8593016 L137F|H157Y False L137F,H157Y amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.435988C>T/c.409C>T/p.L137F|chrXI:g.436048C>T/c.469C>T/p.H157Y +YKL004W AUR1 7983 AUR1-1 F158Y amino_acid_mutation PMID:16879426,PMID:8668135 F158Y False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.436052T>A/c.473T>A/p.F158Y +YKL018W SWD2 8006 swd2-2 F14P, C27G, F41I, K185E, S253L, C257R amino_acid_mutation PMID:15146080,PMID:34232857 F14P|C27G|F41I|K185E|S253L|C257R False F14P,C27G,F41I,K185E,S253L,C257R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.404141_404142delTTinsCC/c.40_41delTTinsCC/p.F14P|chrXI:g.404180T>G/c.79T>G/p.C27G|chrXI:g.404222T>A/c.121T>A/p.F41I|chrXI:g.404654A>G/c.553A>G/p.K185E|chrXI:g.404858_404859delTCinsCT/c.757_758delTCinsCT/p.S253L|chrXI:g.404870T>C/c.769T>C/p.C257R +YKL040C NFU1 8033 nfu1-AxxA C196A, C199A amino_acid_mutation PMID:27532773 C196A|C199A False C196A,C199A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.361242_361243delTGinsGC/c.586_587delTGinsGC/p.C196A|chrXI:g.361233_361234delTGinsGC/c.595_596delTGinsGC/p.C199A +YKL040C NFU1 8034 nfu1-G194C G194C amino_acid_mutation PMID:27532773 G194C False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.361249C>A/c.580G>T/p.G194C +YKL042W SPC42 8036 spc42-10 Q110P amino_acid_mutation PMID:23962978 Q110P False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.358803A>C/c.329A>C/p.Q110P +YKL049C CSE4 8049 cse4-1 A221T amino_acid_mutation PMID:10958698,PMID:17569568,PMID:21552543,PMID:27708008,PMID:32878900,PMID:7698647 A221T False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346104C>T/c.661G>A/p.A221T +YKL049C CSE4 8050 cse4-101 V195A, L197S amino_acid_mutation PMID:10891506 V195A|L197S False V195A,L197S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346260A>G/c.584T>C/p.V195A|chrXI:g.346175A>G/c.590T>C/p.L197S +YKL049C CSE4 8051 cse4-102 L176S, M218T amino_acid_mutation PMID:10891506,PMID:33751052 L176S|M218T False L176S,M218T amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346238A>G/c.527T>C/p.L176S|chrXI:g.346112A>G/c.653T>C/p.M218T +YKL049C CSE4 8052 cse4-103 I156V, L194Q amino_acid_mutation PMID:10891506 I156V|L194Q False I156V,L194Q amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346299T>C/c.466A>G/p.I156V|chrXI:g.346184A>T/c.581T>A/p.L194Q +YKL049C CSE4 8053 cse4-104 L197S, I229V amino_acid_mutation PMID:10891506 L197S|I229V False L197S,I229V amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346175A>G/c.590T>C/p.L197S|chrXI:g.346080T>C/c.685A>G/p.I229V +YKL049C CSE4 8055 cse4-107 L176F amino_acid_mutation PMID:10891506 L176F False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346237T>A/c.528A>T/p.L176F +YKL049C CSE4 8056 cse4-108 M218T amino_acid_mutation PMID:10891506 M218T False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346112A>G/c.653T>C/p.M218T +YKL049C CSE4 8057 cse4-109 W178F amino_acid_mutation PMID:10891506 W178F False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346231_346232delGGinsTT/c.533_534delGGinsTT/p.W178F +YKL049C CSE4 8058 cse4-110 L197S amino_acid_mutation PMID:10891506 L197S False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346175A>G/c.590T>C/p.L197S +YKL049C CSE4 8059 cse4-111 L194Q amino_acid_mutation PMID:10891506,PMID:33751052 L194Q False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346184A>T/c.581T>A/p.L194Q +YKL049C CSE4 8060 cse4-112 I156V amino_acid_mutation PMID:10891506 I156V False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346299T>C/c.466A>G/p.I156V +YKL049C CSE4 8061 cse4-4A S148A, T149A, T166A, S190A amino_acid_mutation PMID:34432494 S148A|T149A|T166A|S190A False S148A,T149A,T166A,S190A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346323A>C/c.442T>G/p.S148A|chrXI:g.346320T>C/c.445A>G/p.T149A|chrXI:g.346269T>C/c.496A>G/p.T166A|chrXI:g.346196_346197delAGinsGC/c.568_569delAGinsGC/p.S190A +YKL049C CSE4 8062 cse4-4D S148D, T149D, T166D, S190D amino_acid_mutation PMID:34432494 S148D|T149D|T166D|S190D False S148D,T149D,T166D,S190D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346322_346323delTCinsGA/c.442_443delTCinsGA/p.S148D|chrXI:g.346318_346320delACGinsGAC/c.445_447delACGinsGAC/p.T149D|chrXI:g.346267_346269delACAinsGAC/c.496_498delACAinsGAC/p.T166D|chrXI:g.346196_346197delAGinsGA/c.568_569delAGinsGA/p.S190D +YKL049C CSE4 8063 cse4-7A S9A, S10A, S14A, S148A, T149A, T166A, S190A amino_acid_mutation PMID:34432494 S9A|S10A|S14A|S148A|T149A|T166A|S190A False S9A,S10A,S14A,S148A,T149A,T166A,S190A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346739_346740delAGinsGC/c.25_26delAGinsGC/p.S9A|chrXI:g.346737A>C/c.28T>G/p.S10A|chrXI:g.346724_346725delAGinsGC/c.40_41delAGinsGC/p.S14A|chrXI:g.346323A>C/c.442T>G/p.S148A|chrXI:g.346320T>C/c.445A>G/p.T149A|chrXI:g.346269T>C/c.496A>G/p.T166A|chrXI:g.346196_346197delAGinsGC/c.568_569delAGinsGC/p.S190A +YKL049C CSE4 8065 cse4-D217A D217A amino_acid_mutation PMID:33751052 D217A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346115T>G/c.650A>C/p.D217A +YKL049C CSE4 8066 cse4-D217E D217E amino_acid_mutation PMID:33751052,PMID:35234920 D217E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346114G>C/c.651C>G/p.D217E +YKL049C CSE4 8068 cse4-K215,216A K215A, K216A amino_acid_mutation PMID:32111629 K215A|K216A False K215A,K216A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346121_346122delAAinsGC/c.643_644delAAinsGC/p.K215A|chrXI:g.346197_346198delAAinsGC/c.646_647delAAinsGC/p.K216A +YKL049C CSE4 8069 cse4-K215,216R K215R, K216R amino_acid_mutation PMID:32111629,PMID:35234920 K215R|K216R False K215R,K216R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346121T>C/c.644A>G/p.K215R|chrXI:g.346197T>C/c.647A>G/p.K216R +YKL049C CSE4 8077 cse4-Y193A Y193A amino_acid_mutation PMID:33751052,PMID:35234920 Y193A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346187_346188delTAinsGC/c.577_578delTAinsGC/p.Y193A +YKL049C CSE4 8078 cse4-Y193F Y193F amino_acid_mutation PMID:33751052,PMID:35234920 Y193F False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.346187T>A/c.578A>T/p.Y193F +YKL051W SFK1 8085 sfk1-2 W16R amino_acid_mutation PMID:34038161 W16R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.341357T>A/c.46T>A/p.W16R +YKL059C MPE1 8096 mpe1-C182G,C185G C182G, C185G amino_acid_mutation PMID:25135474 C182G|C185G False C182G,C185G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.328900A>C/c.544T>G/p.C182G|chrXI:g.328891A>C/c.553T>G/p.C185G +YKL059C MPE1 8097 mpe1-F9A F9A amino_acid_mutation PMID:25135474 F9A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.329418_329419delTTinsGC/c.25_26delTTinsGC/p.F9A +YKL089W MIF2 8129 mif2-1 P423L amino_acid_mutation PMID:7628703,PMID:8408221 P423L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274661C>T/c.1268C>T/p.P423L +YKL089W MIF2 8130 mif2-10A S217A, S226A, S228A, S229A, S232A, S234A, S236A, S238A, S240A, T245A amino_acid_mutation PMID:36736323 S217A|S226A|S228A|S229A|S232A|S234A|S236A|S238A|S240A|T245A False S217A,S226A,S228A,S229A,S232A,S234A,S236A,S238A,S240A,T245A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274042_274043delAGinsGC/c.649_650delAGinsGC/p.S217A|chrXI:g.274069_274070delAGinsGC/c.676_677delAGinsGC/p.S226A|chrXI:g.274075T>G/c.682T>G/p.S228A|chrXI:g.274078T>G/c.685T>G/p.S229A|chrXI:g.274087T>G/c.694T>G/p.S232A|chrXI:g.274093T>G/c.700T>G/p.S234A|chrXI:g.274099T>G/c.706T>G/p.S236A|chrXI:g.274105_274106delAGinsGC/c.712_713delAGinsGC/p.S238A|chrXI:g.274111T>G/c.718T>G/p.S240A|chrXI:g.274126A>G/c.733A>G/p.T245A +YKL089W MIF2 8131 mif2-10D S217D, S226D, S228D, S229D, S232D, S234D, S236D, S238D, S240D, T245D amino_acid_mutation PMID:36736323 S217D|S226D|S228D|S229D|S232D|S234D|S236D|S238D|S240D|T245D False S217D,S226D,S228D,S229D,S232D,S234D,S236D,S238D,S240D,T245D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274042_274043delAGinsGA/c.649_650delAGinsGA/p.S217D|chrXI:g.274069_274070delAGinsGA/c.676_677delAGinsGA/p.S226D|chrXI:g.274075_274077delTCAinsGAC/c.682_684delTCAinsGAC/p.S228D|chrXI:g.274078_274079delTCinsGA/c.685_686delTCinsGA/p.S229D|chrXI:g.274087_274089delTCAinsGAC/c.694_696delTCAinsGAC/p.S232D|chrXI:g.274093_274095delTCGinsGAC/c.700_702delTCGinsGAC/p.S234D|chrXI:g.274099_274101delTCAinsGAC/c.706_708delTCAinsGAC/p.S236D|chrXI:g.274105_274106delAGinsGA/c.712_713delAGinsGA/p.S238D|chrXI:g.274111_274113delTCAinsGAC/c.718_720delTCAinsGAC/p.S240D|chrXI:g.274126_274127delACinsGA/c.733_734delACinsGA/p.T245D +YKL089W MIF2 8132 mif2-1A S226A amino_acid_mutation PMID:36736323 S226A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274069_274070delAGinsGC/c.676_677delAGinsGC/p.S226A +YKL089W MIF2 8133 mif2-2 S309L, S500F amino_acid_mutation PMID:15795314,PMID:7579695,PMID:8408221 S309L|S500F False S309L,S500F amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274318_274319delTCinsCT/c.925_926delTCinsCT/p.S309L|chrXI:g.274892C>T/c.1499C>T/p.S500F +YKL089W MIF2 8134 mif2-2A S228A, S229A amino_acid_mutation PMID:36736323 S228A|S229A False S228A,S229A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274075T>G/c.682T>G/p.S228A|chrXI:g.274078T>G/c.685T>G/p.S229A +YKL089W MIF2 8135 mif2-3 P505L amino_acid_mutation PMID:14581449,PMID:17242156,PMID:21552543,PMID:23390603,PMID:23962978,PMID:27708008,PMID:32878900,PMID:7579695,PMID:7628703,PMID:8408221 P505L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274907C>T/c.1514C>T/p.P505L +YKL089W MIF2 8136 mif2-3A S226A, S228A, S229A amino_acid_mutation PMID:36736323 S226A|S228A|S229A False S226A,S228A,S229A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274069_274070delAGinsGC/c.676_677delAGinsGC/p.S226A|chrXI:g.274075T>G/c.682T>G/p.S228A|chrXI:g.274078T>G/c.685T>G/p.S229A +YKL089W MIF2 8137 mif2-4 A420V amino_acid_mutation PMID:7628703,PMID:8408221 A420V False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274652C>T/c.1259C>T/p.A420V +YKL089W MIF2 8138 mif2-5 E301K amino_acid_mutation PMID:7628703,PMID:8408221 E301K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274294G>A/c.901G>A/p.E301K +YKL089W MIF2 8139 mif2-5A S232A, S234A, S236A, S238A, S240A amino_acid_mutation PMID:36736323 S232A|S234A|S236A|S238A|S240A False S232A,S234A,S236A,S238A,S240A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274087T>G/c.694T>G/p.S232A|chrXI:g.274093T>G/c.700T>G/p.S234A|chrXI:g.274099T>G/c.706T>G/p.S236A|chrXI:g.274105_274106delAGinsGC/c.712_713delAGinsGC/p.S238A|chrXI:g.274111T>G/c.718T>G/p.S240A +YKL089W MIF2 8141 mif2-6A S226A, S232A, S234A, S236A, S238A, S240A amino_acid_mutation PMID:36736323 S226A|S232A|S234A|S236A|S238A|S240A False S226A,S232A,S234A,S236A,S238A,S240A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274069_274070delAGinsGC/c.676_677delAGinsGC/p.S226A|chrXI:g.274087T>G/c.694T>G/p.S232A|chrXI:g.274093T>G/c.700T>G/p.S234A|chrXI:g.274099T>G/c.706T>G/p.S236A|chrXI:g.274105_274106delAGinsGC/c.712_713delAGinsGC/p.S238A|chrXI:g.274111T>G/c.718T>G/p.S240A +YKL089W MIF2 8142 mif2-7 S325F, V353I, G399E amino_acid_mutation PMID:7628703,PMID:8408221 S325F|V353I|G399E False S325F,V353I,G399E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274367C>T/c.974C>T/p.S325F|chrXI:g.274450G>A/c.1057G>A/p.V353I|chrXI:g.274589G>A/c.1196G>A/p.G399E +YKL089W MIF2 8143 mif2-7A S228A, S229A, S232A, S234A, S236A, S238A, S240A amino_acid_mutation PMID:36736323 S228A|S229A|S232A|S234A|S236A|S238A|S240A False S228A,S229A,S232A,S234A,S236A,S238A,S240A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274075T>G/c.682T>G/p.S228A|chrXI:g.274078T>G/c.685T>G/p.S229A|chrXI:g.274087T>G/c.694T>G/p.S232A|chrXI:g.274093T>G/c.700T>G/p.S234A|chrXI:g.274099T>G/c.706T>G/p.S236A|chrXI:g.274105_274106delAGinsGC/c.712_713delAGinsGC/p.S238A|chrXI:g.274111T>G/c.718T>G/p.S240A +YKL089W MIF2 8144 mif2-8A S226A, S228A, S229A, S232A, S234A, S236A, S238A, S240A amino_acid_mutation PMID:36736323 S226A|S228A|S229A|S232A|S234A|S236A|S238A|S240A False S226A,S228A,S229A,S232A,S234A,S236A,S238A,S240A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274069_274070delAGinsGC/c.676_677delAGinsGC/p.S226A|chrXI:g.274075T>G/c.682T>G/p.S228A|chrXI:g.274078T>G/c.685T>G/p.S229A|chrXI:g.274087T>G/c.694T>G/p.S232A|chrXI:g.274093T>G/c.700T>G/p.S234A|chrXI:g.274099T>G/c.706T>G/p.S236A|chrXI:g.274105_274106delAGinsGC/c.712_713delAGinsGC/p.S238A|chrXI:g.274111T>G/c.718T>G/p.S240A +YKL089W MIF2 8145 mif2-9 T345I, E383K amino_acid_mutation PMID:7628703,PMID:8408221 T345I|E383K False T345I,E383K amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274427C>T/c.1034C>T/p.T345I|chrXI:g.274540G>A/c.1147G>A/p.E383K +YKL089W MIF2 8146 mif2-F523A F523A amino_acid_mutation PMID:18701705 F523A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274960_274961delTTinsGC/c.1567_1568delTTinsGC/p.F523A +YKL089W MIF2 8147 mif2-S54A,S154A S54A, S154A amino_acid_mutation PMID:14581449 S54A|S154A False S54A,S154A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.273553T>G/c.160T>G/p.S54A|chrXI:g.273853_273854delAGinsGC/c.460_461delAGinsGC/p.S154A +YKL089W MIF2 8148 mif2-S54A,S325A S54A, S325A amino_acid_mutation PMID:14581449 S54A|S325A False S54A,S325A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.273553T>G/c.160T>G/p.S54A|chrXI:g.274366T>G/c.973T>G/p.S325A +YKL089W MIF2 8149 mif2-S54A,S98A S54A, S98A amino_acid_mutation PMID:14581449 S54A|S98A False S54A,S98A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.273553T>G/c.160T>G/p.S54A|chrXI:g.273685T>G/c.292T>G/p.S98A +YKL089W MIF2 8150 mif2-T488A T488A amino_acid_mutation PMID:18701705 T488A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274836A>G/c.1462A>G/p.T488A +YKL089W MIF2 8151 mif2-Y451S,F452A Y451S, F452A amino_acid_mutation PMID:18701705 Y451S|F452A False Y451S,F452A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274745A>C/c.1352A>C/p.Y451S|chrXI:g.274747_274748delTTinsGC/c.1354_1355delTTinsGC/p.F452A +YKL089W MIF2 8152 mif2-Y451S,F452A,F523A Y451S, F452A, F523A amino_acid_mutation PMID:18701705 Y451S|F452A|F523A False Y451S,F452A,F523A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.274745A>C/c.1352A>C/p.Y451S|chrXI:g.274747_274748delTTinsGC/c.1354_1355delTTinsGC/p.F452A|chrXI:g.274960_274961delTTinsGC/c.1567_1568delTTinsGC/p.F523A +YKL104C GFA1 8184 GFA1-3A S332A, T334A, S336A amino_acid_mutation PMID:32579556 S332A|T334A|S336A False S332A,T334A,S336A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.244380A>C/c.994T>G/p.S332A|chrXI:g.244374T>C/c.1000A>G/p.T334A|chrXI:g.244368A>C/c.1006T>G/p.S336A +YKL126W YPK1 8254 ypk1-A221E A221E amino_acid_mutation PMID:36870416 A221E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.206368C>A/c.662C>A/p.A221E +YKL126W YPK1 8256 ypk1-K376A K376A amino_acid_mutation PMID:10825204,PMID:15820214 K376A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.206832_206833delAAinsGC/c.1126_1127delAAinsGC/p.K376A +YKL126W YPK1 8257 ypk1-K376R K376R amino_acid_mutation PMID:10825204,PMID:20516150 K376R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.206833A>G/c.1127A>G/p.K376R +YKL126W YPK1 8258 ypk1-S51A,S71A S51A, S71A amino_acid_mutation PMID:19966303,PMID:37379203 S51A|S71A False S51A,S71A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.205857T>G/c.151T>G/p.S51A|chrXI:g.205917T>G/c.211T>G/p.S71A +YKL126W YPK1 8260 ypk1-S644A,T662A S644A, T662A amino_acid_mutation PMID:15470109,PMID:19966303,PMID:28739659,PMID:37379203 S644A|T662A False S644A,T662A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.207428T>G/c.1930T>G/p.S644A|chrXI:g.207690A>G/c.1984A>G/p.T662A +YKL126W YPK1 8262 ypk1-T504A T504A amino_acid_mutation PMID:15470109,PMID:19966303,PMID:37379203 T504A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.207216A>G/c.1510A>G/p.T504A +YKL130C SHE2 8272 she2-M5A W215A, I218A, L219A, K222A, L223A amino_acid_mutation PMID:19244342 W215A|I218A|L219A|K222A|L223A False W215A,I218A,L219A,K222A,L223A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195385_195386delTGinsGC/c.643_644delTGinsGC/p.W215A|chrXI:g.195376_195377delATinsGC/c.652_653delATinsGC/p.I218A|chrXI:g.195373_195374delTTinsGC/c.655_656delTTinsGC/p.L219A|chrXI:g.195364_195365delAAinsGC/c.664_665delAAinsGC/p.K222A|chrXI:g.195361_195362delCTinsGC/c.667_668delCTinsGC/p.L223A +YKL130C SHE2 8273 she2-S101A S101A amino_acid_mutation PMID:36921931 S101A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195728A>C/c.301T>G/p.S101A +YKL130C SHE2 8274 she2-S101A,T109A S101A, T109A amino_acid_mutation PMID:36921931 S101A|T109A False S101A,T109A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195728A>C/c.301T>G/p.S101A|chrXI:g.195704T>C/c.325A>G/p.T109A +YKL130C SHE2 8275 she2-S101D S101D amino_acid_mutation PMID:36921931 S101D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195726_195728delTCAinsGAC/c.301_303delTCAinsGAC/p.S101D +YKL130C SHE2 8276 she2-S166D S166D amino_acid_mutation PMID:36921931 S166D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195532_195533delAGinsGA/c.496_497delAGinsGA/p.S166D +YKL130C SHE2 8277 she2-S217A S217A amino_acid_mutation PMID:36921931 S217A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195380A>C/c.649T>G/p.S217A +YKL130C SHE2 8278 she2-S217A,S224A S217A, S224A amino_acid_mutation PMID:36921931 S217A|S224A False S217A,S224A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195380A>C/c.649T>G/p.S217A|chrXI:g.195358_195359delAGinsGC/c.670_671delAGinsGC/p.S224A +YKL130C SHE2 8279 she2-S217D S217D amino_acid_mutation PMID:36921931 S217D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195379_195380delTCinsGA/c.649_650delTCinsGA/p.S217D +YKL130C SHE2 8280 she2-S217D,S224D S217D, S224D amino_acid_mutation PMID:36921931 S217D|S224D False S217D,S224D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195379_195380delTCinsGA/c.649_650delTCinsGA/p.S217D|chrXI:g.195358_195359delAGinsGA/c.670_671delAGinsGA/p.S224D +YKL130C SHE2 8281 she2-S224A S224A amino_acid_mutation PMID:36921931 S224A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195358_195359delAGinsGC/c.670_671delAGinsGC/p.S224A +YKL130C SHE2 8282 she2-S224D S224D amino_acid_mutation PMID:36921931 S224D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195358_195359delAGinsGA/c.670_671delAGinsGA/p.S224D +YKL130C SHE2 8283 she2-S2A S2A amino_acid_mutation PMID:36921931 S2A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.196024_196025delAGinsGC/c.4_5delAGinsGC/p.S2A +YKL130C SHE2 8284 she2-S2D S2D amino_acid_mutation PMID:36921931 S2D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.196024_196025delAGinsGA/c.4_5delAGinsGA/p.S2D +YKL130C SHE2 8285 she2-S91A S91A amino_acid_mutation PMID:36921931 S91A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195758A>C/c.271T>G/p.S91A +YKL130C SHE2 8286 she2-S91D S91D amino_acid_mutation PMID:36921931 S91D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195756_195758delTCGinsGAC/c.271_273delTCGinsGAC/p.S91D +YKL130C SHE2 8287 she2-T109A T109A amino_acid_mutation PMID:36921931 T109A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195704T>C/c.325A>G/p.T109A +YKL130C SHE2 8288 she2-T109D T109D amino_acid_mutation PMID:36921931 T109D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195702_195704delACGinsGAC/c.325_327delACGinsGAC/p.T109D +YKL130C SHE2 8289 she2-T47A T47A amino_acid_mutation PMID:36921931 T47A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195890T>C/c.139A>G/p.T47A +YKL130C SHE2 8290 she2-T47D T47D amino_acid_mutation PMID:36921931 T47D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195888_195890delACGinsGAC/c.139_141delACGinsGAC/p.T47D +YKL130C SHE2 8291 she2-Y148F Y148F amino_acid_mutation PMID:36921931 Y148F False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195586T>A/c.443A>T/p.Y148F +YKL130C SHE2 8292 she2-Y65F Y65F amino_acid_mutation PMID:36921931 Y65F False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195835T>A/c.194A>T/p.Y65F +YKL130C SHE2 8293 she2-Y65F,Y148F Y65F, Y148F amino_acid_mutation PMID:36921931 Y65F|Y148F False Y65F,Y148F amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.195835T>A/c.194A>T/p.Y65F|chrXI:g.195586T>A/c.443A>T/p.Y148F +YKL145W RPT1 8306 rpt1-1 T257I amino_acid_mutation PMID:10503546,PMID:27708008,PMID:37364618,PMID:8247132 T257I False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.174982C>T/c.770C>T/p.T257I +YKL145W RPT1 8313 rpt1S K256S amino_acid_mutation PMID:21931558 K256S False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.174979_174980delAGinsGC/c.767_768delAGinsGC/p.K256S +YKL165C MCD4 8349 mcd4-174 G227E amino_acid_mutation PMID:10069808 G227E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.140012C>T/c.680G>A/p.G227E +YKL173W SNU114 8362 snu114-A470R A470R amino_acid_mutation PMID:32333448 A470R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.123924_123925delGCinsCG/c.1408_1409delGCinsCG/p.A470R +YKL173W SNU114 8364 snu114-G217E G217E amino_acid_mutation PMID:32333448 G217E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.123166G>A/c.650G>A/p.G217E +YKL173W SNU114 8365 snu114-H218R H218R amino_acid_mutation PMID:32333448 H218R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.123169A>G/c.653A>G/p.H218R +YKL173W SNU114 8367 snu114-T147I T147I amino_acid_mutation PMID:32333448 T147I False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.122956C>T/c.440C>T/p.T147I +YKL178C STE3 8406 ste3-V127I,A142P V127I, A142P amino_acid_mutation PMID:27150158 V127I|A142P False V127I,A142P amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.114249C>T/c.379G>A/p.V127I|chrXI:g.114204C>G/c.424G>C/p.A142P +YKL178C STE3 8407 ste3-V225D V225D amino_acid_mutation PMID:27150158 V225D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.113954A>T/c.674T>A/p.V225D +YKL182W FAS1 8415 fas1-R1834K R1834K amino_acid_mutation PMID:28281527,PMID:31867212 R1834K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.106171G>A/c.5501G>A/p.R1834K +YKL196C YKT6 8429 ykt6-1 S35G, L125Q, D139G, S182R, M185T amino_acid_mutation PMID:10591633 S35G|L125Q|D139G|S182R|M185T False S35G,L125Q,D139G,S182R,M185T amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.75432T>C/c.103A>G/p.S35G|chrXI:g.75161A>T/c.374T>A/p.L125Q|chrXI:g.75119T>C/c.416A>G/p.D139G|chrXI:g.74989A>C/c.546T>G/p.S182R|chrXI:g.74981A>G/c.554T>C/p.M185T +YKL203C TOR2 8433 TOR2-1 S1975R amino_acid_mutation PMID:1715094,PMID:35293776,PMID:8186460 S1975R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.57435A>C/c.5925T>G/p.S1975R|chrXI:g.57435A>C/c.5925T>G/p.S1975R|chrXI:g.57435A>C/c.5925T>G/p.S1975R|chrXI:g.57435A>C/c.5925T>G/p.S1975R|chrXI:g.57435A>C/c.5925T>G/p.S1975R +YKL203C TOR2 8434 TOR2-M2286T M2286T amino_acid_mutation PMID:29895620 M2286T False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.56503A>G/c.6857T>C/p.M2286T +YKL203C TOR2 8435 tor2-(drr2-1) S1975R amino_acid_mutation PMID:8163165 S1975R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.57435A>C/c.5925T>G/p.S1975R|chrXI:g.57435A>C/c.5925T>G/p.S1975R|chrXI:g.57435A>C/c.5925T>G/p.S1975R|chrXI:g.57435A>C/c.5925T>G/p.S1975R|chrXI:g.57435A>C/c.5925T>G/p.S1975R +YKL203C TOR2 8436 tor2-(drr2-13) S1975R amino_acid_mutation PMID:8163165 S1975R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.57435A>C/c.5925T>G/p.S1975R|chrXI:g.57435A>C/c.5925T>G/p.S1975R|chrXI:g.57435A>C/c.5925T>G/p.S1975R|chrXI:g.57435A>C/c.5925T>G/p.S1975R|chrXI:g.57435A>C/c.5925T>G/p.S1975R +YKL203C TOR2 8437 tor2-(drr2-36) S1975R amino_acid_mutation PMID:8163165 S1975R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.57435A>C/c.5925T>G/p.S1975R|chrXI:g.57435A>C/c.5925T>G/p.S1975R|chrXI:g.57435A>C/c.5925T>G/p.S1975R|chrXI:g.57435A>C/c.5925T>G/p.S1975R|chrXI:g.57435A>C/c.5925T>G/p.S1975R +YKL203C TOR2 8438 tor2-(drr2-38) S1975R amino_acid_mutation PMID:8163165 S1975R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.57435A>C/c.5925T>G/p.S1975R|chrXI:g.57435A>C/c.5925T>G/p.S1975R|chrXI:g.57435A>C/c.5925T>G/p.S1975R|chrXI:g.57435A>C/c.5925T>G/p.S1975R|chrXI:g.57435A>C/c.5925T>G/p.S1975R +YKL203C TOR2 8439 tor2-21 S233F amino_acid_mutation PMID:27708008,PMID:9475724 S233F False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.62662_62663delAGinsTT/c.697_698delAGinsTT/p.S233F +YKL207W EMC3 8454 emc3-K26L K26L amino_acid_mutation PMID:32494008 K26L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.48269_48270delAAinsCT/c.76_77delAAinsCT/p.K26L +YKL210W UBA1 8460 uba1-204 D318G, K401E, V502A, E523G, E534G, N630G, F680S, D936E amino_acid_mutation PMID:17360968,PMID:31759633,PMID:35294869,PMID:37331598 D318G|K401E|V502A|E523G|E534G|N630G|F680S|D936E False D318G,K401E,V502A,E523G,E534G,N630G,F680S,D936E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.40115A>G/c.953A>G/p.D318G|chrXI:g.40363A>G/c.1201A>G/p.K401E|chrXI:g.40667T>C/c.1505T>C/p.V502A|chrXI:g.40730A>G/c.1568A>G/p.E523G|chrXI:g.40763A>G/c.1601A>G/p.E534G|chrXI:g.41050_41051delAAinsGG/c.1888_1889delAAinsGG/p.N630G|chrXI:g.41201T>C/c.2039T>C/p.F680S|chrXI:g.41970T>G/c.2808T>G/p.D936E +YKL212W SAC1 8471 sac1-23 Y111C, V190A, K223E, D336A, F366S, E416G amino_acid_mutation PMID:11514624 Y111C|V190A|K223E|D336A|F366S|E416G False Y111C,V190A,K223E,D336A,F366S,E416G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.34874A>G/c.332A>G/p.Y111C|chrXI:g.35111T>C/c.569T>C/p.V190A|chrXI:g.35209A>G/c.667A>G/p.K223E|chrXI:g.35549A>C/c.1007A>C/p.D336A|chrXI:g.35639T>C/c.1097T>C/p.F366S|chrXI:g.35789A>G/c.1247A>G/p.E416G +YKL212W SAC1 8476 sac1-C392S C392S amino_acid_mutation PMID:20389282,PMID:32693712 C392S False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.35716T>A/c.1174T>A/p.C392S +YKR001C VPS1 8499 vps1-G436D G436D amino_acid_mutation PMID:30087125 G436D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.441416C>T/c.1307G>A/p.G436D +YKR001C VPS1 8504 vps1-K42A K42A amino_acid_mutation PMID:30087125,PMID:31981262 K42A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.442598_442599delAAinsGC/c.124_125delAAinsGC/p.K42A +YKR007W MEH1 8523 meh1-(gse2-C7S-C8S) C7S, C8S amino_acid_mutation PMID:16732272 C7S|C8S False C7S,C8S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.451452T>A/c.19T>A/p.C7S|chrXI:g.451455T>A/c.22T>A/p.C8S +YKR007W MEH1 8524 meh1-(gse2-G2A) G2A amino_acid_mutation PMID:16732272 G2A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.451438G>C/c.5G>C/p.G2A +YKR038C KAE1 8562 kae1-C342M C342M amino_acid_mutation PMID:36416748 C342M False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512134_512136delTGTinsATG/c.1024_1026delTGTinsATG/p.C342M +YKR038C KAE1 8563 kae1-D236R D236R amino_acid_mutation PMID:19172740 D236R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512453_512454delGAinsCG/c.706_707delGAinsCG/p.D236R +YKR038C KAE1 8564 kae1-D344A D344A amino_acid_mutation PMID:18951093 D344A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512147T>G/c.1031A>C/p.D344A +YKR038C KAE1 8565 kae1-D344L D344L amino_acid_mutation PMID:36416748 D344L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512147_512148delGAinsCT/c.1030_1031delGAinsCT/p.D344L +YKR038C KAE1 8566 kae1-E213R E213R amino_acid_mutation PMID:18951093 E213R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512522_512523delGAinsAG/c.637_638delGAinsAG/p.E213R +YKR038C KAE1 8567 kae1-E292R E292R amino_acid_mutation PMID:19172740 E292R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512285_512286delGAinsAG/c.874_875delGAinsAG/p.E292R +YKR038C KAE1 8568 kae1-E292R,E295K E292R, E295K amino_acid_mutation PMID:19172740 E292R|E295K False E292R,E295K amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512285_512286delGAinsAG/c.874_875delGAinsAG/p.E292R|chrXI:g.512277C>T/c.883G>A/p.E295K +YKR038C KAE1 8569 kae1-E295K E295K amino_acid_mutation PMID:19172740 E295K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512277C>T/c.883G>A/p.E295K +YKR038C KAE1 8570 kae1-G165E G165E amino_acid_mutation PMID:36416748 G165E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512665_512666delGTinsAG/c.494_495delGTinsAG/p.G165E +YKR038C KAE1 8571 kae1-G166E G166E amino_acid_mutation PMID:36416748 G166E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512663C>T/c.497G>A/p.G166E +YKR038C KAE1 8572 kae1-G190E G190E amino_acid_mutation PMID:18951093 G190E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512590_512591delGTinsAG/c.569_570delGTinsAG/p.G190E +YKR038C KAE1 8573 kae1-G190K G190K amino_acid_mutation PMID:18951093 G190K False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512590_512592delGGTinsAAG/c.568_570delGGTinsAAG/p.G190K +YKR038C KAE1 8574 kae1-G310E G310E amino_acid_mutation PMID:36416748 G310E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512230_512231delGCinsAG/c.929_930delGCinsAG/p.G310E +YKR038C KAE1 8575 kae1-H141A H141A amino_acid_mutation PMID:18951093 H141A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512738_512739delCAinsGC/c.421_422delCAinsGC/p.H141A +YKR038C KAE1 8577 kae1-H145A H145A amino_acid_mutation PMID:18951093 H145A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512726_512727delCAinsGC/c.433_434delCAinsGC/p.H145A +YKR038C KAE1 8578 kae1-I123R I123R amino_acid_mutation PMID:18951093 I123R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512791_512792delTCinsGG/c.368_369delTCinsGG/p.I123R +YKR038C KAE1 8579 kae1-I308D I308D amino_acid_mutation PMID:36416748 I308D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512237_512238delATinsGA/c.922_923delATinsGA/p.I308D +YKR038C KAE1 8580 kae1-I308E I308E amino_acid_mutation PMID:36416748 I308E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512236_512238delATCinsGAG/c.922_924delATCinsGAG/p.I308E +YKR038C KAE1 8581 kae1-I308N I308N amino_acid_mutation PMID:36416748 I308N False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512237A>T/c.923T>A/p.I308N +YKR038C KAE1 8582 kae1-I308Q I308Q amino_acid_mutation PMID:36416748 I308Q False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512236_512238delATCinsCAA/c.922_924delATCinsCAA/p.I308Q +YKR038C KAE1 8583 kae1-K27A K27A amino_acid_mutation PMID:18951093,PMID:36416748 K27A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.513080_513081delAAinsGC/c.79_80delAAinsGC/p.K27A +YKR038C KAE1 8584 kae1-K27D K27D amino_acid_mutation PMID:36416748 K27D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.513079_513081delAAAinsGAC/c.79_81delAAAinsGAC/p.K27D +YKR038C KAE1 8585 kae1-K27E K27E amino_acid_mutation PMID:36416748 K27E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.513081T>C/c.79A>G/p.K27E +YKR038C KAE1 8586 kae1-K27L K27L amino_acid_mutation PMID:36416748 K27L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.513080_513081delAAinsCT/c.79_80delAAinsCT/p.K27L +YKR038C KAE1 8587 kae1-K27N K27N amino_acid_mutation PMID:36416748 K27N False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.513079T>G/c.81A>C/p.K27N +YKR038C KAE1 8588 kae1-K27Q K27Q amino_acid_mutation PMID:36416748 K27Q False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.513081T>G/c.79A>C/p.K27Q +YKR038C KAE1 8589 kae1-K27R K27R amino_acid_mutation PMID:36416748 K27R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.513080T>C/c.80A>G/p.K27R +YKR038C KAE1 8590 kae1-N167A N167A amino_acid_mutation PMID:36416748 N167A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512660_512661delAAinsGC/c.499_500delAAinsGC/p.N167A +YKR038C KAE1 8591 kae1-N315Y N315Y amino_acid_mutation PMID:18951093 N315Y False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512217T>A/c.943A>T/p.N315Y +YKR038C KAE1 8592 kae1-N345L N345L amino_acid_mutation PMID:36416748 N345L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512144_512145delAAinsCT/c.1033_1034delAAinsCT/p.N345L +YKR038C KAE1 8593 kae1-Q319A Q319A amino_acid_mutation PMID:36416748 Q319A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512204_512205delCAinsGC/c.955_956delCAinsGC/p.Q319A +YKR038C KAE1 8594 kae1-R126A R126A amino_acid_mutation PMID:18951093 R126A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512783_512784delAGinsGC/c.376_377delAGinsGC/p.R126A +YKR038C KAE1 8595 kae1-R195D R195D amino_acid_mutation PMID:33277478 R195D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512575_512577delAGAinsGAC/c.583_585delAGAinsGAC/p.R195D +YKR038C KAE1 8596 kae1-R198D R198D amino_acid_mutation PMID:33277478 R198D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512566_512568delAGAinsGAC/c.592_594delAGAinsGAC/p.R198D +YKR038C KAE1 8597 kae1-R198L R198L amino_acid_mutation PMID:36416748 R198L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512567_512568delAGinsCT/c.592_593delAGinsCT/p.R198L +YKR038C KAE1 8599 kae1-R59A R59A amino_acid_mutation PMID:36416748 R59A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512984_512985delAGinsGC/c.175_176delAGinsGC/p.R59A +YKR038C KAE1 8600 kae1-S164A S164A amino_acid_mutation PMID:36416748 S164A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512669_512670delAGinsGC/c.490_491delAGinsGC/p.S164A +YKR038C KAE1 8601 kae1-T168L T168L amino_acid_mutation PMID:36416748 T168L False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512657_512658delACinsCT/c.502_503delACinsCT/p.T168L +YKR038C KAE1 8602 kae1-T168R T168R amino_acid_mutation PMID:36416748 T168R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512657G>C/c.503C>G/p.T168R +YKR038C KAE1 8603 kae1-T369A T369A amino_acid_mutation PMID:18951093 T369A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512055T>C/c.1105A>G/p.T369A +YKR038C KAE1 8604 kae1-T377A T377A amino_acid_mutation PMID:18951093 T377A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512031T>C/c.1129A>G/p.T377A +YKR038C KAE1 8605 kae1-T377E T377E amino_acid_mutation PMID:18951093 T377E False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512029_512031delACCinsGAG/c.1129_1131delACCinsGAG/p.T377E +YKR038C KAE1 8606 kae1-V163D V163D amino_acid_mutation PMID:36416748 V163D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512671_512672delTAinsAC/c.488_489delTAinsAC/p.V163D +YKR038C KAE1 8607 kae1-V309D V309D amino_acid_mutation PMID:36416748 V309D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512233_512234delTAinsAC/c.926_927delTAinsAC/p.V309D +YKR038C KAE1 8608 kae1-V309N V309N amino_acid_mutation PMID:36416748 V309N False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512233_512235delGTAinsAAC/c.925_927delGTAinsAAC/p.V309N +YKR038C KAE1 8609 kae1-V309Q V309Q amino_acid_mutation PMID:36416748 V309Q False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512234_512235delGTinsCA/c.925_926delGTinsCA/p.V309Q +YKR038C KAE1 8610 kae1-V312D V312D amino_acid_mutation PMID:36416748 V312D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512243A>T/c.935T>A/p.V312D +YKR038C KAE1 8611 kae1-Y162F Y162F amino_acid_mutation PMID:36416748 Y162F False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.512675T>A/c.485A>T/p.Y162F +YKR071C DRE2 8685 dre2-137 K26stop partial_amino_acid_deletion PMID:18625724 K26stop False K26* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrXI:g.575905T>A/c.76A>T/p.K26* +YKR086W PRP16 8731 prp16-302 R456K,G691R amino_acid_mutation PMID:16103217,PMID:17403781,PMID:33705709 R456K|G691R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.601223G>A/c.1367G>A/p.R456K|chrXI:g.601927G>A/c.2071G>A/p.G691R +YKR089C TGL4 8738 tgl4-S/A S890A amino_acid_mutation PMID:19150427 S890A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.605698A>C/c.2668T>G/p.S890A +YKR089C TGL4 8739 tgl4-ST/A S890A, T675A amino_acid_mutation PMID:19150427 S890A|T675A False S890A,T675A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.605698A>C/c.2668T>G/p.S890A|chrXI:g.606343T>C/c.2023A>G/p.T675A +YKR089C TGL4 8740 tgl4-T/A T675A amino_acid_mutation PMID:19150427 T675A False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.606343T>C/c.2023A>G/p.T675A +YKR091W SRL3 8741 srl3-(whi7-NP) T5A, T14A, S27A, T40A, S56A, S62A, T84A, T87A, S98A, T100A, S105A, S212A amino_acid_mutation PMID:24374311 T5A|T14A|S27A|T40A|S56A|S62A|T84A|T87A|S98A|T100A|S105A|S212A False T5A,T14A,S27A,T40A,S56A,S62A,T84A,T87A,S98A,T100A,S105A,S212A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.611537A>G/c.13A>G/p.T5A|chrXI:g.611564A>G/c.40A>G/p.T14A|chrXI:g.611603T>G/c.79T>G/p.S27A|chrXI:g.611642A>G/c.118A>G/p.T40A|chrXI:g.611690T>G/c.166T>G/p.S56A|chrXI:g.611708T>G/c.184T>G/p.S62A|chrXI:g.611774A>G/c.250A>G/p.T84A|chrXI:g.611749A>G/c.259A>G/p.T87A|chrXI:g.611816T>G/c.292T>G/p.S98A|chrXI:g.611822A>G/c.298A>G/p.T100A|chrXI:g.611837T>G/c.313T>G/p.S105A|chrXI:g.612158T>G/c.634T>G/p.S212A +YKR095W-A PCC1 8748 pcc1-A83R A83R amino_acid_mutation PMID:18951093 A83R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.626185_626186delGCinsCG/c.247_248delGCinsCG/p.A83R +YKR095W-A PCC1 8749 pcc1-D35R D35R amino_acid_mutation PMID:18951093 D35R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.626041_626042delGAinsCG/c.103_104delGAinsCG/p.D35R +YKR095W-A PCC1 8750 pcc1-R67D R67D amino_acid_mutation PMID:33277478 R67D False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.626137_626139delCGAinsGAC/c.199_201delCGAinsGAC/p.R67D +YKR095W-A PCC1 8751 pcc1-T79R T79R amino_acid_mutation PMID:18951093 T79R False amino_acid_mutation:single_aa amino_acid_mutation chrXI:g.625962_625963delCTinsGG/c.236_237delCTinsGG/p.T79R +YLL001W DNM1 8761 DNM1-113 G398S amino_acid_mutation PMID:10562274,PMID:11169859 G398S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.149081G>A/c.1192G>A/p.G398S +YLL001W DNM1 8763 DNM1-S42N S42N amino_acid_mutation PMID:9786946 S42N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.148013_148014delTCinsAA/c.124_125delTCinsAA/p.S42N +YLL001W DNM1 8764 DNM1-T62A T62A amino_acid_mutation PMID:9786946 T62A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.148073A>G/c.184A>G/p.T62A +YLL001W DNM1 8773 dnm1-A430D A430D amino_acid_mutation PMID:34157431 A430D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.149178_149179delCGinsAC/c.1289_1290delCGinsAC/p.A430D +YLL001W DNM1 8774 dnm1-C481F C481F amino_acid_mutation PMID:34157431 C481F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.149331G>T/c.1442G>T/p.C481F +YLL001W DNM1 8775 dnm1-G397D G397D amino_acid_mutation PMID:34157431 G397D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.149079G>A/c.1190G>A/p.G397D +YLL001W DNM1 8776 dnm1-G436D G436D amino_acid_mutation PMID:21927001 G436D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.149196G>A/c.1307G>A/p.G436D +YLL001W DNM1 8777 dnm1-K41A K41A amino_acid_mutation PMID:27328748,PMID:31981262,PMID:9786946 K41A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.148010_148011delAAinsGC/c.121_122delAAinsGC/p.K41A +YLL001W DNM1 8778 dnm1-R438C R438C amino_acid_mutation PMID:34157431 R438C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.149201C>T/c.1312C>T/p.R438C +YLL001W DNM1 8779 dnm1-S39G S39G amino_acid_mutation PMID:27328748 S39G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.148004_148005delTCinsGG/c.115_116delTCinsGG/p.S39G +YLL003W SFI1 8785 sfi1-3 H207Q, F208C, Y247C amino_acid_mutation PMID:14504268,PMID:17392514,PMID:23962978,PMID:27708008 H207Q|F208C|Y247C False H207Q,F208C,Y247C amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.143821T>A/c.621T>A/p.H207Q|chrXII:g.143823T>G/c.623T>G/p.F208C|chrXII:g.143940A>G/c.740A>G/p.Y247C +YLL003W SFI1 8787 sfi1-7 N218D, D242A amino_acid_mutation PMID:14504268,PMID:23962978 N218D|D242A False N218D,D242A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.143852A>G/c.652A>G/p.N218D|chrXII:g.143925A>C/c.725A>C/p.D242A +YLL018C-A COX19 8809 cox19-1 R63T amino_acid_mutation PMID:12171940 R63T False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.108785C>G/c.188G>C/p.R63T +YLL021W SPA2 8821 spa2-SDR1-4A F56A, L59A, R69A, R70A amino_acid_mutation PMID:35134079 F56A|L59A|R69A|R70A False F56A,L59A,R69A,R70A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.101112_101113delTTinsGC/c.166_167delTTinsGC/p.F56A|chrXII:g.101121_101122delCTinsGC/c.175_176delCTinsGC/p.L59A|chrXII:g.101151_101152delAGinsGC/c.205_206delAGinsGC/p.R69A|chrXII:g.101154_101155delAGinsGC/c.208_209delAGinsGC/p.R70A +YLL021W SPA2 8822 spa2-SDR12-4A F56A, L59A, R69A, R70A, F106A, L109A, R119A, R120A amino_acid_mutation PMID:35134079 F56A|L59A|R69A|R70A|F106A|L109A|R119A|R120A False F56A,L59A,R69A,R70A,F106A,L109A,R119A,R120A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.101112_101113delTTinsGC/c.166_167delTTinsGC/p.F56A|chrXII:g.101121_101122delCTinsGC/c.175_176delCTinsGC/p.L59A|chrXII:g.101151_101152delAGinsGC/c.205_206delAGinsGC/p.R69A|chrXII:g.101154_101155delAGinsGC/c.208_209delAGinsGC/p.R70A|chrXII:g.101262_101263delTTinsGC/c.316_317delTTinsGC/p.F106A|chrXII:g.101271_101272delTTinsGC/c.325_326delTTinsGC/p.L109A|chrXII:g.101301_101302delAGinsGC/c.355_356delAGinsGC/p.R119A|chrXII:g.101304_101305delAGinsGC/c.358_359delAGinsGC/p.R120A +YLL021W SPA2 8823 spa2-SDR2-4A F106A, L109A, R119A, R120A amino_acid_mutation PMID:35134079 F106A|L109A|R119A|R120A False F106A,L109A,R119A,R120A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.101262_101263delTTinsGC/c.316_317delTTinsGC/p.F106A|chrXII:g.101271_101272delTTinsGC/c.325_326delTTinsGC/p.L109A|chrXII:g.101301_101302delAGinsGC/c.355_356delAGinsGC/p.R119A|chrXII:g.101304_101305delAGinsGC/c.358_359delAGinsGC/p.R120A +YLL024C SSA2 8824 ssa2-10 P395L amino_acid_mutation PMID:14755636 P395L False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.96302G>A/c.1184C>T/p.P395L +YLL024C SSA2 8825 ssa2-21 L483W amino_acid_mutation PMID:18562668 L483W False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.96038A>C/c.1448T>G/p.L483W +YLL026W HSP104 8826 HSP104-KT K218T, K620T amino_acid_mutation PMID:19219034,PMID:33175887 K218T|K620T False K218T,K620T amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.89275A>C/c.653A>C/p.K218T|chrXII:g.90481A>C/c.1859A>C/p.K620T +YLL040C VPS13 9035 vps13-mut1 L64K, I80E, L87E, I162R, L185E, A192E, L217R, V269E, L275D, M293K, L300R amino_acid_mutation PMID:32182622 L64K|I80E|L87E|I162R|L185E|A192E|L217R|V269E|L275D|M293K|L300R False L64K,I80E,L87E,I162R,L185E,A192E,L217R,V269E,L275D,M293K,L300R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.63455_63456delTTinsAA/c.190_191delTTinsAA/p.L64K|chrXII:g.63406_63408delATCinsGAG/c.238_240delATCinsGAG/p.I80E|chrXII:g.63386_63387delTTinsGA/c.259_260delTTinsGA/p.L87E|chrXII:g.63161A>C/c.485T>G/p.I162R|chrXII:g.63092_63093delTTinsGA/c.553_554delTTinsGA/p.L185E|chrXII:g.63070_63071delCTinsAG/c.575_576delCTinsAG/p.A192E|chrXII:g.62996_62997delTTinsAG/c.649_650delTTinsAG/p.L217R|chrXII:g.62839_62840delTTinsAG/c.806_807delTTinsAG/p.V269E|chrXII:g.62822_62823delCTinsGA/c.823_824delCTinsGA/p.L275D|chrXII:g.62768A>T/c.878T>A/p.M293K|chrXII:g.62747_62748delTTinsAG/c.898_899delTTinsAG/p.L300R +YLL040C VPS13 9036 vps13-mut2 V690D, L692R, L694E, I715K, A717D, M720K, I722D, I761R, I768E, F790D, M796D, L798R, V802E, I816R, G820D, L827E amino_acid_mutation PMID:32182622 V690D|L692R|L694E|I715K|A717D|M720K|I722D|I761R|I768E|F790D|M796D|L798R|V802E|I816R|G820D|L827E False V690D,L692R,L694E,I715K,A717D,M720K,I722D,I761R,I768E,F790D,M796D,L798R,V802E,I816R,G820D,L827E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.61576_61577delTAinsAC/c.2069_2070delTAinsAC/p.V690D|chrXII:g.61571_61572delTTinsAG/c.2074_2075delTTinsAG/p.L692R|chrXII:g.61565_61566delTTinsGA/c.2080_2081delTTinsGA/p.L694E|chrXII:g.61501_61502delTTinsAG/c.2144_2145delTTinsAG/p.I715K|chrXII:g.61496G>T/c.2150C>A/p.A717D|chrXII:g.61487A>T/c.2159T>A/p.M720K|chrXII:g.61480_61482delATAinsGAC/c.2164_2166delATAinsGAC/p.I722D|chrXII:g.61363_61364delTTinsGG/c.2282_2283delTTinsGG/p.I761R|chrXII:g.61343_61344delATinsGA/c.2302_2303delATinsGA/p.I768E|chrXII:g.61277_61278delTTinsGA/c.2368_2369delTTinsGA/p.F790D|chrXII:g.61258_61260delATGinsGAC/c.2386_2388delATGinsGAC/p.M796D|chrXII:g.61253_61254delTTinsAG/c.2392_2393delTTinsAG/p.L798R|chrXII:g.61241A>T/c.2405T>A/p.V802E|chrXII:g.61199A>C/c.2447T>G/p.I816R|chrXII:g.61187C>T/c.2459G>A/p.G820D|chrXII:g.61165_61167delCTTinsGAG/c.2479_2481delCTTinsGAG/p.L827E +YLL043W FPS1 9042 fps1-S181A,S185A S181A, S185A amino_acid_mutation PMID:26274562,PMID:37379203 S181A|S185A False S181A,S185A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.50478T>G/c.541T>G/p.S181A|chrXII:g.50490_50491delAGinsGC/c.553_554delAGinsGC/p.S185A +YLL043W FPS1 9043 fps1-S181A,S185A,S570A S181A, S185A, S570A amino_acid_mutation PMID:26274562,PMID:37379203 S181A|S185A|S570A False S181A,S185A,S570A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.50478T>G/c.541T>G/p.S181A|chrXII:g.50490_50491delAGinsGC/c.553_554delAGinsGC/p.S185A|chrXII:g.51645T>G/c.1708T>G/p.S570A +YLL043W FPS1 9044 fps1-S537A S537A amino_acid_mutation PMID:17620418,PMID:27607883,PMID:37379203 S537A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.51546T>G/c.1609T>G/p.S537A +YLL043W FPS1 9045 fps1-S537E S537E amino_acid_mutation PMID:17620418,PMID:27607883,PMID:37379203 S537E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.51546_51548delTCTinsGAG/c.1609_1611delTCTinsGAG/p.S537E +YLL043W FPS1 9046 fps1-S570A S570A amino_acid_mutation PMID:26274562,PMID:37379203 S570A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.51645T>G/c.1708T>G/p.S570A +YLL043W FPS1 9047 fps1-T231A T231A amino_acid_mutation PMID:12486125,PMID:16885417,PMID:37379203 T231A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.50628A>G/c.691A>G/p.T231A +YLL043W FPS1 9048 fps1-T231A,S537A T231A,S537A amino_acid_mutation PMID:17620418,PMID:27607883 T231A|S537A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.50628A>G/c.691A>G/p.T231A|chrXII:g.51546T>G/c.1609T>G/p.S537A +YLL043W FPS1 9049 fps1-T231E,S537E T231E, S537E amino_acid_mutation PMID:17620418,PMID:27607883 T231E|S537E False T231E,S537E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.50628_50629delACinsGA/c.691_692delACinsGA/p.T231E|chrXII:g.51546_51548delTCTinsGAG/c.1609_1611delTCTinsGAG/p.S537E +YLR005W SSL1 9075 ssl1-1 G265R amino_acid_mutation PMID:1340463,PMID:7891722 G265R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.160841G>A/c.793G>A/p.G265R +YLR007W NSE1 9084 nse1-101 G175E, S207T, G332D amino_acid_mutation PMID:17923688 G175E|S207T|G332D False G175E,S207T,G332D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.164915G>A/c.524G>A/p.G175E|chrXII:g.165011G>C/c.620G>C/p.S207T|chrXII:g.165386G>A/c.995G>A/p.G332D +YLR007W NSE1 9090 nse1-C274A C274A amino_acid_mutation PMID:17923688 C274A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.165211_165212delTGinsGC/c.820_821delTGinsGC/p.C274A +YLR008C PAM18 9099 pam18L/W L150W amino_acid_mutation PMID:16105940 L150W False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.165635A>C/c.449T>G/p.L150W +YLR010C TEN1 9103 ten1-105 P38S, C54R, I69T, E83G, F126L amino_acid_mutation PMID:19752213 P38S|C54R|I69T|E83G|F126L False P38S,C54R,I69T,E83G,F126L amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.167691G>A/c.112C>T/p.P38S|chrXII:g.167643A>G/c.160T>C/p.C54R|chrXII:g.167597A>G/c.206T>C/p.I69T|chrXII:g.167555T>C/c.248A>G/p.E83G|chrXII:g.167427A>G/c.376T>C/p.F126L +YLR010C TEN1 9105 ten1-16 F154I amino_acid_mutation PMID:11230140 F154I False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.167343A>T/c.460T>A/p.F154I +YLR010C TEN1 9106 ten1-3 Q107R amino_acid_mutation PMID:11230140 Q107R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.167483T>C/c.320A>G/p.Q107R +YLR010C TEN1 9107 ten1-31 E58K, L76P, E91V, V115A amino_acid_mutation PMID:11230140 E58K|L76P|E91V|V115A False E58K,L76P,E91V,V115A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.167631C>T/c.172G>A/p.E58K|chrXII:g.167576A>G/c.227T>C/p.L76P|chrXII:g.167531T>A/c.272A>T/p.E91V|chrXII:g.167459A>G/c.344T>C/p.V115A +YLR010C TEN1 9108 ten1-6 K12E amino_acid_mutation PMID:11230140 K12E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.167769T>C/c.34A>G/p.K12E +YLR027C AAT2 9122 aat2-K255E K255E amino_acid_mutation PMID:35621265 K255E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.197323T>C/c.763A>G/p.K255E +YLR027C AAT2 9123 aat2-R387E R387E amino_acid_mutation PMID:35621265 R387E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.196926_196927delAGinsGA/c.1159_1160delAGinsGA/p.R387E +YLR029C RPL15A 9126 rpl15a-M48 A166T amino_acid_mutation PMID:19184027 A166T False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.202095C>T/c.496G>A/p.A166T +YLR032W RAD5 9134 rad5-CCAA C914A C917A amino_acid_mutation PMID:34990655 C914A|C917A False C914A,C917A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.207730_207731delTGinsGC/c.2740_2741delTGinsGC/p.C914A|chrXII:g.207739_207740delTGinsGC/c.2749_2750delTGinsGC/p.C917A +YLR032W RAD5 9140 rad5-IA I916A amino_acid_mutation PMID:34990655 I916A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.207736_207737delATinsGC/c.2746_2747delATinsGC/p.I916A +YLR032W RAD5 9141 rad5-KA K538A amino_acid_mutation PMID:34990655 K538A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.206602_206603delAAinsGC/c.1612_1613delAAinsGC/p.K538A +YLR035C MLH2 9152 mlh2-P332L P332L amino_acid_mutation PMID:33303966 P332L False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.213462G>A/c.995C>T/p.P332L +YLR035C MLH2 9153 mlh2-S16P S16P amino_acid_mutation PMID:33303966 S16P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.214411A>G/c.46T>C/p.S16P +YLR035C MLH2 9154 mlh2-S16P-D178N S16P, D178N amino_acid_mutation PMID:33303966 S16P|D178N False S16P,D178N amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.214411A>G/c.46T>C/p.S16P|chrXII:g.213925C>T/c.532G>A/p.D178N +YLR035C MLH2 9155 mlh2-S16P-D219G S16P, D219G amino_acid_mutation PMID:33303966 S16P|D219G False S16P,D219G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.214411A>G/c.46T>C/p.S16P|chrXII:g.213801T>C/c.656A>G/p.D219G +YLR035C MLH2 9156 mlh2-S16P-D45N S16P, D45N amino_acid_mutation PMID:33303966 S16P|D45N False S16P,D45N amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.214411A>G/c.46T>C/p.S16P|chrXII:g.214324C>T/c.133G>A/p.D45N +YLR035C MLH2 9157 mlh2-S16P-E216G S16P, E216G amino_acid_mutation PMID:33303966 S16P|E216G False S16P,E216G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.214411A>G/c.46T>C/p.S16P|chrXII:g.213810T>C/c.647A>G/p.E216G +YLR035C MLH2 9158 mlh2-S16P-E99K S16P, E99K amino_acid_mutation PMID:33303966 S16P|E99K False S16P,E99K amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.214411A>G/c.46T>C/p.S16P|chrXII:g.214162C>T/c.295G>A/p.E99K +YLR035C MLH2 9159 mlh2-S16P-F177L S16P, F177L amino_acid_mutation PMID:33303966 S16P|F177L False S16P,F177L amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.214411A>G/c.46T>C/p.S16P|chrXII:g.213950A>G/c.529T>C/p.F177L +YLR035C MLH2 9160 mlh2-S16P-T217A S16P, T217A amino_acid_mutation PMID:33303966 S16P|T217A False S16P,T217A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.214411A>G/c.46T>C/p.S16P|chrXII:g.213808T>C/c.649A>G/p.T217A +YLR035C MLH2 9161 mlh2-S17P S17P amino_acid_mutation PMID:33303966 S17P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.214407_214408delAGinsCC/c.49_50delAGinsCC/p.S17P +YLR035C MLH2 9162 mlh2-S18P S18P amino_acid_mutation PMID:33303966 S18P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.214405A>G/c.52T>C/p.S18P +YLR035C MLH2 9163 mlh2-V15P V15P amino_acid_mutation PMID:33303966 V15P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.214413_214414delGTinsCC/c.43_44delGTinsCC/p.V15P +YLR044C PDC1 9168 pdc1-8 D291N amino_acid_mutation PMID:10231381 D291N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.233211C>T/c.871G>A/p.D291N +YLR045C STU2 9176 stu2-AAA L869A, I873A, M876A amino_acid_mutation PMID:33591274 L869A|I873A|M876A False L869A,I873A,M876A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.235098_235099delCTinsGC/c.2605_2606delCTinsGC/p.L869A|chrXII:g.235086_235087delATinsGC/c.2617_2618delATinsGC/p.I873A|chrXII:g.235077_235078delATinsGC/c.2626_2627delATinsGC/p.M876A +YLR045C STU2 9177 stu2-EEE L869E, I873E, M876E amino_acid_mutation PMID:33591274 L869E|I873E|M876E False L869E,I873E,M876E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.235098_235099delCTinsGA/c.2605_2606delCTinsGA/p.L869E|chrXII:g.235085_235087delATTinsGAG/c.2617_2619delATTinsGAG/p.I873E|chrXII:g.235077_235078delATinsGA/c.2626_2627delATinsGA/p.M876E +YLR070C XYL2 9206 xyl2-(XDHC4) D99C, S102C, M105C, D113C amino_acid_mutation PMID:36732376 D99C|S102C|M105C|D113C False D99C,S102C,M105C,D113C amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.274916_274917delGAinsTG/c.295_296delGAinsTG/p.D99C|chrXII:g.274906_274907delCAinsGT/c.305_306delCAinsGT/p.S102C|chrXII:g.274897_274899delATGinsTGT/c.313_315delATGinsTGT/p.M105C|chrXII:g.274874_274875delGAinsTG/c.337_338delGAinsTG/p.D113C +YLR092W SUL2 9238 sul2-A470T A470T amino_acid_mutation PMID:33560525 A470T False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.324951G>A/c.1408G>A/p.A470T +YLR103C CDC45 9284 cdc45-m268 R487E, K488E, K520E, R540E amino_acid_mutation PMID:23382391 R487E|K488E|K520E|R540E False R487E,K488E,K520E,R540E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.344482_344483delAGinsGA/c.1459_1460delAGinsGA/p.R487E|chrXII:g.344480T>C/c.1462A>G/p.K488E|chrXII:g.344384T>C/c.1558A>G/p.K520E|chrXII:g.344323_344324delAGinsGA/c.1618_1619delAGinsGA/p.R540E +YLR113W HOG1 9297 hog1-3CS C38S, C156S, C205S amino_acid_mutation PMID:35139143 C38S|C156S|C205S False C38S,C156S,C205S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.371731T>A/c.112T>A/p.C38S|chrXII:g.372085T>A/c.466T>A/p.C156S|chrXII:g.372232T>A/c.613T>A/p.C205S +YLR113W HOG1 9298 hog1-4CS C38S, C156S, C205S, C161S amino_acid_mutation PMID:35139143 C38S|C156S|C205S|C161S False C38S,C156S,C205S,C161S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.371731T>A/c.112T>A/p.C38S|chrXII:g.372085T>A/c.466T>A/p.C156S|chrXII:g.372232T>A/c.613T>A/p.C205S|chrXII:g.372100T>A/c.481T>A/p.C161S +YLR128W DCN1 9328 dcn1-D226A D226A amino_acid_mutation PMID:18206966 D226A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.399300A>C/c.677A>C/p.D226A +YLR182W SWI6 9401 swi6-AALA K163A, K164A, K166A amino_acid_mutation PMID:8590795 K163A|K164A|K166A False K163A,K164A,K166A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.518426_518427delAAinsGC/c.487_488delAAinsGC/p.K163A|chrXII:g.518429_518430delAAinsGC/c.490_491delAAinsGC/p.K164A|chrXII:g.518435_518436delAAinsGC/c.496_497delAAinsGC/p.K166A +YLR182W SWI6 9403 swi6-S160A S160A amino_acid_mutation PMID:22037179,PMID:8590795 S160A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.518417T>G/c.478T>G/p.S160A +YLR182W SWI6 9404 swi6-S160D S160D amino_acid_mutation PMID:22037179,PMID:8590795 S160D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.518417_518418delTCinsGA/c.478_479delTCinsGA/p.S160D +YLR182W SWI6 9405 swi6-SA4 S160A, S178A, T179A, S227A, S228P, S238A amino_acid_mutation PMID:35239649,PMID:8590795 S160A|S178A|T179A|S227A|S228P|S238A False S160A,S178A,T179A,S227A,S228P,S238A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.518417T>G/c.478T>G/p.S160A|chrXII:g.518471T>G/c.532T>G/p.S178A|chrXII:g.518474A>G/c.535A>G/p.T179A|chrXII:g.518618_518619delAGinsGC/c.679_680delAGinsGC/p.S227A|chrXII:g.518621_518622delAGinsCC/c.682_683delAGinsCC/p.S228P|chrXII:g.518651T>G/c.712T>G/p.S238A +YLR195C NMT1 9425 nmt1-181 G451D amino_acid_mutation PMID:2045414,PMID:23962978,PMID:27708008,PMID:4590462 G451D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.541953C>T/c.1352G>A/p.G451D +YLR195C NMT1 9433 nmt1-72 L99P amino_acid_mutation PMID:1936988,PMID:8416952 L99P False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.543009A>G/c.296T>C/p.L99P +YLR215C CDC123 9473 cdc123-1 E283K amino_acid_mutation PMID:23775072 E283K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.571012C>T/c.847G>A/p.E283K +YLR215C CDC123 9475 cdc123-T274A T274A amino_acid_mutation PMID:15319434 T274A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.571039T>C/c.820A>G/p.T274A +YLR223C IFH1 9480 ifh1-AA S680A, T681A amino_acid_mutation PMID:33084907 S680A|T681A False S680A,T681A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.583453A>C/c.2038T>G/p.S680A|chrXII:g.583450T>C/c.2041A>G/p.T681A +YLR229C CDC42 9517 cdc42-138 D122A amino_acid_mutation PMID:22323294 D122A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.604423T>G/c.365A>C/p.D122A +YLR240W VPS34 9570 vps34-EDC R283E, A287D, Y501C amino_acid_mutation PMID:33237833 R283E|A287D|Y501C False R283E,A287D,Y501C amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.618379_618380delAGinsGA/c.847_848delAGinsGA/p.R283E|chrXII:g.618392_618393delCAinsAC/c.860_861delCAinsAC/p.A287D|chrXII:g.619034A>G/c.1502A>G/p.Y501C +YLR243W GPN3 9589 gpn3-10 G153S, I169T, S241G amino_acid_mutation PMID:23267056 G153S|I169T|S241G False G153S,I169T,S241G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.624659G>A/c.457G>A/p.G153S|chrXII:g.624708T>C/c.506T>C/p.I169T|chrXII:g.624923A>G/c.721A>G/p.S241G +YLR243W GPN3 9591 gpn3-9 M27T, C134R, N205D amino_acid_mutation PMID:23267056,PMID:36190433 M27T|C134R|N205D False M27T,C134R,N205D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.624282T>C/c.80T>C/p.M27T|chrXII:g.624602T>C/c.400T>C/p.C134R|chrXII:g.624723A>G/c.613A>G/p.N205D +YLR243W GPN3 9592 gpn3-E110K E110K amino_acid_mutation PMID:23324351 E110K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.624530G>A/c.328G>A/p.E110K +YLR247C IRC20 9595 irc20-DE534-535AA D534A, E535A amino_acid_mutation PMID:24155900,PMID:33330615 D534A|E535A False D534A,E535A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.631754T>G/c.1601A>C/p.D534A|chrXII:g.631751T>G/c.1604A>C/p.E535A +YLR253W CQD2 9608 cqd2-A187G A187G amino_acid_mutation PMID:34362905 A187G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.643186C>G/c.560C>G/p.A187G +YLR253W CQD2 9609 cqd2-D344N D344N amino_acid_mutation PMID:34362905 D344N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.643656G>A/c.1030G>A/p.D344N +YLR253W CQD2 9610 cqd2-D372N D372N amino_acid_mutation PMID:34362905 D372N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.643740G>A/c.1114G>A/p.D372N +YLR253W CQD2 9611 cqd2-K125H K125H amino_acid_mutation PMID:34362905 K125H False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.642887_642889delAAAinsCAT/c.373_375delAAAinsCAT/p.K125H +YLR253W CQD2 9612 cqd2-K210R K210R amino_acid_mutation PMID:34362905 K210R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.643255A>G/c.629A>G/p.K210R +YLR253W CQD2 9613 cqd2-Q128A Q128A amino_acid_mutation PMID:34362905 Q128A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.643008_643009delCAinsGC/c.382_383delCAinsGC/p.Q128A +YLR253W CQD2 9614 cqd2-S188A S188A amino_acid_mutation PMID:34362905 S188A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.643188T>G/c.562T>G/p.S188A +YLR259C HSP60 9620 hsp60-mif4 G319D amino_acid_mutation PMID:1978929 G319D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.664047C>T/c.956G>A/p.G319D|chrXII:g.664047C>T/c.956G>A/p.G319D +YLR259C HSP60 9621 hsp60-ts G319D amino_acid_mutation PMID:9774331 G319D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.664047C>T/c.956G>A/p.G319D|chrXII:g.664047C>T/c.956G>A/p.G319D +YLR262C YPT6 9622 ypt6-1 K125N amino_acid_mutation PMID:12401784 K125N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.668517T>G/c.375A>C/p.K125N +YLR262C YPT6 9623 ypt6-2 G139D amino_acid_mutation PMID:12401784 G139D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.668475_668476delGAinsAC/c.416_417delGAinsAC/p.G139D +YLR262C YPT6 9624 ypt6-3 A143D amino_acid_mutation PMID:12401784 A143D False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.668463_668464delCAinsAC/c.428_429delCAinsAC/p.A143D +YLR265C NEJ1 9629 nej1-S298A S298A amino_acid_mutation PMID:34244791 S298A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.674563_674564delAGinsGC/c.892_893delAGinsGC/p.S298A +YLR265C NEJ1 9630 nej1-S298E S298E amino_acid_mutation PMID:34244791 S298E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.674562_674564delAGTinsGAG/c.892_894delAGTinsGAG/p.S298E +YLR274W MCM5 9648 mcm5-(bob1) P83L amino_acid_mutation PMID:10508166,PMID:9096361 P83L False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.691802C>T/c.248C>T/p.P83L +YLR277C YSH1 9668 ysh1-12 S368P, N619S amino_acid_mutation PMID:18971324 S368P|N619S False S368P,N619S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.698552A>G/c.1102T>C/p.S368P|chrXII:g.697640T>C/c.1856A>G/p.N619S +YLR277C YSH1 9670 ysh1-32 V429A, K497E, L596R, D682G, I770T amino_acid_mutation PMID:18971324 V429A|K497E|L596R|D682G|I770T False V429A,K497E,L596R,D682G,I770T amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.698210A>G/c.1286T>C/p.V429A|chrXII:g.698007T>C/c.1489A>G/p.K497E|chrXII:g.697709A>C/c.1787T>G/p.L596R|chrXII:g.697451T>C/c.2045A>G/p.D682G|chrXII:g.697187A>G/c.2309T>C/p.I770T +YLR291C GCD7 9682 gcd7-151 R151A amino_acid_mutation PMID:20805354 R151A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.719011_719012delCGinsGC/c.451_452delCGinsGC/p.R151A +YLR291C GCD7 9683 gcd7-164-165 E164A, I165A amino_acid_mutation PMID:20805354 E164A|I165A False E164A,I165A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.718972T>G/c.491A>C/p.E164A|chrXII:g.718969_718970delATinsGC/c.493_494delATinsGC/p.I165A +YLR291C GCD7 9685 gcd7-214 L214S amino_acid_mutation PMID:20805354 L214S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.718822A>G/c.641T>C/p.L214S +YLR291C GCD7 9686 gcd7-262-263 T262A, K263A amino_acid_mutation PMID:20805354 T262A|K263A False T262A,K263A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.718679T>C/c.784A>G/p.T262A|chrXII:g.718675_718676delAAinsGC/c.787_788delAAinsGC/p.K263A +YLR291C GCD7 9688 gcd7-346 I346T amino_acid_mutation PMID:20805354 I346T False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.718426A>G/c.1037T>C/p.I346T +YLR291C GCD7 9689 gcd7-358-360 P358A, S359A, F360A amino_acid_mutation PMID:20805354 P358A|S359A|F360A False P358A,S359A,F360A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.718391G>C/c.1072C>G/p.P358A|chrXII:g.718387_718388delAGinsGC/c.1075_1076delAGinsGC/p.S359A|chrXII:g.718384_718385delTTinsGC/c.1078_1079delTTinsGC/p.F360A +YLR291C GCD7 9690 gcd7-368 N368K amino_acid_mutation PMID:20805354 N368K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.718359A>C/c.1104T>G/p.N368K +YLR291C GCD7 9691 gcd7-371 Q371stop partial_amino_acid_deletion PMID:20805354 Q371stop False Q371* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrXII:g.718352G>A/c.1111C>T/p.Q371* +YLR293C GSP1 9700 gsp1-1894 K14R, T34A, K62E amino_acid_mutation PMID:31372715 K14R|T34A|K62E False K14R,T34A,K62E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.721457T>C/c.41A>G/p.K14R|chrXII:g.721331T>C/c.100A>G/p.T34A|chrXII:g.721247T>C/c.184A>G/p.K62E +YLR293C GSP1 9701 gsp1-245 K14N, K62I, I89F amino_acid_mutation PMID:31372715 K14N|K62I|I89F False K14N,K62I,I89F amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.721456T>G/c.42A>C/p.K14N|chrXII:g.721246T>A/c.185A>T/p.K62I|chrXII:g.721166T>A/c.265A>T/p.I89F +YLR293C GSP1 9702 gsp1-479 I89Y amino_acid_mutation PMID:31372715 I89Y False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.721165_721166delATinsTA/c.265_266delATinsTA/p.I89Y +YLR310C CDC25 9722 cdc25-1 A1403V amino_acid_mutation PMID:2157625,PMID:23390603,PMID:8757740 A1403V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.752786G>A/c.4208C>T/p.A1403V +YLR310C CDC25 9724 cdc25-10 E1328V amino_acid_mutation PMID:11000115,PMID:19805817,PMID:2157625 E1328V False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.753011T>A/c.3983A>T/p.E1328V +YLR310C CDC25 9727 cdc25-5 E1328K amino_acid_mutation PMID:17889668,PMID:2157625,PMID:34668730,PMID:8757740 E1328K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.753012C>T/c.3982G>A/p.E1328K +YLR310C CDC25 9732 cdc25-N1393T N1393T amino_acid_mutation PMID:26984760 N1393T False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.752816T>G/c.4178A>C/p.N1393T +YLR310C CDC25 9735 cdc25-W1416C W1416C amino_acid_mutation PMID:26984760 W1416C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.752746C>A/c.4248G>T/p.W1416C +YLR314C CDC3 9747 cdc3-1 G365R amino_acid_mutation PMID:11564880,PMID:17248617,PMID:24398420,PMID:27708008,PMID:29643469,PMID:4950437,PMID:6223209,PMID:6365931,PMID:8320260 G365R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.763045C>T/c.1093G>A/p.G365R|chrXII:g.763045C>T/c.1093G>A/p.G365R +YLR314C CDC3 9748 cdc3-3 G365R amino_acid_mutation PMID:17248617,PMID:24398420,PMID:27708008 G365R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.763045C>T/c.1093G>A/p.G365R|chrXII:g.763045C>T/c.1093G>A/p.G365R +YLR314C CDC3 9749 cdc3-D210G D210G amino_acid_mutation PMID:24398420,PMID:31990274,PMID:34544131,PMID:36870416 D210G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.763509T>C/c.629A>G/p.D210G +YLR342W FKS1 9836 fks1-1082 V302N amino_acid_mutation PMID:20124029 V302N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.810900_810901delGTinsAA/c.904_905delGTinsAA/p.V302N +YLR342W FKS1 9837 fks1-1154 K877N, A899S, Q977P amino_acid_mutation PMID:11574532,PMID:20124029 K877N|A899S|Q977P False K877N,A899S,Q977P amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.812627A>C/c.2631A>C/p.K877N|chrXII:g.812691G>T/c.2695G>T/p.A899S|chrXII:g.812926A>C/c.2930A>C/p.Q977P +YLR342W FKS1 9838 fks1-1163 I713L, I722V amino_acid_mutation PMID:20124029 I713L|I722V False I713L,I722V amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.812133A>C/c.2137A>C/p.I713L|chrXII:g.812160A>G/c.2164A>G/p.I722V +YLR342W FKS1 9839 fks1-2 F639I amino_acid_mutation PMID:11800269,PMID:16048935,PMID:7528927,PMID:8083161 F639I False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.811911T>A/c.1915T>A/p.F639I +YLR342W FKS1 9840 fks1-3 D646Y amino_acid_mutation PMID:11800269,PMID:7528927,PMID:7695307 D646Y False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.811932G>T/c.1936G>T/p.D646Y +YLR355C ILV5 9867 ilv5a+D- W327R amino_acid_mutation PMID:12381727 W327R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.838275A>T/c.979T>A/p.W327R +YLR355C ILV5 9868 ilv5a-D+ D255E amino_acid_mutation PMID:12381727 D255E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.838489G>C/c.765C>G/p.D255E +YLR357W RSC2 9869 rsc2-D461G D461G amino_acid_mutation PMID:15775977 D461G False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.842712A>G/c.1382A>G/p.D461G +YLR357W RSC2 9870 rsc2-V457M V457M amino_acid_mutation PMID:15775977 V457M False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.842699G>A/c.1369G>A/p.V457M +YLR361C DCR2 9873 Dcr2p-H338A H338A amino_acid_mutation PMID:17673172 H338A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.848112_848113delCAinsGC/c.1012_1013delCAinsGC/p.H338A +YLR362W STE11 9877 STE11-4 T596I amino_acid_mutation PMID:17341836,PMID:20542006,PMID:32079658,PMID:8259520 T596I False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.851587C>T/c.1787C>T/p.T596I +YLR378C SEC61 9890 sec61-3 G341E amino_acid_mutation PMID:1550957,PMID:23044417,PMID:9843581 G341E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.876157C>T/c.1022G>A/p.G341E +YLR378C SEC61 9918 sec61-S2Y S2Y amino_acid_mutation PMID:31017954 S2Y False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.877174G>T/c.5C>A/p.S2Y +YLR383W SMC6 9942 smc6-1A R135A amino_acid_mutation PMID:37012407 R135A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.885690_885691delAGinsGC/c.403_404delAGinsGC/p.R135A +YLR383W SMC6 9943 smc6-1E R135E amino_acid_mutation PMID:37012407 R135E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.885690_885691delAGinsGA/c.403_404delAGinsGA/p.R135E +YLR383W SMC6 9944 smc6-2A K200A, K201A amino_acid_mutation PMID:37012407 K200A|K201A False K200A,K201A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.885885_885886delAAinsGC/c.598_599delAAinsGC/p.K200A|chrXII:g.885888_885889delAAinsGC/c.601_602delAAinsGC/p.K201A +YLR383W SMC6 9945 smc6-2E K200E, K201E amino_acid_mutation PMID:37012407 K200E|K201E False K200E,K201E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.885885A>G/c.598A>G/p.K200E|chrXII:g.885888A>G/c.601A>G/p.K201E +YLR383W SMC6 9946 smc6-3A R135A, K200A, K201A amino_acid_mutation PMID:37012407 R135A|K200A|K201A False R135A,K200A,K201A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.885690_885691delAGinsGC/c.403_404delAGinsGC/p.R135A|chrXII:g.885885_885886delAAinsGC/c.598_599delAAinsGC/p.K200A|chrXII:g.885888_885889delAAinsGC/c.601_602delAAinsGC/p.K201A +YLR383W SMC6 9947 smc6-3E R135E, K200E, K201E amino_acid_mutation PMID:37012407 R135E|K200E|K201E False R135E,K200E,K201E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.885690_885691delAGinsGA/c.403_404delAGinsGA/p.R135E|chrXII:g.885885A>G/c.598A>G/p.K200E|chrXII:g.885888A>G/c.601A>G/p.K201E +YLR383W SMC6 9948 smc6-56 A287V, H379R, I421T amino_acid_mutation PMID:15010319,PMID:16793545,PMID:33833229 A287V|H379R|I421T False A287V,H379R,I421T amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.886147C>T/c.860C>T/p.A287V|chrXII:g.886423A>G/c.1136A>G/p.H379R|chrXII:g.886549T>C/c.1262T>C/p.I421T +YLR386W VAC14 9953 vac14-2 H56Y, R61K, Q101R, L329I amino_acid_mutation PMID:19037259 H56Y|R61K|Q101R|L329I False H56Y,R61K,Q101R,L329I amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.893793C>T/c.166C>T/p.H56Y|chrXII:g.893809G>A/c.182G>A/p.R61K|chrXII:g.893929A>G/c.302A>G/p.Q101R|chrXII:g.894612T>A/c.985T>A/p.L329I +YLR397C AFG2 9958 afg2-(drg1-1) V725W amino_acid_mutation PMID:9341149 V725W False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.912719_912720delGTinsTG/c.2173_2174delGTinsTG/p.V725W +YLR398C SKI2 9968 ski2-G691S G691S amino_acid_mutation PMID:35607352 G691S False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.916949C>T/c.2071G>A/p.G691S +YLR399C BDF1 9983 bdf1-Y187F Y187F amino_acid_mutation PMID:34056863 Y187F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.921037T>A/c.560A>T/p.Y187F +YLR399C BDF1 9984 bdf1-Y187F,Y354F Y187F, Y354F amino_acid_mutation PMID:28068333,PMID:34056863 Y187F|Y354F False Y187F,Y354F amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.921037T>A/c.560A>T/p.Y187F|chrXII:g.920536T>A/c.1061A>T/p.Y354F +YLR399C BDF1 9985 bdf1-Y354F Y354F amino_acid_mutation PMID:34056863 Y354F False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.920536T>A/c.1061A>T/p.Y354F +YLR403W SFP1 9988 sfp1-1 S39A, S170A, S181A, S183A, T227A, S228A, T446A amino_acid_mutation PMID:19328065 S39A|S170A|S181A|S183A|T227A|S228A|T446A False S39A,S170A,S181A,S183A,T227A,S228A,T446A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.925682T>G/c.115T>G/p.S39A|chrXII:g.926075T>G/c.508T>G/p.S170A|chrXII:g.926108T>G/c.541T>G/p.S181A|chrXII:g.926114T>G/c.547T>G/p.S183A|chrXII:g.926246A>G/c.679A>G/p.T227A|chrXII:g.926249T>G/c.682T>G/p.S228A|chrXII:g.926903A>G/c.1336A>G/p.T446A +YLR418C CDC73 10021 cdc73-2M R172A R182A amino_acid_mutation PMID:34852272 R172A|R182A False R172A,R182A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.957581_957582delCGinsGC/c.514_515delCGinsGC/p.R172A|chrXII:g.957551_957552delCGinsGC/c.544_545delCGinsGC/p.R182A +YLR418C CDC73 10022 cdc73-3M R172A L181E R182A amino_acid_mutation PMID:34852272 R172A|L181E|R182A False R172A,L181E,R182A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.957581_957582delCGinsGC/c.514_515delCGinsGC/p.R172A|chrXII:g.957554_957555delTTinsGA/c.541_542delTTinsGA/p.L181E|chrXII:g.957551_957552delCGinsGC/c.544_545delCGinsGC/p.R182A +YLR433C CNA1 10071 CNA1-(CMP1-1) T350K amino_acid_mutation PMID:7540976 T350K False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1004960G>T/c.1049C>A/p.T350K +YLR433C CNA1 10072 CNA1-(CMP1-3,4) Y377F, W388C amino_acid_mutation PMID:7540976 Y377F|W388C False Y377F,W388C amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1004879T>A/c.1130A>T/p.Y377F|chrXII:g.1004845C>A/c.1164G>T/p.W388C +YLR433C CNA1 10073 CNA1-(CMP1-4) W388C amino_acid_mutation PMID:7540976 W388C False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1004845C>A/c.1164G>T/p.W388C +YLR446W NGK1 10124 ngk1-D196A D196A amino_acid_mutation PMID:36216916 D196A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1025800A>C/c.587A>C/p.D196A +YLR446W NGK1 10125 ngk1-D196E D196E amino_acid_mutation PMID:36216916 D196E False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1025801T>G/c.588T>G/p.D196E +YLR446W NGK1 10126 ngk1-D196N D196N amino_acid_mutation PMID:36216916 D196N False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1025799G>A/c.586G>A/p.D196N +YLR446W NGK1 10127 ngk1-E290A E290A amino_acid_mutation PMID:36216916 E290A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1026082A>C/c.869A>C/p.E290A +YLR446W NGK1 10128 ngk1-K152A K152A amino_acid_mutation PMID:36216916 K152A False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1025667_1025668delAAinsGC/c.454_455delAAinsGC/p.K152A +YLR450W HMG2 10136 hmg2-K357R K357R amino_acid_mutation PMID:10545111,PMID:33184059,PMID:36689475 K357R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1033696A>G/c.1070A>G/p.K357R +YLR450W HMG2 10137 hmg2-K6R K6R amino_acid_mutation PMID:10545111,PMID:33184059,PMID:36689475 K6R False amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1032643A>G/c.17A>G/p.K6R +YLR450W HMG2 10138 hmg2-K6R,K357R K6R, K357R amino_acid_mutation PMID:10545111,PMID:36689475 K6R|K357R False K6R,K357R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1032643A>G/c.17A>G/p.K6R|chrXII:g.1033696A>G/c.1070A>G/p.K357R +YLR457C NBP1 10168 nbp1-nls1 R37Q, R39Q, R40Q, K41N, K52N, R53Q, R55Q, K56N amino_acid_mutation PMID:21785410 R37Q|R39Q|R40Q|K41N|K52N|R53Q|R55Q|K56N False R37Q,R39Q,R40Q,K41N,K52N,R53Q,R55Q,K56N amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1056662_1056663delAGinsCA/c.109_110delAGinsCA/p.R37Q|chrXII:g.1056656_1056657delAGinsCA/c.115_116delAGinsCA/p.R39Q|chrXII:g.1056653_1056654delAGinsCA/c.118_119delAGinsCA/p.R40Q|chrXII:g.1056649C>G/c.123G>C/p.K41N|chrXII:g.1056971T>G/c.156A>C/p.K52N|chrXII:g.1056614_1056615delAGinsCA/c.157_158delAGinsCA/p.R53Q|chrXII:g.1056608_1056609delAGinsCA/c.163_164delAGinsCA/p.R55Q|chrXII:g.1056604C>G/c.168G>C/p.K56N +YLR457C NBP1 10169 nbp1-nls1a R37Q, R39Q, R40Q, K41N amino_acid_mutation PMID:21785410,PMID:33332348 R37Q|R39Q|R40Q|K41N False R37Q,R39Q,R40Q,K41N amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1056662_1056663delAGinsCA/c.109_110delAGinsCA/p.R37Q|chrXII:g.1056656_1056657delAGinsCA/c.115_116delAGinsCA/p.R39Q|chrXII:g.1056653_1056654delAGinsCA/c.118_119delAGinsCA/p.R40Q|chrXII:g.1056649C>G/c.123G>C/p.K41N +YLR457C NBP1 10170 nbp1-nls1b K52N, R53Q, R55Q, K56N amino_acid_mutation PMID:21785410,PMID:33332348 K52N|R53Q|R55Q|K56N False K52N,R53Q,R55Q,K56N amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1056971T>G/c.156A>C/p.K52N|chrXII:g.1056614_1056615delAGinsCA/c.157_158delAGinsCA/p.R53Q|chrXII:g.1056608_1056609delAGinsCA/c.163_164delAGinsCA/p.R55Q|chrXII:g.1056604C>G/c.168G>C/p.K56N +YLR457C NBP1 10171 nbp1-nls2 R70Q, R71Q, K72N, K75N, R76Q, R77Q amino_acid_mutation PMID:21785410 R70Q|R71Q|K72N|K75N|R76Q|R77Q False R70Q,R71Q,K72N,K75N,R76Q,R77Q amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXII:g.1056563_1056564delAGinsCA/c.208_209delAGinsCA/p.R70Q|chrXII:g.1056560_1056561delAGinsCA/c.211_212delAGinsCA/p.R71Q|chrXII:g.1056556T>G/c.216A>C/p.K72N|chrXII:g.1056547T>G/c.225A>C/p.K75N|chrXII:g.1056545C>T/c.227G>A/p.R76Q|chrXII:g.1056542_1056543delAGinsCA/c.229_230delAGinsCA/p.R77Q +YML007W YAP1 10182 YAP1-11 C620F amino_acid_mutation PMID:10903515 C620F False amino_acid_mutation:single_aa amino_acid_mutation +YML010W SPT5 10203 spt5-3A F180A, E184A, V187A amino_acid_mutation PMID:35102600 F180A|E184A|V187A False F180A,E184A,V187A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.248214_248215delTTinsGC/c.538_539delTTinsGC/p.F180A|chrXIII:g.248227A>C/c.551A>C/p.E184A|chrXIII:g.248236T>C/c.560T>C/p.V187A +YML010W SPT5 10205 spt5-C292R C292R amino_acid_mutation PMID:21467039,PMID:36640349 C292R False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.248550T>C/c.874T>C/p.C292R +YML010W SPT5 10207 spt5-S324P,E427K S324P, E427K amino_acid_mutation PMID:21467039,PMID:36640349 S324P|E427K False S324P,E427K amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.248646T>C/c.970T>C/p.S324P|chrXIII:g.248955G>A/c.1279G>A/p.E427K +YML014W TRM9 10212 trm9-(kti1-2) Q228stop partial_amino_acid_deletion PMID:18657261 Q228stop False Q228* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrXIII:g.243906C>T/c.682C>T/p.Q228* +YML014W TRM9 10213 trm9-(kti1-3) Y246Stop partial_amino_acid_deletion PMID:18657261 Y246Stop False Y246* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrXIII:g.243962C>A/c.738C>A/p.Y246* +YML014W TRM9 10214 trm9-(kti1-6) G61stop partial_amino_acid_deletion PMID:18657261 G61stop False G61* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrXIII:g.243405G>T/c.181G>T/p.G61* +YML014W TRM9 10215 trm9-(kti1-8) E236stop partial_amino_acid_deletion PMID:18657261 E236stop False E236* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrXIII:g.243930G>T/c.706G>T/p.E236* +YML015C TAF11 10217 taf11-(taf40-3100) L147Q, C200W, L264S, T336A amino_acid_mutation PMID:10521393 L147Q|C200W|L264S|T336A False L147Q,C200W,L264S,T336A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.242652_242653delTCinsAA/c.440_441delTCinsAA/p.L147Q|chrXIII:g.242430G>C/c.600C>G/p.C200W|chrXIII:g.242239A>G/c.791T>C/p.L264S|chrXIII:g.242024T>C/c.1006A>G/p.T336A +YML023C NSE5 10232 nse5-ts1 Y111H, Y123H, N183D, H319Y amino_acid_mutation PMID:22303010,PMID:23962978,PMID:27215325,PMID:27708008,PMID:35587152 Y111H|Y123H|N183D|H319Y False Y111H,Y123H,N183D,H319Y amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.228334A>G/c.331T>C/p.Y111H|chrXIII:g.228298A>G/c.367T>C/p.Y123H|chrXIII:g.228118T>C/c.547A>G/p.N183D|chrXIII:g.227710G>A/c.955C>T/p.H319Y +YML023C NSE5 10233 nse5-ts2 L70A, L247A amino_acid_mutation PMID:22303010,PMID:23962978,PMID:27215325,PMID:27708008 L70A|L247A False L70A,L247A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.228456_228457delTTinsGC/c.208_209delTTinsGC/p.L70A|chrXIII:g.227925_227926delCTinsGC/c.739_740delCTinsGC/p.L247A +YML028W TSA1 10240 TSA1-B7 P182L amino_acid_mutation PMID:20729566 P182L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.220682C>T/c.545C>T/p.P182L +YML032C RAD52 10261 rad52-1 A57V amino_acid_mutation PMID:3100912,PMID:3523231,PMID:392240,PMID:4606119,PMID:6098821,PMID:80746 A57V False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.213761G>A/c.170C>T/p.A57V +YML032C RAD52 10263 rad52-2 P31L amino_acid_mutation PMID:4606119,PMID:8417987 P31L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.213839G>A/c.92C>T/p.P31L +YML036W CGI121 10290 cgi121-G96W G96W amino_acid_mutation PMID:33277478 G96W False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.205927_205929delGGAinsTGG/c.286_288delGGAinsTGG/p.G96W +YML036W CGI121 10291 cgi121-I88E I88E amino_acid_mutation PMID:33277478 I88E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.205903_205905delATTinsGAG/c.262_264delATTinsGAG/p.I88E +YML036W CGI121 10292 cgi121-I88E,G96W I88E, G96W amino_acid_mutation PMID:33277478 I88E|G96W False I88E,G96W amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.205903_205905delATTinsGAG/c.262_264delATTinsGAG/p.I88E|chrXIII:g.205927_205929delGGAinsTGG/c.286_288delGGAinsTGG/p.G96W +YML036W CGI121 10293 cgi121-L172E,I176R L172E, I176R amino_acid_mutation PMID:18951093 L172E|I176R False L172E,I176R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.206261_206262delTTinsGA/c.514_515delTTinsGA/p.L172E|chrXIII:g.205512T>G/c.527T>G/p.I176R +YML036W CGI121 10294 cgi121-M32E M32E amino_acid_mutation PMID:33277478 M32E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.205735_205736delATinsGA/c.94_95delATinsGA/p.M32E +YML036W CGI121 10295 cgi121-M32E,R72A M32E, R72A amino_acid_mutation PMID:33277478 M32E|R72A False M32E,R72A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.205735_205736delATinsGA/c.94_95delATinsGA/p.M32E|chrXIII:g.205855_205856delAGinsGC/c.214_215delAGinsGC/p.R72A +YML036W CGI121 10296 cgi121-M32E,R72A,I88E M32E, R72A, I88E amino_acid_mutation PMID:33277478 M32E|R72A|I88E False M32E,R72A,I88E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.205735_205736delATinsGA/c.94_95delATinsGA/p.M32E|chrXIII:g.205855_205856delAGinsGC/c.214_215delAGinsGC/p.R72A|chrXIII:g.205903_205905delATTinsGAG/c.262_264delATTinsGAG/p.I88E +YML036W CGI121 10297 cgi121-M32E,S76E M32E, S76E amino_acid_mutation PMID:33277478 M32E|S76E False M32E,S76E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.205735_205736delATinsGA/c.94_95delATinsGA/p.M32E|chrXIII:g.205867_205869delTCCinsGAG/c.226_228delTCCinsGAG/p.S76E +YML036W CGI121 10298 cgi121-M32E,S76E,I88E M32E, S76E, I88E amino_acid_mutation PMID:33277478 M32E|S76E|I88E False M32E,S76E,I88E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.205735_205736delATinsGA/c.94_95delATinsGA/p.M32E|chrXIII:g.205867_205869delTCCinsGAG/c.226_228delTCCinsGAG/p.S76E|chrXIII:g.205903_205905delATTinsGAG/c.262_264delATTinsGAG/p.I88E +YML036W CGI121 10299 cgi121-R72A R72A amino_acid_mutation PMID:33277478 R72A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.205855_205856delAGinsGC/c.214_215delAGinsGC/p.R72A +YML036W CGI121 10300 cgi121-S76E S76E amino_acid_mutation PMID:33277478 S76E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.205867_205869delTCCinsGAG/c.226_228delTCCinsGAG/p.S76E +YML050W AIM32 10308 aim32-C213,222S C213S, C222S amino_acid_mutation PMID:34461091 C213S|C222S False C213S,C222S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.173775T>A/c.637T>A/p.C213S|chrXIII:g.173802T>A/c.664T>A/p.C222S +YML050W AIM32 10309 aim32-C213A C213A amino_acid_mutation PMID:30879301 C213A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.173775_173776delTGinsGC/c.637_638delTGinsGC/p.C213A +YML050W AIM32 10310 aim32-C213S C213S amino_acid_mutation PMID:34461091 C213S False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.173775T>A/c.637T>A/p.C213S +YML050W AIM32 10311 aim32-C222A C222A amino_acid_mutation PMID:30879301 C222A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.173802_173803delTGinsGC/c.664_665delTGinsGC/p.C222A +YML050W AIM32 10312 aim32-C222S C222S amino_acid_mutation PMID:34461091 C222S False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.173802T>A/c.664T>A/p.C222S +YML050W AIM32 10313 aim32-C291A C291A amino_acid_mutation PMID:30879301 C291A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.174009_174010delTGinsGC/c.871_872delTGinsGC/p.C291A +YML050W AIM32 10314 aim32-C38A C38A amino_acid_mutation PMID:30879301 C38A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.173250_173251delTGinsGC/c.112_113delTGinsGC/p.C38A +YML050W AIM32 10315 aim32-C40A C40A amino_acid_mutation PMID:30879301 C40A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.173256_173257delTGinsGC/c.118_119delTGinsGC/p.C40A +YML050W AIM32 10316 aim32-H249,253A H249A, H253A amino_acid_mutation PMID:34461091 H249A|H253A False H249A,H253A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.173883_173884delCAinsGC/c.745_746delCAinsGC/p.H249A|chrXIII:g.173895_173896delCAinsGC/c.757_758delCAinsGC/p.H253A +YML050W AIM32 10317 aim32-H249A H249A amino_acid_mutation PMID:30879301 H249A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.173883_173884delCAinsGC/c.745_746delCAinsGC/p.H249A +YML050W AIM32 10318 aim32-H253A H253A amino_acid_mutation PMID:30879301 H253A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.173895_173896delCAinsGC/c.757_758delCAinsGC/p.H253A +YML050W AIM32 10319 aim32-WSTOP W278* partial_amino_acid_deletion PMID:34461091 W278* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXIII:g.173971G>A/c.833G>A/p.W278* +YML061C PIF1 10336 pif1-m1 M1A amino_acid_mutation PMID:20858222,PMID:8287473 M1A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.151531_151532delATinsGC/c.1_2delATinsGC/p.M1A +YML061C PIF1 10337 pif1-m2 M40A amino_acid_mutation PMID:11429610,PMID:18585101,PMID:23657261,PMID:27026700,PMID:32544229,PMID:34751785,PMID:34801008,PMID:35483549,PMID:36350688,PMID:36533450,PMID:8287473 M40A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.151414_151415delATinsGC/c.118_119delATinsGC/p.M40A +YML065W ORC1 10345 orc1-K485T K485T amino_acid_mutation PMID:37020028,PMID:9038340 K485T False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.143663A>C/c.1454A>C/p.K485T +YML065W ORC1 10346 orc1-N600A N600A amino_acid_mutation PMID:18393942 N600A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.144007_144008delAAinsGC/c.1798_1799delAAinsGC/p.N600A +YML065W ORC1 10347 orc1-R694A R694A amino_acid_mutation PMID:18393942 R694A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.144289_144290delAGinsGC/c.2080_2081delAGinsGC/p.R694A +YML065W ORC1 10348 orc1-R694E R694E amino_acid_mutation PMID:18393942 R694E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.144289_144290delAGinsGA/c.2080_2081delAGinsGA/p.R694E +YML065W ORC1 10349 orc1-R704E R704E amino_acid_mutation PMID:18393942 R704E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.144319_144320delAGinsGA/c.2110_2111delAGinsGA/p.R704E +YML065W ORC1 10350 orc1-d1 D569Y amino_acid_mutation PMID:11459976,PMID:37020028 D569Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.143914G>T/c.1705G>T/p.D569Y +YML065W ORC1 10351 orc1-d2 D569F amino_acid_mutation PMID:11459976 D569F False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.143914_143915delGAinsTT/c.1705_1706delGAinsTT/p.D569F +YML069W POB3 10358 pob3-7 W28R, T50I, N69K, D204G, N518K amino_acid_mutation PMID:23962978,PMID:27708008,PMID:32878900,PMID:35587152 W28R|T50I|N69K|D204G|N518K False W28R,T50I,N69K,D204G,N518K amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.135581T>A/c.82T>A/p.W28R|chrXIII:g.135648C>T/c.149C>T/p.T50I|chrXIII:g.135706T>G/c.207T>G/p.N69K|chrXIII:g.136110A>G/c.611A>G/p.D204G|chrXIII:g.137053T>G/c.1554T>G/p.N518K +YML085C TUB1 10380 tub1-A422V A422V amino_acid_mutation PMID:7622604 A422V False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.98020G>A/c.1265C>T/p.A422V +YML085C TUB1 10384 tub1-N102S N102S amino_acid_mutation PMID:31574570 N102S False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.98980T>C/c.305A>G/p.N102S +YML085C TUB1 10385 tub1-R265C R265C amino_acid_mutation PMID:31574570,PMID:32213119 R265C False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.98490_98492delAGAinsTGT/c.793_795delAGAinsTGT/p.R265C +YML098W TAF13 10401 taf13-(taf19-7) K13E amino_acid_mutation PMID:10864925 K13E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.77303A>G/c.37A>G/p.K13E +YML103C NUP188 10405 nup188-FLV L1316E,L1504E,M1560E amino_acid_mutation PMID:35679425 L1316E|L1504E|M1560E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.63603_63604delTTinsGA/c.3946_3947delTTinsGA/p.L1316E|chrXIII:g.63039_63040delCTinsGA/c.4510_4511delCTinsGA/p.L1504E|chrXIII:g.62871_62872delATinsGA/c.4678_4679delATinsGA/p.M1560E +YML103C NUP188 10406 nup188-HHMI Y330E,R333E,I390E,L351E amino_acid_mutation PMID:35679425 Y330E|R333E|I390E|L351E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.66560_66562delTATinsGAG/c.988_990delTATinsGAG/p.Y330E|chrXIII:g.66552_66553delCGinsGA/c.997_998delCGinsGA/p.R333E|chrXIII:g.66380_66382delATTinsGAG/c.1168_1170delATTinsGAG/p.I390E|chrXIII:g.66498_66499delCTinsGA/c.1051_1052delCTinsGA/p.L351E +YML103C NUP188 10407 nup188-HHMI+LLV Y330E,R333E,I390E,L351E,L1316E,L1504E,M1560E amino_acid_mutation PMID:35679425 Y330E|R333E|I390E|L351E|L1316E|L1504E|M1560E False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.66560_66562delTATinsGAG/c.988_990delTATinsGAG/p.Y330E|chrXIII:g.66552_66553delCGinsGA/c.997_998delCGinsGA/p.R333E|chrXIII:g.66380_66382delATTinsGAG/c.1168_1170delATTinsGAG/p.I390E|chrXIII:g.66498_66499delCTinsGA/c.1051_1052delCTinsGA/p.L351E|chrXIII:g.63603_63604delTTinsGA/c.3946_3947delTTinsGA/p.L1316E|chrXIII:g.63039_63040delCTinsGA/c.4510_4511delCTinsGA/p.L1504E|chrXIII:g.62871_62872delATinsGA/c.4678_4679delATinsGA/p.M1560E +YML107C PML39 10414 pml39-C134–137SGGS C134S, C135G, C136G, C137S amino_acid_mutation PMID:36857168 C134S|C135G|C136G|C137S False C134S,C135G,C136G,C137S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.55870A>T/c.400T>A/p.C134S|chrXIII:g.55867A>C/c.403T>G/p.C135G|chrXIII:g.55864A>C/c.406T>G/p.C136G|chrXIII:g.55861A>T/c.409T>A/p.C137S +YML107C PML39 10415 pml39-C271S C271S amino_acid_mutation PMID:36857168 C271S False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.55459A>T/c.811T>A/p.C271S +YML107C PML39 10416 pml39-C292S C292S amino_acid_mutation PMID:36857168 C292S False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.55396A>T/c.874T>A/p.C292S +YML107C PML39 10417 pml39-W119A W119A amino_acid_mutation PMID:36857168 W119A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.55914_55915delTGinsGC/c.355_356delTGinsGC/p.W119A +YML107C PML39 10418 pml39-Y257A Y257A amino_acid_mutation PMID:36857168 Y257A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.55500_55501delTAinsGC/c.769_770delTAinsGC/p.Y257A +YML121W GTR1 10429 gtr1-S20L S20L amino_acid_mutation PMID:36047762 S20L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.26988C>T/c.59C>T/p.S20L +YML121W GTR1 10430 gtr1-S20N S20N amino_acid_mutation PMID:10388807,PMID:32801125 S20N False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.26987_26989delTCGinsAAC/c.58_60delTCGinsAAC/p.S20N +YMR005W TAF4 10465 taf4(1-388)m4 M219P amino_acid_mutation PMID:12237303 M219P False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.276699_276700delATinsCC/c.655_656delATinsCC/p.M219P +YMR013C SEC59 10469 sec59-1 G420D amino_acid_mutation PMID:12213788,PMID:1323123,PMID:16923818,PMID:17397129,PMID:20602334,PMID:2178923,PMID:2657387,PMID:30865773,PMID:31597940,PMID:6361466,PMID:6368571 G420D False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.295480C>T/c.1259G>A/p.G420D +YMR035W IMP2 10487 imp2-1 S41A amino_acid_mutation PMID:8266095 S41A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.341262T>G/c.121T>G/p.S41A +YMR043W MCM1 10496 mcm1-1 P97L amino_acid_mutation PMID:3066908,PMID:6323245 P97L False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.354160C>T/c.290C>T/p.P97L +YMR079W SEC14 10555 sec14-ts G266D amino_acid_mutation PMID:19129178 G266D False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.425941G>A/c.797G>A/p.G266D +YMR080C NAM7 10556 NAM7-D1 G556D amino_acid_mutation PMID:1569946 G556D False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.427961C>T/c.1667G>A/p.G556D +YMR080C NAM7 10557 NAM7-D2 S699F amino_acid_mutation PMID:1569946 S699F False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.427532G>A/c.2096C>T/p.S699F +YMR080C NAM7 10558 NAM7-D3 R779G amino_acid_mutation PMID:1569946 R779G False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.427293G>C/c.2335C>G/p.R779G +YMR080C NAM7 10559 NAM7-D4 R779C amino_acid_mutation PMID:1569946,PMID:36192133 R779C False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.427293G>A/c.2335C>T/p.R779C +YMR080C NAM7 10560 NAM7-D5 G787D amino_acid_mutation PMID:1569946 G787D False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.427268C>T/c.2360G>A/p.G787D +YMR080C NAM7 10561 NAM7-D6 R794C amino_acid_mutation PMID:1569946 R794C False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.427248G>A/c.2380C>T/p.R794C +YMR080C NAM7 10562 NAM7-D7 G810R amino_acid_mutation PMID:1569946 G810R False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.427200C>G/c.2428G>C/p.G810R +YMR080C NAM7 10564 nam7-C62Y C62Y amino_acid_mutation PMID:36192133,PMID:8896465 C62Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.429443C>T/c.185G>A/p.C62Y +YMR080C NAM7 10565 nam7-C84S C84S amino_acid_mutation PMID:8816462 C84S False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.429378A>T/c.250T>A/p.C84S +YMR080C NAM7 10566 nam7-DE572AA D572A, E573A amino_acid_mutation PMID:16777600,PMID:36192133,PMID:8816461 D572A|E573A False D572A,E573A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.427913T>G/c.1715A>C/p.D572A|chrXIII:g.427910T>G/c.1718A>C/p.E573A +YMR080C NAM7 10567 nam7-K436A K436A amino_acid_mutation PMID:8816461 K436A False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.428321_428322delAAinsGC/c.1306_1307delAAinsGC/p.K436A +YMR080C NAM7 10568 nam7-K436D K436D amino_acid_mutation PMID:8816461 K436D False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.428320_428322delAAAinsGAC/c.1306_1308delAAAinsGAC/p.K436D +YMR080C NAM7 10569 nam7-K436E K436E amino_acid_mutation PMID:36192133,PMID:8816461 K436E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.428322T>C/c.1306A>G/p.K436E +YMR080C NAM7 10570 nam7-K436P K436P amino_acid_mutation PMID:8816461 K436P False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.428321_428322delAAinsCC/c.1306_1307delAAinsCC/p.K436P +YMR080C NAM7 10571 nam7-K436Q K436Q amino_acid_mutation PMID:8816461 K436Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.428322T>G/c.1306A>C/p.K436Q +YMR080C NAM7 10572 nam7-RR793AA R793A, R794A amino_acid_mutation PMID:36192133,PMID:8816461 R793A|R794A False R793A,R794A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.427250_427251delCGinsGC/c.2377_2378delCGinsGC/p.R793A|chrXIII:g.427247_427248delCGinsGC/c.2380_2381delCGinsGC/p.R794A +YMR080C NAM7 10573 nam7-RR793KK R793K, R794K amino_acid_mutation PMID:8816461 R793K|R794K False R793K,R794K amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.427249_427251delCGTinsAAG/c.2377_2379delCGTinsAAG/p.R793K|chrXIII:g.427246_427248delCGTinsAAG/c.2380_2382delCGTinsAAG/p.R794K +YMR080C NAM7 10574 nam7-TR800AA T800A, R801A amino_acid_mutation PMID:8816461 T800A|R801A False T800A,R801A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.427230T>C/c.2398A>G/p.T800A|chrXIII:g.427226_427227delCGinsGC/c.2401_2402delCGinsGC/p.R801A +YMR165C PAH1 10664 pah1-S705D/7A S705D,S110A,S114A,S168A,S602A,T723A,S744A,S748A amino_acid_mutation PMID:27044741 S705D|S110A|S114A|S168A|S602A|T723A|S744A|S748A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.590515_590516delTCinsGA/c.2113_2114delTCinsGA/p.S705D|chrXIII:g.592300_592301delAGinsGC/c.328_329delAGinsGC/p.S110A|chrXIII:g.592289A>C/c.340T>G/p.S114A|chrXIII:g.592127A>C/c.502T>G/p.S168A|chrXIII:g.590825A>C/c.1804T>G/p.S602A|chrXIII:g.590462T>C/c.2167A>G/p.T723A|chrXIII:g.590399A>C/c.2230T>G/p.S744A|chrXIII:g.590387A>C/c.2242T>G/p.S748A +YMR167W MLH1 10669 mlh1-2 D543A, E544A, E545A, R546A, R547A amino_acid_mutation PMID:12529393 D543A|E544A|E545A|R546A|R547A False D543A,E544A,E545A,R546A,R547A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.596513A>C/c.1628A>C/p.D543A|chrXIII:g.596516A>C/c.1631A>C/p.E544A|chrXIII:g.596519A>C/c.1634A>C/p.E545A|chrXIII:g.596521_596522delAGinsGC/c.1636_1637delAGinsGC/p.R546A|chrXIII:g.596524_596525delAGinsGC/c.1639_1640delAGinsGC/p.R547A +YMR167W MLH1 10670 mlh1-29 K393A, R394A amino_acid_mutation PMID:12529393 K393A|R394A False K393A,R394A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.596062_596063delAAinsGC/c.1177_1178delAAinsGC/p.K393A|chrXIII:g.596065_596066delAGinsGC/c.1180_1181delAGinsGC/p.R394A +YMR167W MLH1 10671 mlh1-31 R401A, D403A amino_acid_mutation PMID:12529393 R401A|D403A False R401A,D403A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.596086_596087delAGinsGC/c.1201_1202delAGinsGC/p.R401A|chrXIII:g.596093A>C/c.1208A>C/p.D403A +YMR167W MLH1 10672 mlh1-A18P A18P amino_acid_mutation PMID:33303966 A18P False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.594937G>C/c.52G>C/p.A18P +YMR200W ROT1 10730 rot1-2 G45E amino_acid_mutation PMID:16567426 G45E False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.664885G>A/c.134G>A/p.G45E +YMR200W ROT1 10732 rot1-N103,107,139Q N103Q, N107Q, N139Q amino_acid_mutation PMID:17914748 N103Q|N107Q|N139Q False N103Q,N107Q,N139Q amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.665058_665060delAACinsCAA/c.307_309delAACinsCAA/p.N103Q|chrXIII:g.665070_665072delAACinsCAA/c.319_321delAACinsCAA/p.N107Q|chrXIII:g.665166_665168delAACinsCAA/c.415_417delAACinsCAA/p.N139Q +YMR203W TOM40 10739 tom40-270 N252S amino_acid_mutation PMID:12743032 N252S False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.669246A>G/c.755A>G/p.N252S +YMR203W TOM40 10741 tom40-347 Q250R amino_acid_mutation PMID:12743032 Q250R False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.669240A>G/c.749A>G/p.Q250R +YMR203W TOM40 10742 tom40-4 D43G, K90E, F92S, A127Y, I150N, Q166K, D170G, S312F, K323M, Q371stop amino_acid_deletion_and_mutation PMID:15239954 D43G|K90E|F92S|A127Y|I150N|Q166K|D170G|S312F|K323M|Q371stop False D43G,K90E,F92S,A127Y,I150N,Q166K,D170G,S312F,K323M,Q371* amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|nonsense_mutation:stop_codon_text amino_acid_deletion_and_mutation chrXIII:g.668619A>G/c.128A>G/p.D43G|chrXIII:g.668759A>G/c.268A>G/p.K90E|chrXIII:g.668766T>C/c.275T>C/p.F92S|chrXIII:g.668870_668871delGCinsTA/c.379_380delGCinsTA/p.A127Y|chrXIII:g.668940T>A/c.449T>A/p.I150N|chrXIII:g.668987C>A/c.496C>A/p.Q166K|chrXIII:g.669000A>G/c.509A>G/p.D170G|chrXIII:g.669426C>T/c.935C>T/p.S312F|chrXIII:g.669459A>T/c.968A>T/p.K323M|chrXIII:g.669602C>T/c.1111C>T/p.Q371* +YMR203W TOM40 10743 tom40-97 W243R amino_acid_mutation PMID:12743032 W243R False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.669218T>A/c.727T>A/p.W243R +YMR224C MRE11 10792 mre11-58S H213Y, L225I amino_acid_mutation PMID:21146476 H213Y|L225I False H213Y,L225I amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.720017G>A/c.637C>T/p.H213Y|chrXIII:g.719981A>T/c.673T>A/p.L225I +YMR236W TAF9 10834 taf9-(slm7-1) W133* partial_amino_acid_deletion PMID:10747053 W133* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXIII:g.743368G>A/c.398G>A/p.W133* +YMR276W DSK2 10905 DSK2-1 H69Y amino_acid_mutation PMID:8682868 H69Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.819031C>T/c.205C>T/p.H69Y +YMR296C LCB1 10956 lcb1-2 M261R amino_acid_mutation PMID:27708008,PMID:34544143 M261R False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.860110A>C/c.782T>G/p.M261R +YMR296C LCB1 10957 lcb1-4 D320Y amino_acid_mutation PMID:27708008,PMID:34544143 D320Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.859934C>A/c.958G>T/p.D320Y +YMR296C LCB1 10958 lcb1-5 D299Y amino_acid_mutation PMID:27708008,PMID:34544143 D299Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.859997C>A/c.895G>T/p.D299Y +YMR302C YME2 10969 yme2-10 Y347C, I761T amino_acid_mutation PMID:16850347 Y347C|I761T False Y347C,I761T amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.871586T>C/c.1040A>G/p.Y347C|chrXIII:g.870344A>G/c.2282T>C/p.I761T +YMR302C YME2 10971 yme2-5 D226G, N502Y amino_acid_mutation PMID:16850347 D226G|N502Y False D226G,N502Y amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.871949T>C/c.677A>G/p.D226G|chrXIII:g.871122T>A/c.1504A>T/p.N502Y|chrXIII:g.871949T>C/c.677A>G/p.D226G|chrXIII:g.871122T>A/c.1504A>T/p.N502Y +YMR302C YME2 10972 yme2-6 D226G, N502Y amino_acid_mutation PMID:16850347 D226G|N502Y False D226G,N502Y amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.871949T>C/c.677A>G/p.D226G|chrXIII:g.871122T>A/c.1504A>T/p.N502Y|chrXIII:g.871949T>C/c.677A>G/p.D226G|chrXIII:g.871122T>A/c.1504A>T/p.N502Y +YMR302C YME2 10974 yme2-8 V155A, N502Y amino_acid_mutation PMID:16850347 V155A|N502Y False V155A,N502Y amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.872189A>G/c.464T>C/p.V155A|chrXIII:g.871122T>A/c.1504A>T/p.N502Y +YMR302C YME2 10975 yme2-9 N502Y, I761T amino_acid_mutation PMID:16850347 N502Y|I761T False N502Y,I761T amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.871122T>A/c.1504A>T/p.N502Y|chrXIII:g.870344A>G/c.2282T>C/p.I761T +YMR309C NIP1 10990 nip1-1 I300N amino_acid_mutation PMID:9722586 I300N False amino_acid_mutation:single_aa amino_acid_mutation chrXIII:g.894528A>T/c.899T>A/p.I300N +YNL005C MRP7 11090 mrp7-A28I A28I amino_acid_mutation PMID:37115519 A28I False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.622346_622347delGCinsAT/c.82_83delGCinsAT/p.A28I +YNL005C MRP7 11091 mrp7-A28I,K30E A28I, K30E amino_acid_mutation PMID:37115519 A28I|K30E False A28I,K30E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.622346_622347delGCinsAT/c.82_83delGCinsAT/p.A28I|chrXIV:g.622341T>C/c.88A>G/p.K30E +YNL005C MRP7 11092 mrp7-K30E K30E amino_acid_mutation PMID:37115519 K30E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.622341T>C/c.88A>G/p.K30E +YNL007C SIS1 11106 sis1-E53A E53A amino_acid_mutation PMID:32497100 E53A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.619408T>G/c.158A>C/p.E53A +YNL007C SIS1 11113 sis1-N56L N56L amino_acid_mutation PMID:32497100 N56L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.619399_619400delAAinsCT/c.166_167delAAinsCT/p.N56L +YNL007C SIS1 11115 sis1-S49V S49V amino_acid_mutation PMID:32497100 S49V False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.619420_619421delTCinsGT/c.145_146delTCinsGT/p.S49V +YNL079C TPM1 11258 tpm1-1 E16K, S109P, H113L amino_acid_mutation PMID:9864365 E16K|S109P|H113L False E16K,S109P,H113L amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.479120C>T/c.46G>A/p.E16K|chrXIV:g.478841A>G/c.325T>C/p.S109P|chrXIV:g.478828T>A/c.338A>T/p.H113L +YNL079C TPM1 11260 tpm1-2 A154E amino_acid_mutation PMID:36218417,PMID:9864365 A154E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.478758G>T/c.461C>A/p.A154E +YNL082W PMS1 11273 pms1-S17P S17P amino_acid_mutation PMID:33303966 S17P False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.473439T>C/c.49T>C/p.S17P +YNL085W MKT1 11279 mkt1-D30G D30G amino_acid_mutation PMID:16273108 D30G False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.467219A>G/c.89A>G/p.D30G +YNL088W TOP2 11282 top2-1-310YG S9Y, D10G amino_acid_mutation PMID:16364307 S9Y|D10G False S9Y,D10G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.457729C>A/c.26C>A/p.S9Y|chrXIV:g.457732A>G/c.29A>G/p.D10G +YNL098C RAS2 11341 RAS2-(GLC5-1) E70K amino_acid_mutation PMID:8150278 E70K False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.440363C>T/c.208G>A/p.E70K +YNL098C RAS2 11344 RAS2-val19 G19V amino_acid_mutation PMID:17919965,PMID:18081742,PMID:18936098,PMID:9228053 G19V False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.440515C>A/c.56G>T/p.G19V|chrXIV:g.440515C>A/c.56G>T/p.G19V +YNL098C RAS2 11346 RAS2val19 G19V amino_acid_mutation PMID:12586694,PMID:15016820,PMID:1547504,PMID:16292676,PMID:17710147,PMID:2981630,PMID:33198745,PMID:6327067 G19V False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.440515C>A/c.56G>T/p.G19V|chrXIV:g.440515C>A/c.56G>T/p.G19V +YNL098C RAS2 11357 ras2ser-42 T42S amino_acid_mutation PMID:8034612 T42S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.440447T>A/c.124A>T/p.T42S +YNL116W DMA2 11400 dma2-C451A C451A amino_acid_mutation PMID:23442799,PMID:33933452 C451A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.409691_409692delTGinsGC/c.1351_1352delTGinsGC/p.C451A +YNL116W DMA2 11401 dma2-R299A R299A amino_acid_mutation PMID:23442799,PMID:33933452 R299A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.409235_409236delCGinsGC/c.895_896delCGinsGC/p.R299A +YNL118C DCP2 11404 dcp2-S137E S137E amino_acid_mutation PMID:20513766 S137E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.405154_405156delTCTinsGAG/c.409_411delTCTinsGAG/p.S137E +YNL131W TOM22 11416 tom22-(mas22-4) N55R, E56K amino_acid_mutation PMID:8557051 N55R|E56K False N55R,E56K amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.378930_378931delATinsGG/c.164_165delATinsGG/p.N55R|chrXIV:g.378932G>A/c.166G>A/p.E56K +YNL135C FPR1 11427 fpr1-(rbp1-23) Y89D amino_acid_mutation PMID:8325502 Y89D False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.371962A>C/c.265T>G/p.Y89D +YNL135C FPR1 11428 fpr1-10 G65V amino_acid_mutation PMID:1715094 G65V False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.372033C>A/c.194G>T/p.G65V +YNL135C FPR1 11429 fpr1-11 L81S amino_acid_mutation PMID:1715094 L81S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.371985A>G/c.242T>C/p.L81S +YNL135C FPR1 11430 fpr1-12 E109* partial_amino_acid_deletion PMID:1715094 E109* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXIV:g.371902C>A/c.325G>T/p.E109* +YNL135C FPR1 11431 fpr1-4 M1I amino_acid_mutation PMID:1715094 M1I False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.372224C>G/c.3G>C/p.M1I +YNL135C FPR1 11432 fpr1-5 P23R amino_acid_mutation PMID:1715094 P23R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.372159G>C/c.68C>G/p.P23R +YNL135C FPR1 11433 fpr1-6 H32P amino_acid_mutation PMID:1715094 H32P False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.372136T>G/c.95A>C/p.H32P +YNL135C FPR1 11434 fpr1-7 G35D amino_acid_mutation PMID:1715094 G35D False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.372123C>T/c.104G>A/p.G35D +YNL135C FPR1 11435 fpr1-8 G65D amino_acid_mutation PMID:1715094 G65D False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.372033C>T/c.194G>A/p.G65D +YNL135C FPR1 11436 fpr1-9 G65C amino_acid_mutation PMID:1715094 G65C False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.372034C>A/c.193G>T/p.G65C +YNL158W PGA1 11466 pga1-1 F20I, M64T, T74P, D75G, I107F, N111S, T126A, Y144H, P152S, Y169H amino_acid_mutation PMID:17615295 F20I|M64T|T74P|D75G|I107F|N111S|T126A|Y144H|P152S|Y169H False F20I,M64T,T74P,D75G,I107F,N111S,T126A,Y144H,P152S,Y169H amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.339669T>A/c.58T>A/p.F20I|chrXIV:g.339802T>C/c.191T>C/p.M64T|chrXIV:g.339831A>C/c.220A>C/p.T74P|chrXIV:g.339835A>G/c.224A>G/p.D75G|chrXIV:g.339930A>T/c.319A>T/p.I107F|chrXIV:g.339943A>G/c.332A>G/p.N111S|chrXIV:g.339987A>G/c.376A>G/p.T126A|chrXIV:g.340041T>C/c.430T>C/p.Y144H|chrXIV:g.340065C>T/c.454C>T/p.P152S|chrXIV:g.340116T>C/c.505T>C/p.Y169H +YNL158W PGA1 11469 pga1-ts T25A, I28T, K40R, K98N, E147G amino_acid_mutation PMID:18439903,PMID:34544143 T25A|I28T|K40R|K98N|E147G False T25A,I28T,K40R,K98N,E147G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.339684A>G/c.73A>G/p.T25A|chrXIV:g.339694T>C/c.83T>C/p.I28T|chrXIV:g.339730A>G/c.119A>G/p.K40R|chrXIV:g.339905A>C/c.294A>C/p.K98N|chrXIV:g.340051A>G/c.440A>G/p.E147G +YNL161W CBK1 11470 CBK1-S745F S745F amino_acid_mutation PMID:19967545 S745F False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.334830C>T/c.2234C>T/p.S745F +YNL167C SKO1 11503 sko1(E) S108A, T113A, S126A amino_acid_mutation PMID:11230135 S108A|T113A|S126A False S108A,T113A,S126A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.321038A>C/c.322T>G/p.S108A|chrXIV:g.321023T>C/c.337A>G/p.T113A|chrXIV:g.320984A>C/c.376T>G/p.S126A +YNL189W SRP1 11541 srp1-55 R55A amino_acid_mutation PMID:18984568 R55A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.284422_284423delAGinsGC/c.163_164delAGinsGC/p.R55A +YNL207W RIO2 11560 RIO2-D253A D253A amino_acid_mutation PMID:24948609 D253A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.255992A>C/c.758A>C/p.D253A +YNL216W RAP1 11569 rap1-11 R747S amino_acid_mutation PMID:1881914 R747S False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.243927C>A/c.2239C>A/p.R747S +YNL216W RAP1 11570 rap1-12 G726E, D727N amino_acid_mutation PMID:1881914,PMID:18840651,PMID:37042812 G726E|D727N False G726E,D727N amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.243865G>A/c.2177G>A/p.G726E|chrXIV:g.243747G>A/c.2179G>A/p.D727N +YNL216W RAP1 11571 rap1-13 D727A amino_acid_mutation PMID:1881914 D727A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.243748A>C/c.2180A>C/p.D727A +YNL216W RAP1 11572 rap1-14 G726E amino_acid_mutation PMID:1881914 G726E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.243865G>A/c.2177G>A/p.G726E +YNL243W SLA2 11610 sla2-∆Ub L212A, D218A amino_acid_mutation PMID:34821552 L212A|D218A False L212A,D218A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.188684_188685delTTinsGC/c.634_635delTTinsGC/p.L212A|chrXIV:g.188703A>C/c.653A>C/p.D218A +YNL250W RAD50 11643 rad50-ho N121A, D124N amino_acid_mutation PMID:35501303 N121A|D124N False N121A,D124N amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.175770_175771delAAinsGC/c.361_362delAAinsGC/p.N121A|chrXIV:g.175779G>A/c.370G>A/p.D124N +YNL250W RAD50 11644 rad50-lo L116A, I119A, T127A, L128A amino_acid_mutation PMID:35501303 L116A|I119A|T127A|L128A False L116A,I119A,T127A,L128A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.175755_175756delTTinsGC/c.346_347delTTinsGC/p.L116A|chrXIV:g.175764_175765delATinsGC/c.355_356delATinsGC/p.I119A|chrXIV:g.175788A>G/c.379A>G/p.T127A|chrXIV:g.175791_175792delTTinsGC/c.382_383delTTinsGC/p.L128A +YNL250W RAD50 11645 rad50S K81I amino_acid_mutation PMID:25831494,PMID:34158470 K81I False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.175651A>T/c.242A>T/p.K81I +YNL262W POL2 11697 pol2-M644G M644G amino_acid_mutation PMID:20729855,PMID:28325498,PMID:31311768,PMID:33764464,PMID:34407997,PMID:34551434,PMID:36198268,PMID:36533450 M644G False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.150141_150142delATinsGG/c.1930_1931delATinsGG/p.M644G +YNL262W POL2 11698 pol2-M644L M644L amino_acid_mutation PMID:20729855,PMID:32187369 M644L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.150141A>C/c.1930A>C/p.M644L +YNL262W POL2 11700 pol2-N378K,D290A,E292A D290A, E292A, N378K amino_acid_mutation PMID:35037018 D290A|E292A|N378K False D290A,E292A,N378K amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.149080A>C/c.869A>C/p.D290A|chrXIV:g.149086A>C/c.875A>C/p.E292A|chrXIV:g.149345T>G/c.1134T>G/p.N378K +YNL262W POL2 11710 pol2-Y473F,D290A,E292A D290A, E292A, Y473F amino_acid_mutation PMID:35037018 D290A|E292A|Y473F False D290A,E292A,Y473F amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.149080A>C/c.869A>C/p.D290A|chrXIV:g.149086A>C/c.875A>C/p.E292A|chrXIV:g.149629A>T/c.1418A>T/p.Y473F +YNL265C IST1 11717 ist1-E74A E74A amino_acid_mutation PMID:26515066,PMID:36125415 E74A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.144956T>G/c.221A>C/p.E74A +YNL265C IST1 11718 ist1-K135A K135A amino_acid_mutation PMID:26515066,PMID:36125415 K135A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.144773_144774delAAinsGC/c.403_404delAAinsGC/p.K135A +YNL265C IST1 11719 ist1-K52D K52D amino_acid_mutation PMID:26515066,PMID:36125415 K52D False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.145021_145023delAAGinsGAC/c.154_156delAAGinsGAC/p.K52D +YNL267W PIK1 11727 pik1-101 S1045F amino_acid_mutation PMID:10587649,PMID:11916983,PMID:18172025,PMID:20493815 S1045F False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.144011C>T/c.3134C>T/p.S1045F +YNL271C BNI1 11741 bni1-S1819A,S1820A S1819A, S1820A amino_acid_mutation PMID:15923184,PMID:35134079 S1819A|S1820A False S1819A,S1820A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.129929A>C/c.5455T>G/p.S1819A|chrXIV:g.129926A>C/c.5458T>G/p.S1820A +YNL275W BOR1 11757 bor1-D347A D347A amino_acid_mutation PMID:27601653,PMID:36837738 D347A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.120307A>C/c.1040A>C/p.D347A +YNL275W BOR1 11758 bor1-D347E D347E amino_acid_mutation PMID:36837738 D347E False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.120308T>G/c.1041T>G/p.D347E +YNL275W BOR1 11759 bor1-D347N D347N amino_acid_mutation PMID:36837738 D347N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.120306G>A/c.1039G>A/p.D347N +YNL275W BOR1 11760 bor1-D371Y D371Y amino_acid_mutation PMID:36837738 D371Y False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.120378G>T/c.1111G>T/p.D371Y +YNL275W BOR1 11761 bor1-G135R G135R amino_acid_mutation PMID:36837738 G135R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.119670G>C/c.403G>C/p.G135R +YNL275W BOR1 11762 bor1-G458R G458R amino_acid_mutation PMID:36837738 G458R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.120639G>C/c.1372G>C/p.G458R +YNL275W BOR1 11763 bor1-N391A N391A amino_acid_mutation PMID:27601653 N391A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.120438_120439delAAinsGC/c.1171_1172delAAinsGC/p.N391A +YNL275W BOR1 11764 bor1-N96A N96A amino_acid_mutation PMID:36837738 N96A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.119553_119554delAAinsGC/c.286_287delAAinsGC/p.N96A +YNL275W BOR1 11765 bor1-Q396A Q396A amino_acid_mutation PMID:27601653 Q396A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.120453_120454delCAinsGC/c.1186_1187delCAinsGC/p.Q396A +YNL275W BOR1 11766 bor1-R420Q R420Q amino_acid_mutation PMID:36837738 R420Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.120525_120526delAGinsCA/c.1258_1259delAGinsCA/p.R420Q +YNL275W BOR1 11767 bor1-T145A T145A amino_acid_mutation PMID:27601653 T145A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.119700A>G/c.433A>G/p.T145A +YNL275W BOR1 11768 bor1-T422R T422R amino_acid_mutation PMID:36837738 T422R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.120532C>G/c.1265C>G/p.T422R +YNL275W BOR1 11769 bor1-Y212A Y212A amino_acid_mutation PMID:36837738 Y212A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.119901_119902delTAinsGC/c.634_635delTAinsGC/p.Y212A +YNL275W BOR1 11770 bor1-Y212F Y212F amino_acid_mutation PMID:36837738 Y212F False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.119902A>T/c.635A>T/p.Y212F +YNL304W YPT11 11806 ypt11-M1I M1I amino_acid_mutation PMID:23427260 M1I False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.60299G>C/c.3G>C/p.M1I +YNL304W YPT11 11807 ypt11-Q232L Q232L amino_acid_mutation PMID:23427260 Q232L False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.60991A>T/c.695A>T/p.Q232L +YNL304W YPT11 11808 ypt11-S158A S158A amino_acid_mutation PMID:23427260 S158A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.60768_60769delAGinsGC/c.472_473delAGinsGC/p.S158A +YNL304W YPT11 11809 ypt11-S158A,S159A S158A, S159A amino_acid_mutation PMID:23427260 S158A|S159A False S158A,S159A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.60768_60769delAGinsGC/c.472_473delAGinsGC/p.S158A|chrXIV:g.60771T>G/c.475T>G/p.S159A +YNL304W YPT11 11810 ypt11-S77A,S79A,S80A,S158A,S159A S77A, S79A, S80A, S158A, S159A amino_acid_mutation PMID:23427260 S77A|S79A|S80A|S158A|S159A False S77A,S79A,S80A,S158A,S159A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.60525T>G/c.229T>G/p.S77A|chrXIV:g.60531_60532delAGinsGC/c.235_236delAGinsGC/p.S79A|chrXIV:g.60534_60535delAGinsGC/c.238_239delAGinsGC/p.S80A|chrXIV:g.60768_60769delAGinsGC/c.472_473delAGinsGC/p.S158A|chrXIV:g.60771T>G/c.475T>G/p.S159A +YNL304W YPT11 11811 ypt11-S8A S8A amino_acid_mutation PMID:23427260 S8A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.60318T>G/c.22T>G/p.S8A +YNL304W YPT11 11812 ypt11-S8A,S158A,S159A S8A, S158A, S159A amino_acid_mutation PMID:23427260 S8A|S158A|S159A False S8A,S158A,S159A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.60318T>G/c.22T>G/p.S8A|chrXIV:g.60768_60769delAGinsGC/c.472_473delAGinsGC/p.S158A|chrXIV:g.60771T>G/c.475T>G/p.S159A +YNL304W YPT11 11813 ypt11-S8A,S77A,S79A,S80A,S158A,S159A S8A, S77A, S79A, S80A, S158A, S159A amino_acid_mutation PMID:23427260 S8A|S77A|S79A|S80A|S158A|S159A False S8A,S77A,S79A,S80A,S158A,S159A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.60318T>G/c.22T>G/p.S8A|chrXIV:g.60525T>G/c.229T>G/p.S77A|chrXIV:g.60531_60532delAGinsGC/c.235_236delAGinsGC/p.S79A|chrXIV:g.60534_60535delAGinsGC/c.238_239delAGinsGC/p.S80A|chrXIV:g.60768_60769delAGinsGC/c.472_473delAGinsGC/p.S158A|chrXIV:g.60771T>G/c.475T>G/p.S159A +YNL304W YPT11 11814 ypt11-T104N T104N amino_acid_mutation PMID:23427260 T104N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.60607_60608delCAinsAC/c.311_312delCAinsAC/p.T104N +YNL307C MCK1 11818 mck1-D164A D164A amino_acid_mutation PMID:11877433,PMID:22918234,PMID:36321416 D164A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.57083T>G/c.491A>C/p.D164A +YNL312W RFA2 11823 rfa2-2 C173stop partial_amino_acid_deletion PMID:7500336 C173stop False C173* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrXIV:g.48913T>A/c.519T>A/p.C173* +YNL313C EMW1 11829 emw1-1 L10S, V422G, Y435C amino_acid_mutation PMID:21273246 L10S|V422G|Y435C False L10S,V422G,Y435C amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.47994A>G/c.29T>C/p.L10S|chrXIV:g.46758A>C/c.1265T>G/p.V422G|chrXIV:g.46719T>C/c.1304A>G/p.Y435C +YNL325C FIG4 11837 fig4-1 G519R amino_acid_mutation PMID:11950935 G519R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.29824C>T/c.1555G>A/p.G519R +YNL325C FIG4 11838 fig4-I59T I59T amino_acid_mutation PMID:17572665 I59T False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.31203A>G/c.176T>C/p.I59T +YNR002C ATO2 11844 ATO2-G258D G258D amino_acid_mutation PMID:17233767 G258D False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.633084C>T/c.773G>A/p.G258D +YNR002C ATO2 11845 ATO2-L74Q L74Q amino_acid_mutation PMID:17233767 L74Q False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.633636A>T/c.221T>A/p.L74Q +YNR016C ACC1 11870 ACC1-(S686A,S659A,S1157A) S686A, S659A, S1157A amino_acid_mutation PMID:29422886,PMID:37172280 S686A|S659A|S1157A False S686A,S659A,S1157A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.659319A>C/c.2056T>G/p.S686A|chrXIV:g.659400A>C/c.1975T>G/p.S659A|chrXIV:g.657906A>C/c.3469T>G/p.S1157A +YNR016C ACC1 11874 acc1-AA S1157A amino_acid_mutation PMID:34315498 S1157A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.657906A>C/c.3469T>G/p.S1157A|chrXIV:g.657906A>C/c.3469T>G/p.S1157A +YNR016C ACC1 11878 acc1-S1157A S1157A amino_acid_mutation PMID:24803522,PMID:25078432,PMID:28294288,PMID:31209110,PMID:35608294,PMID:36409888 S1157A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.657906A>C/c.3469T>G/p.S1157A|chrXIV:g.657906A>C/c.3469T>G/p.S1157A +YNR016C ACC1 11879 acc1-S659A,S1157A S659A, S1157A amino_acid_mutation PMID:24803522,PMID:26344106,PMID:36534476,PMID:36890537,PMID:37031180,PMID:37076829 S659A|S1157A False S659A,S1157A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.659400A>C/c.1975T>G/p.S659A|chrXIV:g.657906A>C/c.3469T>G/p.S1157A +YNR017W TIM23 11882 tim23-D167A D167A amino_acid_mutation PMID:37344598 D167A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663412A>C/c.500A>C/p.D167A +YNR017W TIM23 11883 tim23-D167N D167N amino_acid_mutation PMID:37344598 D167N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663411G>A/c.499G>A/p.D167N +YNR017W TIM23 11884 tim23-D167R D167R amino_acid_mutation PMID:37344598 D167R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663411_663412delGAinsCG/c.499_500delGAinsCG/p.D167R +YNR017W TIM23 11885 tim23-D95N D95N amino_acid_mutation PMID:37344598 D95N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663195G>A/c.283G>A/p.D95N +YNR017W TIM23 11886 tim23-D96A D96A amino_acid_mutation PMID:37344598 D96A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663199A>C/c.287A>C/p.D96A +YNR017W TIM23 11887 tim23-D96A,D167A D96A, D167A amino_acid_mutation PMID:37344598 D96A|D167A False D96A,D167A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663199A>C/c.287A>C/p.D96A|chrXIV:g.663412A>C/c.500A>C/p.D167A +YNR017W TIM23 11888 tim23-D96N D96N amino_acid_mutation PMID:37344598 D96N False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663198G>A/c.286G>A/p.D96N +YNR017W TIM23 11889 tim23-D96N,N160A,N163A D96N, N160A, N163A amino_acid_mutation PMID:37344598 D96N|N160A|N163A False D96N,N160A,N163A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663198G>A/c.286G>A/p.D96N|chrXIV:g.663390_663391delAAinsGC/c.478_479delAAinsGC/p.N160A|chrXIV:g.663399_663400delAAinsGC/c.487_488delAAinsGC/p.N163A +YNR017W TIM23 11890 tim23-D96R D96R amino_acid_mutation PMID:37344598 D96R False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663198_663199delGAinsCG/c.286_287delGAinsCG/p.D96R +YNR017W TIM23 11897 tim23-N160A,N163A N160A, N163A amino_acid_mutation PMID:37344598 N160A|N163A False N160A,N163A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.663390_663391delAAinsGC/c.478_479delAAinsGC/p.N160A|chrXIV:g.663399_663400delAAinsGC/c.487_488delAAinsGC/p.N163A +YNR035C ARC35 11927 arc35-101 D50A, K51A amino_acid_mutation PMID:18381280 D50A|K51A False D50A,K51A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.693899T>G/c.149A>C/p.D50A|chrXIV:g.693896_693897delAAinsGC/c.151_152delAAinsGC/p.K51A +YNR035C ARC35 11928 arc35-102 K79A amino_acid_mutation PMID:18381280 K79A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.693812_693813delAAinsGC/c.235_236delAAinsGC/p.K79A +YNR035C ARC35 11929 arc35-103 R173A, D174A, E175A amino_acid_mutation PMID:18381280 R173A|D174A|E175A False R173A,D174A,E175A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.693530_693531delCGinsGC/c.517_518delCGinsGC/p.R173A|chrXIV:g.693527T>G/c.521A>C/p.D174A|chrXIV:g.693524T>G/c.524A>C/p.E175A +YNR035C ARC35 11930 arc35-104 D185A, R186A amino_acid_mutation PMID:18381280 D185A|R186A False D185A,R186A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.693494T>G/c.554A>C/p.D185A|chrXIV:g.693491_693492delAGinsGC/c.556_557delAGinsGC/p.R186A +YNR035C ARC35 11931 arc35-105 K205A, V206A, Q209A amino_acid_mutation PMID:18381280 K205A|V206A|Q209A False K205A,V206A,Q209A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.693434_693435delAAinsGC/c.613_614delAAinsGC/p.K205A|chrXIV:g.693431A>G/c.617T>C/p.V206A|chrXIV:g.693422_693423delCAinsGC/c.625_626delCAinsGC/p.Q209A +YNR035C ARC35 11932 arc35-106 D213A, R251A, K216A, R217A amino_acid_mutation PMID:18381280 D213A|R251A|K216A|R217A False D213A,R251A,K216A,R217A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.693410T>G/c.638A>C/p.D213A|chrXIV:g.693296_693297delAGinsGC/c.751_752delAGinsGC/p.R251A|chrXIV:g.693401_693402delAAinsGC/c.646_647delAAinsGC/p.K216A|chrXIV:g.693398_693399delAGinsGC/c.649_650delAGinsGC/p.R217A +YNR035C ARC35 11933 arc35-107 H231A, E232A amino_acid_mutation PMID:18381280 H231A|E232A False H231A,E232A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.693356_693357delCAinsGC/c.691_692delCAinsGC/p.H231A|chrXIV:g.693353T>G/c.695A>C/p.E232A +YNR035C ARC35 11934 arc35-108 L235A, E236A, K238A amino_acid_mutation PMID:18381280 L235A|E236A|K238A False L235A,E236A,K238A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.693344_693345delTTinsGC/c.703_704delTTinsGC/p.L235A|chrXIV:g.693341T>G/c.707A>C/p.E236A|chrXIV:g.693335_693336delAAinsGC/c.712_713delAAinsGC/p.K238A +YNR035C ARC35 11935 arc35-109 F259A, R261A amino_acid_mutation PMID:18381280 F259A|R261A False F259A,R261A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.693272_693273delTTinsGC/c.775_776delTTinsGC/p.F259A|chrXIV:g.693266_693267delCGinsGC/c.781_782delCGinsGC/p.R261A +YNR035C ARC35 11936 arc35-110 L228K amino_acid_mutation PMID:18381280 L228K False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.693365_693366delTTinsAA/c.682_683delTTinsAA/p.L228K +YNR035C ARC35 11937 arc35-111 K61A amino_acid_mutation PMID:18381280 K61A False amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.693866_693867delAAinsGC/c.181_182delAAinsGC/p.K61A +YNR035C ARC35 11939 arc35-113 R297A, R299A, R301A amino_acid_mutation PMID:18381280 R297A|R299A|R301A False R297A,R299A,R301A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.693158_693159delAGinsGC/c.889_890delAGinsGC/p.R297A|chrXIV:g.693152_693153delAGinsGC/c.895_896delAGinsGC/p.R299A|chrXIV:g.693146_693147delAGinsGC/c.901_902delAGinsGC/p.R301A +YNR035C ARC35 11940 arc35-114 S223A, Q226A amino_acid_mutation PMID:18381280 S223A|Q226A False S223A,Q226A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.693381A>C/c.667T>G/p.S223A|chrXIV:g.693371_693372delCAinsGC/c.676_677delCAinsGC/p.Q226A +YNR047W FPK1 11961 fpk1-(S37A T244A S481A) S37A, T244A, S481A amino_acid_mutation PMID:19966303 S37A|T244A|S481A False S37A,T244A,S481A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXIV:g.708631T>G/c.109T>G/p.S37A|chrXIV:g.709252A>G/c.730A>G/p.T244A|chrXIV:g.709963T>G/c.1441T>G/p.S481A +YOL003C PFA4 12004 pfa4-DHHA C108A amino_acid_mutation PMID:16818716 C108A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.322672_322673delTGinsGC/c.322_323delTGinsGC/p.C108A +YOL006C TOP1 12013 top1-4KR K65R, K91R, K92R, K600R amino_acid_mutation PMID:34818558 K65R|K91R|K92R|K600R False K65R,K91R,K92R,K600R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.315194T>C/c.194A>G/p.K65R|chrXV:g.315116T>C/c.272A>G/p.K91R|chrXV:g.315113T>C/c.275A>G/p.K92R|chrXV:g.313589T>C/c.1799A>G/p.K600R +YOL013C HRD1 12042 hrd1-C399S C399S amino_acid_mutation PMID:10218484,PMID:31713515,PMID:32891886 C399S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.301841A>T/c.1195T>A/p.C399S +YOL021C DIS3 12094 dis3-D171N D171N amino_acid_mutation PMID:19060886 D171N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.284916C>T/c.511G>A/p.D171N +YOL021C DIS3 12095 dis3-D171N,D551N D171N, D551N amino_acid_mutation PMID:19060886 D171N|D551N False D171N,D551N amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.284916C>T/c.511G>A/p.D171N|chrXV:g.283776C>T/c.1651G>A/p.D551N +YOL021C DIS3 12096 dis3-D198N D198N amino_acid_mutation PMID:19060886 D198N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.284835C>T/c.592G>A/p.D198N +YOL021C DIS3 12103 dis3-ts I99T, R144S, S360P, L372M, A374T, R435G, E501G, I736V, F801S, M813T amino_acid_mutation PMID:18439903,PMID:21552543,PMID:30724665 I99T|R144S|S360P|L372M|A374T|R435G|E501G|I736V|F801S|M813T False I99T,R144S,S360P,L372M,A374T,R435G,E501G,I736V,F801S,M813T amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.285131A>G/c.296T>C/p.I99T|chrXV:g.284995T>G/c.432A>C/p.R144S|chrXV:g.284349A>G/c.1078T>C/p.S360P|chrXV:g.284313G>T/c.1114C>A/p.L372M|chrXV:g.284307C>T/c.1120G>A/p.A374T|chrXV:g.284124T>C/c.1303A>G/p.R435G|chrXV:g.283925T>C/c.1502A>G/p.E501G|chrXV:g.283221T>C/c.2206A>G/p.I736V|chrXV:g.283025A>G/c.2402T>C/p.F801S|chrXV:g.282989A>G/c.2438T>C/p.M813T +YOL034W SMC5 12113 smc5-1A K89A amino_acid_mutation PMID:37012407 K89A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.260187_260188delAAinsGC/c.265_266delAAinsGC/p.K89A +YOL034W SMC5 12114 smc5-1E K89E amino_acid_mutation PMID:37012407 K89E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.260187A>G/c.265A>G/p.K89E +YOL034W SMC5 12115 smc5-2A R139A, R143A amino_acid_mutation PMID:37012407 R139A|R143A False R139A,R143A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.260337_260338delAGinsGC/c.415_416delAGinsGC/p.R139A|chrXV:g.260349_260350delAGinsGC/c.427_428delAGinsGC/p.R143A +YOL034W SMC5 12116 smc5-2E R139E, R143E amino_acid_mutation PMID:37012407 R139E|R143E False R139E,R143E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.260337_260338delAGinsGA/c.415_416delAGinsGA/p.R139E|chrXV:g.260349_260350delAGinsGA/c.427_428delAGinsGA/p.R143E +YOL034W SMC5 12119 smc5-3A K89A, R139A, R143A amino_acid_mutation PMID:37012407 K89A|R139A|R143A False K89A,R139A,R143A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.260187_260188delAAinsGC/c.265_266delAAinsGC/p.K89A|chrXV:g.260337_260338delAGinsGC/c.415_416delAGinsGC/p.R139A|chrXV:g.260349_260350delAGinsGC/c.427_428delAGinsGC/p.R143A +YOL034W SMC5 12120 smc5-3E K89E, R139E, R143E amino_acid_mutation PMID:37012407 K89E|R139E|R143E False K89E,R139E,R143E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.260187A>G/c.265A>G/p.K89E|chrXV:g.260337_260338delAGinsGA/c.415_416delAGinsGA/p.R139E|chrXV:g.260349_260350delAGinsGA/c.427_428delAGinsGA/p.R143E +YOL040C RPS15 12134 rps15-EE E110K, E118K amino_acid_mutation PMID:35031584 E110K|E118K False E110K,E118K amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.253250C>T/c.328G>A/p.E110K|chrXV:g.253226C>T/c.352G>A/p.E118K +YOL040C RPS15 12144 rps15-YRR Y123I, R127E, R130E amino_acid_mutation PMID:35031584 Y123I|R127E|R130E False Y123I,R127E,R130E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.253210_253211delTAinsAT/c.367_368delTAinsAT/p.Y123I|chrXV:g.253250_253251delAGinsGA/c.379_380delAGinsGA/p.R127E|chrXV:g.253189_253190delAGinsGA/c.388_389delAGinsGA/p.R130E +YOL094C RFC4 12272 rfc4R K55R amino_acid_mutation PMID:11549622 K55R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.142392T>C/c.164A>G/p.K55R +YOL123W HRP1 12290 hrp1-(nab4-1) N167D, F179Y, P194H, Q265L amino_acid_mutation PMID:9857200 N167D|F179Y|P194H|Q265L False N167D,F179Y,P194H,Q265L amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.88342A>G/c.499A>G/p.N167D|chrXV:g.88379T>A/c.536T>A/p.F179Y|chrXV:g.88424C>A/c.581C>A/p.P194H|chrXV:g.88637A>T/c.794A>T/p.Q265L +YOL123W HRP1 12291 hrp1-(nab4-9) L205S amino_acid_mutation PMID:17194212,PMID:9857200 L205S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.88457T>C/c.614T>C/p.L205S +YOR001W RRP6 12329 rrp6-1 D238N amino_acid_mutation PMID:10611239,PMID:9582370 D238N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.327543G>A/c.712G>A/p.D238N +YOR001W RRP6 12333 rrp6-Y361A Y361A amino_acid_mutation PMID:16882719 Y361A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.327912_327913delTAinsGC/c.1081_1082delTAinsGC/p.Y361A +YOR008C SLG1 12355 slg1-8C>A C27A, C49A, C53A, C69A, C71A, C86A, C90A, C98A amino_acid_mutation PMID:37379203 C27A|C49A|C53A|C69A|C71A|C86A|C90A|C98A False C27A,C49A,C53A,C69A,C71A,C86A,C90A,C98A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.342335_342336delTGinsGC/c.79_80delTGinsGC/p.C27A|chrXV:g.342269_342270delTGinsGC/c.145_146delTGinsGC/p.C49A|chrXV:g.342257_342258delTGinsGC/c.157_158delTGinsGC/p.C53A|chrXV:g.342209_342210delTGinsGC/c.205_206delTGinsGC/p.C69A|chrXV:g.342203_342204delTGinsGC/c.211_212delTGinsGC/p.C71A|chrXV:g.342158_342159delTGinsGC/c.256_257delTGinsGC/p.C86A|chrXV:g.342146_342147delTGinsGC/c.268_269delTGinsGC/p.C90A|chrXV:g.342122_342123delTGinsGC/c.292_293delTGinsGC/p.C98A +YOR008C SLG1 12356 slg1-NPF>AAA N344A, P345A, F346A amino_acid_mutation PMID:17065552,PMID:37379203 N344A|P345A|F346A False N344A,P345A,F346A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.341384_341385delAAinsGC/c.1030_1031delAAinsGC/p.N344A|chrXV:g.341382G>C/c.1033C>G/p.P345A|chrXV:g.341378_341379delTTinsGC/c.1036_1037delTTinsGC/p.F346A +YOR008C SLG1 12359 slg1-Y303A Y303A amino_acid_mutation PMID:37379203 Y303A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.341507_341508delTAinsGC/c.907_908delTAinsGC/p.Y303A +YOR020C HSP10 12373 hsp10-ts P36H amino_acid_mutation PMID:27708008,PMID:34544143 P36H False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.370738G>T/c.107C>A/p.P36H +YOR033C EXO1 12380 exo1-SA S372A,S567A,S586A,S692A amino_acid_mutation PMID:23122649 S372A|S567A|S586A|S692A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.393411A>C/c.1114T>G/p.S372A|chrXV:g.392826A>C/c.1699T>G/p.S567A|chrXV:g.392769A>C/c.1756T>G/p.S586A|chrXV:g.392451A>C/c.2074T>G/p.S692A +YOR048C RAT1 12401 rat1-1 Y657C amino_acid_mutation PMID:1628825,PMID:16598041,PMID:19026778,PMID:19324962,PMID:23962978,PMID:24501251,PMID:27708008,PMID:33649230,PMID:9488433 Y657C False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.419681T>C/c.1970A>G/p.Y657C +YOR061W CKA2 12422 cka2-11 D225N, E299K amino_acid_mutation PMID:19039653 D225N|E299K False D225N,E299K amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.442206G>A/c.673G>A/p.D225N|chrXV:g.442428G>A/c.895G>A/p.E299K +YOR061W CKA2 12423 cka2-12 A190V amino_acid_mutation PMID:19039653 A190V False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.442102C>T/c.569C>T/p.A190V +YOR061W CKA2 12424 cka2-13 D225N amino_acid_mutation PMID:19039653 D225N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.442206G>A/c.673G>A/p.D225N +YOR061W CKA2 12425 cka2-7 A190T amino_acid_mutation PMID:19039653 A190T False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.442101G>A/c.568G>A/p.A190T +YOR061W CKA2 12426 cka2-8 E51K, G102N amino_acid_mutation PMID:19039653 E51K|G102N False E51K,G102N amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.441684G>A/c.151G>A/p.E51K|chrXV:g.441837_441838delGGinsAA/c.304_305delGGinsAA/p.G102N +YOR074C CDC21 12469 cdc21-1 G139S amino_acid_mutation PMID:19362086,PMID:23962978,PMID:27708008,PMID:6223209 G139S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.467175C>T/c.415G>A/p.G139S +YOR083W WHI5 12481 Whi5-4E S154E, S156E, S161E, S262E amino_acid_mutation PMID:27094800 S154E|S156E|S161E|S262E False S154E,S156E,S161E,S262E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.479992_479993delTCinsGA/c.460_461delTCinsGA/p.S154E|chrXV:g.479998_479999delTCinsGA/c.466_467delTCinsGA/p.S156E|chrXV:g.480013_480014delTCinsGA/c.481_482delTCinsGA/p.S161E|chrXV:g.480316_480317delTCinsGA/c.784_785delTCinsGA/p.S262E +YOR087W YVC1 12493 yvc1-C17A C17A amino_acid_mutation PMID:27708136 C17A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.487755_487756delTGinsGC/c.49_50delTGinsGC/p.C17A +YOR101W RAS1 12509 RAS1-Ser22 G22S amino_acid_mutation PMID:8246881 G22S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.515307G>A/c.64G>A/p.G22S +YOR109W INP53 12520 inp53-sac1 C421A, C424A, R427A amino_acid_mutation PMID:12686590 C421A|C424A|R427A False C421A,C424A,R427A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.526538_526539delTGinsGC/c.1261_1262delTGinsGC/p.C421A|chrXV:g.526547_526548delTGinsGC/c.1270_1271delTGinsGC/p.C424A|chrXV:g.526556_526557delAGinsGC/c.1279_1280delAGinsGC/p.R427A +YOR116C RPO31 12525 rpc160-112 T506I,N509Y amino_acid_mutation PMID:11454743 T506I|N509Y False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.542629G>A/c.1517C>T/p.T506I|chrXV:g.542855T>A/c.1525A>T/p.N509Y +YOR117W RPT5 12539 rpt5R K228R amino_acid_mutation PMID:21931558 K228R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.545711A>G/c.683A>G/p.K228R +YOR119C RIO1 12541 RIO1-D244A D244A amino_acid_mutation PMID:24948609 D244A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.549516T>G/c.731A>C/p.D244A +YOR119C RIO1 12542 RIO1-D261A D261A amino_acid_mutation PMID:24948609 D261A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.549465T>G/c.782A>C/p.D261A +YOR119C RIO1 12548 rio1-K125R K125R amino_acid_mutation PMID:11972772 K125R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.549873T>C/c.374A>G/p.K125R +YOR122C PFY1 12551 pfy1-111 R72E amino_acid_mutation PMID:12419188,PMID:8247001 R72E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.552689_552691delCGTinsGAG/c.214_216delCGTinsGAG/p.R72E +YOR125C CAT5 12559 cat5-(coq7-1) G65D amino_acid_mutation PMID:27603010 G65D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.559587C>T/c.194G>A/p.G65D +YOR125C CAT5 12561 cat5-(coq7-11) W120R, Q48R amino_acid_mutation PMID:27603010 W120R|Q48R False W120R,Q48R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.559374A>T/c.358T>A/p.W120R|chrXV:g.559589T>C/c.143A>G/p.Q48R +YOR125C CAT5 12563 cat5-(coq7-13) T32S, S182P, L195P amino_acid_mutation PMID:27603010 T32S|S182P|L195P False T32S,S182P,L195P amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.559637G>C/c.95C>G/p.T32S|chrXV:g.559188A>G/c.544T>C/p.S182P|chrXV:g.559148A>G/c.584T>C/p.L195P +YOR125C CAT5 12564 cat5-(coq7-14) V55D, Q48R amino_acid_mutation PMID:27603010 V55D|Q48R False V55D,Q48R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.559568A>T/c.164T>A/p.V55D|chrXV:g.559589T>C/c.143A>G/p.Q48R +YOR125C CAT5 12565 cat5-(coq7-15) S45P, P113S, Q48R amino_acid_mutation PMID:27603010 S45P|P113S|Q48R False S45P,P113S,Q48R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.559647_559648delAGinsCC/c.133_134delAGinsCC/p.S45P|chrXV:g.559395G>A/c.337C>T/p.P113S|chrXV:g.559589T>C/c.143A>G/p.Q48R +YOR125C CAT5 12567 cat5-(coq7-17) D59V, K174E, Q48R amino_acid_mutation PMID:27603010 D59V|K174E|Q48R False D59V,K174E,Q48R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.559556T>A/c.176A>T/p.D59V|chrXV:g.559212T>C/c.520A>G/p.K174E|chrXV:g.559589T>C/c.143A>G/p.Q48R +YOR125C CAT5 12568 cat5-(coq7-18) Q189stop, Q48R amino_acid_deletion_and_mutation PMID:27603010 Q189stop|Q48R False Q189*,Q48R nonsense_mutation:stop_codon_text|amino_acid_mutation:single_aa amino_acid_deletion_and_mutation chrXV:g.559167G>A/c.565C>T/p.Q189*|chrXV:g.559589T>C/c.143A>G/p.Q48R +YOR125C CAT5 12573 cat5-(coq7-3) L198P, Q48R amino_acid_mutation PMID:27603010 L198P|Q48R False L198P,Q48R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.559139A>G/c.593T>C/p.L198P|chrXV:g.559589T>C/c.143A>G/p.Q48R +YOR125C CAT5 12574 cat5-(coq7-4) R159stop, Q48R, I222V amino_acid_deletion_and_mutation PMID:27603010 R159stop|Q48R|I222V False R159*,Q48R,I222V nonsense_mutation:stop_codon_text|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_deletion_and_mutation chrXV:g.559257G>A/c.475C>T/p.R159*|chrXV:g.559589T>C/c.143A>G/p.Q48R|chrXV:g.559068T>C/c.664A>G/p.I222V +YOR125C CAT5 12576 cat5-(coq7-6) F15L, V58A amino_acid_mutation PMID:27603010 F15L|V58A False F15L,V58A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.559689A>G/c.43T>C/p.F15L|chrXV:g.559559A>G/c.173T>C/p.V58A +YOR125C CAT5 12577 cat5-(coq7-7) Q42R, R57H amino_acid_mutation PMID:27603010 Q42R|R57H False Q42R,R57H amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.559607T>C/c.125A>G/p.Q42R|chrXV:g.559562C>T/c.170G>A/p.R57H +YOR125C CAT5 12578 cat5-(coq7-8) V55A, V111D, Q48R amino_acid_mutation PMID:27603010 V55A|V111D|Q48R False V55A,V111D,Q48R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.559568A>G/c.164T>C/p.V55A|chrXV:g.559400A>T/c.332T>A/p.V111D|chrXV:g.559589T>C/c.143A>G/p.Q48R +YOR145C PNO1 12609 pno1-KKKF K208E, K211E, K213E, F214A amino_acid_mutation PMID:31834877 K208E|K211E|K213E|F214A False K208E,K211E,K213E,F214A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.605550T>C/c.622A>G/p.K208E|chrXV:g.605541T>C/c.631A>G/p.K211E|chrXV:g.605535T>C/c.637A>G/p.K213E|chrXV:g.605531_605532delTTinsGC/c.640_641delTTinsGC/p.F214A +YOR145C PNO1 12610 pno1-VD V225A, D228N amino_acid_mutation PMID:35031584 V225A|D228N False V225A,D228N amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.605498A>G/c.674T>C/p.V225A|chrXV:g.605490C>T/c.682G>A/p.D228N +YOR162C YRR1 12713 yrr1-I756A I756A amino_acid_mutation PMID:24532717,PMID:36899374 I756A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.639726_639727delATinsGC/c.2266_2267delATinsGC/p.I756A +YOR162C YRR1 12714 yrr1-I775A I775A amino_acid_mutation PMID:24532717,PMID:36899374 I775A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.639669_639670delATinsGC/c.2323_2324delATinsGC/p.I775A +YOR162C YRR1 12717 yrr1-S155A S155A amino_acid_mutation PMID:36899374 S155A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641530A>C/c.463T>G/p.S155A +YOR162C YRR1 12718 yrr1-S176A S176A amino_acid_mutation PMID:36899374 S176A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641467A>C/c.526T>G/p.S176A +YOR162C YRR1 12719 yrr1-S186A S186A amino_acid_mutation PMID:36899374 S186A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641437A>C/c.556T>G/p.S186A +YOR162C YRR1 12720 yrr1-S745A S745A amino_acid_mutation PMID:36899374 S745A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.639759_639760delAGinsGC/c.2233_2234delAGinsGC/p.S745A +YOR162C YRR1 12721 yrr1-T180A T180A amino_acid_mutation PMID:36899374 T180A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641455T>C/c.538A>G/p.T180A +YOR162C YRR1 12722 yrr1-T185A T185A amino_acid_mutation PMID:36899374 T185A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641440T>C/c.553A>G/p.T185A +YOR162C YRR1 12723 yrr1-T185E T185E amino_acid_mutation PMID:36899374 T185E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641438_641440delACTinsGAG/c.553_555delACTinsGAG/p.T185E +YOR162C YRR1 12725 yrr1-T38A T38A amino_acid_mutation PMID:36899374 T38A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641881T>C/c.112A>G/p.T38A +YOR162C YRR1 12726 yrr1-T610A T610A amino_acid_mutation PMID:36899374 T610A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.640165T>C/c.1828A>G/p.T610A +YOR162C YRR1 12727 yrr1-Y134A Y134A amino_acid_mutation PMID:36899374 Y134A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641592_641593delTAinsGC/c.400_401delTAinsGC/p.Y134A +YOR162C YRR1 12728 yrr1-Y134A,T185A Y134A, T185A amino_acid_mutation PMID:36899374 Y134A|T185A False Y134A,T185A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641592_641593delTAinsGC/c.400_401delTAinsGC/p.Y134A|chrXV:g.641440T>C/c.553A>G/p.T185A +YOR162C YRR1 12729 yrr1-Y134E Y134E amino_acid_mutation PMID:36899374 Y134E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641591_641593delTACinsGAG/c.400_402delTACinsGAG/p.Y134E +YOR162C YRR1 12730 yrr1-Y134E,T185E Y134E, T185E amino_acid_mutation PMID:36899374 Y134E|T185E False Y134E,T185E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.641591_641593delTACinsGAG/c.400_402delTACinsGAG/p.Y134E|chrXV:g.641438_641440delACTinsGAG/c.553_555delACTinsGAG/p.T185E +YOR181W LAS17 12744 las17-14 W41E, L133S amino_acid_mutation PMID:27708008,PMID:35587152,PMID:35768435 W41E|L133S False W41E,L133S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.676059_676060delTGinsGA/c.121_122delTGinsGA/p.W41E|chrXV:g.676336T>C/c.398T>C/p.L133S +YOR181W LAS17 12746 las17-PP P506A, P507A amino_acid_mutation PMID:23290554 P506A|P507A False P506A,P507A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.677454C>G/c.1516C>G/p.P506A|chrXV:g.677457C>G/c.1519C>G/p.P507A +YOR187W TUF1 12753 tuf1-R328Q R328Q amino_acid_mutation PMID:17160893 R328Q False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.685011_685012delAGinsCA/c.982_983delAGinsCA/p.R328Q +YOR189W IES4 12755 ies4 (S:E-2) S2E, S11E amino_acid_mutation PMID:17693258 S2E|S11E False S2E,S11E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.689627_689629delTCCinsGAG/c.4_6delTCCinsGAG/p.S2E|chrXV:g.689654_689655delTCinsGA/c.31_32delTCinsGA/p.S11E +YOR189W IES4 12756 ies4 (S:E-5) S2E, S5E, S6E, S9E, S11E amino_acid_mutation PMID:17693258 S2E|S5E|S6E|S9E|S11E False S2E,S5E,S6E,S9E,S11E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.689627_689629delTCCinsGAG/c.4_6delTCCinsGAG/p.S2E|chrXV:g.689636_689638delAGTinsGAG/c.13_15delAGTinsGAG/p.S5E|chrXV:g.689639_689641delAGTinsGAG/c.16_18delAGTinsGAG/p.S6E|chrXV:g.689648_689649delTCinsGA/c.25_26delTCinsGA/p.S9E|chrXV:g.689654_689655delTCinsGA/c.31_32delTCinsGA/p.S11E +YOR204W DED1 12773 ded1-120 G108D, G494D amino_acid_mutation PMID:26122911,PMID:34946015,PMID:9045610 G108D|G494D False G108D,G494D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.723214G>A/c.323G>A/p.G108D|chrXV:g.724391G>A/c.1481G>A/p.G494D +YOR211C MGM1 12803 mgm1-C709S C709S amino_acid_mutation PMID:32041880 C709S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739445A>T/c.2125T>A/p.C709S +YOR211C MGM1 12804 mgm1-D360A D360A amino_acid_mutation PMID:32041880 D360A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.740491T>G/c.1079A>C/p.D360A +YOR211C MGM1 12805 mgm1-D528K D528K amino_acid_mutation PMID:32041880 D528K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739986_739988delGACinsAAG/c.1582_1584delGACinsAAG/p.D528K +YOR211C MGM1 12806 mgm1-D542K D542K amino_acid_mutation PMID:32041880 D542K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739944_739946delGATinsAAG/c.1624_1626delGATinsAAG/p.D542K +YOR211C MGM1 12807 mgm1-D597K D597K amino_acid_mutation PMID:32041880 D597K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739986_739988delGACinsAAG/c.1789_1791delGACinsAAG/p.D597K +YOR211C MGM1 12808 mgm1-D652K D652K amino_acid_mutation PMID:32041880 D652K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739821_739823delGATinsAAG/c.1954_1956delGATinsAAG/p.D652K +YOR211C MGM1 12811 mgm1-E751A E751A amino_acid_mutation PMID:32041880 E751A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739318T>G/c.2252A>C/p.E751A +YOR211C MGM1 12812 mgm1-E809A E809A amino_acid_mutation PMID:32041880 E809A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739144T>G/c.2426A>C/p.E809A +YOR211C MGM1 12813 mgm1-F814D F814D amino_acid_mutation PMID:32041880 F814D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739129_739130delTTinsGA/c.2440_2441delTTinsGA/p.F814D +YOR211C MGM1 12814 mgm1-G239D G239D amino_acid_mutation PMID:32041880 G239D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.740854C>T/c.716G>A/p.G239D +YOR211C MGM1 12815 mgm1-I541D I541D amino_acid_mutation PMID:32041880 I541D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739947_739949delATAinsGAC/c.1621_1623delATAinsGAC/p.I541D +YOR211C MGM1 12816 mgm1-I820A I820A amino_acid_mutation PMID:32041880 I820A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739111_739112delATinsGC/c.2458_2459delATinsGC/p.I820A +YOR211C MGM1 12817 mgm1-K238D K238D amino_acid_mutation PMID:32041880 K238D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.740856_740858delAAAinsGAC/c.712_714delAAAinsGAC/p.K238D +YOR211C MGM1 12818 mgm1-K468A,K487A K468A, K487A amino_acid_mutation PMID:32041880 K468A|K487A False K468A,K487A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.740167_740168delAAinsGC/c.1402_1403delAAinsGC/p.K468A|chrXV:g.740110_740111delAAinsGC/c.1459_1460delAAinsGC/p.K487A +YOR211C MGM1 12819 mgm1-K468E,K487D K468E, K487D amino_acid_mutation PMID:32041880 K468E|K487D False K468E,K487D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.740168T>C/c.1402A>G/p.K468E|chrXV:g.740109_740111delAAAinsGAC/c.1459_1461delAAAinsGAC/p.K487D +YOR211C MGM1 12820 mgm1-K549A K549A amino_acid_mutation PMID:32041880 K549A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739924_739925delAAinsGC/c.1645_1646delAAinsGC/p.K549A +YOR211C MGM1 12821 mgm1-L367D L367D amino_acid_mutation PMID:32041880 L367D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.740469_740471delTTGinsGAC/c.1099_1101delTTGinsGAC/p.L367D +YOR211C MGM1 12822 mgm1-L653D L653D amino_acid_mutation PMID:32041880 L653D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739612_739613delCTinsGA/c.1957_1958delCTinsGA/p.L653D +YOR211C MGM1 12823 mgm1-L826D L826D amino_acid_mutation PMID:32041880 L826D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739092_739094delTTAinsGAC/c.2476_2478delTTAinsGAC/p.L826D +YOR211C MGM1 12824 mgm1-L829D L829D amino_acid_mutation PMID:32041880 L829D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739083_739085delTTGinsGAC/c.2485_2487delTTGinsGAC/p.L829D +YOR211C MGM1 12825 mgm1-N539D,K863D N539D, K863D amino_acid_mutation PMID:32041880 N539D|K863D False N539D,K863D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739955T>C/c.1615A>G/p.N539D|chrXV:g.738981_738983delAAAinsGAC/c.2587_2589delAAAinsGAC/p.K863D +YOR211C MGM1 12826 mgm1-N710L N710L amino_acid_mutation PMID:32041880 N710L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739441_739442delAAinsCT/c.2128_2129delAAinsCT/p.N710L +YOR211C MGM1 12827 mgm1-Q219R Q219R amino_acid_mutation PMID:32041880 Q219R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.740914T>C/c.656A>G/p.Q219R +YOR211C MGM1 12828 mgm1-R712A R712A amino_acid_mutation PMID:32041880 R712A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739435_739436delAGinsGC/c.2134_2135delAGinsGC/p.R712A +YOR211C MGM1 12831 mgm1-R853A R853A amino_acid_mutation PMID:32041880 R853A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739012_739013delAGinsGC/c.2557_2558delAGinsGC/p.R853A +YOR211C MGM1 12832 mgm1-S220A S220A amino_acid_mutation PMID:32041880 S220A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.740912A>C/c.658T>G/p.S220A +YOR211C MGM1 12833 mgm1-S397A S397A amino_acid_mutation PMID:32041880 S397A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.740380_740381delAGinsGC/c.1189_1190delAGinsGC/p.S397A +YOR211C MGM1 12834 mgm1-SSS590-92AAA S590A, S591A, S592A amino_acid_mutation PMID:32041880 S590A|S591A|S592A False S590A,S591A,S592A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739802A>C/c.1768T>G/p.S590A|chrXV:g.739799A>C/c.1771T>G/p.S591A|chrXV:g.739796A>C/c.1774T>G/p.S592A +YOR211C MGM1 12835 mgm1-V324D V324D amino_acid_mutation PMID:32041880 V324D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.740598_740599delTGinsAC/c.971_972delTGinsAC/p.V324D +YOR211C MGM1 12836 mgm1-V720A V720A amino_acid_mutation PMID:32041880 V720A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739411A>G/c.2159T>C/p.V720A +YOR211C MGM1 12837 mgm1-VL765AA V765A, L766A amino_acid_mutation PMID:32041880 V765A|L766A False V765A,L766A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739276A>G/c.2294T>C/p.V765A|chrXV:g.739273_739274delTTinsGC/c.2296_2297delTTinsGC/p.L766A +YOR211C MGM1 12838 mgm1-Y477A Y477A amino_acid_mutation PMID:32041880 Y477A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.740140_740141delTAinsGC/c.1429_1430delTAinsGC/p.Y477A +YOR211C MGM1 12839 mgm1-Y816A Y816A amino_acid_mutation PMID:32041880 Y816A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.739123_739124delTAinsGC/c.2446_2447delTAinsGC/p.Y816A +YOR217W RFC1 12868 rfc1-(cdc44-1) D513N amino_acid_mutation PMID:6749598,PMID:8264593 D513N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.750837G>A/c.1537G>A/p.D513N +YOR217W RFC1 12869 rfc1-(cdc44-2) G428H amino_acid_mutation PMID:8264593 G428H False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.750582_750583delGGinsCA/c.1282_1283delGGinsCA/p.G428H +YOR217W RFC1 12870 rfc1-(cdc44-4) G436R amino_acid_mutation PMID:8264593 G436R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.750606G>A/c.1306G>A/p.G436R +YOR217W RFC1 12871 rfc1-(cdc44-9) G512A, D513N amino_acid_mutation PMID:8264593 G512A|D513N False G512A,D513N amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.750835G>C/c.1535G>C/p.G512A|chrXV:g.750837G>A/c.1537G>A/p.D513N +YOR232W MGE1 12884 mge1-2 A81D, T199A amino_acid_mutation PMID:7628446 A81D|T199A False A81D,T199A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.774814C>A/c.242C>A/p.A81D|chrXV:g.775167A>G/c.595A>G/p.T199A +YOR254C SEC63 12926 sec63-(npl1-1) G511R amino_acid_mutation PMID:2556404 G511R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.805493C>T/c.1531G>A/p.G511R +YOR257W CDC31 12935 cdc31-1 A48T amino_acid_mutation PMID:18160718,PMID:25721128,PMID:33751052,PMID:8070654 A48T False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.811149G>A/c.142G>A/p.A48T +YOR257W CDC31 12936 cdc31-2 E133K amino_acid_mutation PMID:23390603,PMID:25721128,PMID:32074005,PMID:32878900,PMID:33332348,PMID:7028565,PMID:8070654 E133K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.811404G>A/c.397G>A/p.E133K +YOR257W CDC31 12937 cdc31-5 P94S amino_acid_mutation PMID:23390603,PMID:8070654 P94S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.811287C>T/c.280C>T/p.P94S +YOR259C RPT4 12938 rpt4-(sug2-13) L231R amino_acid_mutation PMID:11152478 L231R False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.813017A>C/c.692T>G/p.L231R +YOR262W GPN2 12951 gpn2-1 E97D, I153T, K176E, K181R, E331G amino_acid_mutation PMID:23267056 E97D|I153T|K176E|K181R|E331G False E97D,I153T,K176E,K181R,E331G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.817582A>C/c.291A>C/p.E97D|chrXV:g.817749T>C/c.458T>C/p.I153T|chrXV:g.817817A>G/c.526A>G/p.K176E|chrXV:g.817833A>G/c.542A>G/p.K181R|chrXV:g.818283A>G/c.992A>G/p.E331G +YOR262W GPN2 12952 gpn2-2 C19S amino_acid_mutation PMID:23267056 C19S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.817346T>A/c.55T>A/p.C19S +YOR262W GPN2 12953 gpn2-3 E98A, K125R, R161K, E203G, E338G amino_acid_mutation PMID:23267056 E98A|K125R|R161K|E203G|E338G False E98A,K125R,R161K,E203G,E338G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.817584A>C/c.293A>C/p.E98A|chrXV:g.817665A>G/c.374A>G/p.K125R|chrXV:g.817773G>A/c.482G>A/p.R161K|chrXV:g.817899A>G/c.608A>G/p.E203G|chrXV:g.818304A>G/c.1013A>G/p.E338G +YOR262W GPN2 12954 gpn2-4 L228P amino_acid_mutation PMID:23267056 L228P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.817974T>C/c.683T>C/p.L228P +YOR262W GPN2 12957 gpn2-E112K E112K amino_acid_mutation PMID:23324351 E112K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.817625G>A/c.334G>A/p.E112K +YOR270C VPH1 12969 vph1-R735E R735E amino_acid_mutation PMID:11592980 R735E False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.828370_828372delCGTinsGAG/c.2203_2205delCGTinsGAG/p.R735E +YOR270C VPH1 12970 vph1-R735K R735K amino_acid_mutation PMID:11592980 R735K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.828370_828372delCGTinsAAG/c.2203_2205delCGTinsAAG/p.R735K +YOR270C VPH1 12971 vph1-R735N R735N amino_acid_mutation PMID:11592980 R735N False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.828371_828372delCGinsAA/c.2203_2204delCGinsAA/p.R735N +YOR270C VPH1 12972 vph1-R735Q R735Q amino_acid_mutation PMID:11592980,PMID:29791245 R735Q False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.828370_828371delGTinsAA/c.2204_2205delGTinsAA/p.R735Q +YOR270C VPH1 12973 vph1-R799A R799A amino_acid_mutation PMID:11592980 R799A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.828179_828180delCGinsGC/c.2395_2396delCGinsGC/p.R799A +YOR270C VPH1 12974 vph1-R799L R799L amino_acid_mutation PMID:11592980 R799L False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.828179C>A/c.2396G>T/p.R799L +YOR285W RDL1 12986 rdl1-C98S C98S amino_acid_mutation PMID:33922196 C98S False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.849926T>A/c.292T>A/p.C98S +YOR290C SNF2 12991 snf2-(swi2-D1093A) D1093A amino_acid_mutation PMID:8871545 D1093A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.856981T>G/c.3278A>C/p.D1093A +YOR290C SNF2 12992 snf2-(swi2-D894A,E895A) D894A, E895A amino_acid_mutation PMID:8871545 D894A|E895A False D894A,E895A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.857578T>G/c.2681A>C/p.D894A|chrXV:g.857575T>G/c.2684A>C/p.E895A +YOR290C SNF2 12993 snf2-(swi2-D894E,E895Q) D894E, E895Q amino_acid_mutation PMID:8871545 D894E|E895Q False D894E,E895Q amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.857577A>C/c.2682T>G/p.D894E|chrXV:g.857576C>G/c.2683G>C/p.E895Q +YOR290C SNF2 12994 snf2-(swi2-G1166A) G1166A amino_acid_mutation PMID:8871545 G1166A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.856762C>G/c.3497G>C/p.G1166A +YOR290C SNF2 12995 snf2-(swi2-H1061A) H1061A amino_acid_mutation PMID:8871545 H1061A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.857077_857078delCAinsGC/c.3181_3182delCAinsGC/p.H1061A +YOR290C SNF2 12996 snf2-(swi2-K1088A) K1088A amino_acid_mutation PMID:8871545 K1088A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.856996_856997delAAinsGC/c.3262_3263delAAinsGC/p.K1088A +YOR290C SNF2 12997 snf2-(swi2-K798A) K798A amino_acid_mutation PMID:36902382,PMID:8871545 K798A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.857866_857867delAAinsGC/c.2392_2393delAAinsGC/p.K798A +YOR290C SNF2 12998 snf2-(swi2-P824A) P824A amino_acid_mutation PMID:8871545 P824A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.857789G>C/c.2470C>G/p.P824A +YOR290C SNF2 12999 snf2-(swi2-P932A) P932A amino_acid_mutation PMID:8871545 P932A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.857465G>C/c.2794C>G/p.P932A +YOR290C SNF2 13000 snf2-(swi2-R1164A) R1164A amino_acid_mutation PMID:8871545 R1164A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.856768_856769delAGinsGC/c.3490_3491delAGinsGC/p.R1164A +YOR290C SNF2 13001 snf2-(swi2-R1196K) R1196K amino_acid_mutation PMID:8871545 R1196K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.856672C>T/c.3587G>A/p.R1196K +YOR290C SNF2 13002 snf2-(swi2-R994A) R994A amino_acid_mutation PMID:8871545 R994A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.857278_857279delCGinsGC/c.2980_2981delCGinsGC/p.R994A +YOR290C SNF2 13003 snf2-(swi2-W1185A) W1185A amino_acid_mutation PMID:8871545 W1185A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.856705_856706delTGinsGC/c.3553_3554delTGinsGC/p.W1185A +YOR290C SNF2 13004 snf2-(swi2-W831A) W831A amino_acid_mutation PMID:8871545 W831A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.857767_857768delTGinsGC/c.2491_2492delTGinsGC/p.W831A +YOR290C SNF2 13005 snf2-(swi2-W935A) W935A amino_acid_mutation PMID:8871545 W935A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.857455_857456delTGinsGC/c.2803_2804delTGinsGC/p.W935A +YOR294W RRS1 13034 rrs1-100 D22G, N32D, K131E amino_acid_mutation PMID:15135061 D22G|N32D|K131E False D22G,N32D,K131E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.868404A>G/c.65A>G/p.D22G|chrXV:g.868433A>G/c.94A>G/p.N32D|chrXV:g.868730A>G/c.391A>G/p.K131E +YOR294W RRS1 13035 rrs1-111 N32D, L53P amino_acid_mutation PMID:15135061 N32D|L53P False N32D,L53P amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.868433A>G/c.94A>G/p.N32D|chrXV:g.868497T>C/c.158T>C/p.L53P +YOR294W RRS1 13037 rrs1-125 L61P amino_acid_mutation PMID:15135061 L61P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.868521T>C/c.182T>C/p.L61P +YOR294W RRS1 13038 rrs1-137 S42P, L53P amino_acid_mutation PMID:15135061 S42P|L53P False S42P,L53P amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.868463T>C/c.124T>C/p.S42P|chrXV:g.868497T>C/c.158T>C/p.L53P +YOR294W RRS1 13040 rrs1-145 E47G, T97P amino_acid_mutation PMID:15135061 E47G|T97P False E47G,T97P amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.868479A>G/c.140A>G/p.E47G|chrXV:g.868628A>C/c.289A>C/p.T97P +YOR294W RRS1 13041 rrs1-24 L26P,D38A,L66S,V86A amino_acid_mutation PMID:15135061 L26P|D38A|L66S|V86A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.868416T>C/c.77T>C/p.L26P|chrXV:g.868452A>C/c.113A>C/p.D38A|chrXV:g.868536T>C/c.197T>C/p.L66S|chrXV:g.868596T>C/c.257T>C/p.V86A +YOR294W RRS1 13042 rrs1-5 L65P amino_acid_mutation PMID:15135061 L65P False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.868439_868440delTTinsCC/c.193_194delTTinsCC/p.L65P +YOR294W RRS1 13043 rrs1-60 K7E, L65P amino_acid_mutation PMID:15135061 K7E|L65P False K7E,L65P amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.868358A>G/c.19A>G/p.K7E|chrXV:g.868439_868440delTTinsCC/c.193_194delTTinsCC/p.L65P +YOR326W MYO2 13077 myo2-338 L1474S, E1484G, D1511G amino_acid_mutation PMID:12391144 L1474S|E1484G|D1511G False L1474S,E1484G,D1511G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.930141T>C/c.4421T>C/p.L1474S|chrXV:g.930171A>G/c.4451A>G/p.E1484G|chrXV:g.930252A>G/c.4532A>G/p.D1511G +YOR326W MYO2 13079 myo2-573 V1189A, V1288G, K1500M, P1529S, E1546G, K1559R amino_acid_mutation PMID:12391144 V1189A|V1288G|K1500M|P1529S|E1546G|K1559R False V1189A,V1288G,K1500M,P1529S,E1546G,K1559R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.929286T>C/c.3566T>C/p.V1189A|chrXV:g.929583T>G/c.3863T>G/p.V1288G|chrXV:g.930219A>T/c.4499A>T/p.K1500M|chrXV:g.930305C>T/c.4585C>T/p.P1529S|chrXV:g.930357A>G/c.4637A>G/p.E1546G|chrXV:g.930396A>G/c.4676A>G/p.K1559R +YOR326W MYO2 13080 myo2-66 E511K amino_acid_mutation PMID:15772160,PMID:19403698,PMID:19477927,PMID:2016335,PMID:30076201,PMID:8188749 E511K False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.927251G>A/c.1531G>A/p.E511K +YOR326W MYO2 13088 myo2-R1419A R1419A amino_acid_mutation PMID:33656555 R1419A False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.929975_929976delAGinsGC/c.4255_4256delAGinsGC/p.R1419A +YOR326W MYO2 13089 myo2-R1419D R1419D amino_acid_mutation PMID:33656555,PMID:37160881 R1419D False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.929975_929977delAGAinsGAC/c.4255_4257delAGAinsGAC/p.R1419D +YOR335C ALA1 13146 ala1-V306M V306M amino_acid_mutation PMID:31705293 V306M False amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.948192_948194delGTCinsATG/c.916_918delGTCinsATG/p.V306M +YOR340C RPA43 13149 rpa43-1 W217stop partial_amino_acid_deletion PMID:7592632 W217stop False W217* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrXV:g.959533C>T/c.650G>A/p.W217* +YOR373W NUD1 13210 nud1-3A S53A, S63A, T78A amino_acid_mutation PMID:23579499 S53A|S63A|T78A False S53A,S63A,T78A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXV:g.1036990T>G/c.157T>G/p.S53A|chrXV:g.1037020T>G/c.187T>G/p.S63A|chrXV:g.1037065A>G/c.232A>G/p.T78A +YPL019C VTC3 13273 vtc3-Ala6 S263A, S265A, S267A, S269A, S270A, S274A amino_acid_mutation PMID:37066886 S263A|S265A|S267A|S269A|S270A|S274A False S263A,S265A,S267A,S269A,S270A,S274A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.516479A>C/c.787T>G/p.S263A|chrXVI:g.516225_516226delAGinsGC/c.793_794delAGinsGC/p.S265A|chrXVI:g.516219_516220delAGinsGC/c.799_800delAGinsGC/p.S267A|chrXVI:g.516214A>C/c.805T>G/p.S269A|chrXVI:g.516210_516211delAGinsGC/c.808_809delAGinsGC/p.S270A|chrXVI:g.516198_516199delAGinsGC/c.820_821delAGinsGC/p.S274A +YPL019C VTC3 13274 vtc3-Asp6 S263D, S265D, S267D, S269D, S270D, S274D amino_acid_mutation PMID:37066886 S263D|S265D|S267D|S269D|S270D|S274D False S263D,S265D,S267D,S269D,S270D,S274D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.516478_516479delTCinsGA/c.787_788delTCinsGA/p.S263D|chrXVI:g.516225_516226delAGinsGA/c.793_794delAGinsGA/p.S265D|chrXVI:g.516219_516220delAGinsGA/c.799_800delAGinsGA/p.S267D|chrXVI:g.516213_516214delTCinsGA/c.805_806delTCinsGA/p.S269D|chrXVI:g.516210_516211delAGinsGA/c.808_809delAGinsGA/p.S270D|chrXVI:g.516198_516199delAGinsGA/c.820_821delAGinsGA/p.S274D +YPL019C VTC3 13275 vtc3-K698E K698E amino_acid_mutation PMID:37066886 K698E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.514927T>C/c.2092A>G/p.K698E +YPL019C VTC3 13276 vtc3-L765D L765D amino_acid_mutation PMID:37066886 L765D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.514725_514726delCTinsGA/c.2293_2294delCTinsGA/p.L765D +YPL019C VTC3 13277 vtc3-L774D L774D amino_acid_mutation PMID:37066886 L774D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.514697_514699delTTGinsGAC/c.2320_2322delTTGinsGAC/p.L774D +YPL019C VTC3 13278 vtc3-R223E R223E amino_acid_mutation PMID:37066886 R223E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.516351_516352delAGinsGA/c.667_668delAGinsGA/p.R223E +YPL019C VTC3 13279 vtc3-R226E R226E amino_acid_mutation PMID:37066886 R226E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.516342_516343delAGinsGA/c.676_677delAGinsGA/p.R226E +YPL019C VTC3 13280 vtc3-R705E R705E amino_acid_mutation PMID:37066886 R705E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.515152_515153delAGinsGA/c.2113_2114delAGinsGA/p.R705E +YPL019C VTC3 13281 vtc3-V699D V699D amino_acid_mutation PMID:37066886 V699D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.514923A>T/c.2096T>A/p.V699D +YPL020C ULP1 13283 ulp1-101 L338stop partial_amino_acid_deletion PMID:30192228 L338stop False L338* nonsense_mutation:stop_codon_text partial_amino_acid_deletion chrXVI:g.513166A>T/c.1013T>A/p.L338* +YPL020C ULP1 13286 ulp1-A418P A418P amino_acid_mutation PMID:36870416 A418P False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.512927C>G/c.1252G>C/p.A418P +YPL020C ULP1 13287 ulp1-I615N I615N amino_acid_mutation PMID:15169880,PMID:36720466 I615N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.512335A>T/c.1844T>A/p.I615N +YPL020C ULP1 13290 ulp1-R514 H514R amino_acid_mutation PMID:10094048,PMID:15169880 H514R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.512638T>C/c.1541A>G/p.H514R +YPL020C ULP1 13291 ulp1-S513P S513P amino_acid_mutation PMID:36870416 S513P False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.512642A>G/c.1537T>C/p.S513P +YPL020C ULP1 13292 ulp1-S580 C580S amino_acid_mutation PMID:10094048 C580S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.512441A>T/c.1738T>A/p.C580S +YPL024W RMI1 13305 rmi1-1 E69K amino_acid_mutation PMID:21343337 E69K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.503721G>A/c.205G>A/p.E69K +YPL029W SUV3 13310 suv3-1 V272L amino_acid_mutation PMID:20064926 V272L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.496319G>C/c.814G>C/p.V272L +YPL082C MOT1 13384 mot1-301 E1226K amino_acid_mutation PMID:16387868,PMID:19139279,PMID:8293972 E1226K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.400408C>T/c.3676G>A/p.E1226K +YPL093W NOG1 13424 nog1E621AD623A E621A, D623A amino_acid_mutation PMID:17443350 E621A|D623A False E621A,D623A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.372839A>C/c.1862A>C/p.E621A|chrXVI:g.372749A>C/c.1868A>C/p.D623A +YPL093W NOG1 13426 nog1R48AK49AK51A R48A, K49A, K51A amino_acid_mutation PMID:17443350 R48A|K49A|K51A False R48A,K49A,K51A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.371119_371120delCGinsGC/c.142_143delCGinsGC/p.R48A|chrXVI:g.371122_371123delAAinsGC/c.145_146delAAinsGC/p.K49A|chrXVI:g.371128_371129delAAinsGC/c.151_152delAAinsGC/p.K51A +YPL109C CQD1 13445 cqd1-D412N D412N amino_acid_mutation PMID:34362905 D412N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.346156C>T/c.1234G>A/p.D412N +YPL109C CQD1 13446 cqd1-D477N D477N amino_acid_mutation PMID:34362905 D477N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.346043C>T/c.1429G>A/p.D477N +YPL109C CQD1 13447 cqd1-E330A E330A amino_acid_mutation PMID:37073556 E330A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.346401T>G/c.989A>C/p.E330A +YPL109C CQD1 13448 cqd1-G241A G241A amino_acid_mutation PMID:34362905 G241A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.346668C>G/c.722G>C/p.G241A +YPL109C CQD1 13449 cqd1-K178H K178H amino_acid_mutation PMID:34362905 K178H False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.346856_346858delAAAinsCAT/c.532_534delAAAinsCAT/p.K178H +YPL109C CQD1 13450 cqd1-K275R K275R amino_acid_mutation PMID:34362905 K275R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.346566T>C/c.824A>G/p.K275R +YPL109C CQD1 13451 cqd1-Q181A Q181A amino_acid_mutation PMID:34362905 Q181A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.346848_346849delCAinsGC/c.541_542delCAinsGC/p.Q181A +YPL109C CQD1 13452 cqd1-S242A S242A amino_acid_mutation PMID:34362905 S242A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.346666A>C/c.724T>G/p.S242A +YPL115C BEM3 13456 bem3-R950G R950G amino_acid_mutation PMID:17914457 R950G False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.332639T>C/c.2848A>G/p.R950G +YPL115C BEM3 13457 bem3-S3A S195A, S222A, S254A amino_acid_mutation PMID:17914457 S195A|S222A|S254A False S195A,S222A,S254A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.334903_334904delAGinsGC/c.583_584delAGinsGC/p.S195A|chrXVI:g.334823A>C/c.664T>G/p.S222A|chrXVI:g.334727A>C/c.760T>G/p.S254A +YPL120W VPS30 13467 vps30-(apg6-1) Q269Ter amino_acid_insertion_and_mutation PMID:9712845 Q269Ter False Q269TER amino_acid_insertion_and_mutation:multiple_aa amino_acid_insertion_and_mutation chrXVI:g.322875_322877delinsACAGAGAGG/c.805_807delinsACAGAGAGG/p.Q269_Q269delinsTER +YPL124W SPC29 13489 spc29-2 R161S amino_acid_mutation PMID:10339566 R161S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.317237A>C/c.483A>C/p.R161S +YPL124W SPC29 13491 spc29-3 L158Q amino_acid_mutation PMID:10339566,PMID:12486115,PMID:27708008 L158Q False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.317227T>A/c.473T>A/p.L158Q +YPL128C TBF1 13511 tbf1-1 F82S, R299H amino_acid_mutation PMID:23222485 F82S|R299H False F82S,R299H amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.307977A>G/c.245T>C/p.F82S|chrXVI:g.307326C>T/c.896G>A/p.R299H +YPL128C TBF1 13512 tbf1-2 C285Y, N398S amino_acid_mutation PMID:23222485 C285Y|N398S False C285Y,N398S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.307368C>T/c.854G>A/p.C285Y|chrXVI:g.307029T>C/c.1193A>G/p.N398S +YPL128C TBF1 13513 tbf1-3 K297E, D357V, Q453H, K480R amino_acid_mutation PMID:23222485 K297E|D357V|Q453H|K480R False K297E,D357V,Q453H,K480R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.307333T>C/c.889A>G/p.K297E|chrXVI:g.307152T>A/c.1070A>T/p.D357V|chrXVI:g.306863C>A/c.1359G>T/p.Q453H|chrXVI:g.306783T>C/c.1439A>G/p.K480R +YPL145C KES1 13580 kes1-E117A E117A amino_acid_mutation PMID:16136145 E117A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.279350T>G/c.350A>C/p.E117A +YPL145C KES1 13597 kes1-Y97F Y97F amino_acid_mutation PMID:16136145 Y97F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.279410T>A/c.290A>T/p.Y97F +YPL153C RAD53 13610 rad53-11 G653E amino_acid_mutation PMID:16816422,PMID:32169162,PMID:37166686,PMID:9219338 G653E False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.262235C>T/c.1958G>A/p.G653E +YPL153C RAD53 13625 rad53-rep S175Y amino_acid_mutation PMID:21099362 S175Y False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.263669G>T/c.524C>A/p.S175Y +YPL155C KIP2 13627 kip2-G374A G374A amino_acid_mutation PMID:31490122,PMID:37093124 G374A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.258216C>G/c.1121G>C/p.G374A +YPL164C MLH3 13672 mlh3-39 D523A,H525A amino_acid_mutation PMID:28827832 D523A|H525A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.239930T>G/c.1568A>C/p.D523A|chrXVI:g.239924_239925delCAinsGC/c.1573_1574delCAinsGC/p.H525A +YPL164C MLH3 13674 mlh3-40 D528A,E529A amino_acid_mutation PMID:28827832 D528A|E529A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.239915T>G/c.1583A>C/p.D528A|chrXVI:g.239912T>G/c.1586A>C/p.E529A +YPL164C MLH3 13692 mlh3-57 C670A amino_acid_mutation PMID:28827832 C670A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.239489_239490delTGinsGC/c.2008_2009delTGinsGC/p.C670A +YPL164C MLH3 13693 mlh3-58 C701A amino_acid_mutation PMID:28827832 C701A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.239396_239397delTGinsGC/c.2101_2102delTGinsGC/p.C701A +YPL164C MLH3 13694 mlh3-59 H703A amino_acid_mutation PMID:28827832 H703A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.239390_239391delCAinsGC/c.2107_2108delCAinsGC/p.H703A +YPL167C REV3 13714 rev3-ATD D1142A amino_acid_mutation PMID:27481099 D1142A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.233683T>G/c.3425A>C/p.D1142A +YPL167C REV3 13724 rev3-S1192R S1192R amino_acid_mutation PMID:33474647 S1192R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.233532G>C/c.3576C>G/p.S1192R +YPL192C PRM3 13755 prm3-1 G108S amino_acid_mutation PMID:19297527 G108S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.182735C>T/c.322G>A/p.G108S +YPL192C PRM3 13756 prm3-7 Y106H amino_acid_mutation PMID:19297527 Y106H False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.182741A>G/c.316T>C/p.Y106H +YPL200W CSM4 13768 csm4-3 K22A, K24A amino_acid_mutation PMID:21437883 K22A|K24A False K22A,K24A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.171547_171548delAAinsGC/c.64_65delAAinsGC/p.K22A|chrXVI:g.171553_171554delAAinsGC/c.70_71delAAinsGC/p.K24A +YPL203W TPK2 13770 tpk2-as M147A amino_acid_mutation PMID:36167807 M147A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.166694_166695delATinsGC/c.439_440delATinsGC/p.M147A +YPL204W HRR25 13772 hrr25-(kti14-1) E52D amino_acid_mutation PMID:12756531,PMID:18755837 E52D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.164431G>C/c.156G>C/p.E52D +YPL209C IPL1 13779 ipl1-2 H352Y amino_acid_mutation PMID:21368139,PMID:21552543,PMID:23275890,PMID:23637466,PMID:27708008,PMID:30054382,PMID:32878900,PMID:8293973 H352Y False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.156540G>A/c.1054C>T/p.H352Y +YPL209C IPL1 13780 ipl1-315 R151K amino_acid_mutation PMID:17765685,PMID:9201714 R151K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.157142C>T/c.452G>A/p.R151K +YPL209C IPL1 13781 ipl1-321 D283N amino_acid_mutation PMID:10072382,PMID:22870406,PMID:23177738,PMID:32494069,PMID:34033659 D283N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.156747C>T/c.847G>A/p.D283N +YPL218W SAR1 13794 sar1-D32G D32G amino_acid_mutation PMID:27101143 D32G False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.138931A>G/c.95A>G/p.D32G +YPL235W RVB2 13829 rvb2-2 A50T,T388A amino_acid_mutation PMID:22100294 A50T|T388A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.103379G>A/c.148G>A/p.A50T|chrXVI:g.104393A>G/c.1162A>G/p.T388A +YPL235W RVB2 13830 rvb2-24 T99A amino_acid_mutation PMID:22100294 T99A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.103526A>G/c.295A>G/p.T99A +YPL235W RVB2 13834 rvb2-94 T262A,N310D,I370M amino_acid_mutation PMID:22100294 T262A|N310D|I370M False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.104015A>G/c.784A>G/p.T262A|chrXVI:g.104159A>G/c.928A>G/p.N310D|chrXVI:g.104341A>G/c.1110A>G/p.I370M +YPL240C HSP82 13864 hsp82-S485A S485A amino_acid_mutation PMID:22365831,PMID:32920053,PMID:37068581 S485A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.97173A>C/c.1453T>G/p.S485A +YPL240C HSP82 13865 hsp82-S485D S485D amino_acid_mutation PMID:22365831,PMID:32920053 S485D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.97172_97173delTCinsGA/c.1453_1454delTCinsGA/p.S485D +YPL256C CLN2 13962 CLN24T3S T311A, T381A, S396A, T405A, S427A, T430A, S518A amino_acid_mutation PMID:8599119,PMID:9738503 T311A|T381A|S396A|T405A|S427A|T430A|S518A False T311A,T381A,S396A,T405A,S427A,T430A,S518A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.65684T>C/c.931A>G/p.T311A|chrXVI:g.65474T>C/c.1141A>G/p.T381A|chrXVI:g.65429A>C/c.1186T>G/p.S396A|chrXVI:g.65402T>C/c.1213A>G/p.T405A|chrXVI:g.65336A>C/c.1279T>G/p.S427A|chrXVI:g.65327T>C/c.1288A>G/p.T430A|chrXVI:g.65063A>C/c.1552T>G/p.S518A +YPL256C CLN2 13964 cln2-S441A S441A amino_acid_mutation PMID:36870416 S441A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.65294A>C/c.1321T>G/p.S441A +YPL269W KAR9 13985 kar9-AA S197A,S496A amino_acid_mutation PMID:33608583 S197A|S496A False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.33601T>G/c.589T>G/p.S197A|chrXVI:g.34498T>G/c.1486T>G/p.S496A +YPL274W SAM3 13992 sam3-(sfr-1) S444* partial_amino_acid_deletion PMID:17932050 S444* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXVI:g.24268C>A/c.1331C>A/p.S444* +YPL274W SAM3 13993 sam3-(sfr-10) Y400* partial_amino_acid_deletion PMID:17932050 Y400* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXVI:g.24137C>A/c.1200C>A/p.Y400* +YPL274W SAM3 13994 sam3-(sfr-11) E60* partial_amino_acid_deletion PMID:17932050 E60* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXVI:g.23115G>T/c.178G>T/p.E60* +YPL274W SAM3 13996 sam3-(sfr-2) E213K amino_acid_mutation PMID:17932050 E213K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.23574G>A/c.637G>A/p.E213K +YPL274W SAM3 13998 sam3-(sfr-4) S476F amino_acid_mutation PMID:17932050 S476F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.24364C>T/c.1427C>T/p.S476F +YPL274W SAM3 14000 sam3-(sfr-6) Q126P amino_acid_mutation PMID:17932050 Q126P False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.23314A>C/c.377A>C/p.Q126P +YPL274W SAM3 14001 sam3-(sfr-7) S171R amino_acid_mutation PMID:17932050 S171R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.23380_23381delTCinsAG/c.511_512delTCinsAG/p.S171R|chrXVI:g.23380_23381delTCinsAG/c.511_512delTCinsAG/p.S171R +YPL274W SAM3 14003 sam3-(sfr-9) S171R amino_acid_mutation PMID:17932050 S171R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.23380_23381delTCinsAG/c.511_512delTCinsAG/p.S171R|chrXVI:g.23380_23381delTCinsAG/c.511_512delTCinsAG/p.S171R +YPR018W RLF2 14025 cac1-15 F257L, L276P amino_acid_mutation PMID:11756556 F257L|L276P False F257L,L276P amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.595244T>C/c.769T>C/p.F257L|chrXVI:g.595302T>C/c.827T>C/p.L276P +YPR048W TAH18 14074 tah18-5H8 S40P, L106P, E133V, F220P, K235R, D293G, H468Y amino_acid_mutation PMID:19194512 S40P|L106P|E133V|F220P|K235R|D293G|H468Y False S40P,L106P,E133V,F220P,K235R,D293G,H468Y amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.659299T>C/c.118T>C/p.S40P|chrXVI:g.659498T>C/c.317T>C/p.L106P|chrXVI:g.659579A>T/c.398A>T/p.E133V|chrXVI:g.659839_659840delTTinsCC/c.658_659delTTinsCC/p.F220P|chrXVI:g.659860A>G/c.704A>G/p.K235R|chrXVI:g.660059A>G/c.878A>G/p.D293G|chrXVI:g.660583C>T/c.1402C>T/p.H468Y +YPR048W TAH18 14075 tah18-5I5 Y44C, R440G, I480V, N598Y amino_acid_mutation PMID:19194512,PMID:34009341 Y44C|R440G|I480V|N598Y False Y44C,R440G,I480V,N598Y amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.659312A>G/c.131A>G/p.Y44C|chrXVI:g.660499A>G/c.1318A>G/p.R440G|chrXVI:g.660619A>G/c.1438A>G/p.I480V|chrXVI:g.660973A>T/c.1792A>T/p.N598Y +YPR054W SMK1 14089 smk1-2 P169S amino_acid_mutation PMID:19087957,PMID:9135146 P169S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.666784C>T/c.505C>T/p.P169S +YPR054W SMK1 14091 smk1-T207A T207A amino_acid_mutation PMID:11739722 T207A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.666898A>G/c.619A>G/p.T207A +YPR054W SMK1 14092 smk1-T207A,Y209F T207A, Y209F amino_acid_mutation PMID:11739722 T207A|Y209F False T207A,Y209F amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.666898A>G/c.619A>G/p.T207A|chrXVI:g.666905A>T/c.626A>T/p.Y209F +YPR054W SMK1 14093 smk1-T207D,Y209D T207D, Y209D amino_acid_mutation PMID:11739722 T207D|Y209D False T207D,Y209D amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.666898_666899delACinsGA/c.619_620delACinsGA/p.T207D|chrXVI:g.666904T>G/c.625T>G/p.Y209D +YPR054W SMK1 14094 smk1-T207E,Y209E T207E, Y209E amino_acid_mutation PMID:11739722 T207E|Y209E False T207E,Y209E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.666898_666900delACCinsGAG/c.619_621delACCinsGAG/p.T207E|chrXVI:g.666904_666906delTACinsGAG/c.625_627delTACinsGAG/p.Y209E +YPR054W SMK1 14095 smk1-Y209F Y209F amino_acid_mutation PMID:11739722 Y209F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.666905A>T/c.626A>T/p.Y209F +YPR055W SEC8 14097 sec8-599 Q599* partial_amino_acid_deletion PMID:15596717 Q599* False nonsense_mutation:stop_codon_star partial_amino_acid_deletion chrXVI:g.669470C>T/c.1795C>T/p.Q599* +YPR060C ARO7 14103 ARO7c T226I amino_acid_mutation PMID:11095720 T226I False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.674955G>A/c.677C>T/p.T226I +YPR086W SUA7 14130 sua7-1 E62K amino_acid_mutation PMID:25380729 E62K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.710284G>A/c.184G>A/p.E62K +YPR086W SUA7 14131 sua7-3 R78C amino_acid_mutation PMID:25380729 R78C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.710332C>T/c.232C>T/p.R78C +YPR088C SRP54 14148 srp54-DN G201A amino_acid_mutation PMID:11251072,PMID:33472077 G201A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.712427C>G/c.602G>C/p.G201A +YPR106W ISR1 14175 ISR1-PD S3A, T4A, T7A, S8A, T86A, T87A, S92A, P93A amino_acid_mutation PMID:32579556 S3A|T4A|T7A|S8A|T86A|T87A|S92A|P93A False S3A,T4A,T7A,S8A,T86A,T87A,S92A,P93A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.740067_740068delAGinsGC/c.7_8delAGinsGC/p.S3A|chrXVI:g.740070A>G/c.10A>G/p.T4A|chrXVI:g.740079A>G/c.19A>G/p.T7A|chrXVI:g.740082T>G/c.22T>G/p.S8A|chrXVI:g.740316A>G/c.256A>G/p.T86A|chrXVI:g.740319A>G/c.259A>G/p.T87A|chrXVI:g.740334T>G/c.274T>G/p.S92A|chrXVI:g.740337C>G/c.277C>G/p.P93A +YPR106W ISR1 14176 isr1-D280A D280A amino_acid_mutation PMID:32579556 D280A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.740899A>C/c.839A>C/p.D280A +YPR107C YTH1 14179 yth1-4 W70A amino_acid_mutation PMID:10899131,PMID:34232857 W70A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.741856_741857delTGinsGC/c.208_209delTGinsGC/p.W70A +YPR108W RPN7 14183 rpn7-1 S240P, Y304H, R334G amino_acid_mutation PMID:15102831 S240P|Y304H|R334G False S240P,Y304H,R334G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.743171T>C/c.718T>C/p.S240P|chrXVI:g.743283T>C/c.910T>C/p.Y304H|chrXVI:g.743453A>G/c.1000A>G/p.R334G +YPR108W RPN7 14184 rpn7-2 M197T, S240P, S303C, K336E amino_acid_mutation PMID:15102831 M197T|S240P|S303C|K336E False M197T,S240P,S303C,K336E amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.743043T>C/c.590T>C/p.M197T|chrXVI:g.743171T>C/c.718T>C/p.S240P|chrXVI:g.743360A>T/c.907A>T/p.S303C|chrXVI:g.743459A>G/c.1006A>G/p.K336E +YPR108W RPN7 14186 rpn7-4 S240P, Y304H, F305S amino_acid_mutation PMID:15102831 S240P|Y304H|F305S False S240P,Y304H,F305S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.743171T>C/c.718T>C/p.S240P|chrXVI:g.743283T>C/c.910T>C/p.Y304H|chrXVI:g.743367T>C/c.914T>C/p.F305S +YPR108W RPN7 14187 rpn7-5 T164A, S240P, D265G, T347A, D367G amino_acid_mutation PMID:15102831 T164A|S240P|D265G|T347A|D367G False T164A,S240P,D265G,T347A,D367G amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.742943A>G/c.490A>G/p.T164A|chrXVI:g.743171T>C/c.718T>C/p.S240P|chrXVI:g.743247A>G/c.794A>G/p.D265G|chrXVI:g.743492A>G/c.1039A>G/p.T347A|chrXVI:g.743553A>G/c.1100A>G/p.D367G +YPR108W RPN7 14188 rpn7-6 Q143R, S240P, S273P, L368Q amino_acid_mutation PMID:15102831 Q143R|S240P|S273P|L368Q False Q143R,S240P,S273P,L368Q amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.742881A>G/c.428A>G/p.Q143R|chrXVI:g.743171T>C/c.718T>C/p.S240P|chrXVI:g.743270T>C/c.817T>C/p.S273P|chrXVI:g.743556T>A/c.1103T>A/p.L368Q +YPR131C NAT3 14217 nat3-H77A H77A amino_acid_mutation PMID:37331807 H77A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.794269_794270delCAinsGC/c.229_230delCAinsGC/p.H77A +YPR153W MAY24 14235 may24-(ehg1-F19A) F19A amino_acid_mutation PMID:31797992 F19A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.833877_833878delTTinsGC/c.55_56delTTinsGC/p.F19A +YPR153W MAY24 14236 may24-(ehg1-P17,20A) P17A, P20A amino_acid_mutation PMID:31797992 P17A|P20A False P17A,P20A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.833871C>G/c.49C>G/p.P17A|chrXVI:g.833880C>G/c.58C>G/p.P20A +YPR153W MAY24 14237 may24-(ehg1-P17A) P17A amino_acid_mutation PMID:31797992 P17A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.833871C>G/c.49C>G/p.P17A +YPR153W MAY24 14238 may24-(ehg1-P20A) P20A amino_acid_mutation PMID:31797992 P20A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.833880C>G/c.58C>G/p.P20A +YPR161C SGV1 14255 sgv1-(bur1-3) D213A amino_acid_mutation PMID:10982824 D213A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.865785T>G/c.638A>C/p.D213A|chrXVI:g.865785T>G/c.638A>C/p.D213A +YPR161C SGV1 14263 sgv1-(bur1-D213A) D213A amino_acid_mutation PMID:12972617 D213A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.865785T>G/c.638A>C/p.D213A|chrXVI:g.865785T>G/c.638A>C/p.D213A +YPR161C SGV1 14264 sgv1-(bur1-E107Q) E107Q amino_acid_mutation PMID:12972617 E107Q False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.866104C>G/c.319G>C/p.E107Q +YPR161C SGV1 14265 sgv1-(bur1-T240A) T240A amino_acid_mutation PMID:12972617 T240A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.865705T>C/c.718A>G/p.T240A +YPR161C SGV1 14266 sgv1-(bur1-T240D) T240D amino_acid_mutation PMID:12972617 T240D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.865703_865705delACAinsGAC/c.718_720delACAinsGAC/p.T240D +YPR161C SGV1 14267 sgv1-(bur1-T70A) T70A amino_acid_mutation PMID:12972617 T70A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.866215T>C/c.208A>G/p.T70A +YPR161C SGV1 14268 sgv1-(bur1-as) L149G amino_acid_mutation PMID:19328068 L149G False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.865977_865978delCTinsGG/c.445_446delCTinsGG/p.L149G +YPR162C ORC4 14287 orc4-Y232C Y232C amino_acid_mutation PMID:21358631,PMID:29036220 Y232C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.867610T>C/c.695A>G/p.Y232C +YPR165W RHO1 14292 rho1-2 E45V amino_acid_mutation PMID:12419188,PMID:9811607 E45V False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.875501A>T/c.134A>T/p.E45V +YPR165W RHO1 14297 rho1-5 G121C amino_acid_mutation PMID:11574532,PMID:23071506,PMID:9811607 G121C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.875728G>T/c.361G>T/p.G121C +YPR165W RHO1 14299 rho1-C206S C206S amino_acid_mutation PMID:8195291 C206S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.875983T>A/c.616T>A/p.C206S +YPR165W RHO1 14300 rho1-C25A C25A amino_acid_mutation PMID:19339687 C25A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.874979_874980delTGinsGC/c.73_74delTGinsGC/p.C25A +YPR165W RHO1 14301 rho1-F35L F35L amino_acid_mutation PMID:19339687,PMID:37379203 F35L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.875470T>C/c.103T>C/p.F35L +YPR165W RHO1 14302 rho1-G19V G19V amino_acid_mutation PMID:12399379,PMID:19339687 G19V False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.875423G>T/c.56G>T/p.G19V +YPR165W RHO1 14303 rho1-Q68H Q68H amino_acid_mutation PMID:10508863,PMID:19339687,PMID:37379203 Q68H False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.875571A>T/c.204A>T/p.Q68H +YPR165W RHO1 14304 rho1-Q68L Q68L amino_acid_mutation PMID:12399379 Q68L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.875570A>T/c.203A>T/p.Q68L +YPR168W NUT2 14306 nut2-(med10-196) L53S, I79T, E82D, N108I amino_acid_mutation PMID:27688401 L53S|I79T|E82D|N108I False L53S,I79T,E82D,N108I amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.878233T>C/c.158T>C/p.L53S|chrXVI:g.878311T>C/c.236T>C/p.I79T|chrXVI:g.878321A>C/c.246A>C/p.E82D|chrXVI:g.878398A>T/c.323A>T/p.N108I +YPR173C VPS4 14314 csc1-1 E291K amino_acid_mutation PMID:9431454 E291K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.886967C>T/c.871G>A/p.E291K +YPR173C VPS4 14315 end13-1 S335F amino_acid_mutation PMID:11329380 S335F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.886834G>A/c.1004C>T/p.S335F +YPR173C VPS4 14320 vps4-d233 E233Q amino_acid_mutation PMID:9211789 E233Q False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.887173C>G/c.697G>C/p.E233Q +YPR173C VPS4 14322 vps4ts229 M307T, L327S amino_acid_mutation PMID:9155008 M307T|L327S False M307T,L327S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.886918A>G/c.920T>C/p.M307T|chrXVI:g.886858A>G/c.980T>C/p.L327S +YPR175W DPB2 14337 dpb2-1 D300N, K521R, V565F, G662R amino_acid_mutation PMID:18245343,PMID:2052544 D300N|K521R|V565F|G662R False D300N,K521R,V565F,G662R amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.889871G>A/c.898G>A/p.D300N|chrXVI:g.890535A>G/c.1562A>G/p.K521R|chrXVI:g.890666G>T/c.1693G>T/p.V565F|chrXVI:g.890957G>A/c.1984G>A/p.G662R +YPR175W DPB2 14338 dpb2-100 L284P, T345A amino_acid_mutation PMID:18245343,PMID:25758782 L284P|T345A False L284P,T345A amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.889824T>C/c.851T>C/p.L284P|chrXVI:g.890006A>G/c.1033A>G/p.T345A +YPR175W DPB2 14339 dpb2-101 L284P amino_acid_mutation PMID:18245343,PMID:22709919 L284P False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.889824T>C/c.851T>C/p.L284P +YPR175W DPB2 14340 dpb2-102 T345A amino_acid_mutation PMID:18245343 T345A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.890006A>G/c.1033A>G/p.T345A +YPR175W DPB2 14341 dpb2-103 T342I, S343F, T345I, P347S, P348S amino_acid_mutation PMID:18245343,PMID:22709919,PMID:28107343 T342I|S343F|T345I|P347S|P348S False T342I,S343F,T345I,P347S,P348S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.889998C>T/c.1025C>T/p.T342I|chrXVI:g.890001C>T/c.1028C>T/p.S343F|chrXVI:g.890007C>T/c.1034C>T/p.T345I|chrXVI:g.890012C>T/c.1039C>T/p.P347S|chrXVI:g.890015C>T/c.1042C>T/p.P348S +YPR175W DPB2 14342 dpb2-104 I484S, L630S, F649C amino_acid_mutation PMID:19463834 I484S|L630S|F649C False I484S,L630S,F649C amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.890424T>G/c.1451T>G/p.I484S|chrXVI:g.890862T>C/c.1889T>C/p.L630S|chrXVI:g.890869T>G/c.1946T>G/p.F649C +YPR175W DPB2 14344 dpb2-110 L285W, L365S, N405I, M572K amino_acid_mutation PMID:19463834 L285W|L365S|N405I|M572K False L285W,L365S,N405I,M572K amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.889827T>G/c.854T>G/p.L285W|chrXVI:g.890016_890017delCTinsTC/c.1093_1094delCTinsTC/p.L365S|chrXVI:g.890187A>T/c.1214A>T/p.N405I|chrXVI:g.890688T>A/c.1715T>A/p.M572K +YPR180W AOS1 14356 aos1-101 R21C amino_acid_mutation PMID:30192228 R21C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.896021C>T/c.61C>T/p.R21C +YPR181C SEC23 14360 sec23-1 S383L amino_acid_mutation PMID:12058050,PMID:12215173,PMID:23962978,PMID:2670558,PMID:27708008,PMID:30065114,PMID:31883188,PMID:32878900,PMID:6996832,PMID:8451644 S383L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.898520G>A/c.1148C>T/p.S383L +YPR181C SEC23 14361 sec23-2 G158R amino_acid_mutation PMID:2670558,PMID:8451644 G158R False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.899196C>T/c.472G>A/p.G158R +YPR181C SEC23 14362 sec23-3 R705M amino_acid_mutation PMID:2670558,PMID:8451644 R705M False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.897554C>A/c.2114G>T/p.R705M +YPR181C SEC23 14363 sec23-4 P53S amino_acid_mutation PMID:2670558,PMID:8451644 P53S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.899511G>A/c.157C>T/p.P53S +YPR199C ARR1 14396 arr1-(yap8-4aa) A23T,L26N,S29A,N31R amino_acid_mutation PMID:32356892 A23T|L26N|S29A|N31R False amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.938966C>T/c.67G>A/p.A23T|chrXVI:g.938956_938957delCTinsAA/c.76_77delCTinsAA/p.L26N|chrXVI:g.938948A>C/c.85T>G/p.S29A|chrXVI:g.938940_938941delACinsGG/c.92_93delACinsGG/p.N31R +YPR201W ARR3 14433 arr3-2CS C316S, C318S amino_acid_mutation PMID:35139143 C316S|C318S False C316S,C318S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940867T>A/c.946T>A/p.C316S|chrXVI:g.940873T>A/c.952T>A/p.C318S +YPR201W ARR3 14434 arr3-3CS C316S, C318S, C333S amino_acid_mutation PMID:35139143 C316S|C318S|C333S False C316S,C318S,C333S amino_acid_mutation:single_aa|amino_acid_mutation:single_aa|amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940867T>A/c.946T>A/p.C316S|chrXVI:g.940873T>A/c.952T>A/p.C318S|chrXVI:g.940918T>A/c.997T>A/p.C333S +YPR201W ARR3 14437 arr3-E353A E353A amino_acid_mutation PMID:37224717 E353A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940979A>C/c.1058A>C/p.E353A +YPR201W ARR3 14438 arr3-E353D E353D amino_acid_mutation PMID:37224717 E353D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940980A>C/c.1059A>C/p.E353D +YPR201W ARR3 14439 arr3-E353K E353K amino_acid_mutation PMID:37224717 E353K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940978G>A/c.1057G>A/p.E353K +YPR201W ARR3 14440 arr3-E353L E353L amino_acid_mutation PMID:37224717 E353L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940978_940979delGAinsCT/c.1057_1058delGAinsCT/p.E353L +YPR201W ARR3 14441 arr3-E353Q E353Q amino_acid_mutation PMID:37224717 E353Q False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940978G>C/c.1057G>C/p.E353Q +YPR201W ARR3 14442 arr3-I152A I152A amino_acid_mutation PMID:37224717 I152A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940375_940376delATinsGC/c.454_455delATinsGC/p.I152A +YPR201W ARR3 14443 arr3-I152S I152S amino_acid_mutation PMID:37224717 I152S False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940376T>G/c.455T>G/p.I152S +YPR201W ARR3 14444 arr3-L156A L156A amino_acid_mutation PMID:37224717 L156A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940387_940388delCTinsGC/c.466_467delCTinsGC/p.L156A +YPR201W ARR3 14445 arr3-L156F L156F amino_acid_mutation PMID:37224717 L156F False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940387_940389delCTAinsTTT/c.466_468delCTAinsTTT/p.L156F +YPR201W ARR3 14447 arr3-P377L P377L amino_acid_mutation PMID:37224717 P377L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.941051C>T/c.1130C>T/p.P377L +YPR201W ARR3 14448 arr3-Q180A Q180A amino_acid_mutation PMID:37224717 Q180A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940459_940460delCAinsGC/c.538_539delCAinsGC/p.Q180A +YPR201W ARR3 14449 arr3-Q180D Q180D amino_acid_mutation PMID:37224717 Q180D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940459_940461delCAGinsGAC/c.538_540delCAGinsGAC/p.Q180D +YPR201W ARR3 14450 arr3-Q180K Q180K amino_acid_mutation PMID:37224717 Q180K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940459C>A/c.538C>A/p.Q180K +YPR201W ARR3 14451 arr3-Q180L Q180L amino_acid_mutation PMID:37224717 Q180L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940460A>T/c.539A>T/p.Q180L +YPR201W ARR3 14452 arr3-Q180N Q180N amino_acid_mutation PMID:37224717 Q180N False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940459_940461delCAGinsAAC/c.538_540delCAGinsAAC/p.Q180N +YPR201W ARR3 14454 arr3-R150P R150P amino_acid_mutation PMID:37224717 R150P False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940369_940370delAGinsCC/c.448_449delAGinsCC/p.R150P +YPR201W ARR3 14455 arr3-V155A V155A amino_acid_mutation PMID:37224717 V155A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940385T>C/c.464T>C/p.V155A +YPR201W ARR3 14456 arr3-V155C V155C amino_acid_mutation PMID:37224717 V155C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940384_940386delGTGinsTGT/c.463_465delGTGinsTGT/p.V155C +YPR201W ARR3 14457 arr3-V155D V155D amino_acid_mutation PMID:37224717 V155D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940385_940386delTGinsAC/c.464_465delTGinsAC/p.V155D +YPR201W ARR3 14458 arr3-V155K V155K amino_acid_mutation PMID:37224717 V155K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940384_940385delGTinsAA/c.463_464delGTinsAA/p.V155K +YPR201W ARR3 14459 arr3-V155L V155L amino_acid_mutation PMID:37224717 V155L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940384G>C/c.463G>C/p.V155L +YPR201W ARR3 14460 arr3-V173A V173A amino_acid_mutation PMID:37224717 V173A False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940439T>C/c.518T>C/p.V173A +YPR201W ARR3 14461 arr3-V173C V173C amino_acid_mutation PMID:37224717 V173C False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940438_940439delGTinsTG/c.517_518delGTinsTG/p.V173C +YPR201W ARR3 14462 arr3-V173D V173D amino_acid_mutation PMID:37224717 V173D False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940439T>A/c.518T>A/p.V173D +YPR201W ARR3 14463 arr3-V173K V173K amino_acid_mutation PMID:37224717 V173K False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940438_940440delGTTinsAAG/c.517_519delGTTinsAAG/p.V173K +YPR201W ARR3 14464 arr3-V173L V173L amino_acid_mutation PMID:37224717 V173L False amino_acid_mutation:single_aa amino_acid_mutation chrXVI:g.940438G>C/c.517G>C/p.V173L diff --git a/run_analysis.sh b/run_analysis.sh index 4b44fd2..09626ef 100644 --- a/run_analysis.sh +++ b/run_analysis.sh @@ -1,6 +1,6 @@ set -e bash get_data.sh -python build_alignment_dict.py +python build_alignment_dict_from_genome.py python protein_modification_qc.py python protein_modification_auto_fix.py python protein_modification_transvar.py diff --git a/set_up_transvar_sgd.sh b/set_up_transvar_sgd.sh new file mode 100644 index 0000000..f11f33c --- /dev/null +++ b/set_up_transvar_sgd.sh @@ -0,0 +1,16 @@ +set -e + +# Set up transvar database +transvar config -k reference -v "data/sgd/genome_sequence.fsa" --refversion sgd_genome +transvar index --ensembl data/sgd/features.gtf --reference data/sgd/genome_sequence.fsa + +# Hacky way to use the functions inside another script +cp $(which transvar) ./transvar_main_script.py + +# See whether it works +transvar panno -i 'Q0050:p.V2A' --ensembl data/sgd/features.gtf.transvardb --reference data/sgd/genome_sequence.fsa + +# transvar ganno -i 'I:g.2832796A>T' --ensembl data/sgd/features.gtf.transvardb --reference data/sgd/genome_sequence.fsa +# transvar ganno -i 'I:g.2832795T>A' --ensembl data/sgd/features.gtf.transvardb --reference data/sgd/genome_sequence.fsa +# transvar panno -i 'SPBC1198.04c:p.T566S' --ensembl data/sgd/features.gtf.transvardb --reference data/sgd/genome_sequence.fsa +# transvar panno -i 'SPAPB1A10.09:p.S372_N374delinsAAA' --ensembl data/sgd/features.gtf.transvardb --reference data/sgd/genome_sequence.fsa --gseq diff --git a/sgd_pipeline.sh b/sgd_pipeline.sh index b9c8976..cee34c0 100644 --- a/sgd_pipeline.sh +++ b/sgd_pipeline.sh @@ -2,17 +2,31 @@ set -e cd data/sgd/ +# Use intermine to get the latest SGD alleles. +# TODO: include unique identifier python get_sgd_alleles.py alleles_sgd_raw.tsv + +# TODO: download the latest genome +# convert the gff to embl, using emblmygff3 docker image (see translation*.json), which are used for the transformation bash convert_sgd_gff2embl.sh +# Download all previous protein sequence (visit the repo), as well as the current protein sequences, to make the dictionary. +curl -kL https://raw.githubusercontent.com/pombase/all_previous_sgd_peptide_sequences/master/all_previous_seqs.tsv -o all_previous_seqs.tsv +curl http://sgd-archive.yeastgenome.org/sequence/S288C_reference/orf_protein/orf_trans_all.fasta.gz -o current_protein_seqs.fasta.gz +gzip -fd current_protein_seqs.fasta.gz + cd ../.. +# Extract allele descriptions from their name or description field. +# TODO: use a description field provided by SGD, this applies also to all commands below +# that use _description_name or description_semicolon python format_alleles_sgd.py +# Load the genome to a pickle file python load_genome.py --output data/sgd/genome.pickle --config data/sgd/config.sgd.json data/sgd/genome_embl_files/*.embl # Remove unknown ids (not in gff), or pseudogene (YLL016W), no main feature (YJL018W) - +# TODO: Check why these are missing missing_genes="R0010W YSC0029 R0040C YLL016W YSC0032 YJL018W" for missing_gene in $missing_genes; do @@ -33,10 +47,37 @@ python allele_qc.py --genome data/sgd/genome.pickle\ --output results/sgd/allele_description_semicolon_qc.tsv +python allele_auto_fix.py --genome data/sgd/genome.pickle\ + --coordinate_changes_dict data/sgd/coordinate_changes_dict.json\ + --allele_results results/sgd/allele_description_name_qc.tsv\ + --output_dir results/sgd/description_name + +python allele_auto_fix.py --genome data/sgd/genome.pickle\ + --coordinate_changes_dict data/sgd/coordinate_changes_dict.json\ + --allele_results results/sgd/allele_description_semicolon_qc.tsv\ + --output_dir results/sgd/description_semicolon + +cat results/sgd/*/allele_auto_fix.tsv|grep _fix > results/sgd/allele_qc_fixed.tsv + + +python allele_transvar.py\ + --genome data/sgd/genome.pickle\ + --allele_results results/sgd/allele_description_name_qc.tsv\ + --exclude_transcripts data/frame_shifted_transcripts.tsv\ + --output results/sgd/description_name/allele_description_name_transvar.tsv\ + --genome_fasta data/sgd/genome_sequence.fsa\ + --transvardb data/sgd/features.gtf.transvardb + +python allele_transvar.py\ + --genome data/sgd/genome.pickle\ + --allele_results results/sgd/allele_description_semicolon_qc.tsv\ + --exclude_transcripts data/frame_shifted_transcripts.tsv\ + --output results/sgd/description_semicolon/allele_description_semicolon_transvar.tsv\ + --genome_fasta data/sgd/genome_sequence.fsa\ + --transvardb data/sgd/features.gtf.transvardb + # TODO -# - Sort out mitochondrial translation # - Error with YSC0029, present in alleles, but missing in the genome gff -# - Include references for alleles # - Mapping of allele types # - Deal with examples like `YBR038W CHS2 chs2-S4E S4E S4 phosphomimetic mutant S14E S60E S69E S100E` # where it seems like S4E is the description. diff --git a/test_data/nucleotide_alleles_new.tsv b/test_data/nucleotide_alleles_new.tsv index cdd87e5..7162c2c 100644 --- a/test_data/nucleotide_alleles_new.tsv +++ b/test_data/nucleotide_alleles_new.tsv @@ -49,11 +49,11 @@ partial_nucleotide_deletion 123-(-140) (-140)-123 ## nucleotide_insertion:usual -> some of these descriptions are no longer allowed, they could be confusing with minus symbols -nucleotide_insertion A123-AAAATT A1,-AAAATT -nucleotide_insertion A123-AAAAUU A1,-AAAAUU -nucleotide_insertion A(-123)-AAAATT A(-,3)-AAAATT -nucleotide_insertion A123-AA A1,-AA -nucleotide_insertion A(-123)-AA A(-,3)-AA +nucleotide_insertion A123-AAAATT A123-AAAATT +nucleotide_insertion A123-AAAAUU A123-AAAAUU +nucleotide_insertion A(-123)-AAAATT A(-123)-AAAATT +nucleotide_insertion A123-AA A123-AA +nucleotide_insertion A(-123)-AA A(-123)-AA nucleotide_insertion A-123-AA A123AA nucleotide_insertion A-123AA A(-123)AA diff --git a/test_transvar.py b/test_transvar.py index e9a6791..80df9f9 100644 --- a/test_transvar.py +++ b/test_transvar.py @@ -1,19 +1,21 @@ -from transvar_functions import get_transvar_str_annotation, parse_transvar_string +from transvar_functions import get_transvar_str_annotation, parse_transvar_string, get_anno_db import unittest from transvar.err import SequenceRetrievalError, InvalidInputError +db = get_anno_db('data/pombe_genome.gtf.transvardb', 'data/pombe_genome.fa') + class TransvarTest(unittest.TestCase): def test_ganno(self): # A correct annotation that should return three transcripts (SPBC1198.04c.1, SPBC1198.04c.2 and SPNCRNA.1321.1) - variant_list = parse_transvar_string(get_transvar_str_annotation('ganno', 'II:g.178497T>A')) + variant_list = parse_transvar_string(get_transvar_str_annotation('ganno', 'II:g.178497T>A', db)) self.assertEqual(len(variant_list), 3) # A wrong chromosome / sequence returns a SequenceRetrievalError try: - get_transvar_str_annotation('ganno', 'blah:g.1000A>T') + get_transvar_str_annotation('ganno', 'blah:g.1000A>T', db) except SequenceRetrievalError as e: self.assertEqual(e.args[0], 'chromosome blah not found in reference') else: @@ -21,7 +23,7 @@ def test_ganno(self): # A wrong position returns a generic exception try: - get_transvar_str_annotation('ganno', 'I:g.1000A>T') + get_transvar_str_annotation('ganno', 'I:g.1000A>T', db) except Exception as e: self.assertEqual(e.args[0], "invalid_reference_base_A;expect_G") else: @@ -29,14 +31,14 @@ def test_ganno(self): # A wrongly formatted ganno returns an InvalidInputError try: - get_transvar_str_annotation('ganno', 'dummy') + get_transvar_str_annotation('ganno', 'dummy', db) except InvalidInputError as e: self.assertEqual(e.args[0], "invalid_mutation_string: dummy (type:g)") else: self.fail("InvalidInputError not raised") try: - get_transvar_str_annotation('ganno', 'I:blah') + get_transvar_str_annotation('ganno', 'I:blah', db) except InvalidInputError as e: self.assertEqual(e.args[0], "invalid_mutation_string_blah") else: @@ -44,7 +46,7 @@ def test_ganno(self): # An empty insertion returns an InvalidInputError try: - get_transvar_str_annotation('ganno', 'I:g.1000_1001ins') + get_transvar_str_annotation('ganno', 'I:g.1000_1001ins', db) except InvalidInputError as e: self.assertEqual(e.args[0], "insertion_without_inserted_sequence_g.1000_1001ins") else: @@ -54,7 +56,7 @@ def test_panno(self): # A wrong chromosome / sequence returns a SequenceRetrievalError try: - get_transvar_str_annotation('panno', 'blah:p.T566S') + get_transvar_str_annotation('panno', 'blah:p.T566S', db) except Exception as e: self.assertEqual(e.args[0], 'invalid_gene_blah') else: @@ -63,7 +65,7 @@ def test_panno(self): # A wrong position returns a ValueError (this is not the case by default, I added it, # see transvar_functions.py) try: - get_transvar_str_annotation('panno', 'SPAPB1A10.09:p.A2F') + get_transvar_str_annotation('panno', 'SPAPB1A10.09:p.A2F', db) except ValueError as e: self.assertEqual(e.args[0], "no_valid_transcript_found") else: @@ -71,17 +73,17 @@ def test_panno(self): # A wrongly formatted panno returns a InvalidInputError try: - get_transvar_str_annotation('panno', 'SPAPB1A10.09:blah') + get_transvar_str_annotation('panno', 'SPAPB1A10.09:blah', db) except InvalidInputError as e: self.assertEqual(e.args[0], "invalid_mutation_string_blah") else: self.fail("InvalidInputError not raised") # An empty insertion does not return an error in panno - get_transvar_str_annotation('panno', 'SPAPB1A10.09:p.10_11ins') + get_transvar_str_annotation('panno', 'SPAPB1A10.09:p.10_11ins', db) # A correct annotation that should return two transcripts - variant_list = parse_transvar_string(get_transvar_str_annotation('panno', 'SPBC1198.04c:p.N3A')) + variant_list = parse_transvar_string(get_transvar_str_annotation('panno', 'SPBC1198.04c:p.N3A', db)) self.assertEqual(len(variant_list), 2) diff --git a/transvar_functions.py b/transvar_functions.py index 5656a98..ef08242 100644 --- a/transvar_functions.py +++ b/transvar_functions.py @@ -49,22 +49,19 @@ def split(self, __sep=None, __maxsplit=-1): return [TransvarCustomString(x) for x in str.split(self, __sep, __maxsplit)] -def get_anno_db() -> AnnoDB: +def get_anno_db(transvar_db_file, genome_sequence_file) -> AnnoDB: """ Load the transvar database, we define it here so that it does not get loaded everytime get_transvar_str_annotation is called, and it can be passed as an argument to it """ annotation_parser = argparse.ArgumentParser(description=__doc__) parser_add_annotation(annotation_parser) - annotation_args = annotation_parser.parse_args(['--ensembl', 'data/pombe_genome.gtf.transvardb', '--reference', 'data/pombe_genome.fa']) + annotation_args = annotation_parser.parse_args(['--ensembl', transvar_db_file, '--reference', genome_sequence_file]) config = read_config() return AnnoDB(annotation_args, config) -def get_transvar_str_annotation(variant_type: str, variant_description: str, db: AnnoDB = None) -> str: - - if db is None: - db = get_anno_db() +def get_transvar_str_annotation(variant_type: str, variant_description: str, db: AnnoDB) -> str: if variant_type not in ['ganno', 'canno', 'panno']: raise ValueError("variant_type must be one of 'ganno', 'canno', 'panno'") @@ -90,7 +87,7 @@ def get_transvar_str_annotation(variant_type: str, variant_description: str, db: p.set_defaults(func=partial(main_one, db=db, at='p')) # We set the -v argument to 2 (verbose), to raise errors - args = parser.parse_args([variant_type, '-i', variant_description, '--ensembl', 'data/pombe_genome.gtf.transvardb', '--reference', 'data/pombe_genome.fa', '-v', '2']) + args = parser.parse_args([variant_type, '-i', variant_description, '-v', '2']) # We include this to pause on errors args.suspend = True @@ -112,7 +109,7 @@ def get_transvar_str_annotation(variant_type: str, variant_description: str, db: # and info = 'no_valid_transcript_found'. Maybe there is a special case where the info is different? transvar_fields_first_row = output_str.split('\n')[1].split('\t') if transvar_fields_first_row[-3] == '././.': - if transvar_fields_first_row[-1] == 'no_valid_transcript_found': + if (transvar_fields_first_row[-1] == 'no_valid_transcript_found') and not variant_description.startswith('Q00'): raise ValueError('no_valid_transcript_found') else: raise ValueError('Unknown error: ', transvar_fields_first_row[-1])